forked from hanz-vora/MoveOut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
4001 lines (4001 loc) · 574 KB
/
final.csv
File metadata and controls
4001 lines (4001 loc) · 574 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
,id,age,habitationStatus,addresses/principalResidence/municipality,addresses/principalResidence/latitude,addresses/principalResidence/longitude,workActivity,totalIncome,Food and Dining,Income,Entertainment,Transfer,Shopping,Bills and Utilities,Auto and Transport,Home,Taxes,Health and Fitness,Fees and Charges,Mortgage and Rent,Travel,spending
0,cd260aa2-f1c2-4262-8d5a-669691053038,23,With Parent,Etobicoke,43.64667729,-79.55925062,parttime,10091.4,111,17,0,43,12,0,0,0,0,0,0,0,0,11798.55
1,95c36b3b-c5a9-4fea-9140-d70ecfe8a3d2,22,With Parent,York,43.69641833,-79.47555604,parttime,11833.14,107,15,0,45,14,0,0,0,0,0,0,0,0,14787.68
2,af0b2738-038e-448e-9093-49356542e06a,30,With Parent,Toronto,43.66154227,-79.36405271,parttime,12969.99,153,15,6,74,14,19,20,9,0,0,0,7,0,10616.47
3,aaa76abd-f8e9-4f93-9d61-7ba08b2366f7,85,Group,York,43.66938618,-79.48933483,unemployed,50165.5,145,30,7,60,4,39,19,9,5,7,0,0,0,33411.73
4,81da3737-971d-4ed8-a2ee-94b934261266,30,With Parent,Toronto,43.65483797,-79.38558022,fulltime,24267.54,143,17,4,72,11,25,17,9,0,0,0,7,0,24345.44
5,2015c281-e874-4b88-a81e-efea19bbd437,19,With Parent,North York,43.72605898,-79.30474201,unemployed,0,107,2,0,29,11,0,0,0,0,0,0,0,0,77.3
6,858f1a64-bb1c-4709-989d-578a32d82e29,41,With Parent,Scarborough,43.8262895,-79.28785676,fulltime,29372,116,15,0,44,9,0,0,0,1,0,0,0,0,33130.6
7,656610e9-9ab9-4f8d-a492-872e0c950833,34,With Parent,North York,43.75212788,-79.43990758,fulltime,42964,117,15,0,44,13,0,0,0,1,0,0,0,0,49640.57
8,4657e91c-a90c-46f6-9e8b-e7e9322aa41c,57,Group,Toronto,43.67919255,-79.46325337,fulltime,42712.15,143,15,6,59,12,39,18,9,5,0,0,0,0,23335.82
9,6ed2e5c3-bf04-4c01-89e4-8c6f7672a70a,33,Group,North York,43.76034738,-79.41094858,fulltime,62038,143,16,6,44,140,25,17,9,1,0,0,0,0,64154.75
10,6295fed1-d412-49eb-93a3-9ca031632840,30,Group,Etobicoke,43.63770842,-79.49353779,fulltime,22562.76,146,16,6,57,14,25,15,7,6,14,7,0,0,15524.83
11,64b0c7d0-ebef-40e0-8d86-f8c681c95c7b,20,With Parent,Scarborough,43.7400481,-79.27395877,parttime,10796.94,112,16,0,33,12,0,0,0,0,0,0,0,0,13356.72
12,72da45bc-6a77-4f2c-aa61-a7c52790bc11,29,Group,North York,43.70640268,-79.44657787,fulltime,20321.07,147,15,7,69,18,40,22,10,5,0,4,0,0,13745.38094
13,810098e1-03ba-462f-a31f-6624e8fd7d11,47,Group,North York,43.78061103,-79.40412837,fulltime,40353.5,150,15,7,45,14,19,17,9,0,13,0,0,0,39180.76
14,7240ec73-795e-4181-8ad8-d16461b0e946,24,Group,Scarborough,43.80205988,-79.14501241,parttime,18188.61,147,16,6,59,14,34,14,8,0,0,0,7,0,8895.25
15,ed627e35-1194-4db5-a6e2-f5a0e89852e9,18,With Parent,Etobicoke,43.63750055,-79.51059729,unemployed,0,98,1,0,30,9,0,0,0,0,0,0,0,0,100.08
16,cc9c808f-2483-4ac0-8182-becba5831e3a,32,With Parent,Etobicoke,43.64016908,-79.54558629,unemployed,0,119,0,0,35,13,0,0,0,0,0,6,0,0,3898.054905
17,c8f99b7e-7c72-4ece-bbad-3db63cbccdfb,42,Group,Toronto,43.67031647,-79.48207725,fulltime,71309.7,145,15,7,46,8,27,23,11,0,0,0,7,0,56350.72
18,dcef715b-4a04-428d-b497-cbb5239123a7,32,Group,North York,43.76582039,-79.38614841,fulltime,81731,148,15,6,58,145,26,16,10,6,0,7,0,0,79988.33
19,03c47460-b23e-407a-8628-04c125602636,17,With Parent,Toronto,43.63657933,-79.47093754,unemployed,0,108,1,0,30,7,0,0,0,0,0,0,0,0,99.08
20,068405d4-a84d-4866-9126-0a747030b37c,19,With Parent,Toronto,43.64724304,-79.40775183,unemployed,0,109,1,0,31,9,0,0,0,0,0,0,0,0,76.95
21,34058b1c-9db5-4eb6-8f94-4605effd5fda,64,With Parent,Toronto,43.67257603,-79.41339357,fulltime,53366.25,112,16,0,45,7,0,0,0,0,0,0,0,0,61878.56
22,c367465d-86c2-46d3-89a8-93545a09f08c,18,With Parent,Toronto,43.67547654,-79.43014312,unemployed,0,100,1,0,30,11,0,0,0,0,0,0,0,0,67.54
23,41ebf205-5ace-45b8-8322-7f0b2bcffe87,32,With Parent,Toronto,43.7310208,-79.404151,fulltime,108689,114,15,0,45,12,0,0,0,1,0,0,0,0,127067.56
24,a6b0d4ad-2989-49b8-b597-7755ffa5c1f7,27,With Parent,York,43.66514554,-79.49173526,parttime,13123.11,120,16,0,44,12,0,0,0,0,0,0,0,0,15622.59
25,d51555d5-d637-47d6-9a09-b17580eefaa6,60,Group,Toronto,43.67958214,-79.30500862,fulltime,93365.05,139,15,7,60,7,33,16,9,5,0,0,0,0,85275.37
26,bd5f6e2f-a918-4edf-a43e-c11ea617a373,15,With Parent,North York,43.72330019,-79.52093413,unemployed,0,101,0,0,31,6,0,0,0,0,0,0,0,0,137.68
27,f2577e82-68b5-447d-babe-80adad8cc344,50,Group,Scarborough,43.79857406,-79.30512678,fulltime,68995.3,148,16,5,45,136,32,24,10,0,0,0,7,0,71661.14
28,64dd431b-5749-4874-8b15-291ae2be25f8,53,With Parent,York,43.69159129,-79.43788307,fulltime,47776.75,107,16,0,44,6,0,0,0,0,0,0,0,0,55140.49
29,418d52c8-c84c-42bf-8741-21b4b84ef02a,26,With Parent,Scarborough,43.80019722,-79.1393031,fulltime,26542.56,118,15,0,45,15,0,0,0,1,0,0,0,0,31151.24
30,b77d98b6-0dce-484b-8d99-736285033249,20,With Parent,Toronto,43.64284145,-79.43781365,parttime,8930.79,118,15,0,33,12,0,0,0,0,0,0,0,0,10635.05
31,fcedcfc6-5ce9-43b8-9659-1f312df562d8,17,With Parent,Scarborough,43.75651513,-79.21433952,unemployed,0,106,0,0,31,5,0,0,0,0,0,0,0,0,83.35
32,46e39bdd-1645-4162-9b56-af97c591747c,22,With Parent,North York,43.75335063,-79.39016354,parttime,19330.41,108,16,0,43,15,0,0,0,1,0,0,0,0,22854.22
33,571f570b-a8d3-450b-9dd0-e7da884de151,75,Group,Toronto,43.6729855,-79.3304014,unemployed,37412.9,147,31,6,45,142,25,22,10,0,0,0,7,0,35816.96
34,4ab0aee3-74e0-48b4-a78b-c34dc29c4d57,24,With Parent,Etobicoke,43.66087836,-79.57301545,parttime,14258.31,117,15,0,45,14,0,0,0,0,0,0,0,0,17075.79
35,fa4ff053-8f12-4cc1-a2e6-3558e16b6a44,89,Group,North York,43.78472502,-79.33881252,unemployed,21704.2,40,16,5,49,2,39,16,7,1,20,2,7,0,10003.26
36,5abc44e3-52d6-4d52-abec-58183117f440,30,With Parent,Toronto,43.70056262,-79.39474903,parttime,7256.04,118,16,0,44,10,0,0,0,0,0,0,0,0,7473.23
37,119dc9cd-bfc4-40f2-a128-b1cf7c722c8e,25,Group,North York,43.77522185,-79.33553694,parttime,11649.33,151,16,5,44,140,27,12,7,0,0,0,7,0,7887.86
38,5f7db50e-1210-4d5f-818d-4accefc7ce61,29,With Parent,Etobicoke,43.68128941,-79.57261234,parttime,9618.18,109,15,0,45,14,0,0,0,0,0,0,0,0,11596.89
39,bc378f13-95fd-4e93-a292-5521489270dd,64,Group,Toronto,43.66649934,-79.34135406,fulltime,41941.55,146,15,6,58,7,34,9,10,6,0,0,0,0,23568.22
40,a1db3c5c-ba11-44a8-8fda-c6a822cfeeeb,58,Group,York,43.65325041,-79.48729227,fulltime,75540.05,141,15,6,45,139,34,15,12,0,13,0,7,0,60040.55
41,ab99810e-8792-4e9e-bd28-e876f895469c,34,With Parent,North York,43.79560241,-79.38984955,unemployed,0,119,0,0,31,11,0,0,0,0,0,6,0,0,3414.018965
42,a33826ab-81d0-48e4-be07-1ce91775492c,19,Group,North York,43.74073228,-79.39706242,unemployed,0,106,0,0,64,13,0,0,0,2,0,0,0,0,110.39
43,0c400962-1f52-4210-a77d-d195e1810886,40,Group,Scarborough,43.75260084,-79.19826513,fulltime,110778,148,15,7,58,10,27,11,12,6,0,0,0,0,98337.1
44,cd74b26d-f9a6-40f5-b715-e2a4bbd8b437,50,Group,Etobicoke,43.64478334,-79.50725952,fulltime,92163.5,138,16,7,45,7,41,17,11,0,0,0,7,0,79528
45,86f99150-14ef-4029-b30f-122b3f8ffa48,23,With Parent,Toronto,43.70497393,-79.42767967,parttime,18342.72,115,16,0,45,9,0,0,0,0,0,0,0,0,21435.01
46,1d6a1542-781a-4742-b186-2261f0dd5bc5,26,With Parent,North York,43.71120266,-79.42852827,unemployed,0,120,0,0,32,12,0,0,0,1,0,6,0,0,2602.326818
47,45ca04ce-c599-44ab-8d13-07c85be63a3f,54,Group,North York,43.7579449,-79.49398803,fulltime,35506.25,144,15,6,59,138,40,16,9,5,0,0,0,0,19357.24
48,78d86aaf-a3f2-44d4-8f27-10b4bc99700e,53,Group,Toronto,43.63446278,-79.42701875,fulltime,37887.9,144,15,6,60,135,41,16,9,6,0,2,0,0,20296.35906
49,78804f23-65ff-485f-8299-4899f6f003fe,41,Group,Toronto,43.70099298,-79.41949962,fulltime,88398,145,16,8,59,8,28,14,10,5,0,0,0,0,72576.57
50,862df0d6-86e7-481f-b8e2-c2de8d8e97b3,67,Group,North York,43.76924676,-79.51961621,parttime,17567.4,145,15,6,57,7,28,19,6,2,0,0,7,0,8696.07
51,eccc8f97-5987-4c3d-ba64-c39b63e083ab,46,Group,Toronto,43.65676203,-79.42574702,fulltime,63245.6,141,17,5,57,10,39,14,10,5,0,0,0,0,53023.6
52,9a31aeb9-e2f1-4f7e-83a4-a294de914920,27,With Parent,North York,43.77007404,-79.34427235,parttime,8376.39,118,15,0,45,12,0,0,0,1,0,0,0,0,9411.21
53,351cd71e-9875-4585-99eb-963aa9c2bc8a,44,Group,Toronto,43.67176036,-79.38592999,fulltime,119205.9,149,15,7,44,18,25,14,10,1,0,0,7,0,128725
54,4e1a4a81-8fd8-4a0d-ac00-ba31894cc7dd,27,With Parent,North York,43.76896934,-79.35439162,parttime,15427.17,122,15,0,44,12,0,0,0,1,0,0,0,0,18431.82
55,61c02283-2817-46fc-b511-e3e4e9fa6082,55,Group,Scarborough,43.81292955,-79.23329593,fulltime,38896.45,139,15,7,59,6,40,18,9,5,0,0,0,0,26609.15
56,0e10b2e8-77be-4edb-968d-c320fa81e2fe,55,Group,Toronto,43.67547654,-79.43014312,fulltime,146833.15,149,15,7,45,8,12,13,11,0,0,0,0,0,162877.46
57,0907eac3-c961-4c61-a553-c94bd56c8f6c,28,With Parent,Etobicoke,43.68968809,-79.52760954,parttime,17307.18,109,16,0,44,13,0,0,0,0,0,0,0,0,19745.78
58,f4296e24-6389-488c-baed-01a6005ef809,51,With Parent,Toronto,43.63815316,-79.4373956,parttime,26669.5,116,15,0,46,9,0,0,0,0,0,0,0,0,29871.76
59,c2db251f-45e2-4a5d-a4b4-af181407b712,20,With Parent,Scarborough,43.80294305,-79.1725871,fulltime,33647.79,139,16,7,75,14,29,17,9,5,0,0,0,0,16105.36
60,33e2098a-f1a6-4ce4-b133-ca326c32ee19,33,With Parent,Scarborough,43.75523891,-79.17987322,fulltime,49315,123,15,0,45,10,0,0,0,0,0,0,0,0,57058.07
61,e63bf0b3-d771-4b03-8500-01e031e04170,18,With Parent,Toronto,43.65401515,-79.43824377,unemployed,0,114,1,0,30,11,0,0,0,0,0,0,0,0,285.87
62,3c74bbf2-f457-411d-8363-3732e0f30f40,29,With Parent,North York,43.74884673,-79.49617385,parttime,13705.56,111,16,0,44,12,0,0,0,0,0,0,0,0,15286.4
63,9bd37532-ced0-4f2b-a695-a62a9de860ab,50,Group,York,43.67286375,-79.49166508,unemployed,0,110,0,0,0,8,0,0,0,0,0,6,0,0,2807.317123
64,0d8441bf-11f5-4d36-b44b-b31eca1dc568,26,With Parent,Etobicoke,43.63416944,-79.51470691,fulltime,20497.29,119,15,0,45,15,0,0,0,0,0,0,0,0,24144.33
65,65214b19-ef67-41dd-b1f9-1a1c6dc98ed8,22,With Parent,Toronto,43.66640598,-79.43925362,parttime,10153.11,113,15,0,45,12,0,0,0,0,0,0,0,0,12077.99
66,0dbfe1ad-b5f2-4cc8-926a-aae493e75869,18,With Parent,North York,43.73171623,-79.34140891,unemployed,0,109,1,0,30,7,0,0,0,0,0,0,0,0,84.59
67,7e496ca3-9b81-41f2-ba3a-3c40d8c6170e,36,Group,York,43.68846423,-79.43492867,fulltime,75736,140,16,7,57,10,33,16,9,6,0,0,0,0,69141.6
68,76538631-8b83-4e73-9d46-33c4041c67a8,77,Group,York,43.69159129,-79.43788307,unemployed,27153,144,30,7,60,5,34,11,8,6,0,2,0,0,14118.08736
69,af275919-9183-495b-874e-4fe3dfe2b0a7,25,With Parent,Toronto,43.69178664,-79.4172735,fulltime,30356.37,119,16,0,43,13,0,0,0,1,0,0,0,0,35596.31
70,032ba6ff-98d3-4d11-837b-800fefa5182e,41,Group,Etobicoke,43.65959878,-79.51917052,fulltime,150060,146,17,7,43,10,19,14,12,0,0,0,0,0,165783.88
71,08d3df08-8f42-453c-be71-9bc694dac404,20,With Parent,Toronto,43.68667845,-79.40465859,fulltime,21999.12,115,15,0,32,12,0,0,0,1,0,0,0,0,26100.59
72,53e6c824-f20c-4f17-89c2-be585dcca34f,22,With Parent,Scarborough,43.82572095,-79.22950998,parttime,14987.61,111,15,0,44,14,0,0,0,1,0,0,0,0,18063.84
73,fb16301a-ad45-46ef-a108-99b263fbf5b6,68,Group,North York,43.74579422,-79.51346899,parttime,25333.65,143,16,4,78,5,33,20,8,5,0,4,0,0,14754.7089
74,ae820d82-866b-4335-b111-6ba957b85d74,44,Group,East York,43.70891356,-79.29826425,fulltime,59482.5,152,15,7,58,10,33,15,11,6,0,0,0,0,38729.92
75,39719984-6e53-46b9-b7bb-a2be47e909b2,23,Group,Scarborough,43.80998698,-79.26505899,parttime,8922.54,145,15,7,90,12,27,18,10,5,0,6,0,0,7001.262847
76,fab9ccfb-2ec8-4c22-bcf2-3d7b6085f56b,22,With Parent,Etobicoke,43.60270761,-79.49683845,parttime,15247.32,109,15,0,45,15,0,0,0,0,0,0,0,0,17792.3
77,21c8efc9-bdc1-4031-9b45-5b908c7bcc5e,33,Group,North York,43.72965824,-79.41877308,fulltime,172835,157,15,8,45,15,20,19,11,0,0,0,7,0,191223.83
78,f24ab317-f23c-4f69-aa2c-d9d936f65068,27,Group,Toronto,43.70257671,-79.4383003,fulltime,24971.1,151,16,7,58,14,26,13,8,5,12,7,0,0,19487.55
79,3447d25a-8c12-4e51-8f31-2642e190523f,20,With Parent,Toronto,43.67031647,-79.48207725,unemployed,0,107,0,0,32,13,0,0,0,0,0,0,0,0,179.83
80,3f91aeda-2174-42e1-9883-8ed1f259ded8,54,Group,Toronto,43.659962,-79.45459517,fulltime,45786.1,141,15,5,45,6,12,17,8,0,13,0,0,0,47720.76
81,cb8ee12a-50c9-4a85-a95a-0a62aadc5bf5,57,Group,Scarborough,43.81554581,-79.1989964,fulltime,50939.25,141,16,6,44,7,33,18,9,0,13,0,7,0,32292.56
82,0c429b11-a7d3-4896-b64b-f5322495c024,27,Group,Toronto,43.67265112,-79.38873202,fulltime,32440.65,143,16,5,58,143,32,20,10,5,0,7,0,0,24092.51
83,2c5dec05-5ee8-4d18-b366-08ed375d1235,79,Group,Etobicoke,43.64294753,-79.53704108,unemployed,26725.3,147,31,7,55,4,33,14,8,0,7,0,7,0,13821.89
84,78d05dc3-41e9-4c3d-a851-2d3ab89dfd82,30,Group,Toronto,43.67215788,-79.34750639,fulltime,46208.91,152,15,7,60,13,34,14,9,5,0,0,0,0,34544.9
85,a72d69c6-734a-413d-a864-79cae0dbc690,38,Group,North York,43.70284498,-79.4891123,fulltime,45059,146,15,7,58,9,33,13,8,7,15,0,0,0,22803.82
86,df7b2d31-0a3e-46a9-81c3-5d6c35cffdc2,24,With Parent,Toronto,43.67338155,-79.30822059,fulltime,25251.27,120,16,0,45,12,0,0,0,0,0,0,0,0,30007.52
87,26dfddf9-6059-434c-be13-cc172eb14f0a,58,Group,Toronto,43.67709588,-79.44380978,fulltime,51184.2,149,16,7,44,8,18,28,11,0,0,0,0,0,52373.8
88,9d045858-3d00-4ce8-99f5-c5eb2a67be60,47,Group,North York,43.76432953,-79.32381539,fulltime,117744,142,15,7,59,10,27,23,10,6,0,0,0,0,104683.47
89,5afe49ac-b949-4b70-9b14-bf8a65369348,47,Group,York,43.66106276,-79.49446132,fulltime,35941.4,142,16,6,57,9,27,13,8,6,13,1,0,0,18260.32407
90,a4e510d5-0bfb-424e-adda-f47ced75843d,43,Group,Scarborough,43.79613672,-79.14180966,fulltime,60238.2,141,17,7,57,10,34,22,11,5,0,0,0,0,42121.74
91,5c2536d4-a31f-472d-92d9-44d180bb68f7,22,With Parent,Scarborough,43.74186635,-79.21156342,parttime,13734.6,112,15,0,43,13,0,0,0,2,0,0,0,0,16470.99
92,18f21809-8261-4af8-bcbe-e8a7a063d159,32,With Parent,Toronto,43.71499056,-79.40357817,fulltime,39476,113,16,0,45,13,0,0,0,0,0,0,0,0,46063.52
93,49fc41e0-9a19-43cb-bcd2-6e9e73bbd46f,63,Group,Toronto,43.6375103,-79.40058038,parttime,16209.85,145,15,6,56,7,20,12,9,6,0,9,0,0,9201.667947
94,620a8b47-3eb6-4468-ae21-a929bd1bfd6d,57,Group,Toronto,43.65731662,-79.38347914,fulltime,39509.4,141,15,6,44,7,18,19,7,1,0,0,0,0,40745.22
95,b54d04c9-dcc2-4aa1-8b63-6cfc35a525fc,26,Group,Toronto,43.63780428,-79.4273146,parttime,13135.65,145,16,5,45,13,19,15,7,0,0,0,0,0,9819.02
96,ce8fcbf6-9627-4f33-9601-2a0d8655cd31,22,With Parent,Toronto,43.67893136,-79.31349099,parttime,17214.45,113,16,0,45,14,0,0,0,0,0,0,0,0,20132.73
97,11da9930-f457-4233-80a0-1e1313d548fa,25,With Parent,North York,43.77587157,-79.41730209,parttime,7682.73,120,17,0,44,12,0,0,0,0,0,0,0,0,9064.55
98,733dfa56-4166-4c19-abf4-88d262bc6f3d,30,Group,Scarborough,43.81065496,-79.32161551,parttime,19186.86,151,15,6,91,14,27,19,8,6,0,5,0,0,12677.36508
99,20c377ea-991a-4862-b0e2-defdb41e3df7,58,Group,Toronto,43.65981288,-79.3512092,fulltime,48118.3,143,15,7,44,7,33,17,8,1,0,0,7,0,31116.45
100,0506a85f-ac10-464a-89c0-ae34e3969cfe,48,Group,North York,43.79556749,-79.39858528,parttime,34622.5,137,15,7,46,145,26,14,9,0,15,0,0,0,31169.56
101,f77df7b8-00f6-43f1-885d-cfd4dc3088bf,37,With Parent,North York,43.7862998,-79.41783064,fulltime,29080,115,16,0,45,8,0,0,0,0,0,0,0,0,33082.67
102,2618bf65-2d57-4371-b6da-49832db779d8,55,Group,Scarborough,43.77403213,-79.25800983,fulltime,64679.45,147,16,5,58,7,39,18,10,5,0,0,0,0,50720.43
103,32944576-bf48-4861-b09a-6027139f7c52,73,Group,Scarborough,43.81915287,-79.28226899,unemployed,61219.9,146,31,7,58,6,33,13,8,5,13,0,0,0,45571.89
104,2595716b-2b8f-420e-9fed-ab081a03cfb2,49,Group,North York,43.77467439,-79.34185551,unemployed,0,116,0,0,0,7,0,0,0,0,0,6,0,0,2696.146343
105,d7812942-3eb3-4a64-832a-108a6e4affb0,34,Group,Scarborough,43.77968455,-79.15145538,fulltime,135173,147,15,8,44,16,33,26,12,1,0,0,7,0,130620.62
106,a80a0523-0e3d-4f01-9cca-efcd063a0b2e,16,With Parent,Scarborough,43.77403213,-79.25800983,unemployed,0,109,0,0,31,10,0,0,0,0,0,0,0,0,78.96
107,69ca6ebc-1c11-4efb-b765-4935e0a96b7c,21,Group,Toronto,43.68063094,-79.45816145,parttime,10761.96,143,15,7,94,12,33,19,10,5,0,6,0,0,7952.772067
108,a8b607df-ac23-4499-8046-bd472ebaac36,27,Group,Etobicoke,43.60002283,-79.54568127,parttime,16859.04,150,15,6,90,19,46,16,9,5,0,6,0,0,13219.02746
109,da9bea25-d7e7-4ee0-b204-87cff9efa441,58,Group,Toronto,43.66661224,-79.30310712,fulltime,72103.85,147,16,7,59,9,28,24,10,5,0,0,0,0,60882.69
110,ccaf0a46-2eb5-4b73-8f5b-b0ce96f5bf3a,29,With Parent,North York,43.79556749,-79.39858528,parttime,9943.23,120,15,0,46,13,0,0,0,0,0,0,0,0,11363.19
111,a15f6de8-6744-453c-ad88-449ba60c03b3,25,With Parent,Toronto,43.66933795,-79.40208461,fulltime,25450.59,117,16,0,44,14,0,0,0,0,0,0,0,0,29861.72
112,d9aa0d6d-ef36-4940-9dd7-383675dd266d,26,Group,Toronto,43.66629676,-79.47270901,parttime,15923.16,157,15,6,45,144,19,24,9,1,0,0,0,0,11094.46
113,8d797f09-4066-4170-adab-931a2b004489,46,With Parent,North York,43.74398862,-79.49417373,parttime,28057.7,108,16,0,45,9,0,0,0,0,0,0,0,0,32618.28
114,1ed4bf97-e3c8-44c8-9828-fbc685551fd3,83,Group,Toronto,43.71485018,-79.39931647,unemployed,34763.4,137,30,8,69,135,39,22,12,5,7,2,0,0,19916.90879
115,1d0187d6-af7f-401c-b7be-ac073231a4ba,54,Group,North York,43.79531378,-79.3545517,fulltime,86168.35,146,16,6,44,5,19,12,8,0,0,0,0,0,92963.57
116,5e2b3466-0585-4360-b73b-82f497c929cf,39,With Parent,Etobicoke,43.59096886,-79.53685719,fulltime,48711,111,16,0,44,8,0,0,0,0,0,0,0,0,56530.19
117,290a8546-c0d9-4dde-902f-e77d1eb67cf0,57,With Parent,North York,43.7888662,-79.4463492,parttime,29569.95,114,15,0,44,5,0,0,0,1,0,0,0,0,34203.74
118,6a6954c6-8e33-4298-a37c-cc5c7a266d3e,20,With Parent,Scarborough,43.74360962,-79.26688296,parttime,11816.31,117,16,0,32,14,0,0,0,0,0,0,0,0,13977.9
119,794543fb-86a9-402e-8541-72f00f6e7835,65,Group,Scarborough,43.80072748,-79.27817021,fulltime,35281.1,141,15,6,45,12,26,25,9,1,13,0,0,0,32307.04
120,9a9c7dc8-72b0-423d-8776-998b27de6609,20,With Parent,Toronto,43.63780428,-79.4273146,unemployed,0,113,0,0,32,13,0,0,0,0,0,0,0,0,267.31
121,fa669514-2582-4611-9ecb-39585ee1a790,50,Group,Toronto,43.67006202,-79.31077827,fulltime,150609.8,139,17,6,58,12,28,13,10,5,0,0,0,0,143146.58
122,c5d0869c-5ae2-40fd-91d3-a83255313ccd,28,Group,Etobicoke,43.65862942,-79.58477059,parttime,15288.57,148,16,7,74,13,33,27,9,5,0,5,0,0,10068.92229
123,33df7fac-6060-4198-835e-d8a8dbd7cb20,22,With Parent,Toronto,43.66003929,-79.35006703,fulltime,25495.8,147,15,6,74,14,33,18,8,0,0,0,4,0,14196.71
124,8ed0617a-32bc-42d2-bcaf-0be8ab31046f,27,With Parent,Toronto,43.63446278,-79.42701875,parttime,9311.28,117,16,0,43,12,0,0,0,1,0,0,0,0,10760.77
125,51a1f72d-28da-4be9-b361-2dffad4db03a,18,With Parent,Scarborough,43.71306377,-79.29624045,unemployed,0,96,0,0,32,12,0,0,0,0,0,0,0,0,58.15
126,1ff2784b-2694-4996-a626-c3ae4c86aaf6,90,Group,Etobicoke,43.64477862,-79.53029553,unemployed,35840,37,16,6,59,3,25,24,10,6,6,7,0,0,35411.99
127,ef97b69c-7381-4c8c-a53d-df724443ad6a,21,With Parent,Scarborough,43.78545286,-79.18529773,parttime,15609,116,15,0,44,13,0,0,0,1,0,0,0,0,18174.57
128,e0a7aaaa-6b20-4c9e-94ed-7e5f463e723d,28,Group,Scarborough,43.7400481,-79.27395877,parttime,11911.68,151,17,7,89,151,41,22,8,5,13,6,0,0,10720.09786
129,291746ab-0833-42bb-9795-50c119200374,59,Group,North York,43.76896934,-79.35439162,fulltime,49008.4,145,16,7,58,7,27,14,9,5,0,0,0,0,31123.18
130,a9f2d369-d187-4416-9a5a-f92f84d618e4,26,With Parent,Toronto,43.66467674,-79.32788489,parttime,15483.93,120,16,0,44,14,0,0,0,0,0,0,0,0,17527.63
131,4a15a103-7fcd-42bd-a196-6de9e9de5f67,30,With Parent,North York,43.7377481,-79.51131519,fulltime,25589.19,156,15,5,81,12,25,16,8,2,0,2,0,0,14046.08084
132,2512c951-880b-4f39-9501-141f36cd1508,91,Group,Scarborough,43.71107565,-79.27059519,unemployed,31814.3,39,16,6,77,4,27,23,9,5,21,3,0,0,29307.74
133,61a2c2aa-d467-4561-87ac-a4c615ba23c1,17,With Parent,Scarborough,43.79833851,-79.17720827,unemployed,0,113,0,0,30,8,0,0,0,1,0,0,0,0,145.46
134,4d7e218a-296a-47cf-99c9-4370660ffd45,34,Group,North York,43.73171623,-79.34140891,fulltime,72016,144,15,7,45,15,36,15,10,0,0,0,7,0,57799.39
135,bdcedc45-27e4-42ae-a3f8-17c3be5b086e,25,Group,Toronto,43.67454626,-79.37259624,fulltime,37496.25,152,15,7,58,13,39,14,9,6,14,0,0,0,21698.92
136,0d38dc52-2187-482c-890d-90f3484b2d3e,43,Group,North York,43.79491719,-79.43028712,parttime,33145.2,143,15,6,61,10,27,15,5,6,0,2,0,0,17447.12421
137,8a47565f-aa9c-419e-9ea4-41da0ffb4b0f,17,With Parent,Toronto,43.67164707,-79.35355541,unemployed,0,97,1,0,30,5,0,0,0,0,0,0,0,0,88.95
138,824bb9f0-b72c-4c3b-a245-25fd739651d4,16,With Parent,North York,43.72965824,-79.41877308,unemployed,0,88,0,0,31,8,0,0,0,0,0,0,0,0,136.63
139,be78b0b4-047f-4712-87a8-a46d01e9f4fd,18,With Parent,Etobicoke,43.63770842,-79.49353779,unemployed,0,110,0,0,31,14,0,0,0,0,0,0,0,0,138.71
140,83746758-8e11-4005-b2b0-49c702dd8e75,55,Group,Toronto,43.65112974,-79.45202577,fulltime,55887.7,141,15,7,45,7,12,20,9,0,0,0,0,0,58945.36
141,10ff2020-19b6-49e6-829e-caac71660478,27,With Parent,Toronto,43.659962,-79.45459517,parttime,18115.02,118,15,0,44,11,0,0,0,1,0,0,0,0,20934.11
142,85f3fad3-0494-41d0-b0af-0db2a57ed4e7,26,With Parent,Etobicoke,43.74418751,-79.59824195,parttime,11231.55,118,16,0,44,11,0,0,0,0,0,0,0,0,13471.33
143,abc1a214-a145-456b-9e83-c8f2ffc0773b,21,With Parent,North York,43.79180281,-79.44348741,parttime,9305.34,118,15,0,33,11,0,0,0,0,0,0,0,0,11478.33
144,2b48d658-2ea7-412c-936e-355abe7d74fc,19,With Parent,Toronto,43.6883733,-79.30720811,unemployed,0,109,1,0,29,12,0,0,0,1,0,0,0,0,279.58
145,8556b15b-7a15-4d6d-b4a5-3d8582849819,16,With Parent,York,43.69580512,-79.44106173,unemployed,0,107,1,0,30,9,0,0,0,0,0,0,0,0,156.33
146,68bb616e-cc35-4fde-b398-35df5a321d50,23,With Parent,North York,43.73137021,-79.50777171,parttime,10545.48,113,15,0,44,10,0,0,0,1,0,0,0,0,12572.63
147,4f044f77-ab5b-4785-9d8f-c7145526e2fd,19,With Parent,North York,43.77490163,-79.35688551,unemployed,0,109,0,0,31,13,0,0,0,0,0,0,0,0,306.68
148,b6f215e3-8c2a-4bbd-9f56-5fe127423322,42,Group,North York,43.77007404,-79.34427235,parttime,28595.6,142,15,5,57,8,27,14,8,0,0,0,7,0,14278.26
149,4693ba1b-2f9e-4d27-a98f-b0fec112c835,53,Group,Scarborough,43.81089319,-79.23238892,unemployed,0,104,0,0,0,6,0,0,0,0,0,6,0,0,1814.416352
150,7004f23f-59a4-49e4-8f5a-d53eb9dcd22a,24,Group,Etobicoke,43.63299399,-79.54566949,parttime,9092.49,150,15,6,42,14,18,16,9,1,0,0,7,0,5806.51
151,8c77c69e-fbad-43a7-b87f-f5b37106fcab,76,Group,Etobicoke,43.62670896,-79.51238841,unemployed,41391.7,139,31,7,58,145,41,13,11,6,0,0,0,0,25377.46
152,0ecd3b2b-5335-4063-b365-1eb39730611c,29,With Parent,East York,43.70986335,-79.2986157,fulltime,34263.9,151,16,7,73,14,33,14,9,0,13,0,6,0,17811.04
153,4615309c-5ee4-4783-98eb-6c05435808f4,65,Group,York,43.69580512,-79.44106173,fulltime,71449.5,143,15,7,58,139,39,17,9,6,0,0,0,0,60992.48
154,2b3f163f-7f10-46e7-9cc5-5ca9170ac504,33,Group,East York,43.70205065,-79.3687396,fulltime,46633,144,17,6,43,14,18,12,9,0,0,0,0,0,47909.02
155,f05e7702-be4f-4d45-a26d-8f2a9c05e0e4,17,With Parent,Etobicoke,43.73150807,-79.59628501,unemployed,0,99,0,0,31,12,0,0,0,0,0,0,0,0,134.37
156,6bff98de-3370-48ca-9536-ed75d2193fb1,28,With Parent,Etobicoke,43.74526365,-79.58396805,parttime,10991.64,120,15,0,46,12,0,0,0,0,0,0,0,0,12434.92
157,e0069446-0792-48b8-a373-040cfcd866df,28,With Parent,Toronto,43.6779678,-79.4488036,parttime,12787.17,121,16,0,44,12,0,0,0,1,0,0,0,0,14890.93
158,771672f7-6163-424d-b9d2-498177e53dcf,25,With Parent,East York,43.69389521,-79.30085396,parttime,11118.03,121,17,0,43,13,0,0,0,0,0,0,0,0,12869
159,29b2d803-e148-4e13-9082-c20d852c678e,45,With Parent,Scarborough,43.78502653,-79.32096428,fulltime,44496.1,112,16,0,44,9,0,0,0,0,0,0,0,0,51699.53
160,87f57708-2ada-44b8-8a71-2be82ecd8aac,28,With Parent,Toronto,43.67268762,-79.42173417,fulltime,20263.32,121,15,0,44,14,0,0,0,1,0,0,0,0,23970.54
161,b04c591d-e9d4-4559-b199-f9713400fbac,17,With Parent,North York,43.77278181,-79.45346554,unemployed,0,107,0,0,30,0,0,0,0,1,0,0,0,0,34.76
162,643d4c56-1f77-4169-883b-8f766d496107,36,With Parent,North York,43.75963792,-79.51715959,fulltime,23525,113,16,0,45,8,0,0,0,0,0,0,0,0,26343.36
163,efe6212b-068d-4c97-8a53-e07bc729fb53,30,Group,Scarborough,43.77626173,-79.3209627,parttime,12696.42,155,15,7,61,11,26,17,9,5,12,10,0,0,8375.528564
164,96d8fe32-1565-43cb-8cf1-74c111da18d7,36,Group,Scarborough,43.6931118,-79.27745747,fulltime,44551,145,17,6,43,11,12,19,8,0,0,0,7,0,45966.98
165,a9c2dc03-039b-4f43-8de7-8c7486ef84e5,52,Group,North York,43.78261478,-79.45526084,fulltime,91143.25,146,16,6,44,136,35,14,10,0,0,0,7,0,80189.56
166,445d4699-746c-489f-85e0-ea9662219383,67,Group,North York,43.74472294,-79.51930923,parttime,21588.75,144,16,4,44,6,13,20,8,0,0,0,0,0,19460.75
167,d9aefcc8-1217-42d5-a143-dea92049e4f1,29,With Parent,Etobicoke,43.69293076,-79.51734668,parttime,7884.69,116,17,0,43,12,0,0,0,0,0,0,0,0,8883.1
168,384fd6fa-b2f6-485d-ac0e-a7bb9b3ef4f1,59,Group,Toronto,43.67507276,-79.46013533,parttime,34372.35,145,15,6,60,4,27,19,10,5,0,0,0,0,21769.35
169,a97b63ea-3b9d-4292-9b06-3d0ce3a29487,30,With Parent,Scarborough,43.79857406,-79.30512678,unemployed,0,111,0,0,36,11,0,0,0,0,0,6,0,0,3809.107024
170,8c63c8af-ae19-442d-b5e0-d9a0d02c225d,66,Group,Scarborough,43.71176351,-79.26143376,parttime,27523.4,136,15,7,82,6,33,26,9,6,0,3,0,0,15005.24677
171,15611c22-f5f5-42bc-a0d0-57831bf2e37b,25,Group,Toronto,43.64876458,-79.43345046,parttime,10874.82,149,15,6,41,20,24,27,8,0,0,1,7,0,6975.558154
172,2c912e87-04bb-463d-a170-dacb0ac7a73a,91,Group,Toronto,43.66663603,-79.33954999,unemployed,29887.2,36,17,6,62,4,33,12,8,5,6,0,0,0,16076.35
173,720d6e51-2af2-46a5-8cf5-aca29c0cf388,27,With Parent,Toronto,43.66483495,-79.38119237,parttime,5920.2,115,16,0,43,14,0,0,0,1,0,0,0,0,7330.97
174,e70bdae2-492d-4048-b50c-ebb3ec84c363,33,Group,Scarborough,43.75067432,-79.24484193,fulltime,67650,149,15,7,45,12,33,17,9,0,0,0,7,0,53384.52
175,1d90e88d-0a5a-44e9-bae1-9bea8fb2fba5,34,Group,Toronto,43.68687335,-79.37315986,fulltime,309401,153,15,4,46,11,34,25,11,0,0,0,7,0,329469.11
176,0fbb5478-814a-4ebe-82b8-53b48bb14aa5,24,Group,North York,43.76405804,-79.56747765,parttime,12228.15,146,16,6,89,14,28,14,10,6,0,6,0,0,8987.793416
177,f887fe27-7e51-472c-9626-58f4bf004b60,16,With Parent,Scarborough,43.73913589,-79.27179484,unemployed,0,89,1,0,30,12,0,0,0,0,0,0,0,0,137.09
178,32423028-637b-42ce-8f2d-b16f19276f77,78,Group,North York,43.7418536,-79.48760094,unemployed,21888.3,139,16,6,45,3,18,25,7,0,6,0,0,0,20254.45
179,f6b33565-a78f-46cc-998d-5b46664e232a,20,With Parent,Scarborough,43.79684736,-79.23401211,unemployed,0,102,2,0,29,14,0,0,0,0,0,0,0,0,70.53
180,68b941db-6b39-4107-93ef-1fd22f38d8d8,48,Group,Toronto,43.66836848,-79.45384619,parttime,28393.2,141,15,5,52,10,27,14,10,1,0,0,7,0,14440.44
181,73659a1b-83a1-4f6b-af4f-332407f87d47,48,Group,York,43.69814541,-79.46295836,fulltime,43645.8,143,16,7,44,8,18,15,5,0,12,0,0,0,44360.07
182,639e8574-6073-48a3-9bc6-c8874760f24a,37,With Parent,Toronto,43.64941226,-79.37087997,fulltime,39578,111,16,0,45,8,0,0,0,0,0,0,0,0,45368.07
183,e6360b28-43e4-4cb5-8ddb-dca79e0334b3,63,Group,Scarborough,43.81849801,-79.28262707,fulltime,39244.5,144,15,5,59,8,28,25,10,5,12,0,0,0,23134.04
184,6fe4738f-299e-4ecf-a6c3-c272502178e5,38,With Parent,North York,43.73716591,-79.4971248,fulltime,42271,116,15,0,44,10,0,0,0,1,0,0,0,0,48358.09
185,0de9eec1-df2e-4798-826f-dcdfafdb5d54,24,With Parent,Toronto,43.63961766,-79.41579229,parttime,6443.91,115,16,0,43,12,0,0,0,1,0,0,0,0,7602.65
186,a965b357-cee5-4110-a361-781801f831d6,74,With Parent,North York,43.75165423,-79.32689308,unemployed,25812.5,116,31,0,45,7,0,0,0,0,0,0,0,0,29599.55
187,542c6002-4f06-4a7d-ac9a-d17cf03c465f,41,With Parent,Toronto,43.66123252,-79.40595941,fulltime,59603.5,111,16,0,45,9,0,0,0,0,0,0,0,0,69706.81
188,25e2e969-b804-4447-8eaf-0fe49a7d49c1,51,Group,Scarborough,43.809121,-79.20671817,fulltime,42147.5,141,15,5,59,132,42,23,7,5,0,0,0,0,22587.17
189,e10f5cde-8ddf-40b0-b8bb-9882f627aa70,28,With Parent,Toronto,43.7030817,-79.41454978,fulltime,34080.75,116,16,0,43,12,0,0,0,1,0,0,0,0,40499.02
190,35707bdc-157f-4993-be94-daa77cee9921,24,Group,Scarborough,43.79183572,-79.28960686,parttime,9560.43,150,16,5,48,14,40,14,8,0,0,6,7,0,7633.532026
191,1e917f76-166d-41dc-a066-251f6b98fe83,39,Group,Scarborough,43.78293933,-79.29957063,fulltime,61805,145,17,6,43,7,19,21,10,0,0,0,7,0,66109.34
192,bb457506-5fc7-488f-aa7a-1b86bb048737,80,Group,Toronto,43.67257603,-79.41339357,unemployed,30492.7,142,31,7,69,136,41,17,11,5,18,3,0,0,18629.03696
193,f62e89a6-8ce2-4ae5-8fd5-a020ae30e81a,27,With Parent,Etobicoke,43.60667371,-79.52082232,unemployed,0,121,1,0,32,14,0,0,0,0,0,6,0,0,2322.298334
194,32cf7218-6057-40e6-a737-6ebf86beec48,38,Group,Etobicoke,43.72631093,-79.59354513,fulltime,39604,147,15,5,45,135,25,22,8,0,13,0,0,0,38103.79
195,4c6f7013-1b18-4d37-a517-d5f0897ec174,18,With Parent,Scarborough,43.8066859,-79.28805699,unemployed,0,105,0,0,30,8,0,0,0,1,0,0,0,0,128.25
196,dda29c29-5ed9-4414-a920-b1e4cad184e0,24,With Parent,Scarborough,43.7533555,-79.27242004,parttime,14423.31,125,15,0,44,12,0,0,0,1,0,0,0,0,16494.63
197,e50086a9-6a61-4a5b-9e4d-2e485e39824e,33,With Parent,North York,43.79172919,-79.3653969,unemployed,0,113,0,0,31,13,0,0,0,0,0,6,0,0,3684.014919
198,a5e4ff40-712b-47de-a2bc-c404f06def84,28,With Parent,North York,43.74348302,-79.34374725,parttime,19344.27,119,15,0,46,13,0,0,0,0,0,0,0,0,22203.08
199,54484ecc-3457-4e77-828b-83b8c527e6de,57,Group,Scarborough,43.79148974,-79.18042292,fulltime,65798.4,142,16,6,58,8,39,20,12,5,14,0,0,0,49636.48
200,9bdeb0cc-ce6e-402c-9919-54e3fd80150b,20,With Parent,Scarborough,43.78293933,-79.29957063,unemployed,0,114,0,0,31,12,0,0,0,0,0,0,0,0,159.84
201,8d23c41c-5c5f-49d0-8026-49fab722c94f,37,Group,York,43.68240138,-79.48124405,fulltime,32722,149,17,7,43,137,26,20,9,0,0,0,7,0,30947.71
202,b4590d42-18fe-4cc4-8ca8-7add34a6d999,58,Group,East York,43.69389521,-79.30085396,fulltime,43090.5,149,16,6,57,7,27,26,9,6,0,0,0,0,24717.25
203,3de14f87-468c-4305-9438-2e14c2164357,21,Group,North York,43.79366944,-79.34837155,parttime,13864.29,147,16,6,41,13,28,17,9,0,14,5,7,0,9035.178534
204,a8c7c4cb-2369-4990-967b-c22fa53d6ce6,69,Group,York,43.65038012,-79.48719802,unemployed,0,113,0,0,0,6,0,0,0,0,0,6,0,0,2517.97468
205,078e43c7-9cf6-49cc-95ef-73823b75853c,31,With Parent,North York,43.75324251,-79.51211645,parttime,7519.05,119,16,0,44,14,0,0,0,0,0,0,0,0,7987.8
206,9b39a492-1330-4b05-9436-14a11677a928,21,Group,Scarborough,43.80423318,-79.26041938,parttime,9492.78,140,15,7,110,12,35,25,9,0,0,0,7,0,3906.59
207,3dca1ad0-3609-45ed-a0a9-2fb919274369,25,With Parent,Toronto,43.66174247,-79.43239632,parttime,11661.54,120,16,0,44,13,0,0,0,0,0,0,0,0,13726.67
208,0472bb61-4cea-488e-806e-76e08470e3c0,16,With Parent,Toronto,43.66526263,-79.30777857,unemployed,0,96,1,0,31,13,0,0,0,0,0,0,0,0,116.7
209,ad2fab61-2c48-4a00-84c8-ac841a73df1f,29,With Parent,North York,43.78018949,-79.41109622,parttime,8878.98,116,16,0,45,12,0,0,0,0,0,0,0,0,9437.94
210,9986fa0f-2de0-4214-84f4-88a4621d0697,70,Group,Toronto,43.6622355,-79.33889934,parttime,19232.75,148,16,6,45,6,25,24,7,0,0,0,7,0,15535.29
211,f4714194-86ba-4f08-b468-8eb5cdc2aba0,60,With Parent,Etobicoke,43.62670896,-79.51238841,fulltime,56108.5,114,15,0,45,5,0,0,0,1,0,0,0,0,65342.89
212,bbdc4f86-96ec-43f2-959b-f222aa6f991a,23,With Parent,North York,43.76861677,-79.38806617,parttime,11874.06,109,15,0,45,13,0,0,0,0,0,0,0,0,14244.08
213,e8c74963-dde9-41bf-ae73-97c6b3a521b1,57,Group,Scarborough,43.8262895,-79.28785676,parttime,28911,152,15,7,45,138,25,23,10,0,14,0,7,0,26598.17
214,61c1326a-b28c-4ecf-8321-d0bc0bc8f8c0,64,Group,North York,43.7862998,-79.41783064,parttime,28709.95,147,15,7,59,6,26,13,7,6,0,7,0,0,23443
215,657cdcb8-b716-4aba-bdac-854a06d0780a,24,Group,North York,43.76014563,-79.41442938,parttime,19782.51,154,16,6,92,14,34,21,9,5,14,5,0,0,12873.95351
216,27be5189-9af6-4ce2-9c84-1aec0616b756,22,Group,Toronto,43.69178664,-79.4172735,fulltime,28808.67,145,17,7,58,12,34,16,9,5,0,1,0,0,14345.81169
217,526a36c3-b4f7-4609-8674-849b04810728,19,With Parent,North York,43.75740832,-79.44205623,unemployed,0,109,0,0,31,10,0,0,0,0,0,0,0,0,145.3
218,fcec59c2-6f9e-4ea3-8eb7-2992a15df691,59,Group,Etobicoke,43.62182191,-79.4986248,fulltime,49545.45,144,15,7,59,6,28,22,9,5,0,0,0,0,30288.04
219,403e5306-d158-4260-8382-52ca4718abf8,54,Group,North York,43.77265995,-79.38192414,fulltime,36803.45,147,15,6,62,138,34,24,8,5,0,2,0,0,19851.46243
220,88659f4f-2243-474e-93c9-a5a6d43f6171,24,With Parent,York,43.7049416,-79.43997547,unemployed,0,118,0,0,33,14,0,0,0,0,0,6,0,0,2329.13748
221,6f1cc067-c477-43f1-9ff4-ab0fc50cf685,41,Group,Toronto,43.66007533,-79.36050238,fulltime,60843,149,15,5,58,12,26,25,8,6,0,7,0,0,55187.34
222,d78069dd-bbd5-4c64-9ce7-3d23423c289b,26,With Parent,Toronto,43.6375103,-79.40058038,parttime,7003.92,120,15,0,45,12,0,0,0,0,0,0,0,0,7938.48
223,4b4c93e5-be2b-4c15-9322-21bcf743a44e,31,Group,Scarborough,43.81495438,-79.26999443,parttime,17488.02,150,16,7,65,12,39,18,9,0,0,2,7,0,10313.769
224,13113e7f-a891-458b-ba9f-6866acef580f,23,With Parent,Scarborough,43.81089319,-79.23238892,parttime,12065.46,113,15,0,44,13,0,0,0,1,0,0,0,0,14558.75
225,3bc2805f-1072-4c52-b6c7-d6de501a7a37,60,Group,North York,43.76213932,-79.37693582,fulltime,65142.9,150,15,7,58,137,34,17,7,6,0,0,0,0,47512.24
226,27b43c63-496c-44e6-9788-45bf3fd41b55,52,With Parent,Etobicoke,43.72631093,-79.59354513,fulltime,47973.4,111,16,0,43,6,0,0,0,1,0,0,0,0,55640.9
227,af28b3db-891e-4926-b3f8-d05f1d5af9f7,58,Group,North York,43.78028156,-79.44551629,fulltime,35517.75,145,16,7,58,6,19,26,9,5,0,7,0,0,28048.78
228,82570207-3c03-4315-a20f-9c30f05ad6c1,21,With Parent,Toronto,43.66077428,-79.36556819,unemployed,0,112,1,0,34,14,0,0,0,0,0,5,0,0,1146.789311
229,aac613f8-bd2f-4dce-a1b1-e1db736ea94c,60,Group,Toronto,43.64206736,-79.44543795,fulltime,56833,144,15,7,43,141,20,23,9,2,0,0,7,0,57176.18
230,a5f34cf7-5b83-41fa-8028-f6ee14916508,48,With Parent,Scarborough,43.74627946,-79.25844206,fulltime,75599.7,143,15,7,90,10,27,22,11,5,0,0,0,0,60545.72
231,099346cd-3853-4e94-b9f8-47b4f233ce2c,38,With Parent,Toronto,43.65181784,-79.47508744,unemployed,0,114,0,0,36,8,0,0,0,0,0,6,0,0,4640.577439
232,24e096b6-da4d-4306-9456-5146c1a0643c,20,With Parent,Etobicoke,43.59299674,-79.52824764,parttime,12179.97,115,17,0,31,12,0,0,0,0,0,0,0,0,14225.43
233,cbe3a783-8c87-41ce-b465-78775e91ec5c,71,Group,Etobicoke,43.66087836,-79.57301545,fulltime,37989.55,139,15,6,45,7,18,11,9,0,0,0,7,0,37989.2
234,90b750af-ae41-4d09-be3c-44b33558921d,24,Group,Scarborough,43.790984,-79.18177163,parttime,16216.53,144,16,7,74,14,27,27,8,6,0,5,0,0,10441.99725
235,b2a2449a-bbfe-4a9f-a106-57355aefd8f7,18,With Parent,Toronto,43.67613256,-79.29166492,unemployed,0,106,0,0,33,10,0,0,0,0,0,0,0,0,300.39
236,fe190f30-ee28-4ee9-aab0-f25ef7b67589,28,With Parent,Toronto,43.65679863,-79.36992666,parttime,7280.13,115,15,0,45,14,0,0,0,0,0,0,0,0,8825.72
237,8aecb4c0-994e-46fb-a509-45a488acf8ce,27,Group,Toronto,43.65401528,-79.45789692,fulltime,21091.29,159,15,6,44,19,27,15,9,2,0,0,0,0,17630.83
238,2ba80055-a430-45ba-81bc-0e9940b4c1d7,43,With Parent,Scarborough,43.81849801,-79.28262707,fulltime,42087.1,112,16,0,44,7,0,0,0,0,0,0,0,0,48920.91
239,1a5a5b4e-018f-4eda-9b85-9333f686d99d,30,With Parent,Toronto,43.67026167,-79.44158701,parttime,10843.47,119,16,0,44,15,0,0,0,0,0,0,0,0,11824.46
240,31910bc6-d333-463f-9e97-ebb001b01817,24,With Parent,Toronto,43.69772035,-79.398171,parttime,19406.64,112,15,0,44,13,0,0,0,1,0,0,0,0,23105.65
241,b88ae681-9217-4ef1-9b4c-55d7c6b15d1e,58,Group,North York,43.73716591,-79.4971248,fulltime,47848.05,145,15,7,58,7,34,17,9,6,13,0,0,0,31051.64
242,05554dab-dd89-4115-a8b7-473eee6fbe6e,54,Group,Etobicoke,43.609209,-79.55833182,parttime,28316.45,149,16,7,58,144,32,13,9,5,0,7,0,0,17173.54
243,65b9db0e-5193-4307-8366-b6570dfb369c,48,Group,Toronto,43.64889401,-79.48554589,fulltime,75080.5,146,15,6,43,8,12,26,11,2,0,0,7,0,80504.56
244,739d374f-64ff-4186-bdd8-d6891b6e886a,47,Group,York,43.68392459,-79.46758046,fulltime,42348.9,143,16,6,58,8,27,13,9,5,0,0,0,0,28865.6
245,9b7840da-86b5-45fa-9946-ce980a96b44d,21,Group,North York,43.78977083,-79.45180669,parttime,8299.5,144,15,7,37,151,20,19,9,1,0,3,0,0,6754.700442
246,465d706a-b908-4017-bf37-1e0ef35ef4b5,39,Group,Toronto,43.70384103,-79.40354624,fulltime,159871,143,16,8,44,140,34,14,12,0,0,0,7,0,156754.04
247,18e7ee01-901e-4642-9400-e2b72037479b,53,Group,North York,43.75854019,-79.51668093,parttime,19202.7,139,16,6,43,7,19,17,9,1,10,0,7,0,16925.44
248,b5bdd36e-5556-449d-8466-3710bf5e2931,51,With Parent,Toronto,43.71485018,-79.39931647,fulltime,68636.7,114,15,0,44,10,0,0,0,1,0,0,0,0,79514.35
249,bac2cbe1-2f69-4c4b-a459-7aae49339628,25,With Parent,Scarborough,43.74982894,-79.2475671,parttime,11647.35,117,16,0,44,11,0,0,0,1,0,0,0,0,13465.82
250,458433e6-8f79-4de0-876b-e2d13ad24cdd,24,With Parent,Scarborough,43.80205988,-79.14501241,parttime,14534.85,116,15,0,45,13,0,0,0,0,0,0,0,0,17512.98
251,271f74be-0a02-4717-ae57-e44cd07d05bd,43,Group,Etobicoke,43.59876926,-79.51644162,fulltime,52973.8,152,15,7,46,10,33,20,10,0,0,0,7,0,34782.09
252,a344b7ed-4610-4f96-a155-79ac1b015f40,36,Group,North York,43.78705757,-79.41059054,fulltime,81119,145,16,6,58,13,25,15,8,5,0,7,0,0,81809.14
253,d628b858-6e20-4d14-8217-a6bd68db11fb,22,Group,Toronto,43.7030817,-79.41454978,fulltime,42257.82,141,16,6,44,13,12,17,9,0,0,0,7,0,43779.27
254,48296cda-809c-427f-8e61-3da08f347ca8,27,Group,Scarborough,43.72990391,-79.25505747,unemployed,0,117,0,0,2,14,0,0,0,0,0,6,0,0,1680.445753
255,5a7ba9d6-23e2-4841-9702-4e3503353d2b,81,Group,Etobicoke,43.62026254,-79.50300297,unemployed,21821.8,139,31,7,63,4,33,17,8,1,5,2,7,0,12941.68185
256,7d62355c-271d-4f4d-97c5-bd3dd5b07f21,58,With Parent,North York,43.7418536,-79.48760094,fulltime,38955.1,112,16,0,43,7,0,0,0,1,0,0,0,0,44702.25
257,4314a4a8-4044-48c1-8fdd-416baca1b673,42,With Parent,Toronto,43.68468154,-79.39165499,fulltime,52451.3,112,15,0,44,8,0,0,0,2,0,0,0,0,60216.73
258,8e0f9ab3-963a-4df1-a0a9-7b34077f83be,29,Group,North York,43.76520625,-79.39275455,fulltime,24863.52,150,15,7,85,19,40,23,6,5,0,4,0,0,15696.87432
259,ac24b377-166c-43da-b993-a8cb322160ab,32,Group,North York,43.76011035,-79.34198396,fulltime,34704.78,160,16,7,58,13,28,11,9,5,0,0,0,0,18276.46
260,f9246cb6-90d2-47fb-a6a7-d16538d22f68,61,Group,Toronto,43.64469516,-79.45111156,fulltime,49840.8,134,16,7,44,9,27,13,9,0,0,0,7,0,32174.36
261,53a893f4-9fb8-433c-bf05-668e8cb50b6f,53,Group,North York,43.71120266,-79.42852827,fulltime,100936.65,143,15,7,45,8,18,18,10,0,0,0,7,0,110388.45
262,d3413628-ad6a-4e1c-b744-b3572f1167d9,35,Group,Toronto,43.63707963,-79.44043851,fulltime,56046,147,17,7,44,13,18,19,9,0,0,0,7,0,59246.58
263,f3287fdd-895a-463d-bf51-524451b13400,40,Group,North York,43.77490163,-79.35688551,fulltime,95487,148,15,6,58,9,34,16,9,6,0,0,0,0,87984.66
264,26f570b4-9a0d-45da-bf96-f95aab67244c,37,With Parent,Etobicoke,43.73420764,-79.58260676,fulltime,24211,115,16,0,44,8,0,0,0,0,0,0,0,0,26909.52
265,a9e74374-9314-411f-b940-353a8720ca85,23,Group,Etobicoke,43.74418751,-79.59824195,parttime,12972.63,131,16,6,76,12,34,23,10,5,0,6,0,0,8909.592034
266,2b242fc2-ab90-4a27-802d-fc2a204672bb,32,With Parent,Scarborough,43.69959718,-79.25409207,fulltime,39024,113,15,0,45,14,0,0,0,0,0,0,0,0,45072.27
267,d5fef520-a2a4-440a-832b-25479551f938,60,Group,Scarborough,43.7619235,-79.22865175,parttime,29291.65,141,15,6,58,145,34,18,7,6,12,2,0,0,16323.79723
268,91961842-c408-46e0-ad53-d2978408e264,19,With Parent,North York,43.7923879,-79.4427993,unemployed,0,104,0,0,31,8,0,0,0,1,0,0,0,0,73.27
269,868badcf-8f8f-4ecc-a88a-c8c674480b22,58,Group,North York,43.75682003,-79.35948489,fulltime,92484.15,154,15,7,46,9,19,14,9,0,0,0,7,0,99661.61
270,eba8476f-805b-4507-8515-3e8f2ac30856,22,With Parent,North York,43.75116074,-79.48856175,unemployed,0,107,1,0,31,11,0,0,0,1,0,6,0,0,1801.381375
271,458502b1-847d-42b3-8da7-163dc96237b9,73,Group,Etobicoke,43.73420764,-79.58260676,unemployed,16476.6,147,30,5,45,130,18,16,8,0,0,0,7,0,12378.45
272,37d55ff3-1d88-49ae-8363-983528e5e152,19,With Parent,Toronto,43.64707517,-79.40909958,unemployed,0,113,0,0,31,12,0,0,0,1,0,0,0,0,253.65
273,e5d9e210-670d-4324-8671-99df60c11039,48,Group,North York,43.72567025,-79.41678229,fulltime,163205.9,151,17,8,43,143,24,20,14,0,0,0,7,0,178596.71
274,057c309b-4de3-4d64-a37b-58c067b07b73,21,With Parent,Scarborough,43.74021306,-79.30190002,parttime,12721.17,116,15,0,33,12,0,0,0,0,0,0,0,0,15112.19
275,da5e2fc3-3352-4d5a-851d-96572c55caf6,21,With Parent,Scarborough,43.79140915,-79.23667848,unemployed,0,112,1,0,32,14,0,0,0,0,0,6,0,0,1955.710903
276,13901a3c-f47b-426e-9dfa-dcb52ac7c7cb,24,With Parent,Scarborough,43.790984,-79.18177163,parttime,15959.79,117,15,0,44,12,0,0,0,1,0,0,0,0,18799.81
277,962d1866-e762-42c8-aa13-30c9cb938b45,20,With Parent,East York,43.7096359,-79.30066861,unemployed,0,105,1,0,31,13,0,0,0,0,0,0,0,0,146.89
278,2c90ce51-7ad1-4a15-90a7-cd6cb4bb019f,74,Group,North York,43.78607674,-79.4477355,unemployed,20617.8,142,32,7,44,7,12,14,9,0,0,0,0,0,18199.84
279,c372b7f9-2277-446d-bb85-eafaf7a010a7,24,With Parent,North York,43.7690784,-79.3694836,parttime,10003.62,122,16,0,45,13,0,0,0,0,0,0,0,0,11907.72
280,5c19618c-dbf3-4341-9fa0-cdec15d63ce4,69,Group,North York,43.75477736,-79.44319005,parttime,31674.9,146,15,5,53,7,33,28,9,0,0,0,7,0,15820.36
281,2fa11036-3fe9-4879-8100-0698b6a61495,91,Group,Toronto,43.67627984,-79.32326198,unemployed,24749.2,36,16,6,65,0,33,20,10,6,15,2,0,0,13124.74613
282,720c4b8e-ce57-4d3d-a25c-753309dc26c9,25,With Parent,Toronto,43.66177843,-79.38421827,parttime,16136.01,118,15,0,45,13,0,0,0,0,0,0,0,0,18723.38
283,c550249a-4090-4692-b182-b116c228b4f8,21,With Parent,North York,43.75494401,-79.38584789,parttime,13716.78,116,15,0,33,13,0,0,0,0,0,0,0,0,15764.15
284,4195b7a2-b247-4fcc-aa87-62c0b3f8ea29,27,Group,Toronto,43.66554115,-79.45736374,parttime,11357.28,149,16,7,91,21,39,17,10,5,0,6,0,0,10193.98683
285,6041e27f-0017-494f-ab98-36e1579dc5da,17,With Parent,Toronto,43.63707963,-79.44043851,unemployed,0,103,1,0,31,5,0,0,0,0,0,0,0,0,51.66
286,dd42e966-851e-4966-af02-790567f9bd75,51,Group,North York,43.75324251,-79.51211645,parttime,28009.3,146,16,7,64,7,27,13,9,5,0,2,0,0,15101.82647
287,f7358214-09d9-44cd-9fbf-dfb2541b5af1,29,Group,Scarborough,43.80832305,-79.27236726,unemployed,0,119,1,0,1,15,0,0,0,0,0,6,0,0,1729.186523
288,aa5e2469-1a05-446d-8c5b-907645aba65d,44,Group,Toronto,43.66065125,-79.38612227,fulltime,38289.9,146,15,7,44,7,12,26,8,1,0,0,0,0,37588.17
289,e2a408fc-4c54-4c52-98f0-1720f2041e9b,43,Group,Etobicoke,43.67427811,-79.55491659,fulltime,140388.6,138,16,8,44,9,12,22,12,0,13,0,0,0,154258.02
290,883af24d-ce6d-478a-99a8-3926aa3dcd2c,59,Group,Scarborough,43.80519445,-79.25990054,parttime,34809.35,146,15,6,51,6,34,18,9,1,13,0,7,0,17285.43
291,0fe44d2d-0fe3-4c89-aac3-d1a21e1c9d4e,52,Group,Toronto,43.64839035,-79.36411724,fulltime,52532,144,16,6,58,7,34,16,7,6,0,0,0,0,34723.09
292,9b323638-cdbf-44f4-b9a0-a0469042989a,38,With Parent,Scarborough,43.72122223,-79.29673775,fulltime,43593,114,16,0,44,9,0,0,0,1,0,0,0,0,50137.03
293,66eb9afe-418f-4af8-b25b-0d651d23bacc,24,With Parent,Toronto,43.69519829,-79.39792783,fulltime,20046.51,150,15,7,74,14,25,27,9,0,0,0,7,0,19830.42
294,293b600a-5691-4981-a58a-2f63e1af0c0e,29,Group,Toronto,43.64284145,-79.43781365,parttime,7467.9,149,15,6,40,13,12,14,9,1,13,2,7,0,5892.268624
295,98818ba4-6906-45a1-860d-ff580fe0530d,79,Group,North York,43.79172919,-79.3653969,unemployed,56253.4,141,30,7,58,10,39,17,9,6,5,0,0,0,35988.73
296,23836ad2-b625-4563-a4fd-6fb32a1ca644,22,With Parent,Toronto,43.66629676,-79.47270901,parttime,16286.49,107,15,0,46,13,0,0,0,0,0,0,0,0,19351.3
297,594bd49c-e678-4db1-9e35-9d98ea28f73c,30,Group,Toronto,43.65274861,-79.3943722,fulltime,28188.27,146,15,5,45,14,12,21,8,0,0,0,7,0,26962.06
298,6c684572-1de8-45e5-9d8b-e1062294bff2,59,Group,Scarborough,43.78277476,-79.1795529,fulltime,72749,145,15,8,58,142,40,28,13,6,0,0,0,0,59368.66
299,564291e3-a189-4143-a7b8-74dff9ae94b0,27,With Parent,Scarborough,43.81292955,-79.23329593,parttime,10588.05,114,15,0,45,13,0,0,0,0,0,0,0,0,12178.51
300,2536e045-ba47-4d79-85ca-5e42dfc49a5b,68,Group,Scarborough,43.70159983,-79.27444773,fulltime,37662.75,141,15,7,62,7,33,18,9,5,0,2,0,0,19845.53097
301,fda21277-9555-4b12-bcc0-af6626a12719,76,Group,Scarborough,43.78502653,-79.32096428,unemployed,21631.4,149,30,7,89,7,28,21,8,5,0,5,0,0,13937.58934
302,c74cfaa9-ea9b-4f9a-8de7-f5b3aa03aca3,48,Group,York,43.66514554,-79.49173526,fulltime,44962.5,151,16,7,43,5,12,14,7,1,0,0,7,0,46123.67
303,4c2a88f3-3c8d-4062-a229-449916451163,34,With Parent,North York,43.70880236,-79.42633588,fulltime,85738,121,16,0,45,13,0,0,0,0,0,0,0,0,99820.46
304,1535855f-c2eb-4687-bbd6-7f87dbd393f7,57,Group,Scarborough,43.73937013,-79.21533439,fulltime,66666.65,143,15,5,45,8,25,20,11,0,0,0,7,0,71860.54
305,571fcbcf-8713-43bb-8a4d-90b69a11d8fe,51,Group,Toronto,43.66464738,-79.43860903,fulltime,49443.1,136,16,6,44,7,12,27,9,0,0,0,0,0,51458.05
306,a01997ab-47ec-4265-899c-251c65c968af,42,Group,Etobicoke,43.67795149,-79.55500804,fulltime,37158,149,16,7,58,9,31,21,8,6,0,7,0,0,29039.01
307,adf53142-b294-4ac8-abe8-17df4f7ac66b,20,Group,East York,43.70986335,-79.2986157,unemployed,0,112,0,0,64,13,0,0,0,0,0,0,0,0,44.11
308,878652bd-a5b6-48d2-a4bb-be0e26e30d00,29,With Parent,Toronto,43.71197083,-79.39995277,unemployed,0,116,1,0,34,14,0,0,0,1,0,6,0,0,2947.866033
309,7cc24c93-6ffc-45bd-a027-4339cec95dce,31,With Parent,Toronto,43.6717439,-79.45484699,parttime,10931.91,121,15,0,44,12,0,0,0,1,0,0,0,0,12018.55
310,b3cfe93a-64bb-4e76-a89b-8b386b6a1e63,26,With Parent,Toronto,43.64547521,-79.39231834,parttime,19246.26,118,16,0,45,12,0,0,0,0,0,0,0,0,23044.51
311,706da30f-6edb-4593-acbe-6db065922191,55,Group,Scarborough,43.75523891,-79.17987322,fulltime,64670.25,145,17,8,43,6,27,19,13,0,0,0,7,0,47289.58
312,96810a6f-7898-4570-b96b-11f7c63b443f,90,Group,North York,43.74398862,-79.49417373,unemployed,21058.1,32,16,7,45,4,19,19,9,1,6,0,0,0,18765.4
313,ced2f2d3-4f0b-47b6-a3da-caf48eed37ef,84,Group,Toronto,43.66473422,-79.3645701,unemployed,41028.4,140,30,7,44,5,34,16,13,1,6,0,7,0,22174.66
314,65efaf47-0335-4376-85a8-412bd862e54f,18,With Parent,Toronto,43.65887236,-79.37299311,unemployed,0,110,1,0,30,12,0,0,0,0,0,0,0,0,114.6
315,2f6c73eb-15ff-4e2a-ab6e-5428c1a18579,26,Group,North York,43.75813999,-79.42335533,fulltime,26987.07,150,15,7,75,14,35,20,9,5,14,2,0,0,13952.32082
316,bda5c46d-205a-4d97-a8df-c24ed3c2947f,28,With Parent,North York,43.74073228,-79.39706242,fulltime,102707.22,152,15,7,73,150,40,17,14,1,0,0,7,0,92360.75
317,9f1fb146-97cd-4839-a1d6-0b9e4d2d3e60,23,With Parent,Toronto,43.65789629,-79.39893869,parttime,8321.28,99,15,0,45,12,0,0,0,0,0,0,0,0,9996.77
318,6d3eea47-cadd-4aa3-bf65-9e26cb50bf98,53,Group,Toronto,43.66300316,-79.34445635,parttime,32340.3,146,15,7,72,143,33,16,8,5,0,2,0,0,17270.81616
319,372f63af-8b78-4837-9fa4-74db3808f767,50,Group,York,43.70230983,-79.52416927,parttime,20871.4,152,16,6,44,9,12,20,9,1,0,0,0,0,18505.97
320,517a5127-ae06-4b41-b743-54a827b0e781,24,With Parent,Scarborough,43.74313323,-79.20182389,fulltime,26294.4,149,16,6,83,13,27,26,10,3,0,2,0,0,14206.5015
321,21814860-4a6c-46da-9b54-9edd493a24d6,26,With Parent,East York,43.69375353,-79.30875611,parttime,13047.54,120,15,0,44,12,0,0,0,1,0,0,0,0,15090.36
322,3b7e711d-e050-44ac-ac4d-743dd8393788,21,With Parent,York,43.68240138,-79.48124405,parttime,10797.6,117,15,0,32,11,0,0,0,1,0,0,0,0,12826.64
323,e7c0316b-e6a8-4918-ad79-38a109791d44,21,With Parent,Toronto,43.67265112,-79.38873202,fulltime,24386.67,113,15,0,32,12,0,0,0,1,0,0,0,0,28767
324,36b2343a-e28b-4488-b57f-bf8bd0301a4c,17,With Parent,Toronto,43.67178387,-79.33652658,unemployed,0,87,2,0,29,9,0,0,0,0,0,0,0,0,59.72
325,a51e77a8-e2d0-450c-bc96-9a02cabfbba3,25,With Parent,North York,43.73259219,-79.36755759,fulltime,26399.01,117,16,0,45,13,0,0,0,0,0,0,0,0,30998.67
326,bba40c5a-1e43-4d22-bd23-d7c86ae7c083,58,Group,Scarborough,43.77254002,-79.3199735,fulltime,37015.05,151,17,7,52,13,34,28,9,0,0,0,7,0,18452.04
327,541a85f7-f7b6-434f-a258-f1be3024fb5b,23,Group,Scarborough,43.77553387,-79.20958532,parttime,14165.25,152,15,7,93,13,39,25,8,5,0,5,0,0,9599.918995
328,03b41f68-1675-4dd3-bd52-fb922bd19a16,28,Group,North York,43.76773801,-79.38049867,fulltime,21414.03,152,16,6,59,147,43,17,8,0,0,2,7,0,12189.282
329,f0539ef7-648b-401f-835c-1261e552f62a,38,Group,North York,43.76279275,-79.34783724,fulltime,41923,142,15,7,44,134,24,13,8,1,11,0,0,0,40235.79
330,63b41758-d997-4cb8-909f-6e46d3f3fe8d,55,Group,North York,43.75116074,-79.48856175,fulltime,62839.45,145,16,7,44,14,24,15,9,0,0,0,0,0,66051.99
331,4c5be609-e7cc-42f8-8350-a4929cda7273,45,Group,Toronto,43.66192873,-79.38533516,fulltime,43630.4,151,16,5,45,14,25,19,7,0,13,0,0,0,42714.64
332,81428fc0-05e6-4b10-aadf-54031e34e94c,55,Group,Toronto,43.63766507,-79.435752,fulltime,35571.8,146,17,6,43,136,38,13,11,0,11,0,7,0,34002.27
333,758b7824-54ad-489e-9411-8274e01b2253,61,With Parent,Scarborough,43.68115248,-79.28390189,fulltime,58878.15,108,17,0,43,6,0,0,0,0,0,0,0,0,69206.91
334,dfe99bae-a483-46f8-8be4-a209e46f2535,51,Group,Toronto,43.67638386,-79.45555117,fulltime,80240.1,146,15,7,45,8,18,15,9,0,0,0,0,0,86922.32
335,08416bf2-1172-4b0d-8eda-6e0861230539,30,With Parent,Scarborough,43.71107565,-79.27059519,parttime,11263.89,118,16,0,44,11,0,0,0,0,0,0,0,0,11860.79
336,5ccb49e9-6d30-40eb-a8f2-a30732edf17d,44,Group,Toronto,43.6428617,-79.37691415,fulltime,87220.1,151,15,6,44,10,25,13,9,1,0,0,7,0,94234.94
337,8e273061-3e4a-4c68-a81d-8adfaa21716d,67,Group,Etobicoke,43.70225604,-79.54844059,fulltime,35445.45,144,16,6,43,9,25,16,10,1,0,0,7,0,35409.65
338,72b19971-95e9-4d3b-a462-95bce46de27f,27,With Parent,Scarborough,43.809121,-79.20671817,parttime,11396.22,120,15,0,44,12,0,0,0,1,0,0,0,0,13301.49
339,f0d45fd8-8e64-4098-85e4-a21971cbe418,27,With Parent,Toronto,43.67817131,-79.30888056,parttime,16769.61,120,15,0,44,12,0,0,0,1,0,0,0,0,19586.47
340,37ad2345-33b0-4775-b755-3f545e455fc1,33,Group,Scarborough,43.82627225,-79.28619925,fulltime,53510,155,17,6,57,13,39,17,9,5,11,0,0,0,36236.05
341,136c68ff-f2e6-4200-ae78-2420e34fc9bf,54,Group,Etobicoke,43.60057234,-79.50180291,fulltime,132225.85,141,16,7,43,7,39,18,11,1,10,0,7,0,125472.29
342,db145b77-4386-465a-b09c-dd2542cd1b25,48,Group,North York,43.74143557,-79.50934928,fulltime,36534.3,147,16,7,58,6,27,17,6,5,0,2,0,0,19621.4385
343,a4ef4918-011a-43e3-87c6-93cf262b7f4f,23,With Parent,Scarborough,43.80171939,-79.32836654,parttime,15340.71,109,15,0,45,15,0,0,0,1,0,0,0,0,17842.7
344,49438038-3b89-4769-8830-721bbbe2cd60,25,With Parent,Scarborough,43.79183572,-79.28960686,parttime,10057.74,115,15,0,45,12,0,0,0,0,0,0,0,0,11831.53
345,ddcbeed5-0046-4a5f-adce-3d26f00e7124,25,With Parent,Toronto,43.6578449,-79.36194988,parttime,11121.99,114,15,0,45,11,0,0,0,0,0,0,0,0,13438.58
346,1a141d4c-39d8-40c2-82e1-4afb79de2e84,63,With Parent,North York,43.78472502,-79.33881252,fulltime,35077.8,106,17,0,43,5,0,0,0,0,0,0,0,0,40724.61
347,294bc7f2-3e9a-4623-954f-2e04131fe669,17,With Parent,Toronto,43.70497393,-79.42767967,unemployed,0,91,1,0,31,10,0,0,0,0,0,0,0,0,135.07
348,ff4184f7-3b3f-4bef-bf92-de870a1c20ee,40,Group,Toronto,43.70194636,-79.40777286,fulltime,185941,144,15,7,59,137,41,20,11,5,0,0,0,0,182666.08
349,84ffada1-0409-42c9-8996-6a818d9d54ca,28,With Parent,North York,43.75547088,-79.37407825,unemployed,0,121,0,0,33,12,0,0,0,0,0,6,0,0,2354.164632
350,9343b913-7cd0-4ebd-8086-a602535f3dbb,31,Group,Scarborough,43.81950897,-79.32106903,fulltime,20296.98,145,15,6,64,137,34,14,8,1,0,2,7,0,11867.09185
351,cfc1f64e-cfbc-4d18-8b53-f32401a6f312,22,With Parent,North York,43.77946811,-79.41285347,parttime,7803.51,107,15,0,45,13,0,0,0,0,0,0,0,0,9121.94
352,9a7ad209-2765-41ac-8f93-d9ca67deff09,23,With Parent,Toronto,43.66007533,-79.36050238,unemployed,0,116,0,0,37,15,0,0,0,0,0,6,0,0,3116.551895
353,11cb403c-4058-4cd7-b4b9-24a83d40ae59,63,Group,Toronto,43.6563266,-79.4855426,fulltime,69446.9,144,16,7,58,8,33,16,10,5,0,0,0,0,54049.21
354,eade5a51-7ab1-4a9a-9c11-6892c6db46ae,20,With Parent,Scarborough,43.7140225,-79.28254362,unemployed,0,110,1,0,29,13,0,0,0,1,0,0,0,0,182.09
355,c501363d-8276-490d-bc09-ec034a91e3d2,24,With Parent,York,43.70230983,-79.52416927,parttime,8650.62,122,15,0,46,12,0,0,0,0,0,0,0,0,10036.55
356,791e6fe5-c7c8-4a35-b83e-660a8200058d,19,With Parent,Scarborough,43.6931118,-79.27745747,unemployed,0,116,1,0,30,12,0,0,0,0,0,0,0,0,204.24
357,22e23b1c-c872-4d9c-84b2-869a719ca96e,25,With Parent,North York,43.7675654,-79.40863528,parttime,14073.18,117,17,0,43,11,0,0,0,0,0,0,0,0,16262.82
358,dfad317b-2579-462f-8c6a-9eadb2c753d8,36,Group,Etobicoke,43.73742526,-79.58651567,fulltime,64510,145,15,7,58,13,28,16,9,6,0,0,0,0,45722.45
359,694d0b97-06e9-4288-a04a-47d221b1c4a5,28,With Parent,Toronto,43.64206736,-79.44543795,parttime,14958.9,113,15,0,45,14,0,0,0,0,0,0,0,0,17805.03
360,0328c173-c6bf-4d35-a09c-ca8399b764ec,35,Group,Toronto,43.6881125,-79.29580856,fulltime,39582,143,15,7,45,143,25,15,9,0,0,0,0,0,38725.4
361,a89ae873-59c6-4f54-a957-87b60c768e22,15,With Parent,Scarborough,43.79059154,-79.15095891,unemployed,0,103,1,0,30,6,0,0,0,0,0,0,0,0,105
362,cf0facbd-4e05-44d2-a77f-44dd34675a56,30,Group,Scarborough,43.78353126,-79.13778705,unemployed,37632.87,145,16,7,69,148,39,19,7,1,0,0,7,0,3635.63
363,4b0ad7a7-0883-42ec-bbb4-a3329db5b358,25,With Parent,North York,43.7579449,-79.49398803,parttime,9414.9,122,15,0,45,13,0,0,0,0,0,0,0,0,11061.25
364,c3239139-472c-4091-8b9d-4298ef9dec4e,45,Group,Toronto,43.70168991,-79.42364786,fulltime,39022.5,148,15,6,45,136,25,18,7,0,0,0,7,0,37743.37
365,214032ba-2871-441d-b37e-963866668c9a,19,With Parent,North York,43.73331345,-79.46015726,unemployed,0,116,1,0,31,13,0,0,0,0,0,0,0,0,340.56
366,79f6ee57-8ee8-4782-99b6-99498bb25669,33,With Parent,Etobicoke,43.73788959,-79.57261275,fulltime,32341,115,16,0,45,13,0,0,0,0,0,0,0,0,36740.77
367,f85298be-86ea-4998-b35e-78f17a81a4fe,19,With Parent,Toronto,43.64714584,-79.39115534,unemployed,0,110,0,0,29,7,0,0,0,2,0,0,0,0,71.54
368,fd18e444-ed86-4999-bda4-a8eef41acfdc,25,With Parent,North York,43.76828401,-79.39148636,parttime,18718.92,116,16,0,43,12,0,0,0,1,0,0,0,0,22311.1
369,26b0a036-6b80-4389-9e9a-5655a5ccd7b7,58,Group,Scarborough,43.79285903,-79.29809508,fulltime,64151.6,136,16,7,58,13,34,16,10,5,0,0,0,0,47908.67
370,5a0edf02-91dc-4fae-bc7d-4de798ee6e25,27,Group,North York,43.73023115,-79.46978545,fulltime,26053.17,150,16,6,43,14,18,18,8,1,0,0,0,0,25216.24
371,71ac31a1-f8e7-44bc-a6a8-dcf8b9961878,33,Group,Toronto,43.63657933,-79.47093754,fulltime,92819,151,16,7,58,14,33,13,10,5,14,0,0,0,82891.09
372,e21b94f2-141a-4488-8862-34b3fb688977,23,With Parent,Toronto,43.70099298,-79.41949962,fulltime,35029.83,119,16,0,44,14,0,0,0,1,0,0,0,0,41065.76
373,698d768b-6dc3-4914-ada5-e86bbcf5c303,39,Group,York,43.68714367,-79.50646563,fulltime,65758,147,15,7,59,8,27,14,9,5,0,0,0,0,56112.61
374,bb23f222-0bae-4fd7-b15f-458c8d785fca,19,With Parent,North York,43.75666757,-79.44299293,unemployed,0,110,1,0,29,12,0,0,0,1,0,0,0,0,197.9
375,7c61d2a8-b426-4d23-89b3-51bc39bf8f0a,88,Group,Toronto,43.63667366,-79.43765875,unemployed,29304.1,38,17,7,44,4,24,19,9,0,7,0,0,0,32263.83
376,baac54a1-7e43-4440-b52a-e7ef8d837b31,32,Group,Scarborough,43.77558314,-79.30330859,fulltime,73029,153,15,6,45,13,41,21,7,0,0,0,7,0,58050.97
377,1d02596b-bc4a-4460-8dc3-40666af3c2d9,19,With Parent,York,43.67058939,-79.48746214,unemployed,0,115,2,0,29,13,0,0,0,0,0,0,0,0,200.72
378,35ae54fd-5976-4179-9199-4b2bb303904b,65,Group,Scarborough,43.81918678,-79.28131298,fulltime,56904.05,142,15,6,59,137,40,21,8,6,0,0,0,0,39797.92
379,ce4cc8b9-2218-4524-a075-40ae5fb8be6c,26,Group,Toronto,43.65762418,-79.40573348,parttime,14108.16,153,15,7,44,14,12,14,8,1,0,0,0,0,11956.13
380,7ecb7595-527d-468b-832b-f0f9be6a37cc,19,With Parent,Scarborough,43.70802489,-79.27536466,unemployed,0,115,0,0,30,8,0,0,0,1,0,0,0,0,130.99
381,60156cbd-91ee-4684-b270-020ff9952d6f,40,With Parent,North York,43.76265617,-79.38385005,fulltime,70541,118,17,0,44,9,0,0,0,0,0,0,0,0,82212.5
382,ffbb48d4-b38c-49c7-9675-0b21d150c08d,36,Group,Toronto,43.67182761,-79.29447802,fulltime,144480,146,16,8,58,18,34,23,10,5,0,0,0,0,141765.15
383,086d96f2-403a-4cd5-b383-5c9d7ee3651f,45,Group,North York,43.7593443,-79.3167146,parttime,27318.5,142,15,7,73,7,34,20,9,5,0,2,0,0,14828.01172
384,b83a8a20-16d2-4759-96c2-158de27ebad4,26,With Parent,Scarborough,43.81687174,-79.20436721,parttime,16305.63,118,16,0,45,14,0,0,0,0,0,0,0,0,19489.81
385,c73d4747-9e19-41f4-ab0d-6f763d5101f5,18,With Parent,Scarborough,43.75510196,-79.18027051,unemployed,0,118,0,0,31,14,0,0,0,0,0,0,0,0,160.98
386,8aaee2e8-7c11-4e51-9dd1-3d6cddbb7d45,58,Group,Etobicoke,43.6981272,-79.56160294,fulltime,36982.85,141,15,6,58,8,33,15,11,6,0,1,0,0,18411.74611
387,b5ddb269-ff4c-4b13-9929-a4fd2dc36b8c,30,With Parent,North York,43.72717425,-79.46943489,parttime,10708.17,117,16,0,44,13,0,0,0,1,0,0,0,0,11224.6
388,f7d0a407-dc63-44f5-a1d1-770ea171ab87,52,With Parent,North York,43.76761279,-79.51221358,parttime,31522.65,109,15,0,45,7,0,0,0,1,0,0,0,0,36627
389,3d93ed87-9b72-4e2e-9029-85ff9830827c,27,With Parent,Etobicoke,43.61247014,-79.53884453,parttime,17178.48,120,15,0,45,13,0,0,0,0,0,0,0,0,20326.55
390,8674bf21-cd4b-4cbc-bb47-ad8279350295,95,Group,Scarborough,43.7333204,-79.22239246,unemployed,37013.9,33,16,6,74,0,28,16,10,5,7,1,0,0,37987.22
391,00f5a359-6bb9-4091-a09e-e136f6430abc,51,Group,Toronto,43.64967782,-79.37004123,fulltime,126084.85,148,15,8,59,6,19,19,11,5,0,7,0,0,132454.33
392,05268327-14c5-4e03-b8ed-5671e94e71a9,29,Group,Toronto,43.63707138,-79.42796459,fulltime,20095.02,154,17,7,44,145,31,15,9,0,0,0,0,0,16296.83
393,f1c62781-47c9-4d28-bb29-78c8e9f53e70,25,With Parent,Toronto,43.65965806,-79.37339836,parttime,10007.58,125,15,0,44,11,0,0,0,1,0,0,0,0,11834.13
394,6a62c2e4-47f5-46c1-9f3c-f6f773d11cc3,32,Group,Toronto,43.68510802,-79.37446767,fulltime,95950.8,154,16,7,59,14,34,15,9,5,13,0,0,0,86420.68
395,085c3cf7-552a-4df2-8efd-680d1ca9d900,23,With Parent,North York,43.74536558,-79.43245833,fulltime,23670.57,117,17,0,43,14,0,0,0,0,0,0,0,0,27216.97
396,34f74e68-e9ac-4931-aebf-22dfde593769,53,Group,Etobicoke,43.72423336,-79.58282322,fulltime,57505.75,147,15,6,44,8,13,14,9,1,0,0,0,0,59928.98
397,90645989-670f-4522-af6f-10e563a03514,20,With Parent,Scarborough,43.74242648,-79.23196987,unemployed,0,113,1,0,30,13,0,0,0,0,0,0,0,0,31.55
398,2f9d3be9-8b40-4a4b-be8e-6e841a98f44b,31,With Parent,East York,43.68439955,-79.35547198,parttime,8577.03,117,16,0,45,14,0,0,0,0,0,0,0,0,9417.18
399,d19b9b27-87be-4d1d-8d87-5cd2ca65e995,29,With Parent,Etobicoke,43.68446101,-79.52348726,fulltime,31042.44,152,15,6,76,13,18,14,9,0,0,0,0,0,31931.05
400,6e73a445-1f93-4d51-a9e2-8ae07488fc62,18,With Parent,Toronto,43.66584145,-79.38538918,unemployed,0,111,1,0,31,14,0,0,0,0,0,0,0,0,190.28
401,9d8e31bf-10d9-4a86-8e57-863fde530f03,20,With Parent,North York,43.75932267,-79.42523918,parttime,17339.85,113,15,0,32,14,0,0,0,1,0,0,0,0,20267.7
402,3352dda5-e09c-4783-b7d5-f690a8bf66ed,18,With Parent,Scarborough,43.7333204,-79.22239246,unemployed,0,109,0,0,30,6,0,0,0,1,0,0,0,0,119.79
403,cb40c7fd-849b-4c03-8bc5-c31158157b71,34,Group,York,43.68597209,-79.43447307,fulltime,69638,158,15,7,44,14,39,13,8,1,0,0,7,0,54647.93
404,c88ccdbf-0774-4b34-b283-9a26cb8f7751,26,With Parent,Scarborough,43.81342213,-79.21630622,parttime,10571.22,111,16,0,44,11,0,0,0,0,0,0,0,0,12156.11
405,9db3efa8-4017-4879-9aca-81c39a697f41,16,With Parent,Toronto,43.63667366,-79.43765875,unemployed,0,92,0,0,30,10,0,0,0,1,0,0,0,0,165.82
406,5af20165-9deb-4773-9302-6ca5dc39dd1d,21,With Parent,North York,43.70985076,-79.45555475,fulltime,22393.8,146,16,6,73,15,19,11,10,0,0,0,0,0,21703.46
407,931e4a40-77a7-46a9-b93f-3abc58414260,19,With Parent,Toronto,43.66577365,-79.34608592,unemployed,0,115,0,0,31,9,0,0,0,0,0,0,0,0,51.52
408,2aabedf1-219e-45f2-a146-a438af83db56,26,With Parent,Scarborough,43.77783378,-79.15067971,fulltime,32994.72,155,16,7,75,15,34,12,8,0,0,0,6,0,16797.76
409,b2309938-0b60-4cf9-8ba1-7b6571d05ad6,44,Group,Scarborough,43.7592989,-79.23096246,parttime,34020.8,144,16,7,43,8,18,13,8,1,0,0,7,0,34051.65
410,305bf9f4-e10e-41bd-910f-b5c6aedbeb59,37,With Parent,Toronto,43.64128048,-79.45259058,fulltime,56842,114,15,0,43,10,0,0,0,2,0,0,0,0,65826.13
411,3033c041-c7a0-454c-92a4-23627bd6cb39,35,With Parent,North York,43.75749057,-79.56226559,fulltime,31449,115,15,0,44,13,0,0,0,1,0,0,0,0,36176.53
412,94f6aa45-5bbb-49bd-a7c1-8055944a16e7,25,With Parent,Etobicoke,43.71681103,-79.57721626,parttime,14353.02,113,16,0,45,12,0,0,0,0,0,0,0,0,16350.92
413,75eb8837-391d-4c51-b23a-a4f57c5a5460,27,With Parent,North York,43.76740456,-79.37240148,parttime,9060.15,117,16,0,43,15,0,0,0,1,0,0,0,0,10818.16
414,1e0dcf60-848a-465b-99f2-f18b307a0ca6,47,Group,York,43.70471199,-79.52925442,parttime,19109.2,148,15,7,46,7,18,22,9,0,12,0,0,0,16137.99
415,7541aeca-9ae5-431c-8968-df377cd993cd,30,With Parent,Toronto,43.6666956,-79.31866597,fulltime,38624.52,148,15,7,88,148,40,16,8,4,0,0,0,0,19273.01
416,1c0318c1-96d5-4f12-a2cf-5fce2dda92c5,27,Group,North York,43.75216615,-79.38080888,fulltime,37391.31,150,16,5,43,13,33,17,7,1,0,0,7,0,18869.11
417,c80a47a1-8658-4d8d-94c9-1257858416e5,29,With Parent,Etobicoke,43.59186886,-79.53718215,parttime,13279.2,118,17,0,44,14,0,0,0,0,0,0,0,0,14852.09
418,8bbf601b-365d-4933-ac73-c25d383f9cd2,42,Group,Toronto,43.66456883,-79.35159454,fulltime,51324.9,146,15,7,45,6,18,20,8,1,0,0,0,0,53965.41
419,e6cfc0ce-4ba4-4e3d-bba2-059828122406,24,With Parent,Toronto,43.65958765,-79.34107136,fulltime,32947.53,160,15,6,88,19,41,16,8,5,0,0,0,0,15615.51
420,0ca1c515-f68b-4d58-988d-49f77b5d9d48,33,Group,Etobicoke,43.7215732,-79.54998823,fulltime,83935,155,15,6,59,14,35,19,11,5,0,0,0,0,74336.52
421,5c9c21ad-0e8d-4658-92c9-46d7a9d411fc,67,Group,Toronto,43.66518962,-79.36709363,fulltime,56042.4,147,15,8,58,9,27,14,12,6,0,0,0,0,38659.5
422,301944bb-35b8-4869-a130-8921285f9954,58,With Parent,Scarborough,43.7701643,-79.2196723,fulltime,42341.85,109,16,0,45,6,0,0,0,0,0,0,0,0,49172.72
423,ea2763c7-0026-4707-9fc4-14d1bbdce453,26,With Parent,North York,43.76090778,-79.40630915,parttime,14021.04,115,16,0,43,14,0,0,0,1,0,0,0,0,16660.3
424,52744f04-55aa-4c18-9b30-971877a32675,70,Group,Toronto,43.69646373,-79.40323807,fulltime,112225.4,140,17,6,57,8,19,21,12,5,0,7,0,0,116734.7
425,9e392057-dce8-4922-83cf-70a5e20ce821,59,Group,Toronto,43.63782728,-79.46934911,parttime,20144.55,147,15,4,84,5,35,17,8,6,0,5,0,0,12677.2069
426,9bcdfec4-8f8f-4a68-83d2-4dfee60ef4a6,18,With Parent,Scarborough,43.79216735,-79.18084454,unemployed,0,108,2,0,30,11,0,0,0,0,0,0,0,0,182.7
427,ba9e7f0c-b3ae-4957-8f90-4a291ec4316b,19,With Parent,Toronto,43.64420648,-79.42293748,unemployed,0,111,1,0,31,12,0,0,0,0,0,0,0,0,148.77
428,37e4edc3-c864-486f-8218-93525a6fbefd,47,Group,Etobicoke,43.59918327,-79.51716917,fulltime,41664.7,142,15,5,59,10,28,24,8,5,0,0,0,0,25895.32
429,91da2332-dad0-424e-a207-394e1d4d12f7,32,Group,Toronto,43.69112432,-79.41854108,fulltime,68295.48,153,16,3,58,10,33,18,10,5,0,0,0,0,53461.31
430,fdf16616-bee6-4499-8521-fc2c06fa0703,19,With Parent,York,43.69755693,-79.42964315,unemployed,0,105,1,0,30,12,0,0,0,0,0,0,0,0,162.37
431,b8325586-1e68-4e1b-a8ba-e95419fef097,21,With Parent,Toronto,43.70694946,-79.39204291,parttime,16589.1,115,16,0,44,15,0,0,0,0,0,0,0,0,19958.58
432,04dd92db-83de-41d9-bf97-4be55d0ecd44,64,Group,Etobicoke,43.60412763,-79.54666017,fulltime,43482.45,141,16,6,58,8,28,15,12,5,13,0,0,0,24289.56
433,511a5d8e-39f1-4a37-80b8-206b4b20c2ac,81,Group,North York,43.80866902,-79.36318628,unemployed,29540,141,32,7,72,4,34,28,9,5,18,3,0,0,18292.99798
434,2d700c28-5f77-4205-b756-e33a1098c4a3,23,Group,Scarborough,43.76554497,-79.22710237,parttime,9052.89,135,16,7,41,12,12,13,8,1,12,0,7,0,6397.9
435,f4b05a49-7a79-4f64-a1c9-11aa85b91b45,26,With Parent,Scarborough,43.79296731,-79.13514614,parttime,19548.21,119,15,0,44,14,0,0,0,1,0,0,0,0,22641.68
436,ce5f3dcc-44d6-4b84-97db-b3d0993fc307,48,Group,Scarborough,43.80120932,-79.21576106,fulltime,37053.5,151,17,5,58,141,41,16,9,5,13,1,0,0,19833.63173
437,91026a54-64c4-41b7-aa7d-583ec892e9d3,45,Group,North York,43.76588251,-79.39813804,fulltime,87906.5,143,17,7,58,10,27,18,10,5,0,0,0,0,76448.92
438,491079d7-7fb7-447e-bb32-425ac8b3fd5d,47,With Parent,Scarborough,43.7688497,-79.29877284,fulltime,57418.9,114,16,0,43,8,0,0,0,1,0,0,0,0,66215.71
439,d23bd8b5-ccf7-440f-9276-3501170056fa,58,Group,North York,43.77611131,-79.33277326,fulltime,44444.05,145,16,7,44,7,34,15,8,0,0,0,7,0,26599.04
440,c3b8fe25-6e5e-4e2a-a5b9-8523f9601e99,32,Group,Etobicoke,43.65904811,-79.51942929,fulltime,58296.15,155,17,7,43,14,12,20,9,0,12,0,0,0,61014.84
441,db184044-c843-4ae7-a7d4-1fee3291e4f5,24,Group,Scarborough,43.69652675,-79.28620441,parttime,5489.88,154,16,4,75,13,39,22,7,5,0,13,0,0,5633.162699
442,d82e422a-dfbe-4817-bd28-a4256fd19774,18,With Parent,Toronto,43.66981173,-79.34071073,unemployed,0,104,1,0,31,9,0,0,0,0,0,0,0,0,119.65
443,6690ac03-6eee-41e0-9c71-8bc7cbe52c12,63,Group,Toronto,43.66437343,-79.34493012,fulltime,38365.75,142,16,7,44,6,34,19,7,1,0,0,7,0,19428.49
444,53dfb41d-9106-4808-9603-a558402edd9a,68,Group,North York,43.76054513,-79.40654607,parttime,34407.1,146,16,6,61,8,27,14,10,5,0,2,0,0,18190.32225
445,cff483c9-da4d-4b3f-8f66-ed5740948a08,20,With Parent,Scarborough,43.74057979,-79.27637738,parttime,18894.81,134,15,6,70,12,40,21,8,1,0,0,0,0,8057.21
446,e696b958-9990-41b7-981a-58687375020d,32,With Parent,Toronto,43.66032328,-79.43462777,fulltime,39192,121,17,0,43,14,0,0,0,0,0,0,0,0,44950.44
447,b6b78ffe-07f5-4f79-9f95-dab07606d374,24,With Parent,Scarborough,43.80675078,-79.22654545,fulltime,20259.03,142,15,7,73,153,41,19,8,1,0,0,2,0,11231.83
448,fe50facc-e6ce-4cdb-b604-a195872d07b7,22,With Parent,Scarborough,43.79564919,-79.28019586,parttime,8774.04,114,15,0,46,12,0,0,0,0,0,0,0,0,10294.74
449,b611a2d1-5d81-4898-b576-47980123d715,47,With Parent,North York,43.72538779,-79.30500204,parttime,26765.2,116,15,0,45,10,0,0,0,1,0,0,0,0,30602.24
450,e32e39ab-338d-46f3-a48c-a408504621eb,25,With Parent,Toronto,43.66456883,-79.35159454,parttime,17408.16,120,16,0,45,11,0,0,0,0,0,0,0,0,20417.13
451,07734cc0-c99c-4c33-beaa-fc968bef3ba3,24,With Parent,Toronto,43.66437343,-79.34493012,parttime,11792.55,118,15,0,46,10,0,0,0,0,0,0,0,0,14030.75
452,742319ee-0e2d-432f-a738-1fb66d73ddea,27,With Parent,Etobicoke,43.73760505,-79.58955114,parttime,8531.16,116,15,0,45,13,0,0,0,0,0,0,0,0,10154.71
453,81ebfd4c-8428-4589-9503-a3d95703a5bd,18,With Parent,Scarborough,43.78600527,-79.13175392,unemployed,0,106,1,0,30,1,0,0,0,0,0,0,0,0,38.73
454,1f5bfeb3-e2f2-47f0-b0e5-4474be9c3bc1,19,Group,Scarborough,43.78303168,-79.1283689,unemployed,0,121,1,0,73,14,0,0,0,0,0,0,0,0,44.7
455,43f93c7e-75c0-42a7-a43a-6a16e90e588e,33,With Parent,Scarborough,43.72642935,-79.2679799,fulltime,24113,114,16,0,44,14,0,0,0,0,0,0,0,0,27602.66
456,875208ad-f676-40d0-bed8-538ab7855116,36,Group,Toronto,43.67097091,-79.29647873,fulltime,136828,148,16,8,58,10,33,15,10,5,0,0,0,0,127382.82
457,82b75082-343b-44ce-901f-8562d235c60d,16,With Parent,Etobicoke,43.64116656,-79.5186019,unemployed,0,101,1,0,31,11,0,0,0,0,0,0,0,0,65.19
458,b52a3fe8-3377-4f91-bf14-356e459f9dae,24,With Parent,Toronto,43.65009722,-79.43490466,parttime,10283.46,122,15,0,45,10,0,0,0,0,0,0,0,0,12109.7
459,e0f8dfa5-c7a2-42a0-ab62-f55550277f4e,22,With Parent,Scarborough,43.69054866,-79.26295034,parttime,14398.89,115,15,0,45,10,0,0,0,0,0,0,0,0,17597.59
460,b542048c-12db-4279-9e72-5e266db14ccd,44,With Parent,Toronto,43.67062609,-79.37851097,fulltime,48160.2,118,16,0,44,8,0,0,0,0,0,0,0,0,55504.72
461,3af76f43-1cbd-4d17-b21d-8fc4c09842cc,26,Group,Scarborough,43.81692041,-79.28574417,parttime,8357.91,149,15,6,51,13,33,20,8,1,13,6,7,0,7734.440386
462,8774364a-139e-4266-8a0d-b066ed7053b3,47,Group,Etobicoke,43.71681103,-79.57721626,fulltime,45865.6,157,15,7,46,137,19,11,9,0,0,0,0,0,45832.17
463,7e751410-2b25-44e8-ae3d-2314bd7ba4e3,26,With Parent,Toronto,43.67360972,-79.39643087,parttime,19248.9,115,16,0,44,11,0,0,0,0,0,0,0,0,22594.47
464,3f820e79-803a-400a-bcba-5e199338785e,27,With Parent,North York,43.77341987,-79.35264714,parttime,13432.98,115,15,0,44,14,0,0,0,1,0,0,0,0,16065.69
465,443991b7-65ca-4efb-8a62-0aa8b542616c,55,Group,North York,43.70929762,-79.4534278,fulltime,47802.05,143,15,6,45,5,12,14,9,0,15,0,7,0,49448.66
466,dbdc8494-2438-4366-9050-087f804d6106,95,Group,Toronto,43.65206991,-79.43289273,unemployed,51331.7,33,17,7,44,128,25,22,9,0,7,0,0,0,69600.75
467,37fab521-3366-4b6d-abe1-9f2080f692a5,29,Group,Toronto,43.64754892,-79.48041011,fulltime,30635.22,148,15,4,78,21,35,25,9,6,0,2,0,0,15805.28101
468,03d3ca32-532f-4f6f-9211-75cba12b1174,17,With Parent,North York,43.73137021,-79.50777171,unemployed,0,97,1,0,30,4,0,0,0,0,0,0,0,0,172.47
469,7990fa62-0a59-4929-9df4-4b267a943500,28,With Parent,Scarborough,43.8242027,-79.26721639,parttime,9989.43,120,16,0,44,10,0,0,0,0,0,0,0,0,11297.3
470,c200e95c-e232-4de8-9639-a35614b7eb16,30,Group,York,43.67058939,-79.48746214,fulltime,27699.87,149,16,4,68,11,28,21,9,5,0,2,0,0,14683.43973
471,8cb4534a-ca59-4cf5-b924-7d40ea84da68,25,With Parent,York,43.66016753,-79.4967905,parttime,11239.8,122,17,0,43,12,0,0,0,0,0,0,0,0,12628.41
472,3a7035d0-8cb3-4175-8bd4-228dcce1aa37,92,Group,Scarborough,43.78514509,-79.18448262,unemployed,42748.3,31,18,7,64,131,34,23,14,5,21,2,0,0,33576.59
473,4e8e0583-ec46-452e-a56d-62779bb16fbc,55,Group,Toronto,43.67686288,-79.43169381,fulltime,101112.6,138,15,7,59,5,28,15,12,5,0,0,0,0,90040.78
474,de005f46-ad56-4ecb-8505-7b2b436fab23,91,Group,East York,43.70788009,-79.30284466,unemployed,27064.8,38,16,6,46,4,12,20,9,0,7,0,7,0,27558.94
475,5a49302e-3fc0-4e69-b6f8-28e5545734bc,35,With Parent,North York,43.71569033,-79.43564648,fulltime,49809,115,16,0,44,13,0,0,0,0,0,0,0,0,57386.24
476,db7359c9-b11a-4304-9286-00023a612c73,28,With Parent,York,43.70471199,-79.52925442,parttime,7178.16,115,15,0,46,11,0,0,0,0,0,0,0,0,8251.73
477,644ec1ac-1758-4d63-b526-2d4dc90cbeec,20,With Parent,Toronto,43.66478419,-79.37041656,unemployed,0,109,1,0,30,11,0,0,0,0,0,0,0,0,268.65
478,4d80efb3-0d51-4953-beaa-85d8b58f7600,73,Group,Etobicoke,43.6377117,-79.57738889,unemployed,42355.6,146,32,6,57,7,34,15,9,5,0,0,0,0,26272.21
479,1e4ea0b1-4181-4281-9180-b2c68bac7596,19,With Parent,York,43.68714367,-79.50646563,unemployed,0,101,0,0,30,14,0,0,0,1,0,0,0,0,48.93
480,a94aa548-a11e-426d-be67-c9c95634543b,28,With Parent,North York,43.71120266,-79.42852827,parttime,17159.01,124,17,0,43,12,0,0,0,0,0,0,0,0,20490.09
481,036c012e-5530-4f53-b318-983ae4a31e79,54,Group,North York,43.76740456,-79.37240148,fulltime,38766.5,145,17,7,43,13,19,19,8,0,0,0,0,0,37372.39
482,e70e5dc3-b1fc-43a2-a0c0-303ba5b6d679,63,Group,North York,43.72636485,-79.32798023,fulltime,45597.15,147,16,7,44,146,32,26,10,0,0,0,7,0,44574.42
483,6f0776f7-94cd-43f7-8473-7f87989551fc,32,With Parent,North York,43.7773456,-79.38976143,fulltime,75165,119,15,0,45,12,0,0,0,0,0,0,0,0,87070.56
484,1dc957e7-f777-456c-9a96-29bc8e9aa70e,22,Group,North York,43.71850355,-79.37648563,fulltime,47610.75,143,15,7,59,14,19,16,9,6,13,7,0,0,45844.5
485,4f8f0858-b7eb-4003-8f3a-24e4c1806b25,55,With Parent,North York,43.73614746,-79.31777672,unemployed,0,112,0,0,35,7,0,0,0,0,0,6,0,0,4053.668126
486,9a577726-bc7a-4d56-9130-d08b2c25e559,51,Group,Toronto,43.67976518,-79.28436832,fulltime,98506.1,151,15,8,44,9,34,13,14,1,0,0,7,0,85019.21
487,2e8ffc63-2383-472b-a177-72588161347e,20,With Parent,Scarborough,43.76765838,-79.21153816,unemployed,0,114,1,0,30,14,0,0,0,0,0,0,0,0,270.47
488,bf582c43-b8f3-4f8b-ae16-e2fbd750b78e,25,With Parent,North York,43.78691599,-79.34868761,parttime,9624.78,117,15,0,43,13,0,0,0,2,0,0,0,0,10721.57
489,5bca38e4-0f22-40bb-88b1-59a51dd6c933,26,Group,Toronto,43.67462341,-79.31323251,fulltime,34207.14,154,16,7,58,10,28,16,9,5,0,2,0,0,17587.50401
490,3caf0255-6abb-4565-bce0-f014de16158d,86,Group,Toronto,43.64919552,-79.37573301,unemployed,41570.2,143,31,7,57,4,26,23,7,6,7,7,0,0,37855.21
491,8212648a-6621-4b20-b144-fb813b095e88,42,Group,North York,43.71479292,-79.45165895,fulltime,37811.4,150,15,7,45,145,19,23,7,1,0,0,0,0,34787.37
492,fe23c416-fc16-45f5-9bd5-73c6ed3560be,16,With Parent,York,43.68684674,-79.44804396,unemployed,0,109,1,0,29,6,0,0,0,1,0,0,0,0,101.37
493,ffa58500-46fd-4796-b357-bfb86e8ae463,16,With Parent,Scarborough,43.77558314,-79.30330859,unemployed,0,105,0,0,31,9,0,0,0,0,0,0,0,0,97.5
494,94185206-759e-4bf5-b10b-c27e99f33216,38,Group,Toronto,43.70257353,-79.41247952,fulltime,247265,148,15,6,45,11,19,16,12,0,13,0,0,0,277496.18
495,8e77ee39-6f63-42e4-b5ab-7946169e935f,23,Group,North York,43.75987653,-79.45170376,parttime,17554.35,144,15,7,58,12,34,19,10,0,0,1,7,0,8852.64
496,222bad24-94b9-4ac6-b4db-ae9ec98b9c2c,28,With Parent,North York,43.7778673,-79.35487491,fulltime,26643.54,154,15,6,73,13,12,12,8,1,0,0,0,0,27006.57
497,f1ba89fd-6ee4-4a41-961f-c839ae559e42,47,Group,Scarborough,43.77219582,-79.30435842,parttime,32748.1,144,15,7,45,139,19,14,7,0,0,0,0,0,29616.25
498,ee5540e0-9653-4dd3-b06b-69d50dde51fc,21,With Parent,Etobicoke,43.69514101,-79.51941583,unemployed,0,110,2,0,31,13,0,0,0,0,0,0,0,0,367.41
499,4f803662-3155-4af9-afb0-f98a11ae7e81,69,Group,Toronto,43.65737151,-79.40168191,parttime,22995.7,148,15,7,45,6,26,27,7,0,0,0,7,0,21568.23
500,947f6762-c08d-4d66-919a-5f0f0df4ac0d,37,Group,Toronto,43.6880698,-79.29579095,fulltime,41689,144,15,5,45,8,19,23,8,1,0,0,7,0,42005.45
501,8f855783-a42f-4892-b7cf-da09e44f87ac,46,With Parent,Etobicoke,43.66253303,-79.54117163,fulltime,112238.5,119,16,0,44,8,0,0,0,0,0,0,0,0,131109.03
502,2060c8b7-067e-4c67-9c17-aac1ba094893,17,With Parent,Scarborough,43.77579457,-79.1852325,unemployed,0,107,1,0,30,6,0,0,0,0,0,0,0,0,99.41
503,e52139f9-ae76-4fd6-8d4a-79fbb20baf14,66,Group,North York,43.74870576,-79.36308853,fulltime,113329.3,144,15,6,44,8,33,19,10,1,0,0,7,0,104593.71
504,a5755c31-2b07-44da-a3c0-2efd7b5b1ec4,32,With Parent,North York,43.73800687,-79.52305843,parttime,7709.13,120,15,0,44,12,0,0,0,1,0,0,0,0,8470.3
505,2d3b7532-b4d6-4abf-acdb-273164c946d1,53,Group,North York,43.77013145,-79.44947994,fulltime,40572,149,16,6,58,8,19,20,7,5,0,7,0,0,36513.38
506,42d5bf34-9e17-4107-9a18-32b94b4238cf,38,With Parent,Scarborough,43.80086223,-79.22837089,fulltime,26312,106,15,0,45,9,0,0,0,0,0,0,0,0,29613.33
507,6746a6ea-9f92-4fbc-8393-d168986a0c7f,62,Group,East York,43.69413901,-79.33783189,fulltime,46201.35,153,16,7,58,5,34,17,11,6,0,0,0,0,23337.95
508,b1aef412-a7b2-4c70-b272-8bec7bd32af5,20,Group,North York,43.78198751,-79.34282216,parttime,8233.5,142,15,7,98,13,35,23,9,0,0,0,7,0,3297.53
509,2bc54abd-a8c2-4ab2-a97b-918c62c0a688,64,Group,North York,43.77784684,-79.42521211,parttime,29480.4,150,16,6,44,5,12,20,8,0,11,0,0,0,28247.63
510,3f440346-76ec-4782-861f-a74e9179a1d3,29,With Parent,Toronto,43.63782728,-79.46934911,parttime,5517.6,116,17,0,43,14,0,0,0,0,0,0,0,0,6560.34
511,908a947b-73a4-40cc-9dba-e5c449e94a35,50,Group,Toronto,43.66032328,-79.43462777,parttime,33148.5,140,15,7,45,142,25,17,8,0,0,0,0,0,30370.57
512,55d61aa1-952c-4d87-8265-c6e35c40fddd,67,Group,North York,43.77746134,-79.41799709,parttime,26087.95,138,16,7,57,7,28,17,9,0,0,0,7,0,12976.89
513,c83b1e05-be1f-469e-83eb-acd434d3c997,27,Group,East York,43.70965181,-79.31011714,parttime,11582.01,153,16,6,41,147,19,23,8,1,14,0,7,0,6665.81
514,f7425173-842c-4b33-9a90-14ef7a04966f,31,With Parent,Scarborough,43.70802676,-79.26262761,parttime,11253.66,120,16,0,43,13,0,0,0,1,0,0,0,0,12796.67
515,04f889d7-8d9f-4367-9aa8-f2ee75c1062e,38,With Parent,Etobicoke,43.68216098,-79.51070341,fulltime,36518,114,15,0,44,8,0,0,0,1,0,0,0,0,42144.9
516,18ef5390-faf1-4cf0-8398-d52b9a9a71a9,34,Group,Toronto,43.69735735,-79.41606387,fulltime,244506,149,17,7,58,12,39,22,8,5,14,0,0,0,253698.25
517,347d57a2-a91a-4dae-8798-761126d61b3e,57,With Parent,Toronto,43.65630275,-79.47333927,fulltime,77840.05,115,16,0,44,7,0,0,0,0,0,0,0,0,91103.97
518,369db21d-78eb-4e41-beac-477fe18d8965,33,Group,North York,43.76737721,-79.43675348,fulltime,96796,152,17,7,44,141,31,15,9,0,0,0,0,0,103315.7
519,822fc8e7-de61-436c-a051-0cce2322cde2,31,With Parent,Scarborough,43.69613699,-79.28235348,unemployed,0,108,0,0,37,15,0,0,0,0,0,6,0,0,4454.807006
520,e842148b-2207-4df2-b547-a238f77cdec3,49,Group,Toronto,43.65158885,-79.39963325,parttime,25218.6,156,15,4,70,141,35,13,8,5,0,4,0,0,16127.3439
521,a4975b42-a2b8-450b-bf5c-3ef6c65c81c9,30,Group,Toronto,43.64806491,-79.37411553,fulltime,28572.72,154,16,7,59,12,26,17,9,5,0,7,0,0,21563.26
522,662c5c54-b564-4506-865e-7e01d667d272,54,Group,Scarborough,43.7753581,-79.29209732,parttime,34853.05,136,16,7,46,5,28,13,9,0,0,0,7,0,17364.47
523,50d3e8cf-636a-4db6-9165-f81b70835873,41,Group,North York,43.73017423,-79.3156876,fulltime,33987,149,15,7,45,6,19,13,8,0,0,0,7,0,33894.9
524,ca8ea544-649e-4ea1-86ed-bf1aecddcfc0,34,Group,Scarborough,43.77579457,-79.1852325,fulltime,52138,145,15,7,44,12,41,15,8,1,0,0,7,0,34529.66
525,55ef07de-c1bc-4522-b196-3a1781fab4e4,44,Group,North York,43.78399689,-79.41604042,parttime,30457.9,140,16,7,58,6,25,14,8,6,0,7,0,0,21899.34
526,474dfe6f-2c5b-4b91-a3c1-fbfdf1ccdd86,19,With Parent,Etobicoke,43.5960859,-79.51022926,unemployed,0,106,0,0,32,14,0,0,0,0,0,0,0,0,88.42
527,486f70ea-066d-4a4d-a6ce-26ab7a3d1a34,39,With Parent,Toronto,43.69646373,-79.40323807,unemployed,0,116,0,0,31,9,0,0,0,0,0,6,0,0,3849.263435
528,04fbd422-5a84-4ec2-997a-35ab85f71b22,39,Group,Scarborough,43.80661381,-79.32381079,fulltime,31933,144,15,6,59,9,33,27,9,5,0,0,0,0,15838.45
529,0bdd55c4-23b3-4185-9feb-9573de1c3726,40,With Parent,Scarborough,43.74999212,-79.20214616,fulltime,51568,113,15,0,45,9,0,0,0,0,0,0,0,0,59488.05
530,faf9705a-fb4f-4fc8-8a3f-43355610576e,34,With Parent,Toronto,43.71315184,-79.40809451,fulltime,54502,119,15,0,44,12,0,0,0,1,0,0,0,0,62925.11
531,222a0fd8-aa7a-45be-a37f-32f8280c24ac,18,With Parent,Toronto,43.70371951,-79.41534465,unemployed,0,109,1,0,31,12,0,0,0,0,0,0,0,0,184.68
532,67041326-aadd-4cb5-9049-7586229fa0de,22,With Parent,North York,43.70538703,-79.50327396,parttime,9460.44,104,15,0,44,15,0,0,0,1,0,0,0,0,11037.78
533,b77ee45c-8b6e-4aa2-ac70-ce33e831eee5,77,Group,North York,43.78801414,-79.33201114,unemployed,17007.9,145,17,7,44,4,18,25,8,0,0,0,0,0,15342.9
534,4dbbf211-bce4-44d1-83e2-506143f20a35,21,With Parent,Toronto,43.66854018,-79.33557841,parttime,6524.1,111,16,0,32,12,0,0,0,0,0,0,0,0,7413.35
535,e1f715f4-1508-4a8e-ac33-54302a97ccca,41,Group,Scarborough,43.79986745,-79.22497261,fulltime,33446,146,16,7,59,9,27,21,10,6,0,1,0,0,17218.02347
536,b9bbbae1-88b3-4e2c-8b9e-7c6ab94bb5e6,94,Group,Toronto,43.70441436,-79.39655632,unemployed,27229.3,33,16,6,45,123,19,21,8,0,19,0,0,0,31307.12
537,90b53ff8-8ec2-441a-94ac-5eba2de7b33e,56,Group,Etobicoke,43.63925114,-79.53528592,parttime,31185.7,149,15,7,59,7,25,13,8,5,0,7,0,0,25286.91
538,64db99b8-bda4-4336-9fda-05eb0057fd81,22,With Parent,Scarborough,43.83653911,-79.2276177,parttime,17402.88,113,17,0,44,13,0,0,0,0,0,0,0,0,20445.51
539,48075f8e-308d-4cc6-bb54-b763535c200b,50,Group,Toronto,43.73384283,-79.39613574,fulltime,207861.5,144,16,8,58,145,40,12,13,6,0,0,0,0,208660.13
540,0072ba96-9320-40e2-8da9-15d8a1394839,58,Group,East York,43.70064895,-79.3068915,fulltime,46862.5,138,17,6,57,6,34,15,10,5,0,0,0,0,33140.24
541,c2c941ad-385c-4561-a639-2c08c617f9ed,29,Group,North York,43.75666757,-79.44299293,fulltime,23450.46,152,16,7,81,20,40,21,9,5,0,5,0,0,17217.52496
542,9408adcf-0789-477a-aa70-3e8f1ebfbad1,33,Group,Scarborough,43.78617261,-79.31373184,fulltime,69424,158,17,6,44,18,48,18,10,0,12,0,7,0,51590.71
543,cffaa3ed-c3d7-4a75-96f7-59d8c93ea724,22,Group,Toronto,43.67404667,-79.46291466,parttime,14501.52,148,16,6,87,14,27,15,8,5,13,6,0,0,9822.352721
544,8eb473fb-b67f-4eaa-aa14-ca96a4aa5afa,18,With Parent,Etobicoke,43.73849706,-79.57710856,unemployed,0,103,2,0,29,8,0,0,0,0,0,0,0,0,12.45
545,c8dbd486-3fd3-45d7-9aa5-90b98824af81,46,Group,Scarborough,43.72997484,-79.25769011,fulltime,36038.2,149,17,7,57,7,27,13,10,5,0,0,0,0,18395.56
546,8c3592e6-e15b-4b41-acd6-7ef6d9f7a434,33,Group,Toronto,43.67175032,-79.29935007,fulltime,120465,155,15,7,45,15,12,13,13,0,13,0,0,0,131904.07
547,699d489f-8b60-4376-a182-3b22d350a816,21,With Parent,Etobicoke,43.59992969,-79.5164074,parttime,13851.09,110,15,0,32,12,0,0,0,1,0,0,0,0,15914.46
548,de6aad31-153c-4364-aa7b-f306c6ecb74f,40,Group,Toronto,43.65965806,-79.37339836,fulltime,29135,148,15,5,59,7,25,19,9,5,0,7,0,0,19559.67
549,c223f9b6-dd55-497d-b596-412422729f4a,64,Group,Scarborough,43.73816013,-79.24270138,fulltime,59173.6,146,15,7,45,7,27,17,9,0,11,0,7,0,42841.5
550,09606773-aeb4-4bd4-b798-de4d9ff144c6,21,With Parent,Toronto,43.67976518,-79.28436832,fulltime,25075.38,110,15,0,44,14,0,0,0,1,0,0,0,0,29820.89
551,73f32d7f-1366-41c7-97d9-cd35b51a3c4b,20,With Parent,Toronto,43.70953231,-79.3897454,unemployed,0,108,0,0,32,9,0,0,0,0,0,0,0,0,181.44
552,ac2deba1-2fdd-48b6-8e6e-48aa39accd2f,23,With Parent,Etobicoke,43.59798709,-79.52311827,parttime,12242.01,119,15,0,43,14,0,0,0,2,0,0,0,0,14824.12
553,d0fdd0d8-809c-4976-bf97-7d3ee3b11205,27,With Parent,Scarborough,43.67568986,-79.28050533,fulltime,35201.43,142,16,5,72,13,33,16,8,1,0,0,7,0,17454.47
554,334ba001-16f4-4dd3-b602-21f4db9dc96e,27,With Parent,North York,43.70929762,-79.4534278,parttime,14441.79,120,15,0,44,12,0,0,0,1,0,0,0,0,16592.49
555,2211e9b8-9544-4e18-9265-4b0f4d5d51ed,17,With Parent,York,43.67843362,-79.48189259,unemployed,0,109,0,0,30,5,0,0,0,1,0,0,0,0,60.31
556,f22dd3ad-dc6c-4160-b3d2-9505d0029ec9,17,With Parent,Toronto,43.68780115,-79.39743719,unemployed,0,97,0,0,31,8,0,0,0,0,0,0,0,0,155.67
557,e4f4ad35-1321-42c9-8684-0327e1841d4b,43,Group,Toronto,43.64764025,-79.49069148,fulltime,62046.6,146,17,6,57,9,25,14,9,5,0,7,0,0,60701.38
558,63dab350-0617-4016-83e5-419ed4f7fb0c,27,With Parent,York,43.66122947,-79.49227034,parttime,18220.29,116,16,0,44,13,0,0,0,0,0,0,0,0,21387.17
559,4004239d-9bf8-44c8-8dd8-41e44a8927c0,64,Group,North York,43.7773456,-79.38976143,fulltime,54041.7,145,15,7,45,14,20,22,9,0,0,0,0,0,54624.59
560,002f7172-518a-4896-bc06-bf1c5fb900f9,60,Group,North York,43.73686799,-79.44537395,fulltime,42831.75,143,15,7,58,142,34,13,9,6,0,0,0,0,24786.55
561,22f9cfa5-386d-4444-9caa-273148c48b96,22,With Parent,East York,43.70965181,-79.31011714,parttime,11711.7,115,16,0,44,14,0,0,0,0,0,0,0,0,13621.01
562,9a414827-6b9e-4b92-a0a4-86448967028a,27,With Parent,North York,43.76588251,-79.39813804,unemployed,0,123,1,0,37,12,0,0,0,0,0,6,0,0,2981.346766
563,92ca45fb-8bdd-4b37-8367-3fa5d5e2b93a,34,With Parent,Toronto,43.70131855,-79.41080594,unemployed,0,120,0,0,32,13,0,0,0,0,0,6,0,0,3557.071325
564,f0e974a8-c5a4-445e-95c2-74cb9ac50d83,41,Group,Scarborough,43.81870414,-79.27973359,fulltime,36544,143,17,6,59,14,36,21,8,5,13,0,0,0,18168.18
565,f3185a20-9d92-4fdb-9b74-ac9dd4850fa9,30,With Parent,Toronto,43.65783486,-79.48824916,fulltime,55872.3,150,16,6,75,19,18,16,7,0,0,0,0,0,58109.56
566,6b7ffd8c-be04-4721-9b2b-a50cd8ff22d9,15,With Parent,Toronto,43.68320555,-79.31545653,unemployed,0,107,0,0,30,4,0,0,0,1,0,0,0,0,156.3
567,a06aa91d-fbdc-452e-b4b9-44497579221e,16,With Parent,Toronto,43.64465446,-79.41565182,unemployed,0,97,1,0,30,5,0,0,0,0,0,0,0,0,148.72
568,ad098b91-ff4e-463c-b0f7-7a0d7a09fc92,22,Group,Scarborough,43.78311931,-79.20614894,parttime,17628.93,150,16,6,45,14,19,14,8,0,0,0,7,0,15467.03
569,badc5931-6180-4133-93ee-b01dbdefda35,22,With Parent,Scarborough,43.7592989,-79.23096246,parttime,12174.69,115,15,0,44,14,0,0,0,1,0,0,0,0,14362.53
570,e0f2a6f1-3526-4a34-8372-2475199eb8fe,28,Group,North York,43.70985076,-79.45555475,unemployed,0,123,0,0,2,14,0,0,0,0,0,6,0,0,1678.611743
571,60eb4906-f839-4d9e-ac41-7a37e53533e6,27,With Parent,Scarborough,43.74094905,-79.23607612,unemployed,0,117,1,0,31,13,0,0,0,1,0,6,0,0,2365.344692
572,31a7fb85-b8d2-4c7d-bce5-61192dc0caaf,39,With Parent,Toronto,43.65795175,-79.36198826,fulltime,42630,110,15,0,45,8,0,0,0,0,0,0,0,0,49181.23
573,a03171e6-a5ae-4e24-af63-19ba2e143362,28,With Parent,North York,43.7331176,-79.42330601,fulltime,20866.89,116,15,0,45,15,0,0,0,0,0,0,0,0,24034.22
574,23e6a617-3588-4e47-8a69-ecf34d1feea4,25,With Parent,Toronto,43.68103878,-79.45804264,parttime,12571.68,124,15,0,44,14,0,0,0,1,0,0,0,0,15099.13
575,b1f90344-2baf-4bcf-a54b-5cf3ed7dff4d,35,Group,Scarborough,43.73632213,-79.24500544,fulltime,46498,157,15,6,45,13,34,27,8,0,0,0,7,0,28932.61
576,fc1a89ed-ad69-4bfa-9098-26e84884a83c,22,With Parent,Toronto,43.67924475,-79.42257704,parttime,12091.53,117,16,0,44,12,0,0,0,0,0,0,0,0,14867.87
577,4d1c25b1-d2ed-4002-b8b9-0f1d6c9b906d,57,With Parent,Scarborough,43.77438444,-79.29342035,parttime,30624.5,112,15,0,45,7,0,0,0,0,0,0,0,0,35443.52
578,58bf28d9-7a65-498c-afb5-433969d7a56b,57,With Parent,Scarborough,43.78514509,-79.18448262,fulltime,66828.8,113,17,0,43,7,0,0,0,0,0,0,0,0,78312.52
579,b5345f07-a63c-4fd3-b8eb-68acce3f013e,75,Group,Scarborough,43.73949689,-79.27256623,unemployed,30398.9,145,31,7,54,6,28,14,11,0,0,0,7,0,15047.5
580,2c9f917e-ca15-4e30-a956-2ffaad052acc,24,With Parent,North York,43.77339262,-79.41304183,parttime,18705.06,149,16,7,87,12,26,21,8,5,0,7,0,0,14581.79
581,05f7086e-dd5d-4644-b383-2f8e4f6aafa2,17,With Parent,Scarborough,43.75997451,-79.18037046,unemployed,0,105,1,0,31,5,0,0,0,0,0,0,0,0,153.28
582,837ed753-2c81-486d-b77d-cec1921c65ca,39,Group,Etobicoke,43.69162415,-79.56024256,unemployed,103075,145,15,8,57,147,34,17,8,7,0,0,0,0,86266.6
583,1d14849b-d524-454c-8969-3770496dec84,63,With Parent,North York,43.73336805,-79.47073144,parttime,33454.25,117,16,0,44,5,0,0,0,0,0,0,0,0,38593.58
584,b5153e8d-5518-4146-b518-f030069d1701,32,Group,Scarborough,43.78240117,-79.30555434,fulltime,21447.36,141,17,7,62,12,28,15,9,5,0,3,0,0,12624.75086
585,4df4c83d-085b-499d-85b3-2d36b7009c4c,40,With Parent,Etobicoke,43.64058912,-79.56241285,fulltime,34743,117,15,0,45,9,0,0,0,0,0,0,0,0,39818.09
586,a5c49a61-d7cc-4417-a774-9fc72f43c845,36,With Parent,Scarborough,43.79521166,-79.16133468,fulltime,46594,113,16,0,45,9,0,0,0,0,0,0,0,0,53988.87
587,cb03e4f2-50aa-4a3a-81b1-101200e0b612,25,Group,North York,43.78861948,-79.45996185,fulltime,35383.59,147,15,6,49,13,33,18,7,0,0,0,7,0,17380.31
588,eab3b527-9c4b-4623-84d3-54c4de8a7f83,17,With Parent,North York,43.71842811,-79.49678336,unemployed,0,100,0,0,30,4,0,0,0,1,0,0,0,0,45.77
589,e0f8b8ad-86f7-4d5e-9491-75ceaf5395dd,21,With Parent,Scarborough,43.79240412,-79.24190235,unemployed,0,111,0,0,31,3,0,0,0,1,0,0,0,0,49.69
590,ee768e26-b6f2-41ef-9c2f-f52f1cadc986,25,With Parent,Scarborough,43.81758303,-79.21187562,parttime,17265.27,124,16,0,44,12,0,0,0,0,0,0,0,0,20195.97
591,848a9ac5-9abd-4225-91c6-e222dda2398a,27,With Parent,Toronto,43.65487218,-79.4094355,fulltime,35203.74,152,15,6,75,12,19,10,8,1,0,0,0,0,36812.98
592,7ac4cd9e-1c45-4669-ae89-32515356c055,36,Group,North York,43.71842811,-79.49678336,fulltime,60589,150,15,6,45,13,39,17,8,0,0,0,7,0,44595.06
593,3e47f24f-7b95-42ce-883e-d18480cfd786,19,Group,Toronto,43.6666956,-79.31866597,unemployed,0,118,0,0,67,12,0,0,0,0,0,0,0,0,85.27
594,175def61-e5e8-4c3a-87c8-07fe10146707,49,With Parent,East York,43.707491,-79.36268022,parttime,20766.9,117,15,0,46,9,0,0,0,0,0,0,0,0,23609.71
595,415b7a93-8f62-4757-ba52-2a2d9976f44a,35,Group,Scarborough,43.81028447,-79.20752042,fulltime,85723,145,15,6,58,16,33,16,8,6,0,0,0,0,72015.01
596,002af6db-d041-478f-8c40-902ce921a0c2,19,Group,Toronto,43.65566005,-79.40108318,unemployed,0,111,1,0,61,14,0,0,0,0,0,0,0,0,67.6
597,ccffe647-f297-4801-9027-5c3071f64ed6,29,Group,Toronto,43.67699553,-79.39084316,fulltime,44764.17,154,16,7,58,13,27,16,9,5,0,0,0,0,33386.71
598,abcefbff-e580-420d-a9e5-badf46d1b712,26,With Parent,Toronto,43.68404462,-79.40526973,unemployed,0,115,1,0,34,14,0,0,0,0,0,6,0,0,3022.34749
599,57d43a7e-1796-4c6c-8d2f-2d182053708b,49,Group,North York,43.72738213,-79.43304559,fulltime,38528.6,150,16,5,49,10,33,21,8,0,0,0,7,0,19373.32
600,25a2859a-53aa-45df-a16c-359c06158b77,22,Group,Toronto,43.67702693,-79.40759818,fulltime,48059.22,140,16,7,58,13,27,14,10,5,12,0,0,0,27006.93
601,31b9865f-243d-4c33-b278-6ddf5cb4c073,32,Group,Toronto,43.67115432,-79.40091926,fulltime,37504.5,144,15,7,59,14,20,10,6,5,0,7,0,0,34157.5
602,362d73b9-1410-46d2-b499-8d28991799c2,27,With Parent,Toronto,43.66618387,-79.44591198,parttime,7986.99,119,15,0,44,14,0,0,0,1,0,0,0,0,9720.92
603,38291fce-3f09-4400-a4b6-66bd24cce636,48,Group,Scarborough,43.78188042,-79.24639103,parttime,32715.1,143,17,7,57,8,26,14,7,5,0,7,0,0,26810.57
604,cbd16be5-d2f6-4e57-930c-f0bf2b4811a1,67,Group,Toronto,43.70131855,-79.41080594,unemployed,221684.4,140,15,7,60,8,28,13,10,5,0,0,0,0,231356.5
605,301e7c48-d932-4014-8ab7-f62c3c2ef71a,65,Group,North York,43.76037308,-79.40525274,fulltime,35076.85,141,15,6,59,7,28,12,11,5,0,0,0,0,20701.6
606,0d6e3ca3-a0ca-4daa-b37d-ba35c37af6a8,53,Group,Toronto,43.65599833,-79.38717048,parttime,29270.95,145,15,6,44,144,31,15,9,1,0,0,0,0,25876.1
607,50f08179-3a9b-4e56-9d29-3b2b1f0324c9,24,With Parent,East York,43.68987372,-79.32916316,parttime,6887.1,114,15,0,43,13,0,0,0,2,0,0,0,0,8061.27
608,09572a12-cf75-48fc-828e-7c02b10bff9e,48,Group,Scarborough,43.80666776,-79.33489507,parttime,28202.9,147,16,7,57,9,27,18,7,6,0,7,0,0,22294.5
609,70f23cdb-e2db-4595-bf84-b63b127cfe32,18,With Parent,York,43.68597209,-79.43447307,unemployed,0,111,0,0,31,13,0,0,0,0,0,0,0,0,77.48
610,ede82261-9f58-4b27-884c-4dfa22964e10,21,Group,Etobicoke,43.70350488,-79.54904254,parttime,8510.04,146,16,7,94,21,36,25,8,5,0,6,0,0,9631.577062
611,d7733a1f-6f89-4502-9d7c-c333bfa6bc75,72,Group,Scarborough,43.72812329,-79.24964592,parttime,28813.5,146,16,7,57,138,41,18,10,5,11,2,0,0,16135.40587
612,ec40f8af-2eb5-4e87-b048-1b66ef50917a,22,With Parent,North York,43.73686799,-79.44537395,parttime,11259.27,109,16,0,44,13,0,0,0,0,0,0,0,0,13320.99
613,e1a9567f-09a4-428c-a43f-be568a9b11dd,24,Group,Toronto,43.65718721,-79.44746634,parttime,12790.14,144,15,6,44,21,18,16,7,1,0,0,0,0,8372.04
614,3db12fbe-6fd2-4661-a9f3-c9ef490f49e0,75,Group,Toronto,43.71152293,-79.40209526,unemployed,41813.8,144,31,7,44,141,40,19,9,0,0,0,7,0,20971.53
615,27ae4a71-e1a9-4c28-b70d-d4556b6174de,17,With Parent,Scarborough,43.80891455,-79.20907461,unemployed,0,98,0,0,31,10,0,0,0,0,0,0,0,0,138.67
616,2fdf3267-3a7c-44d3-9a4b-d5175c8a4ea7,64,Group,Scarborough,43.81847914,-79.31796168,parttime,32369.35,142,15,6,49,7,27,18,9,0,0,0,7,0,16066.03
617,86e21cf5-518d-44c5-b6e6-7de38533aaf7,23,With Parent,North York,43.71479292,-79.45165895,parttime,12788.49,114,16,0,45,11,0,0,0,0,0,0,0,0,15545.43
618,27b90597-2888-4e51-83f5-6f7b3c4935c8,61,Group,Scarborough,43.80086223,-79.22837089,fulltime,35746.6,146,15,5,65,13,39,16,8,5,0,2,0,0,19040.98224
619,7d08e0af-10c8-47aa-b09e-d7639a698727,18,With Parent,North York,43.76634599,-79.44069747,unemployed,0,110,1,0,31,14,0,0,0,0,0,0,0,0,240.33
620,649e5a18-0720-4acf-8379-62dc40854a6c,59,Group,North York,43.76095491,-79.38731205,fulltime,44560.2,146,16,6,44,7,13,19,10,0,0,0,7,0,45457.84
621,2dd1f3b8-160a-47da-b964-a0a930999976,19,With Parent,North York,43.72272747,-79.31064118,unemployed,0,106,1,0,30,9,0,0,0,0,0,0,0,0,118.79
622,32328483-3b5a-4f3a-84ae-1dc609df4ed7,87,Group,Scarborough,43.82488091,-79.22676327,unemployed,34697.6,35,17,7,61,4,33,23,9,0,7,0,7,0,16006.09
623,85eb63db-13c3-4221-90cb-bd7278d51447,22,With Parent,North York,43.78861948,-79.45996185,unemployed,0,106,1,0,34,13,0,0,0,0,0,5,0,0,1006.404923
624,152cde32-ccad-4f7b-b9b8-1e6c313197b3,47,Group,Scarborough,43.69962019,-79.26360585,fulltime,57134,151,17,5,43,142,25,19,9,0,0,0,0,0,57029.96
625,8044368a-ad65-4c25-87c7-64deed127c9a,29,With Parent,Toronto,43.66613004,-79.33651531,parttime,7848.06,117,16,0,43,12,0,0,0,1,0,0,0,0,8778.84
626,8f953e0c-b755-4393-8a7e-54fe4bafb79a,19,With Parent,Scarborough,43.82046234,-79.26487879,unemployed,0,107,1,0,31,10,0,0,0,0,0,0,0,0,82.7
627,89d30102-c548-4ba8-a399-5fdc9ea78570,73,Group,Scarborough,43.76682973,-79.25656373,unemployed,27804,143,30,6,59,13,39,13,8,6,0,2,0,0,15973.57166
628,c459eeda-fa93-46cd-93d2-14748859ce50,17,With Parent,North York,43.70548388,-79.44147521,unemployed,0,110,0,0,32,11,0,0,0,0,0,0,0,0,189.21
629,f09cbd5c-ba0c-42a9-92c9-788d5d1b0ce2,27,With Parent,Etobicoke,43.73442044,-79.56217434,parttime,12104.07,120,15,0,44,14,0,0,0,1,0,0,0,0,13549.15
630,5ed418a9-84c4-4e55-b768-1a1f19d00e48,32,Group,North York,43.71868479,-79.3843819,fulltime,85545.24,151,15,6,59,15,27,16,8,6,13,0,0,0,78429.72
631,4a6716a3-bcd3-4f49-af8a-f62b29c12709,20,With Parent,Toronto,43.67462341,-79.31323251,unemployed,0,109,0,0,33,13,0,0,0,0,0,0,0,0,497.12
632,f0a20166-a783-4443-ab4d-9875225108b7,20,With Parent,Toronto,43.65599833,-79.38717048,parttime,10349.46,115,16,0,31,14,0,0,0,1,0,0,0,0,12497.74
633,294d38ec-9642-4fe3-995b-d1bd92172bf9,50,With Parent,East York,43.6846963,-79.35048034,unemployed,0,110,0,0,31,8,0,0,0,0,0,6,0,0,3751.455403
634,64082b48-5b89-493d-89b8-eb31fc241b7e,18,With Parent,Toronto,43.66625656,-79.45437173,unemployed,0,105,0,0,31,14,0,0,0,0,0,0,0,0,145.19
635,c2e2bf30-0800-4fd4-b4c3-187e53f113b6,44,Group,North York,43.73420199,-79.4896945,unemployed,0,117,0,0,0,8,0,0,0,0,0,6,0,0,2934.395696
636,2f49dd20-8c76-4572-98ea-0cfafd18ac95,57,Group,North York,43.70967336,-79.42233451,unemployed,0,111,0,0,0,6,0,0,0,0,0,6,0,0,2267.363845
637,849338b6-ebb2-49bd-b939-70e7837d8d71,52,With Parent,North York,43.80866902,-79.36318628,fulltime,58988.1,115,17,0,43,6,0,0,0,0,0,0,0,0,68501.94
638,10b79ed9-400d-46a4-9683-217115a01e34,47,Group,Scarborough,43.77783378,-79.15067971,unemployed,0,112,0,0,0,9,0,0,0,0,0,6,0,0,2958.536063
639,869b4ddc-fd77-4b61-9616-63b67d5d5b1e,27,Group,North York,43.73201489,-79.43484643,parttime,10540.2,152,15,6,74,14,25,13,9,5,0,12,0,0,7595.66145
640,99aae41c-f6c5-4480-b027-d20867592508,21,With Parent,North York,43.72786191,-79.41718027,fulltime,24940.74,113,16,0,45,13,0,0,0,0,0,0,0,0,29780.85
641,f5717a1a-2645-4225-bc1e-1e6bcaf2d769,51,With Parent,Toronto,43.71848799,-79.40010634,fulltime,125469.6,115,16,0,44,6,0,0,0,0,0,0,0,0,146209.4
642,744fe1e3-64bb-4814-80d0-543b07c5cc2a,61,Group,Etobicoke,43.62723848,-79.575083,fulltime,47431.6,145,16,6,58,6,28,21,10,5,0,0,0,0,25475.33
643,23e71ec1-1083-4087-a72e-71de5e761dc8,31,With Parent,Etobicoke,43.59918327,-79.51716917,parttime,12332.1,121,15,0,45,12,0,0,0,0,0,0,0,0,13493.7
644,96d9afa3-d43a-40f6-9210-bb683d227812,51,Group,Etobicoke,43.68365379,-79.56866659,fulltime,71250.55,142,15,6,44,7,31,14,12,1,12,0,7,0,76081.28
645,c40cf7c8-2838-4295-a623-5e305ec67782,59,Group,Scarborough,43.74094905,-79.23607612,fulltime,64078,143,17,6,43,6,33,18,9,0,0,0,7,0,49418.43
646,fdca44ad-9598-4348-badb-d8a42ab6562d,26,With Parent,North York,43.76575482,-79.44370966,parttime,10340.88,119,15,0,45,13,0,0,0,0,0,0,0,0,11917.77
647,bee2eec9-fe23-4ec4-8a6d-b1991c415f6f,22,With Parent,Scarborough,43.80658258,-79.2263085,parttime,12502.05,106,16,0,45,11,0,0,0,0,0,0,0,0,15102.33
648,aff5d8ba-afaa-4f7b-b902-9cfe0741b87e,16,With Parent,Etobicoke,43.65904811,-79.51942929,unemployed,0,112,2,0,29,3,0,0,0,0,0,0,0,0,98.67
649,5b7b0916-f4de-437d-838c-67392765f5c2,22,With Parent,North York,43.79190931,-79.37353497,parttime,15758.16,112,15,0,44,12,0,0,0,1,0,0,0,0,18600.12
650,44ad6971-0a42-449b-b4c8-fc8a87dd1132,20,With Parent,Scarborough,43.78238773,-79.30087419,parttime,9236.04,113,15,0,33,13,0,0,0,1,0,0,0,0,11202.32
651,dc196b1e-140a-46ad-9f48-e5aca2fda90f,33,With Parent,Scarborough,43.73997577,-79.23950097,fulltime,24876,118,15,0,44,14,0,0,0,1,0,0,0,0,28375.71
652,0073edb5-d69f-40ce-8a7d-5ad339b5c43a,49,Group,Toronto,43.70032125,-79.39579234,parttime,30200.5,146,15,7,59,9,41,13,9,5,0,1,0,0,15621.18853
653,20103f0a-40d5-470f-82f5-cee2c8fdb566,66,Group,Toronto,43.67063782,-79.3959209,fulltime,67418.65,144,15,7,44,6,19,17,11,1,0,0,0,0,71610.97
654,f9a63ef8-3766-4f3e-8efa-5cb396c42f9b,26,Group,Etobicoke,43.60950546,-79.48970872,parttime,5549.61,154,15,7,68,12,25,24,6,6,13,13,0,0,6220.380611
655,48682188-8d71-4637-bb7a-3876eb5d8e94,41,Group,Scarborough,43.79177618,-79.14809538,fulltime,135290.1,150,15,8,44,11,19,13,12,1,0,0,0,0,148386.21
656,f706174a-c59c-4a3d-bd75-65d266d38551,58,Group,Scarborough,43.80884707,-79.2565825,parttime,32756.6,149,16,6,47,7,34,21,7,1,0,0,7,0,15982.02
657,565c6041-1021-4be8-ba96-d8fd39a074a5,30,With Parent,Toronto,43.67024678,-79.38506697,parttime,7626.96,118,16,0,43,14,0,0,0,1,0,0,0,0,7810.43
658,a84d830d-d6cf-49c8-a181-4cfcd84c1edf,24,Group,Scarborough,43.81758303,-79.21187562,parttime,17095.98,150,15,7,44,145,41,25,8,2,0,4,7,0,11733.57432
659,ee0340f0-0ffe-45cb-b13a-8e157d0475b9,83,Group,Toronto,43.64627221,-79.39453489,unemployed,37733.5,144,30,7,60,5,28,19,9,5,6,1,0,0,19685.65776
660,295f312f-885f-4d60-b854-fdb586c60714,65,Group,North York,43.74973654,-79.48873401,parttime,28139,152,15,7,63,5,34,17,8,5,0,2,0,0,15068.17485
661,d439221c-491f-4b6f-94e8-b2a412bf2a32,30,Group,East York,43.69505507,-79.29178476,parttime,15658.17,150,16,6,52,18,33,14,9,5,12,10,0,0,11136.35042
662,9e83a348-ee81-410c-8fcf-1e8b3fd73bfa,18,With Parent,Scarborough,43.81918678,-79.28131298,unemployed,0,105,0,0,32,11,0,0,0,0,0,0,0,0,247.28
663,421f8194-be64-4b4d-90bc-dbe9231588ce,21,Group,North York,43.76090778,-79.40630915,parttime,10879.44,147,16,5,138,13,30,24,9,6,13,0,0,0,4547.31
664,1c4b46e4-957a-4c5a-a8ae-1d4bbf7c9767,16,With Parent,Toronto,43.6846223,-79.41209074,unemployed,0,111,1,0,30,6,0,0,0,1,0,0,0,0,71.12
665,3dd7020f-bb8a-4ffc-93da-c6e5d065c8be,29,Group,North York,43.79828557,-79.34250448,parttime,14500.86,159,15,7,87,11,33,13,8,5,0,6,0,0,9896.438749
666,199e24a5-89e4-413a-90a6-0a436a022aab,20,With Parent,Toronto,43.71058372,-79.38488369,unemployed,0,108,0,0,29,12,0,0,0,2,0,0,0,0,64.69
667,e4e999ed-ab55-4ab6-bba0-f5d1acd3d0f5,35,With Parent,North York,43.7666797,-79.41033374,fulltime,67995,154,16,6,73,13,32,26,8,0,0,0,7,0,73484.55
668,bfab3abc-5781-46ec-be4e-109a7d99816e,21,With Parent,Scarborough,43.74039105,-79.25734086,parttime,8791.2,112,16,0,32,12,0,0,0,1,0,0,0,0,10739.05
669,b6cea223-3a90-4db7-89d1-eb027a2b2655,65,Group,Toronto,43.70888734,-79.38494377,fulltime,65714.35,146,16,7,59,7,34,23,13,5,0,0,0,0,46639.84
670,5cd1e5f1-2269-4340-a614-a0aa35b336ec,17,With Parent,Toronto,43.67182761,-79.29447802,unemployed,0,105,0,0,30,7,0,0,0,1,0,0,0,0,146.12
671,a438fc95-e1e2-4b97-b26f-80ccb3fd0f88,36,Group,Scarborough,43.79301781,-79.15042945,fulltime,143640,155,15,5,45,14,34,17,13,1,0,0,7,0,138031.56
672,08c0c6c5-7ac7-419a-ac98-466a87ea4247,20,Group,Toronto,43.65487218,-79.4094355,unemployed,0,108,2,0,60,14,0,0,0,0,0,0,0,0,57.28
673,acbda6f2-9fb7-4918-9d56-fcca1e779edb,34,Group,Toronto,43.65034227,-79.43951429,fulltime,68458,152,15,5,46,14,19,14,9,0,0,0,0,0,73374.38
674,28ead6fa-90af-4faa-a5d1-65cd075fb71a,26,With Parent,Toronto,43.65345261,-79.47365861,fulltime,21174.45,115,16,0,44,14,0,0,0,0,0,0,0,0,24884.42
675,ec9f0a07-fd36-4c19-aecc-cc2cca422979,26,Group,Scarborough,43.79441666,-79.31996574,parttime,14176.47,150,15,6,89,12,28,13,10,5,0,5,0,0,9220.309757
676,f8e09249-36cc-4099-abe6-ebbcaa0e9be6,22,Group,Etobicoke,43.62966787,-79.57278189,parttime,13727.01,146,15,7,90,20,40,22,7,6,0,5,0,0,10699.12317
677,55dacc92-7dda-41d0-8dc2-71fde7c3fe8c,22,With Parent,North York,43.76859506,-79.38960034,fulltime,22049.28,116,16,0,44,14,0,0,0,0,0,0,0,0,26514.82
678,baeb66d1-bf25-4e84-bf3f-391d3abbe4f7,39,Group,Toronto,43.6539339,-79.39771626,unemployed,62827,137,16,5,45,9,28,12,9,0,0,0,7,0,48123.11
679,679cb8a5-4558-4005-b9c7-4e0691acdbbd,84,Group,Toronto,43.63878968,-79.41550373,unemployed,7947.8,142,16,4,66,138,34,19,9,5,4,12,0,0,8499.598322
680,ed977dc2-cdf6-4c71-81e5-514f9502489b,67,Group,Scarborough,43.69613699,-79.28235348,fulltime,42190.45,144,15,7,59,6,35,20,8,5,0,0,0,0,23890.04
681,30d5df9a-af54-474e-9656-0baf279f0051,47,With Parent,Scarborough,43.73949689,-79.27256623,fulltime,41919.9,113,15,0,46,7,0,0,0,0,0,0,0,0,47602.86
682,284e38c6-45fa-4ec7-a5c9-9d3ee329a4fc,53,Group,East York,43.70454215,-79.34038376,parttime,24214.4,148,15,7,59,5,25,13,8,5,0,7,0,0,16501.81
683,718c915f-eb04-4e96-b071-d2818b82bd6c,54,Group,Toronto,43.65048362,-79.39220341,fulltime,87731.2,144,16,7,43,8,18,13,9,1,0,0,0,0,95135.05
684,c10c0253-bdd2-4493-b2ed-5f174e8f5152,19,With Parent,Toronto,43.72883404,-79.39790058,unemployed,0,114,0,0,29,13,0,0,0,2,0,0,0,0,262.68
685,f1f327e1-1af1-498e-b870-37782bd86773,29,With Parent,Etobicoke,43.61177815,-79.48955489,parttime,6658.41,119,16,0,44,14,0,0,0,0,0,0,0,0,7255.19
686,e4d0c265-7b92-4404-8799-35406e8e337d,23,With Parent,North York,43.75437533,-79.44003134,parttime,14495.58,114,16,0,44,12,0,0,0,0,0,0,0,0,17370.88
687,72977b22-4c75-41cd-8717-319f32cbbc15,17,With Parent,Toronto,43.65122781,-79.43443972,unemployed,0,107,0,0,32,9,0,0,0,0,0,0,0,0,172.01
688,43b51c40-9742-41c0-bcb7-bc381e0a9607,50,Group,North York,43.71120266,-79.42852827,fulltime,52527.2,147,15,4,45,9,12,27,9,0,0,0,7,0,54181.25
689,5764ac32-ae23-4713-954e-9501e2f8495e,66,Group,Scarborough,43.74999212,-79.20214616,fulltime,45573.4,145,15,5,44,8,27,13,11,1,0,0,7,0,26985.17
690,4a74d595-1f8e-4bb4-a904-00e0919ab1ae,33,Group,York,43.68684674,-79.44804396,unemployed,76892,151,16,7,44,153,32,14,9,0,0,0,0,0,81359.57
691,dc50a5bb-c63d-406f-baf1-e5a46f7cad58,19,With Parent,Toronto,43.68677067,-79.40545778,unemployed,0,108,1,0,30,12,0,0,0,1,0,0,0,0,210.75
692,ce64c143-b1e1-4a55-911b-4e9105a43a75,64,Group,North York,43.73912558,-79.51535947,unemployed,0,110,0,0,0,6,0,0,0,0,0,6,0,0,2259.499014
693,60218678-3751-459c-a779-c8450f4641e3,25,Group,Scarborough,43.69054866,-79.26295034,parttime,15527.82,153,15,6,75,14,30,17,7,5,0,6,0,0,10314.38868
694,2e551925-2783-4f72-9b23-3d3b3222da7d,26,With Parent,Scarborough,43.76209939,-79.17654824,parttime,12340.68,120,15,0,44,14,0,0,0,1,0,0,0,0,14110.96
695,c75a7176-ada3-4f7d-bf1e-1aa48445415e,28,With Parent,Scarborough,43.69962019,-79.26360585,parttime,13651.44,110,15,0,45,12,0,0,0,0,0,0,0,0,16551.44
696,5c5d3aba-6f86-4771-a2c9-e66592ae7f9c,17,With Parent,Scarborough,43.78240117,-79.30555434,unemployed,0,105,1,0,30,7,0,0,0,0,0,0,0,0,151.03
697,82134de2-c52f-4766-9208-dfbbdc3b7067,23,With Parent,Toronto,43.67224895,-79.45218955,parttime,14618.34,107,15,0,45,14,0,0,0,1,0,0,0,0,17421.28
698,a5940fe3-a1ac-4258-8e09-1b3327b3c6de,18,With Parent,North York,43.77369893,-79.32959985,unemployed,0,109,2,0,30,7,0,0,0,0,0,0,0,0,58
699,cfbafefb-fc16-4a25-bc72-a7c7354d353b,26,With Parent,Toronto,43.66575659,-79.30677811,fulltime,35210.34,120,15,0,45,12,0,0,0,0,0,0,0,0,41642.74
700,403ad4b2-a2cf-42b6-9704-fc077cab144d,44,Group,Etobicoke,43.68409309,-79.51673468,unemployed,0,111,0,0,0,8,0,0,0,0,0,6,0,0,3060.449723
701,36cdf054-0b53-4472-bfd6-5153f61e9e49,55,Group,Toronto,43.64128048,-79.45259058,fulltime,80267.7,147,15,6,45,7,12,27,12,0,0,0,0,0,86309.49
702,768e740b-687d-4626-93de-0f6510a1497e,52,Group,Toronto,43.65342086,-79.42369147,fulltime,53745.25,145,15,6,58,138,40,17,9,6,0,0,0,0,37781.43
703,3c804b1e-c841-4708-b270-3797d879dd75,24,With Parent,North York,43.78399689,-79.41604042,parttime,9348.57,116,16,0,45,13,0,0,0,0,0,0,0,0,10431.78
704,a57341e3-ae04-40cb-a482-09d58ab86193,24,With Parent,Etobicoke,43.62966787,-79.57278189,parttime,15414.96,117,15,0,45,15,0,0,0,0,0,0,0,0,18345.69
705,a3c7577d-60d3-4487-bbd7-81a8a91218c1,59,Group,Toronto,43.65122781,-79.43443972,fulltime,88006.05,146,16,7,45,8,18,22,8,0,12,0,0,0,96016.9
706,02638942-dd90-4610-a0ba-c81e39a4ba39,32,Group,Etobicoke,43.69509045,-79.518271,fulltime,56802,154,15,5,45,14,25,13,9,0,0,0,0,0,59864.46
707,bcc1a6ea-675d-4b80-9a75-42817bd6e94b,63,Group,Scarborough,43.72642935,-79.2679799,parttime,25537.9,149,15,6,65,7,33,10,9,6,0,2,0,0,14011.74693
708,57f6d6da-36e8-40c5-aad5-60eedba41a34,30,Group,Toronto,43.64420648,-79.42293748,fulltime,32363.1,154,15,7,45,142,33,14,9,1,0,0,7,0,29895.45
709,93e1d836-5a08-4538-a969-d818213895cb,36,With Parent,Toronto,43.65737151,-79.40168191,fulltime,30979,109,15,0,45,9,0,0,0,0,0,0,0,0,34692.8
710,4f67ef55-06f6-4555-8acb-a51530ccbd61,82,Group,Scarborough,43.71990478,-79.25589597,unemployed,18538.1,137,31,7,63,4,27,20,9,0,7,0,7,0,9812.05
711,f9be19ec-4028-4caf-aee0-1546cf4ecf52,48,Group,Toronto,43.70015845,-79.40183566,fulltime,159779.4,144,16,7,58,11,27,18,14,5,0,0,0,0,156605.89
712,d7a36960-ae3a-4e0e-9edf-3ce4e9ef456d,22,With Parent,North York,43.79353574,-79.40643733,unemployed,0,116,2,0,33,12,0,0,0,0,0,5,0,0,991.4769405
713,1d91e702-9b51-4b46-8a5b-12472f5326a7,47,With Parent,North York,43.76054513,-79.40654607,fulltime,36137.2,113,16,0,44,9,0,0,0,0,0,0,0,0,41042.4
714,c91b61e7-8c05-4cc0-a0aa-60e8a4a00258,55,With Parent,North York,43.78801414,-79.33201114,parttime,34462.05,105,16,0,43,7,0,0,0,1,0,0,0,0,39599.52
715,df5d4078-fa8b-4989-8335-b0fc38041b1d,24,Group,North York,43.77339262,-79.41304183,unemployed,0,118,1,0,1,13,0,0,0,0,0,6,0,0,1800.671436
716,74a3e553-9a5d-4acc-bc1b-61f6d2c1d7eb,57,Group,East York,43.69314587,-79.34276083,fulltime,51762.65,143,15,4,45,6,24,23,8,0,0,0,0,0,54040.65
717,b85acfae-8830-4b91-88fa-9a44cda165ab,53,Group,Toronto,43.70757708,-79.4274046,fulltime,74534.95,146,16,8,44,15,19,13,11,0,0,0,7,0,77216.16
718,94828221-1400-4d74-a4ca-b233baed9017,21,With Parent,North York,43.69583998,-79.49788401,fulltime,21096.9,151,15,6,71,12,29,18,8,2,0,0,0,0,9072.37
719,c6a5a4b3-2f0c-47a5-9cf8-72d7fe6bc76b,46,With Parent,North York,43.72636485,-79.32798023,fulltime,43774.5,113,16,0,44,8,0,0,0,0,0,0,0,0,50867.4
720,40ee388b-5282-4fab-adeb-f954e6335e87,46,Group,North York,43.72717425,-79.46943489,parttime,32681,147,16,4,61,8,33,18,8,5,0,1,0,0,16833.76293
721,862dd372-abd0-4be8-b39d-41124f3789aa,23,Group,Etobicoke,43.59798709,-79.52311827,parttime,13380.18,143,15,5,76,13,28,21,8,5,0,6,0,0,9439.763196
722,0fe5c8f8-93f0-4bf7-8366-52490c96397f,30,With Parent,Scarborough,43.7483961,-79.23346919,fulltime,22343.31,149,15,7,78,13,34,20,9,2,0,2,0,0,12882.28945
723,28437d7d-c802-4818-8549-45092c88deed,80,Group,East York,43.6846963,-79.35048034,unemployed,36353.8,149,30,5,49,10,35,12,9,0,6,0,7,0,18553.06
724,cde1c70b-28ce-4eb4-ae8f-6c155c845fa8,40,With Parent,York,43.69882402,-79.43435146,fulltime,99321,109,15,0,45,6,0,0,0,0,0,0,0,0,116487.95
725,a3b237b3-d354-4eec-8163-cb65d281ca36,62,Group,Etobicoke,43.6771643,-79.51724006,fulltime,35368.5,149,15,7,58,5,27,12,6,6,0,1,0,0,17816.29606
726,499f33d2-cc26-4a01-9087-ac8355e09987,42,With Parent,Toronto,43.6426426,-79.43720576,parttime,26736.6,111,15,0,45,9,0,0,0,0,0,0,0,0,30237.26
727,1c7f221b-05e3-4fa5-b701-118af43a8dfb,25,Group,Scarborough,43.79184346,-79.23728382,unemployed,0,119,0,0,2,11,0,0,0,0,0,6,0,0,1595.805836
728,c0c01754-9809-4d2e-91db-d8df7399f6c7,78,Group,Scarborough,43.72366238,-79.2712371,unemployed,22022,142,31,5,62,10,33,20,9,6,20,4,0,0,15455.99483
729,8c63a575-ac1f-43b6-a01e-424d6699d01d,33,Group,East York,43.68467796,-79.35409052,fulltime,56806,155,15,5,44,14,29,18,7,1,0,0,7,0,40225.07
730,25a95473-6f4b-4d6f-aa7f-417257e48231,44,Group,Scarborough,43.79564919,-79.28019586,fulltime,36638.8,146,15,6,60,9,41,13,7,5,10,1,0,0,18379.49822
731,7fe1c01f-0ea8-4dfd-b4df-0c69613591cc,57,Group,North York,43.77616517,-79.36156951,fulltime,50651.75,147,16,5,44,12,40,26,9,0,0,0,7,0,31369.98
732,9f2352f6-bb8a-449a-b001-399a0e322281,35,Group,North York,43.77369893,-79.32959985,fulltime,68243,155,15,6,46,17,31,24,10,0,0,0,0,0,70994.01
733,8c6a345d-2f0a-4c97-a67f-6f8b84644ce6,24,With Parent,North York,43.76131242,-79.45292865,parttime,18526.2,121,15,0,45,12,0,0,0,0,0,0,0,0,21335.32
734,c4b6d564-d498-4f59-82e6-9c167d0c0790,29,Group,Scarborough,43.75510196,-79.18027051,fulltime,34347.39,148,15,7,59,12,28,17,9,5,0,0,0,0,21631.36
735,a9ba5dec-5982-4d21-8ebf-b69de1f692d8,31,With Parent,Toronto,43.64744678,-79.38011757,unemployed,0,124,0,0,35,14,0,0,0,0,0,6,0,0,3939.553925
736,b9bdaa33-a673-4832-8121-e15f6f3fa6bb,27,Group,North York,43.76859506,-79.38960034,parttime,18362.19,149,16,5,62,148,34,18,10,0,0,2,7,0,10813.41372
737,20fd5a36-1107-4c9b-9068-210a507334e4,16,With Parent,Toronto,43.67097091,-79.29647873,unemployed,0,105,1,0,30,9,0,0,0,0,0,0,0,0,27.35
738,d3af0190-1472-4e7c-9aff-83b55af112c3,81,Group,Scarborough,43.81870414,-79.27973359,unemployed,21005.6,132,17,6,89,137,40,26,10,6,7,4,0,0,14718.58538
739,02c7de08-0cdd-4eb9-9d0a-67ef9900dea2,40,Group,Scarborough,43.78210071,-79.2907139,unemployed,67985,152,15,7,59,9,20,19,8,5,13,7,0,0,68149.61
740,f02a8fe1-ffcd-4bc7-b47e-9b88bdcd7a7a,39,Group,Toronto,43.69497096,-79.41303506,fulltime,184544,143,16,6,58,7,33,13,12,6,0,0,0,0,189828.48
741,d3f712e5-d667-4d80-af59-405e6d52af36,67,Group,Etobicoke,43.61177815,-79.48955489,parttime,20173.25,144,16,7,44,7,12,12,7,0,0,0,0,0,18365.23
742,a3bc5a79-a786-4a62-bd81-b7638110fff5,34,With Parent,Scarborough,43.72812329,-79.24964592,fulltime,38672,114,16,0,43,14,0,0,0,1,0,0,0,0,44281.53
743,f682fe73-95c5-48c3-9af0-128a5bd647d6,20,With Parent,Scarborough,43.81228257,-79.23297863,parttime,9462.75,108,15,0,32,13,0,0,0,1,0,0,0,0,10895.68
744,37de38f2-864a-45d3-b7ef-b6a30ed709a3,91,Group,Scarborough,43.71107314,-79.25393613,unemployed,23668.4,35,17,7,57,4,34,14,8,1,7,0,7,0,11880.75
745,6fd38236-0771-4bc7-a1c2-5987f5a7b7ce,27,With Parent,North York,43.78198751,-79.34282216,unemployed,0,119,1,0,31,14,0,0,0,1,0,6,0,0,2600.842805
746,24a2306a-4917-40b6-9731-1d6ecea295b4,23,With Parent,Scarborough,43.78210071,-79.2907139,unemployed,0,110,0,0,35,12,0,0,0,0,0,5,0,0,458.85
747,d69a9987-4615-4b8b-8d50-591a6a1d3159,26,With Parent,Etobicoke,43.68848126,-79.55431303,fulltime,25803.69,150,15,7,76,14,28,20,10,0,0,0,4,0,14316.47
748,c1034cd3-3f56-407d-a565-5b3d3896a2cc,18,With Parent,Toronto,43.73384283,-79.39613574,unemployed,0,114,1,0,31,11,0,0,0,0,0,0,0,0,191.69
749,f4aa28a9-dd56-4436-802d-f1c56a2e7996,32,With Parent,North York,43.70548388,-79.44147521,fulltime,49163,114,15,0,43,14,0,0,0,2,0,0,0,0,56920.22
750,577a8384-1001-4a94-9516-edf1d7cba439,55,Group,Etobicoke,43.67601371,-79.56987177,parttime,34603.5,149,15,7,45,6,13,13,7,0,0,0,0,0,34891.25
751,beb37de3-ab09-448f-834a-db49f4aea643,55,Group,Etobicoke,43.73683571,-79.55711799,fulltime,50453.95,154,16,6,44,137,19,15,9,0,0,0,7,0,50536.83
752,c0c6c834-13e2-44c7-8564-7fb33026e03f,25,Group,North York,43.79353574,-79.40643733,fulltime,28085.64,150,16,6,64,13,33,14,8,5,0,2,0,0,14357.20358
753,3fc19c07-1c5a-4fab-b68b-ce550725ae55,26,With Parent,Scarborough,43.76764051,-79.28285614,parttime,8182.68,117,15,0,46,14,0,0,0,0,0,0,0,0,9900.6
754,854a882b-a8a1-4b12-bf40-0b1fc26545c4,41,Group,Toronto,43.63764799,-79.40106149,fulltime,31857.1,143,17,7,43,9,12,29,9,0,13,0,0,0,30279.76
755,07d624b8-6f2b-4eef-a9a7-b3ab5cfa8b17,29,Group,North York,43.76634599,-79.44069747,fulltime,39507.27,154,15,6,62,13,28,20,9,5,0,1,0,0,19550.4498
756,5357d0ab-7789-4903-b9ba-e1d5535a3672,42,With Parent,North York,43.76095491,-79.38731205,fulltime,52600.9,116,15,0,44,9,0,0,0,1,0,0,0,0,60972.67
757,4e990dba-c698-46c2-a865-c7b8204ac72b,19,With Parent,Toronto,43.66746458,-79.31794566,unemployed,0,114,1,0,29,11,0,0,0,1,0,0,0,0,152.73
758,e54eecf4-ad21-47d4-9d1e-8657e30cc4a4,28,With Parent,North York,43.78198751,-79.34282216,parttime,7253.73,119,17,0,43,11,0,0,0,0,0,0,0,0,8403.93
759,333c7829-3aba-42a0-adbc-3ec33085f5f0,43,Group,Scarborough,43.80658258,-79.2263085,fulltime,36840.1,153,16,7,58,8,34,19,8,5,13,2,0,0,20131.5198
760,75007954-15ce-42e0-88ba-270e848bebb5,30,Group,Scarborough,43.79879918,-79.30874877,fulltime,21305.46,152,16,6,65,15,34,13,8,0,0,0,7,0,10694.27
761,ef9d3869-9683-4d78-af99-d66fce236639,37,Group,Scarborough,43.78238773,-79.30087419,fulltime,27867,140,15,7,59,9,26,26,8,6,0,7,0,0,17471.78
762,1213a987-91ed-43cf-8b7d-29d4ee0c6004,18,With Parent,Toronto,43.64754892,-79.48041011,unemployed,0,110,0,0,30,12,0,0,0,1,0,0,0,0,130.45
763,99362aad-691c-48c7-abf2-82f44d50305a,59,Group,East York,43.71058873,-79.36331637,unemployed,0,116,0,0,0,6,0,0,0,0,0,6,0,0,2327.483356
764,27286f84-08bb-47fa-bcd3-8ca20d08449b,36,With Parent,Scarborough,43.74652722,-79.21075144,fulltime,27044,109,16,0,44,8,0,0,0,0,0,0,0,0,30966.76
765,a4b44c69-012d-482a-9a5f-424d6c0f26d7,55,Group,North York,43.71569033,-79.43564648,fulltime,57897.9,143,15,7,45,7,13,16,8,0,0,0,0,0,61349.3
766,708225f2-a6bf-4fee-a528-1f2cab5aa55c,66,Group,York,43.69882402,-79.43435146,fulltime,75797.65,142,16,8,43,8,32,23,11,1,0,0,7,0,81098.66
767,ce27bd69-0f32-491e-a3af-cc05c581e9a7,27,With Parent,Etobicoke,43.63925114,-79.53528592,parttime,9501.69,115,16,0,44,13,0,0,0,0,0,0,0,0,11085.2
768,f1a5d732-cd2d-492b-b29a-3052d4270ab9,57,Group,Etobicoke,43.68216098,-79.51070341,fulltime,39914.2,141,15,6,59,142,39,13,9,5,0,7,0,0,33465.49
769,84d52d8d-699e-4edc-93f8-c9666535a77f,44,Group,Toronto,43.69080292,-79.39551018,fulltime,121900.9,151,15,8,44,10,18,11,13,1,0,0,7,0,133387.13
770,a3d04ca0-30a1-4d29-827e-9a95631dd783,53,Group,Toronto,43.67924475,-79.42257704,fulltime,47531.8,142,16,6,44,7,18,15,9,0,0,0,0,0,49183.32
771,570aeb72-246a-4288-933d-469e3eb4cd36,27,With Parent,Scarborough,43.80884707,-79.2565825,parttime,8347.35,114,16,0,44,12,0,0,0,0,0,0,0,0,10301.33
772,8a706d7c-c79f-4530-b658-e48e79d72a15,71,Group,Toronto,43.66981173,-79.34071073,fulltime,63231.05,144,15,6,46,5,19,14,8,0,0,0,7,0,68367.95
773,0e45a48d-2f4b-41da-82bf-e971ecea725c,30,Group,Scarborough,43.78600527,-79.13175392,fulltime,36497.01,147,16,6,58,12,27,15,9,5,0,0,0,0,19934.26
774,4cfae800-376a-44c4-82fc-2ac49fc90381,28,With Parent,Scarborough,43.78311931,-79.20614894,parttime,16860.69,124,16,0,45,14,0,0,0,0,0,0,0,0,20001.67
775,b72a81e0-f169-424b-930f-7543f7e163ad,57,Group,Etobicoke,43.73115524,-79.57753695,fulltime,36298.6,152,16,6,62,7,34,24,9,5,0,2,0,0,18838.19821
776,ac7a23ad-1c62-44b3-a9f8-c1f4aac99b10,23,With Parent,Toronto,43.64632664,-79.41586448,parttime,12264.78,117,15,0,43,13,0,0,0,2,0,0,0,0,14226.33
777,1eb0a533-c009-4e2a-8a1f-fc83f6cfc5c5,26,Group,Toronto,43.66821809,-79.42927091,parttime,12774.96,148,16,7,75,13,27,20,8,6,0,6,0,0,9230.447341
778,94fad76d-e02e-4b51-838f-2449eff58955,43,With Parent,Scarborough,43.70805163,-79.25415482,parttime,34915.1,114,16,0,44,9,0,0,0,0,0,0,0,0,40052.87
779,04e7d48e-9f15-4bfd-b976-a06e5bdea495,18,With Parent,Toronto,43.64707517,-79.40909958,unemployed,0,102,0,0,30,12,0,0,0,1,0,0,0,0,131.11
780,e4a2c7fe-31ae-482b-926c-2aae315d30ce,39,With Parent,Toronto,43.67460848,-79.35621448,fulltime,59145,111,15,0,45,9,0,0,0,1,0,0,0,0,68827.52
781,cfb19e60-e2a8-4064-a469-626854ea52b4,38,With Parent,Toronto,43.70888734,-79.38494377,fulltime,59125,113,15,0,46,9,0,0,0,0,0,0,0,0,67951.13
782,f71fc459-9439-4d78-a98c-ec257b223c01,22,With Parent,Toronto,43.66606629,-79.38643061,parttime,6720.45,118,16,0,45,12,0,0,0,0,0,0,0,0,7943.46
783,789d38c9-3f4b-4146-95f9-ef03a32f0903,60,With Parent,Toronto,43.67761877,-79.30068715,fulltime,92010.35,116,16,0,45,7,0,0,0,0,0,0,0,0,107348.25
784,5904e867-e9a9-4e0b-b4e8-bb106ffaa15a,50,Group,Scarborough,43.75250863,-79.19110809,fulltime,50476.8,151,15,6,45,7,33,18,7,0,0,0,7,0,31726.81
785,74076966-a29a-4f0d-a841-21dc49175ed4,20,With Parent,Scarborough,43.77373987,-79.25555255,unemployed,0,111,1,0,30,8,0,0,0,0,0,0,0,0,53.8
786,40e68a5d-ea4e-437e-b9b9-2ea77476eb62,46,With Parent,Toronto,43.67751804,-79.31351204,fulltime,139049.9,145,16,7,88,9,33,12,14,6,0,0,0,0,137311.79
787,1b8a88ae-15ab-4a6f-9d14-b638327e18ab,17,With Parent,North York,43.77373565,-79.39994968,unemployed,0,102,1,0,31,12,0,0,0,0,0,0,0,0,139.02
788,c6de3c3f-29f0-45a8-bffd-b4e53d695793,42,With Parent,North York,43.75882971,-79.31728758,parttime,25239.5,115,15,0,46,6,0,0,0,0,0,0,0,0,29270.36
789,7276923d-9597-4b91-8b79-a62d3df3439e,27,Group,North York,43.75932267,-79.42523918,fulltime,21063.24,154,16,7,57,12,33,28,8,0,0,0,7,0,10473.59
790,303a6d59-7d09-4d1e-aa11-125f0240ccb4,30,With Parent,Toronto,43.65904927,-79.46024283,parttime,13959.99,124,16,0,44,12,0,0,0,0,0,0,0,0,15346.96
791,6a207ab3-dcc3-4e99-880b-598920c97db6,61,With Parent,Toronto,43.64021606,-79.43377835,fulltime,39189.4,113,16,0,44,7,0,0,0,0,0,0,0,0,45920.46
792,2c5755d8-caeb-46d0-b1f7-2727bca75234,21,With Parent,Scarborough,43.69242864,-79.27777108,parttime,7169.91,115,16,0,44,13,0,0,0,1,0,0,0,0,8972.99
793,844afbb7-dd8b-439e-8eb1-a4b33dede00d,63,Group,Toronto,43.66630643,-79.45398585,fulltime,38607.05,146,15,7,46,13,41,15,8,1,0,0,7,0,19339.57
794,f9402e15-b92e-4a9f-9474-823998b8bd98,23,Group,Scarborough,43.78071506,-79.15392128,fulltime,20740.5,142,16,6,61,12,27,19,8,0,0,0,7,0,10391.7
795,31a88526-b69e-45f1-b2fa-a120f3fff46d,34,Group,Toronto,43.65236626,-79.43812868,fulltime,76494,148,15,7,44,13,18,21,10,1,0,0,0,0,81891.12
796,19648932-f233-41ce-ad19-89a59ab5dc6b,28,Group,Etobicoke,43.72058778,-79.60340114,fulltime,24888.27,157,16,6,58,13,20,24,9,5,14,7,0,0,15826.66
797,5ee93aff-0dd8-4ebb-b8bc-3c5c4ff9eccf,28,With Parent,Toronto,43.65972468,-79.33729923,parttime,12534.39,117,15,0,45,10,0,0,0,0,0,0,0,0,14530.14
798,6295abad-e731-4242-9b42-d96d9285ec79,25,With Parent,Toronto,43.6696128,-79.44282644,parttime,18271.77,125,15,0,45,13,0,0,0,0,0,0,0,0,21397.13
799,fcc6d051-0374-4b4f-b322-2f67f25ab480,39,Group,Scarborough,43.74242648,-79.23196987,fulltime,53611,141,15,6,59,7,26,14,9,5,14,7,0,0,48311.3
800,902a7bfe-a301-428a-b7a6-3f3916ed853d,24,With Parent,Toronto,43.6816808,-79.28871683,parttime,18246.69,113,15,0,45,13,0,0,0,0,0,0,0,0,22054.94
801,88164695-0edc-4bb3-9e7a-28464217c0bc,28,Group,Scarborough,43.70802489,-79.27536466,fulltime,26402.31,149,16,7,72,152,34,12,10,5,0,4,0,0,16574.33403
802,101d7286-6179-4111-b91d-5d9c672b5338,26,With Parent,Toronto,43.66630643,-79.45398585,parttime,13204.29,114,15,0,45,13,0,0,0,0,0,0,0,0,15564.17
803,434a5011-9bb6-4e13-b6b6-60d5fc95cd7a,24,With Parent,North York,43.75002323,-79.3811754,fulltime,39009.63,148,15,7,75,12,28,13,10,1,0,0,7,0,22380.59
804,b50d3b0a-affe-4588-b9ac-b763821edeb9,30,With Parent,Etobicoke,43.69470549,-79.51793948,parttime,7065.96,119,15,0,45,15,0,0,0,0,0,0,0,0,6996.01
805,3390c986-9bb5-4380-8ffd-52a5c6adb49e,17,With Parent,Toronto,43.65034227,-79.43951429,unemployed,0,103,1,0,31,6,0,0,0,0,0,0,0,0,36.4
806,6734d8a3-1120-42cb-b499-1277675d3d21,44,Group,North York,43.77341987,-79.35264714,fulltime,42718.5,151,17,6,43,139,25,13,8,0,0,0,7,0,41060.23
807,6ab0b62c-e7a4-46d5-8d2b-1c97f5a9ddd0,26,With Parent,Scarborough,43.78188042,-79.24639103,parttime,10847.43,117,15,0,45,14,0,0,0,0,0,0,0,0,12446.49
808,7d351299-ef0f-4e21-99b0-c2c9da8418ca,51,Group,Toronto,43.66613004,-79.33651531,parttime,26779.5,145,16,6,68,9,28,19,8,5,0,2,0,0,14786.62244
809,2f98c168-b0ac-43be-bc80-9e7ac128b647,24,With Parent,Toronto,43.69178664,-79.4172735,fulltime,25723.5,115,15,0,43,13,0,0,0,2,0,0,0,0,30399.41
810,b987eef9-0f4e-49d6-b820-ae13b847a9f1,22,With Parent,North York,43.70650684,-79.46549203,parttime,10470.9,111,15,0,45,13,0,0,0,0,0,0,0,0,12749.43
811,dcc3ea7b-ffd0-47ad-b7c6-2801b9a6385b,20,With Parent,Toronto,43.69497096,-79.41303506,unemployed,0,112,0,0,31,10,0,0,0,1,0,0,0,0,114.58
812,c9e918b7-833a-4ba4-8164-6bb5e5fdfa52,22,Group,York,43.66122947,-79.49227034,parttime,17424,150,15,7,78,13,27,22,9,5,0,5,0,0,10732.80095
813,5f61dd32-dcfd-47ad-8988-66907c34df0e,24,With Parent,Scarborough,43.81847914,-79.31796168,parttime,11493.9,121,15,0,43,14,0,0,0,2,0,0,0,0,13404.77
814,01426a6f-de28-4068-9f5e-abaeb1e982d2,51,With Parent,Toronto,43.66090131,-79.37862235,fulltime,92621,143,16,7,75,141,33,13,9,0,0,0,7,0,100893.45
815,3aba84e6-1006-4092-90a3-d005a6310949,37,With Parent,North York,43.76037308,-79.40525274,fulltime,47084,116,15,0,45,8,0,0,0,0,0,0,0,0,54507.48
816,6bc27d3f-6fad-4b38-ab42-042774953ce1,37,With Parent,Toronto,43.67031612,-79.31909202,unemployed,0,114,0,0,31,9,0,0,0,0,0,6,0,0,3805.131346
817,240f769c-f9f4-4793-92e9-aa34f1526b50,58,Group,Toronto,43.64858694,-79.3664395,fulltime,47330.55,147,15,7,58,6,19,16,8,6,0,7,0,0,42290.5
818,2a1ff7bd-e1b7-4593-b625-c5ed89b9d98f,16,With Parent,North York,43.70026439,-79.4794915,unemployed,0,101,2,0,29,6,0,0,0,0,0,0,0,0,53.18
819,a55d5f58-d862-4d7f-9f3f-91b0f42d8d26,50,Group,Toronto,43.67107771,-79.38808139,unemployed,164205.8,145,15,7,44,9,12,17,11,1,0,0,0,0,181819.38
820,04efd3b2-e3a9-4526-89f3-dd43f4e6ee3d,59,Group,Toronto,43.67024678,-79.38506697,parttime,28169.25,143,15,7,44,12,25,15,7,1,14,0,0,0,25423.61
821,571ecde9-7118-46b8-9f45-320b287960f5,21,With Parent,Toronto,43.6880698,-79.29579095,unemployed,0,108,0,0,32,13,0,0,0,0,0,0,0,0,329.78
822,4a91d8d4-ff1d-4720-ac8e-e59741080d0f,38,Group,North York,43.72926045,-79.32810875,fulltime,61377,150,15,6,59,9,33,17,8,5,0,0,0,0,45620.33
823,56823d70-2546-467e-bd5b-d2cf1581e2b6,23,With Parent,York,43.6883172,-79.47442287,parttime,10083.15,116,16,0,44,13,0,0,0,0,0,0,0,0,12185.64
824,247289ac-9fe1-4648-9192-162a8b5d715d,43,Group,Etobicoke,43.64116656,-79.5186019,fulltime,139955.2,142,15,8,60,11,34,19,12,5,0,0,0,0,134459.95
825,1a392e13-ad0b-4aa8-bfa6-4f6e491d7fb5,39,With Parent,North York,43.74271095,-79.41979466,fulltime,69815,119,15,0,44,9,0,0,0,1,0,0,0,0,81245.76
826,f08b2d74-67e9-44fd-b1b1-1e92b0a79026,19,Group,Etobicoke,43.68446101,-79.52348726,unemployed,0,108,0,0,66,15,0,0,0,1,0,0,0,0,58.4
827,99cb20a9-077e-41b8-96eb-622d1f0155b2,51,Group,Toronto,43.66478419,-79.37041656,fulltime,86458.15,143,16,7,58,8,33,24,11,5,0,0,0,0,72301.06
828,ce7481e1-3ff0-4408-a2ff-efb571064e35,23,With Parent,North York,43.75763165,-79.43817306,parttime,9974.91,115,16,0,44,12,0,0,0,0,0,0,0,0,11859.12
829,3270f949-fa1d-45df-b354-9aef3c9fb768,27,With Parent,Toronto,43.65566005,-79.40108318,fulltime,22009.02,150,15,4,76,14,19,14,9,0,0,0,0,0,22062.21
830,897d16ef-c426-4a45-8575-b6fcba0782f1,28,With Parent,Etobicoke,43.68501964,-79.56545806,parttime,13157.43,116,15,0,45,13,0,0,0,0,0,0,0,0,15538.21
831,1b4f50c3-a689-488b-a518-2e55795023d6,62,Group,Toronto,43.66085978,-79.36359676,parttime,21569.75,149,15,7,79,7,33,15,9,5,0,4,0,0,13070.03789
832,79517cab-37bc-448a-b630-92b1fee8f962,54,Group,Scarborough,43.79521166,-79.16133468,fulltime,61602.05,149,16,8,59,7,33,19,11,5,0,0,0,0,46233
833,f8b87408-670b-4746-8a7a-36ef5cf2cac2,26,With Parent,East York,43.70064895,-79.3068915,parttime,12638.67,115,16,0,44,14,0,0,0,0,0,0,0,0,15101.07
834,38421407-f3d9-46e3-b614-4b1ddc5d5bd7,33,Group,East York,43.68844144,-79.32486245,fulltime,94365,149,16,6,59,15,33,22,10,5,0,0,0,0,85672.28
835,108eafbc-180f-499c-9571-47f6e0edc2f1,54,With Parent,Scarborough,43.81628487,-79.20009489,unemployed,0,111,0,0,33,5,0,0,0,0,0,6,0,0,3662.926268
836,48a43c8d-b261-4b17-82ab-2bc0a49fcf78,57,Group,North York,43.75749057,-79.56226559,fulltime,43989.8,141,15,7,44,14,24,15,10,1,14,0,0,0,42706.57
837,126285d4-ebfb-4f22-8537-d93870ba0b98,64,Group,Scarborough,43.70805163,-79.25415482,parttime,33960.6,153,15,6,49,7,33,16,8,0,0,0,7,0,16788.46
838,eb5479d0-9007-4308-919b-19a479610782,51,Group,Scarborough,43.79240412,-79.24190235,fulltime,68528.5,142,15,6,60,7,27,19,9,5,0,0,0,0,54456.53
839,5fd6d0e5-e516-4fca-94fe-5a47920933b3,62,Group,Scarborough,43.73997577,-79.23950097,parttime,26036.65,153,15,4,58,6,25,16,9,6,0,7,0,0,20381.37
840,68e44b5f-cca4-42ad-b938-1682699790b4,60,Group,Toronto,43.68468154,-79.39165499,fulltime,61182.3,142,17,7,43,8,19,24,8,0,0,0,7,0,65900.92
841,92139525-a4b9-4a90-8f05-321201b90654,57,Group,Toronto,43.64744678,-79.38011757,fulltime,174790.8,148,16,7,44,8,18,16,8,0,0,0,7,0,195050.59
842,eb3702c6-180d-49b7-b272-9356a96a0a8f,42,Group,Etobicoke,43.72849773,-79.57541136,fulltime,35997.5,151,16,7,59,9,19,14,8,5,0,7,0,0,29640.8
843,df424029-a43a-4274-95a8-8c58e006c19f,50,Group,Toronto,43.68777113,-79.32042185,fulltime,54740.4,149,15,7,60,10,34,15,9,5,0,0,0,0,38953.29
844,e903b082-73ae-4e9c-a346-ce81ad8b1a72,44,Group,Toronto,43.6554407,-79.46113941,fulltime,76608.4,148,16,6,45,136,26,24,11,0,0,0,0,0,80550.06
845,7e9ebb79-8670-4111-a189-13ba35c2393e,67,Group,Toronto,43.67062609,-79.37851097,fulltime,53694.95,136,15,7,59,140,31,20,11,5,0,7,0,0,48837.47
846,0ece9c11-741c-46e5-a52f-157d916abed1,29,Group,Toronto,43.70371951,-79.41534465,fulltime,57968.13,146,15,6,59,11,27,19,9,6,0,0,0,0,37075.39
847,17b88e31-ae80-4e8e-9bb4-b471ce70ff70,28,With Parent,North York,43.7721339,-79.47120462,parttime,10377.84,121,16,0,44,14,0,0,0,1,0,0,0,0,11722.37
848,75c5b0c1-73e1-4c67-8ae1-efdf934f40d4,57,Group,North York,43.74271095,-79.41979466,fulltime,84029.35,144,15,7,59,9,40,12,10,5,0,0,0,0,77042.98
849,1d4d4c2b-2e3c-4423-a3c9-02f5482e5492,50,Group,Toronto,43.64233636,-79.41608435,fulltime,51005.9,147,16,6,44,11,19,18,9,0,0,0,7,0,53625.84
850,218597b0-1a27-4696-8eca-23a5304c5326,22,With Parent,Toronto,43.69719135,-79.39033747,parttime,12066.12,109,15,0,45,12,0,0,0,0,0,0,0,0,14813.07
851,726c0c81-62cb-49cb-bc13-fc8bc0da193a,40,Group,North York,43.75437533,-79.44003134,fulltime,44238,150,15,6,45,8,33,21,10,0,15,0,7,0,23748.96
852,d248d4d7-943a-462d-8742-a6fcc62aab81,20,With Parent,Scarborough,43.81692041,-79.28574417,parttime,11066.55,115,15,0,32,13,0,0,0,1,0,0,0,0,13080.39
853,a3145a6e-282e-4ba3-a48c-f224b4b6077f,24,With Parent,Etobicoke,43.72423336,-79.58282322,parttime,13727.34,114,16,0,43,14,0,0,0,1,0,0,0,0,16312.05
854,82f5aeab-1fea-416f-99b5-9a1a3a2afd6d,17,With Parent,Etobicoke,43.69509045,-79.518271,unemployed,0,110,1,0,29,3,0,0,0,1,0,0,0,0,83.29
855,43c0047b-adc2-4673-a153-90f957f9913d,18,With Parent,Etobicoke,43.61661692,-79.54401661,unemployed,0,105,0,0,31,9,0,0,0,0,0,0,0,0,77.32
856,7e8d96d5-f15d-4c37-bbb0-f718f1a4b204,53,With Parent,East York,43.69157428,-79.31092119,fulltime,52817.2,116,15,0,45,7,0,0,0,1,0,0,0,0,62049.07
857,887ccc25-e040-40c3-a584-d0c01d5f73e2,37,Group,York,43.67988479,-79.49235126,fulltime,45331,149,16,6,57,8,35,13,9,6,0,0,0,0,26710.04
858,c271e449-5868-47e9-aacc-f3905f57de22,28,Group,Scarborough,43.76765838,-79.21153816,unemployed,24521.97,151,16,6,57,141,41,22,8,5,14,6,0,0,7468.3187
859,d80538fc-7e38-45d9-af43-7b55b1f79f02,68,Group,Toronto,43.65503451,-79.42537625,fulltime,39815.45,143,15,7,44,11,26,14,11,1,0,0,0,0,38441.75
860,06f486c4-8cd5-4607-ad23-3b196aaa1195,33,With Parent,Scarborough,43.7753581,-79.29209732,fulltime,34508,117,16,0,44,12,0,0,0,0,0,0,0,0,40030.56
861,e8630167-676c-4481-ade3-ade27c09fbaa,49,Group,North York,43.79190931,-79.37353497,fulltime,41154.3,151,15,7,45,7,18,12,7,0,0,0,0,0,41447.79
862,67043164-2dda-4090-be1d-d43b0d71b801,45,Group,North York,43.77373565,-79.39994968,fulltime,111358.5,145,17,8,58,10,28,14,10,5,0,0,0,0,103597.66
863,76992340-e20e-4874-932f-011d238cd735,37,Group,Scarborough,43.77372038,-79.19216826,fulltime,48457,146,15,6,44,8,34,14,9,1,0,0,7,0,29359.04
864,668a2d46-a98c-47ce-ae19-eb5419e4bfaa,63,Group,York,43.67988479,-79.49235126,unemployed,44919.8,142,16,7,58,5,27,14,10,5,0,0,0,0,32984.36
865,9fb77965-8789-4fa2-bc9f-bb7bbb46720f,72,Group,Scarborough,43.71413341,-79.2504589,fulltime,76860.7,143,17,7,57,13,39,25,10,5,0,0,0,0,66336.67
866,21c0afad-4b31-4479-9c29-b5146732d131,87,Group,York,43.68529114,-79.41318065,unemployed,36961.4,37,18,6,43,4,25,22,8,0,7,0,7,0,49089.92
867,afe5a112-7d32-4070-b295-765df72207db,16,With Parent,North York,43.77133672,-79.41480179,unemployed,0,100,1,0,29,11,0,0,0,1,0,0,0,0,140.49
868,37596b59-f123-493d-9662-634ec10769f1,17,With Parent,York,43.67988479,-79.49235126,unemployed,0,105,1,0,29,2,0,0,0,1,0,0,0,0,92.84
869,b223b7c8-6e72-4f12-9413-8b5659a1f3ee,18,With Parent,Toronto,43.68501438,-79.39942111,unemployed,0,102,1,0,30,14,0,0,0,0,0,0,0,0,78.55
870,07f1ebd0-2526-4aad-a286-19721a2521ec,41,Group,York,43.67843362,-79.48189259,fulltime,65936,145,15,7,45,8,26,19,9,0,14,0,7,0,70647.8
871,4600e48c-3367-4bd1-ba9e-16fe1a2d7daa,22,With Parent,North York,43.75216615,-79.38080888,unemployed,0,108,0,0,33,13,0,0,0,0,0,6,0,0,1953.771692
872,517ee4ee-16a4-43c3-b6f9-98900ced300c,31,With Parent,Scarborough,43.72997484,-79.25769011,parttime,8904.06,118,15,0,44,12,0,0,0,1,0,0,0,0,9049.99
873,e4236c42-9804-4ee6-9985-614dda928bc4,19,With Parent,Toronto,43.67699553,-79.39084316,unemployed,0,119,2,0,29,9,0,0,0,0,0,0,0,0,263.55
874,44dbc936-953c-417a-8fb7-127c2853ddca,18,With Parent,North York,43.76575482,-79.44370966,unemployed,0,108,0,0,31,6,0,0,0,0,0,0,0,0,76.92
875,863ea541-97a9-4898-9087-39ef0b8cc8ed,31,With Parent,East York,43.69314587,-79.34276083,parttime,17737.5,115,15,0,44,14,0,0,0,1,0,0,0,0,20077.28
876,40d0fefb-4d4b-4347-b864-6f0c06325ae8,30,Group,Toronto,43.66577365,-79.34608592,fulltime,25980.9,151,16,7,78,13,34,15,9,6,0,2,0,0,13710.76957
877,3aeeb2c2-f75d-463c-9614-fbc2ab9314d7,81,Group,North York,43.74286489,-79.40070638,unemployed,88007.5,135,30,7,45,138,35,25,12,1,6,0,7,0,72991.29
878,1a3581ae-388f-4ec5-a0f2-7df132b771bf,55,Group,Toronto,43.639182,-79.38639173,fulltime,71549.55,143,16,7,44,139,19,24,8,0,0,0,7,0,74935.78
879,1434737e-5021-431a-a344-c58aa97aadc7,50,Group,North York,43.69583998,-79.49788401,unemployed,0,113,0,0,0,8,0,0,0,0,0,6,0,0,3223.335044
880,bc1127bb-2495-49be-aaca-04638cbb8471,18,With Parent,Toronto,43.66063341,-79.45577396,unemployed,0,106,0,0,31,13,0,0,0,0,0,0,0,0,107.77
881,17586d02-c1e7-4948-a815-d1ccb0695e77,77,Group,Etobicoke,43.68326119,-79.51245452,unemployed,45632.3,141,30,6,58,140,32,13,8,6,0,7,0,0,41266.2
882,31a2f972-2da8-4559-b4cc-833fc8b26c8f,25,With Parent,Scarborough,43.71107314,-79.25393613,parttime,12179.97,116,15,0,45,12,0,0,0,1,0,0,0,0,14625.05
883,a88f1812-9767-40b7-a05b-2ddef1b848b5,27,With Parent,Scarborough,43.76682973,-79.25656373,parttime,15373.71,119,16,0,44,13,0,0,0,0,0,0,0,0,17959.04
884,5d936c0f-b162-4819-ae4d-3dc3badaa76c,27,With Parent,Scarborough,43.76554497,-79.22710237,parttime,11291.94,120,17,0,43,13,0,0,0,0,0,0,0,0,12789.73
885,a10cf9df-9bf0-44de-a6ea-1caedd5fa9da,47,With Parent,Etobicoke,43.64406461,-79.50803444,fulltime,89661,112,16,0,44,8,0,0,0,0,0,0,0,0,104091.53
886,04c8cfd3-055d-4b2d-8518-ed56a4ca32eb,24,Group,North York,43.78691599,-79.34868761,parttime,10561.32,154,16,7,54,13,27,13,10,1,0,6,7,0,8339.377138
887,f1d08a8e-9cf8-44c2-9c34-d248288eece6,32,Group,North York,43.75021963,-79.32163933,fulltime,25778.28,150,16,6,71,150,39,13,8,6,0,3,0,0,15004.72396
888,df3e75db-b262-43cf-97c0-9eea19667d92,29,With Parent,East York,43.69347036,-79.3248257,fulltime,20255.4,115,16,0,45,15,0,0,0,0,0,0,0,0,22790.18
889,7d9f20ff-08e5-4d07-9b3f-32748daee87a,45,With Parent,Toronto,43.65803386,-79.40531557,fulltime,72639.6,109,16,0,44,8,0,0,0,0,0,0,0,0,84750.53
890,d3b9928a-9b5f-4e4c-a2f3-72662cdc1587,29,With Parent,North York,43.75625071,-79.41574926,fulltime,39396.06,152,15,5,87,13,34,24,8,6,0,0,0,0,24709
891,581e98c4-80df-4e97-a9b8-606a73d40dcc,60,Group,Toronto,43.67360972,-79.39643087,fulltime,77507.7,139,17,6,43,8,18,20,9,0,14,0,0,0,83252.19
892,ab1458a3-1875-4389-9f8b-d21b6b6a7a7f,21,With Parent,Etobicoke,43.62468675,-79.50311729,fulltime,23666.94,111,15,0,33,13,0,0,0,0,0,0,0,0,27677.55
893,e1c6dd73-3cd6-4176-89dc-ff2bb351b453,31,Group,Scarborough,43.75997451,-79.18037046,fulltime,23255.76,153,17,7,75,12,33,16,9,5,9,3,0,0,13191.58502
894,6f519a7a-12c3-4a10-afbe-22a29dccba33,47,With Parent,Etobicoke,43.68326119,-79.51245452,unemployed,0,107,0,0,35,8,0,0,0,0,0,6,0,0,3747.890545
895,3df1b03a-7296-46e0-be96-14742c75aa6a,27,With Parent,Etobicoke,43.70350488,-79.54904254,parttime,9884.82,112,16,0,44,10,0,0,0,0,0,0,0,0,11789.01
896,a5115667-5e40-435f-970e-37962b9f3e38,84,Group,North York,43.76761279,-79.51221358,unemployed,16209.9,140,30,7,60,4,25,17,8,6,7,10,0,0,10816.53214
897,22bb5f9f-023e-4094-9fd5-0332bdacd136,67,Group,North York,43.74351357,-79.45227958,fulltime,50673.95,140,16,6,58,6,34,13,10,5,0,0,0,0,35624.87
898,46f969b4-206b-4676-89cb-658df61e38bc,42,Group,Scarborough,43.70266823,-79.27313114,fulltime,44051.7,147,16,6,44,8,33,25,9,0,0,0,7,0,25498.56
899,ddb761aa-ea6d-4f2a-b73a-e786fb4af4d0,30,With Parent,Toronto,43.65158885,-79.39963325,parttime,6125.46,116,15,0,45,14,0,0,0,0,0,0,0,0,6321.85
900,613909ea-8ea4-4740-9809-0b69083e09b9,24,With Parent,Etobicoke,43.60950546,-79.48970872,parttime,5889.84,120,16,0,44,12,0,0,0,0,0,0,0,0,6786.02
901,0e0cfaec-0327-414c-b7ac-feda269caeea,53,Group,North York,43.7721339,-79.47120462,parttime,31442.15,147,17,7,44,141,25,12,9,0,0,0,0,0,29003.22
902,dac7cb80-c033-419b-8c45-6b690e7f1206,19,With Parent,Toronto,43.64460514,-79.42519072,unemployed,0,105,1,0,30,14,0,0,0,0,0,0,0,0,80.21
903,40219c90-4bc8-4a47-8293-8f2d4857f9da,52,Group,Scarborough,43.80891455,-79.20907461,fulltime,81663.8,148,16,7,44,6,28,12,9,0,0,0,7,0,70291.15
904,872806bf-4906-4746-aecf-bfb64bf0609e,29,Group,North York,43.70682145,-79.43544809,parttime,11055.66,154,16,7,92,13,28,21,9,5,14,6,0,0,8908.995448
905,968eca1c-9b26-4904-a400-e2c0e2b7c626,82,Group,Toronto,43.66906465,-79.44078907,unemployed,32463.9,145,30,5,44,5,13,23,10,1,20,0,7,0,29294.06
906,25162693-ada1-497f-82f6-7d5f8ed64c51,65,Group,Etobicoke,43.66253303,-79.54117163,fulltime,91273.15,152,15,8,44,147,41,17,10,1,0,0,7,0,77201.62
907,a7ed948f-9412-4c33-8991-695d46b61b68,28,Group,Etobicoke,43.6489586,-79.53391346,fulltime,33872.19,150,15,7,59,12,27,17,8,5,0,2,0,0,17205.62639
908,6ec3b0ae-098d-44f0-9cc2-df43207d0acf,24,With Parent,North York,43.75987653,-79.45170376,parttime,18551.94,117,17,0,43,12,0,0,0,0,0,0,0,0,21206.96
909,28f61665-34c4-4405-b9dc-f826324d92d4,55,With Parent,Scarborough,43.71990478,-79.25589597,fulltime,40470.8,103,16,0,43,7,0,0,0,1,0,0,0,0,47314.05
910,feba7cd9-29a4-47f7-b547-db2a4da2cb82,57,Group,North York,43.73568495,-79.47697582,parttime,32358.7,139,16,7,54,139,40,18,8,0,0,0,7,0,16265.66
911,190c1550-9645-4b3e-92c7-e9c786aa2b55,43,Group,North York,43.80145421,-79.37393433,fulltime,40008.1,144,15,6,45,139,18,12,9,0,0,0,0,0,38473.7
912,79badf3d-5570-481f-a886-b40bf3bd08a1,44,Group,Scarborough,43.78353126,-79.13778705,fulltime,59746.5,144,15,7,44,9,34,15,10,1,0,0,7,0,43137.12
913,9fa1779b-288f-40bd-8fbb-9d5106e01bd8,49,Group,Etobicoke,43.73442044,-79.56217434,fulltime,48221.8,143,15,5,43,8,12,26,8,2,0,0,0,0,50014.88
914,d96d99e2-9685-4d4d-8ff4-42840735b80b,18,With Parent,Etobicoke,43.6489586,-79.53391346,unemployed,0,112,2,0,29,12,0,0,0,0,0,0,0,0,264.61
915,0e2299fa-8cec-41cb-baa0-941dc05417b3,25,With Parent,Scarborough,43.81870414,-79.27973359,parttime,8640.72,112,16,0,44,12,0,0,0,0,0,0,0,0,10677.91
916,e992244a-f72a-4868-baa8-958e8823cd33,36,Group,Scarborough,43.76324917,-79.22023048,fulltime,69560,152,15,5,58,8,34,13,7,6,0,0,0,0,54096.2
917,e4f1bc70-379d-496f-a4c7-12038d15c52f,36,Group,Toronto,43.66854018,-79.33557841,parttime,18273,146,17,7,73,10,27,15,9,5,0,5,0,0,12926.24392
918,adb3b424-c09d-4a4a-a7bc-c0fa5bef88a8,28,Group,Toronto,43.69719135,-79.39033747,parttime,12397.11,148,16,7,70,140,25,19,9,5,0,11,0,0,8929.318554
919,aa589a42-57f9-408b-ba33-3564b82bf6fd,35,Group,Scarborough,43.78677223,-79.14703742,fulltime,113882,156,16,7,44,13,34,11,8,0,0,0,7,0,105526.91
920,195e956f-497f-4706-9306-d1602d647125,27,Group,Toronto,43.71821052,-79.40266083,fulltime,34192.95,146,16,7,59,13,40,25,9,5,11,0,0,0,16489.73
921,43d60805-bed8-499f-84e7-4cc806f619f6,41,Group,Toronto,43.64632664,-79.41586448,fulltime,36962,149,15,5,45,139,18,13,6,0,0,0,7,0,34631.05
922,501c18e5-5507-413e-aa5d-f82b24808638,34,Group,Toronto,43.6501379,-79.39721173,fulltime,38886,147,16,7,44,13,18,26,9,0,14,0,7,0,38759.16
923,9645a8c8-b5fd-4d1f-b942-9da5e87ee40c,60,With Parent,East York,43.70788009,-79.30284466,fulltime,48221.8,114,15,0,46,5,0,0,0,0,0,0,0,0,56427.72
924,f0678212-a479-467f-9750-931caf6a3996,75,Group,North York,43.73614746,-79.31777672,unemployed,56427,142,30,6,44,6,27,17,9,1,0,0,7,0,38671.29
925,6729a1dc-ea25-4376-bc60-0cc2e94823e3,79,Group,Scarborough,43.67717039,-79.2787172,unemployed,33194.7,139,31,7,54,135,35,21,9,0,21,0,7,0,16979.4
926,cc6f6b04-bb8a-4281-bd1e-cc60b8fc90f1,26,With Parent,Etobicoke,43.67601371,-79.56987177,parttime,10321.08,113,15,0,45,11,0,0,0,0,0,0,0,0,12278.24
927,11318c10-2cd4-49ef-a73d-b262ca80329f,17,With Parent,Toronto,43.6501379,-79.39721173,unemployed,0,105,1,0,30,13,0,0,0,0,0,0,0,0,175.89
928,7010c0db-84f8-4b45-8fe9-09f7928ccf57,69,Group,Etobicoke,43.64406461,-79.50803444,fulltime,82148.4,147,16,8,44,8,28,23,9,0,13,0,7,0,68105.84
929,43c97a99-df91-4244-8f55-9342f6244267,51,Group,Etobicoke,43.68445435,-79.51277244,fulltime,104186.5,150,17,7,43,9,25,13,11,0,0,0,7,0,114751.58
930,0a33c4a5-b288-49d7-962d-5521dd061e87,90,Group,Scarborough,43.77438444,-79.29342035,unemployed,17957.8,34,17,5,81,11,41,12,9,6,7,4,0,0,10868.21005
931,8998be9e-43db-4d21-90b1-7e32afcab469,25,With Parent,Toronto,43.6812342,-79.29196138,fulltime,24349.38,114,15,0,45,14,0,0,0,0,0,0,0,0,28446.91
932,f9a80056-a42a-45f6-b2f2-85507bf87bd5,69,Group,Etobicoke,43.67680551,-79.54534494,fulltime,69160.95,146,15,6,45,15,34,13,12,1,0,0,7,0,51934.36
933,ff7c0fb2-ff9d-4c58-a400-c6c46e5c5c7e,76,Group,North York,43.802282,-79.36885918,unemployed,22519,144,30,6,91,4,34,19,8,6,0,5,0,0,13416.62676
934,2850e4b4-bc7d-4972-8c57-9c5d3c57b22a,38,With Parent,Toronto,43.66705047,-79.47362606,fulltime,51709,112,17,0,43,9,0,0,0,0,0,0,0,0,59128.98
935,d22666b2-7f00-44b1-a3f3-69707ab02681,20,With Parent,North York,43.79828557,-79.34250448,parttime,14861.88,109,15,0,33,12,0,0,0,0,0,0,0,0,17281.17
936,984cb431-1ec8-474c-ac79-7c1e1e5b83c6,50,With Parent,Toronto,43.65503451,-79.42537625,fulltime,48077.7,115,15,0,45,9,0,0,0,0,0,0,0,0,55448.13
937,8f4b3612-9ea3-43ec-928b-0b96729e3975,43,Group,Toronto,43.6812342,-79.29196138,fulltime,84124.7,137,15,8,45,10,27,14,9,0,0,0,7,0,72184.09
938,358cdb8e-1028-4138-96fa-9e283f24d576,19,Group,Toronto,43.64572556,-79.42093892,unemployed,0,108,0,0,58,8,0,0,0,0,0,0,0,0,106.88
939,257aba1f-a553-4ec5-af58-6608c260d28b,48,Group,Scarborough,43.75869959,-79.21581283,parttime,26546.3,144,16,6,83,9,27,16,8,5,12,4,0,0,16111.21355
940,61ec748a-2b5c-4f38-aaac-2b87cf31d65b,31,Group,Toronto,43.70632038,-79.39055671,fulltime,29865,145,16,6,58,13,27,20,9,5,0,2,0,0,16179.90252
941,37a24ce0-8466-47d4-a24e-da90d98a1484,32,With Parent,Scarborough,43.80666776,-79.33489507,parttime,8535.78,121,16,0,44,12,0,0,0,0,0,0,0,0,9621.83
942,58e6f39d-8f50-4152-99d6-ca0a8a01dcbd,81,Group,Toronto,43.67802718,-79.31475063,unemployed,45735.9,141,31,5,44,5,19,23,9,1,7,0,0,0,44896.08
943,04142d49-9dd0-41eb-bda4-065f1eee89be,26,Group,Toronto,43.68596159,-79.32293985,parttime,14631.21,152,15,5,90,12,33,15,6,6,0,5,0,0,9370.920962
944,00de8de4-b9c4-4629-92fa-0d8a4978cdd9,15,With Parent,Scarborough,43.77372038,-79.19216826,unemployed,0,110,1,0,30,2,0,0,0,0,0,0,0,0,55.99
945,2c5b4048-9431-4ef6-a7ad-335c01ec40d8,28,Group,York,43.68219945,-79.42777911,parttime,16900.62,149,16,7,44,148,25,15,7,0,0,0,0,0,13194.53
946,54d3ba5e-1de0-4d48-9878-b92a76c373ab,22,Group,York,43.66016753,-79.4967905,parttime,11203.83,146,16,7,43,13,12,19,9,1,0,0,0,0,8922.36
947,53a5baf3-238c-4b2d-ae21-d294b5bb040b,16,With Parent,Toronto,43.67115432,-79.40091926,unemployed,0,110,0,0,31,6,0,0,0,0,0,0,0,0,175.58
948,e9ed3c19-fdfb-475a-90fe-9242d18ca457,81,Group,Toronto,43.67761877,-79.30068715,unemployed,54725.3,142,31,7,59,5,27,13,11,5,6,0,0,0,31622.16
949,f091ef91-592a-4609-b36f-8f8c10271778,24,With Parent,Etobicoke,43.66724803,-79.53882022,fulltime,27630.9,112,15,0,45,13,0,0,0,0,0,0,0,0,32821.95
950,3858c2bc-cf5f-42f2-a683-5d8b06046949,47,Group,Toronto,43.67851485,-79.38977784,fulltime,150850.7,152,16,8,44,144,18,17,13,0,0,0,0,0,164574.11
951,709699bf-beb3-453c-91aa-8862ef819dc7,46,Group,Scarborough,43.81228257,-79.23297863,parttime,28570.3,151,16,4,58,8,34,19,8,5,0,0,0,0,14911
952,4a035fd9-a69d-4de8-a209-649d28b1d04c,27,With Parent,Toronto,43.6554407,-79.46113941,unemployed,0,110,1,0,35,14,0,0,0,0,0,6,0,0,2845.353655
953,29d68cbd-79f4-49ba-a9ed-929f6e5fde1f,54,Group,Toronto,43.67807698,-79.40548155,fulltime,80404.55,147,15,8,44,6,18,15,11,1,0,0,7,0,86736.49
954,7e7f4f7e-71bf-4559-8c4d-6978392ecb0e,15,With Parent,North York,43.75021963,-79.32163933,unemployed,0,111,1,0,31,4,0,0,0,0,0,0,0,0,114.81
955,e0002926-8858-49f6-971d-428ceabc2c3e,36,With Parent,Toronto,43.70757708,-79.4274046,fulltime,59465,119,16,0,44,14,0,0,0,0,0,0,0,0,69333.6
956,b5e050db-69ec-488d-9a24-e8173f610db2,17,With Parent,Toronto,43.70257353,-79.41247952,unemployed,0,102,1,0,30,3,0,0,0,0,0,0,0,0,23.1
957,57687077-74dc-4f1e-9e71-4bfd02fb5b56,21,With Parent,Etobicoke,43.73115524,-79.57753695,parttime,11760.54,116,16,0,43,13,0,0,0,1,0,0,0,0,13773.62
958,e99c710f-e781-421a-a44b-6be2d9b4f142,27,With Parent,Toronto,43.65547076,-79.39856103,parttime,9965.67,117,16,0,44,11,0,0,0,0,0,0,0,0,11933.9
959,3f0e19ff-4e05-4e8f-9835-19a34eaf183b,41,With Parent,Toronto,43.66761935,-79.37857497,fulltime,46642.2,114,15,0,44,9,0,0,0,1,0,0,0,0,52954.12
960,912b19eb-741f-40c0-9f1d-37358ebea92d,23,With Parent,Toronto,43.67107771,-79.38808139,unemployed,0,112,0,0,33,14,0,0,0,0,0,6,0,0,2379.620735
961,c0a6c2cb-905a-4ce3-bf1b-51f619bcd60a,51,Group,Etobicoke,43.66724803,-79.53882022,fulltime,100697.3,141,16,7,58,9,28,24,14,5,0,0,0,0,89144.23
962,33b345c4-ab88-4695-ba7a-e37ecc03ed26,27,Group,York,43.6883172,-79.47442287,parttime,8733.12,151,16,7,42,11,19,25,9,0,0,0,0,0,5316.95
963,e421cede-0b81-4055-8019-ec77e6d8b4e8,52,Group,Etobicoke,43.66586855,-79.58105308,fulltime,48765.75,146,15,7,46,149,25,15,8,0,0,0,0,0,48584.01
964,9c35b31e-311b-4890-a376-87037936c155,23,Group,North York,43.74944817,-79.36267434,fulltime,23167.98,151,16,7,89,14,27,21,7,5,0,5,0,0,13773.03669
965,0cf2786c-6312-4c99-9a95-f2a9bf6ded98,17,With Parent,Toronto,43.66550433,-79.30729505,unemployed,0,106,0,0,31,0,0,0,0,0,0,0,0,0,28.11
966,af363feb-d668-483f-8515-e8c8aa320d58,69,Group,Toronto,43.67751804,-79.31351204,unemployed,0,115,0,0,0,6,0,0,0,0,0,6,0,0,2440.342673
967,b5ce907e-23e6-42fa-a947-322ad3e4eda2,17,With Parent,Toronto,43.64806491,-79.37411553,unemployed,0,101,1,0,31,4,0,0,0,0,0,0,0,0,100.76
968,33d39490-aa62-4dca-93a3-01378817e119,42,Group,North York,43.76828401,-79.39148636,fulltime,50490,141,16,7,58,8,33,14,10,5,0,0,0,0,33934.06
969,93787ab6-8879-421e-a0ee-13be67dd2c57,77,Group,East York,43.707491,-79.36268022,unemployed,14161.7,135,15,7,44,140,25,19,9,0,7,2,7,0,10862.77384
970,e17e7d43-4704-43b0-97b2-c74cf05c255c,25,Group,Toronto,43.70694946,-79.39204291,parttime,16328.73,148,15,7,59,14,20,13,9,5,14,10,0,0,9704.729966
971,de0a7fe4-2de5-41df-9184-97b2e73c46e5,42,Group,North York,43.73137021,-79.50777171,fulltime,68209.9,145,17,6,43,9,39,18,7,0,13,0,7,0,52839.76
972,d1898ad1-9cff-4d7e-a511-7fd0aa51af27,33,With Parent,Etobicoke,43.62723848,-79.575083,fulltime,58001,119,16,0,43,14,0,0,0,1,0,0,0,0,66920.36
973,aaeb1701-d170-48d6-8e7a-0498ddaa5d6d,42,With Parent,Toronto,43.66518962,-79.36709363,fulltime,49162.3,111,16,0,44,9,0,0,0,0,0,0,0,0,56537.14
974,372a56c9-fc64-4633-974e-77269a86e855,22,With Parent,Scarborough,43.81385995,-79.23150216,parttime,11781.33,115,15,0,44,13,0,0,0,1,0,0,0,0,13815.19
975,9efb3a9d-61bd-458f-9af8-6b12fbdd34ed,32,With Parent,North York,43.72738213,-79.43304559,parttime,12492.48,118,16,0,45,11,0,0,0,0,0,0,0,0,13899.5
976,86a30560-31bc-44d1-9814-a75b2883fd19,30,Group,North York,43.72272747,-79.31064118,fulltime,25665.09,150,16,6,87,14,27,17,9,5,0,4,0,0,14911.44424
977,a3e48973-1d87-4934-8b39-a5f1e047230e,18,With Parent,Toronto,43.63764799,-79.40106149,unemployed,0,105,0,0,31,15,0,0,0,0,0,0,0,0,210.48
978,3ec3f73a-f42e-4ddf-a3a6-69fb96b206ff,16,With Parent,North York,43.74870576,-79.36308853,unemployed,0,100,0,0,31,6,0,0,0,0,0,0,0,0,111.11
979,9e688f20-1e1b-4962-9912-b461ec98004a,24,With Parent,Scarborough,43.80396034,-79.30073101,parttime,9813.54,115,15,0,45,14,0,0,0,1,0,0,0,0,11076.13
980,290f1b96-07e3-4bff-9052-742af3f73af4,18,With Parent,Toronto,43.67175032,-79.29935007,unemployed,0,83,0,0,31,11,0,0,0,0,0,0,0,0,94.14
981,023fa102-a4a2-42cc-9384-4c79e49313b6,18,With Parent,Scarborough,43.79879918,-79.30874877,unemployed,0,112,2,0,29,13,0,0,0,0,0,0,0,0,166.3
982,0ca5368b-fae9-4a94-8313-a7b7b22c4276,45,Group,Scarborough,43.79689307,-79.29316754,parttime,33289.3,150,15,6,63,144,34,18,10,6,12,2,0,0,19069.30755
983,86c453de-e6a7-45c6-a466-23be202bc735,19,With Parent,Scarborough,43.81028447,-79.20752042,unemployed,0,107,0,0,31,10,0,0,0,0,0,0,0,0,189.08
984,13850680-faf3-4b81-bda1-aa614b377af3,29,With Parent,Etobicoke,43.64585745,-79.51038929,fulltime,29557.44,124,16,0,44,11,0,0,0,0,0,0,0,0,34378.64
985,c75179ba-098e-4967-bd55-65fb251f5611,56,Group,Etobicoke,43.68848126,-79.55431303,unemployed,0,111,0,0,0,6,0,0,0,0,0,6,0,0,2262.470003
986,32393a42-1ab9-495e-b5ae-8cbd59e33f3e,27,With Parent,Scarborough,43.76133907,-79.21507435,parttime,7450.41,118,15,0,46,13,0,0,0,0,0,0,0,0,8716.13
987,f066162a-d3ad-4597-a7a6-f8e0f1844487,21,With Parent,North York,43.70682145,-79.43544809,parttime,15379.65,109,15,0,33,13,0,0,0,0,0,0,0,0,18386.91
988,0fa03a4e-4473-4446-ae79-2c73a0559acf,22,Group,Scarborough,43.76844832,-79.30527439,fulltime,30225.36,150,15,6,69,14,28,14,8,5,0,2,0,0,14903.6161
989,3289a2ea-69eb-4cb5-9197-a4aab7f17724,55,Group,Scarborough,43.79116363,-79.17964661,fulltime,43526.35,143,16,7,57,5,34,15,8,6,0,0,0,0,21409.28
990,b8a6b1d6-1d4f-440d-ae16-157ff5f5003b,93,Group,North York,43.75882971,-79.31728758,unemployed,18046.7,35,17,6,94,5,39,13,8,5,7,5,0,0,13861.37192
991,0446fd8e-c911-4127-afff-5afdf54e84a3,23,With Parent,York,43.69569877,-79.50552335,parttime,7341.84,117,15,0,44,13,0,0,0,1,0,0,0,0,9352.31
992,bf89b8f8-9ea2-4cff-b0e2-76aff1ca5d40,29,Group,Toronto,43.66746458,-79.31794566,fulltime,36028.41,144,15,7,48,13,33,20,9,0,0,0,7,0,17687.95
993,8bbfdba8-5ffa-4d68-953b-2c21455085f2,31,With Parent,North York,43.70967336,-79.42233451,fulltime,64798.14,152,15,5,74,14,33,29,7,0,0,0,7,0,49443.3
994,6e64b549-f2d4-46f2-83f0-bf57b341255c,21,Group,Toronto,43.66618387,-79.44591198,parttime,7299.93,149,16,6,38,13,12,16,8,0,0,2,7,0,4969.552658
995,1f7b0b23-d1ee-4757-988c-cee6902a2c89,16,With Parent,Etobicoke,43.63872962,-79.56423258,unemployed,0,100,1,0,30,6,0,0,0,0,0,0,0,0,110.23
996,f69f9ff6-db9c-49a8-be2d-8e4def9cf5ec,23,With Parent,Etobicoke,43.64691753,-79.52560904,parttime,8711.01,104,16,0,44,13,0,0,0,0,0,0,0,0,10849.68
997,8dfb1544-259a-476d-a785-6429f5403d20,17,With Parent,Scarborough,43.79301781,-79.15042945,unemployed,0,105,0,0,31,7,0,0,0,1,0,0,0,0,124.79
998,36c57cdf-f434-473c-9bc7-e58e01a60a87,22,With Parent,North York,43.802282,-79.36885918,parttime,12584.22,116,15,0,46,15,0,0,0,0,0,0,0,0,14730.84