diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
index 6a3baff..bb4e1fd 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
@@ -895,7 +895,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
$('#canvasDiv').scrollTop(50)
var abc = $rootScope.BodyRegionCordinatesData;
//debugger;
- $('#layerChangeSlider').slider("option", "value", parseInt($scope.totalLayers) - parseInt($scope.layerNumber));
+ $('#layerChangeSlider').slider("option", "value", parseInt($rootScope.totalLayers) - parseInt($scope.layerNumber));
// $('#spinner').css('visibility', 'hidden');
$rootScope.isLoading = false;
//Dated:16-07-2016 Issue #4957 :While selecting the Zoom-in\Zoom-out button scroll should be go on top.
@@ -992,15 +992,15 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
$scope.GetImageSource = function (bodyRegionId) {
- // debugger;
+
var dataLength = $rootScope.BodyLayerData.Layers.DataLayer.length;
//set max for LayerNumber input
- $scope.totalLayers = dataLength - 1;
+ $rootScope.totalLayers = dataLength - 1;
// debugger
- $('#txtLayerNumber').attr('max', $scope.totalLayers);
- $('#layerChangeSlider').slider("option", "max", $scope.totalLayers);
- // $('#layerChangeSlider').slider("option", "value",parseInt($scope.totalLayers)-parseInt($scope.layerNumber));
+ $('#txtLayerNumber').attr('max', $rootScope.totalLayers);
+ $('#layerChangeSlider').slider("option", "max", $rootScope.totalLayers);
+ // $('#layerChangeSlider').slider("option", "value",parseInt($rootScope.totalLayers)-parseInt($scope.layerNumber));
$scope.one = 1;
@@ -1072,7 +1072,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
}
$scope.GetBackgroundImgSource = function (bodyRegionId) {
- // debugger;
+
var selectedGender;
if (localStorage.getItem("genderId") == "Male") {
@@ -1090,6 +1090,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
if ($scope.bagartBodyRegionDetails != null || $scope.bagartBodyRegionDetails != undefined) {
//filter bodyRegion data basd on skintone
+ $scope.skinTone = $rootScope.globalSetting.ethnicity
$scope.bagartDetailsOnSktn = new jinqJs()
.from($scope.bagartBodyRegionDetails)
.where('_Skintone == ' + $scope.skinTone)
@@ -2460,7 +2461,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
$timeout(function () { $scope.DisableProgressBar() }, 1000);
}
- $('#layerChangeSlider').slider("option", "value", parseInt($scope.totalLayers) - parseInt($scope.layerNumber));
+ $('#layerChangeSlider').slider("option", "value", parseInt($rootScope.totalLayers) - parseInt($scope.layerNumber));
}
$scope.DisableProgressBar = function () {
@@ -3357,7 +3358,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
document.getElementById('canvasDiv').removeEventListener("mousedown", mouseDownListener);
//Dated:19-07-2016 Issue#4975: Transparency box should not be clickable if it is already selected.
if ($("#txtlayerNumber").val() != 0) {
- $('#layerChangeSlider').slider("option", "value", parseInt($scope.totalLayers) - parseInt($scope.currentLayerNumber));
+ $('#layerChangeSlider').slider("option", "value", parseInt($rootScope.totalLayers) - parseInt($scope.currentLayerNumber));
$("#txtlayerNumber").val(parseInt($scope.currentLayerNumber));
}
}
@@ -4398,7 +4399,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
// debugger;
- $('#layerChangeSlider').slider("option", "value", parseInt($scope.totalLayers) - parseInt($scope.currentLayerNumber));
+ $('#layerChangeSlider').slider("option", "value", parseInt($rootScope.totalLayers) - parseInt($scope.currentLayerNumber));
$("#txtlayerNumber").val(parseInt($scope.currentLayerNumber));
@@ -6853,27 +6854,14 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
var openViewLen = $rootScope.openViews.length;
var currentOpenModuleId = $rootScope.openModules[len - 1].ModuleId;
- var currentOpenViewId = $rootScope.openViews[openViewLen - 1].BodyViewId;
- $rootScope.viewOrientationId = currentOpenViewId;
+
//confirm that this is DA module which is last open
if (currentOpenModuleId == 1) {
$('#termList').empty();
$scope.loadListManger();
-
-
- //})
- // .error(function (data, status, headers, config) {
-
- // console.log(data);
-
- // });
-
-
-
$rootScope.islistManagerEventAlredayDispachted = false;
- var jj;
}
}
@@ -6885,13 +6873,6 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
$scope.loadListManger = function () {
-
- //var path = '~/../content/data/json/da/vocab/english/cm_dat_vocabterm_1.json'
-
- //$http({ method: 'GET', url: '~/../content/data/json/da/vocab/english/cm_dat_vocabterm_1.json' }).success(function (data) {
-
- //var VocabTermData = data;
-
var vocabTermTxt = [];
angular.forEach($rootScope.TermNumberData.TermData.Term, function (value1, key1) {
@@ -6943,15 +6924,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
}
- // })
-
-
- //.error(function (data, status, headers, config) {
-
- // console.log(data);
-
- //});
- }
+ }
$scope.HighlightBodyOnListManagerSelection = function (event) {
@@ -6997,7 +6970,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
}
if (layerNumber == 0) {
- layerNumber = $scope.totalLayers;
+ layerNumber = $rootScope.totalLayers;
}
else {
layerNumber = parseInt(layerNumber) - 1;
@@ -7045,7 +7018,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
}
$('#txtlayerNumber').val((parseInt($scope.layerNumber)));
- $('#layerChangeSlider').slider("option", "value", parseInt($scope.totalLayers) - parseInt($scope.layerNumber));
+ $('#layerChangeSlider').slider("option", "value", parseInt($rootScope.totalLayers) - parseInt($scope.layerNumber));
//8.remove current layer canavses
$scope.flushCanvas();
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/11/da_dat_layer_11.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/11/da_dat_layer_11.json
index 636d1d5..467bb9c 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/11/da_dat_layer_11.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/11/da_dat_layer_11.json
@@ -1,878 +1,1138 @@
{
- "Layers": {
- "DataLayer": [
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "335.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "65",
- "_LayerNumber": "65",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "334.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "64",
- "_LayerNumber": "64",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "333.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "63",
- "_LayerNumber": "63",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "332.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "62",
- "_LayerNumber": "62",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "331.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "61",
- "_LayerNumber": "61",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "330.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "60",
- "_LayerNumber": "60",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "329.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "59",
- "_LayerNumber": "59",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "328.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "58",
- "_LayerNumber": "58",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "327.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "57",
- "_LayerNumber": "57",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "326.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "56",
- "_LayerNumber": "56",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "325.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "55",
- "_LayerNumber": "55",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "324.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "54",
- "_LayerNumber": "54",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "323.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "53",
- "_LayerNumber": "53",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "322.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "52",
- "_LayerNumber": "52",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "321.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "51",
- "_LayerNumber": "51",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "320.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "50",
- "_LayerNumber": "50",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "319.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "49",
- "_LayerNumber": "49",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "318.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "48",
- "_LayerNumber": "48",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "317.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "47",
- "_LayerNumber": "47",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "316.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "46",
- "_LayerNumber": "46",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "315.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "45",
- "_LayerNumber": "45",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "314.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "44",
- "_LayerNumber": "44",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "313.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "43",
- "_LayerNumber": "43",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "312.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "42",
- "_LayerNumber": "42",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "311.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "41",
- "_LayerNumber": "41",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "310.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "40",
- "_LayerNumber": "40",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "309.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "39",
- "_LayerNumber": "39",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "308.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "38",
- "_LayerNumber": "38",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "307.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "37",
- "_LayerNumber": "37",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "306.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "36",
- "_LayerNumber": "36",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "305.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "35",
- "_LayerNumber": "35",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "304.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "34",
- "_LayerNumber": "34",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "303.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "33",
- "_LayerNumber": "33",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "302.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "32",
- "_LayerNumber": "32",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "301.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "31",
- "_LayerNumber": "31",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "300.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "30",
- "_LayerNumber": "30",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "299.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "29",
- "_LayerNumber": "29",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "298.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "28",
- "_LayerNumber": "28",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "297.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "27",
- "_LayerNumber": "27",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "296.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "26",
- "_LayerNumber": "26",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "295.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "25",
- "_LayerNumber": "25",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "294.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "24",
- "_LayerNumber": "24",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "293.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "23",
- "_LayerNumber": "23",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "292.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "22",
- "_LayerNumber": "22",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "291.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "21",
- "_LayerNumber": "21",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "290.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "20",
- "_LayerNumber": "20",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "289.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "19",
- "_LayerNumber": "19",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "288.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "18",
- "_LayerNumber": "18",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "287.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "17",
- "_LayerNumber": "17",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "286.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "16",
- "_LayerNumber": "16",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "285.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "15",
- "_LayerNumber": "15",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "284.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "14",
- "_LayerNumber": "14",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "283.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "13",
- "_LayerNumber": "13",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "282.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "12",
- "_LayerNumber": "12",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "281.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "11",
- "_LayerNumber": "11",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "280.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "10",
- "_LayerNumber": "10",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "279.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "9",
- "_LayerNumber": "9",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "278.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "8",
- "_LayerNumber": "8",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "277.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "7",
- "_LayerNumber": "7",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "276.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "6",
- "_LayerNumber": "6",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "275.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "5",
- "_LayerNumber": "5",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "274.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "4",
- "_LayerNumber": "4",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "273.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "3",
- "_LayerNumber": "3",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "272.png"
- },
- "_BodyRegionId": "6"
- },
- "_id": "2",
- "_LayerNumber": "2",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": [
- {
- "Image": {
- "_SkintTone": "W",
- "_Zoom": "100",
- "_ImageName": "271.png"
- },
- "_BodyRegionId": "6"
- },
- {
- "Image": {
- "_SkintTone": "B",
- "_Zoom": "100",
- "_ImageName": "268.png"
- },
- "_BodyRegionId": "6"
- },
- {
- "Image": {
- "_SkintTone": "A",
- "_Zoom": "100",
- "_ImageName": "265.png"
- },
- "_BodyRegionId": "6"
- },
- {
- "Image": {
- "_SkintTone": "L",
- "_Zoom": "100",
- "_ImageName": "270.png"
- },
- "_BodyRegionId": "6"
- }
- ],
- "_id": "1",
- "_LayerNumber": "1",
- "_HaveSkinTone": "Y"
- }
- ],
- "_id": "LayerList"
- }
+ "Layers": {
+ "DataLayer": [{
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "403",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "335.png"
+ },
+ "_lni": "6500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "65",
+ "_lni": "6500",
+ "_lnm": "Sagittal section of bones",
+ "_isbs": "Y",
+ "_LayerNumber": "65",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "402",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "334.png"
+ },
+ "_lni": "6400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "64",
+ "_lni": "6400",
+ "_lnm": "Bones",
+ "_isbs": "N",
+ "_LayerNumber": "64",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "401",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "333.png"
+ },
+ "_lni": "6300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "63",
+ "_lni": "6300",
+ "_lnm": "Articular cartilage of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "63",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "400",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "332.png"
+ },
+ "_lni": "6200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "62",
+ "_lni": "6200",
+ "_lnm": "Synovial joint capsules of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "62",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "399",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "331.png"
+ },
+ "_lni": "6100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "61",
+ "_lni": "6100",
+ "_lnm": "Ligaments of the upper limb",
+ "_isbs": "N",
+ "_LayerNumber": "61",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "398",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "330.png"
+ },
+ "_lni": "6000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "60",
+ "_lni": "6000",
+ "_lnm": "Tendon of subscapularis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "60",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "397",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "329.png"
+ },
+ "_lni": "5900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "59",
+ "_lni": "5900",
+ "_lnm": "Tendon of supraspinatus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "59",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "396",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "328.png"
+ },
+ "_lni": "5800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "58",
+ "_lni": "5800",
+ "_lnm": "Infraspinatus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "58",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "395",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "327.png"
+ },
+ "_lni": "5700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "57",
+ "_lni": "5700",
+ "_lnm": "Teres minor muscle",
+ "_isbs": "N",
+ "_LayerNumber": "57",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "394",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "326.png"
+ },
+ "_lni": "5600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "56",
+ "_lni": "5600",
+ "_lnm": "Biceps brachii muscle - cut",
+ "_isbs": "N",
+ "_LayerNumber": "56",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "393",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "325.png"
+ },
+ "_lni": "5500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "55",
+ "_lni": "5500",
+ "_lnm": "Pectoralis major muscle",
+ "_isbs": "N",
+ "_LayerNumber": "55",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "392",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "324.png"
+ },
+ "_lni": "5400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "54",
+ "_lni": "5400",
+ "_lnm": "Anterior branch of axillary nerve",
+ "_isbs": "N",
+ "_LayerNumber": "54",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "391",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "323.png"
+ },
+ "_lni": "5300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "53",
+ "_lni": "5300",
+ "_lnm": "Humeral circumflex arteries",
+ "_isbs": "N",
+ "_LayerNumber": "53",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "390",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "322.png"
+ },
+ "_lni": "5200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "52",
+ "_lni": "5200",
+ "_lnm": "Humeral circumflex veins",
+ "_isbs": "N",
+ "_LayerNumber": "52",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "389",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "321.png"
+ },
+ "_lni": "5100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "51",
+ "_lni": "5100",
+ "_lnm": "Subdeltoid bursa",
+ "_isbs": "N",
+ "_LayerNumber": "51",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "388",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "320.png"
+ },
+ "_lni": "5000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "50",
+ "_lni": "5000",
+ "_lnm": "Deep brachial artery",
+ "_isbs": "N",
+ "_LayerNumber": "50",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "387",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "319.png"
+ },
+ "_lni": "4900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "49",
+ "_lni": "4900",
+ "_lnm": "Deep brachial vein",
+ "_isbs": "N",
+ "_LayerNumber": "49",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "386",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "318.png"
+ },
+ "_lni": "4800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "48",
+ "_lni": "4800",
+ "_lnm": "Medial head of triceps muscle",
+ "_isbs": "N",
+ "_LayerNumber": "48",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "385",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "317.png"
+ },
+ "_lni": "4700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "47",
+ "_lni": "4700",
+ "_lnm": "Radial nerve",
+ "_isbs": "N",
+ "_LayerNumber": "47",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "384",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "316.png"
+ },
+ "_lni": "4600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "46",
+ "_lni": "4600",
+ "_lnm": "Lateral intermuscular septum",
+ "_isbs": "N",
+ "_LayerNumber": "46",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "383",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "315.png"
+ },
+ "_lni": "4500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "45",
+ "_lni": "4500",
+ "_lnm": "Brachialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "45",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "382",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "314.png"
+ },
+ "_lni": "4400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "44",
+ "_lni": "4400",
+ "_lnm": "Musculocutaneous nerve",
+ "_isbs": "N",
+ "_LayerNumber": "44",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "381",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "313.png"
+ },
+ "_lni": "4300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "43",
+ "_lni": "4300",
+ "_lnm": "Long head of biceps brachii muscle",
+ "_isbs": "N",
+ "_LayerNumber": "43",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "380",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "312.png"
+ },
+ "_lni": "4200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "42",
+ "_lni": "4200",
+ "_lnm": "Tendon of pronator quadratus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "42",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "379",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "311.png"
+ },
+ "_lni": "4100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "41",
+ "_lni": "4100",
+ "_lnm": "Flexor pollicis longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "41",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "378",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "310.png"
+ },
+ "_lni": "4000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "40",
+ "_lni": "4000",
+ "_lnm": "Supinator muscle",
+ "_isbs": "N",
+ "_LayerNumber": "40",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "377",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "309.png"
+ },
+ "_lni": "3900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "39",
+ "_lni": "3900",
+ "_lnm": "Pronator teres muscle",
+ "_isbs": "N",
+ "_LayerNumber": "39",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "376",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "308.png"
+ },
+ "_lni": "3800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "38",
+ "_lni": "3800",
+ "_lnm": "Tendon of flexor digitorum profundus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "38",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "375",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "307.png"
+ },
+ "_lni": "3700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "37",
+ "_lni": "3700",
+ "_lnm": "Tendon of extensor carpi radialis brevis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "37",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "374",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "306.png"
+ },
+ "_lni": "3600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "36",
+ "_lni": "3600",
+ "_lnm": "Tendon of extensor carpi radialis longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "36",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "373",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "305.png"
+ },
+ "_lni": "3500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "35",
+ "_lni": "3500",
+ "_lnm": "Deep arteries of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "35",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "372",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "304.png"
+ },
+ "_lni": "3400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "34",
+ "_lni": "3400",
+ "_lnm": "Deep veins of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "34",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "371",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "303.png"
+ },
+ "_lni": "3300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "33",
+ "_lni": "3300",
+ "_lnm": "Tendon of brachioradialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "33",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "370",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "302.png"
+ },
+ "_lni": "3200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "32",
+ "_lni": "3200",
+ "_lnm": "Extensor pollicis brevis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "32",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "369",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "301.png"
+ },
+ "_lni": "3100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "31",
+ "_lni": "3100",
+ "_lnm": "Abductor pollicis longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "31",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "368",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "300.png"
+ },
+ "_lni": "3000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "30",
+ "_lni": "3000",
+ "_lnm": "Extensor indicis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "30",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "367",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "299.png"
+ },
+ "_lni": "2900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "29",
+ "_lni": "2900",
+ "_lnm": "Extensor pollicis longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "29",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "366",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "298.png"
+ },
+ "_lni": "2800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "28",
+ "_lni": "2800",
+ "_lnm": "Deep branch of radial nerve",
+ "_isbs": "N",
+ "_LayerNumber": "28",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "365",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "297.png"
+ },
+ "_lni": "2700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "27",
+ "_lni": "2700",
+ "_lnm": "Deep arteries of the upper limb",
+ "_isbs": "N",
+ "_LayerNumber": "27",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "364",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "296.png"
+ },
+ "_lni": "2600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "26",
+ "_lni": "2600",
+ "_lnm": "Deep veins of the upper limb",
+ "_isbs": "N",
+ "_LayerNumber": "26",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "363",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "295.png"
+ },
+ "_lni": "2500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "25",
+ "_lni": "2500",
+ "_lnm": "Superficial branch of radial nerve",
+ "_isbs": "N",
+ "_LayerNumber": "25",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "362",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "294.png"
+ },
+ "_lni": "2400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "24",
+ "_lni": "2400",
+ "_lnm": "Common extensor tendon",
+ "_isbs": "N",
+ "_LayerNumber": "24",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "361",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "293.png"
+ },
+ "_lni": "2300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "23",
+ "_lni": "2300",
+ "_lnm": "Extensor carpi radialis brevis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "23",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "360",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "292.png"
+ },
+ "_lni": "2200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "22",
+ "_lni": "2200",
+ "_lnm": "Extensor carpi radialis longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "22",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "359",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "291.png"
+ },
+ "_lni": "2100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "21",
+ "_lni": "2100",
+ "_lnm": "Brachioradialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "21",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "358",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "290.png"
+ },
+ "_lni": "2000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "20",
+ "_lni": "2000",
+ "_lnm": "Triceps muscle",
+ "_isbs": "N",
+ "_LayerNumber": "20",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "357",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "289.png"
+ },
+ "_lni": "1900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "19",
+ "_lni": "1900",
+ "_lnm": "Anconeus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "19",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "356",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "288.png"
+ },
+ "_lni": "1800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "18",
+ "_lni": "1800",
+ "_lnm": "Extensor carpi ulnaris muscle",
+ "_isbs": "N",
+ "_LayerNumber": "18",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "355",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "287.png"
+ },
+ "_lni": "1700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "17",
+ "_lni": "1700",
+ "_lnm": "Extensor digiti minimi muscle",
+ "_isbs": "N",
+ "_LayerNumber": "17",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "354",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "286.png"
+ },
+ "_lni": "1600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "16",
+ "_lni": "1600",
+ "_lnm": "Extensor digitorum muscle",
+ "_isbs": "N",
+ "_LayerNumber": "16",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "353",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "285.png"
+ },
+ "_lni": "1500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "15",
+ "_lni": "1500",
+ "_lnm": "Olecranon bursa",
+ "_isbs": "N",
+ "_LayerNumber": "15",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "352",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "284.png"
+ },
+ "_lni": "1400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "14",
+ "_lni": "1400",
+ "_lnm": "Deltoid muscle",
+ "_isbs": "N",
+ "_LayerNumber": "14",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "351",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "283.png"
+ },
+ "_lni": "1300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "13",
+ "_lni": "1300",
+ "_lnm": "Tendon of flexor digitorum superficialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "13",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "350",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "282.png"
+ },
+ "_lni": "1200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "12",
+ "_lni": "1200",
+ "_lnm": "Synovial tendon sheath of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "12",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "349",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "281.png"
+ },
+ "_lni": "1100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "11",
+ "_lni": "1100",
+ "_lnm": "Fibrous digital sheath of hand",
+ "_isbs": "N",
+ "_LayerNumber": "11",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "348",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "280.png"
+ },
+ "_lni": "1000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "10",
+ "_lni": "1000",
+ "_lnm": "First lumbrical muscle",
+ "_isbs": "N",
+ "_LayerNumber": "10",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "347",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "279.png"
+ },
+ "_lni": "900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "9",
+ "_lni": "900",
+ "_lnm": "First dorsal interosseous muscle",
+ "_isbs": "N",
+ "_LayerNumber": "9",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "346",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "278.png"
+ },
+ "_lni": "800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "8",
+ "_lni": "800",
+ "_lnm": "Digital arteries of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "8",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "345",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "277.png"
+ },
+ "_lni": "700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "7",
+ "_lni": "700",
+ "_lnm": "Digital veins of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "7",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "344",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "276.png"
+ },
+ "_lni": "600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "6",
+ "_lni": "600",
+ "_lnm": "Extensor retinaculum of the wrist",
+ "_isbs": "N",
+ "_LayerNumber": "6",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "343",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "275.png"
+ },
+ "_lni": "500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "5",
+ "_lni": "500",
+ "_lnm": "Deep layer of superficial fascia",
+ "_isbs": "N",
+ "_LayerNumber": "5",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "342",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "274.png"
+ },
+ "_lni": "400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "4",
+ "_lni": "400",
+ "_lnm": "Cutaneous nerves",
+ "_isbs": "N",
+ "_LayerNumber": "4",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "341",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "273.png"
+ },
+ "_lni": "300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "3",
+ "_lni": "300",
+ "_lnm": "Superficial veins",
+ "_isbs": "N",
+ "_LayerNumber": "3",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "340",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "272.png"
+ },
+ "_lni": "200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "2",
+ "_lni": "200",
+ "_lnm": "Subcutaneous fat",
+ "_isbs": "N",
+ "_LayerNumber": "2",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": [{
+ "Image": {
+ "_isoId": "338",
+ "_SkintTone": "W",
+ "_Zoom": "100",
+ "_ImageName": "271.png"
+ },
+ "_lni": "101",
+ "_BodyRegionId": "6"
+ }, {
+ "Image": {
+ "_isoId": "337",
+ "_SkintTone": "B",
+ "_Zoom": "100",
+ "_ImageName": "268.png"
+ },
+ "_lni": "105",
+ "_BodyRegionId": "6"
+ }, {
+ "Image": {
+ "_isoId": "336",
+ "_SkintTone": "A",
+ "_Zoom": "100",
+ "_ImageName": "265.png"
+ },
+ "_lni": "109",
+ "_BodyRegionId": "6"
+ }, {
+ "Image": {
+ "_isoId": "339",
+ "_SkintTone": "L",
+ "_Zoom": "100",
+ "_ImageName": "270.png"
+ },
+ "_lni": "113",
+ "_BodyRegionId": "6"
+ }],
+ "_id": "1",
+ "_lni": "100",
+ "_lnm": "Skin",
+ "_isbs": "N",
+ "_LayerNumber": "1",
+ "_HaveSkinTone": "Y"
+ }],
+ "_id": "LayerList"
+ }
}
\ No newline at end of file
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/12/da_dat_layer_12.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/12/da_dat_layer_12.json
index a7ce144..a61a97a 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/12/da_dat_layer_12.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/12/da_dat_layer_12.json
@@ -1,982 +1,1274 @@
{
- "Layers": {
- "DataLayer": [
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "611.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "138",
- "_LayerNumber": "73",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "610.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "137",
- "_LayerNumber": "72",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "609.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "136",
- "_LayerNumber": "71",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "608.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "135",
- "_LayerNumber": "70",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "607.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "134",
- "_LayerNumber": "69",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "606.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "133",
- "_LayerNumber": "68",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "605.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "132",
- "_LayerNumber": "67",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "604.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "131",
- "_LayerNumber": "66",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "603.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "130",
- "_LayerNumber": "65",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "602.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "129",
- "_LayerNumber": "64",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "601.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "128",
- "_LayerNumber": "63",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "600.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "127",
- "_LayerNumber": "62",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "599.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "126",
- "_LayerNumber": "61",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "598.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "125",
- "_LayerNumber": "60",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "597.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "124",
- "_LayerNumber": "59",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "596.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "123",
- "_LayerNumber": "58",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "595.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "122",
- "_LayerNumber": "57",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "594.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "121",
- "_LayerNumber": "56",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "593.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "120",
- "_LayerNumber": "55",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "592.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "119",
- "_LayerNumber": "54",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "591.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "118",
- "_LayerNumber": "53",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "590.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "117",
- "_LayerNumber": "52",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "589.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "116",
- "_LayerNumber": "51",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "588.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "115",
- "_LayerNumber": "50",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "587.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "114",
- "_LayerNumber": "49",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "586.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "113",
- "_LayerNumber": "48",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "585.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "112",
- "_LayerNumber": "47",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "584.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "111",
- "_LayerNumber": "46",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "583.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "110",
- "_LayerNumber": "45",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "582.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "109",
- "_LayerNumber": "44",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "581.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "108",
- "_LayerNumber": "43",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "580.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "107",
- "_LayerNumber": "42",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "579.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "106",
- "_LayerNumber": "41",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "578.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "105",
- "_LayerNumber": "40",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "577.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "104",
- "_LayerNumber": "39",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "576.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "103",
- "_LayerNumber": "38",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "575.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "102",
- "_LayerNumber": "37",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "574.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "101",
- "_LayerNumber": "36",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "573.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "100",
- "_LayerNumber": "35",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "572.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "99",
- "_LayerNumber": "34",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "571.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "98",
- "_LayerNumber": "33",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "570.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "97",
- "_LayerNumber": "32",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "569.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "96",
- "_LayerNumber": "31",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "568.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "95",
- "_LayerNumber": "30",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "567.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "94",
- "_LayerNumber": "29",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "566.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "93",
- "_LayerNumber": "28",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "565.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "92",
- "_LayerNumber": "27",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "564.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "91",
- "_LayerNumber": "26",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "563.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "90",
- "_LayerNumber": "25",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "562.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "89",
- "_LayerNumber": "24",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "561.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "88",
- "_LayerNumber": "23",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "560.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "87",
- "_LayerNumber": "22",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "559.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "86",
- "_LayerNumber": "21",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "558.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "85",
- "_LayerNumber": "20",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "557.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "84",
- "_LayerNumber": "19",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "556.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "83",
- "_LayerNumber": "18",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "555.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "82",
- "_LayerNumber": "17",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "554.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "81",
- "_LayerNumber": "16",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "553.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "80",
- "_LayerNumber": "15",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "552.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "79",
- "_LayerNumber": "14",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "551.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "78",
- "_LayerNumber": "13",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "550.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "77",
- "_LayerNumber": "12",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "549.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "76",
- "_LayerNumber": "11",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "548.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "75",
- "_LayerNumber": "10",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "547.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "74",
- "_LayerNumber": "9",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "546.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "73",
- "_LayerNumber": "8",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "545.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "72",
- "_LayerNumber": "7",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "544.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "71",
- "_LayerNumber": "6",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "543.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "70",
- "_LayerNumber": "5",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "542.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "69",
- "_LayerNumber": "4",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "541.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "68",
- "_LayerNumber": "3",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": {
- "Image": {
- "_SkintTone": "-",
- "_Zoom": "100",
- "_ImageName": "540.jpg"
- },
- "_BodyRegionId": "6"
- },
- "_id": "67",
- "_LayerNumber": "2",
- "_HaveSkinTone": "N"
- },
- {
- "BodyRegion": [
- {
- "Image": {
- "_SkintTone": "W",
- "_Zoom": "100",
- "_ImageName": "539.jpg"
- },
- "_BodyRegionId": "6"
- },
- {
- "Image": {
- "_SkintTone": "B",
- "_Zoom": "100",
- "_ImageName": "536.jpg"
- },
- "_BodyRegionId": "6"
- },
- {
- "Image": {
- "_SkintTone": "A",
- "_Zoom": "100",
- "_ImageName": "533.jpg"
- },
- "_BodyRegionId": "6"
- },
- {
- "Image": {
- "_SkintTone": "L",
- "_Zoom": "100",
- "_ImageName": "538.jpg"
- },
- "_BodyRegionId": "6"
- }
- ],
- "_id": "66",
- "_LayerNumber": "1",
- "_HaveSkinTone": "Y"
- }
- ],
- "_id": "LayerList"
- }
+ "Layers": {
+ "DataLayer": [{
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "691",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "611.jpg"
+ },
+ "_lni": "7300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "138",
+ "_lni": "7300",
+ "_lnm": "Sagittal section of bones",
+ "_isbs": "Y",
+ "_LayerNumber": "73",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "690",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "610.jpg"
+ },
+ "_lni": "7200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "137",
+ "_lni": "7200",
+ "_lnm": "Bones",
+ "_isbs": "N",
+ "_LayerNumber": "72",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "689",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "609.jpg"
+ },
+ "_lni": "7100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "136",
+ "_lni": "7100",
+ "_lnm": "Articular cartilage of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "71",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "688",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "608.jpg"
+ },
+ "_lni": "7000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "135",
+ "_lni": "7000",
+ "_lnm": "Synovial joint capsule of the upper limb",
+ "_isbs": "N",
+ "_LayerNumber": "70",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "687",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "607.jpg"
+ },
+ "_lni": "6900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "134",
+ "_lni": "6900",
+ "_lnm": "Ligaments of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "69",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "686",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "606.jpg"
+ },
+ "_lni": "6800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "133",
+ "_lni": "6800",
+ "_lnm": "Subsynovial fat pad of olecranon fossa",
+ "_isbs": "N",
+ "_LayerNumber": "68",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "685",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "605.jpg"
+ },
+ "_lni": "6700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "132",
+ "_lni": "6700",
+ "_lnm": "Fibrous joint capsule of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "67",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "684",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "604.jpg"
+ },
+ "_lni": "6600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "131",
+ "_lni": "6600",
+ "_lnm": "Supinator muscle",
+ "_isbs": "N",
+ "_LayerNumber": "66",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "683",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "603.jpg"
+ },
+ "_lni": "6500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "130",
+ "_lni": "6500",
+ "_lnm": "Intermuscular septum",
+ "_isbs": "N",
+ "_LayerNumber": "65",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "682",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "602.jpg"
+ },
+ "_lni": "6400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "129",
+ "_lni": "6400",
+ "_lnm": "Anterior interosseous nerve",
+ "_isbs": "N",
+ "_LayerNumber": "64",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "681",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "601.jpg"
+ },
+ "_lni": "6300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "128",
+ "_lni": "6300",
+ "_lnm": "Anterior interosseous artery of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "63",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "680",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "600.jpg"
+ },
+ "_lni": "6200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "127",
+ "_lni": "6200",
+ "_lnm": "Anterior interosseous vein of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "62",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "679",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "599.jpg"
+ },
+ "_lni": "6100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "126",
+ "_lni": "6100",
+ "_lnm": "Pronator quadratus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "61",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "678",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "598.jpg"
+ },
+ "_lni": "6000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "125",
+ "_lni": "6000",
+ "_lnm": "Flexor pollicis longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "60",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "677",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "597.jpg"
+ },
+ "_lni": "5900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "124",
+ "_lni": "5900",
+ "_lnm": "Flexor digitorum profundus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "59",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "676",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "596.jpg"
+ },
+ "_lni": "5800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "123",
+ "_lni": "5800",
+ "_lnm": "Medial head of triceps muscle",
+ "_isbs": "N",
+ "_LayerNumber": "58",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "675",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "595.jpg"
+ },
+ "_lni": "5700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "122",
+ "_lni": "5700",
+ "_lnm": "Brachialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "57",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "674",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "594.jpg"
+ },
+ "_lni": "5600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "121",
+ "_lni": "5600",
+ "_lnm": "Tendon of subscapularis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "56",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "673",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "593.jpg"
+ },
+ "_lni": "5500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "120",
+ "_lni": "5500",
+ "_lnm": "Axillary nerve",
+ "_isbs": "N",
+ "_LayerNumber": "55",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "672",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "592.jpg"
+ },
+ "_lni": "5400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "119",
+ "_lni": "5400",
+ "_lnm": "Supraspinatus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "54",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "671",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "591.jpg"
+ },
+ "_lni": "5300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "118",
+ "_lni": "5300",
+ "_lnm": "Subacromial bursa",
+ "_isbs": "N",
+ "_LayerNumber": "53",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "670",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "590.jpg"
+ },
+ "_lni": "5200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "117",
+ "_lni": "5200",
+ "_lnm": "Deltoid muscle",
+ "_isbs": "N",
+ "_LayerNumber": "52",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "669",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "589.jpg"
+ },
+ "_lni": "5100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "116",
+ "_lni": "5100",
+ "_lnm": "Long head of triceps muscle",
+ "_isbs": "N",
+ "_LayerNumber": "51",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "668",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "588.jpg"
+ },
+ "_lni": "5000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "115",
+ "_lni": "5000",
+ "_lnm": "Medial brachial intermuscular septum",
+ "_isbs": "N",
+ "_LayerNumber": "50",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "667",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "587.jpg"
+ },
+ "_lni": "4900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "114",
+ "_lni": "4900",
+ "_lnm": "Teres minor muscle",
+ "_isbs": "N",
+ "_LayerNumber": "49",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "666",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "586.jpg"
+ },
+ "_lni": "4800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "113",
+ "_lni": "4800",
+ "_lnm": "Infraspinatus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "48",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "665",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "585.jpg"
+ },
+ "_lni": "4700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "112",
+ "_lni": "4700",
+ "_lnm": "Cephalic vein",
+ "_isbs": "N",
+ "_LayerNumber": "47",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "664",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "584.jpg"
+ },
+ "_lni": "4600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "111",
+ "_lni": "4600",
+ "_lnm": "Pectoralis major muscle",
+ "_isbs": "N",
+ "_LayerNumber": "46",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "663",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "583.jpg"
+ },
+ "_lni": "4500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "110",
+ "_lni": "4500",
+ "_lnm": "Teres major muscle",
+ "_isbs": "N",
+ "_LayerNumber": "45",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "662",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "582.jpg"
+ },
+ "_lni": "4400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "109",
+ "_lni": "4400",
+ "_lnm": "Latissimus dorsi muscle",
+ "_isbs": "N",
+ "_LayerNumber": "44",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "661",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "581.jpg"
+ },
+ "_lni": "4300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "108",
+ "_lni": "4300",
+ "_lnm": "Humeral circumflex artery",
+ "_isbs": "N",
+ "_LayerNumber": "43",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "660",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "580.jpg"
+ },
+ "_lni": "4200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "107",
+ "_lni": "4200",
+ "_lnm": "Humeral circumflex vein",
+ "_isbs": "N",
+ "_LayerNumber": "42",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "659",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "579.jpg"
+ },
+ "_lni": "4100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "106",
+ "_lni": "4100",
+ "_lnm": "Coracobrachialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "41",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "658",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "578.jpg"
+ },
+ "_lni": "4000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "105",
+ "_lni": "4000",
+ "_lnm": "Radial nerve",
+ "_isbs": "N",
+ "_LayerNumber": "40",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "657",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "577.jpg"
+ },
+ "_lni": "3900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "104",
+ "_lni": "3900",
+ "_lnm": "Ulnar nerve",
+ "_isbs": "N",
+ "_LayerNumber": "39",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "656",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "576.jpg"
+ },
+ "_lni": "3800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "103",
+ "_lni": "3800",
+ "_lnm": "Musculocutaneous nerve",
+ "_isbs": "N",
+ "_LayerNumber": "38",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "655",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "575.jpg"
+ },
+ "_lni": "3700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "102",
+ "_lni": "3700",
+ "_lnm": "Ulnar artery",
+ "_isbs": "N",
+ "_LayerNumber": "37",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "654",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "574.jpg"
+ },
+ "_lni": "3600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "101",
+ "_lni": "3600",
+ "_lnm": "Brachial vein (Ulnar vein)",
+ "_isbs": "N",
+ "_LayerNumber": "36",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "653",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "573.jpg"
+ },
+ "_lni": "3500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "100",
+ "_lni": "3500",
+ "_lnm": "Brachial artery",
+ "_isbs": "N",
+ "_LayerNumber": "35",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "652",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "572.jpg"
+ },
+ "_lni": "3400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "99",
+ "_lni": "3400",
+ "_lnm": "Ulnar head of pronator teres muscle",
+ "_isbs": "N",
+ "_LayerNumber": "34",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "651",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "571.jpg"
+ },
+ "_lni": "3300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "98",
+ "_lni": "3300",
+ "_lnm": "Median nerve",
+ "_isbs": "N",
+ "_LayerNumber": "33",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "650",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "570.jpg"
+ },
+ "_lni": "3200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "97",
+ "_lni": "3200",
+ "_lnm": "Medial cutaneous nerve of the arm",
+ "_isbs": "N",
+ "_LayerNumber": "32",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "649",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "569.jpg"
+ },
+ "_lni": "3100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "96",
+ "_lni": "3100",
+ "_lnm": "Ulnar nerve - cut",
+ "_isbs": "N",
+ "_LayerNumber": "31",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "648",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "568.jpg"
+ },
+ "_lni": "3000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "95",
+ "_lni": "3000",
+ "_lnm": "Median artery",
+ "_isbs": "N",
+ "_LayerNumber": "30",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "647",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "567.jpg"
+ },
+ "_lni": "2900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "94",
+ "_lni": "2900",
+ "_lnm": "Median vein",
+ "_isbs": "N",
+ "_LayerNumber": "29",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "646",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "566.jpg"
+ },
+ "_lni": "2800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "93",
+ "_lni": "2800",
+ "_lnm": "Extensor carpi ulnaris muscle",
+ "_isbs": "N",
+ "_LayerNumber": "28",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "645",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "565.jpg"
+ },
+ "_lni": "2700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "92",
+ "_lni": "2700",
+ "_lnm": "Flexor carpi ulnaris muscle",
+ "_isbs": "N",
+ "_LayerNumber": "27",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "644",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "564.jpg"
+ },
+ "_lni": "2600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "91",
+ "_lni": "2600",
+ "_lnm": "Flexor digitorum superficialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "26",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "643",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "563.jpg"
+ },
+ "_lni": "2500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "90",
+ "_lni": "2500",
+ "_lnm": "Synovial tendon sheath of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "25",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "642",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "562.jpg"
+ },
+ "_lni": "2400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "89",
+ "_lni": "2400",
+ "_lnm": "Opponens digiti minimi muscle",
+ "_isbs": "N",
+ "_LayerNumber": "24",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "641",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "561.jpg"
+ },
+ "_lni": "2300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "88",
+ "_lni": "2300",
+ "_lnm": "Flexor digiti minimi brevis muscle of the hand",
+ "_isbs": "N",
+ "_LayerNumber": "23",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "640",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "560.jpg"
+ },
+ "_lni": "2200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "87",
+ "_lni": "2200",
+ "_lnm": "Abductor digiti minimi muscle",
+ "_isbs": "N",
+ "_LayerNumber": "22",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "639",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "559.jpg"
+ },
+ "_lni": "2100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "86",
+ "_lni": "2100",
+ "_lnm": "Fibrous digital sheath",
+ "_isbs": "N",
+ "_LayerNumber": "21",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "638",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "558.jpg"
+ },
+ "_lni": "2000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "85",
+ "_lni": "2000",
+ "_lnm": "Palmaris longus muscle",
+ "_isbs": "N",
+ "_LayerNumber": "20",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "637",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "557.jpg"
+ },
+ "_lni": "1900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "84",
+ "_lni": "1900",
+ "_lnm": "Flexor carpi radialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "19",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "636",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "556.jpg"
+ },
+ "_lni": "1800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "83",
+ "_lni": "1800",
+ "_lnm": "Pronator teres muscle",
+ "_isbs": "N",
+ "_LayerNumber": "18",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "635",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "555.jpg"
+ },
+ "_lni": "1700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "82",
+ "_lni": "1700",
+ "_lnm": "Superficial radial nerve",
+ "_isbs": "N",
+ "_LayerNumber": "17",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "634",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "554.jpg"
+ },
+ "_lni": "1600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "81",
+ "_lni": "1600",
+ "_lnm": "Radial artery",
+ "_isbs": "N",
+ "_LayerNumber": "16",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "633",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "553.jpg"
+ },
+ "_lni": "1500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "80",
+ "_lni": "1500",
+ "_lnm": "Radial vein",
+ "_isbs": "N",
+ "_LayerNumber": "15",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "632",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "552.jpg"
+ },
+ "_lni": "1400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "79",
+ "_lni": "1400",
+ "_lnm": "Palmar digital nerve",
+ "_isbs": "N",
+ "_LayerNumber": "14",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "631",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "551.jpg"
+ },
+ "_lni": "1300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "78",
+ "_lni": "1300",
+ "_lnm": "Palmar digital artery",
+ "_isbs": "N",
+ "_LayerNumber": "13",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "630",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "550.jpg"
+ },
+ "_lni": "1200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "77",
+ "_lni": "1200",
+ "_lnm": "Palmar digital vein",
+ "_isbs": "N",
+ "_LayerNumber": "12",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "629",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "549.jpg"
+ },
+ "_lni": "1100",
+ "_BodyRegionId": "6"
+ },
+ "_id": "76",
+ "_lni": "1100",
+ "_lnm": "Flexor retinaculum - superficial portion",
+ "_isbs": "N",
+ "_LayerNumber": "11",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "628",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "548.jpg"
+ },
+ "_lni": "1000",
+ "_BodyRegionId": "6"
+ },
+ "_id": "75",
+ "_lni": "1000",
+ "_lnm": "Palmaris brevis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "10",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "627",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "547.jpg"
+ },
+ "_lni": "900",
+ "_BodyRegionId": "6"
+ },
+ "_id": "74",
+ "_lni": "900",
+ "_lnm": "Brachioradialis muscle",
+ "_isbs": "N",
+ "_LayerNumber": "9",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "626",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "546.jpg"
+ },
+ "_lni": "800",
+ "_BodyRegionId": "6"
+ },
+ "_id": "73",
+ "_lni": "800",
+ "_lnm": "Biceps brachii muscle",
+ "_isbs": "N",
+ "_LayerNumber": "8",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "625",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "545.jpg"
+ },
+ "_lni": "700",
+ "_BodyRegionId": "6"
+ },
+ "_id": "72",
+ "_lni": "700",
+ "_lnm": "Olecranon bursa",
+ "_isbs": "N",
+ "_LayerNumber": "7",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "624",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "544.jpg"
+ },
+ "_lni": "600",
+ "_BodyRegionId": "6"
+ },
+ "_id": "71",
+ "_lni": "600",
+ "_lnm": "Basilic vein",
+ "_isbs": "N",
+ "_LayerNumber": "6",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "623",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "543.jpg"
+ },
+ "_lni": "500",
+ "_BodyRegionId": "6"
+ },
+ "_id": "70",
+ "_lni": "500",
+ "_lnm": "Deep layer of superficial fascia and fat",
+ "_isbs": "N",
+ "_LayerNumber": "5",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "622",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "542.jpg"
+ },
+ "_lni": "400",
+ "_BodyRegionId": "6"
+ },
+ "_id": "69",
+ "_lni": "400",
+ "_lnm": "Cutaneous nerves",
+ "_isbs": "N",
+ "_LayerNumber": "4",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "621",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "541.jpg"
+ },
+ "_lni": "300",
+ "_BodyRegionId": "6"
+ },
+ "_id": "68",
+ "_lni": "300",
+ "_lnm": "Superficial veins",
+ "_isbs": "N",
+ "_LayerNumber": "3",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": {
+ "Image": {
+ "_isoId": "620",
+ "_SkintTone": "-",
+ "_Zoom": "100",
+ "_ImageName": "540.jpg"
+ },
+ "_lni": "200",
+ "_BodyRegionId": "6"
+ },
+ "_id": "67",
+ "_lni": "200",
+ "_lnm": "Subcutaneous fat",
+ "_isbs": "N",
+ "_LayerNumber": "2",
+ "_HaveSkinTone": "N"
+ }, {
+ "BodyRegion": [{
+ "Image": {
+ "_isoId": "617",
+ "_SkintTone": "W",
+ "_Zoom": "100",
+ "_ImageName": "539.jpg"
+ },
+ "_lni": "101",
+ "_BodyRegionId": "6"
+ }, {
+ "Image": {
+ "_isoId": "614",
+ "_SkintTone": "B",
+ "_Zoom": "100",
+ "_ImageName": "536.jpg"
+ },
+ "_lni": "105",
+ "_BodyRegionId": "6"
+ }, {
+ "Image": {
+ "_isoId": "613",
+ "_SkintTone": "A",
+ "_Zoom": "100",
+ "_ImageName": "533.jpg"
+ },
+ "_lni": "109",
+ "_BodyRegionId": "6"
+ }, {
+ "Image": {
+ "_isoId": "619",
+ "_SkintTone": "L",
+ "_Zoom": "100",
+ "_ImageName": "538.jpg"
+ },
+ "_lni": "113",
+ "_BodyRegionId": "6"
+ }],
+ "_id": "66",
+ "_lni": "100",
+ "_lnm": "Skin",
+ "_isbs": "N",
+ "_LayerNumber": "1",
+ "_HaveSkinTone": "Y"
+ }],
+ "_id": "LayerList"
+ }
}
\ No newline at end of file