SharePoint data does not display in Kendo Scheduler












0














Data is retrieved using the REST call in my transport, but the event does not display in Kendo Scheduler. I am interested in only displaying data at this point, the update is not working



    $("#scheduler").kendoScheduler({
date: new Date("2018/11/11"),
startTime: new Date("2018/11/11 07:00 AM"),
height: 600,
views: [
"day",
"workWeek",
"week",
{ type: "month", selected: true },
"agenda",
{ type: "timeline", eventHeight: 50}
],
add: function (e) {
},
change: function (e) {
},
error: function (e) {

//TODO: handle the errors

alert(e.errorThrown);

},
dataSource: {
transport: {
read: {
url: "https://SharePoint URL/apps/crp/_api/web/lists/getbytitle('list name')/items?$expand=Author&$select=Author/Id,Author/Title,Title,Start1,OData__x0045_nd1,RecurrenceRule,RecurrenceParentID,CategoryDescription,IsAllDay&$filter=Start1 ge datetime'2018-11-01T00:00:00Z'",
beforeSend: function (xhr) {
xhr.setRequestHeader("Accept", "application/json; odata=verbose");
}
},
add: function (e) {
},
error: function (e) {
//TODO: handle the errors
alert(e.errorThrown);
},
update:
{
url: function (data) {
alert('updating');
return "https://SharePoint URL/_api/web/lists/getbytitle(listname)/items" + "(" + data.ID + ")";
},
type: "POST",
dataType: "json",
contentType: "application/json;odata=verbose",
headers: {
"accept": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val(),
"If-Match": "*",
"X-HTTP-Method": "MERGE",
},
},
parameterMap: function (data, type) {
if (data.models) {
alert(kendo.stringify(data.models));
return {
models: kendo.stringify(data.models)
}
}
}
},
schema: {
model: {
id: "ID",
fields: {
ID: { from: "ID", type: "number" },
title: { from: "Title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "Start1" },
end: { type: "date", from: "OData__x0045_nd1" },
recurrenceRule: { from: "RecurrenceRule" },
recurrenceId: { from: "RecurrenceParentID", type: "number" },
description: { from: "CategoryDescription" },
isAllDay: { type: "boolean", from: "IsAllDay" } //,
}
}
}
}
});


Reviewing the JSON call, data is retrieved properly but does not display in the Scheduler. I tried capturing events in the datasource, that does not look like it is processed, so the datasource does not seem to populate (change or add events).



Data returned looks like this after JSON call:



"{"d":{"results":[{"__metadata":{"id":"Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","uri":"https://SharePoint url/_api/Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","etag":"\"4\"","type":"SP.Data.6001C5110ListItem"},"Author":{"__metadata":{"id":"43c25e84-bf91-4d7d-951f-c480d9b2173f","type":"SP.Data.UserInfoItem"},"Id":5,"Title":"SP USer"},"Title":"6001-C5-110","Start1":"2018-11-14T15:00:00Z","OData__x0045_nd1":"2018-11-14T17:00:00Z","RecurrenceRule":null,"RecurrenceParentID":null,"CategoryDescription":"My Description","IsAllDay":null}]}}"










share|improve this question


















  • 1




    You need to add response.d.results as data source, not the actual response
    – Sandun Isuru Niraj
    Nov 21 '18 at 3:38










  • Thanks for your response, not sure what you mean as I am following Kendo's guidelines
    – Gary Mc
    Nov 21 '18 at 11:22










  • Thanks again, what you said helped a lot, I added this to the scheme: data: function (data) { return data.d && data.d.results ? data.d.results : [data.d]; }, and it worked!
    – Gary Mc
    Nov 21 '18 at 11:29












  • Make sure to mark your answer as correct.
    – Sandun Isuru Niraj
    Nov 23 '18 at 1:51
















0














Data is retrieved using the REST call in my transport, but the event does not display in Kendo Scheduler. I am interested in only displaying data at this point, the update is not working



    $("#scheduler").kendoScheduler({
date: new Date("2018/11/11"),
startTime: new Date("2018/11/11 07:00 AM"),
height: 600,
views: [
"day",
"workWeek",
"week",
{ type: "month", selected: true },
"agenda",
{ type: "timeline", eventHeight: 50}
],
add: function (e) {
},
change: function (e) {
},
error: function (e) {

//TODO: handle the errors

alert(e.errorThrown);

},
dataSource: {
transport: {
read: {
url: "https://SharePoint URL/apps/crp/_api/web/lists/getbytitle('list name')/items?$expand=Author&$select=Author/Id,Author/Title,Title,Start1,OData__x0045_nd1,RecurrenceRule,RecurrenceParentID,CategoryDescription,IsAllDay&$filter=Start1 ge datetime'2018-11-01T00:00:00Z'",
beforeSend: function (xhr) {
xhr.setRequestHeader("Accept", "application/json; odata=verbose");
}
},
add: function (e) {
},
error: function (e) {
//TODO: handle the errors
alert(e.errorThrown);
},
update:
{
url: function (data) {
alert('updating');
return "https://SharePoint URL/_api/web/lists/getbytitle(listname)/items" + "(" + data.ID + ")";
},
type: "POST",
dataType: "json",
contentType: "application/json;odata=verbose",
headers: {
"accept": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val(),
"If-Match": "*",
"X-HTTP-Method": "MERGE",
},
},
parameterMap: function (data, type) {
if (data.models) {
alert(kendo.stringify(data.models));
return {
models: kendo.stringify(data.models)
}
}
}
},
schema: {
model: {
id: "ID",
fields: {
ID: { from: "ID", type: "number" },
title: { from: "Title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "Start1" },
end: { type: "date", from: "OData__x0045_nd1" },
recurrenceRule: { from: "RecurrenceRule" },
recurrenceId: { from: "RecurrenceParentID", type: "number" },
description: { from: "CategoryDescription" },
isAllDay: { type: "boolean", from: "IsAllDay" } //,
}
}
}
}
});


Reviewing the JSON call, data is retrieved properly but does not display in the Scheduler. I tried capturing events in the datasource, that does not look like it is processed, so the datasource does not seem to populate (change or add events).



Data returned looks like this after JSON call:



"{"d":{"results":[{"__metadata":{"id":"Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","uri":"https://SharePoint url/_api/Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","etag":"\"4\"","type":"SP.Data.6001C5110ListItem"},"Author":{"__metadata":{"id":"43c25e84-bf91-4d7d-951f-c480d9b2173f","type":"SP.Data.UserInfoItem"},"Id":5,"Title":"SP USer"},"Title":"6001-C5-110","Start1":"2018-11-14T15:00:00Z","OData__x0045_nd1":"2018-11-14T17:00:00Z","RecurrenceRule":null,"RecurrenceParentID":null,"CategoryDescription":"My Description","IsAllDay":null}]}}"










share|improve this question


















  • 1




    You need to add response.d.results as data source, not the actual response
    – Sandun Isuru Niraj
    Nov 21 '18 at 3:38










  • Thanks for your response, not sure what you mean as I am following Kendo's guidelines
    – Gary Mc
    Nov 21 '18 at 11:22










  • Thanks again, what you said helped a lot, I added this to the scheme: data: function (data) { return data.d && data.d.results ? data.d.results : [data.d]; }, and it worked!
    – Gary Mc
    Nov 21 '18 at 11:29












  • Make sure to mark your answer as correct.
    – Sandun Isuru Niraj
    Nov 23 '18 at 1:51














0












0








0







Data is retrieved using the REST call in my transport, but the event does not display in Kendo Scheduler. I am interested in only displaying data at this point, the update is not working



    $("#scheduler").kendoScheduler({
date: new Date("2018/11/11"),
startTime: new Date("2018/11/11 07:00 AM"),
height: 600,
views: [
"day",
"workWeek",
"week",
{ type: "month", selected: true },
"agenda",
{ type: "timeline", eventHeight: 50}
],
add: function (e) {
},
change: function (e) {
},
error: function (e) {

//TODO: handle the errors

alert(e.errorThrown);

},
dataSource: {
transport: {
read: {
url: "https://SharePoint URL/apps/crp/_api/web/lists/getbytitle('list name')/items?$expand=Author&$select=Author/Id,Author/Title,Title,Start1,OData__x0045_nd1,RecurrenceRule,RecurrenceParentID,CategoryDescription,IsAllDay&$filter=Start1 ge datetime'2018-11-01T00:00:00Z'",
beforeSend: function (xhr) {
xhr.setRequestHeader("Accept", "application/json; odata=verbose");
}
},
add: function (e) {
},
error: function (e) {
//TODO: handle the errors
alert(e.errorThrown);
},
update:
{
url: function (data) {
alert('updating');
return "https://SharePoint URL/_api/web/lists/getbytitle(listname)/items" + "(" + data.ID + ")";
},
type: "POST",
dataType: "json",
contentType: "application/json;odata=verbose",
headers: {
"accept": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val(),
"If-Match": "*",
"X-HTTP-Method": "MERGE",
},
},
parameterMap: function (data, type) {
if (data.models) {
alert(kendo.stringify(data.models));
return {
models: kendo.stringify(data.models)
}
}
}
},
schema: {
model: {
id: "ID",
fields: {
ID: { from: "ID", type: "number" },
title: { from: "Title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "Start1" },
end: { type: "date", from: "OData__x0045_nd1" },
recurrenceRule: { from: "RecurrenceRule" },
recurrenceId: { from: "RecurrenceParentID", type: "number" },
description: { from: "CategoryDescription" },
isAllDay: { type: "boolean", from: "IsAllDay" } //,
}
}
}
}
});


Reviewing the JSON call, data is retrieved properly but does not display in the Scheduler. I tried capturing events in the datasource, that does not look like it is processed, so the datasource does not seem to populate (change or add events).



Data returned looks like this after JSON call:



"{"d":{"results":[{"__metadata":{"id":"Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","uri":"https://SharePoint url/_api/Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","etag":"\"4\"","type":"SP.Data.6001C5110ListItem"},"Author":{"__metadata":{"id":"43c25e84-bf91-4d7d-951f-c480d9b2173f","type":"SP.Data.UserInfoItem"},"Id":5,"Title":"SP USer"},"Title":"6001-C5-110","Start1":"2018-11-14T15:00:00Z","OData__x0045_nd1":"2018-11-14T17:00:00Z","RecurrenceRule":null,"RecurrenceParentID":null,"CategoryDescription":"My Description","IsAllDay":null}]}}"










share|improve this question













Data is retrieved using the REST call in my transport, but the event does not display in Kendo Scheduler. I am interested in only displaying data at this point, the update is not working



    $("#scheduler").kendoScheduler({
date: new Date("2018/11/11"),
startTime: new Date("2018/11/11 07:00 AM"),
height: 600,
views: [
"day",
"workWeek",
"week",
{ type: "month", selected: true },
"agenda",
{ type: "timeline", eventHeight: 50}
],
add: function (e) {
},
change: function (e) {
},
error: function (e) {

//TODO: handle the errors

alert(e.errorThrown);

},
dataSource: {
transport: {
read: {
url: "https://SharePoint URL/apps/crp/_api/web/lists/getbytitle('list name')/items?$expand=Author&$select=Author/Id,Author/Title,Title,Start1,OData__x0045_nd1,RecurrenceRule,RecurrenceParentID,CategoryDescription,IsAllDay&$filter=Start1 ge datetime'2018-11-01T00:00:00Z'",
beforeSend: function (xhr) {
xhr.setRequestHeader("Accept", "application/json; odata=verbose");
}
},
add: function (e) {
},
error: function (e) {
//TODO: handle the errors
alert(e.errorThrown);
},
update:
{
url: function (data) {
alert('updating');
return "https://SharePoint URL/_api/web/lists/getbytitle(listname)/items" + "(" + data.ID + ")";
},
type: "POST",
dataType: "json",
contentType: "application/json;odata=verbose",
headers: {
"accept": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val(),
"If-Match": "*",
"X-HTTP-Method": "MERGE",
},
},
parameterMap: function (data, type) {
if (data.models) {
alert(kendo.stringify(data.models));
return {
models: kendo.stringify(data.models)
}
}
}
},
schema: {
model: {
id: "ID",
fields: {
ID: { from: "ID", type: "number" },
title: { from: "Title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "Start1" },
end: { type: "date", from: "OData__x0045_nd1" },
recurrenceRule: { from: "RecurrenceRule" },
recurrenceId: { from: "RecurrenceParentID", type: "number" },
description: { from: "CategoryDescription" },
isAllDay: { type: "boolean", from: "IsAllDay" } //,
}
}
}
}
});


Reviewing the JSON call, data is retrieved properly but does not display in the Scheduler. I tried capturing events in the datasource, that does not look like it is processed, so the datasource does not seem to populate (change or add events).



Data returned looks like this after JSON call:



"{"d":{"results":[{"__metadata":{"id":"Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","uri":"https://SharePoint url/_api/Web/Lists(guid'2abecf66-35ed-4c67-b1f1-8b7255ebf0e2')/Items(1)","etag":"\"4\"","type":"SP.Data.6001C5110ListItem"},"Author":{"__metadata":{"id":"43c25e84-bf91-4d7d-951f-c480d9b2173f","type":"SP.Data.UserInfoItem"},"Id":5,"Title":"SP USer"},"Title":"6001-C5-110","Start1":"2018-11-14T15:00:00Z","OData__x0045_nd1":"2018-11-14T17:00:00Z","RecurrenceRule":null,"RecurrenceParentID":null,"CategoryDescription":"My Description","IsAllDay":null}]}}"







json rest sharepoint kendo-scheduler






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 16:12









Gary McGary Mc

4618




4618








  • 1




    You need to add response.d.results as data source, not the actual response
    – Sandun Isuru Niraj
    Nov 21 '18 at 3:38










  • Thanks for your response, not sure what you mean as I am following Kendo's guidelines
    – Gary Mc
    Nov 21 '18 at 11:22










  • Thanks again, what you said helped a lot, I added this to the scheme: data: function (data) { return data.d && data.d.results ? data.d.results : [data.d]; }, and it worked!
    – Gary Mc
    Nov 21 '18 at 11:29












  • Make sure to mark your answer as correct.
    – Sandun Isuru Niraj
    Nov 23 '18 at 1:51














  • 1




    You need to add response.d.results as data source, not the actual response
    – Sandun Isuru Niraj
    Nov 21 '18 at 3:38










  • Thanks for your response, not sure what you mean as I am following Kendo's guidelines
    – Gary Mc
    Nov 21 '18 at 11:22










  • Thanks again, what you said helped a lot, I added this to the scheme: data: function (data) { return data.d && data.d.results ? data.d.results : [data.d]; }, and it worked!
    – Gary Mc
    Nov 21 '18 at 11:29












  • Make sure to mark your answer as correct.
    – Sandun Isuru Niraj
    Nov 23 '18 at 1:51








1




1




You need to add response.d.results as data source, not the actual response
– Sandun Isuru Niraj
Nov 21 '18 at 3:38




You need to add response.d.results as data source, not the actual response
– Sandun Isuru Niraj
Nov 21 '18 at 3:38












Thanks for your response, not sure what you mean as I am following Kendo's guidelines
– Gary Mc
Nov 21 '18 at 11:22




Thanks for your response, not sure what you mean as I am following Kendo's guidelines
– Gary Mc
Nov 21 '18 at 11:22












Thanks again, what you said helped a lot, I added this to the scheme: data: function (data) { return data.d && data.d.results ? data.d.results : [data.d]; }, and it worked!
– Gary Mc
Nov 21 '18 at 11:29






Thanks again, what you said helped a lot, I added this to the scheme: data: function (data) { return data.d && data.d.results ? data.d.results : [data.d]; }, and it worked!
– Gary Mc
Nov 21 '18 at 11:29














Make sure to mark your answer as correct.
– Sandun Isuru Niraj
Nov 23 '18 at 1:51




Make sure to mark your answer as correct.
– Sandun Isuru Niraj
Nov 23 '18 at 1:51












1 Answer
1






active

oldest

votes


















1














Added data: to the schema section of the datasource, thank you Sandun for pointing me in right direction, I defined the model for the scheduler without specifying the data.



        schema: {
data: function (data) {
return data.d && data.d.results ? data.d.results : [data.d];
},
model: {
id: "ID",
fields: {
ID: { from: "ID", type: "number" },
title: { from: "Title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "Start1" },
end: { type: "date", from: "OData__x0045_nd1" },
recurrenceRule: { from: "RecurrenceRule" },
recurrenceId: { from: "RecurrenceParentID", type: "number" },
description: { from: "CategoryDescription" },
isAllDay: { type: "boolean", from: "IsAllDay" } //,
// startTimeZone: "Etc/UTC",
// endTimeZone: "Etc/UTC"
// description: { from: "Description" }
}
}
}





share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397107%2fsharepoint-data-does-not-display-in-kendo-scheduler%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Added data: to the schema section of the datasource, thank you Sandun for pointing me in right direction, I defined the model for the scheduler without specifying the data.



            schema: {
    data: function (data) {
    return data.d && data.d.results ? data.d.results : [data.d];
    },
    model: {
    id: "ID",
    fields: {
    ID: { from: "ID", type: "number" },
    title: { from: "Title", defaultValue: "No title", validation: { required: true } },
    start: { type: "date", from: "Start1" },
    end: { type: "date", from: "OData__x0045_nd1" },
    recurrenceRule: { from: "RecurrenceRule" },
    recurrenceId: { from: "RecurrenceParentID", type: "number" },
    description: { from: "CategoryDescription" },
    isAllDay: { type: "boolean", from: "IsAllDay" } //,
    // startTimeZone: "Etc/UTC",
    // endTimeZone: "Etc/UTC"
    // description: { from: "Description" }
    }
    }
    }





    share|improve this answer




























      1














      Added data: to the schema section of the datasource, thank you Sandun for pointing me in right direction, I defined the model for the scheduler without specifying the data.



              schema: {
      data: function (data) {
      return data.d && data.d.results ? data.d.results : [data.d];
      },
      model: {
      id: "ID",
      fields: {
      ID: { from: "ID", type: "number" },
      title: { from: "Title", defaultValue: "No title", validation: { required: true } },
      start: { type: "date", from: "Start1" },
      end: { type: "date", from: "OData__x0045_nd1" },
      recurrenceRule: { from: "RecurrenceRule" },
      recurrenceId: { from: "RecurrenceParentID", type: "number" },
      description: { from: "CategoryDescription" },
      isAllDay: { type: "boolean", from: "IsAllDay" } //,
      // startTimeZone: "Etc/UTC",
      // endTimeZone: "Etc/UTC"
      // description: { from: "Description" }
      }
      }
      }





      share|improve this answer


























        1












        1








        1






        Added data: to the schema section of the datasource, thank you Sandun for pointing me in right direction, I defined the model for the scheduler without specifying the data.



                schema: {
        data: function (data) {
        return data.d && data.d.results ? data.d.results : [data.d];
        },
        model: {
        id: "ID",
        fields: {
        ID: { from: "ID", type: "number" },
        title: { from: "Title", defaultValue: "No title", validation: { required: true } },
        start: { type: "date", from: "Start1" },
        end: { type: "date", from: "OData__x0045_nd1" },
        recurrenceRule: { from: "RecurrenceRule" },
        recurrenceId: { from: "RecurrenceParentID", type: "number" },
        description: { from: "CategoryDescription" },
        isAllDay: { type: "boolean", from: "IsAllDay" } //,
        // startTimeZone: "Etc/UTC",
        // endTimeZone: "Etc/UTC"
        // description: { from: "Description" }
        }
        }
        }





        share|improve this answer














        Added data: to the schema section of the datasource, thank you Sandun for pointing me in right direction, I defined the model for the scheduler without specifying the data.



                schema: {
        data: function (data) {
        return data.d && data.d.results ? data.d.results : [data.d];
        },
        model: {
        id: "ID",
        fields: {
        ID: { from: "ID", type: "number" },
        title: { from: "Title", defaultValue: "No title", validation: { required: true } },
        start: { type: "date", from: "Start1" },
        end: { type: "date", from: "OData__x0045_nd1" },
        recurrenceRule: { from: "RecurrenceRule" },
        recurrenceId: { from: "RecurrenceParentID", type: "number" },
        description: { from: "CategoryDescription" },
        isAllDay: { type: "boolean", from: "IsAllDay" } //,
        // startTimeZone: "Etc/UTC",
        // endTimeZone: "Etc/UTC"
        // description: { from: "Description" }
        }
        }
        }






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 23 '18 at 13:03

























        answered Nov 21 '18 at 11:32









        Gary McGary Mc

        4618




        4618






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397107%2fsharepoint-data-does-not-display-in-kendo-scheduler%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]