alicezetion 1.6.0 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- package/.cache/replit/__replit_disk_meta.json +1 -1
- package/.cache/replit/nix/env.json +1 -1
- package/index.js +555 -493
- package/leiamnash/addExternalModule.js +19 -15
- package/leiamnash/addUserToGroup.js +113 -77
- package/leiamnash/changeAdminStatus.js +79 -47
- package/leiamnash/changeArchivedStatus.js +55 -41
- package/leiamnash/changeBio.js +77 -64
- package/leiamnash/changeBlockedStatus.js +47 -36
- package/leiamnash/changeGroupImage.js +129 -105
- package/leiamnash/changeNickname.js +59 -43
- package/leiamnash/changeThreadColor.js +71 -61
- package/leiamnash/changeThreadEmoji.js +55 -41
- package/leiamnash/chat.js +459 -324
- package/leiamnash/createNewGroup.js +86 -70
- package/leiamnash/createPoll.js +71 -59
- package/leiamnash/deleteMessage.js +56 -44
- package/leiamnash/deleteThread.js +56 -42
- package/leiamnash/forwardAttachment.js +60 -47
- package/leiamnash/getCurrentUserID.js +7 -7
- package/leiamnash/getEmojiUrl.js +29 -27
- package/leiamnash/getFriendsList.js +84 -73
- package/leiamnash/getThreadHistory.js +645 -537
- package/leiamnash/getThreadHistoryDeprecated.js +93 -71
- package/leiamnash/getThreadInfo.js +206 -171
- package/leiamnash/getThreadInfoDeprecated.js +80 -56
- package/leiamnash/getThreadList.js +238 -213
- package/leiamnash/getThreadListDeprecated.js +75 -46
- package/leiamnash/getThreadPictures.js +79 -59
- package/leiamnash/getUserID.js +66 -61
- package/leiamnash/getUserInfo.js +72 -66
- package/leiamnash/handleFriendRequest.js +61 -46
- package/leiamnash/handleMessageRequest.js +65 -47
- package/leiamnash/httpGet.js +52 -47
- package/leiamnash/httpPost.js +52 -47
- package/leiamnash/listenMqtt.js +789 -685
- package/leiamnash/logout.js +75 -68
- package/leiamnash/markAsDelivered.js +58 -47
- package/leiamnash/markAsRead.js +80 -70
- package/leiamnash/markAsReadAll.js +49 -39
- package/leiamnash/markAsSeen.js +59 -48
- package/leiamnash/muteThread.js +52 -45
- package/leiamnash/removeUserFromGroup.js +79 -45
- package/leiamnash/resolvePhotoUrl.js +45 -36
- package/leiamnash/searchForThread.js +53 -42
- package/leiamnash/sendTypingIndicator.js +103 -70
- package/leiamnash/setMessageReaction.js +117 -103
- package/leiamnash/setPostReaction.js +76 -63
- package/leiamnash/setTitle.js +86 -70
- package/leiamnash/threadColors.js +57 -41
- package/leiamnash/unfriend.js +52 -42
- package/leiamnash/unsendMessage.js +49 -39
- package/package.json +71 -73
- package/utils.js +1356 -1198
- package/leiamnash/forwardMessage.js +0 -0
- package/leiamnash/listen.js +0 -553
- package/leiamnash/listenMqtt-Test.js +0 -687
@@ -1,103 +1,117 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
var utils = require("../utils");
|
4
|
-
var log = require("npmlog");
|
5
|
-
|
6
|
-
module.exports = function
|
7
|
-
return function setMessageReaction(reaction, messageID, callback, forceCustomReaction) {
|
8
|
-
var resolveFunc = function
|
9
|
-
var rejectFunc = function
|
10
|
-
var returnPromise = new Promise(function (resolve, reject) {
|
11
|
-
resolveFunc = resolve;
|
12
|
-
rejectFunc = reject;
|
13
|
-
});
|
14
|
-
|
15
|
-
if (!callback) {
|
16
|
-
callback = function (err,
|
17
|
-
if (err)
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
case "\uD83D\
|
26
|
-
case "\uD83D\
|
27
|
-
case "\uD83D\
|
28
|
-
case "\uD83D\
|
29
|
-
case "\uD83D\
|
30
|
-
case "\
|
31
|
-
case "\uD83D\
|
32
|
-
case "":
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
};
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var utils = require("../utils");
|
4
|
+
var log = require("npmlog");
|
5
|
+
|
6
|
+
module.exports = function(defaultFuncs, api, ctx) {
|
7
|
+
return function setMessageReaction(reaction, messageID, callback, forceCustomReaction) {
|
8
|
+
var resolveFunc = function(){};
|
9
|
+
var rejectFunc = function(){};
|
10
|
+
var returnPromise = new Promise(function (resolve, reject) {
|
11
|
+
resolveFunc = resolve;
|
12
|
+
rejectFunc = reject;
|
13
|
+
});
|
14
|
+
|
15
|
+
if (!callback) {
|
16
|
+
callback = function (err, friendList) {
|
17
|
+
if (err) {
|
18
|
+
return rejectFunc(err);
|
19
|
+
}
|
20
|
+
resolveFunc(friendList);
|
21
|
+
};
|
22
|
+
}
|
23
|
+
|
24
|
+
switch (reaction) {
|
25
|
+
case "\uD83D\uDE0D": //:heart_eyes:
|
26
|
+
case "\uD83D\uDE06": //:laughing:
|
27
|
+
case "\uD83D\uDE2E": //:open_mouth:
|
28
|
+
case "\uD83D\uDE22": //:cry:
|
29
|
+
case "\uD83D\uDE20": //:angry:
|
30
|
+
case "\uD83D\uDC4D": //:thumbsup:
|
31
|
+
case "\uD83D\uDC4E": //:thumbsdown:
|
32
|
+
case "\u2764": //:heart:
|
33
|
+
case "\uD83D\uDC97": //:glowingheart:
|
34
|
+
case "":
|
35
|
+
//valid
|
36
|
+
break;
|
37
|
+
case ":heart_eyes:":
|
38
|
+
case ":love:":
|
39
|
+
reaction = "\uD83D\uDE0D";
|
40
|
+
break;
|
41
|
+
case ":laughing:":
|
42
|
+
case ":haha:":
|
43
|
+
reaction = "\uD83D\uDE06";
|
44
|
+
break;
|
45
|
+
case ":open_mouth:":
|
46
|
+
case ":wow:":
|
47
|
+
reaction = "\uD83D\uDE2E";
|
48
|
+
break;
|
49
|
+
case ":cry:":
|
50
|
+
case ":sad:":
|
51
|
+
reaction = "\uD83D\uDE22";
|
52
|
+
break;
|
53
|
+
case ":angry:":
|
54
|
+
reaction = "\uD83D\uDE20";
|
55
|
+
break;
|
56
|
+
case ":thumbsup:":
|
57
|
+
case ":like:":
|
58
|
+
reaction = "\uD83D\uDC4D";
|
59
|
+
break;
|
60
|
+
case ":thumbsdown:":
|
61
|
+
case ":dislike:":
|
62
|
+
reaction = "\uD83D\uDC4E";
|
63
|
+
break;
|
64
|
+
case ":heart:":
|
65
|
+
reaction = "\u2764";
|
66
|
+
break;
|
67
|
+
case ":glowingheart:":
|
68
|
+
reaction = "\uD83D\uDC97";
|
69
|
+
break;
|
70
|
+
default:
|
71
|
+
if (forceCustomReaction) {
|
72
|
+
break;
|
73
|
+
}
|
74
|
+
return callback({ error: "Reaction is not a valid emoji." });
|
75
|
+
}
|
76
|
+
|
77
|
+
var variables = {
|
78
|
+
data: {
|
79
|
+
client_mutation_id: ctx.clientMutationId++,
|
80
|
+
actor_id: ctx.userID,
|
81
|
+
action: reaction == "" ? "REMOVE_REACTION" : "ADD_REACTION",
|
82
|
+
message_id: messageID,
|
83
|
+
reaction: reaction
|
84
|
+
}
|
85
|
+
};
|
86
|
+
|
87
|
+
var qs = {
|
88
|
+
doc_id: "1491398900900362",
|
89
|
+
variables: JSON.stringify(variables),
|
90
|
+
dpr: 1
|
91
|
+
};
|
92
|
+
|
93
|
+
defaultFuncs
|
94
|
+
.postFormData(
|
95
|
+
"https://www.facebook.com/webgraphql/mutation/",
|
96
|
+
ctx.jar,
|
97
|
+
{},
|
98
|
+
qs
|
99
|
+
)
|
100
|
+
.then(utils.parseAndCheckLogin(ctx.jar, defaultFuncs))
|
101
|
+
.then(function(resData) {
|
102
|
+
if (!resData) {
|
103
|
+
throw { error: "setReaction returned empty object." };
|
104
|
+
}
|
105
|
+
if (resData.error) {
|
106
|
+
throw resData;
|
107
|
+
}
|
108
|
+
callback(null);
|
109
|
+
})
|
110
|
+
.catch(function(err) {
|
111
|
+
log.error("setReaction", err);
|
112
|
+
return callback(err);
|
113
|
+
});
|
114
|
+
|
115
|
+
return returnPromise;
|
116
|
+
};
|
117
|
+
};
|
@@ -1,63 +1,76 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
var utils = require("../utils");
|
4
|
-
var log = require("npmlog");
|
5
|
-
|
6
|
-
module.exports = function
|
7
|
-
return function
|
8
|
-
var resolveFunc = function
|
9
|
-
var rejectFunc = function
|
10
|
-
var returnPromise = new Promise(function (resolve, reject) {
|
11
|
-
resolveFunc = resolve;
|
12
|
-
rejectFunc = reject;
|
13
|
-
});
|
14
|
-
|
15
|
-
if (!callback) {
|
16
|
-
callback = function (err,
|
17
|
-
if (err)
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var utils = require("../utils");
|
4
|
+
var log = require("npmlog");
|
5
|
+
|
6
|
+
module.exports = function(defaultFuncs, api, ctx) {
|
7
|
+
return function unsendMessage(postID, type, callback) {
|
8
|
+
var resolveFunc = function(){};
|
9
|
+
var rejectFunc = function(){};
|
10
|
+
var returnPromise = new Promise(function (resolve, reject) {
|
11
|
+
resolveFunc = resolve;
|
12
|
+
rejectFunc = reject;
|
13
|
+
});
|
14
|
+
|
15
|
+
if (!callback) {
|
16
|
+
callback = function (err, friendList) {
|
17
|
+
if (err) {
|
18
|
+
return rejectFunc(err);
|
19
|
+
}
|
20
|
+
resolveFunc(friendList);
|
21
|
+
};
|
22
|
+
}
|
23
|
+
|
24
|
+
var map = {
|
25
|
+
like: 1,
|
26
|
+
heart: 2,
|
27
|
+
wow: 3,
|
28
|
+
haha: 4,
|
29
|
+
sad: 7,
|
30
|
+
angry: 8
|
31
|
+
};
|
32
|
+
if (typeof type != "number") {
|
33
|
+
type = map[type.toLocaleLowerCase()];
|
34
|
+
if (!type) {
|
35
|
+
type = 1;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
var form = {
|
39
|
+
av: ctx.userID,
|
40
|
+
fb_api_caller_class: "RelayModern",
|
41
|
+
fb_api_req_friendly_name: "UFI2FeedbackReactMutation",
|
42
|
+
//This doc_id is valid as of January 17th, 2020
|
43
|
+
doc_id: "2580813318646067",
|
44
|
+
variables: JSON.stringify({
|
45
|
+
input: {
|
46
|
+
client_mutation_id: "7",
|
47
|
+
actor_id: ctx.userID,
|
48
|
+
feedback_reaction: type,
|
49
|
+
|
50
|
+
},
|
51
|
+
useDefaultActor: true
|
52
|
+
})
|
53
|
+
};
|
54
|
+
|
55
|
+
defaultFuncs
|
56
|
+
.post(
|
57
|
+
"https://www.facebook.com/api/graphql/",
|
58
|
+
ctx.jar,
|
59
|
+
form
|
60
|
+
)
|
61
|
+
.then(utils.parseAndCheckLogin(ctx, defaultFuncs))
|
62
|
+
.then(function(resData) {
|
63
|
+
if (resData.error) {
|
64
|
+
throw resData;
|
65
|
+
}
|
66
|
+
|
67
|
+
return callback();
|
68
|
+
})
|
69
|
+
.catch(function(err) {
|
70
|
+
log.error("setPostReaction", err);
|
71
|
+
return callback(err);
|
72
|
+
});
|
73
|
+
|
74
|
+
return returnPromise;
|
75
|
+
};
|
76
|
+
};
|
package/leiamnash/setTitle.js
CHANGED
@@ -1,70 +1,86 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
var utils = require("../utils");
|
4
|
-
var log = require("npmlog");
|
5
|
-
|
6
|
-
module.exports = function
|
7
|
-
return function setTitle(newTitle, threadID, callback) {
|
8
|
-
if (
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
}
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
.
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
};
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var utils = require("../utils");
|
4
|
+
var log = require("npmlog");
|
5
|
+
|
6
|
+
module.exports = function(defaultFuncs, api, ctx) {
|
7
|
+
return function setTitle(newTitle, threadID, callback) {
|
8
|
+
if (
|
9
|
+
!callback &&
|
10
|
+
(utils.getType(threadID) === "Function" ||
|
11
|
+
utils.getType(threadID) === "AsyncFunction")
|
12
|
+
) {
|
13
|
+
throw { error: "please pass a threadID as a second argument." };
|
14
|
+
}
|
15
|
+
|
16
|
+
var resolveFunc = function(){};
|
17
|
+
var rejectFunc = function(){};
|
18
|
+
var returnPromise = new Promise(function (resolve, reject) {
|
19
|
+
resolveFunc = resolve;
|
20
|
+
rejectFunc = reject;
|
21
|
+
});
|
22
|
+
|
23
|
+
if (!callback) {
|
24
|
+
callback = function (err, friendList) {
|
25
|
+
if (err) {
|
26
|
+
return rejectFunc(err);
|
27
|
+
}
|
28
|
+
resolveFunc(friendList);
|
29
|
+
};
|
30
|
+
}
|
31
|
+
|
32
|
+
var messageAndOTID = utils.generateOfflineThreadingID();
|
33
|
+
var form = {
|
34
|
+
client: "mercury",
|
35
|
+
action_type: "ma-type:log-message",
|
36
|
+
author: "fbid:" + ctx.userID,
|
37
|
+
author_email: "",
|
38
|
+
coordinates: "",
|
39
|
+
timestamp: Date.now(),
|
40
|
+
timestamp_absolute: "Today",
|
41
|
+
timestamp_relative: utils.generateTimestampRelative(),
|
42
|
+
timestamp_time_passed: "0",
|
43
|
+
is_unread: false,
|
44
|
+
is_cleared: false,
|
45
|
+
is_forward: false,
|
46
|
+
is_filtered_content: false,
|
47
|
+
is_spoof_warning: false,
|
48
|
+
source: "source:chat:web",
|
49
|
+
"source_tags[0]": "source:chat",
|
50
|
+
status: "0",
|
51
|
+
offline_threading_id: messageAndOTID,
|
52
|
+
message_id: messageAndOTID,
|
53
|
+
threading_id: utils.generateThreadingID(ctx.clientID),
|
54
|
+
manual_retry_cnt: "0",
|
55
|
+
thread_fbid: threadID,
|
56
|
+
thread_name: newTitle,
|
57
|
+
thread_id: threadID,
|
58
|
+
log_message_type: "log:thread-name"
|
59
|
+
};
|
60
|
+
|
61
|
+
defaultFuncs
|
62
|
+
.post("https://www.facebook.com/messaging/set_thread_name/", ctx.jar, form)
|
63
|
+
.then(utils.parseAndCheckLogin(ctx, defaultFuncs))
|
64
|
+
.then(function(resData) {
|
65
|
+
if (resData.error && resData.error === 1545012) {
|
66
|
+
throw { error: "Cannot change chat title: Not member of chat." };
|
67
|
+
}
|
68
|
+
|
69
|
+
if (resData.error && resData.error === 1545003) {
|
70
|
+
throw { error: "Cannot set title of single-user chat." };
|
71
|
+
}
|
72
|
+
|
73
|
+
if (resData.error) {
|
74
|
+
throw resData;
|
75
|
+
}
|
76
|
+
|
77
|
+
return callback();
|
78
|
+
})
|
79
|
+
.catch(function(err) {
|
80
|
+
log.error("setTitle", err);
|
81
|
+
return callback(err);
|
82
|
+
});
|
83
|
+
|
84
|
+
return returnPromise;
|
85
|
+
};
|
86
|
+
};
|
@@ -1,41 +1,57 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
module.exports = function
|
4
|
-
// Currently the only colors that can be passed to api.changeThreadColor(); may change if Facebook adds more
|
5
|
-
return {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
module.exports = function(_defaultFuncs, _api, _ctx) {
|
4
|
+
// Currently the only colors that can be passed to api.changeThreadColor(); may change if Facebook adds more
|
5
|
+
return {
|
6
|
+
//Old hex colors.
|
7
|
+
////MessengerBlue: null,
|
8
|
+
////Viking: "#44bec7",
|
9
|
+
////GoldenPoppy: "#ffc300",
|
10
|
+
////RadicalRed: "#fa3c4c",
|
11
|
+
////Shocking: "#d696bb",
|
12
|
+
////PictonBlue: "#6699cc",
|
13
|
+
////FreeSpeechGreen: "#13cf13",
|
14
|
+
////Pumpkin: "#ff7e29",
|
15
|
+
////LightCoral: "#e68585",
|
16
|
+
////MediumSlateBlue: "#7646ff",
|
17
|
+
////DeepSkyBlue: "#20cef5",
|
18
|
+
////Fern: "#67b868",
|
19
|
+
////Cameo: "#d4a88c",
|
20
|
+
////BrilliantRose: "#ff5ca1",
|
21
|
+
////BilobaFlower: "#a695c7"
|
22
|
+
|
23
|
+
//#region This part is for backward compatibly
|
24
|
+
//trying to match the color one-by-one. kill me plz
|
25
|
+
MessengerBlue: "196241301102133", //DefaultBlue
|
26
|
+
Viking: "1928399724138152", //TealBlue
|
27
|
+
GoldenPoppy: "174636906462322", //Yellow
|
28
|
+
RadicalRed: "2129984390566328", //Red
|
29
|
+
Shocking: "2058653964378557", //LavenderPurple
|
30
|
+
FreeSpeechGreen: "2136751179887052", //Green
|
31
|
+
Pumpkin: "175615189761153", //Orange
|
32
|
+
LightCoral: "980963458735625", //CoralPink
|
33
|
+
MediumSlateBlue: "234137870477637", //BrightPurple
|
34
|
+
DeepSkyBlue: "2442142322678320", //AquaBlue
|
35
|
+
BrilliantRose: "169463077092846", //HotPink
|
36
|
+
//i've tried my best, everything else can't be mapped. (or is it?) -UIRI 2020
|
37
|
+
//#endregion
|
38
|
+
|
39
|
+
DefaultBlue: "196241301102133",
|
40
|
+
HotPink: "169463077092846",
|
41
|
+
AquaBlue: "2442142322678320",
|
42
|
+
BrightPurple: "234137870477637",
|
43
|
+
CoralPink: "980963458735625",
|
44
|
+
Orange: "175615189761153",
|
45
|
+
Green: "2136751179887052",
|
46
|
+
LavenderPurple: "2058653964378557",
|
47
|
+
Red: "2129984390566328",
|
48
|
+
Yellow: "174636906462322",
|
49
|
+
TealBlue: "1928399724138152",
|
50
|
+
Aqua: "417639218648241",
|
51
|
+
Mango: "930060997172551",
|
52
|
+
Berry: "164535220883264",
|
53
|
+
Citrus: "370940413392601",
|
54
|
+
Candy: "205488546921017",
|
55
|
+
//StarWars: "809305022860427" Removed.
|
56
|
+
};
|
57
|
+
};
|