5504 lines
405 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en"><script type="text/javascript">try {
(function injectPageScriptAPI(scriptName, shouldOverrideWebSocket, shouldOverrideWebRTC, isInjected) {
'use strict';
/**
* If script have been injected into a frame via contentWindow then we can simply take the copy of messageChannel left for us by parent document
* Otherwise creates new message channel that sends a message to the content-script to check if request should be allowed or not.
*/
var messageChannel = isInjected ? window[scriptName] : (function () {
// Save original postMessage and addEventListener functions to prevent webpage from tampering both.
var postMessage = window.postMessage;
var addEventListener = window.addEventListener;
// Current request ID (incremented every time we send a new message)
var currentRequestId = 0;
var requestsMap = {};
/**
* Handles messages sent from the content script back to the page script.
*
* @param event Event with necessary data
*/
var onMessageReceived = function (event) {
if (!event.data || !event.data.direction || event.data.direction !== "to-page-script@abu") {
return;
}
var requestData = requestsMap[event.data.requestId];
if (requestData) {
var wrapper = requestData.wrapper;
requestData.onResponseReceived(wrapper, event.data.block);
delete requestsMap[event.data.requestId];
}
};
/**
* @param url The URL to which wrapped object is willing to connect
* @param requestType Request type ( WEBSOCKET or WEBRTC)
* @param wrapper WebSocket wrapper instance
* @param onResponseReceived Called when response is received
*/
var sendMessage = function (url, requestType, wrapper, onResponseReceived) {
if (currentRequestId === 0) {
// Subscribe to response when this method is called for the first time
addEventListener.call(window, "message", onMessageReceived, false);
}
var requestId = ++currentRequestId;
requestsMap[requestId] = {
wrapper: wrapper,
onResponseReceived: onResponseReceived
};
var message = {
requestId: requestId,
direction: 'from-page-script@abu',
elementUrl: url,
documentUrl: document.URL,
requestType: requestType
};
// Send a message to the background page to check if the request should be blocked
postMessage.call(window, message, "*");
};
return {
sendMessage: sendMessage
};
})();
/*
* In some case Chrome won't run content scripts inside frames.
* So we have to intercept access to contentWindow/contentDocument and manually inject wrapper script into this context
*
* Based on: https://github.com/adblockplus/adblockpluschrome/commit/1aabfb3346dc0821c52dd9e97f7d61b8c99cd707
*/
var injectedToString = Function.prototype.toString.bind(injectPageScriptAPI);
var injectedFramesAdd;
var injectedFramesHas;
if (window.WeakSet instanceof Function) {
var injectedFrames = new WeakSet();
injectedFramesAdd = WeakSet.prototype.add.bind(injectedFrames);
injectedFramesHas = WeakSet.prototype.has.bind(injectedFrames);
} else {
var frames = [];
injectedFramesAdd = function (el) {
if (frames.indexOf(el) < 0) {
frames.push(el);
}
};
injectedFramesHas = function (el) {
return frames.indexOf(el) >= 0;
};
}
/**
* Injects wrapper's script into passed window
* @param contentWindow Frame's content window
*/
function injectPageScriptAPIInWindow(contentWindow) {
try {
if (contentWindow && !injectedFramesHas(contentWindow)) {
injectedFramesAdd(contentWindow);
contentWindow[scriptName] = messageChannel; // Left message channel for the injected script
var args = "'" + scriptName + "', " + shouldOverrideWebSocket + ", " + shouldOverrideWebRTC + ", true";
contentWindow.eval("(" + injectedToString() + ")(" + args + ");");
delete contentWindow[scriptName];
}
} catch (e) {
}
}
/**
* Overrides access to contentWindow/contentDocument for the passed HTML element's interface (iframe, frame, object)
* If the content of one of these objects is requested we will inject our wrapper script.
* @param iface HTML element's interface
*/
function overrideContentAccess(iface) {
var contentWindowDescriptor = Object.getOwnPropertyDescriptor(iface.prototype, "contentWindow");
var contentDocumentDescriptor = Object.getOwnPropertyDescriptor(iface.prototype, "contentDocument");
// Apparently in HTMLObjectElement.prototype.contentWindow does not exist
// in older versions of Chrome such as 42.
if (!contentWindowDescriptor) {
return;
}
var getContentWindow = Function.prototype.call.bind(contentWindowDescriptor.get);
var getContentDocument = Function.prototype.call.bind(contentDocumentDescriptor.get);
contentWindowDescriptor.get = function () {
var contentWindow = getContentWindow(this);
injectPageScriptAPIInWindow(contentWindow);
return contentWindow;
};
contentDocumentDescriptor.get = function () {
injectPageScriptAPIInWindow(getContentWindow(this));
return getContentDocument(this);
};
Object.defineProperty(iface.prototype, "contentWindow", contentWindowDescriptor);
Object.defineProperty(iface.prototype, "contentDocument", contentDocumentDescriptor);
}
var interfaces = [HTMLFrameElement, HTMLIFrameElement, HTMLObjectElement];
for (var i = 0; i < interfaces.length; i++) {
overrideContentAccess(interfaces[i]);
}
/**
* Defines properties in destination object
* @param src Source object
* @param dest Destination object
* @param properties Properties to copy
*/
var copyProperties = function (src, dest, properties) {
for (var i = 0; i < properties.length; i++) {
var prop = properties[i];
var descriptor = Object.getOwnPropertyDescriptor(src, prop);
// Passed property may be undefined
if (descriptor) {
Object.defineProperty(dest, prop, descriptor);
}
}
};
/**
* Check request by sending message to content script
* @param url URL to block
* @param type Request type
* @param callback Result callback
*/
var checkRequest = function (url, type, callback) {
messageChannel.sendMessage(url, type, this, function (wrapper, blockConnection) {
callback(blockConnection);
});
};
/**
* The function overrides window.WebSocket with our wrapper, that will check url with filters through messaging with content-script.
*
* IMPORTANT NOTE:
* This function is first loaded as a content script. The only purpose of it is to call
* the "toString" method and use resulting string as a text content for injected script.
*/
var overrideWebSocket = function () {
if (!(window.WebSocket instanceof Function)) {
return;
}
/**
* WebSocket wrapper implementation.
* https://github.com/AdguardTeam/AdguardBrowserExtension/issues/349
*
* Based on:
* https://github.com/adblockplus/adblockpluschrome/commit/457a336ee55a433217c3ffe5d363e5c6980f26f4
*/
/**
* As far as possible we must track everything we use that could be sabotaged by the website later in order to circumvent us.
*/
var RealWebSocket = WebSocket;
var closeWebSocket = Function.prototype.call.bind(RealWebSocket.prototype.close);
function WrappedWebSocket(url, protocols) {
// Throw correct exceptions if the constructor is used improperly.
if (!(this instanceof WrappedWebSocket)) {
return RealWebSocket();
}
if (arguments.length < 1) {
return new RealWebSocket();
}
var websocket = new RealWebSocket(url, protocols);
// This is the key point: checking if this WS should be blocked or not
// Don't forget that the type of 'websocket.url' is String, but 'url 'parameter might have another type.
checkRequest(websocket.url, 'WEBSOCKET', function (blocked) {
if (blocked) {
closeWebSocket(websocket);
}
});
return websocket;
}
// https://github.com/AdguardTeam/AdguardBrowserExtension/issues/488
WrappedWebSocket.prototype = RealWebSocket.prototype;
window.WebSocket = WrappedWebSocket.bind();
copyProperties(RealWebSocket, WebSocket, ["CONNECTING", "OPEN", "CLOSING", "CLOSED", "name", "prototype"]);
RealWebSocket.prototype.constructor = WebSocket;
};
/**
* The function overrides window.RTCPeerConnection with our wrapper, that will check ice servers URLs with filters through messaging with content-script.
*
* IMPORTANT NOTE:
* This function is first loaded as a content script. The only purpose of it is to call
* the "toString" method and use resulting string as a text content for injected script.
*/
var overrideWebRTC = function () {
if (!(window.RTCPeerConnection instanceof Function) &&
!(window.webkitRTCPeerConnection instanceof Function)) {
return;
}
/**
* RTCPeerConnection wrapper implementation.
* https://github.com/AdguardTeam/AdguardBrowserExtension/issues/588
*
* Based on:
* https://github.com/adblockplus/adblockpluschrome/commit/af0585137be19011eace1cf68bf61eed2e6db974
*
* Chromium webRequest API doesn't allow the blocking of WebRTC connections
* https://bugs.chromium.org/p/chromium/issues/detail?id=707683
*/
var RealRTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection;
var closeRTCPeerConnection = Function.prototype.call.bind(RealRTCPeerConnection.prototype.close);
var RealArray = Array;
var RealString = String;
var createObject = Object.create;
var defineProperty = Object.defineProperty;
/**
* Convert passed url to string
* @param url URL
* @returns {string}
*/
function urlToString(url) {
if (typeof url !== "undefined") {
return RealString(url);
}
}
/**
* Creates new immutable array from original with some transform function
* @param original
* @param transform
* @returns {*}
*/
function safeCopyArray(original, transform) {
if (original === null || typeof original !== "object") {
return original;
}
var immutable = RealArray(original.length);
for (var i = 0; i < immutable.length; i++) {
defineProperty(immutable, i, {
configurable: false, enumerable: false, writable: false,
value: transform(original[i])
});
}
defineProperty(immutable, "length", {
configurable: false, enumerable: false, writable: false,
value: immutable.length
});
return immutable;
}
/**
* Protect configuration from mutations
* @param configuration RTCPeerConnection configuration object
* @returns {*}
*/
function protectConfiguration(configuration) {
if (configuration === null || typeof configuration !== "object") {
return configuration;
}
var iceServers = safeCopyArray(
configuration.iceServers,
function (iceServer) {
var url = iceServer.url;
var urls = iceServer.urls;
// RTCPeerConnection doesn't iterate through pseudo Arrays of urls.
if (typeof urls !== "undefined" && !(urls instanceof RealArray)) {
urls = [urls];
}
return createObject(iceServer, {
url: {
configurable: false, enumerable: false, writable: false,
value: urlToString(url)
},
urls: {
configurable: false, enumerable: false, writable: false,
value: safeCopyArray(urls, urlToString)
}
});
}
);
return createObject(configuration, {
iceServers: {
configurable: false, enumerable: false, writable: false,
value: iceServers
}
});
}
/**
* Check WebRTC connection's URL and close if it's blocked by rule
* @param connection Connection
* @param url URL to check
*/
function checkWebRTCRequest(connection, url) {
checkRequest(url, 'WEBRTC', function (blocked) {
if (blocked) {
try {
closeRTCPeerConnection(connection);
} catch (e) {
// Ignore exceptions
}
}
});
}
/**
* Check each URL of ice server in configuration for blocking.
*
* @param connection RTCPeerConnection
* @param configuration Configuration for RTCPeerConnection
* https://developer.mozilla.org/en-US/docs/Web/API/RTCConfiguration
*/
function checkConfiguration(connection, configuration) {
if (!configuration || !configuration.iceServers) {
return;
}
var iceServers = configuration.iceServers;
for (var i = 0; i < iceServers.length; i++) {
var iceServer = iceServers[i];
if (!iceServer) {
continue;
}
if (iceServer.url) {
checkWebRTCRequest(connection, iceServer.url);
}
if (iceServer.urls) {
for (var j = 0; j < iceServer.urls.length; j++) {
checkWebRTCRequest(connection, iceServer.urls[j]);
}
}
}
}
/**
* Overrides setConfiguration method
* https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/setConfiguration
*/
if (RealRTCPeerConnection.prototype.setConfiguration) {
var realSetConfiguration = Function.prototype.call.bind(RealRTCPeerConnection.prototype.setConfiguration);
RealRTCPeerConnection.prototype.setConfiguration = function (configuration) {
configuration = protectConfiguration(configuration);
// Call the real method first, so that validates the configuration
realSetConfiguration(this, configuration);
checkConfiguration(this, configuration);
};
}
function WrappedRTCPeerConnection(configuration, arg) {
if (!(this instanceof WrappedRTCPeerConnection)) {
return RealRTCPeerConnection();
}
configuration = protectConfiguration(configuration);
/**
* The old webkitRTCPeerConnection constructor takes an optional second argument and we must pass it.
*/
var connection = new RealRTCPeerConnection(configuration, arg);
checkConfiguration(connection, configuration);
return connection;
}
WrappedRTCPeerConnection.prototype = RealRTCPeerConnection.prototype;
var boundWrappedRTCPeerConnection = WrappedRTCPeerConnection.bind();
copyProperties(RealRTCPeerConnection, boundWrappedRTCPeerConnection, ["caller", "generateCertificate", "name", "prototype"]);
RealRTCPeerConnection.prototype.constructor = boundWrappedRTCPeerConnection;
if ("RTCPeerConnection" in window) {
window.RTCPeerConnection = boundWrappedRTCPeerConnection;
}
if ("webkitRTCPeerConnection" in window) {
window.webkitRTCPeerConnection = boundWrappedRTCPeerConnection;
}
};
if (shouldOverrideWebSocket) {
overrideWebSocket();
}
if (shouldOverrideWebRTC) {
overrideWebRTC();
}
})('wrapper-script-2154700553816623', false, true);
} catch (ex) { console.error('Error executing AG js: ' + ex); }
(function () {
var current = document.currentScript;
var parent = current && current.parentNode;
if (parent) {
parent.removeChild(current);
}
})();</script><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<link rel="dns-prefetch" href="https://github.githubassets.com/">
<link rel="dns-prefetch" href="https://avatars0.githubusercontent.com/">
<link rel="dns-prefetch" href="https://avatars1.githubusercontent.com/">
<link rel="dns-prefetch" href="https://avatars2.githubusercontent.com/">
<link rel="dns-prefetch" href="https://avatars3.githubusercontent.com/">
<link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com/">
<link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
<link crossorigin="anonymous" media="all" integrity="sha512-v0wSB0SbeOFEPVJKeG3ENnZHwhmCB7glTJtbS70wGCd2pJHoqe+KL2LEDE4gdI+EaY0lXGWQ5IPmHimAuvJmWw==" rel="stylesheet" href="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/frameworks-bf4c1207449b78e1443d524a786dc436.css">
<link crossorigin="anonymous" media="all" integrity="sha512-luBT4RXjFsYtyuuAjMuagg5nKv7j8BDSAoKzIyDf2GhW6VBmYg9qUVqspo5VDn8FJBscqQono5QD+KvKHMig1A==" rel="stylesheet" href="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/github-96e053e115e316c62dcaeb808ccb9a82.css">
<script crossorigin="anonymous" defer="defer" integrity="sha512-8K2vvwbW+6H27Nad5ydg8PA2/aMD/LKq+EiK9s0U0hhVZxCI2tWBsYk9beAtisRw2j+Or5k2/F+6dk02nmj/PA==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/environment-f0adafbf.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-YEtshRLHr+2BeE23dp5rtQdHF4emi1s7HZto12f9a1bGq+ebWp9ScLXgCuLqLJk5ZfwWxORBfBUprys3XHMLHA==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/chunk-frameworks-604b6c85.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-AsYa7L3J5bYnuUNrVC1tcCifuOPAby6GuHXmS8QCRbacHT9e6b7iZenxp4Qt/TY2qeMqrdHNHnivAsEKn9e9zw==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/chunk-vendor-02c61aec.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-m2vRq0ZwvgBf9hSv2RnRFjQxubbQeVvdnDNVz0TOIj51Iy6NYl5MKm4U9YB0Da9CqxOYPuQFP8daH2svog+Wjg==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/behaviors-9b6bd1ab.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-P2YMkqfXJOOfxTTkNHbblY5ks3U+e9w9tiVyK9syrE5+JmlaCg1kUiuT1DfbyJXwaOLaRLT3zam2r+QrxTZ3iw==" type="application/javascript" data-module-id="./chunk-contributions-spider-graph.js" data-src="https://github.githubassets.com/assets/chunk-contributions-spider-graph-3f660c92.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-obMR8mPKx8OvqRe34LgnUcxeJ1qujiA4ND3H6UX13ExMlA/WfHLjEzXRmgGRcRvN/8J1nzc+Z+jgz/PLTFy6zg==" type="application/javascript" data-module-id="./chunk-drag-drop.js" data-src="https://github.githubassets.com/assets/chunk-drag-drop-a1b311f2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-o95wCKfOqL8EX5reoP68bQ/mUPvLnu0T5LaPZLAv0xQALhTP0XqriKBrnmOXbo6BVVM9eNnesNYw8rA37Ta60w==" type="application/javascript" data-module-id="./chunk-jump-to.js" data-src="https://github.githubassets.com/assets/chunk-jump-to-a3de7008.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-tcH4xCRuMBAh1PruDaiwGnRIbHlF6bGLhxyCQ16uqok1cV5QFMguVPWJtN9KI0jGQOgN+Pha3+uOUXhXdfK/qw==" type="application/javascript" data-module-id="./chunk-profile-pins-element.js" data-src="https://github.githubassets.com/assets/chunk-profile-pins-element-b5c1f8c4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-hUprZmPKGx2Ji0cJJ29yrNBTnfCQoEg+Ow0rEG6bVGXu0HcagYwfPS9a5oRdoqvkE+nSk4FkIaklkLvc7Jb5+g==" type="application/javascript" data-module-id="./chunk-randomColor.js" data-src="https://github.githubassets.com/assets/chunk-randomColor-854a6b66.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-E+H+wAtjiqutBvn2cnXzDIvmasIhYiS7i7JzOfFUwo+Ej8zT54OrJtP//RhwixnypgOpCF4JvqzYy6zOtORDmg==" type="application/javascript" data-module-id="./chunk-runner-groups.js" data-src="https://github.githubassets.com/assets/chunk-runner-groups-13e1fec0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-pkFKgC9JFth/pgRqBLhELfLOltqYbv+r++HblYEsbFpg7rCimMCN4Q/8RvPYilY0QMGT0q9vlJj1vzzUXYk3Zw==" type="application/javascript" data-module-id="./chunk-sortable-behavior.js" data-src="https://github.githubassets.com/assets/chunk-sortable-behavior-a6414a80.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-HCEY5FUSNmHYIUILB/UYu4Q6dPhLDAtK/MCQibzObiq4PxHpAohvWEf1oTil7Z4uckwsZ8q5VgDlEHJNNJ+tNg==" type="application/javascript" data-module-id="./chunk-tweetsodium.js" data-src="https://github.githubassets.com/assets/chunk-tweetsodium-1c2118e4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-e+30BriXsBu+fb/LGEU9gAzSwn25wRYzDDPpr2AA8jZJI9034xzRHYXjA9XhF+7ncBIGJ/uTD11G25/H0XyuZg==" type="application/javascript" data-module-id="./chunk-user-status-submit.js" data-src="https://github.githubassets.com/assets/chunk-user-status-submit-7bedf406.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-QiBwUGhO4Jv2+dKa60P1uNnbTpouIkJHy8OW9ESCzFNPYUarubjEGJMZbprgBV9m+u6kWlAbQHId8mYadSVTOQ==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/diffs-42207050.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-lI3SnQe0Ps25AngWWegpEs20YQRY09UXdtt5v97HTdD6pq2cwNw2d5KbvEk2HKAlMC5BmcXVs5n+b6EXN/pJpQ==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/scanning-948dd29d.js"></script>
<meta name="viewport" content="width=device-width">
<title>feat: [WIP] 🍰 Rebranding And White-Labeling by Mogge · Pull Request #3934 · Ocelot-Social-Community/Ocelot-Social</title>
<meta name="description" content="🍰 Pullrequest
Have all the information for the brand in separate config files. Set these defaults to ocelot.social">
<link rel="search" type="application/opensearchdescription+xml" href="https://github.com/opensearch.xml" title="GitHub">
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
<meta property="fb:app_id" content="1401488693436528">
<meta name="apple-itunes-app" content="app-id=1477376905">
<meta name="twitter:image:src" content="https://avatars3.githubusercontent.com/u/67983243?s=400&amp;v=4"><meta name="twitter:site" content="@github"><meta name="twitter:card" content="summary"><meta name="twitter:title" content="feat: [WIP] 🍰 Rebranding And White-Labeling by Mogge · Pull Request #3934 · Ocelot-Social-Community/Ocelot-Social"><meta name="twitter:description" content="🍰 Pullrequest
Have all the information for the brand in separate config files. Set these defaults to ocelot.social">
<meta property="og:image" content="https://avatars3.githubusercontent.com/u/67983243?s=400&amp;v=4"><meta property="og:site_name" content="GitHub"><meta property="og:type" content="object"><meta property="og:title" content="feat: [WIP] 🍰 Rebranding And White-Labeling by Mogge · Pull Request #3934 · Ocelot-Social-Community/Ocelot-Social"><meta property="og:url" content="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934"><meta property="og:description" content="🍰 Pullrequest
Have all the information for the brand in separate config files. Set these defaults to ocelot.social">
<link rel="assets" href="https://github.githubassets.com/">
<link rel="shared-web-socket" href="wss://alive.github.com/_sockets/u/15882241/ws?session=eyJ2IjoiVjMiLCJ1IjoxNTg4MjI0MSwicyI6NTczODk2MzQ2LCJjIjoxMDUxNDE4ODA1LCJ0IjoxNjA1NTI4MTAwfQ==--8438a023d14fe46d288539ba9823dc6c61c28f7363d1ea74b2c42f732eec6c40" data-refresh-url="/_alive">
<link rel="sudo-modal" href="https://github.com/sessions/sudo_modal">
<meta name="request-id" content="976A:DEA0:629701B:8B32C1E:5FB26A22" data-pjax-transient="true"><meta name="html-safe-nonce" content="57ccdd35f848c397cf1d95cbd2619075bf289aecc178dba95ed6b00c9e061098" data-pjax-transient="true"><meta name="visitor-payload" content="eyJyZWZlcnJlciI6Imh0dHBzOi8vZ2l0aHViLmNvbS9wdWxscyIsInJlcXVlc3RfaWQiOiI5NzZBOkRFQTA6NjI5NzAxQjo4QjMyQzFFOjVGQjI2QTIyIiwidmlzaXRvcl9pZCI6IjE4MzIzMDg4MjE4ODUwMDA3NjMiLCJyZWdpb25fZWRnZSI6ImZyYSIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==" data-pjax-transient="true"><meta name="visitor-hmac" content="c3df32534f24455790a60c31f35d1104c42cbdef8d69c76da474fb2c3cde51b4" data-pjax-transient="true"><meta name="cookie-consent-required" content="true">
<meta name="hovercard-subject-tag" content="pull_request:518410600" data-pjax-transient="">
<meta name="github-keyboard-shortcuts" content="repository,pull-request-list,pull-request-conversation,pull-request-files-changed" data-pjax-transient="true">
<meta name="selected-link" value="repo_pulls" data-pjax-transient="">
<meta name="google-site-verification" content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY">
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
<meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
<meta name="octolytics-host" content="collector.githubapp.com"><meta name="octolytics-app-id" content="github"><meta name="octolytics-event-url" content="https://collector.githubapp.com/github-external/browser_event"><meta name="octolytics-dimension-ga_id" content="" class="js-octo-ga-id"><meta name="octolytics-actor-id" content="15882241"><meta name="octolytics-actor-login" content="Mogge"><meta name="octolytics-actor-hash" content="2ea1cc299a5fa23f92790f6b04720c5ed00e24cbd445e9d1346320deae97eb4e">
<meta name="analytics-location" content="/&lt;user-name&gt;/&lt;repo-name&gt;/pull_requests/show" data-pjax-transient="true">
<meta name="optimizely-datafile" content="{&quot;version&quot;: &quot;4&quot;, &quot;rollouts&quot;: [], &quot;typedAudiences&quot;: [], &quot;anonymizeIP&quot;: true, &quot;projectId&quot;: &quot;16737760170&quot;, &quot;variables&quot;: [], &quot;featureFlags&quot;: [], &quot;experiments&quot;: [{&quot;status&quot;: &quot;Running&quot;, &quot;audienceIds&quot;: [], &quot;variations&quot;: [{&quot;variables&quot;: [], &quot;id&quot;: &quot;18630402174&quot;, &quot;key&quot;: &quot;launchpad&quot;}, {&quot;variables&quot;: [], &quot;id&quot;: &quot;18866331456&quot;, &quot;key&quot;: &quot;control&quot;}], &quot;id&quot;: &quot;18651193356&quot;, &quot;key&quot;: &quot;_features_redesign_rollout&quot;, &quot;layerId&quot;: &quot;18645992876&quot;, &quot;trafficAllocation&quot;: [{&quot;entityId&quot;: &quot;18630402174&quot;, &quot;endOfRange&quot;: 500}, {&quot;entityId&quot;: &quot;18866331456&quot;, &quot;endOfRange&quot;: 1000}, {&quot;entityId&quot;: &quot;18630402174&quot;, &quot;endOfRange&quot;: 5000}, {&quot;entityId&quot;: &quot;18630402174&quot;, &quot;endOfRange&quot;: 5500}, {&quot;entityId&quot;: &quot;18866331456&quot;, &quot;endOfRange&quot;: 10000}], &quot;forcedVariations&quot;: {&quot;143327983.1601483920&quot;: &quot;launchpad&quot;, &quot;1955030087.1562868941&quot;: &quot;launchpad&quot;, &quot;1983887325.1550021416&quot;: &quot;launchpad&quot;, &quot;1947530619.1600461583&quot;: &quot;launchpad&quot;}}, {&quot;status&quot;: &quot;Running&quot;, &quot;audienceIds&quot;: [], &quot;variations&quot;: [{&quot;variables&quot;: [], &quot;id&quot;: &quot;19157301901&quot;, &quot;key&quot;: &quot;launchpad&quot;}, {&quot;variables&quot;: [], &quot;id&quot;: &quot;19115494094&quot;, &quot;key&quot;: &quot;control&quot;}], &quot;id&quot;: &quot;19139621248&quot;, &quot;key&quot;: &quot;signup_prompt_launchpad&quot;, &quot;layerId&quot;: &quot;19159450734&quot;, &quot;trafficAllocation&quot;: [{&quot;entityId&quot;: &quot;19115494094&quot;, &quot;endOfRange&quot;: 5000}, {&quot;entityId&quot;: &quot;19157301901&quot;, &quot;endOfRange&quot;: 10000}], &quot;forcedVariations&quot;: {&quot;262350301.1605284875&quot;: &quot;launchpad&quot;, &quot;550830608.1557172966&quot;: &quot;launchpad&quot;}}], &quot;audiences&quot;: [{&quot;conditions&quot;: &quot;[\&quot;or\&quot;, {\&quot;match\&quot;: \&quot;exact\&quot;, \&quot;name\&quot;: \&quot;$opt_dummy_attribute\&quot;, \&quot;type\&quot;: \&quot;custom_attribute\&quot;, \&quot;value\&quot;: \&quot;$opt_dummy_value\&quot;}]&quot;, &quot;id&quot;: &quot;$opt_dummy_audience&quot;, &quot;name&quot;: &quot;Optimizely-Generated Audience for Backwards Compatibility&quot;}], &quot;groups&quot;: [], &quot;attributes&quot;: [{&quot;id&quot;: &quot;16822470375&quot;, &quot;key&quot;: &quot;user_id&quot;}, {&quot;id&quot;: &quot;17143601254&quot;, &quot;key&quot;: &quot;spammy&quot;}, {&quot;id&quot;: &quot;18175660309&quot;, &quot;key&quot;: &quot;organization_plan&quot;}, {&quot;id&quot;: &quot;18813001570&quot;, &quot;key&quot;: &quot;is_logged_in&quot;}, {&quot;id&quot;: &quot;19073851829&quot;, &quot;key&quot;: &quot;geo&quot;}], &quot;botFiltering&quot;: false, &quot;accountId&quot;: &quot;16737760170&quot;, &quot;events&quot;: [{&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;17911811441&quot;, &quot;key&quot;: &quot;hydro_click.dashboard.teacher_toolbox_cta&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18124116703&quot;, &quot;key&quot;: &quot;submit.organizations.complete_sign_up&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18145892387&quot;, &quot;key&quot;: &quot;no_metric.tracked_outside_of_optimizely&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18178755568&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.add_repo&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18180553241&quot;, &quot;key&quot;: &quot;submit.repository_imports.create&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18186103728&quot;, &quot;key&quot;: &quot;click.help.learn_more_about_repository_creation&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18188530140&quot;, &quot;key&quot;: &quot;test_event.do_not_use_in_production&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18191963644&quot;, &quot;key&quot;: &quot;click.empty_org_repo_cta.transfer_repository&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18195612788&quot;, &quot;key&quot;: &quot;click.empty_org_repo_cta.import_repository&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18210945499&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.invite_members&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18211063248&quot;, &quot;key&quot;: &quot;click.empty_org_repo_cta.create_repository&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18215721889&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.update_profile&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18224360785&quot;, &quot;key&quot;: &quot;click.org_onboarding_checklist.dismiss&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18234832286&quot;, &quot;key&quot;: &quot;submit.organization_activation.complete&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18252392383&quot;, &quot;key&quot;: &quot;submit.org_repository.create&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18257551537&quot;, &quot;key&quot;: &quot;submit.org_member_invitation.create&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18259522260&quot;, &quot;key&quot;: &quot;submit.organization_profile.update&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18564603625&quot;, &quot;key&quot;: &quot;view.classroom_select_organization&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18568612016&quot;, &quot;key&quot;: &quot;click.classroom_sign_in_click&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18572592540&quot;, &quot;key&quot;: &quot;view.classroom_name&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18574203855&quot;, &quot;key&quot;: &quot;click.classroom_create_organization&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18582053415&quot;, &quot;key&quot;: &quot;click.classroom_select_organization&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18589463420&quot;, &quot;key&quot;: &quot;click.classroom_create_classroom&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18591323364&quot;, &quot;key&quot;: &quot;click.classroom_create_first_classroom&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18591652321&quot;, &quot;key&quot;: &quot;click.classroom_grant_access&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18607131425&quot;, &quot;key&quot;: &quot;view.classroom_creation&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;18831680583&quot;, &quot;key&quot;: &quot;upgrade_account_plan&quot;}, {&quot;experimentIds&quot;: [&quot;19139621248&quot;], &quot;id&quot;: &quot;19064064515&quot;, &quot;key&quot;: &quot;click.signup&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19075373687&quot;, &quot;key&quot;: &quot;click.view_account_billing_page&quot;}, {&quot;experimentIds&quot;: [&quot;19139621248&quot;], &quot;id&quot;: &quot;19077355841&quot;, &quot;key&quot;: &quot;click.dismiss_signup_prompt&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19079713938&quot;, &quot;key&quot;: &quot;click.contact_sales&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19120963070&quot;, &quot;key&quot;: &quot;click.compare_account_plans&quot;}, {&quot;experimentIds&quot;: [], &quot;id&quot;: &quot;19151690317&quot;, &quot;key&quot;: &quot;click.upgrade_account_cta&quot;}], &quot;revision&quot;: &quot;319&quot;}">
<!-- To prevent page flashing, the optimizely JS needs to be loaded in the
<head> tag before the DOM renders -->
<script crossorigin="anonymous" defer="defer" integrity="sha512-8Chj4GzowC8vPZBr3SHdnurKHd/2c9Z32olDHaObaKiAA4TRNtQyCDsdOEngMcawNm9WmlZmhxGpjE5yaqVaDQ==" type="application/javascript" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/optimizely-f02863e0.js"></script>
<meta name="hostname" content="github.com">
<meta name="user-login" content="Mogge">
<meta name="expected-hostname" content="github.com">
<meta name="js-proxy-site-detection-payload" content="MmY5ZmU2YjJmY2ZhZjUxNzkzYTJkMWY2MTE5OTJiMGM5MTZhNzIzYjczZWIyZWY4ZDRhMGE0ODM2MzVlZmEwYnx7InJlbW90ZV9hZGRyZXNzIjoiOTMuMTU2LjM5LjE5MyIsInJlcXVlc3RfaWQiOiI5NzZBOkRFQTA6NjI5NzAxQjo4QjMyQzFFOjVGQjI2QTIyIiwidGltZXN0YW1wIjoxNjA1NTI4MTAwLCJob3N0IjoiZ2l0aHViLmNvbSJ9">
<meta name="enabled-features" content="MARKETPLACE_PENDING_INSTALLATIONS,JS_HTTP_CACHE_HEADERS">
<meta http-equiv="x-pjax-version" content="fd6abdceaa175803eaa0105bd85f88cdb8f7a693dbefac3b9ea4c86098ef1d7c">
<link href="https://github.com/Ocelot-Social-Community/Ocelot-Social/commits/white-labeling.atom" rel="alternate" title="Recent Commits to Ocelot-Social:white-labeling" type="application/atom+xml">
<meta name="go-import" content="github.com/Ocelot-Social-Community/Ocelot-Social git https://github.com/Ocelot-Social-Community/Ocelot-Social.git">
<meta name="octolytics-dimension-user_id" content="67983243"><meta name="octolytics-dimension-user_login" content="Ocelot-Social-Community"><meta name="octolytics-dimension-repository_id" content="301151089"><meta name="octolytics-dimension-repository_nwo" content="Ocelot-Social-Community/Ocelot-Social"><meta name="octolytics-dimension-repository_public" content="true"><meta name="octolytics-dimension-repository_is_fork" content="false"><meta name="octolytics-dimension-repository_network_root_id" content="301151089"><meta name="octolytics-dimension-repository_network_root_nwo" content="Ocelot-Social-Community/Ocelot-Social"><meta name="octolytics-dimension-repository_explore_github_marketplace_ci_cta_shown" content="false">
<meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
<meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
<meta name="browser-optimizely-client-errors-url" content="https://api.github.com/_private/browser/optimizely_client/errors">
<link rel="mask-icon" href="https://github.githubassets.com/pinned-octocat.svg" color="#000000">
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon-success.png">
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon-success.svg">
<meta name="theme-color" content="#1e2327">
<link rel="manifest" href="https://github.com/manifest.json" crossorigin="use-credentials">
</head>
<body class="logged-in env-production page-responsive">
<div class="position-relative js-header-wrapper ">
<a href="#start-of-content" class="p-3 bg-blue text-white show-on-focus js-skip-to-content">Skip to content</a>
<span class="progress-pjax-loader width-full js-pjax-loader-bar Progress position-fixed">
<span style="background-color: #79b8ff;width: 0%;" class="Progress-item progress-pjax-loader-bar "></span>
</span>
<header class="Header js-details-container Details px-3 px-md-4 px-lg-5 flex-wrap flex-md-nowrap" role="banner">
<div class="Header-item mt-n1 mb-n1 d-none d-md-flex">
<a class="Header-link " href="https://github.com/" data-hotkey="g d" aria-label="Homepage " data-ga-click="Header, go to dashboard, icon:logo">
<svg class="octicon octicon-mark-github v-align-middle" height="32" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
</a>
</div>
<div class="Header-item d-md-none">
<button class="Header-link btn-link js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
<svg height="24" class="octicon octicon-three-bars" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z"></path></svg>
</button>
</div>
<div class="Header-item Header-item--full flex-column flex-md-row width-full flex-order-2 flex-md-order-none mr-0 mr-md-3 mt-3 mt-md-0 Details-content--hidden-not-important d-md-flex">
<div class="header-search flex-auto js-site-search position-relative flex-self-stretch flex-md-self-auto mb-3 mb-md-0 mr-0 mr-md-3 scoped-search site-scoped-search js-jump-to" role="combobox" aria-owns="jump-to-results" aria-label="Search or jump to" aria-haspopup="listbox" aria-expanded="false">
<div class="position-relative">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="301151089" data-scoped-search-url="/Ocelot-Social-Community/Ocelot-Social/search" data-unscoped-search-url="/search" action="/Ocelot-Social-Community/Ocelot-Social/search" accept-charset="UTF-8" method="get">
<label class="form-control input-sm header-search-wrapper p-0 js-chromeless-input-container header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center">
<input type="text" class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus js-site-search-field is-clearable" data-hotkey="s,/" name="q" placeholder="Search or jump to…" data-unscoped-placeholder="Search or jump to…" data-scoped-placeholder="Search or jump to…" autocapitalize="off" aria-autocomplete="list" aria-controls="jump-to-results" aria-label="Search or jump to…" data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations" spellcheck="false" autocomplete="off">
<input type="hidden" value="9DMP6L6kwY52HMzRfTQrjz2Gp4O4eDAFc0rPYGZIdMFS9MkGe14C8p4MdviUqjM61C/0fD15KOdt7LwgLOULbw==" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf">
<input type="hidden" class="js-site-search-type-field" name="type">
<img src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/search-key-slash.svg" alt="" class="mr-2 header-search-key-slash">
<div class="Box position-absolute overflow-hidden d-none jump-to-suggestions js-jump-to-suggestions-container">
<ul class="d-none js-jump-to-suggestions-template-container">
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-suggestion" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
In this repository
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle"></span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle"></span>
</div>
</a>
</li>
</ul>
<ul class="d-none js-jump-to-no-results-template-container">
<li class="d-flex flex-justify-center flex-items-center f5 d-none js-jump-to-suggestion p-2">
<span class="text-gray">No suggested jump to results</span>
</li>
</ul>
<ul id="jump-to-results" role="listbox" class="p-0 m-0 js-navigation-container jump-to-suggestions-results-container js-jump-to-suggestions-results-container">
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-scoped-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
In this repository
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle"></span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle"></span>
</div>
</a>
</li>
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-global-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
In this repository
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle"></span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle"></span>
</div>
</a>
</li>
<li class="d-flex flex-justify-center flex-items-center p-0 f5 js-jump-to-suggestion">
<img src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/octocat-spinner-128.gif" alt="Octocat Spinner Icon" class="m-2" width="28">
</li>
</ul>
</div>
</label>
</form> </div>
</div>
<nav class="d-flex flex-column flex-md-row flex-self-stretch flex-md-self-auto" aria-label="Global">
<a class="Header-link py-md-3 d-block d-md-none py-2 border-top border-md-top-0 border-white-fade-15" data-ga-click="Header, click, Nav menu - item:dashboard:user" aria-label="Dashboard" href="https://github.com/dashboard">
Dashboard
</a>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade-15" data-hotkey="g p" data-ga-click="Header, click, Nav menu - item:pulls context:user" aria-label="Pull requests you created" data-selected-links="/pulls /pulls/assigned /pulls/mentioned /pulls" href="https://github.com/pulls">
Pull<span class="d-inline d-md-none d-lg-inline"> request</span>s
</a>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade-15" data-hotkey="g i" data-ga-click="Header, click, Nav menu - item:issues context:user" aria-label="Issues you created" data-selected-links="/issues /issues/assigned /issues/mentioned /issues" href="https://github.com/issues">
Issues
</a>
<div class="d-flex position-relative">
<a class="js-selected-navigation-item Header-link flex-auto mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade-15" data-ga-click="Header, click, Nav menu - item:marketplace context:user" data-octo-click="marketplace_click" data-octo-dimensions="location:nav_bar" data-selected-links=" /marketplace" href="https://github.com/marketplace">
Marketplace
</a>
</div>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade-15" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship showcases showcases_search showcases_landing /explore" href="https://github.com/explore">
Explore
</a>
<a class="Header-link d-block d-md-none mr-0 mr-md-3 py-2 py-md-3 border-top border-md-top-0 border-white-fade-15" href="https://github.com/Mogge">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_005.png" alt="@Mogge" width="20" height="20">
Mogge
</a>
<!-- '"` --><!-- </textarea></xmp> --><form action="/logout" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="NFjJViWS2W4E1WDBw3hyXQhitjhvm/haxZ2QxBDmdmkZaKwX5x/rs5f0/2XlXD5+wFo64aCZkeSbqfrlSIjnGQ==">
<button type="submit" class="Header-link mr-0 mr-md-3 py-2 py-md-3 border-top border-md-top-0 border-white-fade-15 d-md-none btn-link d-block width-full text-left" data-ga-click="Header, sign out, icon:logout" style="padding-left: 2px;">
<svg class="octicon octicon-sign-out v-align-middle" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 010 1.5h-2.5a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 010 1.5h-2.5A1.75 1.75 0 012 13.25V2.75zm10.44 4.5H6.75a.75.75 0 000 1.5h5.69l-1.97 1.97a.75.75 0 101.06 1.06l3.25-3.25a.75.75 0 000-1.06l-3.25-3.25a.75.75 0 10-1.06 1.06l1.97 1.97z"></path></svg>
Sign out
</button>
</form></nav>
</div>
<div class="Header-item Header-item--full flex-justify-center d-md-none position-relative">
<a class="Header-link " href="https://github.com/" data-hotkey="g d" aria-label="Homepage " data-ga-click="Header, go to dashboard, icon:logo">
<svg class="octicon octicon-mark-github v-align-middle" height="32" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
</a>
</div>
<div class="Header-item mr-0 mr-md-3 flex-order-1 flex-md-order-none">
<notification-indicator class="js-socket-channel" data-channel="eyJjIjoibm90aWZpY2F0aW9uLWNoYW5nZWQ6MTU4ODIyNDEiLCJ0IjoxNjA1NTI4MTAwfQ==--48faa46f4c8ac5c96f9dbc466f158e433ccb641e4ffcde18dc3a94020766b4ad" data-catalyst="">
<a href="https://github.com/notifications" class="Header-link notification-indicator position-relative tooltipped tooltipped-sw" aria-label="You have no unread notifications" data-hotkey="g n" data-ga-click="Header, go to notifications, icon:read" data-target="notification-indicator.link">
<span class="mail-status " data-target="notification-indicator.modifier"></span>
<svg class="octicon octicon-bell" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="M8 16a2 2 0 001.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 008 16z"></path><path fill-rule="evenodd" d="M8 1.5A3.5 3.5 0 004.5 5v2.947c0 .346-.102.683-.294.97l-1.703 2.556a.018.018 0 00-.003.01l.001.006c0 .002.002.004.004.006a.017.017 0 00.006.004l.007.001h10.964l.007-.001a.016.016 0 00.006-.004.016.016 0 00.004-.006l.001-.007a.017.017 0 00-.003-.01l-1.703-2.554a1.75 1.75 0 01-.294-.97V5A3.5 3.5 0 008 1.5zM3 5a5 5 0 0110 0v2.947c0 .05.015.098.042.139l1.703 2.555A1.518 1.518 0 0113.482 13H2.518a1.518 1.518 0 01-1.263-2.36l1.703-2.554A.25.25 0 003 7.947V5z"></path></svg>
</a>
</notification-indicator>
</div>
<div class="Header-item position-relative d-none d-md-flex">
<details class="details-overlay details-reset">
<summary class="Header-link" aria-label="Create new…" data-ga-click="Header, create new, icon:add" aria-haspopup="menu" role="button">
<svg class="octicon octicon-plus" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 2a.75.75 0 01.75.75v4.5h4.5a.75.75 0 010 1.5h-4.5v4.5a.75.75 0 01-1.5 0v-4.5h-4.5a.75.75 0 010-1.5h4.5v-4.5A.75.75 0 018 2z"></path></svg> <span class="dropdown-caret"></span>
</summary>
<details-menu class="dropdown-menu dropdown-menu-sw" role="menu">
<a role="menuitem" class="dropdown-item" href="https://github.com/new" data-ga-click="Header, create new repository">
New repository
</a>
<a role="menuitem" class="dropdown-item" href="https://github.com/new/import" data-ga-click="Header, import a repository">
Import repository
</a>
<a role="menuitem" class="dropdown-item" href="https://gist.github.com/" data-ga-click="Header, create new gist">
New gist
</a>
<a role="menuitem" class="dropdown-item" href="https://github.com/organizations/new" data-ga-click="Header, create new organization">
New organization
</a>
<div role="none" class="dropdown-divider"></div>
<div class="dropdown-header">
<span title="Ocelot-Social-Community/Ocelot-Social">This repository</span>
</div>
<a role="menuitem" class="dropdown-item" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues/new/choose" data-ga-click="Header, create new issue" data-skip-pjax="">
New issue
</a>
</details-menu>
</details>
</div>
<div class="Header-item position-relative mr-0 d-none d-md-flex">
<details class="details-overlay details-reset js-feature-preview-indicator-container" data-feature-preview-indicator-src="/users/Mogge/feature_preview/indicator_check">
<summary class="Header-link" aria-label="View profile and more" data-ga-click="Header, show menu, icon:avatar" aria-haspopup="menu" role="button">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class="avatar avatar-user " width="20" height="20">
<span class="feature-preview-indicator js-feature-preview-indicator" style="top: 1px;" hidden=""></span>
<span class="dropdown-caret"></span>
</summary>
<details-menu class="dropdown-menu dropdown-menu-sw" style="width: 180px" src="/users/15882241/menu" preload="" role="menu">
<include-fragment>
<p class="text-center mt-3" data-hide-on-error="">
<img alt="Loading…" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/octocat-spinner-64.gif" width="32" height="32">
</p>
<p class="ml-1 mb-2 mt-2 text-gray-dark" data-show-on-error="">
<svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
Sorry, something went wrong.
</p>
</include-fragment>
</details-menu>
</details>
</div>
</header>
</div>
<div id="start-of-content" class="show-on-focus"></div>
<div data-pjax-replace="" id="js-flash-container">
<template class="js-flash-template">
<div class="flash flash-full {{ className }}">
<div class=" px-2">
<button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
<svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<div>{{ message }}</div>
</div>
</div>
</template>
</div>
<include-fragment class="js-notification-shelf-include-fragment" data-base-src="https://github.com/notifications/beta/shelf"></include-fragment>
<div class="application-main " data-commit-hovercards-enabled="" data-discussion-hovercards-enabled="" data-issue-and-pr-hovercards-enabled="">
<div itemscope="" itemtype="http://schema.org/SoftwareSourceCode" class="">
<main id="js-repo-pjax-container" data-pjax-container="">
<!-- base sha1: &quot;612b9fdc4074e0684920f9eac2af215284ad9105&quot; -->
<!-- head sha1: &quot;78f9e20356182d697c46715c6a63e5fe72f1bc94&quot; -->
<div class="bg-gray-light pt-3 hide-full-screen mb-5">
<div class="d-flex mb-3 px-3 px-md-4 px-lg-5">
<div class="flex-auto min-width-0 width-fit mr-3">
<h1 class=" d-flex flex-wrap flex-items-center break-word f3 text-normal">
<svg class="octicon octicon-repo text-gray mr-2" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<span class="author flex-self-stretch" itemprop="author">
<a class="url fn" rel="author" data-hovercard-type="organization" data-hovercard-url="/orgs/Ocelot-Social-Community/hovercard" href="https://github.com/Ocelot-Social-Community">Ocelot-Social-Community</a>
</span>
<span class="mx-1 flex-self-stretch color-text-secondary">/</span>
<strong itemprop="name" class="mr-2 flex-self-stretch">
<a data-pjax="#js-repo-pjax-container" class="" href="https://github.com/Ocelot-Social-Community/Ocelot-Social">Ocelot-Social</a>
</strong>
</h1>
</div>
<ul class="pagehead-actions flex-shrink-0 d-none d-md-inline" style="padding: 2px 0;">
<li>
<form data-remote="true" class="d-flex js-social-form js-social-container" action="/notifications/subscribe" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="XDAK8BW9HVvzVbu1VitTSlngutVzW+zlb45u8ftoglEyfMc77Ttr56PzqCulpr8F0U7eqL3X2lSC+o5EpiuLiA=="> <input type="hidden" name="repository_id" value="301151089">
<details class="details-reset details-overlay select-menu hx_rsm">
<summary class="btn btn-sm btn-with-count" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;WATCH_BUTTON&quot;,&quot;repository_id&quot;:301151089,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="4dc166f1d68e982fe8b5faa5310eb78615b8101bc7bdd6855c1bd416191b30f8" data-ga-click="Repository, click Watch settings, action:pull_requests#show" aria-haspopup="menu" role="button"> <span data-menu-button="">
<svg class="octicon octicon-eye" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.679 7.932c.412-.621 1.242-1.75 2.366-2.717C5.175 4.242 6.527 3.5 8 3.5c1.473 0 2.824.742 3.955 1.715 1.124.967 1.954 2.096 2.366 2.717a.119.119 0 010 .136c-.412.621-1.242 1.75-2.366 2.717C10.825 11.758 9.473 12.5 8 12.5c-1.473 0-2.824-.742-3.955-1.715C2.92 9.818 2.09 8.69 1.679 8.068a.119.119 0 010-.136zM8 2c-1.981 0-3.67.992-4.933 2.078C1.797 5.169.88 6.423.43 7.1a1.619 1.619 0 000 1.798c.45.678 1.367 1.932 2.637 3.024C4.329 13.008 6.019 14 8 14c1.981 0 3.67-.992 4.933-2.078 1.27-1.091 2.187-2.345 2.637-3.023a1.619 1.619 0 000-1.798c-.45-.678-1.367-1.932-2.637-3.023C11.671 2.992 9.981 2 8 2zm0 8a2 2 0 100-4 2 2 0 000 4z"></path></svg>
Unwatch
</span>
<span class="dropdown-caret"></span>
</summary> <details-menu class="select-menu-modal position-absolute mt-5" style="z-index: 99;" role="menu">
<div class="select-menu-header">
<span class="select-menu-title">Notifications</span>
</div>
<div class="select-menu-list">
<button type="submit" name="do" value="included" class="select-menu-item width-full" aria-checked="false" role="menuitemradio">
<svg class="octicon octicon-check select-menu-item-icon" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
<div class="select-menu-item-text">
<span class="select-menu-item-heading">Not watching</span>
<span class="description">Be notified only when participating or @mentioned.</span>
<span class="hidden-select-button-text" data-menu-button-contents="">
<svg class="octicon octicon-eye" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.679 7.932c.412-.621 1.242-1.75 2.366-2.717C5.175 4.242 6.527 3.5 8 3.5c1.473 0 2.824.742 3.955 1.715 1.124.967 1.954 2.096 2.366 2.717a.119.119 0 010 .136c-.412.621-1.242 1.75-2.366 2.717C10.825 11.758 9.473 12.5 8 12.5c-1.473 0-2.824-.742-3.955-1.715C2.92 9.818 2.09 8.69 1.679 8.068a.119.119 0 010-.136zM8 2c-1.981 0-3.67.992-4.933 2.078C1.797 5.169.88 6.423.43 7.1a1.619 1.619 0 000 1.798c.45.678 1.367 1.932 2.637 3.024C4.329 13.008 6.019 14 8 14c1.981 0 3.67-.992 4.933-2.078 1.27-1.091 2.187-2.345 2.637-3.023a1.619 1.619 0 000-1.798c-.45-.678-1.367-1.932-2.637-3.023C11.671 2.992 9.981 2 8 2zm0 8a2 2 0 100-4 2 2 0 000 4z"></path></svg>
Watch
</span>
</div>
</button>
<button type="submit" name="do" value="release_only" class="select-menu-item width-full" aria-checked="false" role="menuitemradio">
<svg class="octicon octicon-check select-menu-item-icon" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
<div class="select-menu-item-text">
<span class="select-menu-item-heading">Releases only</span>
<span class="description">Be notified of new releases, and when participating or @mentioned.</span>
<span class="hidden-select-button-text" data-menu-button-contents="">
<svg class="octicon octicon-eye" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.679 7.932c.412-.621 1.242-1.75 2.366-2.717C5.175 4.242 6.527 3.5 8 3.5c1.473 0 2.824.742 3.955 1.715 1.124.967 1.954 2.096 2.366 2.717a.119.119 0 010 .136c-.412.621-1.242 1.75-2.366 2.717C10.825 11.758 9.473 12.5 8 12.5c-1.473 0-2.824-.742-3.955-1.715C2.92 9.818 2.09 8.69 1.679 8.068a.119.119 0 010-.136zM8 2c-1.981 0-3.67.992-4.933 2.078C1.797 5.169.88 6.423.43 7.1a1.619 1.619 0 000 1.798c.45.678 1.367 1.932 2.637 3.024C4.329 13.008 6.019 14 8 14c1.981 0 3.67-.992 4.933-2.078 1.27-1.091 2.187-2.345 2.637-3.023a1.619 1.619 0 000-1.798c-.45-.678-1.367-1.932-2.637-3.023C11.671 2.992 9.981 2 8 2zm0 8a2 2 0 100-4 2 2 0 000 4z"></path></svg>
Unwatch releases
</span>
</div>
</button>
<button type="submit" name="do" value="subscribed" class="select-menu-item width-full" aria-checked="true" role="menuitemradio">
<svg class="octicon octicon-check select-menu-item-icon" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
<div class="select-menu-item-text">
<span class="select-menu-item-heading">Watching</span>
<span class="description">Be notified of all conversations.</span>
<span class="hidden-select-button-text" data-menu-button-contents="">
<svg class="octicon octicon-eye v-align-text-bottom" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.679 7.932c.412-.621 1.242-1.75 2.366-2.717C5.175 4.242 6.527 3.5 8 3.5c1.473 0 2.824.742 3.955 1.715 1.124.967 1.954 2.096 2.366 2.717a.119.119 0 010 .136c-.412.621-1.242 1.75-2.366 2.717C10.825 11.758 9.473 12.5 8 12.5c-1.473 0-2.824-.742-3.955-1.715C2.92 9.818 2.09 8.69 1.679 8.068a.119.119 0 010-.136zM8 2c-1.981 0-3.67.992-4.933 2.078C1.797 5.169.88 6.423.43 7.1a1.619 1.619 0 000 1.798c.45.678 1.367 1.932 2.637 3.024C4.329 13.008 6.019 14 8 14c1.981 0 3.67-.992 4.933-2.078 1.27-1.091 2.187-2.345 2.637-3.023a1.619 1.619 0 000-1.798c-.45-.678-1.367-1.932-2.637-3.023C11.671 2.992 9.981 2 8 2zm0 8a2 2 0 100-4 2 2 0 000 4z"></path></svg>
Unwatch
</span>
</div>
</button>
<button type="submit" name="do" value="ignore" class="select-menu-item width-full" aria-checked="false" role="menuitemradio">
<svg class="octicon octicon-check select-menu-item-icon" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
<div class="select-menu-item-text">
<span class="select-menu-item-heading">Ignoring</span>
<span class="description">Never be notified.</span>
<span class="hidden-select-button-text" data-menu-button-contents="">
<svg class="octicon octicon-bell-slash" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5c-.997 0-1.895.416-2.534 1.086A.75.75 0 014.38 1.55 5 5 0 0113 5v2.373a.75.75 0 01-1.5 0V5A3.5 3.5 0 008 1.5zM4.182 4.31L1.19 2.143a.75.75 0 10-.88 1.214L3 5.305v2.642a.25.25 0 01-.042.139L1.255 10.64A1.518 1.518 0 002.518 13h11.108l1.184.857a.75.75 0 10.88-1.214l-1.375-.996a1.196 1.196 0 00-.013-.01L4.198 4.321a.733.733 0 00-.016-.011zm7.373 7.19L4.5 6.391v1.556c0 .346-.102.683-.294.97l-1.703 2.556a.018.018 0 00-.003.01.015.015 0 00.005.012.017.017 0 00.006.004l.007.001h9.037zM8 16a2 2 0 001.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 008 16z"></path></svg>
Stop ignoring
</span>
</div>
</button>
</div>
</details-menu>
</details>
<a class="social-count js-social-count" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/watchers" aria-label="6 users are watching this repository">
6
</a>
</form>
</li>
<li>
<div class="d-block js-toggler-container js-social-container starring-container ">
<form class="starred js-social-form" action="/Ocelot-Social-Community/Ocelot-Social/unstar" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="eyPI/UB0acqfILgIiiHJ62ATamvFt8P1DarX9YUTLDi9STnWMdwtpg/+SZygVPIH0A4eqkmrFSGU637Cfoj09A==">
<input type="hidden" name="context" value="repository">
<button type="submit" class="btn btn-sm btn-with-count js-toggler-target" aria-label="Unstar this repository" title="Unstar Ocelot-Social-Community/Ocelot-Social" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;UNSTAR_BUTTON&quot;,&quot;repository_id&quot;:301151089,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="ecdbc243ee76cb6483e1131ca75df17594f8009d952498b7368a738b7d5e7ae1" data-ga-click="Repository, click unstar button, action:pull_requests#show; text:Unstar"> <svg class="octicon octicon-star-fill" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25z"></path></svg>
Unstar
</button> <a class="social-count js-social-count" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/stargazers" aria-label="14 users starred this repository">
14
</a>
</form>
<form class="unstarred js-social-form" action="/Ocelot-Social-Community/Ocelot-Social/star" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="+WfOFUSZkCY7ihV9F57BjQIZid8wQLHyzNvj5/IfrM/uwrLgmvYOhRynxkyNlZhuG7cWlO9bEYLyvGVNCaMQ+Q==">
<input type="hidden" name="context" value="repository">
<button type="submit" class="btn btn-sm btn-with-count js-toggler-target" aria-label="Unstar this repository" title="Star Ocelot-Social-Community/Ocelot-Social" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;STAR_BUTTON&quot;,&quot;repository_id&quot;:301151089,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="9ea43a1c036262a8028bed93c870c39977885f2952b083922683ac246c50e288" data-ga-click="Repository, click star button, action:pull_requests#show; text:Star"> <svg class="octicon octicon-star" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25zm0 2.445L6.615 5.5a.75.75 0 01-.564.41l-3.097.45 2.24 2.184a.75.75 0 01.216.664l-.528 3.084 2.769-1.456a.75.75 0 01.698 0l2.77 1.456-.53-3.084a.75.75 0 01.216-.664l2.24-2.183-3.096-.45a.75.75 0 01-.564-.41L8 2.694v.001z"></path></svg>
Star
</button> <a class="social-count js-social-count" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/stargazers" aria-label="14 users starred this repository">
14
</a>
</form> </div>
</li>
<li>
<div class="float-left">
<details class="details-reset details-overlay details-overlay-dark ">
<summary class="btn btn-sm btn-with-count" title="Fork your own copy of Ocelot-Social-Community/Ocelot-Social to your account" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;FORK_BUTTON&quot;,&quot;repository_id&quot;:301151089,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="bf7d21c35069f4237a6cea1924227e9a032f9137113b2881664462ab2c57f63b" data-ga-click="Repository, show fork modal, action:pull_requests#show; text:Fork" role="button">
<svg class="octicon octicon-repo-forked" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M5 3.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm0 2.122a2.25 2.25 0 10-1.5 0v.878A2.25 2.25 0 005.75 8.5h1.5v2.128a2.251 2.251 0 101.5 0V8.5h1.5a2.25 2.25 0 002.25-2.25v-.878a2.25 2.25 0 10-1.5 0v.878a.75.75 0 01-.75.75h-4.5A.75.75 0 015 6.25v-.878zm3.75 7.378a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm3-8.75a.75.75 0 100-1.5.75.75 0 000 1.5z"></path></svg>
Fork
</summary>
<details-dialog class="Box d-flex flex-column anim-fade-in fast Box--overlay" aria-label="Fork Ocelot-Social" src="/Ocelot-Social-Community/Ocelot-Social/fork?fragment=1" preload="" role="dialog" aria-modal="true">
<div class="Box-header">
<button class="Box-btn-octicon btn-octicon float-right" type="button" aria-label="Close dialog" data-close-dialog="">
<svg class="octicon octicon-x" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<h1 class="Box-title">Fork Ocelot-Social</h1>
</div>
<div class="text-center overflow-auto">
<include-fragment>
<div class="octocat-spinner my-5" aria-label="Loading..."></div>
<p class="f5 text-gray">If this dialog fails to load, you can visit <a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/fork">the fork page</a> directly.</p>
</include-fragment>
</div>
</details-dialog>
</details>
</div>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/network/members" class="social-count" aria-label="3 users forked this repository">
3
</a>
</li>
</ul>
</div>
<nav aria-label="Repository" data-pjax="#js-repo-pjax-container" class="js-repo-nav js-sidenav-container-pjax js-responsive-underlinenav overflow-hidden UnderlineNav px-3 px-md-4 px-lg-5 bg-gray-light">
<ul class="UnderlineNav-body list-style-none ">
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="code-tab" data-hotkey="g c" data-ga-click="Repository, Navigation click, Code tab" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages repo_deployments /Ocelot-Social-Community/Ocelot-Social" href="https://github.com/Ocelot-Social-Community/Ocelot-Social">
<svg class="octicon octicon-code UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M4.72 3.22a.75.75 0 011.06 1.06L2.06 8l3.72 3.72a.75.75 0 11-1.06 1.06L.47 8.53a.75.75 0 010-1.06l4.25-4.25zm6.56 0a.75.75 0 10-1.06 1.06L13.94 8l-3.72 3.72a.75.75 0 101.06 1.06l4.25-4.25a.75.75 0 000-1.06l-4.25-4.25z"></path></svg>
<span data-content="Code">Code</span>
<span title="Not available" class="Counter "></span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="issues-tab" data-hotkey="g i" data-ga-click="Repository, Navigation click, Issues tab" data-selected-links="repo_issues repo_labels repo_milestones /Ocelot-Social-Community/Ocelot-Social/issues" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues">
<svg class="octicon octicon-issue-opened UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm9 3a1 1 0 11-2 0 1 1 0 012 0zm-.25-6.25a.75.75 0 00-1.5 0v3.5a.75.75 0 001.5 0v-3.5z"></path></svg>
<span data-content="Issues">Issues</span>
<span title="185" class="Counter ">185</span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item selected UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="pull-requests-tab" data-hotkey="g p" data-ga-click="Repository, Navigation click, Pull requests tab" aria-current="page" data-selected-links="repo_pulls checks /Ocelot-Social-Community/Ocelot-Social/pulls" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pulls">
<svg class="octicon octicon-git-pull-request UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"></path></svg>
<span data-content="Pull requests">Pull requests</span>
<span title="79" class="Counter ">79</span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="actions-tab" data-hotkey="g a" data-ga-click="Repository, Navigation click, Actions tab" data-selected-links="repo_actions /Ocelot-Social-Community/Ocelot-Social/actions" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/actions">
<svg class="octicon octicon-play UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zM6.379 5.227A.25.25 0 006 5.442v5.117a.25.25 0 00.379.214l4.264-2.559a.25.25 0 000-.428L6.379 5.227z"></path></svg>
<span data-content="Actions">Actions</span>
<span title="Not available" class="Counter "></span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="projects-tab" data-hotkey="g b" data-ga-click="Repository, Navigation click, Projects tab" data-selected-links="repo_projects new_repo_project repo_project /Ocelot-Social-Community/Ocelot-Social/projects" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/projects">
<svg class="octicon octicon-project UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<span data-content="Projects">Projects</span>
<span title="0" class="Counter " hidden="hidden">0</span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="wiki-tab" data-hotkey="g w" data-ga-click="Repository, Navigation click, Wikis tab" data-selected-links="repo_wiki /Ocelot-Social-Community/Ocelot-Social/wiki" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/wiki">
<svg class="octicon octicon-book UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M0 1.75A.75.75 0 01.75 1h4.253c1.227 0 2.317.59 3 1.501A3.744 3.744 0 0111.006 1h4.245a.75.75 0 01.75.75v10.5a.75.75 0 01-.75.75h-4.507a2.25 2.25 0 00-1.591.659l-.622.621a.75.75 0 01-1.06 0l-.622-.621A2.25 2.25 0 005.258 13H.75a.75.75 0 01-.75-.75V1.75zm8.755 3a2.25 2.25 0 012.25-2.25H14.5v9h-3.757c-.71 0-1.4.201-1.992.572l.004-7.322zm-1.504 7.324l.004-5.073-.002-2.253A2.25 2.25 0 005.003 2.5H1.5v9h3.757a3.75 3.75 0 011.994.574z"></path></svg>
<span data-content="Wiki">Wiki</span>
<span title="Not available" class="Counter "></span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="security-tab" data-hotkey="g s" data-ga-click="Repository, Navigation click, Security tab" data-selected-links="security overview alerts policy token_scanning code_scanning /Ocelot-Social-Community/Ocelot-Social/security" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/security">
<svg class="octicon octicon-shield UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.467.133a1.75 1.75 0 011.066 0l5.25 1.68A1.75 1.75 0 0115 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.7 1.7 0 01-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 011.217-1.667l5.25-1.68zm.61 1.429a.25.25 0 00-.153 0l-5.25 1.68a.25.25 0 00-.174.238V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297a.2.2 0 00.154 0c2.245-.956 3.582-2.104 4.366-3.298C13.225 9.666 13.5 8.36 13.5 7V3.48a.25.25 0 00-.174-.237l-5.25-1.68zM9 10.5a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.75a.75.75 0 10-1.5 0v3a.75.75 0 001.5 0v-3z"></path></svg>
<span data-content="Security">Security</span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="insights-tab" data-ga-click="Repository, Navigation click, Insights tab" data-selected-links="repo_graphs repo_contributors dependency_graph dependabot_updates pulse people /Ocelot-Social-Community/Ocelot-Social/pulse" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pulse">
<svg class="octicon octicon-graph UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 1.75a.75.75 0 00-1.5 0v12.5c0 .414.336.75.75.75h14.5a.75.75 0 000-1.5H1.5V1.75zm14.28 2.53a.75.75 0 00-1.06-1.06L10 7.94 7.53 5.47a.75.75 0 00-1.06 0L3.22 8.72a.75.75 0 001.06 1.06L7 7.06l2.47 2.47a.75.75 0 001.06 0l5.25-5.25z"></path></svg>
<span data-content="Insights">Insights</span>
<span title="Not available" class="Counter "></span>
</a> </li>
<li class="d-flex">
<a class="js-selected-navigation-item UnderlineNav-item hx_underlinenav-item no-wrap js-responsive-underlinenav-item" data-tab-item="settings-tab" data-ga-click="Repository, Navigation click, Settings tab" data-selected-links="repo_settings repo_branch_settings hooks integration_installations repo_keys_settings issue_template_editor secrets_settings key_links_settings repo_actions_settings notifications /Ocelot-Social-Community/Ocelot-Social/settings" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/settings">
<svg class="octicon octicon-gear UnderlineNav-octicon d-none d-sm-inline" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
<span data-content="Settings">Settings</span>
<span title="Not available" class="Counter "></span>
</a> </li>
</ul> <div class="position-absolute right-0 pr-3 pr-md-4 pr-lg-5 js-responsive-underlinenav-overflow" style="visibility:hidden;">
<details class="details-overlay details-reset position-relative">
<summary role="button">
<div class="UnderlineNav-item mr-0 border-0">
<svg class="octicon octicon-kebab-horizontal" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path></svg>
<span class="sr-only">More</span>
</div>
</summary> <div>
<details-menu role="menu" class="dropdown-menu dropdown-menu-sw ">
<ul>
<li data-menu-item="code-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social" href="https://github.com/Ocelot-Social-Community/Ocelot-Social">
Code
</a> </li>
<li data-menu-item="issues-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/issues" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues">
Issues
</a> </li>
<li data-menu-item="pull-requests-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/pulls" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pulls">
Pull requests
</a> </li>
<li data-menu-item="actions-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/actions" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/actions">
Actions
</a> </li>
<li data-menu-item="projects-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/projects" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/projects">
Projects
</a> </li>
<li data-menu-item="wiki-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/wiki" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/wiki">
Wiki
</a> </li>
<li data-menu-item="security-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/security" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/security">
Security
</a> </li>
<li data-menu-item="insights-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/pulse" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pulse">
Insights
</a> </li>
<li data-menu-item="settings-tab" hidden="">
<a role="menuitem" class="js-selected-navigation-item dropdown-item" data-selected-links=" /Ocelot-Social-Community/Ocelot-Social/settings" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/settings">
Settings
</a> </li>
</ul>
</details-menu>
</div></details> </div>
</nav>
</div>
<div class="container-xl clearfix new-discussion-timeline px-3 px-md-4 px-lg-5">
<div class="repository-content ">
<div class="js-check-all-container" data-pjax="">
<div id="js-report-pull-request-refresh" data-hydro-view="{&quot;event_type&quot;:&quot;pull-request-refresh&quot;,&quot;payload&quot;:{&quot;pull_request_id&quot;:518410600,&quot;tab_context&quot;:&quot;conversation&quot;,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-view-hmac="c6014f1ba086e4b8c39947d53c3b08cbc30a1f67485e3cd36aef78a75234203e"></div>
<div class="clearfix js-issues-results">
<div id="partial-discussion-header" class="gh-header mb-3 js-details-container Details js-socket-channel js-updatable-content pull request js-pull-header-details" data-channel="eyJjIjoicHVsbF9yZXF1ZXN0OjUxODQxMDYwMCIsInQiOjE2MDU1MjgxMDB9--055cc25eab20a285a730bd94f2e390e260c4fd60badd141531d38e2943208e75" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/show_partial?partial=pull_requests%2Ftitle&amp;sticky=true" data-pull-is-open="true" data-gid="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
<div class="gh-header-show ">
<div class="d-flex flex-column flex-md-row">
<div class="gh-header-actions mt-0 mt-md-2 mb-3 mb-md-0 ml-0 flex-md-order-1 flex-shrink-0 d-flex flex-items-start">
<button type="button" class="btn btn-sm js-details-target d-inline-block float-none m-0 mr-md-0" aria-expanded="false" aria-label="Edit Pull Request title" data-ga-click="Issues, edit issue, view:issue_show location:issue_header style:button logged_in:true">Edit</button>
<details class="details-reset details-overlay position-relative d-none d-md-inline-block">
<summary class="btn btn-sm float-none" data-hydro-click="{&quot;event_type&quot;:&quot;pull_request.local_checkout&quot;,&quot;payload&quot;:{&quot;action&quot;:&quot;EXPAND&quot;,&quot;client_type&quot;:&quot;ANY&quot;,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="ff07d8c1c428fc096c22eaafefce44412d49a3e0bc7dd40bffeb21c18b114690">
Open with
<span class="dropdown-caret"></span>
</summary>
<tab-container class="mt-1 position-absolute Box box-shadow-medium text-gray-dark right-0" style="width:310px; z-index:81">
<!-- '"` --><!-- </textarea></xmp> --><form action="/users/checkout-preference" accept-charset="UTF-8" data-remote="true" method="post"><input type="hidden" name="authenticity_token" value="QHrwGfcT7W+rBt68EfzzOl7nediwr06WTxXbRcvkm1ZLZcrD5pnrhs1cey1d55T6RQRpLw2gp2cDKLeHhWfoNg==">
<div class="UnderlineNav px-3" role="tablist">
<div class="UnderlineNav-body">
<button name="type" type="submit" class="UnderlineNav-item flex-1 btn-link" value="cli" role="tab" aria-selected="false" data-hydro-click="{&quot;event_type&quot;:&quot;pull_request.local_checkout&quot;,&quot;payload&quot;:{&quot;action&quot;:&quot;SELECT&quot;,&quot;client_type&quot;:&quot;CLI&quot;,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="dd0f908bf8361670dd034bb46413807d635424f3790ddfeaadc0637ef532ae42" tabindex="-1">
GitHub CLI
</button> </div>
</div>
</form>
<div role="tabpanel" class="p-3" hidden="">
<p class="text-gray text-small js-show-for-platform" data-platforms="mac" hidden="">
<strong>Step 1:</strong>
Install GitHub CLI
</p>
<div class="copyable-terminal mb-3 js-show-for-platform" data-platforms="mac" hidden="">
<div class="copyable-terminal-button">
<clipboard-copy for="checkout-cli-help-step-1" aria-label="Copy to clipboard" class="btn btn-sm zeroclipboard-button" data-copy-feedback="Copied!" tabindex="0" role="button">
<svg class="octicon octicon-clippy" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg>
</clipboard-copy>
</div>
<pre id="checkout-cli-help-step-1" class="copyable-terminal-content"><span class="user-select-contain">brew install gh</span></pre>
</div>
<p class="text-gray text-small">
<strong class="js-show-for-platform" data-platforms="mac" hidden="">Step 2:</strong>
Run in your project repository
</p>
<div class="copyable-terminal">
<div class="copyable-terminal-button">
<clipboard-copy for="checkout-cli-help-step-2" class="btn btn-sm zeroclipboard-button" role="button" tabindex="0" aria-label="Copy to clipboard" data-copy-feedback="Copied!" data-hydro-click="{&quot;event_type&quot;:&quot;pull_request.local_checkout&quot;,&quot;payload&quot;:{&quot;action&quot;:&quot;COPY&quot;,&quot;client_type&quot;:&quot;CLI&quot;,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="a2bfaa1c737849bdcc3c9d297e6b31824b468b26f193694a6cfa52b78d3272de">
<svg class="octicon octicon-clippy" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg>
</clipboard-copy> </div>
<pre id="checkout-cli-help-step-2" class="copyable-terminal-content"><span class="user-select-contain">gh pr checkout 3934</span></pre>
</div>
<a class="mt-3 text-small d-block js-show-for-platform" data-platforms="mac" href="https://github.com/cli/cli#installation" target="_blank" hidden="">
Install GitHub CLI manually
</a>
<a class="mt-3 text-small d-block js-hide-for-platform" data-platforms="mac" href="https://github.com/cli/cli#installation" target="_blank">
How to install GitHub CLI
</a>
</div>
</tab-container>
</details>
<div class="flex-auto text-right d-block d-md-none">
<a href="#issue-comment-box" class="py-1">Jump to bottom</a>
</div>
</div>
<h1 class="gh-header-title mb-2 lh-condensed f1 mr-0 flex-auto break-word">
<span class="js-issue-title">
feat: [WIP] 🍰 Rebranding And White-Labeling
</span>
<span class="f1-light text-gray-light">#3934</span>
</h1>
</div>
</div>
<div class="gh-header-edit mb-2">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-issue-update js-comment d-flex flex-column flex-md-row" id="edit_header_739815777" action="/Ocelot-Social-Community/Ocelot-Social/issues/3934" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="qeh4CSfMNuPATen4p+0lZznHKqbZyUcC5/HBJgoabh6ZM/YiLfqtxrXnhaNXV6W1JtmOlxgZIKqnM77AKdbZow==">
<input class="form-control js-quick-submit flex-auto input-lg input-contrast mr-0 mr-md-3" autofocus="autofocus" autocomplete="off" aria-label="Pull Request title" type="text" value="feat: [WIP] 🍰 Rebranding And White-Labeling " name="issue[title]" id="issue_title">
<div class="mt-2 mt-md-0">
<button class="btn mr-2" type="submit" data-disable-with="Updating" data-ga-click="Issues, edit issue save, view:issue_show location:issue_header style:button logged_in:true">Save</button>
<button class="btn-link js-details-target js-cancel-issue-edit" type="button" aria-expanded="true" data-ga-click="Issues, edit issue cancel, view:issue_show location:issue_header style:button logged_in:true">Cancel</button>
</div>
</form> <div class="comment-form-error js-comment-form-error" role="alert" hidden=""></div>
</div>
<div class="d-flex flex-items-center flex-wrap mt-0 gh-header-meta">
<div class="flex-shrink-0 mb-2 flex-self-start flex-md-self-center">
<span title="Status: Open" class="State State--green ">
<svg height="16" class="octicon octicon-git-pull-request" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"></path></svg> Open
</span>
</div>
<div class="flex-auto min-width-0 mb-2">
<a class="author link-gray text-bold css-truncate css-truncate-target expandable" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">Mogge</a>
wants to merge
<span class="js-updating-pull-request-commits-count">39</span>
commits into
<span title="Ocelot-Social-Community/Ocelot-Social:master" class="commit-ref css-truncate user-select-contain expandable base-ref"><a title="Ocelot-Social-Community/Ocelot-Social:master" class="no-underline " href="https://github.com/Ocelot-Social-Community/Ocelot-Social"><span class="css-truncate-target">master</span></a></span><span></span>
<div class="commit-ref-dropdown">
<details class="details-reset details-overlay select-menu commitish-suggester">
<summary class="btn btn-sm select-menu-button branch" title="Choose a base branch" aria-haspopup="menu" role="button">
<i>base:</i>
<span class="css-truncate css-truncate-target" title="master">master</span>
</summary>
<details-menu class="select-menu-modal position-absolute js-pull-base-branch-menu" data-menu-input="pull-change-base-branch-field" style="z-index: 90;" src="/Ocelot-Social-Community/Ocelot-Social/pull/3934/show_partial?partial=pull_requests%2Fdescription_branches_dropdown" preload="" role="menu">
<include-fragment class="select-menu-loading-overlay anim-pulse" aria-label="Loading">
<svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg>
</include-fragment>
</details-menu>
</details>
<!-- '"` --><!-- </textarea></xmp> --><form id="change-base-form" action="/Ocelot-Social-Community/Ocelot-Social/pull/3934/change_base" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="aX2kSdPxsTl2JBPNhmyJps2KEcf2YG2/vkSZNem5CpVE0IyxUcRGKZaF5jO6DWscPKAKSvCMf9qkdxbSafpsiA==">
<input type="hidden" id="pull-change-base-branch-field" name="new_base_binary">
</form> </div>
from
<span title="Ocelot-Social-Community/Ocelot-Social:white-labeling" class="commit-ref css-truncate user-select-contain expandable head-ref"><a title="Ocelot-Social-Community/Ocelot-Social:white-labeling" class="no-underline " href="https://github.com/Ocelot-Social-Community/Ocelot-Social/tree/white-labeling"><span class="css-truncate-target">white-labeling</span></a></span><span><clipboard-copy class="js-clipboard-copy zeroclipboard-link text-gray link-hover-blue" value="white-labeling" aria-label="Copy" data-copy-feedback="Copied!" tabindex="0" role="button"><svg class="octicon octicon-clippy d-inline-block mx-1 js-clipboard-clippy-icon" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg><svg class="octicon octicon-check js-clipboard-check-icon mx-1 d-inline-block d-none text-green" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg></clipboard-copy></span>
</div>
</div>
<div style="visibility: hidden; display: none; height: 1px;" class="js-sticky-offset-scroll top-0 gh-header-sticky is-placeholder"></div><div class="js-sticky js-sticky-offset-scroll top-0 gh-header-sticky" style="position: static; top: 0px !important; left: 344px; width: 1216px;" data-original-top="0px">
<div class="sticky-content">
<div class="d-flex flex-items-center flex-justify-between mt-2">
<div class="d-flex flex-row flex-items-center min-width-0">
<div class="mr-2 mb-2 flex-shrink-0">
<span title="Status: Open" class="State State--green ">
<svg height="16" class="octicon octicon-git-pull-request" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.177 3.073L9.573.677A.25.25 0 0110 .854v4.792a.25.25 0 01-.427.177L7.177 3.427a.25.25 0 010-.354zM3.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122v5.256a2.251 2.251 0 11-1.5 0V5.372A2.25 2.25 0 011.5 3.25zM11 2.5h-1V4h1a1 1 0 011 1v5.628a2.251 2.251 0 101.5 0V5A2.5 2.5 0 0011 2.5zm1 10.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM3.75 12a.75.75 0 100 1.5.75.75 0 000-1.5z"></path></svg> Open
</span>
</div>
<div class="min-width-0 mr-2 mb-2">
<h1 class="d-flex text-bold f5">
<a class="js-issue-title css-truncate css-truncate-target link-gray-dark width-fit" href="#">feat: [WIP] 🍰 Rebranding And White-Labeling </a>
<span class="gh-header-number text-gray-light pl-1">#3934</span>
</h1>
<div class="meta text-gray-light css-truncate css-truncate-target d-block width-fit">
<a class="author link-gray text-bold css-truncate css-truncate-target expandable" data-hovercard-z-index-override="111" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">Mogge</a>
wants to merge
<span class="js-updating-pull-request-commits-count">39</span>
commits into
<span title="Ocelot-Social-Community/Ocelot-Social:master" class="commit-ref css-truncate user-select-contain expandable "><a title="Ocelot-Social-Community/Ocelot-Social:master" class="no-underline " href="https://github.com/Ocelot-Social-Community/Ocelot-Social"><span class="css-truncate-target">master</span></a></span><span></span>
from
<span title="Ocelot-Social-Community/Ocelot-Social:white-labeling" class="commit-ref css-truncate user-select-contain expandable head-ref"><a title="Ocelot-Social-Community/Ocelot-Social:white-labeling" class="no-underline " href="https://github.com/Ocelot-Social-Community/Ocelot-Social/tree/white-labeling"><span class="css-truncate-target">white-labeling</span></a></span><span><clipboard-copy class="js-clipboard-copy zeroclipboard-link text-gray link-hover-blue" value="white-labeling" aria-label="Copy" data-copy-feedback="Copied!" tabindex="0" role="button"><svg class="octicon octicon-clippy d-inline-block mx-1 js-clipboard-clippy-icon" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg><svg class="octicon octicon-check js-clipboard-check-icon mx-1 d-inline-block d-none text-green" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg></clipboard-copy></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="gh-header-shadow box-shadow js-notification-shelf-offset-top" data-original-top="auto" style="top: 0px !important;"></div>
</div>
<div class="px-3 px-md-0 ml-n3 mr-n3 mx-md-0 tabnav">
<div class="tabnav-extra float-right d-none d-md-block">
<span class="diffstat" id="diffstat">
<span class="text-green">
+1,364
</span>
<span class="text-red">
1,229
</span>
<span class="tooltipped tooltipped-s" aria-label="2,593 lines changed">
<span class="diffstat-block-added"></span><span class="diffstat-block-added"></span><span class="diffstat-block-deleted"></span><span class="diffstat-block-deleted"></span><span class="diffstat-block-neutral"></span>
</span>
</span>
</div>
<nav class="tabnav-tabs d-flex overflow-auto">
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934" class="tabnav-tab flex-shrink-0 selected js-pjax-history-navigate">
<svg class="octicon octicon-comment-discussion d-none d-md-inline-block" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 2.75a.25.25 0 01.25-.25h8.5a.25.25 0 01.25.25v5.5a.25.25 0 01-.25.25h-3.5a.75.75 0 00-.53.22L3.5 11.44V9.25a.75.75 0 00-.75-.75h-1a.25.25 0 01-.25-.25v-5.5zM1.75 1A1.75 1.75 0 000 2.75v5.5C0 9.216.784 10 1.75 10H2v1.543a1.457 1.457 0 002.487 1.03L7.061 10h3.189A1.75 1.75 0 0012 8.25v-5.5A1.75 1.75 0 0010.25 1h-8.5zM14.5 4.75a.25.25 0 00-.25-.25h-.5a.75.75 0 110-1.5h.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0114.25 12H14v1.543a1.457 1.457 0 01-2.487 1.03L9.22 12.28a.75.75 0 111.06-1.06l2.22 2.22v-2.19a.75.75 0 01.75-.75h1a.25.25 0 00.25-.25v-5.5z"></path></svg>
Conversation
<span id="conversation_tab_counter" title="0" class="Counter ">0</span>
</a>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits" class="tabnav-tab flex-shrink-0 js-pjax-history-navigate">
<svg class="octicon octicon-git-commit d-none d-md-inline-block" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
Commits
<span id="commits_tab_counter" title="39" class="js-updateable-pull-request-commits-count Counter ">39</span>
</a>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/checks" class="tabnav-tab flex-shrink-0 " data-skip-pjax="">
<svg class="octicon octicon-checklist d-none d-md-inline-block" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.5 1.75a.25.25 0 01.25-.25h8.5a.25.25 0 01.25.25v7.736a.75.75 0 101.5 0V1.75A1.75 1.75 0 0011.25 0h-8.5A1.75 1.75 0 001 1.75v11.5c0 .966.784 1.75 1.75 1.75h3.17a.75.75 0 000-1.5H2.75a.25.25 0 01-.25-.25V1.75zM4.75 4a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5zM4 7.75A.75.75 0 014.75 7h2a.75.75 0 010 1.5h-2A.75.75 0 014 7.75zm11.774 3.537a.75.75 0 00-1.048-1.074L10.7 14.145 9.281 12.72a.75.75 0 00-1.062 1.058l1.943 1.95a.75.75 0 001.055.008l4.557-4.45z"></path></svg>
Checks
<span id="checks_tab_counter" title="2" class="Counter ">2</span>
</a>
<link rel="pjax-prefetch" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/files">
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/files" class="tabnav-tab flex-shrink-0 js-pjax-history-navigate">
<svg class="octicon octicon-file-diff d-none d-md-inline-block" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.75 1.5a.25.25 0 00-.25.25v12.5c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V4.664a.25.25 0 00-.073-.177l-2.914-2.914a.25.25 0 00-.177-.073H2.75zM1 1.75C1 .784 1.784 0 2.75 0h7.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0113.25 16H2.75A1.75 1.75 0 011 14.25V1.75zm7 1.5a.75.75 0 01.75.75v1.5h1.5a.75.75 0 010 1.5h-1.5v1.5a.75.75 0 01-1.5 0V7h-1.5a.75.75 0 010-1.5h1.5V4A.75.75 0 018 3.25zm-3 8a.75.75 0 01.75-.75h4.5a.75.75 0 010 1.5h-4.5a.75.75 0 01-.75-.75z"></path></svg>
Files changed
<span id="files_tab_counter" title="124" class="Counter ">124</span>
</a>
</nav>
</div>
<h2 class="sr-only">Conversation</h2>
<div id="discussion_bucket" class="pull-request-tab-content is-visible js-socket-channel js-updatable-content" data-channel="eyJjIjoicHVsbF9yZXF1ZXN0OjUxODQxMDYwMDp0aW1lbGluZSIsInQiOjE2MDU1MjgxMDB9--db5367060292afa9e9f6495e4a87167f1258f1628ba792cd13b69101f5a8bfcb">
<div class="gutter-condensed gutter-lg flex-column flex-md-row d-flex">
<div class="flex-shrink-0 col-12 col-md-9 mb-4 mb-md-0">
<div class="pull-discussion-timeline js-pull-discussion-timeline js-quote-selection-container js-review-state-classes" data-quote-markdown=".js-comment-body" data-issue-and-pr-hovercards-enabled="" data-team-hovercards-enabled="">
<div class="js-discussion js-socket-channel ml-0 pl-0 ml-md-6 pl-md-3" data-channel="eyJjIjoibWFya2VkLWFzLXJlYWQ6MTU4ODIyNDEiLCJ0IjoxNjA1NTI4MTAwfQ==--e090bf0231c298f3cb4b92cbe76ff595735fd13380798e258a4a650b011fee78" data-channel-target="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
<div class="TimelineItem pt-0 js-comment-container js-socket-channel js-updatable-content" data-gid="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw" data-url="/_render_node/MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw/pull_requests/body?variables%5BdeferredCommentActions%5D=false&amp;variables%5BdisableCommentChecks%5D=false" data-channel="eyJjIjoicHVsbF9yZXF1ZXN0OjUxODQxMDYwMCIsInQiOjE2MDU1MjgxMDB9--055cc25eab20a285a730bd94f2e390e260c4fd60badd141531d38e2943208e75">
<div class="avatar-parent-child TimelineItem-avatar d-none d-md-block">
<a class="d-inline-block" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge"><img class="avatar rounded-1 avatar-user" alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_003.png" width="40" height="40"></a>
</div>
<div class="timeline-comment-group js-minimizable-comment-group js-targetable-element TimelineItem-body my-0 " id="issue-518410600">
<div class="ml-n3 timeline-comment unminimized-comment comment previewable-edit js-task-list-container editable-comment js-comment timeline-comment--caret reorderable-task-lists current-user" data-body-version="ba6da86b49c35174f13cbb46e691b96ad7eeabead95f394ecf0d04c15fd57593" data-unfurl-hide-url="/content_reference_attachments/hide">
<input type="hidden" value="huqa/PmgdAvmQKmK97wn/i2iJQVKKm2EtFqaYb6hagCoOtYDgbe4BUtcJXD+faahatxobjVp8HuemLMLNBPP2g==" data-csrf="true" class="js-data-unfurl-hide-url-csrf">
<div class="timeline-comment-header clearfix d-block d-sm-flex">
<div class="timeline-comment-actions flex-shrink-0">
<details class="details-overlay details-reset position-relative js-reaction-popover-container js-comment-header-reaction-button d-none d-md-inline-block">
<summary class="btn-link Link--secondary timeline-comment-action" aria-label="Add your reaction" aria-haspopup="menu" role="button">
<svg class="octicon octicon-smiley" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zM5 8a1 1 0 100-2 1 1 0 000 2zm7-1a1 1 0 11-2 0 1 1 0 012 0zM5.32 9.636a.75.75 0 011.038.175l.007.009c.103.118.22.222.35.31.264.178.683.37 1.285.37.602 0 1.02-.192 1.285-.371.13-.088.247-.192.35-.31l.007-.008a.75.75 0 111.222.87l-.614-.431c.614.43.614.431.613.431v.001l-.001.002-.002.003-.005.007-.014.019a1.984 1.984 0 01-.184.213c-.16.166-.338.316-.53.445-.63.418-1.37.638-2.127.629-.946 0-1.652-.308-2.126-.63a3.32 3.32 0 01-.715-.657l-.014-.02-.005-.006-.002-.003v-.002h-.001l.613-.432-.614.43a.75.75 0 01.183-1.044h.001z"></path></svg>
</summary>
<details-menu class="js-add-reaction-popover anim-scale-in dropdown-menu dropdown-menu-sw mr-n1 mt-n1" aria-label="Pick your reaction" style="width: 150px" role="menu">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-pick-reaction" action="/Ocelot-Social-Community/Ocelot-Social/reactions" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="zPXPt5a/O7q8jPyUD+C9TCUa3JMYKenX2JEuxOq0wdk+DP9dkQkQ8n3JB10hYNi2YwCliv2MrWJ9Qm2KIa7xaQ==">
<p class="text-gray mx-2 my-1">
<span class="js-reaction-description">Pick your reaction</span>
</p>
<div role="none" class="dropdown-divider"></div>
<div class="clearfix d-flex flex-wrap m-1 ml-2 mt-0">
<input type="hidden" name="input[subjectId]" value="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="+1" name="input[content]" aria-label="React with thumbs up emoji" value="THUMBS_UP react">
<g-emoji alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png" class="emoji"><img class="emoji" alt="+1" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f44d.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="-1" name="input[content]" aria-label="React with thumbs down emoji" value="THUMBS_DOWN react">
<g-emoji alias="-1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44e.png" class="emoji"><img class="emoji" alt="-1" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f44e.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Laugh" name="input[content]" aria-label="React with laugh emoji" value="LAUGH react">
<g-emoji alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png" class="emoji"><img class="emoji" alt="smile" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f604.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Hooray" name="input[content]" aria-label="React with hooray emoji" value="HOORAY react">
<g-emoji alias="tada" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f389.png" class="emoji"><img class="emoji" alt="tada" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f389.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Confused" name="input[content]" aria-label="React with confused emoji" value="CONFUSED react">
<g-emoji alias="thinking_face" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f615.png" class="emoji"><img class="emoji" alt="thinking_face" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f615.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Heart" name="input[content]" aria-label="React with heart emoji" value="HEART react">
<g-emoji alias="heart" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2764.png" class="emoji"><img class="emoji" alt="heart" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2764.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Rocket" name="input[content]" aria-label="React with rocket emoji" value="ROCKET react">
<g-emoji alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png" class="emoji"><img class="emoji" alt="rocket" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f680.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Eyes" name="input[content]" aria-label="React with eyes emoji" value="EYES react">
<g-emoji alias="eyes" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f440.png" class="emoji"><img class="emoji" alt="eyes" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f440.png" width="20" height="20"></g-emoji>
</button>
</div>
</form></details-menu>
</details>
<details class="details-overlay details-reset position-relative d-inline-block ">
<summary class="btn-link timeline-comment-action link-gray" aria-haspopup="menu" role="button">
<svg aria-label="Show options" class="octicon octicon-kebab-horizontal" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path d="M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path></svg>
</summary>
<details-menu class="dropdown-menu dropdown-menu-sw show-more-popover text-gray-dark anim-scale-in" style="width:185px" role="menu">
<clipboard-copy class="dropdown-item btn-link" for="pullrequest-518410600-permalink" role="menuitem" tabindex="0">
Copy link
</clipboard-copy>
<button type="button" class="dropdown-item btn-link d-none js-comment-quote-reply" role="menuitem">
Quote reply
</button>
<div role="none" class="dropdown-divider"></div>
<button type="button" class="dropdown-item btn-link js-comment-edit-button" role="menuitem" aria-label="Edit comment">
Edit
</button>
<div role="none" class="dropdown-divider"></div>
<a aria-label="Report abusive content" role="menuitem" class="dropdown-item btn-link" data-ga-click="Report content, reported by OWNER" href="https://github.com/contact/report-content?content_url=https%3A%2F%2Fgithub.com%2FOcelot-Social-Community%2FOcelot-Social%2Fpull%2F3934&amp;report=Mogge+%28user%29">
Report content
</a>
</details-menu>
</details>
</div>
<div class="d-none d-sm-flex">
<span class="timeline-comment-label text-bold tooltipped tooltipped-multiline tooltipped-s" aria-label="You are a member of the Ocelot.Social Community organization.">
Member
</span>
</div>
<h3 class="timeline-comment-header-text f5 text-normal">
<a class="d-inline-block d-md-none" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge"><img class="avatar rounded-1 avatar-user" alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" width="20" height="20"></a>
<strong class="css-truncate">
<a class="author link-gray-dark css-truncate-target width-fit" show_full_name="false" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">Mogge</a>
</strong>
commented
<a href="#issue-518410600" id="pullrequest-518410600-permalink" class="link-gray js-timestamp"><relative-time datetime="2020-11-10T11:11:18Z" class="no-wrap" title="Nov 10, 2020, 12:11 PM GMT+1">6 days ago</relative-time></a>
<span class="js-comment-edit-history">
</span>
</h3>
</div>
<div class="edit-comment-hide">
<task-lists sortable="">
<table class="d-block" data-paste-markdown-skip="">
<tbody class="d-block">
<tr class="d-block">
<td class="d-block comment-body markdown-body js-comment-body">
<h2><g-emoji class="g-emoji" alias="cake" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f370.png"><img class="emoji" alt="cake" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f370.png" width="20" height="20"></g-emoji> Pullrequest</h2>
<p>Have all the information for the brand in separate config files. Set these defaults to ocelot.social</p>
</td>
</tr>
</tbody>
</table>
</task-lists>
<div class="comment-reactions flex-items-center border-top js-reactions-container">
<details class="details-overlay details-reset dropdown hx_dropdown-fullscreen position-relative float-left d-inline-block reaction-popover-container reactions-menu js-reaction-popover-container">
<summary class="btn-link reaction-summary-item add-reaction-btn" aria-label="Add your reaction" aria-haspopup="menu" role="button">
<svg class="octicon octicon-smiley" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM8 0a8 8 0 100 16A8 8 0 008 0zM5 8a1 1 0 100-2 1 1 0 000 2zm7-1a1 1 0 11-2 0 1 1 0 012 0zM5.32 9.636a.75.75 0 011.038.175l.007.009c.103.118.22.222.35.31.264.178.683.37 1.285.37.602 0 1.02-.192 1.285-.371.13-.088.247-.192.35-.31l.007-.008a.75.75 0 111.222.87l-.614-.431c.614.43.614.431.613.431v.001l-.001.002-.002.003-.005.007-.014.019a1.984 1.984 0 01-.184.213c-.16.166-.338.316-.53.445-.63.418-1.37.638-2.127.629-.946 0-1.652-.308-2.126-.63a3.32 3.32 0 01-.715-.657l-.014-.02-.005-.006-.002-.003v-.002h-.001l.613-.432-.614.43a.75.75 0 01.183-1.044h.001z"></path></svg>
</summary>
<details-menu class="js-add-reaction-popover anim-scale-in dropdown-menu dropdown-menu-ne ml-2 mb-0" aria-label="Pick your reaction" style="width: 150px" role="menu">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-pick-reaction" action="/Ocelot-Social-Community/Ocelot-Social/reactions" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="vSIq/yFEkdJluDwFhZx3pc+A2z8uDMER1yyPCZssVqFP2xoVJvK6mqT9x8yrHBJfiZqiJsuphaRy/8xHUDZmEQ==">
<p class="text-gray mx-2 my-1">
<span class="js-reaction-description">Pick your reaction</span>
</p>
<div role="none" class="dropdown-divider"></div>
<div class="clearfix d-flex flex-wrap m-1 ml-2 mt-0">
<input type="hidden" name="input[subjectId]" value="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="+1" name="input[content]" aria-label="React with thumbs up emoji" value="THUMBS_UP react">
<g-emoji alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png" class="emoji"><img class="emoji" alt="+1" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f44d.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="-1" name="input[content]" aria-label="React with thumbs down emoji" value="THUMBS_DOWN react">
<g-emoji alias="-1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44e.png" class="emoji"><img class="emoji" alt="-1" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f44e.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Laugh" name="input[content]" aria-label="React with laugh emoji" value="LAUGH react">
<g-emoji alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png" class="emoji"><img class="emoji" alt="smile" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f604.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Hooray" name="input[content]" aria-label="React with hooray emoji" value="HOORAY react">
<g-emoji alias="tada" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f389.png" class="emoji"><img class="emoji" alt="tada" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f389.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Confused" name="input[content]" aria-label="React with confused emoji" value="CONFUSED react">
<g-emoji alias="thinking_face" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f615.png" class="emoji"><img class="emoji" alt="thinking_face" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f615.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Heart" name="input[content]" aria-label="React with heart emoji" value="HEART react">
<g-emoji alias="heart" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2764.png" class="emoji"><img class="emoji" alt="heart" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2764.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Rocket" name="input[content]" aria-label="React with rocket emoji" value="ROCKET react">
<g-emoji alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png" class="emoji"><img class="emoji" alt="rocket" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f680.png" width="20" height="20"></g-emoji>
</button>
<button type="submit" role="menuitem" class="btn-link col-3 flex-content-center flex-items-center no-underline add-reactions-options-item js-reaction-option-item" data-reaction-label="Eyes" name="input[content]" aria-label="React with eyes emoji" value="EYES react">
<g-emoji alias="eyes" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f440.png" class="emoji"><img class="emoji" alt="eyes" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1f440.png" width="20" height="20"></g-emoji>
</button>
</div>
</form></details-menu>
</details>
</div>
</div>
<!-- '"` --><!-- </textarea></xmp> --><form class="js-comment-update" id="issue-518410600-edit-form" action="/Ocelot-Social-Community/Ocelot-Social/issues/3934" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="ZqkJlO+oIT/di4/+qrYCEsyP2k4NAMV5HmE9jbp0ykRWcoe/5Z66Gqgh46VaDILA05F+f8zQotFeo0Jrmbh9+Q==">
<div class="js-previewable-comment-form previewable-comment-form write-selected" data-preview-url="/preview?markdown_unsupported=false&amp;repository=301151089">
<input type="hidden" value="Th0Kq6576FCts9ZAU5km5dVtGSl44QdePsBDTIAssfdwIdg0ATmKJrOPh71zaW8fmb4xNwsO4yNb5tsZ2PGD+A==" data-csrf="true" class="js-data-preview-url-csrf">
<div class="comment-form-head tabnav d-flex flex-justify-between mb-2 tabnav--responsive px-0 px-lg-2 d-flex flex-column border-bottom-0 flex-items-stretch border-lg-bottom border-gray-dark flex-lg-items-center flex-lg-row">
<nav class="tabnav-tabs mx-2 mx-lg-0 no-wrap d-flex flex-auto d-md-block" role="tablist">
<button type="button" class="btn-link tabnav-tab write-tab js-write-tab selected px-3 px-sm-6 px-md-3 flex-1 flex-md-auto" role="tab" aria-selected="true">Write</button>
<button type="button" class="btn-link tabnav-tab preview-tab js-preview-tab flex-1 flex-md-auto" role="tab">Preview</button>
</nav>
<div class="border-top d-md-none"></div>
<markdown-toolbar role="toolbar" aria-label="Composition" for="issue-518410600-body" class="js-details-container Details toolbar-commenting d-flex no-wrap flex-items-start flex-wrap px-2 pt-2 pt-lg-0 border-md-top border-lg-top-0" tabindex="0">
<div class="d-block d-md-none flex-auto">
<button data-md-button="" tabindex="-1" type="button" aria-label="Toggle text tools" aria-expanded="false" class="js-details-target btn-link toolbar-item no-underline py-2 mr-1">
<svg class="octicon octicon-typography" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6.21 8.5L4.574 3.594 2.857 8.5H6.21zm.5 1.5l.829 2.487a.75.75 0 001.423-.474L5.735 2.332a1.216 1.216 0 00-2.302-.018l-3.39 9.688a.75.75 0 001.415.496L2.332 10H6.71zm3.13-4.358C10.53 4.374 11.87 4 13 4c1.5 0 3 .939 3 2.601v5.649a.75.75 0 01-1.448.275C13.995 12.82 13.3 13 12.5 13c-.77 0-1.514-.231-2.078-.709-.577-.488-.922-1.199-.922-2.041 0-.694.265-1.411.887-1.944C11 7.78 11.88 7.5 13 7.5h1.5v-.899c0-.54-.5-1.101-1.5-1.101-.869 0-1.528.282-1.84.858a.75.75 0 11-1.32-.716zM14.5 9H13c-.881 0-1.375.22-1.637.444-.253.217-.363.5-.363.806 0 .408.155.697.39.896.249.21.63.354 1.11.354.732 0 1.26-.209 1.588-.449.35-.257.412-.495.412-.551V9z"></path></svg>
<svg class="octicon octicon-chevron-up Details-content--shown" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.22 9.78a.75.75 0 010-1.06l4.25-4.25a.75.75 0 011.06 0l4.25 4.25a.75.75 0 01-1.06 1.06L8 6.06 4.28 9.78a.75.75 0 01-1.06 0z"></path></svg>
<svg class="octicon octicon-chevron-down Details-content--hidden" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12.78 6.22a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06 0L3.22 7.28a.75.75 0 011.06-1.06L8 9.94l3.72-3.72a.75.75 0 011.06 0z"></path></svg>
</button>
</div>
<div class="flex-nowrap d-none d-md-inline-block mr-3">
<md-header tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add header text" data-ga-click="Markdown Toolbar, click, header" role="button">
<svg class="octicon octicon-heading" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.75 2a.75.75 0 01.75.75V7h7V2.75a.75.75 0 011.5 0v10.5a.75.75 0 01-1.5 0V8.5h-7v4.75a.75.75 0 01-1.5 0V2.75A.75.75 0 013.75 2z"></path></svg>
</md-header>
<md-bold tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1 js-modifier-label-key" aria-label="Add bold text &lt;ctrl+b&gt;" data-ga-click="Markdown Toolbar, click, bold" role="button" hotkey="b">
<svg class="octicon octicon-bold" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 2a1 1 0 00-1 1v10a1 1 0 001 1h5.5a3.5 3.5 0 001.852-6.47A3.5 3.5 0 008.5 2H4zm4.5 5a1.5 1.5 0 100-3H5v3h3.5zM5 9v3h4.5a1.5 1.5 0 000-3H5z"></path></svg>
</md-bold>
<md-italic tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1 js-modifier-label-key" aria-label="Add italic text &lt;ctrl+i&gt;" data-ga-click="Markdown Toolbar, click, italic" role="button" hotkey="i">
<svg class="octicon octicon-italic" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6 2.75A.75.75 0 016.75 2h6.5a.75.75 0 010 1.5h-2.505l-3.858 9H9.25a.75.75 0 010 1.5h-6.5a.75.75 0 010-1.5h2.505l3.858-9H6.75A.75.75 0 016 2.75z"></path></svg>
</md-italic>
</div>
<div class="d-flex d-md-inline-block mr-0 mr-md-3">
<md-quote tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 p-md-1 mx-1" aria-label="Insert a quote" data-ga-click="Markdown Toolbar, click, quote" role="button">
<svg class="octicon octicon-quote" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 2.5a.75.75 0 000 1.5h10.5a.75.75 0 000-1.5H1.75zm4 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM2.5 7.75a.75.75 0 00-1.5 0v6a.75.75 0 001.5 0v-6z"></path></svg>
</md-quote>
<md-code tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 p-md-1 mx-1" aria-label="Insert code" data-ga-click="Markdown Toolbar, click, code" role="button">
<svg class="octicon octicon-code" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4.72 3.22a.75.75 0 011.06 1.06L2.06 8l3.72 3.72a.75.75 0 11-1.06 1.06L.47 8.53a.75.75 0 010-1.06l4.25-4.25zm6.56 0a.75.75 0 10-1.06 1.06L13.94 8l-3.72 3.72a.75.75 0 101.06 1.06l4.25-4.25a.75.75 0 000-1.06l-4.25-4.25z"></path></svg>
</md-code>
<button type="button" data-md-button="" tabindex="-1" class="toolbar-item text-center menu-target p-2 mx-1 d-md-none js-markdown-link-button" aria-label="Add a link" data-ga-click="Markdown Toolbar, click, saved reply">
<svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg>
</button>
<template class="js-markdown-link-dialog">
<div class="Box-header">
<h3 class="Box-title">Insert Link</h3>
</div>
<div class="Box-body overflow-auto">
<div>
<label class="d-block mb-1" for="js-dialog-link-text">Link Text</label>
<input type="text" class="mb-3 form-control input-block" id="js-dialog-link-text" autofocus="">
</div>
<div>
<label class="d-block mb-1" for="js-dialog-link-href">URL</label>
<input type="url" class="mb-3 form-control input-block" id="js-dialog-link-href">
</div>
<div class="pt-3 border-top">
<button type="button" class="btn btn-primary btn-block js-markdown-link-insert" data-close-dialog="" data-for-textarea="issue-518410600-body">
Add
</button>
</div>
</div>
</template>
<md-link tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 p-md-1 d-none d-md-block mx-1 js-modifier-label-key" aria-label="Add a link &lt;ctrl+k&gt;" data-ga-click="Markdown Toolbar, click, link" role="button" hotkey="k">
<svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg>
</md-link>
</div>
<div class="d-none d-md-inline-block mr-3">
<md-unordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add a bulleted list" data-ga-click="Markdown Toolbar, click, unordered list" role="button">
<svg class="octicon octicon-list-unordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 4a1 1 0 100-2 1 1 0 000 2zm3.75-1.5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM3 8a1 1 0 11-2 0 1 1 0 012 0zm-1 6a1 1 0 100-2 1 1 0 000 2z"></path></svg>
</md-unordered-list>
<md-ordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add a numbered list" data-ga-click="Markdown Toolbar, click, ordered list" role="button">
<svg class="octicon octicon-list-ordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.003 2.5a.5.5 0 00-.723-.447l-1.003.5a.5.5 0 00.446.895l.28-.14V6H.5a.5.5 0 000 1h2.006a.5.5 0 100-1h-.503V2.5zM5 3.25a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 3.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 8.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5a.75.75 0 01-.75-.75zM.924 10.32l.003-.004a.851.851 0 01.144-.153A.66.66 0 011.5 10c.195 0 .306.068.374.146a.57.57 0 01.128.376c0 .453-.269.682-.8 1.078l-.035.025C.692 11.98 0 12.495 0 13.5a.5.5 0 00.5.5h2.003a.5.5 0 000-1H1.146c.132-.197.351-.372.654-.597l.047-.035c.47-.35 1.156-.858 1.156-1.845 0-.365-.118-.744-.377-1.038-.268-.303-.658-.484-1.126-.484-.48 0-.84.202-1.068.392a1.858 1.858 0 00-.348.384l-.007.011-.002.004-.001.002-.001.001a.5.5 0 00.851.525zM.5 10.055l-.427-.26.427.26z"></path></svg>
</md-ordered-list>
<md-task-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add a task list" data-ga-click="Markdown Toolbar, click, task list" role="button" hotkey="L">
<svg class="octicon octicon-tasklist" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.5 2.75a.25.25 0 01.25-.25h10.5a.25.25 0 01.25.25v10.5a.25.25 0 01-.25.25H2.75a.25.25 0 01-.25-.25V2.75zM2.75 1A1.75 1.75 0 001 2.75v10.5c0 .966.784 1.75 1.75 1.75h10.5A1.75 1.75 0 0015 13.25V2.75A1.75 1.75 0 0013.25 1H2.75zm9.03 5.28a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"></path></svg>
</md-task-list>
</div>
<div class="d-flex d-md-inline-block">
<md-mention tabindex="-1" class="flex-auto text-center toolbar-item tooltipped tooltipped-nw p-2 p-md-1 mx-1" aria-label="Directly mention a user or team" data-ga-click="Markdown Toolbar, click, mention" role="button">
<svg class="octicon octicon-mention" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4.75 2.37a6.5 6.5 0 006.5 11.26.75.75 0 01.75 1.298 8 8 0 113.994-7.273.754.754 0 01.006.095v1.5a2.75 2.75 0 01-5.072 1.475A4 4 0 1112 8v1.25a1.25 1.25 0 002.5 0V7.867a6.5 6.5 0 00-9.75-5.496V2.37zM10.5 8a2.5 2.5 0 10-5 0 2.5 2.5 0 005 0z"></path></svg>
</md-mention>
<label for="fc-issue-518410600-body" data-md-button="" tabindex="-1" class="d-block d-md-none btn-link flex-auto text-center toolbar-item tooltipped tooltipped-nw p-2 mx-1" aria-label="Attach an image">
<svg class="octicon octicon-image" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 2.5a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h.94a.76.76 0 01.03-.03l6.077-6.078a1.75 1.75 0 012.412-.06L14.5 10.31V2.75a.25.25 0 00-.25-.25H1.75zm12.5 11H4.81l5.048-5.047a.25.25 0 01.344-.009l4.298 3.889v.917a.25.25 0 01-.25.25zm1.75-.25V2.75A1.75 1.75 0 0014.25 1H1.75A1.75 1.75 0 000 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0016 13.25zM5.5 6a.5.5 0 11-1 0 .5.5 0 011 0zM7 6a2 2 0 11-4 0 2 2 0 014 0z"></path></svg>
</label>
<md-ref tabindex="-1" class="flex-auto text-center toolbar-item tooltipped tooltipped-nw p-2 p-md-1 mx-1" aria-label="Reference an issue or pull request" data-ga-click="Markdown Toolbar, click, reference" role="button">
<svg class="octicon octicon-cross-reference" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M16 1.25v4.146a.25.25 0 01-.427.177L14.03 4.03l-3.75 3.75a.75.75 0 11-1.06-1.06l3.75-3.75-1.543-1.543A.25.25 0 0111.604 1h4.146a.25.25 0 01.25.25zM2.75 3.5a.25.25 0 00-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 01.75.75v2.19l2.72-2.72a.75.75 0 01.53-.22h4.5a.25.25 0 00.25-.25v-2.5a.75.75 0 111.5 0v2.5A1.75 1.75 0 0113.25 13H9.06l-2.573 2.573A1.457 1.457 0 014 14.543V13H2.75A1.75 1.75 0 011 11.25v-7.5C1 2.784 1.784 2 2.75 2h5.5a.75.75 0 010 1.5h-5.5z"></path></svg>
</md-ref>
<details class="details-reset details-overlay flex-auto toolbar-item select-menu select-menu-modal-right js-saved-reply-container hx_rsm" tabindex="-1">
<summary data-md-button="" tabindex="-1" class="text-center menu-target py-2 p-md-1 hx_rsm-trigger ml-1" aria-label="Insert a reply" data-ga-click="Markdown Toolbar, click, saved reply" aria-haspopup="menu" role="button">
<svg class="octicon octicon-reply" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6.78 1.97a.75.75 0 010 1.06L3.81 6h6.44A4.75 4.75 0 0115 10.75v2.5a.75.75 0 01-1.5 0v-2.5a3.25 3.25 0 00-3.25-3.25H3.81l2.97 2.97a.75.75 0 11-1.06 1.06L1.47 7.28a.75.75 0 010-1.06l4.25-4.25a.75.75 0 011.06 0z"></path></svg>
<span class="dropdown-caret hide-sm"></span>
</summary>
<details-menu style="z-index: 99;" class="select-menu-modal position-absolute right-0 js-saved-reply-menu hx_rsm-modal" data-menu-input="issue-518410600-body_saved_reply_id" src="/settings/replies?context=pull_request" preload="" role="menu">
<div class="select-menu-header d-flex">
<span class="select-menu-title flex-auto">Select a reply</span>
<code><span class="border rounded-1 p-1 mr-2">ctrl .</span></code>
</div>
<include-fragment role="menuitem" class="select-menu-loading-overlay anim-pulse" aria-label="Loading">
<svg class="octicon octicon-octoface" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.326 1.973a1.2 1.2 0 011.49-.832c.387.112.977.307 1.575.602.586.291 1.243.71 1.7 1.296.022.027.042.056.061.084A13.22 13.22 0 018 3c.67 0 1.289.037 1.861.108l.051-.07c.457-.586 1.114-1.004 1.7-1.295a9.654 9.654 0 011.576-.602 1.2 1.2 0 011.49.832c.14.493.356 1.347.479 2.29.079.604.123 1.28.07 1.936.541.977.773 2.11.773 3.301C16 13 14.5 15 8 15s-8-2-8-5.5c0-1.034.238-2.128.795-3.117-.08-.712-.034-1.46.052-2.12.122-.943.34-1.797.479-2.29zM8 13.065c6 0 6.5-2 6-4.27C13.363 5.905 11.25 5 8 5s-5.363.904-6 3.796c-.5 2.27 0 4.27 6 4.27z"></path><path d="M4 8a1 1 0 012 0v1a1 1 0 01-2 0V8zm2.078 2.492c-.083-.264.146-.492.422-.492h3c.276 0 .505.228.422.492C9.67 11.304 8.834 12 8 12c-.834 0-1.669-.696-1.922-1.508zM10 8a1 1 0 112 0v1a1 1 0 11-2 0V8z"></path></svg>
</include-fragment>
</details-menu>
</details>
</div>
<div class="Details-content--hidden d-block d-md-none width-full">
<md-header tabindex="-1" class="toolbar-item tooltipped tooltipped-ne py-2 pr-2 pl-1 mr-1" aria-label="Add header text" data-ga-click="Markdown Toolbar, click, header" role="button">
<svg class="octicon octicon-heading" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.75 2a.75.75 0 01.75.75V7h7V2.75a.75.75 0 011.5 0v10.5a.75.75 0 01-1.5 0V8.5h-7v4.75a.75.75 0 01-1.5 0V2.75A.75.75 0 013.75 2z"></path></svg>
</md-header>
<md-bold tabindex="-1" class="toolbar-item tooltipped tooltipped-ne p-2 mx-1 js-modifier-label-key" aria-label="Add bold text &lt;ctrl+b&gt;" data-ga-click="Markdown Toolbar, click, bold" role="button" hotkey="b">
<svg class="octicon octicon-bold" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 2a1 1 0 00-1 1v10a1 1 0 001 1h5.5a3.5 3.5 0 001.852-6.47A3.5 3.5 0 008.5 2H4zm4.5 5a1.5 1.5 0 100-3H5v3h3.5zM5 9v3h4.5a1.5 1.5 0 000-3H5z"></path></svg>
</md-bold>
<md-italic tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1 js-modifier-label-key" aria-label="Add italic text &lt;ctrl+i&gt;" data-ga-click="Markdown Toolbar, click, italic" role="button" hotkey="i">
<svg class="octicon octicon-italic" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6 2.75A.75.75 0 016.75 2h6.5a.75.75 0 010 1.5h-2.505l-3.858 9H9.25a.75.75 0 010 1.5h-6.5a.75.75 0 010-1.5h2.505l3.858-9H6.75A.75.75 0 016 2.75z"></path></svg>
</md-italic>
<md-unordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1" aria-label="Add a bulleted list" data-ga-click="Markdown Toolbar, click, unordered list" role="button">
<svg class="octicon octicon-list-unordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 4a1 1 0 100-2 1 1 0 000 2zm3.75-1.5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM3 8a1 1 0 11-2 0 1 1 0 012 0zm-1 6a1 1 0 100-2 1 1 0 000 2z"></path></svg>
</md-unordered-list>
<md-ordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1" aria-label="Add a numbered list" data-ga-click="Markdown Toolbar, click, ordered list" role="button">
<svg class="octicon octicon-list-ordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.003 2.5a.5.5 0 00-.723-.447l-1.003.5a.5.5 0 00.446.895l.28-.14V6H.5a.5.5 0 000 1h2.006a.5.5 0 100-1h-.503V2.5zM5 3.25a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 3.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 8.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5a.75.75 0 01-.75-.75zM.924 10.32l.003-.004a.851.851 0 01.144-.153A.66.66 0 011.5 10c.195 0 .306.068.374.146a.57.57 0 01.128.376c0 .453-.269.682-.8 1.078l-.035.025C.692 11.98 0 12.495 0 13.5a.5.5 0 00.5.5h2.003a.5.5 0 000-1H1.146c.132-.197.351-.372.654-.597l.047-.035c.47-.35 1.156-.858 1.156-1.845 0-.365-.118-.744-.377-1.038-.268-.303-.658-.484-1.126-.484-.48 0-.84.202-1.068.392a1.858 1.858 0 00-.348.384l-.007.011-.002.004-.001.002-.001.001a.5.5 0 00.851.525zM.5 10.055l-.427-.26.427.26z"></path></svg>
</md-ordered-list>
<md-task-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1" aria-label="Add a task list" data-ga-click="Markdown Toolbar, click, task list" role="button" hotkey="L">
<svg class="octicon octicon-tasklist" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.5 2.75a.25.25 0 01.25-.25h10.5a.25.25 0 01.25.25v10.5a.25.25 0 01-.25.25H2.75a.25.25 0 01-.25-.25V2.75zM2.75 1A1.75 1.75 0 001 2.75v10.5c0 .966.784 1.75 1.75 1.75h10.5A1.75 1.75 0 0015 13.25V2.75A1.75 1.75 0 0013.25 1H2.75zm9.03 5.28a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"></path></svg>
</md-task-list>
</div>
</markdown-toolbar>
</div>
<div class="clearfix"></div>
<p class="comment-form-error comment-show-stale">
<svg class="octicon octicon-alert" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg> The content you are editing has changed.
Please copy your edits and refresh the page.
</p>
<file-attachment class="js-upload-markdown-image is-default" input="fc-issue-518410600-body" data-upload-repository-id="301151089" data-upload-policy-url="/upload/policies/assets"><input type="hidden" value="/egV51L7Ve3Djm27k+HMu6U4qS24GzmFxlGAlxjJGMiT87ATp1FItfzx9RkaRjBwNjpBR6uvUDQ0dPou48sWPg==" data-csrf="true" class="js-data-upload-policy-url-csrf">
<div class="write-content js-write-bucket upload-enabled">
<input type="hidden" name="context" value="">
<input type="text" name="required_field_50e0" class="form-control" hidden="hidden"><input type="hidden" name="timestamp" value="1605528100189" class="form-control"><input type="hidden" name="timestamp_secret" value="ac0809fe92d0bf146e83ba3be367fcbb16bbcbeeebdc2754a553f227992d5f36" class="form-control">
<input type="hidden" name="saved_reply_id" id="issue-518410600-body_saved_reply_id" class="js-resettable-field" value="" data-reset-value="">
<input type="hidden" name="pull_request[id]" value="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
<input type="hidden" name="pull_request[bodyVersion]" class="js-body-version" value="ba6da86b49c35174f13cbb46e691b96ad7eeabead95f394ecf0d04c15fd57593">
<text-expander keys=": @ #" data-issue-url="/suggestions?issue_suggester=1&amp;repository=Ocelot-Social&amp;user_id=Ocelot-Social-Community" data-mention-url="/suggestions?mention_suggester=1&amp;repository=Ocelot-Social&amp;user_id=Ocelot-Social-Community" data-emoji-url="/autocomplete/emoji">
<textarea name="pull_request[body]" id="issue-518410600-body" placeholder="Leave a comment" aria-label="Comment body" class="form-control input-contrast comment-form-textarea js-comment-field js-paste-markdown js-task-list-field js-quick-submit js-size-to-fit js-session-resumable js-saved-reply-shortcut-comment-field">## 🍰 Pullrequest
Have all the information for the brand in separate config files. Set these defaults to ocelot.social
</textarea>
</text-expander>
<label class="text-normal drag-and-drop hx_drag-and-drop position-relative d-flex flex-justify-between">
<input accept=".gif,.jpeg,.jpg,.png,.docx,.gz,.log,.pdf,.pptx,.txt,.xlsx,.zip" type="file" multiple="" class="manual-file-chooser manual-file-chooser-transparent top-0 right-0 bottom-0 left-0 width-full ml-0 form-control" id="fc-issue-518410600-body">
<span class="bg-gray-light position-absolute top-0 left-0 width-full height-full rounded-1" style="pointer-events: none;"></span>
<span class="position-relative pr-2" style="pointer-events: none;">
<span class="default">
Attach files by dragging &amp; dropping, selecting or pasting them.
</span>
<span class="loading">
<svg viewBox="0 0 16 16" fill="none" style="box-sizing: content-box; color: var(--color-icon-primary);" class="v-align-text-bottom mr-1" width="16" height="16">
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke"></circle>
<path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke">
<animateTransform attributeName="transform" type="rotate" from="0 8 8" to="360 8 8" dur="1s" repeatCount="indefinite"></animateTransform>
</path>
</svg> Uploading your files…
</span>
<span class="error bad-file">
We dont support that file type.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a
GIF, JPEG, JPG, PNG, DOCX, GZ, LOG, PDF, PPTX, TXT, XLSX or ZIP.
</span>
</span>
<span class="error bad-permissions">
Attaching documents requires write permission to this repository.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a GIF, JPEG, JPG, PNG, DOCX, GZ, LOG, PDF, PPTX, TXT, XLSX or ZIP.
</span>
</span>
<span class="error repository-required">
We dont support that file type.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a GIF, JPEG, JPG, PNG, DOCX, GZ, LOG, PDF, PPTX, TXT, XLSX or ZIP.
</span>
</span>
<span class="error too-big">
Yowza, thats a big file
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a file smaller than 10MB.
</span>
</span>
<span class="error empty">
This file is empty.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a file thats not empty.
</span>
</span>
<span class="error hidden-file">
This file is hidden.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with another file.
</span>
</span>
<span class="error failed-request">
Something went really wrong, and we cant process that file.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again.</span>
</span>
</span>
</span>
<span class="tooltipped tooltipped-nw" aria-label="Styling with Markdown is supported">
<a class="muted-link position-relative d-inline" href="https://guides.github.com/features/mastering-markdown/" target="_blank" data-ga-click="Markdown Toolbar, click, help" aria-label="Learn about styling with Markdown">
<svg class="octicon octicon-markdown v-align-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M14.85 3H1.15C.52 3 0 3.52 0 4.15v7.69C0 12.48.52 13 1.15 13h13.69c.64 0 1.15-.52 1.15-1.15v-7.7C16 3.52 15.48 3 14.85 3zM9 11H7V8L5.5 9.92 4 8v3H2V5h2l1.5 2L7 5h2v6zm2.99.5L9.5 8H11V5h2v3h1.5l-2.51 3.5z"></path></svg>
</a>
</span>
</label>
</div>
</file-attachment>
<div class="preview-content">
<div class="comment js-suggested-changes-container" data-thread-side="">
<div class="comment-body markdown-body js-preview-body">
<p>Nothing to preview</p>
</div>
</div>
</div>
<div class="clearfix">
<input type="hidden" name="comment_id" value="" class="js-comment-id">
<div class="form-actions comment-form-actions js-comment-form-actions">
<button class="btn btn-primary" type="submit" data-disable-with="">Update comment</button>
<button class="btn btn-danger js-comment-cancel-button" type="button" data-confirm-text="Are you sure you want to discard your unsaved changes?">
Cancel
</button>
</div>
</div>
<div class="comment-form-error mb-2 js-comment-update-error js-comment-form-actions" hidden=""></div>
</div>
</form>
</div>
</div>
</div>
<div id="js-timeline-progressive-loader" data-timeline-item-src="Ocelot-Social-Community/Ocelot-Social/timeline?id=MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw&amp;variables%5Bafter%5D=Y3Vyc29yOnYyOpPPAAABcrzmGcAH2gAyNTE4NDEwNjAwOmQ3OGUxODFkZDNiMDI1NjZlNWRkNGQ5MTkzOGNmMTYxZDBjMDcxNjc%3D&amp;variables%5Bbefore%5D=Y3Vyc29yOnYyOpPPAAABcrzpOogH2gAyNTE4NDEwNjAwOmMyZDkyODgwYzZjNjliZjY2NmIxZmExNzRjZjczNDVlN2NmZGU3YTE%3D&amp;variables%5Bfirst%5D=60"></div>
<div class="js-timeline-item js-timeline-progressive-focus-container" data-gid="MDE3OlB1bGxSZXF1ZXN0Q29tbWl0NTE4NDEwNjAwOjIzYWU1Njk1MDlmMTc2M2Y5ODNjMzg3NjQxNDU0ZGU0NDU5ZjJhOTE=">
<div class="js-commit-group">
<div class="TimelineItem pb-1 js-commit-group-header" id="commits-pushed-23ae569">
<div class="TimelineItem-badge">
<svg class="octicon octicon-repo-push" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1 2.5A2.5 2.5 0 013.5 0h8.75a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0V1.5h-8a1 1 0 00-1 1v6.708A2.492 2.492 0 013.5 9h3.25a.75.75 0 010 1.5H3.5a1 1 0 100 2h5.75a.75.75 0 010 1.5H3.5A2.5 2.5 0 011 11.5v-9zm13.23 7.79a.75.75 0 001.06-1.06l-2.505-2.505a.75.75 0 00-1.06 0L9.22 9.229a.75.75 0 001.06 1.061l1.225-1.224v6.184a.75.75 0 001.5 0V9.066l1.224 1.224z"></path></svg>
</div>
<div class="TimelineItem-body">
<a class="author link-gray-dark text-bold" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/roschaefer">roschaefer</a>
added <span class="js-commit-group-count">30</span> commits
<a href="#commits-pushed-23ae569" class="link-gray">
<relative-time datetime="2020-06-04T11:03:49Z" class="no-wrap" title="Jun 4, 2020, 1:03 PM GMT+2">on Jun 4</relative-time>
</a>
</div>
</div>
<div class="js-commit-group-commits">
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjIzYWU1Njk1MDlmMTc2M2Y5ODNjMzg3NjQxNDU0ZGU0NDU5ZjJhOTEiLCJ0IjoxNjA1NTI4MTAwfQ==--b85bbf2ab6bf1c260be9ef2441b1086b542269a905f1582acb1923209949d425" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/23ae569509f1763f983c387641454de4459f2a91/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Rename dockerhub organizations
..plus get rid of obsolete prefix `nitro-`." data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/23ae569509f1763f983c387641454de4459f2a91">Rename dockerhub organizations</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/23ae569509f1763f983c387641454de4459f2a91" class="link-gray">23ae569</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">..plus get rid of obsolete prefix `nitro-`.</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjJjNGM5YWI4YjA2ZjZhMTNlMzAyODE1ZTE4N2U4NTExNTQ2MjVmZDQiLCJ0IjoxNjA1NTI4MTAwfQ==--079d27e9296d9833d60775105c873a0521891d7f15dbf5db2f3d4f0f0f8ded00" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/2c4c9ab8b06f6a13e302815e187e851154625fd4/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="feat: Avoid new builds on base docker-compose.yml" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/2c4c9ab8b06f6a13e302815e187e851154625fd4">feat: Avoid new builds on base docker-compose.yml</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/2c4c9ab8b06f6a13e302815e187e851154625fd4" class="link-gray">2c4c9ab</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmQ3ZDMxZTAyODhlYmNhZGE2MmU1Nzc2ZDFmOGRhNmYxYjc5MWY0OWQiLCJ0IjoxNjA1NTI4MTAwfQ==--94d2232586cd16f186cf7ab39856d68300430296fc590cd66ae4be2c0401b08e" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d7d31e0288ebcada62e5776d1f8da6f1b791f49d/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Merge pull request #6 from The-Schools-in-Motion-Network/avoid_builds_on_production
feat: Avoid new builds on base docker-compose.yml" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d7d31e0288ebcada62e5776d1f8da6f1b791f49d">Merge pull request</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="714367007" data-permission-text="Title is private" data-url="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues/6" data-hovercard-type="issue" data-hovercard-url="/Ocelot-Social-Community/Ocelot-Social/issues/6/hovercard" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues/6">#6</a> <a title="Merge pull request #6 from The-Schools-in-Motion-Network/avoid_builds_on_production
feat: Avoid new builds on base docker-compose.yml" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d7d31e0288ebcada62e5776d1f8da6f1b791f49d">from The-Schools-in-Motion-Network/avoid_builds…</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
<details class="dropdown dropdown-signed-commit details-reset details-overlay js-dropdown-details d-inline-block ml-1">
<summary class="signed-commit-badge signed-commit-badge-small verified" title="Commit signature">
Verified
</summary>
<div class="anim-scale-in" style="position: relative; z-index: 200;">
<div class="dropdown-menu dropdown-menu-w py-0 text-gray-dark text-left">
<div class="signed-commit-header TableObject">
<div class="TableObject-item">
<svg height="32" class="octicon octicon-verified mr-2" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M17.03 9.78a.75.75 0 00-1.06-1.06l-5.47 5.47-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6-6z"></path><path fill-rule="evenodd" d="M14.136 1.2a3.61 3.61 0 00-4.272 0L8.489 2.21a2.11 2.11 0 01-.929.384l-1.686.259a3.61 3.61 0 00-3.021 3.02L2.594 7.56a2.11 2.11 0 01-.384.929L1.2 9.864a3.61 3.61 0 000 4.272l1.01 1.375c.2.274.333.593.384.929l.259 1.686a3.61 3.61 0 003.02 3.021l1.687.259c.336.051.655.183.929.384l1.375 1.01a3.61 3.61 0 004.272 0l1.375-1.01a2.11 2.11 0 01.929-.384l1.686-.259a3.61 3.61 0 003.021-3.02l.259-1.687a2.11 2.11 0 01.384-.929l1.01-1.375a3.61 3.61 0 000-4.272l-1.01-1.375a2.11 2.11 0 01-.384-.929l-.259-1.686a3.61 3.61 0 00-3.02-3.021l-1.687-.259a2.11 2.11 0 01-.929-.384L14.136 1.2zm-3.384 1.209a2.11 2.11 0 012.496 0l1.376 1.01a3.61 3.61 0 001.589.658l1.686.258a2.11 2.11 0 011.765 1.766l.26 1.686a3.61 3.61 0 00.657 1.59l1.01 1.375a2.11 2.11 0 010 2.496l-1.01 1.376a3.61 3.61 0 00-.658 1.589l-.258 1.686a2.11 2.11 0 01-1.766 1.765l-1.686.26a3.61 3.61 0 00-1.59.657l-1.375 1.01a2.11 2.11 0 01-2.496 0l-1.376-1.01a3.61 3.61 0 00-1.589-.658l-1.686-.258a2.11 2.11 0 01-1.766-1.766l-.258-1.686a3.61 3.61 0 00-.658-1.59l-1.01-1.375a2.11 2.11 0 010-2.496l1.01-1.376a3.61 3.61 0 00.658-1.589l.258-1.686a2.11 2.11 0 011.766-1.766l1.686-.258a3.61 3.61 0 001.59-.658l1.375-1.01z"></path></svg>
</div>
<div class="TableObject-item--primary">
This commit was created on GitHub.com and signed with a <strong class="signed-commit-verified-label">verified signature</strong> using GitHubs key.
</div>
</div>
<div class="signed-commit-footer">
<span class="d-block">GPG key ID: <span class="text-gray">4AEE18F83AFDEB23</span></span>
<a href="https://docs.github.com/articles/signing-commits-with-gpg/">Learn about signing commits</a>
</div>
</div>
</div>
</details>
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d7d31e0288ebcada62e5776d1f8da6f1b791f49d" class="link-gray">d7d31e0</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">…_on_production
feat: Avoid new builds on base docker-compose.yml</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjkzNjAxODE5OGVkZDc2YzdmNjhjOGFkMjI5MTk4OTUzNzY2ZDdmOTQiLCJ0IjoxNjA1NTI4MTAwfQ==--4570debe324d249c353f12776f5d714de20e54dce730ad1461ab1c13cdaf5eb7" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/936018198edd76c7f68c8ad229198953766d7f94/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Silly copy+paste error" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/936018198edd76c7f68c8ad229198953766d7f94">Silly copy+paste error</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/936018198edd76c7f68c8ad229198953766d7f94" class="link-gray">9360181</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjczYzFmM2M4OGJkMTNlY2ZkNTIwYjc2YmIzOTZlNGVjNDYwZjlkNzkiLCJ0IjoxNjA1NTI4MTAwfQ==--6ae8c8b5df43dc0c9a2fa1b2f5ab8501466a32fa7da66f36e3f2964343e4b6b3" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/73c1f3c88bd13ecfd520b76bb396e4ec460f9d79/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Silly fix of copy+paste error" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/73c1f3c88bd13ecfd520b76bb396e4ec460f9d79">Silly fix of copy+paste error</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/73c1f3c88bd13ecfd520b76bb396e4ec460f9d79" class="link-gray">73c1f3c</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmE3NDE3MjEyOTVhN2JkODYxMGI4M2ExNjA2OTFhMjYxMWQ3ODhlZmYiLCJ0IjoxNjA1NTI4MTAwfQ==--4250755cc7ec19f1ba49fc84ff5b00b2d74924a263f5e34ac03d2397c18074f4" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/a741721295a7bd8610b83a160691a2611d788eff/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Remove labels from Dockerfiles
Version was out of date anyways" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/a741721295a7bd8610b83a160691a2611d788eff">Remove labels from Dockerfiles</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/a741721295a7bd8610b83a160691a2611d788eff" class="link-gray">a741721</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">Version was out of date anyways</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmJjNzBlOGIzYjAzZTA3MzNhMGMzM2E3YzIxZjY0NjJkZTIyNDIxYjYiLCJ0IjoxNjA1NTI4MTAwfQ==--b854bd256254df154e0ee9459a8063af9d8014515cd2acfdbace0dc8e47255b0" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/bc70e8b3b03e0733a0c33a7c21f6462de22421b6/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="refactor: Image paths
* removed obsolete images
* moved all overwritable images to a location webapp/static/img/custom/
* better names" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/bc70e8b3b03e0733a0c33a7c21f6462de22421b6">refactor: Image paths</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/bc70e8b3b03e0733a0c33a7c21f6462de22421b6" class="link-gray">bc70e8b</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">* removed obsolete images
* moved all overwritable images to a location webapp/static/img/custom/
* better names</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjBlZTNhMzA4YTc5MzhkMTc5MTViMjVkYjQ0N2Q2M2Y2YTZhNGUyOTMiLCJ0IjoxNjA1NTI4MTAwfQ==--e83dfc3ad6e3491fc0e615d5b59d8d71fd595c31e7d004cd476dc234d48f29f4" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/0ee3a308a7938d17915b25db447d63f6a6a4e293/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Add tags and APPLICATION_NAME env variable" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/0ee3a308a7938d17915b25db447d63f6a6a4e293">Add tags and APPLICATION_NAME env variable</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/0ee3a308a7938d17915b25db447d63f6a6a4e293" class="link-gray">0ee3a30</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjNhMjE2MjI2YmNiMDU4MTFiMTQ3ZTk5YmMwOGU5MzViYzg4YTY4YWQiLCJ0IjoxNjA1NTI4MTAwfQ==--71f8683b419b6c4928a29c4203499e7a28c88c5abf9537d06d9f40a141894257" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/3a216226bcb05811b147e99bc08e935bc88a68ad/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Paramterize all emails" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/3a216226bcb05811b147e99bc08e935bc88a68ad">Paramterize all emails</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/3a216226bcb05811b147e99bc08e935bc88a68ad" class="link-gray">3a21622</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjkyZmJhNDEyODYyNDMxMzNmZDhiMWZjMDZkZjY5YzZlZWFmOGZjYjgiLCJ0IjoxNjA1NTI4MTAwfQ==--2657c6894c71d6498c47c4028407a988ea04be88c3a8b41f236b097c3e8b0224" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/92fba41286243133fd8b1fc06df69c6eeaf8fcb8/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Replace example link" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/92fba41286243133fd8b1fc06df69c6eeaf8fcb8">Replace example link</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/92fba41286243133fd8b1fc06df69c6eeaf8fcb8" class="link-gray">92fba41</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjA2MzIwMGJjYjE3NjQ1ODA3YmNkZDhkZmNjY2Y2ZTg4NjYwNjA3MjQiLCJ0IjoxNjA1NTI4MTAwfQ==--0ce803cacd2f36e2963d3ad0596278f66fb77bc87fefc049115582877cd22691" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/063200bcb17645807bcdd8dfcccf6e8866060724/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="backend: Ignore if .env file cannot be found
fix: #7" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/063200bcb17645807bcdd8dfcccf6e8866060724">backend: Ignore if .env file cannot be found</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/063200bcb17645807bcdd8dfcccf6e8866060724" class="link-gray">063200b</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap"><span class="issue-keyword tooltipped tooltipped-se" aria-label="This commit closes issue #7.">fix</span>: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="714367012" data-permission-text="Title is private" data-url="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues/7" data-hovercard-type="issue" data-hovercard-url="/Ocelot-Social-Community/Ocelot-Social/issues/7/hovercard" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/issues/7">#7</a></pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjE2YzdiZTFjYzRiZjdhZDgzYWNiZTczN2JiYjM0YzZjYmFmNjdlMGQiLCJ0IjoxNjA1NTI4MTAwfQ==--9b815a8c85615d87dc907103555b8f298e8c733e3f5f23b3959290583383bcae" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/16c7be1cc4bf7ad83acbe737bbb34c6cbaf67e0d/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Parameterize emails in backend" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/16c7be1cc4bf7ad83acbe737bbb34c6cbaf67e0d">Parameterize emails in backend</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/16c7be1cc4bf7ad83acbe737bbb34c6cbaf67e0d" class="link-gray">16c7be1</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjRlYTBkNjUzYzQyNjZkMzcxNDE2YWJjZjEwNjhkMjI1NTQwYjQ5NmQiLCJ0IjoxNjA1NTI4MTAwfQ==--ddd8cf975d354fa4764816d3c43a3975139aa02d22b63eec50ed0902cec545b6" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/4ea0d653c4266d371416abcf1068d225540b496d/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Remove inappropriate picture help link
This link is helpful but points to Human Connection, so unfortunately I
have to remove it." data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/4ea0d653c4266d371416abcf1068d225540b496d">Remove inappropriate picture help link</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/4ea0d653c4266d371416abcf1068d225540b496d" class="link-gray">4ea0d65</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">This link is helpful but points to Human Connection, so unfortunately I
have to remove it.</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjM4N2VhNjRmYWExN2QyZTZiZDFhMmQ5MDU1NGQzMWY0NTAxMjgxMzQiLCJ0IjoxNjA1NTI4MTAwfQ==--2517fd3770ed674af99a3fdaabf3a885bf47e5462b4cec98841f9d8165d732a9" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/387ea64faa17d2e6bd1a2d90554d31f450128134/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Parameterize links" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/387ea64faa17d2e6bd1a2d90554d31f450128134">Parameterize links</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/387ea64faa17d2e6bd1a2d90554d31f450128134" class="link-gray">387ea64</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjE5M2Y5Nzc4NjMwNTRhYTg2OTUxODIwYmZmMDA4ZGM4ZGY4NGQ1ZDAiLCJ0IjoxNjA1NTI4MTAwfQ==--db8dc64cc17b85db85fac696059d1669bbcb2fd65d51d1fb82bf9d74a833b15c" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/193f977863054aa86951820bff008dc8df84d5d0/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="fix: Remove broken moreInfoURL
The links specified in the locales were pointing to the English site and
were mostly broken anyways." data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/193f977863054aa86951820bff008dc8df84d5d0">fix: Remove broken moreInfoURL</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/193f977863054aa86951820bff008dc8df84d5d0" class="link-gray">193f977</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">The links specified in the locales were pointing to the English site and
were mostly broken anyways.</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjM3YjMwMTRhYzcxZDFiNjIxYmU1NmNiMzZmMGI1NjE0Yjg1OTFlMGEiLCJ0IjoxNjA1NTI4MTAwfQ==--d22855d0a8be2c41c3334daf2e75af4023c79e451cdf894772f13541e7a3f2e9" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/37b3014ac71d1b621be56cb36f0b5614b8591e0a/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Parameterize manifest" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/37b3014ac71d1b621be56cb36f0b5614b8591e0a">Parameterize manifest</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/37b3014ac71d1b621be56cb36f0b5614b8591e0a" class="link-gray">37b3014</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjM2Njc5ZGE4NGRkNTliNjBmYTI2ZTJkZTJiZTM2OWNiYzEzNGNkMWEiLCJ0IjoxNjA1NTI4MTAwfQ==--52fc762a16223a3ff516e608c0ba07743bd02b2d8b6e27bed11be719e1df4b4d" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/36679da84dd59b60fa26e2de2be369cbc134cd1a/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="refactor: Avoid html in translation files
I removed it. We cannot parameterize localizations with absolute urls
properly." data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/36679da84dd59b60fa26e2de2be369cbc134cd1a">refactor: Avoid html in translation files</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/36679da84dd59b60fa26e2de2be369cbc134cd1a" class="link-gray">36679da</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">I removed it. We cannot parameterize localizations with absolute urls
properly.</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjNmYTA3MjNlYWMzOGU2YTFiZGRmOWEzYTk1NmZiZmQ0NTRmZmM3MGIiLCJ0IjoxNjA1NTI4MTAwfQ==--a9e92cf6131afc982cc49846d4db1c8e7cbbe1c26d12e481bc8dbc85ff0cdf43" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/3fa0723eac38e6a1bddf9a3a956fbfd454ffc70b/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Fix Italian translation" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/3fa0723eac38e6a1bddf9a3a956fbfd454ffc70b">Fix Italian translation</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/3fa0723eac38e6a1bddf9a3a956fbfd454ffc70b" class="link-gray">3fa0723</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjkyOTIwZmU4ZGE5YjdlNzIwZTUzN2RlMmQ1NGE0OTU1MGIyMjRkNjAiLCJ0IjoxNjA1NTI4MTAwfQ==--3c49198febdc4b18db18cc6be5cdd14d84669a1d74238ef598b574b5aedfa41d" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/92920fe8da9b7e720e537de2d54a49550b224d60/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Add CI workflow" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/92920fe8da9b7e720e537de2d54a49550b224d60">Add CI workflow</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/92920fe8da9b7e720e537de2d54a49550b224d60" class="link-gray">92920fe</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjgxMTAyN2ZhY2Y0NTdiNWRmMWM3ZjYyYTYwZDUxOTc4ODM0MWY2YjgiLCJ0IjoxNjA1NTI4MTAwfQ==--4ac02830193eca5b9e22d542b2eabd2eb23ed26c35303d71beb8812a7df80be1" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/811027facf457b5df1c7f62a60d519788341f6b8/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Fix image tags" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/811027facf457b5df1c7f62a60d519788341f6b8">Fix image tags</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/811027facf457b5df1c7f62a60d519788341f6b8" class="link-gray">811027f</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmQxNzFkNzgzY2QzMTk3ZTEzNzJkZWZlMjY2MjI0MTAyMTBiZDAzZTkiLCJ0IjoxNjA1NTI4MTAwfQ==--1cdb42d71907579993519a94ee7d41bb2a87ea5ce9ff0f11fb1b360877070b0f" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d171d783cd3197e1372defe26622410210bd03e9/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Run lint --fix" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d171d783cd3197e1372defe26622410210bd03e9">Run lint --fix</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d171d783cd3197e1372defe26622410210bd03e9" class="link-gray">d171d78</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjBkNWNmN2E4Y2RmMGE1MjRkZmU1ZTI5Y2I5OGNhZGJlZjY4ZTEwZWIiLCJ0IjoxNjA1NTI4MTAwfQ==--eeae993ba6ab726784332a50171e0b9359f7f3aa6408e87a80bdabd3cb22d933" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/0d5cf7a8cdf0a524dfe5e29cb98cadbef68e10eb/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Replace name Human Connection from locales" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/0d5cf7a8cdf0a524dfe5e29cb98cadbef68e10eb">Replace name Human Connection from locales</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/0d5cf7a8cdf0a524dfe5e29cb98cadbef68e10eb" class="link-gray">0d5cf7a</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjRhOTEwNjY0ZWIzZTc5ZDBjZjZmYjkyODhkZmE3MWVkNmIzZGRlMWMiLCJ0IjoxNjA1NTI4MTAwfQ==--6d2b2edaad3d6d876af7c036532bfa61872d72e0a27a696915dc282c287ff25f" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/4a910664eb3e79d0cf6fb9288dfa71ed6b3dde1c/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Parameterize entire html of terms+conditions" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/4a910664eb3e79d0cf6fb9288dfa71ed6b3dde1c">Parameterize entire html of terms+conditions</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/4a910664eb3e79d0cf6fb9288dfa71ed6b3dde1c" class="link-gray">4a91066</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0Ojc3YjAzMTA4M2ViMGRlMDUwNTQzNzQwOGY3YjVkMDVlMzk5ZTNhOTIiLCJ0IjoxNjA1NTI4MTAwfQ==--98cff577ea71f5909bcdfa6aac0cca610a838a43e57138c51ef9f822f3d6ad91" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/77b031083eb0de0505437408f7b5d05e399e3a92/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Make four static pages
* imprint
* data privacy
* terms of service
* code of conduct" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/77b031083eb0de0505437408f7b5d05e399e3a92">Make four static pages</a>
</code>
<span class="hidden-text-expander inline">
<button type="button" class="ellipsis-expander js-details-target" aria-expanded="false"></button>
</span>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/77b031083eb0de0505437408f7b5d05e399e3a92" class="link-gray">77b0310</a>
</code>
</div>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="text-gray ws-pre-wrap">* imprint
* data privacy
* terms of service
* code of conduct</pre>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmRkMDlkZmE3MjFhMzkxMmM2MThjMTBkY2ViNjY1OGJmZDFjYTM1MTYiLCJ0IjoxNjA1NTI4MTAwfQ==--0f5b156a437ca4f1509626ce824005d18958d03e08a4ffe4a371cd1f55ead714" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/dd09dfa721a3912c618c10dceb6658bfd1ca3516/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Replace welcome image in email templates" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/dd09dfa721a3912c618c10dceb6658bfd1ca3516">Replace welcome image in email templates</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/dd09dfa721a3912c618c10dceb6658bfd1ca3516" class="link-gray">dd09dfa</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjliYjgyN2E4ZWU4M2UyNDFkNTM4MzI5YTQzOTlkNGE5NWE1M2Q0MjIiLCJ0IjoxNjA1NTI4MTAwfQ==--d86dcc41c8aca15a1591816646edf235c2357570b0db370e8fb8513dd6d17f13" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/9bb827a8ee83e241d538329a4399d4a95a53d422/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Remove name &quot;Human Connection&quot; in email templates" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/9bb827a8ee83e241d538329a4399d4a95a53d422">Remove name "Human Connection" in email templates</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/9bb827a8ee83e241d538329a4399d4a95a53d422" class="link-gray">9bb827a</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjY4YzVmMGRkODVlYjNlNzdiNmNiMzc5NWJiZDkzZTUwNmNlYjY1ZDgiLCJ0IjoxNjA1NTI4MTAwfQ==--696a7db44c1af874f25308fb4fbe3b6cf9e3654b770bfff70c8d5fe1429ffc6a" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/68c5f0dd85eb3e77b6cb3795bbd93e506ceb65d8/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Fix lint" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/68c5f0dd85eb3e77b6cb3795bbd93e506ceb65d8">Fix lint</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/68c5f0dd85eb3e77b6cb3795bbd93e506ceb65d8" class="link-gray">68c5f0d</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmEyMGFlYmMwMjc0MTJhYjE0ZWQyZDFjYzEzZWMxMTQ2YzI2MmMyZTIiLCJ0IjoxNjA1NTI4MTAwfQ==--d851ede50afbbd675d8a9f5a7d61af27d67683f649f1e5390b31fd0eccb3c80e" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/a20aebc027412ab14ed2d1cc13ec1146c262c2e2/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Remove obsolete env var" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/a20aebc027412ab14ed2d1cc13ec1146c262c2e2">Remove obsolete env var</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/a20aebc027412ab14ed2d1cc13ec1146c262c2e2" class="link-gray">a20aebc</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjFkOThmNTgwYTFkZTA0OTlhNWQzZTNmMjg4NDg2YjI2YzE5YmU1MmIiLCJ0IjoxNjA1NTI4MTAwfQ==--c7c9b1c63fd92a639718f4a5912777ed5813906abcc437ed1c2cd00e206da946" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/1d98f580a1de0499a5d3e3f288486b26c19be52b/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Install raw-loader node module" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/1d98f580a1de0499a5d3e3f288486b26c19be52b">Install raw-loader node module</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/1d98f580a1de0499a5d3e3f288486b26c19be52b" class="link-gray">1d98f58</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmQ3OGUxODFkZDNiMDI1NjZlNWRkNGQ5MTkzOGNmMTYxZDBjMDcxNjciLCJ0IjoxNjA1NTI4MTAwfQ==--ca24e8bc5e7a0c805336001d431fbfd04cc231ccb4d5910fc087db8ca3f97786" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d78e181dd3b02566e5dd4d91938cf161d0c07167/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="fix image path" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d78e181dd3b02566e5dd4d91938cf161d0c07167">fix image path</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/d78e181dd3b02566e5dd4d91938cf161d0c07167" class="link-gray">d78e181</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="js-timeline-item js-timeline-progressive-focus-container" data-gid="MDE3OlB1bGxSZXF1ZXN0Q29tbWl0NTE4NDEwNjAwOmMyZDkyODgwYzZjNjliZjY2NmIxZmExNzRjZjczNDVlN2NmZGU3YTE=">
<div class="js-commit-group">
<div class="TimelineItem pb-1 js-commit-group-header" id="commits-pushed-c2d9288">
<div class="TimelineItem-badge">
<svg class="octicon octicon-repo-push" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1 2.5A2.5 2.5 0 013.5 0h8.75a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0V1.5h-8a1 1 0 00-1 1v6.708A2.492 2.492 0 013.5 9h3.25a.75.75 0 010 1.5H3.5a1 1 0 100 2h5.75a.75.75 0 010 1.5H3.5A2.5 2.5 0 011 11.5v-9zm13.23 7.79a.75.75 0 001.06-1.06l-2.505-2.505a.75.75 0 00-1.06 0L9.22 9.229a.75.75 0 001.06 1.061l1.225-1.224v6.184a.75.75 0 001.5 0V9.066l1.224 1.224z"></path></svg>
</div>
<div class="TimelineItem-body">
<a class="author link-gray-dark text-bold" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/roschaefer">roschaefer</a>
and others
added <span class="js-commit-group-count">7</span> commits
<a href="#commits-pushed-c2d9288" class="link-gray">
<relative-time datetime="2020-06-16T11:35:01Z" class="no-wrap" title="Jun 16, 2020, 1:35 PM GMT+2">on Jun 16</relative-time>
</a>
</div>
</div>
<div class="js-commit-group-commits">
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmMyZDkyODgwYzZjNjliZjY2NmIxZmExNzRjZjczNDVlN2NmZGU3YTEiLCJ0IjoxNjA1NTI4MTAwfQ==--592fa792f55213c19b43dd2d320bb9eebb143fc1b704e1fa5e6f19ea01251f66" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/c2d92880c6c69bf666b1fa174cf7345e7cfde7a1/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="refactor: Move Logo out of styleguide" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/c2d92880c6c69bf666b1fa174cf7345e7cfde7a1">refactor: Move Logo out of styleguide</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/c2d92880c6c69bf666b1fa174cf7345e7cfde7a1" class="link-gray">c2d9288</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjY1MGIzY2VmNDM4ZTU2N2Y0ZWQzZDY0ZGVlYmZjZTY5YTVlY2YyZTUiLCJ0IjoxNjA1NTI4MTAwfQ==--a790450be2a8b959a39726d0aca9d72c992f932db43518f620cac523dc513bed" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/650b3cef438e567f4ed3d64deebfce69a5ecf2e5/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Remove &quot;Human Connection&quot; from translations" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/650b3cef438e567f4ed3d64deebfce69a5ecf2e5">Remove "Human Connection" from translations</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/650b3cef438e567f4ed3d64deebfce69a5ecf2e5" class="link-gray">650b3ce</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjkwNmFiMmQ3OTAwYTUzMTMwY2E1ODdlNjU2YThiOThlNTA2YzgxMTkiLCJ0IjoxNjA1NTI4MTAwfQ==--3e78298860c9a2622fa5bae20fb8af6bec87ad7c508bea7dc7759a75fb985514" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/906ab2d7900a53130ca587e656a8b98e506c8119/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="roschaefer">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/roschaefer">
<img alt="@roschaefer" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_003.jpeg" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Parameterize page titles" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/906ab2d7900a53130ca587e656a8b98e506c8119">Parameterize page titles</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/906ab2d7900a53130ca587e656a8b98e506c8119" class="link-gray">906ab2d</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjVmYzI0YTM3NTFkZjJmODVkMDY3Yjk3NmEwYmZmNDJkMzY5OGEzZWUiLCJ0IjoxNjA1NTI4MTAwfQ==--47fa83c8b6a7600708d684257f7a5f0751f494fc4fb9c67d12f3c24399e0d7e2" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/5fc24a3751df2f85d067b976a0bff42d3698a3ee/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="Mogge">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/Mogge">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="merged conflicts" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/5fc24a3751df2f85d067b976a0bff42d3698a3ee">merged conflicts</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
<details class="commit-build-statuses details-overlay details-reset js-dropdown-details hx_dropdown-fullscreen" data-deferred-details-content-url="/_render_node/MDE3OlN0YXR1c0NoZWNrUm9sbHVwMzAxMTUxMDg5OjVmYzI0YTM3NTFkZjJmODVkMDY3Yjk3NmEwYmZmNDJkMzY5OGEzZWU=/statuses/combined_branch_status">
<summary class="text-red">
<svg aria-label="0 / 1 checks OK" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</summary>
<div class="dropdown-menu dropdown-menu-w overflow-hidden">
<include-fragment class="m-4 d-flex flex-column flex-items-center">
<div class="anim-pulse"><svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg></div>
<div class="text-gray no-wrap">Loading status checks…</div>
</include-fragment>
</div>
</details>
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/5fc24a3751df2f85d067b976a0bff42d3698a3ee" class="link-gray">5fc24a3</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmJkOTYyYmJmY2M4NjllYjU1ZWQ2NjlmYmRjYjVlYTBmZjIxZWIwNDAiLCJ0IjoxNjA1NTI4MTAwfQ==--47356d15c1d3bb8b15174a1f86bdd03fd95e43d4509c7c3e2d3f480f5e20e38b" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/bd962bbfcc869eb55ed669fbdcb5ea0ff21eb040/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="Mogge">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/Mogge">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="merging rebranding branch from /" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/bd962bbfcc869eb55ed669fbdcb5ea0ff21eb040">merging rebranding branch from /</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
<details class="commit-build-statuses details-overlay details-reset js-dropdown-details hx_dropdown-fullscreen" data-deferred-details-content-url="/_render_node/MDE3OlN0YXR1c0NoZWNrUm9sbHVwMzAxMTUxMDg5OmJkOTYyYmJmY2M4NjllYjU1ZWQ2NjlmYmRjYjVlYTBmZjIxZWIwNDA=/statuses/combined_branch_status">
<summary class="text-red">
<svg aria-label="0 / 2 checks OK" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</summary>
<div class="dropdown-menu dropdown-menu-w overflow-hidden">
<include-fragment class="m-4 d-flex flex-column flex-items-center">
<div class="anim-pulse"><svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg></div>
<div class="text-gray no-wrap">Loading status checks…</div>
</include-fragment>
</div>
</details>
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/bd962bbfcc869eb55ed669fbdcb5ea0ff21eb040" class="link-gray">bd962bb</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OmVjYjBiYjM3NjY3OTFmOTAxNDA3MjIxMDY0OTE3NTkxNTAxZmJmZjUiLCJ0IjoxNjA1NTI4MTAwfQ==--13505cf5f17ac4c02f273c261118a60d33b780b334ac886f2d83d175a511ae27" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/ecb0bb3766791f901407221064917591501fbff5/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="Mogge">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/Mogge">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="Starting rebranding to ocelot.social" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/ecb0bb3766791f901407221064917591501fbff5">Starting rebranding to ocelot.social</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
<details class="commit-build-statuses details-overlay details-reset js-dropdown-details hx_dropdown-fullscreen" data-deferred-details-content-url="/_render_node/MDE3OlN0YXR1c0NoZWNrUm9sbHVwMzAxMTUxMDg5OmVjYjBiYjM3NjY3OTFmOTAxNDA3MjIxMDY0OTE3NTkxNTAxZmJmZjU=/statuses/combined_branch_status">
<summary class="text-red">
<svg aria-label="1 / 3 checks OK" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</summary>
<div class="dropdown-menu dropdown-menu-w overflow-hidden">
<include-fragment class="m-4 d-flex flex-column flex-items-center">
<div class="anim-pulse"><svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg></div>
<div class="text-gray no-wrap">Loading status checks…</div>
</include-fragment>
</div>
</details>
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/ecb0bb3766791f901407221064917591501fbff5" class="link-gray">ecb0bb3</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjEyOGUxZjA2Y2NkNjFkZWY4MDU4ODMxZjdkZDdlMjE1MGQ3NDgyM2YiLCJ0IjoxNjA1NTI4MTAwfQ==--fa5718a5a4ff37d3335f6f20be7d6bbe28b30b8ecc7d05581aaa8ca8cc4b4a02" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/128e1f06ccd61def8058831f7dd7e2150d74823f/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="Mogge">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/Mogge">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="logos changed. SVG should be in better quality" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/128e1f06ccd61def8058831f7dd7e2150d74823f">logos changed. SVG should be in better quality</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
<details class="commit-build-statuses details-overlay details-reset js-dropdown-details hx_dropdown-fullscreen" data-deferred-details-content-url="/_render_node/MDE3OlN0YXR1c0NoZWNrUm9sbHVwMzAxMTUxMDg5OjEyOGUxZjA2Y2NkNjFkZWY4MDU4ODMxZjdkZDdlMjE1MGQ3NDgyM2Y=/statuses/combined_branch_status">
<summary class="text-red">
<svg aria-label="1 / 3 checks OK" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</summary>
<div class="dropdown-menu dropdown-menu-w overflow-hidden">
<include-fragment class="m-4 d-flex flex-column flex-items-center">
<div class="anim-pulse"><svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg></div>
<div class="text-gray no-wrap">Loading status checks…</div>
</include-fragment>
</div>
</details>
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/128e1f06ccd61def8058831f7dd7e2150d74823f" class="link-gray">128e1f0</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="js-timeline-item js-timeline-progressive-focus-container" data-gid="MDEzOkFzc2lnbmVkRXZlbnQzOTg3MjkxNjc1">
<div class="TimelineItem js-targetable-element" data-team-hovercards-enabled="" id="event-3987291675">
<div class="TimelineItem-badge ">
<svg class="octicon octicon-person" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 5a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm.061 3.073a4 4 0 10-5.123 0 6.004 6.004 0 00-3.431 5.142.75.75 0 001.498.07 4.5 4.5 0 018.99 0 .75.75 0 101.498-.07 6.005 6.005 0 00-3.432-5.142z"></path></svg>
</div>
<div class="TimelineItem-body">
<a class="d-inline-block" data-hovercard-type="user" data-hovercard-url="/users/Tirokk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tirokk"><img class="avatar avatar-user" alt="@Tirokk" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/25344101.jpeg" width="20" height="20"></a>
<a class="author link-gray-dark text-bold" data-hovercard-type="user" data-hovercard-url="/users/Tirokk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tirokk">Tirokk</a>
assigned
<a data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge"><span class="link-gray-dark text-bold">Mogge</span></a>
<a href="#event-3987291675" class="link-gray"><relative-time datetime="2020-11-12T07:56:25Z" class="no-wrap" title="Nov 12, 2020, 8:56 AM GMT+1">4 days ago</relative-time></a>
</div>
</div>
<div class="TimelineItem js-targetable-element" data-team-hovercards-enabled="" id="event-3987293506">
<div class="TimelineItem-badge ">
<svg class="octicon octicon-pencil" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M11.013 1.427a1.75 1.75 0 012.474 0l1.086 1.086a1.75 1.75 0 010 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 01-.927-.928l.929-3.25a1.75 1.75 0 01.445-.758l8.61-8.61zm1.414 1.06a.25.25 0 00-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 000-.354l-1.086-1.086zM11.189 6.25L9.75 4.81l-6.286 6.287a.25.25 0 00-.064.108l-.558 1.953 1.953-.558a.249.249 0 00.108-.064l6.286-6.286z"></path></svg>
</div>
<div class="TimelineItem-body">
<a class="d-inline-block" data-hovercard-type="user" data-hovercard-url="/users/Tirokk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tirokk"><img class="avatar avatar-user" alt="@Tirokk" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/25344101.jpeg" width="20" height="20"></a>
<a class="author link-gray-dark text-bold" data-hovercard-type="user" data-hovercard-url="/users/Tirokk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tirokk">Tirokk</a>
changed the title
<del class="text-bold">feat: Rebranding and White-Labeling </del>
<ins class="text-bold no-underline">feat: [WIP] 🍰 Rebranding And White-Labeling </ins>
<a href="#event-3987293506" class="link-gray"><relative-time datetime="2020-11-12T07:56:57Z" class="no-wrap" title="Nov 12, 2020, 8:56 AM GMT+1">4 days ago</relative-time></a>
</div>
</div>
</div>
<div class="js-timeline-item js-timeline-progressive-focus-container" data-gid="MDE3OlB1bGxSZXF1ZXN0Q29tbWl0NTE4NDEwNjAwOjVjZmI3MzU3MmVhMzA0YzNkNjFjNDI3NTJmNDM0NDA3OTFlYTA4Yzk=">
<div class="js-commit-group">
<div class="TimelineItem pb-1 js-commit-group-header" id="commits-pushed-5cfb735">
<div class="TimelineItem-badge">
<svg class="octicon octicon-repo-push" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1 2.5A2.5 2.5 0 013.5 0h8.75a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0V1.5h-8a1 1 0 00-1 1v6.708A2.492 2.492 0 013.5 9h3.25a.75.75 0 010 1.5H3.5a1 1 0 100 2h5.75a.75.75 0 010 1.5H3.5A2.5 2.5 0 011 11.5v-9zm13.23 7.79a.75.75 0 001.06-1.06l-2.505-2.505a.75.75 0 00-1.06 0L9.22 9.229a.75.75 0 001.06 1.061l1.225-1.224v6.184a.75.75 0 001.5 0V9.066l1.224 1.224z"></path></svg>
</div>
<div class="TimelineItem-body">
<a class="author link-gray-dark text-bold" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">Mogge</a>
added <span class="js-commit-group-count">2</span> commits
<a href="#commits-pushed-5cfb735" class="link-gray">
<relative-time datetime="2020-11-16T08:43:15Z" class="no-wrap" title="Nov 16, 2020, 9:43 AM GMT+1">3 hours ago</relative-time>
</a>
</div>
</div>
<div class="js-commit-group-commits">
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0OjVjZmI3MzU3MmVhMzA0YzNkNjFjNDI3NTJmNDM0NDA3OTFlYTA4YzkiLCJ0IjoxNjA1NTI4MTAwfQ==--2e242cde113355af143cbb1b8450d71c0d8cc969ebd2e6f9fe4c4e848db7d4c6" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/5cfb73572ea304c3d61c42752f43440791ea08c9/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="Mogge">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/Mogge">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="further rebranding" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/5cfb73572ea304c3d61c42752f43440791ea08c9">further rebranding</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
<details class="commit-build-statuses details-overlay details-reset js-dropdown-details hx_dropdown-fullscreen" data-deferred-details-content-url="/_render_node/MDE3OlN0YXR1c0NoZWNrUm9sbHVwMzAxMTUxMDg5OjVjZmI3MzU3MmVhMzA0YzNkNjFjNDI3NTJmNDM0NDA3OTFlYTA4Yzk=/statuses/combined_branch_status">
<summary class="text-red">
<svg aria-label="1 / 2 checks OK" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</summary>
<div class="dropdown-menu dropdown-menu-w overflow-hidden">
<include-fragment class="m-4 d-flex flex-column flex-items-center">
<div class="anim-pulse"><svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg></div>
<div class="text-gray no-wrap">Loading status checks…</div>
</include-fragment>
</div>
</details>
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/5cfb73572ea304c3d61c42752f43440791ea08c9" class="link-gray">5cfb735</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TimelineItem TimelineItem--condensed js-commit ">
<div class="TimelineItem-badge">
<svg class="octicon octicon-git-commit" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10.5 7.75a2.5 2.5 0 11-5 0 2.5 2.5 0 015 0zm1.43.75a4.002 4.002 0 01-7.86 0H.75a.75.75 0 110-1.5h3.32a4.001 4.001 0 017.86 0h3.32a.75.75 0 110 1.5h-3.32z"></path></svg>
</div>
<div class="TimelineItem-body">
<div class="js-details-container Details js-socket-channel js-updatable-content" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0Ojc4ZjllMjAzNTYxODJkNjk3YzQ2NzE1YzZhNjNlNWZlNzJmMWJjOTQiLCJ0IjoxNjA1NTI4MTAwfQ==--a7d2dda43b721767d4f8d77e675b74bbab23bfb068c9c147138391cecd9d87f6" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/78f9e20356182d697c46715c6a63e5fe72f1bc94/_render_node/commit/pull_condensed">
<div class="d-flex flex-md-row flex-column">
<div class="d-flex flex-auto">
<div class="AvatarStack flex-self-start ">
<div class="AvatarStack-body" aria-label="Mogge">
<a class="avatar avatar-user" data-skip-pjax="true" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" style="width:20px;height:20px;" href="https://github.com/Mogge">
<img alt="@Mogge" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_002.png" class=" avatar-user" width="20" height="20">
</a> </div>
</div>
<div class="pr-1 flex-auto min-width-0">
<code>
<a title="define volumes" data-pjax="true" class="link-gray" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/78f9e20356182d697c46715c6a63e5fe72f1bc94">define volumes</a>
</code>
</div>
<div class="text-right pr-1 d-md-inline-block d-none">
</div>
<div class="pr-1 flex-shrink-0" style="width: 16px;">
<details class="commit-build-statuses details-overlay details-reset js-dropdown-details hx_dropdown-fullscreen" data-deferred-details-content-url="/_render_node/MDE3OlN0YXR1c0NoZWNrUm9sbHVwMzAxMTUxMDg5Ojc4ZjllMjAzNTYxODJkNjk3YzQ2NzE1YzZhNjNlNWZlNzJmMWJjOTQ=/statuses/combined_branch_status">
<summary class="text-green">
<svg aria-label="2 / 2 checks OK" class="octicon octicon-check" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
</summary>
<div class="dropdown-menu dropdown-menu-w overflow-hidden">
<include-fragment class="m-4 d-flex flex-column flex-items-center">
<div class="anim-pulse"><svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg></div>
<div class="text-gray no-wrap">Loading status checks…</div>
</include-fragment>
</div>
</details>
</div>
<!-- ml-1 is added to accommodate "clock" icon -->
<div class="text-right ml-1">
<code>
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/commits/78f9e20356182d697c46715c6a63e5fe72f1bc94" class="link-gray">78f9e20</a>
</code>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Rendered timeline since 2020-11-16 00:56:13 -->
<div id="partial-timeline" class="js-timeline-marker js-socket-channel js-updatable-content" data-channel="eyJjIjoicHVsbF9yZXF1ZXN0OjUxODQxMDYwMCIsInQiOjE2MDU1MjgxMDB9--055cc25eab20a285a730bd94f2e390e260c4fd60badd141531d38e2943208e75" data-url="/_render_node/MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw/pull_requests/unread_timeline?variables%5BdeferredCommentActions%5D=true&amp;variables%5BdisableCommentChecks%5D=false&amp;variables%5BhasFocusedReviewComment%5D=false&amp;variables%5BhasFocusedReviewThread%5D=false&amp;variables%5BtimelinePageSize%5D=30&amp;variables%5BtimelineSince%5D=2020-11-16T08%3A56%3A13Z" data-last-modified="Mon, 16 Nov 2020 08:56:13 GMT" data-gid="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
<!-- '"` --><!-- </textarea></xmp> --><form class="d-none js-timeline-marker-form" action="/_graphql/MarkNotificationSubjectAsRead" accept-charset="UTF-8" data-remote="true" method="post"><input type="hidden" name="authenticity_token" value="y12SACjYanYBSF5qYADLRDez6IPVdqC/akZoJ/I/tNe94X9xrzRBtvMEudJOc+MDdl/m13lMglQ9m4UJ0KwkHw==">
<input type="hidden" name="variables[subjectId]" value="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw">
</form></div>
</div>
<div class="discussion-timeline-actions">
<div id="partial-pull-merging" class="pull-merging js-pull-merging js-socket-channel js-updatable-content" aria-live="polite" data-channel="eyJjIjoicmVwbzozMDExNTEwODk6YnJhbmNoOndoaXRlLWxhYmVsaW5nIiwidCI6MTYwNTUyODEwMH0=--8b20142b55f14a86d9ae8e289c8f2abd38f9ed3c8e1345ef22ff4a0994f0a3b0 eyJjIjoicmVwbzozMDExNTEwODk6YnJhbmNoOm1hc3RlciIsInQiOjE2MDU1MjgxMDB9--19d7c091964f1ece4c40459200c9e923f04a0a503b6376c01fe81988b413343a eyJjIjoicmVwbzozMDExNTEwODk6Y29tbWl0Ojc4ZjllMjAzNTYxODJkNjk3YzQ2NzE1YzZhNjNlNWZlNzJmMWJjOTQiLCJ0IjoxNjA1NTI4MTAwfQ==--a7d2dda43b721767d4f8d77e675b74bbab23bfb068c9c147138391cecd9d87f6 eyJjIjoiaXNzdWU6NzM5ODE1Nzc3OnN0YXRlIiwidCI6MTYwNTUyODEwMH0=--69b7815c4ca14b8ff4892418d2b2aa630099346e440f02167b936cd445fa457d eyJjIjoicHVsbF9yZXF1ZXN0OjUxODQxMDYwMDpyZXZpZXdfc3RhdGUiLCJ0IjoxNjA1NTI4MTAwfQ==--82f2fb955d15677c39bf07685de5b8e826ec57ff9add2125f896d260aef9d676" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/show_partial?merge_type=merge&amp;partial=pull_requests%2Fmerging">
<h2 class="sr-only">Merge state</h2>
<div class="merge-pr js-merge-pr js-details-container Details is-merging" data-favicon-override="https://github.githubassets.com/favicons/favicon-success.svg">
<p class="ml-0 pl-0 ml-md-6 pl-md-3 my-3 text-gray">Add more commits by pushing to the <code><a class="text-emphasized" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/tree/white-labeling">white-labeling</a></code> branch on <a class="text-emphasized" href="https://github.com/Ocelot-Social-Community/Ocelot-Social">Ocelot-Social-Community/Ocelot-Social</a>.</p>
<div class="js-merge-message-container">
<div class="ml-0 pl-0 ml-md-6 pl-md-3 my-3 branch-action branch-action-state-dirty">
<span class="branch-action-icon d-none d-md-block">
<svg height="32" class="octicon octicon-git-merge" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 21a1.75 1.75 0 110-3.5 1.75 1.75 0 010 3.5zM2.5 19.25a3.25 3.25 0 106.5 0 3.25 3.25 0 00-6.5 0zM5.75 6.5a1.75 1.75 0 110-3.5 1.75 1.75 0 010 3.5zM2.5 4.75a3.25 3.25 0 106.5 0 3.25 3.25 0 00-6.5 0zM18.25 15a1.75 1.75 0 110-3.5 1.75 1.75 0 010 3.5zM15 13.25a3.25 3.25 0 106.5 0 3.25 3.25 0 00-6.5 0z"></path><path fill-rule="evenodd" d="M6.5 7.25c0 2.9 2.35 5.25 5.25 5.25h4.5V14h-4.5A6.75 6.75 0 015 7.25h1.5z"></path><path fill-rule="evenodd" d="M5.75 16.75A.75.75 0 006.5 16V8A.75.75 0 005 8v8c0 .414.336.75.75.75z"></path></svg>
</span>
<div class="branch-action-body timeline-comment--caret">
<div class="mergeability-details js-details-container Details">
<div class="branch-action-item js-details-container Details">
<div class="branch-action-item-icon completeness-indicator completeness-indicator-error">
<svg class="octicon octicon-x" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</div>
<h3 class="status-heading h4 text-red ">
Review required
</h3>
<span class="status-meta">
At least 1 approving review is required by reviewers with write access.
<a class="btn-link" href="https://docs.github.com/articles/about-pull-request-reviews/">Learn more.</a>
</span>
</div>
<div class="branch-action-item js-details-container Details
">
<div class="branch-action-item-icon completeness-indicator
completeness-indicator-success
">
<svg class="octicon octicon-check" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
</div>
<div class="">
<button type="button" class="btn-link float-right js-details-target" aria-expanded="true">
<span class="statuses-toggle-opened">Hide all checks</span>
<span class="statuses-toggle-closed">Show all checks</span>
</button>
<h3 class="h4 status-heading">All checks have passed</h3>
<span class="status-meta">2 successful checks</span>
</div>
<div class="merge-status-list js-updatable-content-preserve-scroll-position" data-updatable-content-scroll-position-id="merge-status-list">
<div class="merge-status-item d-flex flex-items-baseline">
<div class="merge-status-icon flex-self-center">
<svg class="octicon octicon-check mx-auto d-block text-green" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
</div>
<a href="https://github.com/apps/github-actions" class="d-inline-block tooltipped tooltipped-e muted-link mr-2 rounded-1" aria-label="@github-actions generated this status." style="background-color: #ffffff">
<img class="avatar" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15368.png" alt="@github-actions" width="20" height="20">
</a>
<div class="text-gray col-10 css-truncate css-truncate-target">
<strong class="text-emphasized mr-2">
CI / Continuous Integration (push)
</strong>
Successful in 8m
</div>
<div class="d-flex col-2 flex-shrink-0" style="min-width: 120px;">
<a class="status-actions" data-skip-pjax="" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/checks?check_run_id=1405403751">Details</a>
</div>
</div>
<div class="merge-status-item d-flex flex-items-baseline">
<div class="merge-status-icon flex-self-center">
<svg class="octicon octicon-check mx-auto d-block text-green" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
</div>
<a href="https://github.com/apps/travis-ci" class="d-inline-block tooltipped tooltipped-e muted-link mr-2 rounded-1" aria-label="@travis-ci generated this status." style="background-color: #ffffff">
<img class="avatar" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/67.png" alt="@travis-ci" width="20" height="20">
</a>
<div class="text-gray col-10 css-truncate css-truncate-target" title="Build Passed">
<strong class="text-emphasized mr-2">
Travis CI - Branch
</strong>
Successful in 20m
Build Passed
</div>
<div class="d-flex col-2 flex-shrink-0" style="min-width: 120px;">
<a class="status-actions" data-skip-pjax="" href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/checks?check_run_id=1405403710">Details</a>
</div>
</div>
</div>
</div>
<div class="branch-action-item">
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/conflicts" class="float-right btn ">
Resolve conflicts
</a>
<div class="branch-action-item-icon completeness-indicator completeness-indicator-problem">
<svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
</div>
<h3 class="h4 status-heading">This branch has conflicts that must be resolved</h3>
<span class="status-meta">
Use the <a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/conflicts">web editor</a> or the <button class="btn-link js-details-target" type="button" aria-expanded="false">command line</button> to resolve conflicts.
</span>
<div class="mt-3 pt-3 border-top">
<h4 class="mb-1">Conflicting files</h4>
<div class="pt-1 pb-1">
<code>neo4j/Dockerfile</code>
</div>
</div>
</div>
<div class="merge-message">
<div class="js-merge-box">
<div class="select-menu d-inline-block">
<div class="BtnGroup position-relative">
<button type="button" class="btn-group-merge border-right-0 rounded-left-1 btn BtnGroup-item js-details-target" aria-expanded="false" data-details-container=".js-merge-pr" disabled="disabled">
Merge pull request
</button>
<button type="button" class="btn-group-squash border-right-0 rounded-left-1 btn BtnGroup-item js-details-target" aria-expanded="false" data-details-container=".js-merge-pr" disabled="disabled">
Squash and merge
</button>
<button type="button" class="btn-group-rebase border-right-0 rounded-left-1 btn BtnGroup-item js-details-target" aria-expanded="false" data-details-container=".js-merge-pr" disabled="disabled">
Rebase and merge
</button>
<button type="button" class="btn select-menu-button BtnGroup-item" aria-label="Select merge method" disabled="disabled"></button>
</div>
</div>
<p class="alt-merge-options text-small mt-md-0 mt-2">
or view
<button name="button" type="button" class="btn-link js-details-target" aria-expanded="false" data-hydro-click="{&quot;event_type&quot;:&quot;pull_request.merge_external&quot;,&quot;payload&quot;:{&quot;client_type&quot;:&quot;GIT&quot;,&quot;originating_url&quot;:&quot;https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934&quot;,&quot;user_id&quot;:15882241}}" data-hydro-click-hmac="fcbbce2a504518009455f859ecd923812983cdbd01ffd0bea8957c123f834172">
command line instructions
</button>.
</p>
<git-clone-help class="merge-branch-manually" data-catalyst="">
<h4>Checkout via command line</h4>
<p class="intro">
If you cannot merge a pull request automatically here, you have the option
of checking it out via command line to resolve conflicts and perform a
manual merge.
</p>
<div class="d-flex mt-2">
<div class="BtnGroup">
<!-- '"` --><!-- </textarea></xmp> --><form class="BtnGroup-parent" data-remote="true" action="/users/set_protocol?protocol_selector=http&amp;protocol_type=push" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="xwd0+CQX99RzWXBoWv3C1NCjz+8tleL4gGB0RcKAQxJriC0WXFD81tbINTRXD5tVFiS5sBzJlE+G95UsJRToBw==">
<button type="submit" class="BtnGroup-item btn btn-sm js-git-protocol-clone-url selected" data-url="https://github.com/Ocelot-Social-Community/Ocelot-Social.git" data-action="click:git-clone-help#updateURL" data-targets="git-clone-help.cloneURLButtons">
HTTPS
</button>
</form> <!-- '"` --><!-- </textarea></xmp> --><form class="BtnGroup-parent" data-remote="true" action="/users/set_protocol?protocol_selector=gitweb&amp;protocol_type=push" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="UCFsHIqjLWSjW5p4yolQb5ilq/5L7EWLNDg0iKK4cxr8rjXy8uQmZgbK3yTHewnuXiLdoXqwMzwyr9XhRSzYDw==">
<button type="submit" class="BtnGroup-item btn btn-sm js-git-protocol-clone-url" data-url="git://github.com/Ocelot-Social-Community/Ocelot-Social.git" data-action="click:git-clone-help#updateURL" data-targets="git-clone-help.cloneURLButtons">
Git
</button>
</form> <button type="button" class="BtnGroup-item btn btn-sm" data-url="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934.patch" data-action="click:git-clone-help#updateURL" data-targets="git-clone-help.cloneURLButtons">
Patch
</button>
</div>
<div class="flex-1 ml-2">
<div class="input-group">
<input id="clone-help-git-url" type="text" readonly="readonly" spellcheck="false" class="form-control input-sm input-monospace" data-target="git-clone-help.helpField" value="https://github.com/Ocelot-Social-Community/Ocelot-Social.git" aria-label="Clone URL">
<span class="input-group-button">
<clipboard-copy for="clone-help-git-url" aria-label="Copy to clipboard" class="btn btn-sm zeroclipboard-button" tabindex="0" role="button">
<svg class="octicon octicon-clippy" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg>
</clipboard-copy>
</span>
</div>
</div>
</div>
<p class="text-small text-gray step"><strong>Step 1:</strong> From your project repository, bring in the changes and test.</p>
<div class="copyable-terminal">
<div class="copyable-terminal-button">
<clipboard-copy for="clone-help-step-1" aria-label="Copy to clipboard" class="btn btn-sm zeroclipboard-button" tabindex="0" role="button">
<svg class="octicon octicon-clippy" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg>
</clipboard-copy>
</div>
<pre id="clone-help-step-1" class="copyable-terminal-content user-select-contain"><span class="user-select-contain">git fetch origin</span>
<span class="user-select-contain">git checkout -b white-labeling origin/white-labeling</span>
<span class="user-select-contain">git merge master</span></pre>
</div>
<p class="text-small text-gray step"><strong>Step 2:</strong> Merge the changes and update on GitHub.</p>
<div class="copyable-terminal">
<div class="copyable-terminal-button">
<clipboard-copy for="clone-help-step-2" aria-label="Copy to clipboard" class="btn btn-sm zeroclipboard-button" tabindex="0" role="button">
<svg class="octicon octicon-clippy" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 1a.75.75 0 00-.75.75v3c0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75v-3a.75.75 0 00-.75-.75h-4.5zm.75 3V2.5h3V4h-3zm-2.874-.467a.75.75 0 00-.752-1.298A1.75 1.75 0 002 3.75v9.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-9.5a1.75 1.75 0 00-.874-1.515.75.75 0 10-.752 1.298.25.25 0 01.126.217v9.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-9.5a.25.25 0 01.126-.217z"></path></svg>
</clipboard-copy>
</div>
<pre id="clone-help-step-2" class="copyable-terminal-content"><span class="user-select-contain">git checkout master</span>
<span class="user-select-contain">git merge --no-ff white-labeling</span>
<span class="user-select-contain">git push origin master</span></pre>
</div>
</git-clone-help>
</div>
</div>
</div>
</div>
</div>
<!-- '"` --><!-- </textarea></xmp> --><form class="merge-branch-form js-merge-branch-form js-merge-pull-request pl-md-6 pl-0 ml-md-4 ml-0 js-immediate-updates js-needs-timeline-marker-header js-merge-form " action="/Ocelot-Social-Community/Ocelot-Social/pull/3934/merge" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="X5TSvkBQ+A4drnqThkeHXtO0W7oz0UNHGYAmm8L4RPdOiAAcsQ1EwtMl2zKLa+TKapCCPjPIHn2Fl36I8dCCdQ==">
<input type="hidden" name="head_sha" value="78f9e20356182d697c46715c6a63e5fe72f1bc94">
<img class="commit-form-avatar float-left rounded-1 d-md-inline-block d-none avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_003.png" alt="@Mogge" width="44" height="44">
<div class="commit-form position-relative p-3 mb-2 border rounded-1">
<div class="commit-form-fields mb-3">
<input type="text" name="commit_title" id="merge_title_field" class="form-control input-block input-contrast text-emphasized mt-0 js-merge-title js-session-resumable" aria-label="Commit title" value="Merge pull request #3934 from Ocelot-Social-Community/white-labeling">
<div class="write-content">
<text-expander keys=": @ #" data-issue-url="/suggestions/pull_request/518410600?issue_suggester=1&amp;repository=Ocelot-Social&amp;user_id=Ocelot-Social-Community" data-mention-url="/suggestions/pull_request/518410600?mention_suggester=1&amp;repository=Ocelot-Social&amp;user_id=Ocelot-Social-Community" data-emoji-url="/autocomplete/emoji">
<textarea name="commit_message" id="merge_message_field" class="form-control input-block input-contrast merge-commit-message js-merge-message js-quick-submit js-session-resumable js-size-to-fit" aria-label="Commit message" placeholder="Add an optional extended description…">feat: [WIP] 🍰 Rebranding And White-Labeling </textarea>
</text-expander>
</div>
</div>
<div class="commit-form-actions">
<div class="select-menu d-inline-block">
<div class="BtnGroup btn-group-merge">
<button class="btn BtnGroup-item js-merge-commit-button" name="do" value="merge" data-disable-with="Merging…" type="submit">
Confirm merge
</button>
</div>
<div class="BtnGroup btn-group-squash">
<button class="btn BtnGroup-item js-merge-commit-button" name="do" value="squash" data-disable-with="Merging…" type="button">
Confirm squash and merge
</button>
</div>
<div class="BtnGroup btn-group-rebase">
<button class="btn BtnGroup-item js-merge-commit-button" name="do" value="rebase" data-disable-with="Merging…" type="button">
Confirm rebase and merge
</button>
</div>
<button data-disable-with="Cancel" type="button" class="btn js-details-target" aria-expanded="true">
Cancel
</button>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="ml-0 pl-0 ml-md-6 pl-md-3 my-3 branch-action branch-action-state-error pull-merging-error">
<span class="branch-action-icon d-none d-md-block">
<svg height="32" class="octicon octicon-git-merge" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M5.75 21a1.75 1.75 0 110-3.5 1.75 1.75 0 010 3.5zM2.5 19.25a3.25 3.25 0 106.5 0 3.25 3.25 0 00-6.5 0zM5.75 6.5a1.75 1.75 0 110-3.5 1.75 1.75 0 010 3.5zM2.5 4.75a3.25 3.25 0 106.5 0 3.25 3.25 0 00-6.5 0zM18.25 15a1.75 1.75 0 110-3.5 1.75 1.75 0 010 3.5zM15 13.25a3.25 3.25 0 106.5 0 3.25 3.25 0 00-6.5 0z"></path><path fill-rule="evenodd" d="M6.5 7.25c0 2.9 2.35 5.25 5.25 5.25h4.5V14h-4.5A6.75 6.75 0 015 7.25h1.5z"></path><path fill-rule="evenodd" d="M5.75 16.75A.75.75 0 006.5 16V8A.75.75 0 005 8v8c0 .414.336.75.75.75z"></path></svg>
</span>
<div class="branch-action-body timeline-comment--caret p-3">
<button class="btn float-right js-merge-box-try-again" type="button" data-form-target="">
<svg class="octicon octicon-sync" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 2.5a5.487 5.487 0 00-4.131 1.869l1.204 1.204A.25.25 0 014.896 6H1.25A.25.25 0 011 5.75V2.104a.25.25 0 01.427-.177l1.38 1.38A7.001 7.001 0 0114.95 7.16a.75.75 0 11-1.49.178A5.501 5.501 0 008 2.5zM1.705 8.005a.75.75 0 01.834.656 5.501 5.501 0 009.592 2.97l-1.204-1.204a.25.25 0 01.177-.427h3.646a.25.25 0 01.25.25v3.646a.25.25 0 01-.427.177l-1.38-1.38A7.001 7.001 0 011.05 8.84a.75.75 0 01.656-.834z"></path></svg>
Try again
</button>
<h4 class="merge-branch-heading">Couldnt update branch</h4>
<p class="merge-branch-description">Oops, something went wrong.</p>
</div>
</div>
</div>
<div id="issue-comment-box">
<div class="timeline-comment-wrapper timeline-new-comment js-comment-container js-targetable-element ml-0 pl-0 ml-md-6 pl-md-3" id="issuecomment-new">
<div class=" d-none d-md-block">
<span class="timeline-comment-avatar "><a class="d-inline-block" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge"><img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241.png" alt="@Mogge" width="40" height="40"></a></span>
</div>
<!-- '"` --><!-- </textarea></xmp> --><form class="js-new-comment-form js-needs-timeline-marker-header" action="/Ocelot-Social-Community/Ocelot-Social/pull/3934/comment?sticky=true" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="rU1D/Bp61uski6tjZfEjgPJgZl/7P4oqdlNg6VtLIfv5Bpr0cwZSxS9tk44yvIyWcXu0QED/UBU74FtrbjhbJQ==">
<input type="text" name="required_field_c02e" class="form-control" hidden="hidden"><input type="hidden" name="timestamp" value="1605528100344" class="form-control"><input type="hidden" name="timestamp_secret" value="f78ac879d3a94b0878f0ea309a0fa90f7a61b71cd3df344ee09a4f4d7af20b69" class="form-control">
<div class="border-0 border-md timeline-comment timeline-comment--caret">
<input type="hidden" name="issue" value="3934">
<fieldset class="js-previewable-comment-form-fieldset min-width-0">
<tab-container class="js-previewable-comment-form previewable-comment-form write-selected" data-preview-url="/preview?markdown_unsupported=false&amp;repository=301151089&amp;sparkles_supported=true&amp;subject=3934&amp;subject_type=PullRequest" data-sparkles-enabled="">
<input type="hidden" value="kpC/JIvQe/xeXYFF9wxlE0gNJl+LzVBjpFdHx3ew7p6srG27JJIZikBh0LjX/CzpBN4OQfgitB7Bcd+SL23ckQ==" data-csrf="true" class="js-data-preview-url-csrf">
<div class="comment-form-head tabnav d-flex flex-justify-between mb-2 p-0 tabnav--responsive d-flex flex-column border-bottom-0 mb-0 mb-lg-2 flex-items-stretch border-lg-bottom color-border-primary flex-lg-items-center flex-lg-row ">
<div class="tabnav-tabs mx-0 mx-md-2 mt-0 mt-md-2 no-wrap d-flex flex-auto d-md-block" role="tablist">
<button type="button" class="btn-link tabnav-tab write-tab js-write-tab px-3 px-sm-6 px-md-3 flex-1 flex-md-auto" role="tab" aria-selected="true" tabindex="0">Write</button>
<button type="button" class="btn-link tabnav-tab preview-tab js-preview-tab flex-1 flex-md-auto" role="tab" aria-selected="false" tabindex="-1">Preview</button>
</div>
<markdown-toolbar role="toolbar" aria-label="Composition" for="new_comment_field" class="js-details-container Details toolbar-commenting d-flex no-wrap flex-items-start flex-wrap px-2 pt-2 pt-lg-0 border-md-top border-lg-top-0" tabindex="0">
<div class="d-block d-md-none flex-auto">
<button data-md-button="" tabindex="-1" type="button" aria-label="Toggle text tools" aria-expanded="false" class="js-details-target btn-link toolbar-item no-underline py-2 mr-1">
<svg class="octicon octicon-typography" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6.21 8.5L4.574 3.594 2.857 8.5H6.21zm.5 1.5l.829 2.487a.75.75 0 001.423-.474L5.735 2.332a1.216 1.216 0 00-2.302-.018l-3.39 9.688a.75.75 0 001.415.496L2.332 10H6.71zm3.13-4.358C10.53 4.374 11.87 4 13 4c1.5 0 3 .939 3 2.601v5.649a.75.75 0 01-1.448.275C13.995 12.82 13.3 13 12.5 13c-.77 0-1.514-.231-2.078-.709-.577-.488-.922-1.199-.922-2.041 0-.694.265-1.411.887-1.944C11 7.78 11.88 7.5 13 7.5h1.5v-.899c0-.54-.5-1.101-1.5-1.101-.869 0-1.528.282-1.84.858a.75.75 0 11-1.32-.716zM14.5 9H13c-.881 0-1.375.22-1.637.444-.253.217-.363.5-.363.806 0 .408.155.697.39.896.249.21.63.354 1.11.354.732 0 1.26-.209 1.588-.449.35-.257.412-.495.412-.551V9z"></path></svg>
<svg class="octicon octicon-chevron-up Details-content--shown" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.22 9.78a.75.75 0 010-1.06l4.25-4.25a.75.75 0 011.06 0l4.25 4.25a.75.75 0 01-1.06 1.06L8 6.06 4.28 9.78a.75.75 0 01-1.06 0z"></path></svg>
<svg class="octicon octicon-chevron-down Details-content--hidden" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M12.78 6.22a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06 0L3.22 7.28a.75.75 0 011.06-1.06L8 9.94l3.72-3.72a.75.75 0 011.06 0z"></path></svg>
</button>
</div>
<div class="flex-nowrap d-none d-md-inline-block mr-3">
<md-header tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add header text" data-ga-click="Markdown Toolbar, click, header" role="button">
<svg class="octicon octicon-heading" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.75 2a.75.75 0 01.75.75V7h7V2.75a.75.75 0 011.5 0v10.5a.75.75 0 01-1.5 0V8.5h-7v4.75a.75.75 0 01-1.5 0V2.75A.75.75 0 013.75 2z"></path></svg>
</md-header>
<md-bold tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1 js-modifier-label-key" aria-label="Add bold text &lt;ctrl+b&gt;" data-ga-click="Markdown Toolbar, click, bold" role="button" hotkey="b">
<svg class="octicon octicon-bold" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 2a1 1 0 00-1 1v10a1 1 0 001 1h5.5a3.5 3.5 0 001.852-6.47A3.5 3.5 0 008.5 2H4zm4.5 5a1.5 1.5 0 100-3H5v3h3.5zM5 9v3h4.5a1.5 1.5 0 000-3H5z"></path></svg>
</md-bold>
<md-italic tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1 js-modifier-label-key" aria-label="Add italic text &lt;ctrl+i&gt;" data-ga-click="Markdown Toolbar, click, italic" role="button" hotkey="i">
<svg class="octicon octicon-italic" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6 2.75A.75.75 0 016.75 2h6.5a.75.75 0 010 1.5h-2.505l-3.858 9H9.25a.75.75 0 010 1.5h-6.5a.75.75 0 010-1.5h2.505l3.858-9H6.75A.75.75 0 016 2.75z"></path></svg>
</md-italic>
</div>
<div class="d-flex d-md-inline-block mr-0 mr-md-3">
<md-quote tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 p-md-1 mx-1" aria-label="Insert a quote" data-ga-click="Markdown Toolbar, click, quote" role="button">
<svg class="octicon octicon-quote" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 2.5a.75.75 0 000 1.5h10.5a.75.75 0 000-1.5H1.75zm4 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM2.5 7.75a.75.75 0 00-1.5 0v6a.75.75 0 001.5 0v-6z"></path></svg>
</md-quote>
<md-code tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 p-md-1 mx-1" aria-label="Insert code" data-ga-click="Markdown Toolbar, click, code" role="button">
<svg class="octicon octicon-code" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4.72 3.22a.75.75 0 011.06 1.06L2.06 8l3.72 3.72a.75.75 0 11-1.06 1.06L.47 8.53a.75.75 0 010-1.06l4.25-4.25zm6.56 0a.75.75 0 10-1.06 1.06L13.94 8l-3.72 3.72a.75.75 0 101.06 1.06l4.25-4.25a.75.75 0 000-1.06l-4.25-4.25z"></path></svg>
</md-code>
<button type="button" data-md-button="" tabindex="-1" class="toolbar-item text-center menu-target p-2 mx-1 d-md-none js-markdown-link-button" aria-label="Add a link" data-ga-click="Markdown Toolbar, click, saved reply">
<svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg>
</button>
<template class="js-markdown-link-dialog">
<div class="Box-header">
<h3 class="Box-title">Insert Link</h3>
</div>
<div class="Box-body overflow-auto">
<div>
<label class="d-block mb-1" for="js-dialog-link-text">Link Text</label>
<input type="text" class="mb-3 form-control input-block" id="js-dialog-link-text" autofocus="">
</div>
<div>
<label class="d-block mb-1" for="js-dialog-link-href">URL</label>
<input type="url" class="mb-3 form-control input-block" id="js-dialog-link-href">
</div>
<div class="pt-3 border-top">
<button type="button" class="btn btn-primary btn-block js-markdown-link-insert" data-close-dialog="" data-for-textarea="new_comment_field">
Add
</button>
</div>
</div>
</template>
<md-link tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 p-md-1 d-none d-md-block mx-1 js-modifier-label-key" aria-label="Add a link &lt;ctrl+k&gt;" data-ga-click="Markdown Toolbar, click, link" role="button" hotkey="k">
<svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z"></path></svg>
</md-link>
</div>
<div class="d-none d-md-inline-block mr-3">
<md-unordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add a bulleted list" data-ga-click="Markdown Toolbar, click, unordered list" role="button">
<svg class="octicon octicon-list-unordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 4a1 1 0 100-2 1 1 0 000 2zm3.75-1.5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM3 8a1 1 0 11-2 0 1 1 0 012 0zm-1 6a1 1 0 100-2 1 1 0 000 2z"></path></svg>
</md-unordered-list>
<md-ordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add a numbered list" data-ga-click="Markdown Toolbar, click, ordered list" role="button">
<svg class="octicon octicon-list-ordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.003 2.5a.5.5 0 00-.723-.447l-1.003.5a.5.5 0 00.446.895l.28-.14V6H.5a.5.5 0 000 1h2.006a.5.5 0 100-1h-.503V2.5zM5 3.25a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 3.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 8.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5a.75.75 0 01-.75-.75zM.924 10.32l.003-.004a.851.851 0 01.144-.153A.66.66 0 011.5 10c.195 0 .306.068.374.146a.57.57 0 01.128.376c0 .453-.269.682-.8 1.078l-.035.025C.692 11.98 0 12.495 0 13.5a.5.5 0 00.5.5h2.003a.5.5 0 000-1H1.146c.132-.197.351-.372.654-.597l.047-.035c.47-.35 1.156-.858 1.156-1.845 0-.365-.118-.744-.377-1.038-.268-.303-.658-.484-1.126-.484-.48 0-.84.202-1.068.392a1.858 1.858 0 00-.348.384l-.007.011-.002.004-.001.002-.001.001a.5.5 0 00.851.525zM.5 10.055l-.427-.26.427.26z"></path></svg>
</md-ordered-list>
<md-task-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n mx-1" aria-label="Add a task list" data-ga-click="Markdown Toolbar, click, task list" role="button" hotkey="L">
<svg class="octicon octicon-tasklist" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.5 2.75a.25.25 0 01.25-.25h10.5a.25.25 0 01.25.25v10.5a.25.25 0 01-.25.25H2.75a.25.25 0 01-.25-.25V2.75zM2.75 1A1.75 1.75 0 001 2.75v10.5c0 .966.784 1.75 1.75 1.75h10.5A1.75 1.75 0 0015 13.25V2.75A1.75 1.75 0 0013.25 1H2.75zm9.03 5.28a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"></path></svg>
</md-task-list>
</div>
<div class="d-flex d-md-inline-block">
<md-mention tabindex="-1" class="flex-auto text-center toolbar-item tooltipped tooltipped-nw p-2 p-md-1 mx-1" aria-label="Directly mention a user or team" data-ga-click="Markdown Toolbar, click, mention" role="button">
<svg class="octicon octicon-mention" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4.75 2.37a6.5 6.5 0 006.5 11.26.75.75 0 01.75 1.298 8 8 0 113.994-7.273.754.754 0 01.006.095v1.5a2.75 2.75 0 01-5.072 1.475A4 4 0 1112 8v1.25a1.25 1.25 0 002.5 0V7.867a6.5 6.5 0 00-9.75-5.496V2.37zM10.5 8a2.5 2.5 0 10-5 0 2.5 2.5 0 005 0z"></path></svg>
</md-mention>
<label for="fc-new_comment_field" data-md-button="" tabindex="-1" class="d-block d-md-none btn-link flex-auto text-center toolbar-item tooltipped tooltipped-nw p-2 mx-1" aria-label="Attach an image">
<svg class="octicon octicon-image" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.75 2.5a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h.94a.76.76 0 01.03-.03l6.077-6.078a1.75 1.75 0 012.412-.06L14.5 10.31V2.75a.25.25 0 00-.25-.25H1.75zm12.5 11H4.81l5.048-5.047a.25.25 0 01.344-.009l4.298 3.889v.917a.25.25 0 01-.25.25zm1.75-.25V2.75A1.75 1.75 0 0014.25 1H1.75A1.75 1.75 0 000 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0016 13.25zM5.5 6a.5.5 0 11-1 0 .5.5 0 011 0zM7 6a2 2 0 11-4 0 2 2 0 014 0z"></path></svg>
</label>
<md-ref tabindex="-1" class="flex-auto text-center toolbar-item tooltipped tooltipped-nw p-2 p-md-1 mx-1" aria-label="Reference an issue or pull request" data-ga-click="Markdown Toolbar, click, reference" role="button">
<svg class="octicon octicon-cross-reference" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M16 1.25v4.146a.25.25 0 01-.427.177L14.03 4.03l-3.75 3.75a.75.75 0 11-1.06-1.06l3.75-3.75-1.543-1.543A.25.25 0 0111.604 1h4.146a.25.25 0 01.25.25zM2.75 3.5a.25.25 0 00-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 01.75.75v2.19l2.72-2.72a.75.75 0 01.53-.22h4.5a.25.25 0 00.25-.25v-2.5a.75.75 0 111.5 0v2.5A1.75 1.75 0 0113.25 13H9.06l-2.573 2.573A1.457 1.457 0 014 14.543V13H2.75A1.75 1.75 0 011 11.25v-7.5C1 2.784 1.784 2 2.75 2h5.5a.75.75 0 010 1.5h-5.5z"></path></svg>
</md-ref>
<details class="details-reset details-overlay flex-auto toolbar-item select-menu select-menu-modal-right js-saved-reply-container hx_rsm" tabindex="-1">
<summary data-md-button="" tabindex="-1" class="text-center menu-target py-2 p-md-1 hx_rsm-trigger ml-1" aria-label="Insert a reply" data-ga-click="Markdown Toolbar, click, saved reply" aria-haspopup="menu" role="button">
<svg class="octicon octicon-reply" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6.78 1.97a.75.75 0 010 1.06L3.81 6h6.44A4.75 4.75 0 0115 10.75v2.5a.75.75 0 01-1.5 0v-2.5a3.25 3.25 0 00-3.25-3.25H3.81l2.97 2.97a.75.75 0 11-1.06 1.06L1.47 7.28a.75.75 0 010-1.06l4.25-4.25a.75.75 0 011.06 0z"></path></svg>
<span class="dropdown-caret hide-sm"></span>
</summary>
<details-menu style="z-index: 99;" class="select-menu-modal position-absolute right-0 js-saved-reply-menu hx_rsm-modal" data-menu-input="new_comment_field_saved_reply_id" src="/settings/replies?context=pull_request_comment" preload="" role="menu">
<div class="select-menu-header d-flex">
<span class="select-menu-title flex-auto">Select a reply</span>
<code><span class="border rounded-1 p-1 mr-2">ctrl .</span></code>
</div>
<include-fragment role="menuitem" class="select-menu-loading-overlay anim-pulse" aria-label="Loading">
<svg class="octicon octicon-octoface" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.326 1.973a1.2 1.2 0 011.49-.832c.387.112.977.307 1.575.602.586.291 1.243.71 1.7 1.296.022.027.042.056.061.084A13.22 13.22 0 018 3c.67 0 1.289.037 1.861.108l.051-.07c.457-.586 1.114-1.004 1.7-1.295a9.654 9.654 0 011.576-.602 1.2 1.2 0 011.49.832c.14.493.356 1.347.479 2.29.079.604.123 1.28.07 1.936.541.977.773 2.11.773 3.301C16 13 14.5 15 8 15s-8-2-8-5.5c0-1.034.238-2.128.795-3.117-.08-.712-.034-1.46.052-2.12.122-.943.34-1.797.479-2.29zM8 13.065c6 0 6.5-2 6-4.27C13.363 5.905 11.25 5 8 5s-5.363.904-6 3.796c-.5 2.27 0 4.27 6 4.27z"></path><path d="M4 8a1 1 0 012 0v1a1 1 0 01-2 0V8zm2.078 2.492c-.083-.264.146-.492.422-.492h3c.276 0 .505.228.422.492C9.67 11.304 8.834 12 8 12c-.834 0-1.669-.696-1.922-1.508zM10 8a1 1 0 112 0v1a1 1 0 11-2 0V8z"></path></svg>
</include-fragment>
</details-menu>
</details>
</div>
<div class="Details-content--hidden d-block d-md-none width-full">
<md-header tabindex="-1" class="toolbar-item tooltipped tooltipped-ne py-2 pr-2 pl-1 mr-1" aria-label="Add header text" data-ga-click="Markdown Toolbar, click, header" role="button">
<svg class="octicon octicon-heading" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.75 2a.75.75 0 01.75.75V7h7V2.75a.75.75 0 011.5 0v10.5a.75.75 0 01-1.5 0V8.5h-7v4.75a.75.75 0 01-1.5 0V2.75A.75.75 0 013.75 2z"></path></svg>
</md-header>
<md-bold tabindex="-1" class="toolbar-item tooltipped tooltipped-ne p-2 mx-1 js-modifier-label-key" aria-label="Add bold text &lt;ctrl+b&gt;" data-ga-click="Markdown Toolbar, click, bold" role="button" hotkey="b">
<svg class="octicon octicon-bold" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 2a1 1 0 00-1 1v10a1 1 0 001 1h5.5a3.5 3.5 0 001.852-6.47A3.5 3.5 0 008.5 2H4zm4.5 5a1.5 1.5 0 100-3H5v3h3.5zM5 9v3h4.5a1.5 1.5 0 000-3H5z"></path></svg>
</md-bold>
<md-italic tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1 js-modifier-label-key" aria-label="Add italic text &lt;ctrl+i&gt;" data-ga-click="Markdown Toolbar, click, italic" role="button" hotkey="i">
<svg class="octicon octicon-italic" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M6 2.75A.75.75 0 016.75 2h6.5a.75.75 0 010 1.5h-2.505l-3.858 9H9.25a.75.75 0 010 1.5h-6.5a.75.75 0 010-1.5h2.505l3.858-9H6.75A.75.75 0 016 2.75z"></path></svg>
</md-italic>
<md-unordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1" aria-label="Add a bulleted list" data-ga-click="Markdown Toolbar, click, unordered list" role="button">
<svg class="octicon octicon-list-unordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 4a1 1 0 100-2 1 1 0 000 2zm3.75-1.5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM3 8a1 1 0 11-2 0 1 1 0 012 0zm-1 6a1 1 0 100-2 1 1 0 000 2z"></path></svg>
</md-unordered-list>
<md-ordered-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1" aria-label="Add a numbered list" data-ga-click="Markdown Toolbar, click, ordered list" role="button">
<svg class="octicon octicon-list-ordered" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.003 2.5a.5.5 0 00-.723-.447l-1.003.5a.5.5 0 00.446.895l.28-.14V6H.5a.5.5 0 000 1h2.006a.5.5 0 100-1h-.503V2.5zM5 3.25a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 3.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5A.75.75 0 015 8.25zm0 5a.75.75 0 01.75-.75h8.5a.75.75 0 010 1.5h-8.5a.75.75 0 01-.75-.75zM.924 10.32l.003-.004a.851.851 0 01.144-.153A.66.66 0 011.5 10c.195 0 .306.068.374.146a.57.57 0 01.128.376c0 .453-.269.682-.8 1.078l-.035.025C.692 11.98 0 12.495 0 13.5a.5.5 0 00.5.5h2.003a.5.5 0 000-1H1.146c.132-.197.351-.372.654-.597l.047-.035c.47-.35 1.156-.858 1.156-1.845 0-.365-.118-.744-.377-1.038-.268-.303-.658-.484-1.126-.484-.48 0-.84.202-1.068.392a1.858 1.858 0 00-.348.384l-.007.011-.002.004-.001.002-.001.001a.5.5 0 00.851.525zM.5 10.055l-.427-.26.427.26z"></path></svg>
</md-ordered-list>
<md-task-list tabindex="-1" class="toolbar-item tooltipped tooltipped-n p-2 mx-1" aria-label="Add a task list" data-ga-click="Markdown Toolbar, click, task list" role="button" hotkey="L">
<svg class="octicon octicon-tasklist" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2.5 2.75a.25.25 0 01.25-.25h10.5a.25.25 0 01.25.25v10.5a.25.25 0 01-.25.25H2.75a.25.25 0 01-.25-.25V2.75zM2.75 1A1.75 1.75 0 001 2.75v10.5c0 .966.784 1.75 1.75 1.75h10.5A1.75 1.75 0 0015 13.25V2.75A1.75 1.75 0 0013.25 1H2.75zm9.03 5.28a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"></path></svg>
</md-task-list>
</div>
</markdown-toolbar>
</div>
<div class="comment-form-error js-comment-form-error" role="alert" hidden="">
There was an error creating your PullRequest.
</div>
<file-attachment class="js-upload-markdown-image is-default" input="fc-new_comment_field" role="tabpanel" data-tab-container-no-tabstop="true" data-upload-repository-id="301151089" data-upload-policy-url="/upload/policies/assets"><input type="hidden" value="RU8x4Cvu426+QsPcV6DImMeY2MwEB8jUIYJLdIXPbYIrVJQU3kT+NoE9W37eBzRTVJowphezoWXTpzHNfs1jdA==" data-csrf="true" class="js-data-upload-policy-url-csrf">
<div class="write-content js-write-bucket tooltipped tooltipped-ne tooltipped-no-delay tooltipped-align-left-1 hide-reaction-suggestion upload-enabled mx-0 mt-2 mb-2 mx-md-2 hx_sm-hide-drag-drop js-reaction-suggestion" data-reaction-markup="Would you like to leave a reaction instead?">
<input type="hidden" name="saved_reply_id" id="new_comment_field_saved_reply_id" class="js-resettable-field" value="" data-reset-value="">
<text-expander keys=": @ #" data-issue-url="/suggestions/pull_request/518410600?repository=Ocelot-Social&amp;user_id=Ocelot-Social-Community&amp;issue_suggester=1" data-mention-url="/suggestions/pull_request/518410600?repository=Ocelot-Social&amp;user_id=Ocelot-Social-Community&amp;mention_suggester=1" data-emoji-url="/autocomplete/emoji">
<textarea name="comment[body]" id="new_comment_field" placeholder="Leave a comment" aria-label="Comment body" data-required-trimmed="Text field is empty" class="form-control input-contrast comment-form-textarea js-comment-field js-paste-markdown js-task-list-field js-quick-submit js-size-to-fit js-session-resumable js-saved-reply-shortcut-comment-field" required=""></textarea>
</text-expander>
<label class="text-normal drag-and-drop hx_drag-and-drop position-relative d-flex flex-justify-between">
<input accept=".gif,.jpeg,.jpg,.png,.docx,.gz,.log,.pdf,.pptx,.txt,.xlsx,.zip" type="file" multiple="" class="manual-file-chooser manual-file-chooser-transparent top-0 right-0 bottom-0 left-0 width-full ml-0 form-control" id="fc-new_comment_field">
<span class="bg-gray-light position-absolute top-0 left-0 width-full height-full rounded-1" style="pointer-events: none;"></span>
<span class="position-relative pr-2" style="pointer-events: none;">
<span class="default">
Attach files by dragging &amp; dropping, selecting or pasting them.
</span>
<span class="loading">
<svg viewBox="0 0 16 16" fill="none" style="box-sizing: content-box; color: var(--color-icon-primary);" class="v-align-text-bottom mr-1" width="16" height="16">
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke"></circle>
<path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke">
<animateTransform attributeName="transform" type="rotate" from="0 8 8" to="360 8 8" dur="1s" repeatCount="indefinite"></animateTransform>
</path>
</svg> Uploading your files…
</span>
<span class="error bad-file">
We dont support that file type.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a
GIF, JPEG, JPG, PNG, DOCX, GZ, LOG, PDF, PPTX, TXT, XLSX or ZIP.
</span>
</span>
<span class="error bad-permissions">
Attaching documents requires write permission to this repository.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a GIF, JPEG, JPG, PNG, DOCX, GZ, LOG, PDF, PPTX, TXT, XLSX or ZIP.
</span>
</span>
<span class="error repository-required">
We dont support that file type.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a GIF, JPEG, JPG, PNG, DOCX, GZ, LOG, PDF, PPTX, TXT, XLSX or ZIP.
</span>
</span>
<span class="error too-big">
Yowza, thats a big file
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a file smaller than 10MB.
</span>
</span>
<span class="error empty">
This file is empty.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with a file thats not empty.
</span>
</span>
<span class="error hidden-file">
This file is hidden.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again</span> with another file.
</span>
</span>
<span class="error failed-request">
Something went really wrong, and we cant process that file.
<span class="drag-and-drop-error-info">
<span class="btn-link">Try again.</span>
</span>
</span>
</span>
<span class="tooltipped tooltipped-nw" aria-label="Styling with Markdown is supported">
<a class="muted-link position-relative d-inline" href="https://guides.github.com/features/mastering-markdown/" target="_blank" data-ga-click="Markdown Toolbar, click, help" aria-label="Learn about styling with Markdown">
<svg class="octicon octicon-markdown v-align-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M14.85 3H1.15C.52 3 0 3.52 0 4.15v7.69C0 12.48.52 13 1.15 13h13.69c.64 0 1.15-.52 1.15-1.15v-7.7C16 3.52 15.48 3 14.85 3zM9 11H7V8L5.5 9.92 4 8v3H2V5h2l1.5 2L7 5h2v6zm2.99.5L9.5 8H11V5h2v3h1.5l-2.51 3.5z"></path></svg>
</a>
</span>
</label>
<span class="js-sparkles-remaining-container" hidden=""></span>
</div>
</file-attachment>
<div role="tabpanel" class="js-preview-panel overflow-auto border-bottom mx-0 my-3 mx-md-2 mb-md-2" hidden="">
<input type="hidden" name="path" value="" class="js-path">
<input type="hidden" name="line" value="" class="js-line-number">
<input type="hidden" name="start_line" value="" class="js-start-line-number">
<input type="hidden" name="preview_side" value="" class="js-side">
<input type="hidden" name="preview_start_side" value="" class="js-start-side">
<input type="hidden" name="start_commit_oid" value="" class="js-start-commit-oid">
<input type="hidden" name="end_commit_oid" value="" class="js-end-commit-oid">
<input type="hidden" name="base_commit_oid" value="" class="js-base-commit-oid">
<input type="hidden" name="comment_id" value="" class="js-comment-id">
<div class="comment js-suggested-changes-container" data-thread-side="">
<div class="comment-body markdown-body js-preview-body">
<p>Nothing to preview</p>
</div>
</div>
</div>
<div class="comment-form-error mb-2 js-comment-update-error" hidden=""></div>
</tab-container>
</fieldset>
<div class="form-actions m-0 mx-md-2 my-md-2 p-0">
<div id="partial-new-comment-form-actions" class="js-socket-channel js-updatable-content" data-channel="eyJjIjoiaXNzdWU6NzM5ODE1Nzc3OnN0YXRlIiwidCI6MTYwNTUyODEwMH0=--69b7815c4ca14b8ff4892418d2b2aa630099346e440f02167b936cd445fa457d" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/show_partial?partial=pull_requests%2Fform_actions">
<div class="d-flex flex-justify-end">
<div class="bg-gray-light">
<button type="submit" name="comment_and_close" value="1" class="btn js-comment-and-button js-quick-submit-alternative" data-comment-text="Close with comment" data-disable-with="" formnovalidate="">
<svg class="octicon octicon-issue-closed text-red" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 0110.65-5.003.75.75 0 00.959-1.153 8 8 0 102.592 8.33.75.75 0 10-1.444-.407A6.5 6.5 0 011.5 8zM8 12a1 1 0 100-2 1 1 0 000 2zm0-8a.75.75 0 01.75.75v3.5a.75.75 0 11-1.5 0v-3.5A.75.75 0 018 4zm4.78 4.28l3-3a.75.75 0 00-1.06-1.06l-2.47 2.47-.97-.97a.749.749 0 10-1.06 1.06l1.5 1.5a.75.75 0 001.06 0z"></path></svg>
<span class="js-form-action-text" data-default-action-text="Close pull request">Close pull request</span>
</button>
</div>
<div class="bg-gray-light ml-1">
<button type="submit" class="btn btn-primary" data-disable-with="" data-disable-invalid="" disabled="disabled">
Comment
</button>
</div>
</div>
</div>
</div>
</div>
</form>
<div class="text-small text-gray mx-md-2 mt-md-2 mb-2 mt-3">
<svg class="octicon octicon-info mr-1" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 100 13 6.5 6.5 0 000-13zM0 8a8 8 0 1116 0A8 8 0 010 8zm6.5-.25A.75.75 0 017.25 7h1a.75.75 0 01.75.75v2.75h.25a.75.75 0 010 1.5h-2a.75.75 0 010-1.5h.25v-2h-.25a.75.75 0 01-.75-.75zM8 6a1 1 0 100-2 1 1 0 000 2z"></path></svg>Remember, contributions to this repository should follow
its
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/blob/3540fb765fe09ff4be7f9ad01400468063a45f0d/CONTRIBUTING.md" data-ga-click="Pull request, click contributing link in composer footer, repo:Ocelot-Social-Community/Ocelot-Social">contributing guidelines</a>
and
<a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/blob/3540fb765fe09ff4be7f9ad01400468063a45f0d/CODE_OF_CONDUCT.md" data-ga-click="Pull request, click code_of_conduct link in composer footer, repo:Ocelot-Social-Community/Ocelot-Social">code of conduct</a>.
</div>
<div class="protip">
<svg class="octicon octicon-light-bulb text-gray" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 01-1.484.211c-.04-.282-.163-.547-.37-.847a8.695 8.695 0 00-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.75.75 0 01-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75zM6 15.25a.75.75 0 01.75-.75h2.5a.75.75 0 010 1.5h-2.5a.75.75 0 01-.75-.75zM5.75 12a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5z"></path></svg>
<strong>ProTip!</strong>
Add comments to specific lines under <a href="https://github.com/Ocelot-Social-Community/Ocelot-Social/pull/3934/files">Files changed</a>.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex-shrink-0 col-12 col-md-3">
<div id="partial-discussion-sidebar" class="js-socket-channel js-updatable-content" data-channel="eyJjIjoicHVsbF9yZXF1ZXN0OjUxODQxMDYwMCIsInQiOjE2MDU1MjgxMDB9--055cc25eab20a285a730bd94f2e390e260c4fd60badd141531d38e2943208e75" data-gid="MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw" data-url="/Ocelot-Social-Community/Ocelot-Social/issues/3934/show_partial?partial=issues%2Fsidebar" data-project-hovercards-enabled="">
<div class="discussion-sidebar-item sidebar-assignee js-discussion-sidebar-item position-relative" data-team-hovercards-enabled="">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-issue-sidebar-form" aria-label="Select reviewers" action="/Ocelot-Social-Community/Ocelot-Social/pull/3934/review-requests?pr_global_id=MDExOlB1bGxSZXF1ZXN0NTE4NDEwNjAw" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="rG7be+iEH/KO5yS0YyYKf1sj7D9A8L0wSW+cko2ppkF28SQqjFk6GJXAY/fdg9vlYAMp03aMFyxiKlTboXhtNQ==">
<details class="details-reset details-overlay select-menu hx_rsm " id="reviewers-select-menu">
<summary class="text-bold discussion-sidebar-heading discussion-sidebar-toggle hx_rsm-trigger" aria-haspopup="menu" data-hotkey="q" role="button">
<svg class="octicon octicon-gear" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
Reviewers
</summary>
<details-menu class="select-menu-modal position-absolute right-0 hx_rsm-modal js-discussion-sidebar-menu" style="z-index: 99; overflow: visible;" data-multiple="" data-menu-max-options="15">
<div class="select-menu-header">
<span class="select-menu-title">Request up to 15 reviewers</span>
<button class="hx_rsm-close-button btn-link close-button" type="button" data-toggle-for="reviewers-select-menu"><svg aria-label="Close menu" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
</div>
<div class="hx_rsm-content" role="menu">
<!-- when content is passed via block (ex: reviwers/assignees loads content via substring-memory in the block) -->
<div class="select-menu-filters">
<div class="select-menu-text-filter">
<input type="text" id="review-filter-field" class="form-control js-filterable-field" placeholder="Type or choose a name" aria-label="Type or choose a name" autofocus="" spellcheck="false" autocomplete="off">
</div>
</div>
<div class="warning" data-menu-max-options-warning="" hidden="">
You can only select 15 reviewers.
</div>
<div class="select-menu-list">
<div class="select-menu-no-results">Nothing to show</div>
<div data-filterable-for="review-filter-field" data-filterable-type="substring-memory" data-filterable-limit="100" data-filterable-src="/Ocelot-Social-Community/Ocelot-Social/pull/3934/review-requests">
<template>
<label class="select-menu-item text-normal" role="menuitemcheckbox" aria-checked="false" tabindex="0">
<svg class="octicon octicon-check select-menu-item-icon" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
<input style="display:none" type="checkbox" value="" name="reviewer_user_ids[]">
<div class="select-menu-item-gravatar">
<img src="" alt="" size="20" class="avatar-small mr-1 js-avatar">
</div>
<div class="select-menu-item-text lh-condensed">
<span class="select-menu-item-heading">
<span class="js-username"></span>
<span class="description js-description"></span>
<span class="description d-block ml-4 pl-1 pr-2 js-extended-description"></span>
</span>
</div>
</label>
</template>
<div class="octocat-spinner m-5"></div>
<div class="select-menu-divider js-divider-suggestions" hidden="">Suggestions</div>
<div class="select-menu-divider js-divider-rest" hidden="">Everyone else</div>
</div>
</div>
</div>
</details-menu>
</details>
<span class="css-truncate">
<p class="text-gray-light">Suggestions</p>
<p>
<span class="tooltipped tooltipped-nw tooltipped-multiline float-right" aria-label="Request review from ogerly">
<button name="suggested_reviewer_id" value="1324583" type="submit" class="text-left btn-link js-suggested-reviewer">
Request
</button>
</span>
<span class="js-hovercard-left" data-hovercard-type="user" data-hovercard-url="/users/ogerly/hovercard" data-assignee-name="ogerly">
<a class="no-underline" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ogerly">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/1324583.jpeg" alt="@ogerly" width="20" height="20">
</a> <a class="assignee link-gray-dark" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ogerly">
<span class="css-truncate-target">ogerly</span>
</a></span>
</p>
<p>
<span class="tooltipped tooltipped-nw tooltipped-multiline float-right" aria-label="Request review from Tirokk">
<button name="suggested_reviewer_id" value="25344101" type="submit" class="text-left btn-link js-suggested-reviewer">
Request
</button>
</span>
<span class="js-hovercard-left" data-hovercard-type="user" data-hovercard-url="/users/Tirokk/hovercard" data-assignee-name="Tirokk">
<a class="no-underline" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tirokk">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/25344101_002.jpeg" alt="@Tirokk" width="20" height="20">
</a> <a class="assignee link-gray-dark" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tirokk">
<span class="css-truncate-target">Tirokk</span>
</a></span>
</p>
<p>
<span class="tooltipped tooltipped-nw tooltipped-multiline float-right" aria-label="Request review from roschaefer">
<button name="suggested_reviewer_id" value="2110676" type="submit" class="text-left btn-link js-suggested-reviewer">
Request
</button>
</span>
<span class="js-hovercard-left" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-assignee-name="roschaefer">
<a class="no-underline" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/roschaefer">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676_002.jpeg" alt="@roschaefer" width="20" height="20">
</a> <a class="assignee link-gray-dark" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/roschaefer">
<span class="css-truncate-target">roschaefer</span>
</a></span>
</p>
<p class="mt-2">
At least 1 approving review is required to merge this pull request.
</p>
</span>
<div class="py-2">
<span>Still in progress?</span>
<details class="details-reset details-overlay d-inline">
<summary role="button" class="btn-link muted-link">Convert to draft</summary>
<details-dialog class="Box Box--overlay anim-fade-in fast" role="dialog" aria-modal="true">
<div class="Box-header">
<button class="Box-btn-octicon btn-octicon float-right" type="button" aria-label="Close dialog" data-close-dialog="">
<svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<h3 class="Box-title">Convert this pull request to draft?</h3>
</div>
<div class="flash flash-warn flash-full ">
People who are already subscribed will not be unsubscribed.
</div> <div class="Box-footer">
<button type="button" class="js-convert-to-draft btn btn-block btn-danger" data-url="/Ocelot-Social-Community/Ocelot-Social/pull/3934/convert_to_draft">Convert to draft</button>
<input type="hidden" value="TAwVkEg1I5Yn6oy6kmu2upv5c/skWBV6cCTy5qzMl1F9oyB8K5K4Gl/y1bFe0N776gaXOCSPBxln7M+ylgeAvQ==" data-csrf="true" class="js-data-url-csrf">
</div>
</details-dialog>
</details>
</div>
</form>
</div>
<div class="discussion-sidebar-item sidebar-assignee js-discussion-sidebar-item">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-issue-sidebar-form" aria-label="Select assignees" action="/Ocelot-Social-Community/Ocelot-Social/issues/3934/assignees" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="pXeOesRKhKD3XleHmUNN2AX/A0PzWqbHUcbL5+aAft/XDFc9z5e1TP2C9XtfmmCVDIFT9vX+KmqNG7u+mHgsFg==">
<details class="details-reset details-overlay select-menu hx_rsm " id="assignees-select-menu">
<summary class="text-bold discussion-sidebar-heading discussion-sidebar-toggle hx_rsm-trigger" aria-haspopup="menu" data-hotkey="a" role="button">
<svg class="octicon octicon-gear" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
Assignees
</summary>
<details-menu class="select-menu-modal position-absolute right-0 hx_rsm-modal js-discussion-sidebar-menu" style="z-index: 99; overflow: visible;" data-multiple="" data-menu-max-options="10">
<div class="select-menu-header">
<span class="select-menu-title">Assign up to 10 people to this pull request</span>
<button class="hx_rsm-close-button btn-link close-button" type="button" data-toggle-for="assignees-select-menu"><svg aria-label="Close menu" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
</div>
<div class="hx_rsm-content" role="menu">
<!-- when content is passed via block (ex: reviwers/assignees loads content via substring-memory in the block) -->
<div class="select-menu-filters">
<div class="select-menu-text-filter">
<input type="text" id="assignee-filter-field" class="form-control js-filterable-field" placeholder="Type or choose a name" aria-label="Type or choose a name" autofocus="" spellcheck="false" autocomplete="off">
</div>
</div>
<div class="warning mb-0" data-menu-max-options-warning="" hidden="">
You can only select 10 assignees.
</div>
<div class="select-menu-list">
<button class="btn-block select-menu-clear-item select-menu-item" role="menuitem" type="button" aria-label="Clear assignee" data-clear-assignees="">
<svg class="octicon octicon-x select-menu-item-icon" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
<div class="select-menu-item-text">Clear assignees</div>
</button>
<div class="select-menu-no-results">Nothing to show</div>
<input type="hidden" value="" name="issue[user_assignee_ids][]">
<div data-filterable-for="assignee-filter-field" data-filterable-type="substring-memory" data-filterable-limit="100" data-filterable-src="/Ocelot-Social-Community/Ocelot-Social/issues/3934/show_partial?partial=issues%2Fsidebar%2Fassignees_menu_content">
<input type="hidden" name="issue[user_assignee_ids][]" value="15882241">
<template>
<label class="select-menu-item text-normal" role="menuitemcheckbox" aria-checked="false" tabindex="0">
<svg class="octicon octicon-check select-menu-item-icon" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
<input style="display:none" type="checkbox" value="" name="issue[user_assignee_ids][]">
<div class="select-menu-item-gravatar">
<img src="" alt="" size="20" class="avatar-small mr-1 js-avatar">
</div>
<div class="select-menu-item-text lh-condensed">
<span class="select-menu-item-heading">
<span class="js-username"></span>
<span class="description js-description"></span>
</span>
</div>
</label>
</template>
<div class="octocat-spinner m-5"></div>
</div>
</div>
</div>
</details-menu>
</details>
<span class="css-truncate js-issue-assignees">
<p>
<span class="js-hovercard-left" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-assignee-name="Mogge">
<a class="no-underline" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_005.png" alt="@Mogge" width="20" height="20">
</a> <a class="assignee link-gray-dark" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">
<span class="css-truncate-target">Mogge</span>
</a></span>
</p>
</span>
</form></div>
<div class="discussion-sidebar-item sidebar-labels js-discussion-sidebar-item">
<details class="details-reset details-overlay select-menu hx_rsm label-select-menu" id="labels-select-menu">
<summary class="text-bold discussion-sidebar-heading discussion-sidebar-toggle hx_rsm-trigger" aria-haspopup="menu" data-hotkey="l" role="button">
<svg class="octicon octicon-gear" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
Labels
</summary>
<details-menu src="/Ocelot-Social-Community/Ocelot-Social/issues/3934/show_partial?partial=issues%2Fsidebar%2Flabels_menu_content" class="select-menu-modal position-absolute right-0 hx_rsm-modal js-discussion-sidebar-menu" style="z-index: 99; overflow: visible;" data-multiple="">
<div class="select-menu-header">
<span class="select-menu-title">Apply labels to this pull request</span>
<button class="hx_rsm-close-button btn-link close-button" type="button" data-toggle-for="labels-select-menu"><svg aria-label="Close menu" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
</div>
<div class="select-menu-filters">
<div class="select-menu-text-filter">
<input type="text" id="label-filter-field" class="form-control js-label-filter-field js-filterable-field" placeholder="Filter labels" aria-label="Filter labels" autocomplete="off" autofocus="">
</div>
</div>
<div class="hx_rsm-content" role="menu">
<!-- when data is loaded as HTML via details-menu[src] -->
<include-fragment>
<div class="anim-pulse hx_rsm-loading text-center p-6">
<svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg>
</div>
</include-fragment>
</div>
</details-menu>
</details>
<div class="js-issue-labels labels css-truncate">
None yet
</div>
</div>
<div class="discussion-sidebar-item js-discussion-sidebar-item">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-issue-sidebar-form" aria-label="Select projects" action="/Ocelot-Social-Community/Ocelot-Social/projects/issues/3934" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="/zb03Kyib2zVjvpD7g2L07NPDtLMNYAztWcVL3hS+edhrgaueGxgcsdluNGwp9zsG+VYQmOHkkONIe8F5zcnlQ==">
<details class="details-reset details-overlay select-menu hx_rsm " id="projects-select-menu">
<summary class="text-bold discussion-sidebar-heading discussion-sidebar-toggle hx_rsm-trigger" aria-haspopup="menu" data-hotkey="p" role="button">
<svg class="octicon octicon-gear" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
Projects
</summary>
<details-menu src="/Ocelot-Social-Community/Ocelot-Social/issues/3934/show_partial?partial=issues%2Fsidebar%2Fprojects_menu_content" class="select-menu-modal position-absolute right-0 hx_rsm-modal js-discussion-sidebar-menu" style="z-index: 99; overflow: visible;" data-multiple="">
<div class="select-menu-header">
<span class="select-menu-title">Projects</span>
<button class="hx_rsm-close-button btn-link close-button" type="button" data-toggle-for="projects-select-menu"><svg aria-label="Close menu" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
</div>
<div class="hx_rsm-content" role="menu">
<!-- when data is loaded as HTML via details-menu[src] -->
<include-fragment>
<div class="anim-pulse hx_rsm-loading text-center p-6">
<svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg>
</div>
</include-fragment>
</div>
</details-menu>
</details>
<span class="css-truncate sidebar-progress-bar">
None yet
</span>
</form></div>
<div class="discussion-sidebar-item sidebar-progress-bar js-discussion-sidebar-item">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-issue-sidebar-form" aria-label="Select milestones" action="/Ocelot-Social-Community/Ocelot-Social/issues/3934/set_milestone?partial=issues%2Fsidebar%2Fshow%2Fmilestone" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="fswnQDPJkln7cPc4FlG/3W7F9YmXpA31IMVsyxeDHnfhPUgu4nixP0XrYftAYWn+2KB7a50JRhvUSoQ3uKAADQ==">
<details class="details-reset details-overlay select-menu hx_rsm " id="milestone-select-menu">
<summary class="text-bold discussion-sidebar-heading discussion-sidebar-toggle hx_rsm-trigger" aria-haspopup="menu" data-hotkey="m" role="button">
<svg class="octicon octicon-gear" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
Milestone
</summary>
<details-menu src="/Ocelot-Social-Community/Ocelot-Social/issues/3934/show_partial?partial=issues%2Fsidebar%2Fmilestone_menu_content" class="select-menu-modal position-absolute right-0 hx_rsm-modal js-discussion-sidebar-menu" style="z-index: 99; overflow: visible;">
<div class="select-menu-header">
<span class="select-menu-title">Set milestone</span>
<button class="hx_rsm-close-button btn-link close-button" type="button" data-toggle-for="milestone-select-menu"><svg aria-label="Close menu" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
</div>
<div class="hx_rsm-content" role="menu">
<!-- when data is loaded as HTML via details-menu[src] -->
<include-fragment>
<div class="anim-pulse hx_rsm-loading text-center p-6">
<svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg>
</div>
</include-fragment>
</div>
</details-menu>
</details>
No milestone
</form></div>
<div class="discussion-sidebar-item js-discussion-sidebar-item" data-issue-and-pr-hovercards-enabled="">
<!-- '"` --><!-- </textarea></xmp> --><form class="js-issue-sidebar-form" aria-label="Link issues" action="/Ocelot-Social-Community/Ocelot-Social/issues/closing_references?source_id=518410600&amp;source_type=PULL_REQUEST" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="WggJum1VtYgHW3C+fMU6wNLUCOl9aZvrGONsb7NyuV72sOtJeNgJ1icVRLCONPx6FvTLeU/Yl5LidAb2S22r2Q==">
<details class="details-reset details-overlay select-menu hx_rsm " id="reference-select-menu">
<summary class="text-bold discussion-sidebar-heading discussion-sidebar-toggle hx_rsm-trigger" aria-haspopup="menu" data-hotkey="x" role="button">
<svg class="octicon octicon-gear" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.429 1.525a6.593 6.593 0 011.142 0c.036.003.108.036.137.146l.289 1.105c.147.56.55.967.997 1.189.174.086.341.183.501.29.417.278.97.423 1.53.27l1.102-.303c.11-.03.175.016.195.046.219.31.41.641.573.989.014.031.022.11-.059.19l-.815.806c-.411.406-.562.957-.53 1.456a4.588 4.588 0 010 .582c-.032.499.119 1.05.53 1.456l.815.806c.08.08.073.159.059.19a6.494 6.494 0 01-.573.99c-.02.029-.086.074-.195.045l-1.103-.303c-.559-.153-1.112-.008-1.529.27-.16.107-.327.204-.5.29-.449.222-.851.628-.998 1.189l-.289 1.105c-.029.11-.101.143-.137.146a6.613 6.613 0 01-1.142 0c-.036-.003-.108-.037-.137-.146l-.289-1.105c-.147-.56-.55-.967-.997-1.189a4.502 4.502 0 01-.501-.29c-.417-.278-.97-.423-1.53-.27l-1.102.303c-.11.03-.175-.016-.195-.046a6.492 6.492 0 01-.573-.989c-.014-.031-.022-.11.059-.19l.815-.806c.411-.406.562-.957.53-1.456a4.587 4.587 0 010-.582c.032-.499-.119-1.05-.53-1.456l-.815-.806c-.08-.08-.073-.159-.059-.19a6.44 6.44 0 01.573-.99c.02-.029.086-.075.195-.045l1.103.303c.559.153 1.112.008 1.529-.27.16-.107.327-.204.5-.29.449-.222.851-.628.998-1.189l.289-1.105c.029-.11.101-.143.137-.146zM8 0c-.236 0-.47.01-.701.03-.743.065-1.29.615-1.458 1.261l-.29 1.106c-.017.066-.078.158-.211.224a5.994 5.994 0 00-.668.386c-.123.082-.233.09-.3.071L3.27 2.776c-.644-.177-1.392.02-1.82.63a7.977 7.977 0 00-.704 1.217c-.315.675-.111 1.422.363 1.891l.815.806c.05.048.098.147.088.294a6.084 6.084 0 000 .772c.01.147-.038.246-.088.294l-.815.806c-.474.469-.678 1.216-.363 1.891.2.428.436.835.704 1.218.428.609 1.176.806 1.82.63l1.103-.303c.066-.019.176-.011.299.071.213.143.436.272.668.386.133.066.194.158.212.224l.289 1.106c.169.646.715 1.196 1.458 1.26a8.094 8.094 0 001.402 0c.743-.064 1.29-.614 1.458-1.26l.29-1.106c.017-.066.078-.158.211-.224a5.98 5.98 0 00.668-.386c.123-.082.233-.09.3-.071l1.102.302c.644.177 1.392-.02 1.82-.63.268-.382.505-.789.704-1.217.315-.675.111-1.422-.364-1.891l-.814-.806c-.05-.048-.098-.147-.088-.294a6.1 6.1 0 000-.772c-.01-.147.039-.246.088-.294l.814-.806c.475-.469.679-1.216.364-1.891a7.992 7.992 0 00-.704-1.218c-.428-.609-1.176-.806-1.82-.63l-1.103.303c-.066.019-.176.011-.299-.071a5.991 5.991 0 00-.668-.386c-.133-.066-.194-.158-.212-.224L10.16 1.29C9.99.645 9.444.095 8.701.031A8.094 8.094 0 008 0zm1.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM11 8a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
Linked issues
</summary>
<details-menu src="/Ocelot-Social-Community/Ocelot-Social/issues/closing_references/518410600?source_type=PULL_REQUEST" class="select-menu-modal position-absolute right-0 hx_rsm-modal js-discussion-sidebar-menu" style="z-index: 99; overflow: visible;" data-multiple="" data-menu-max-options="10">
<div class="select-menu-header">
<span class="select-menu-title">Link an issue from this repository</span>
<button class="hx_rsm-close-button btn-link close-button" type="button" data-toggle-for="reference-select-menu"><svg aria-label="Close menu" class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" role="img"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg></button>
</div>
<div class="hx_rsm-content" role="menu">
<!-- when data is loaded as HTML via details-menu[src] -->
<include-fragment>
<div class="anim-pulse hx_rsm-loading text-center p-6">
<svg height="32" class="octicon octicon-octoface" viewBox="0 0 24 24" version="1.1" width="32" aria-hidden="true"><path d="M7.75 11c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5C9 11.56 8.44 11 7.75 11zm1.27 4.5a.469.469 0 01.48-.5h5a.47.47 0 01.48.5c-.116 1.316-.759 2.5-2.98 2.5s-2.864-1.184-2.98-2.5zm7.23-4.5c-.69 0-1.25.56-1.25 1.25v1.5a1.25 1.25 0 102.5 0v-1.5c0-.69-.56-1.25-1.25-1.25z"></path><path fill-rule="evenodd" d="M21.255 3.82a1.725 1.725 0 00-2.141-1.195c-.557.16-1.406.44-2.264.866-.78.386-1.647.93-2.293 1.677A18.442 18.442 0 0012 5c-.93 0-1.784.059-2.569.17-.645-.74-1.505-1.28-2.28-1.664a13.876 13.876 0 00-2.265-.866 1.725 1.725 0 00-2.141 1.196 23.645 23.645 0 00-.69 3.292c-.125.97-.191 2.07-.066 3.112C1.254 11.882 1 13.734 1 15.527 1 19.915 3.13 23 12 23c8.87 0 11-3.053 11-7.473 0-1.794-.255-3.647-.99-5.29.127-1.046.06-2.15-.066-3.125a23.652 23.652 0 00-.689-3.292zM20.5 14c.5 3.5-1.5 6.5-8.5 6.5s-9-3-8.5-6.5c.583-4 3-6 8.5-6s7.928 2 8.5 6z"></path></svg>
</div>
</include-fragment>
</div>
</details-menu>
</details>
<p>Successfully merging this pull request may close these issues.</p>
<p>None yet</p>
</form>
</div>
<div class="discussion-sidebar-item sidebar-notifications">
<div class="thread-subscription-status js-socket-channel js-updatable-content" data-replace-remote-form-target="" data-channel="eyJjIjoibGlzdC1zdWJzY3JpcHRpb246cmVwb3NpdG9yeTozMDExNTEwODk6MTU4ODIyNDEiLCJ0IjoxNjA1NTI4MTAwfQ==--520822c44c87a80c3275e6ebbd986f7952a3e08887ea72d10e985f80f1a0f84a eyJjIjoidGhyZWFkLXN1YnNjcmlwdGlvbjo3Mzk4MTU3Nzc6MTU4ODIyNDEiLCJ0IjoxNjA1NTI4MTAwfQ==--9137d94f84432999de00e081d5763564551473611994831fa4eb709cfc58fc48" data-url="/notifications/thread_subscription?repository_id=301151089&amp;thread_class=Issue&amp;thread_id=739815777">
<div>
<div class="d-flex position-relative">
<details class="lh-default width-full details-overlay details-overlay-dark details-reset text-gray-dark">
<summary aria-label="Customize notification settings" role="button" class="discussion-sidebar-heading discussion-sidebar-toggle ">
<div class="d-flex flex-justify-between">
<div class="text-bold">Notifications</div>
<span>Customize</span>
</div>
</summary> <details-dialog src="/notifications/thread_subscription_dialog?repository_id=301151089&amp;thread_class=Issue&amp;thread_id=739815777" aria-label="Notification settings" class="Box Box--overlay flex-column anim-fade-in fast overflow-auto d-flex f5" role="dialog" aria-modal="true">
<div class="Box-header">
<button class="Box-btn-octicon btn-octicon float-right" type="button" aria-label="Close dialog" data-close-dialog="">
<svg class="octicon octicon-x" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<h3 class="Box-title mb-0 mt-0">
Notification settings
</h3>
</div>
<include-fragment aria-label="Loading">
<div class="d-flex flex-items-center flex-justify-center" style="min-height: 315px;">
<img alt="Loading..." src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/octocat-spinner-64.gif" width="32" height="32">
</div>
</include-fragment>
</details-dialog></details> </div>
</div>
<form data-replace-remote-form="true" class="thread-subscribe-form" action="/notifications/thread" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="52AYLui5HYrslYZCEUij4jHN+gt2TkST6SE7MlNM8UB1QgpluJkWcMc8nUYAsUjuq0CAllvkPGNCzGiZtvxuVw=="> <input type="hidden" name="repository_id" value="301151089">
<input type="hidden" name="thread_id" value="739815777">
<input type="hidden" name="thread_class" value="Issue">
<input type="hidden" name="id" value="unsubscribe">
<button type="submit" class="btn btn-block btn-sm thread-subscribe-button" data-disable-with="">
<svg class="octicon octicon-bell-slash" height="16" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1.5c-.997 0-1.895.416-2.534 1.086A.75.75 0 014.38 1.55 5 5 0 0113 5v2.373a.75.75 0 01-1.5 0V5A3.5 3.5 0 008 1.5zM4.182 4.31L1.19 2.143a.75.75 0 10-.88 1.214L3 5.305v2.642a.25.25 0 01-.042.139L1.255 10.64A1.518 1.518 0 002.518 13h11.108l1.184.857a.75.75 0 10.88-1.214l-1.375-.996a1.196 1.196 0 00-.013-.01L4.198 4.321a.733.733 0 00-.016-.011zm7.373 7.19L4.5 6.391v1.556c0 .346-.102.683-.294.97l-1.703 2.556a.018.018 0 00-.003.01.015.015 0 00.005.012.017.017 0 00.006.004l.007.001h9.037zM8 16a2 2 0 001.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 008 16z"></path></svg> Unsubscribe
</button>
</form> <p class="reason text-small text-gray">Youre receiving notifications because youre watching this repository.</p>
</div>
</div>
<div id="partial-users-participants" class="discussion-sidebar-item">
<div class="participation">
<div class="discussion-sidebar-heading text-bold">
2 participants
</div>
<div class="participation-avatars d-flex flex-wrap">
<a class="participant-avatar" data-hovercard-type="user" data-hovercard-url="/users/Mogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mogge">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/15882241_004.png" alt="@Mogge" width="26" height="26">
</a> <a class="participant-avatar" data-hovercard-type="user" data-hovercard-url="/users/roschaefer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/roschaefer">
<img class="avatar avatar-user" src="feat%20[WIP]%20%F0%9F%8D%B0%20Rebranding%20And%20White-Labeling%20by%20Mogge%20%C2%B7%20Pull%20Request%20%233934%20%C2%B7%20Ocelot-Social-Community_Ocelot-Social_files/2110676.jpeg" alt="@roschaefer" width="26" height="26">
</a> </div>
</div>
</div>
<div class="discussion-sidebar-item">
<details class="details-reset details-overlay details-overlay-dark">
<summary class="text-bold link-gray-dark lock-toggle-link" role="button">
<svg class="octicon octicon-lock" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 4v2h-.25A1.75 1.75 0 002 7.75v5.5c0 .966.784 1.75 1.75 1.75h8.5A1.75 1.75 0 0014 13.25v-5.5A1.75 1.75 0 0012.25 6H12V4a4 4 0 10-8 0zm6.5 2V4a2.5 2.5 0 00-5 0v2h5zM12 7.5h.25a.25.25 0 01.25.25v5.5a.25.25 0 01-.25.25h-8.5a.25.25 0 01-.25-.25v-5.5a.25.25 0 01.25-.25H12z"></path></svg>
<strong>Lock conversation</strong>
</summary>
<details-dialog class="anim-fade-in fast Box Box--overlay text-gray-dark f5" aria-labelledby="lock-dialog-title" role="dialog" aria-modal="true">
<!-- '"` --><!-- </textarea></xmp> --><form action="/Ocelot-Social-Community/Ocelot-Social/issues/3934/lock" accept-charset="UTF-8" method="post"><input type="hidden" name="_method" value="put"><input type="hidden" name="authenticity_token" value="3hB7YxFtWPSyFM6USLesvhjS+MrSZCokgvBHOaZOKcsdMmc7sbdvlof0GVocDQFNSq/fa1cCLAMFTuIboYijPw==">
<div class="Box-header">
<button class="Box-btn-octicon btn-octicon float-right" type="button" aria-label="Close dialog" data-close-dialog="">
<svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<h3 id="lock-dialog-title" class="Box-title">
Lock conversation on this pull request
</h3>
</div>
<div class="Box-body">
<ul class="ml-3">
<li>Other users <strong>cant add new comments</strong> to this pull request.</li>
<li>
You and other members of teams with
<a href="https://docs.github.com/articles/what-are-the-different-access-permissions">write access</a>
to this repository <strong>can still leave comments</strong> that others can see.
</li>
<li>You can always unlock this pull request again in the future.</li>
</ul>
<dl class="form-group mb-0">
<dt>
<label for="unlock-reason">Reason for locking</label>
</dt>
<dd>
<select name="reason" id="unlock-reason" aria-describedby="unlock-reason-note" class="form-select"><option value="" selected="selected">Choose a reason</option><option value="Off-topic">Off-topic</option>
<option value="Too heated">Too heated</option>
<option value="Resolved">Resolved</option>
<option value="Spam">Spam</option></select>
<p class="note" id="unlock-reason-note">
Optionally, choose a reason for locking that others can see. Learn more about when
its appropriate to <a href="https://docs.github.com/articles/locking-conversations">lock conversations</a>.
</p>
</dd>
</dl>
</div>
<div class="Box-footer">
<button type="submit" class="btn btn-block">
Lock conversation on this pull request
</button>
</div>
</form> </details-dialog>
</details>
</div>
</div>
</div></div>
</div>
</div>
<div hidden="">
<span class="js-add-to-batch-enabled">Add this suggestion to a batch that can be applied as a single commit.</span>
<span class="js-unchanged-suggestion">This suggestion is invalid because no changes were made to the code.</span>
<span class="js-closed-pull">Suggestions cannot be applied while the pull request is closed.</span>
<span class="js-viewing-subset-changes">Suggestions cannot be applied while viewing a subset of changes.</span>
<span class="js-one-suggestion-per-line">Only one suggestion per line can be applied in a batch.</span>
<span class="js-reenable-add-to-batch">Add this suggestion to a batch that can be applied as a single commit.</span>
<span class="js-validation-on-left-blob">Applying suggestions on deleted lines is not supported.</span>
<span class="js-validation-on-right-blob">You must change the existing code in this line in order to create a valid suggestion.</span>
<span class="js-outdated-comment">Outdated suggestions cannot be applied.</span>
<span class="js-resolved-thread">This suggestion has been applied or marked resolved.</span>
<span class="js-pending-review">Suggestions cannot be applied from pending reviews.</span>
<span class="js-is-multiline">Suggestions cannot be applied on multi-line comments.</span>
<div class="form-group errored m-0 error js-suggested-changes-inline-validation-template d-flex" style="cursor: default;">
<span class="js-suggested-changes-inline-error-message position-relative error m-0" style="max-width: inherit;"></span>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<div class="footer container-xl width-full p-responsive" role="contentinfo">
<div class="position-relative d-flex flex-row-reverse flex-lg-row flex-wrap flex-lg-nowrap flex-justify-center flex-lg-justify-between flex-sm-items-center pt-6 pb-2 mt-6 f6 text-gray border-top border-gray-light ">
<a aria-label="Homepage" title="GitHub" class="footer-octicon d-none d-lg-block mr-lg-4" href="https://github.com/">
<svg height="24" class="octicon octicon-mark-github" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
</a>
<ul class="list-style-none d-flex flex-wrap col-12 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
<li class="mr-3 mr-lg-0">© 2020 GitHub, Inc.</li>
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to terms, text:terms" href="https://github.com/site/terms">Terms</a></li>
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to privacy, text:privacy" href="https://github.com/site/privacy">Privacy</a></li>
<li class="js-cookie-consent-preferences-link-container mr-3 mr-lg-0">
<button data-ga-click="Footer, go to cookie preferences, text:cookie preferences" class="btn-link js-cookie-consent-preferences-link" type="button">Cookie Preferences</button>
</li>
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to security, text:security" href="https://github.com/security">Security</a></li>
<li class="mr-3 mr-lg-0"><a href="https://githubstatus.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to help, text:help" href="https://docs.github.com/">Help</a></li>
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to contact, text:contact" href="https://github.com/contact">Contact GitHub</a></li>
<li class="mr-3 mr-lg-0"><a href="https://github.com/pricing" data-ga-click="Footer, go to Pricing, text:Pricing">Pricing</a></li>
<li class="mr-3 mr-lg-0"><a href="https://docs.github.com/" data-ga-click="Footer, go to api, text:api">API</a></li>
<li class="mr-3 mr-lg-0"><a href="https://services.github.com/" data-ga-click="Footer, go to training, text:training">Training</a></li>
<li class="mr-3 mr-lg-0"><a href="https://github.blog/" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to about, text:about" href="https://github.com/about">About</a></li>
</ul>
</div>
<div class="d-flex flex-justify-center pb-6">
<span class="f6 text-gray-light"></span>
</div>
</div>
<div id="ajax-error-message" class="ajax-error-message flash flash-error">
<svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
<button type="button" class="flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
<svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
You cant perform that action at this time.
</div>
<div class="js-stale-session-flash flash flash-warn flash-banner" hidden="">
<svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
<span class="js-stale-session-flash-signed-in" hidden="">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
<span class="js-stale-session-flash-signed-out" hidden="">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
</div>
<template id="site-details-dialog">
<details class="details-reset details-overlay details-overlay-dark lh-default text-gray-dark hx_rsm" open="">
<summary role="button" aria-label="Close dialog"></summary>
<details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast hx_rsm-dialog hx_rsm-modal">
<button class="Box-btn-octicon m-0 btn-octicon position-absolute right-0 top-0" type="button" aria-label="Close dialog" data-close-dialog="">
<svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<div class="octocat-spinner my-6 js-details-dialog-spinner"></div>
</details-dialog>
</details>
</template>
<div class="Popover js-hovercard-content position-absolute" style="display: none; outline: none;" tabindex="0">
<div class="Popover-message Popover-message--bottom-left Popover-message--large Box box-shadow-large" style="width:360px;"></div>
</div>
<div class="js-cookie-consent-banner" hidden="">
<div class="hx_cookie-banner p-2 p-sm-3 p-md-4">
<div style="max-width: 1194px;" class="Box hx_cookie-banner-box box-shadow-medium mx-auto">
<div class="Box-body border-0 py-0 px-3 px-md-4">
<div class="js-main-cookie-banner hx_cookie-banner-main">
<div class="d-md-flex flex-items-center py-3">
<p class="f5 flex-1 mb-3 mb-md-0">
We use <span class="text-bold">optional</span> third-party analytics cookies to understand how you use GitHub.com so we can build better products.
<span class="btn-link js-cookie-consent-learn-more">Learn more</span>.
</p>
<div class="d-flex d-md-block flex-wrap flex-sm-nowrap">
<button class="btn btn-outline flex-1 mr-1 mx-sm-1 m-md-0 ml-md-2 js-cookie-consent-accept">Accept</button>
<button class="btn btn-outline flex-1 ml-1 m-md-0 ml-md-2 js-cookie-consent-reject">Reject</button>
</div>
</div>
</div>
<div class="js-cookie-details hx_cookie-banner-details" hidden="">
<div class="d-md-flex flex-items-center py-3">
<p class="f5 flex-1 mb-2 mb-md-0">
We use <span class="text-bold">optional</span> third-party analytics cookies to understand how you use GitHub.com so we can build better products.
<br>
You can always update your selection by clicking <span class="text-bold">Cookie Preferences</span> at the bottom of the page.
For more information, see our <a href="https://docs.github.com/en/free-pro-team@latest/github/site-policy/github-privacy-statement">Privacy Statement</a>.
</p>
</div>
<div class="d-md-flex flex-items-center py-3 border-top">
<div class="f5 flex-1 mb-2 mb-md-0">
<h5 class="mb-1">Essential cookies</h5>
<p class="f6 mb-md-0">We use essential cookies to perform essential website functions, e.g. they're used to log you in.
<a href="https://docs.github.com/en/github/site-policy/github-subprocessors-and-cookies">Learn more</a>
</p>
</div>
<div class="text-right">
<h5 class="text-blue">Always active</h5>
</div>
</div>
<div class="d-md-flex flex-items-center py-3 border-top">
<div class="f5 flex-1 mb-2 mb-md-0">
<h5 class="mb-1">Analytics cookies</h5>
<p class="f6 mb-md-0">We use analytics cookies to
understand how you use our websites so we can make them better, e.g.
they're used to gather information about the pages you visit and how
many clicks you need to accomplish a task.
<a href="https://docs.github.com/en/github/site-policy/github-subprocessors-and-cookies">Learn more</a>
</p>
</div>
<div class="text-right">
<div class="BtnGroup mt-1 mt-md-0 ml-2">
<button class="btn btn-outline BtnGroup-item js-accept-analytics-cookies" type="button">Accept</button>
<button class="btn btn-outline BtnGroup-item js-reject-analytics-cookies" type="button">Reject</button>
</div>
</div>
</div>
<div class="text-right py-3 border-top">
<button class="btn btn-primary js-save-cookie-preferences" type="button" disabled="disabled">Save preferences</button>
</div>
</div>
</div></div> </div>
</div>
<div aria-live="polite" class="sr-only"></div></body></html>