Message displays <none> even when variable is set

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Xyrizar

New Member
Feb 18, 2017
9
0
0
23
Hello, i'm trying to make a social media skript, which broadcasts a link, from a variable.
It keeps displaying <none>

Skript 2.2
Minecraft 1.8.8

Code:
options:
    facebooklink: Test
    twitterlink: Test


on right click on head:
    if "%region at event-block%" contains "facebook":
        set {_facebook} to text from "{@facebooklink}"
        wait 3 ticks
        send "&6%text from {_facebook}%"
        stop

on right click on head:
    if "%region at event-block%" contains "twitter":
        set {_twitter} to text from "{@twitterlink}"
        wait 3 ticks
        send "&6%text from {_twitter}%"
        stop
 

Attachments

  • 7604dc0382115c5a89c489395185f44c.png
    7604dc0382115c5a89c489395185f44c.png
    13.5 KB · Views: 201
Hello, i'm trying to make a social media skript, which broadcasts a link, from a variable.
It keeps displaying <none>

Skript 2.2
Minecraft 1.8.8

Code:
options:
    facebooklink: Test
    twitterlink: Test


on right click on head:
    if "%region at event-block%" contains "facebook":
        set {_facebook} to text from "{@facebooklink}"
        wait 3 ticks
        send "&6%text from {_facebook}%"
        stop

on right click on head:
    if "%region at event-block%" contains "twitter":
        set {_twitter} to text from "{@twitterlink}"
        wait 3 ticks
        send "&6%text from {_twitter}%"
        stop
The variable `{_facebook}` (or `{_twitter}` for that matter) is already the text from the URL, so when you send `text from {_facebook}`, you're technically saying `text from (text from {_facebook})`, so it parses the text from the URL as another URL, and tries to receive data from there.
 
Code:
options:
    facebooklink: Test
    twitterlink: Test


on right click on head:
    if "%region at event-block%" contains "facebook":
        set {_facebook} to text from "{@facebooklink}"
        wait 3 ticks
        send "&6%{_facebook}%"
        stop

on right click on head:
    if "%region at event-block%" contains "twitter":
        set {_twitter} to text from "{@twitterlink}"
        wait 3 ticks
        send "&6%{_twitter}%"
        stop
 
Code:
options:
    facebooklink: Test
    twitterlink: Test


on right click on head:
    if "%region at event-block%" contains "facebook":
        set {_facebook} to text from "{@facebooklink}"
        wait 3 ticks
        send "&6%{_facebook}%"
        stop

on right click on head:
    if "%region at event-block%" contains "twitter":
        set {_twitter} to text from "{@twitterlink}"
        wait 3 ticks
        send "&6%{_twitter}%"
        stop
Do you get any console errors?
Also, I assume you replaced the URLs with 'Test' because you didn't want to post them here, but some websites might not allow web requests which aren't from real browsers.
 
I don't get any errors if its just text, like right now. I just tried with a link, and i get this error, and i get kicked from the server.

Code:
23.09 14:54:07 [Server] ERROR [Skript] The player is not online!
23.09 14:54:06 [Server] ERROR [Skript] The player is not online!
23.09 14:54:06 [Server] ERROR [Skript] The player is not online!
23.09 14:54:05 [Server] ERROR [Skript] The player is not online!
23.09 14:54:05 [Multicraft] Skipped 230 lines due to rate limit (75/s)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:04 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:04 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:04 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:04 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:04 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:04 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:04 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:04 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:04 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:04 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:04 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:04 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:04 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:04 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:04 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:04 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:04 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:04 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:04 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:04 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:04 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:04 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:04 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:04 [Server] ERROR [Skript] The player is not online!
23.09 14:54:04 [Multicraft] Skipped 1152 lines due to rate limit (75/s)
23.09 14:54:03 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:03 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:03 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:03 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:03 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:03 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:03 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:03 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:03 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:03 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:03 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:03 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:03 [Server] INFO [-]Senchurius Forlod serveren!
23.09 14:54:03 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:875)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.ServerConnection.c(ServerConnection.java:145)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.NetworkManager.l(NetworkManager.java:314)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:875)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.PlayerList.disconnect(PlayerList.java:376)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.World.kill(World.java:1114)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:03 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:03 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:03 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:03 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:03 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:03 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:03 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:03 [Disconnect] User Senchurius has disconnected, reason: Disconnected
23.09 14:54:03 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 224628 bytes encoded, max 32767)
23.09 14:54:03 [Multicraft] Skipped 224 lines due to rate limit (75/s)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:02 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:02 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:02 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:02 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:02 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:02 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:02 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:02 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:02 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:02 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:02 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:02 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:02 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
23.09 14:54:02 [Server] WARN at java.lang.Thread.run(Thread.java:748)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:616)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:713)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:378)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:846)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.tickEntities(WorldServer.java:600)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.World.tickEntities(World.java:1416)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.WorldServer.b(WorldServer.java:1017)
23.09 14:54:02 [Server] WARN at net.minecraft.server.v1_8_R3.World.b(World.java:1078)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$EnhancedObject$$EnhancerByCGLIB$$31c1274f.b(<generated>)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.ClassInterceptor$CallbackMethodInterceptor.intercept(ClassInterceptor.java:655)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastMethod.invokeVA(FastMethod.java:112)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.fast.ReflectionInvoker.invokeVA(ReflectionInvoker.java:84)
23.09 14:54:02 [Server] WARN at java.lang.reflect.Method.invoke(Method.java:498)
23.09 14:54:02 [Server] WARN at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
23.09 14:54:02 [Server] WARN at sun.reflect.GeneratedMethodAccessor41.invoke(Unknown Source)
23.09 14:54:02 [Server] WARN at com.bergerkiller.bukkit.common.internal.logic.EntityAddRemoveHandler_1_8_to_1_13_2$WorldListenerHook.onEntityRemoved(EntityAddRemoveHandler_1_8_to_1_13_2.java:144)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.SafeField.get(SafeField.java:109)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.get(FastField.java:167)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.get(FastField.java:279)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField$FastFieldInitProxy.read(FastField.java:213)
23.09 14:54:02 [Server] WARN at com.bergerkiller.mountiplex.reflection.util.FastField.checkInit(FastField.java:59)
23.09 14:54:02 [Server] WARN java.lang.UnsupportedOperationException: Field !!UNKNOWN!! is not available
 
Here is the kick message.
[doublepost=1569243476,1569243417][/doublepost]I only get kicked if i use "https://" in the link.
 

Attachments

  • 6dd91e947203857fd9ac04ef98d93f42.png
    6dd91e947203857fd9ac04ef98d93f42.png
    81.5 KB · Views: 191
Here is the kick message.
[doublepost=1569243476,1569243417][/doublepost]I only get kicked if i use "https://" in the link.
Probably because the text is too long. Send it to console instead, to see how long it is
 
I'm at work right now. I'll update you when I'm home. :emoji_slight_smile:
[doublepost=1569266432,1569259729][/doublepost]
Code:
23.09 21:19:33 [Server] INFO eMonster","schedule",[],[true]],["Artillery","disable",[],[]],["ArtilleryOnUntilOffLogging","disable",[],[]],["ArtilleryRequestDataCollection","disable",[],["6739947751571737774-0"]],["ScriptPathLogger","startLogging",[],[]],["TimeSpentBitArrayLogger","init",[],[]],["ArtilleryRequestDataCollection","init",[],[]],["DeferredCookie","addToQueue",[],["_js_datr","xRqJXYcHKVDTUfdCcwFPdWh-",63072000000,"/",true,true,true]],["DeferredCookie","addToQueue",[],["_js_fr","1rqwLcJddVxOddb4G..BdiRrF.EM.AAA.0.0.BdiRrF.AWXUD5xM",31535999000,"/",false,true,true]],["DeferredCookie","addToQueue",[],["_js_sb","xRqJXaYCsnDmbff7VPzcpl-7",63072000000,"/",false,true,true]]],define:[["cr:838016",["React-prod"],{__rc:["React-prod","Aa3ObIJ-Y7PW1aiK2mpcwgQ_KPXj5M1_9vEMQv-5pMg7gWQgCK16TWH5UgSZ40ZHR5osdFQfcd9ZYw"]},-1],["cr:888908",["warningBlue"],{__rc:["warningBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:891836",["ReactDOMProdOrProfiling-fb"],{__rc:["ReactDOMProdOrProfiling-fb","Aa3ObIJ-Y7PW1aiK2mpcwgQ_KPXj5M1_9vEMQv-5pMg7gWQgCK16TWH5UgSZ40ZHR5osdFQfcd9ZYw"]},-1],["cr:917439",["PageTransitionsBlue"],{__rc:["PageTransitionsBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:1105154",[],{__rc:[null,"Aa3ObIJ-Y7PW1aiK2mpcwgQ_KPXj5M1_9vEMQv-5pMg7gWQgCK16TWH5UgSZ40ZHR5osdFQfcd9ZYw"]},-1],["cr:1108857",[],{__rc:[null,"Aa3ObIJ-Y7PW1aiK2mpcwgQ_KPXj5M1_9vEMQv-5pMg7gWQgCK16TWH5UgSZ40ZHR5osdFQfcd9ZYw"]},-1],["cr:1069930",[],{__rc:[null,"Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:1083116",["XAsyncRequest"],{__rc:["XAsyncRequest","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:1083117",[],{__rc:[null,"Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:1109759",["CookieConsentBlacklist"],{__rc:["CookieConsentBlacklist","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:983844",[],{__rc:[null,"Aa3ObIJ-Y7PW1aiK2mpcwgQ_KPXj5M1_9vEMQv-5pMg7gWQgCK16TWH5UgSZ40ZHR5osdFQfcd9ZYw"]},-1],["cr:682514",["ReactDOM-prod"],{__rc:["ReactDOM-prod","Aa21d0JWl1jZF2cQRuRD0qRHqPdXiVO5X602J0LfOliut782-LbTF7QyLiTuh4Dw6FoDitFWCiZIWdqaFzxEV2gv041KQg"]},-1],["cr:895839",["ReactFiberErrorDialogImpl"],{__rc:["ReactFiberErrorDialogImpl","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:895840",[],{__rc:[null,"Aa1iyf2nI_xOL4Q6j-I2UDqTe0NRI_O8FaYK3ij2ifw4eL01xmNyzm5vnQABmLyYmZhL-MgIHXfjAVvB3dkVTTBLJdM"]},-1],["cr:971473",["LayerHideOnTransition"],{__rc:["LayerHideOnTransition","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["UACMConfig",[],{ffver:32490,ffid1:"AcG71mkdUwXJS4g8jQ7feQpjJJpkXwWiStgBVbj1e0hn02VtDvtX2BLbMjR8kg__XE4",ffid2:"AcHBq9Mk-lou4u1lKG8_1AhRWhL6Z4IZTwzfO2GEqRtEoRV-H1oeE7OUhsxjywHmZK4",ffid3:"AcEBF_PNW5-EgNOWh2EbvIN8ETK7mWbFI6Vzgy66F-xYGUwnTtNJ9K7Sw5ur0E2Hez2iR8tMq6ARZwFJSv_DkHqL",ffid4:"AcFuLUINX9vt1eUKQHPhLCngr8n4eiJgGSByq4wwegImFgxUOPpPgC2pf9WNFNyzFM8"},308],["HotReloadConfig",[],{isEnabled:false},2649],["CoreWarningGK",[],{forceWarning:false},725],["PageTransitionsConfig",[],{reloadOnBootloadError:true},1067],["cr:844180",["TimeSpentImmediateActiveSecondsLoggerBlue"],{__rc:["TimeSpentImmediateActiveSecondsLoggerBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["KillabyteProfilerConfig",[],{htmlProfilerModule:null,profilerModule:null,depTypes:{BL:"bl",NON_BL:"non-bl"}},1145],["QuicklingConfig",[],{version:"1001205873;0;",sessionLength:10,inactivePageRegex:"^/(fr/u\\.php|ads/|advertising|ac\\.php|ae\\.php|a\\.php|ajax/emu/(end|f|h)\\.php|badges/|comments\\.php|connect/uiserver\\.php|editalbum\\.php.+add=1|ext/|feeds/|help([/?]|$)|identity_switch\\.php|isconnectivityahumanright/|intern/|login\\.php|logout\\.php|sitetour/homepage_tour\\.php|sorry\\.php|syndication\\.php|webmessenger|/plugins/subscribe|lookback|brandpermissions|gameday|pxlcld|comet|worldcup/map|livemap|work/reseller|([^/]+/)ialog)|legal|\\.pdf$",badRequestKeys:["nonce","access_token","oauth_token","xs","checkpoint_data","code"],logRefreshOverhead:false},60],["TrackingConfig",[],{domain:"https://pixel.facebook.com"},325],["JSErrorExtra",[],{"policy:www:no_min_nl":true},251],["JSErrorPlatformColumns",[],{},255],["WebStorageMonsterLoggingURI",[],{uri:"/ajax/webstorage/process_keys/tate=1"},3032],["BrowserPaymentHandlerConfig",[],{enabled:false},3904],["TimeSpentConfig",[],{"0_delay":0,"0_timeout":8,delay:200000,timeout:64},142],["ImmediateActiveSecondsConfig",[],{sampling_rate:0},423]]},last_in_phase:true,the_end:true});}),"onPageletArrive last_response",{"root":true,"pagelet":"last_response"})();</script></body></html>
23.09 21:19:33 [Server] INFO ,"4j36SVzvP3w","8PlKuowafe8","53gCxKq281G","Ck1kfQEauU","3yzzwBY7Npj","4NbCsulUUI3"]}},2580],["IntlHoldoutGK",[],{"inIntlHoldout":false},2827],["IntlNumberTypeConfig",[],{"impl":"if (n === 1) { return IntlVariations.NUMBER_ONE; } else { return IntlVariations.NUMBER_OTHER; }"},3405],["LinkshimHandlerConfig",[],{"supports_meta_referrer":false,"default_meta_referrer_policy":"default","switched_meta_referrer_policy":"origin","non_linkshim_lnfb_mode":"ie","link_react_default_hash":"AT1wLEDqL2nlTAxpZR5AEy9XsCSM1ydnVDHeJSYALHR01rI9_81gkUkAol28NyDtapJhTMAj3bWexfmlJyuWomVcv0ND6jAKSNoPx8Armk4mP1hdZ7kvtIk5NsN2Yuwkw5iPbPjNZmOLXVPN","untrusted_link_default_hash":"AT2s22MSF4QkijcxnF4MvTYa0WMcAKKVkFMhRNGJWzVBHgwa1sf62hXDp62Xj1iwVyDn6NDUQFUH97Ds1eARB0YOBOUrVYnkkwkDgjhAo5c8W_NIcra5Gon72sRaz_Xc0Rj55U_OKLzugFN7","linkshim_host":"l.facebook.com","use_rel_no_opener":false,"always_use_https":false,"onion_always_shim":true,"middle_click_requires_event":false,"www_safe_js_mode":"hover","m_safe_js_mode":null,"ghl_param_link_shim":false,"click_ids":[],"is_linkshim_supported":true,"current_domain":"facebook.com"},27]]);require("InitialJSLoader").handleServerJS({"instances":[["__inst_5b4d0c00_0_0",["Menu","XUIMenuWithSquareCorner","XUIMenuTheme"],[[],{"id":"u_0_0","behaviors":[{"__m":"XUIMenuWithSquareCorner"}],"theme":{"__m":"XUIMenuTheme"}}],2],["__inst_5b4d0c00_0_1",["Menu","MenuItem","__markup_3310c079_0_0","HTML","__markup_3310c079_0_1","__markup_3310c079_0_2","__markup_3310c079_0_3","XUIMenuWithSquareCorner","XUIMenuTheme"],[[{"value":"key_shortcuts","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_0"},"label":"Hilfe zu Tastatur-Shortcuts ...","title":"","className":null},{"href":"\/help\/accessibility","target":"_blank","value":"help_center","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_1"},"label":"Zugriffshilfe","title":"","className":null},{"href":"\/help\/contact\/accessibility","target":"_blank","value":"submit_feedback","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_2"},"label":"Feedback senden","title":"","className":null},{"href":"\/accessibility","target":"_blank","value":"facebook_page","ctor":{"__m":"MenuItem"},"markup":{"__m":"__markup_3310c079_0_3"},"label":"Updates zur Zug\u00e4nglichkeit von Facebook","title":"","className":null}],{"id":"u_0_1","behaviors":[{"__m":"XUIMenuWithSquareCorner"}],"theme":{"__m":"XUIMenuTheme"}}],2],["__inst_e5ad243d_0_0",["PopoverMenu","__inst_1de146dc_0_1","__elem_ec77afbd_0_1","__inst_5b4d0c00_0_1"],[{"__m":"__inst_1de146dc_0_1"},{"__m":"__elem_ec77afbd_0_1"},{"__m":"__inst_5b4d0c00_0_1"},[]],2],["__inst_e5ad243d_0_1",["PopoverMenu","__inst_1de146dc_0_0","__elem_ec77afbd_0_0","__inst_5b4d0c00_0_0"],[{"__m":"__inst_1de146dc_0_0"},{"__m":"__elem_ec77afbd_0_0"},{"__m":"__inst_5b4d0c00_0_0"},[]],2],["__inst_1de146dc_0_0",["Popover","__elem_1de146dc_0_0","__elem_ec77afbd_0_0","ContextualLayerAutoFlip","ContextualDialogArrow"],[{"__m":"__elem_1de146dc_0_0"},{"__m":"__elem_ec77afbd_0_0"},[{"__m":"ContextualLayerAutoFlip"},{"__m":"ContextualDialogArrow"}],{"alignh":"left","position":"below"}],2],["__inst_1de146dc_0_1",["Popover","__elem_1de146dc_0_1","__elem_ec77afbd_0_1","ContextualLayerAutoFlip","ContextualDialogArrow"],[{"__m":"__elem_1de146dc_0_1"},{"__m":"__elem_ec77afbd_0_1"},[{"__m":"ContextualLayerAutoFlip"},{"__m":"ContextualDialogArrow"}],{"alignh":"right","position":"below"}],2]],"markup":[["__markup_3310c079_0_0",{"__html":"Hilfe zu Tastatur-Shortcuts ..."},1],["__markup_3310c079_0_1",{"__html":"Zugriffshilfe"},1],["__markup_3310c079_0_2",{"__html":"Feedback senden"},1],["__markup_3310c079_0_3",{"__html":"Updates zur Zug\u00e4nglichkeit von Facebook"},1]],"elements":[["__elem_a588f507_0_1","u_0_2",1],["__elem_3fc3da18_0_0","u_0_3",1],["__elem_51be6cb7_0_0","u_0_4",1],["__elem_1de146dc_0_0","u_0_5",1],["__elem_ec77afbd_0_0","u_0_6",2],["__elem_1de146dc_0_1","u_0_7",1],["__elem_ec77afbd_0_1","u_0_8",2],["__elem_9abd0c34_0_0","u_0_9",1],["__elem_8f22d9a7_0_0","u_0_a",1],["__elem_9f5fac15_0_0","pagelet_bluebar",1],["__elem_45e94dd8_0_0","pagelet_bluebar",1],["__elem_a588f507_0_0","globalContainer",2],["__elem_a588f507_0_2","content",1]],"require":[["ServiceWorkerLoginAndLogout","login",[],[]],["ScriptPath","set",[],["\/","a6bebc6e",{"imp_id":"0TIg9ySBUw4vNyfE2","ef_page":null,"uri":"https:\/\/www.facebook.com\/"}]],["UITinyViewportAction","init",[],[]],["ResetScrollOnUnload","init",["__elem_a588f507_0_0"],[{"__m":"__elem_a588f507_0_0"}]],["AccessibilityWebVirtualCursorClickLogger","init",["__elem_45e94dd8_0_0","__elem_a588f507_0_0"],[[{"__m":"__elem_45e94dd8_0_0"},{"__m":"__elem_a588f507_0_0"}]]],["KeyboardActivityLogger","init",[],[]],["FocusRing","init",[],[]],["HardwareCSS","init",[],[]],["NavigationAssistantController","init",["__elem_3fc3da18_0_0","__elem_51be6cb7_0_0","__inst_5b4d0c00_0_0","__inst_5b4d0c00_0_1","__inst_e5ad243d_0_0","__inst_e5ad243d_0_1"],[{"__m":"__elem_3fc3da18_0_0"},{"__m":"__elem_51be6cb7_0_0"},{"__m":"__inst_5b4d0c00_0_0"},{"__m":"__inst_5b4d0c00_0_1"},null,{"accessibilityPopoverMenu":{"__m":"__inst_e5ad243d_0_0"},"globalPopoverMenu":null,"sectionsPopoverMenu":{"__m":"__inst_e5ad243d_0_1"}}]],["__inst_e5ad243d_0_1"],["__inst_1de146dc_0_0"],["__inst_e5ad243d_0_0"],["__inst_1de146dc_0_1"],["WebCookieUseBannerController","init",["__elem_9abd0c34_0_0","__elem_8f22d9a7_0_0"],[{"__m":"__elem_9abd0c34_0_0"},{"__m":"__elem_8f22d9a7_0_0"}]],["AsyncRequestNectarLogging"],["FocusListener"],["FlipDirectionOnKeypress"],["IntlUtils"],["FBLynx","setupDelegation",[],[]],["TimeSliceImpl"],["ServerJSDefine"],["InitialJSLoader"]],"contexts":[[{"__m":"__elem_a588f507_0_1"},true],[{"__m":"__elem_9f5fac15_0_0"},false],[{"__m":"__elem_a588f507_0_2"},true]]});}, "ServerJS define", {"root":true})(); onloadRegister_DEPRECATED(function (){useragentcm();});</script> <script>var bigPipe = new (require("BigPipe"))({"forceFinish":true,"config":{"flush_pagelets_asap":true,"dispatch_pagelet_replayable_actions":false}});</script> <script>bigPipe.beforePageletArrive("first_response")</script> <script>require("TimeSlice").guard((function(){bigPipe.onPageletArrive({allResources:["bRZKf","vUKlT","pPRz0","uyhke","hX5dk","BqOao","zbw3Y","AFydu","fCvGi","Y7HLJ","wrugU","KQnjh","gHhmF","3mj+U","B/A+L","BJQQg","Tiyq/","LyZqS","xjzli","P749T","CuAgb","IASwV","6ODwX","P/mr5","XU++e","51yTN"],displayResources:["bRZKf","hX5dk","BqOao","AFydu","Y7HLJ","gHhmF","Tiyq/","xjzli","P749T","CuAgb","6ODwX","P/mr5"],id:"first_response",phase:0,last_in_phase:true,tti_phase:0,all_phases:[63]});}),"onPageletArrive first_response",{"root":true,"pagelet":"first_response"})();</script> <script>bigPipe.setPageID("6739947751571737774-0");CavalryLogger.setPageID("6739947751571737774-0");</script><script>bigPipe.beforePageletArrive("last_response")</script> <script>require("TimeSlice").guard((function(){bigPipe.onPageletArrive({resource_map:{FEt5G:{type:"js",src:"https://static.xx.fbcdn.net/rsrc.php/v3/yz/r/v4WgC_pJT9B.jsnc_x=Ij3Wp8lg5Kz",nc:1}},allResources:["bRZKf","vUKlT","pPRz0","uyhke","hX5dk","BqOao","zbw3Y","AFydu","fCvGi","Y7HLJ","wrugU","KQnjh","gHhmF","3mj+U","B/A+L","BJQQg","Tiyq/","LyZqS","xjzli","P749T","CuAgb","IASwV","6ODwX","P/mr5","XU++e","51yTN","FEt5G","zFs9c"],displayResources:["bRZKf","hX5dk","BqOao","AFydu","Y7HLJ","gHhmF","Tiyq/","xjzli","P749T","CuAgb","6ODwX","P/mr5"],onafterload:["CavalryLogger.getInstance(\"6739947751571737774-0\").collectBrowserTiming(window)","window.CavalryLogger&&CavalryLogger.getInstance().setTimeStamp(\"t_paint\");","if (window.ExitTime){CavalryLogger.getInstance(\"6739947751571737774-0\").setValue(\"t_exit\", window.ExitTime);};"],id:"last_response",phase:63,jsmods:{require:[["CavalryLoggerImpl","startInstrumentation",[],[]],["NavigationMetrics","setPage",[],[{page:"/",page_type:"normal",page_uri:"https://www.facebook.com/",serverLID:"6739947751571737774-0"}]],["HighContrastMode","init",[],[{isHCM:false,spacerImage:"https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif"}]],["ErrorLogging"],["ClickRefLogger"],["DetectBrokenProxyCache","run",[],[0,"c_user"]],["TimeSliceImpl","setLogging",[],[false,0.01]],["NavigationClickPointHandler"],["WebStorag
23.09 21:19:33 [Server] INFO .jsnc_x=Ij3Wp8lg5Kz","nc":1},"+ClWy":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/J0b8GyNR1i5.jsnc_x=Ij3Wp8lg5Kz","nc":1},"oE4Do":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/eAdKAwutbmm.jsnc_x=Ij3Wp8lg5Kz","nc":1},"LyZqS":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/ZH0PYldGXIW.jsnc_x=Ij3Wp8lg5Kz","nc":1},"fI+Du":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/r\/DM91FGIBcHa.jsnc_x=Ij3Wp8lg5Kz","nc":1},"P\/mr5":{"type":"css","src":"data:text\/css; charset=utf-8;base64,I2Jvb3Rsb2FkZXJfUF9tcjV7aGVpZ2h0OjQycHg7fS5ib290bG9hZGVyX1BfbXI1e2Rpc3BsYXk6YmxvY2shaW1wb3J0YW50O30=","nc":1,"d":1}});Bootloader.enableBootload({"BanzaiODS":{"r":["Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]}},"BanzaiScuba":{"r":["Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]}},"VisualCompletionGating":{"r":["pPRz0"]},"AsyncSignal":{"r":["Y7HLJ","BJQQg"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Dock":{"r":["3mj+U","bRZKf","Y7HLJ","BJQQg","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"TimeSliceInteractionsLiteTypedLogger":{"r":["HaM8j","Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"WebSpeedInteractionsTypedLogger":{"r":["Y7HLJ","lwQa1"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"AsyncRequest":{"r":["gHhmF","Y7HLJ","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"DOM":{"r":["Y7HLJ","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Form":{"r":["Y7HLJ","IASwV","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"FormSubmit":{"r":["+P21j","gHhmF","Y7HLJ","IASwV","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Input":{"r":["IASwV"],"be":1},"Live":{"r":["3mj+U","Y7HLJ","BJQQg","qJLb3","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Toggler":{"r":["bRZKf","Y7HLJ","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Tooltip":{"r":["bRZKf","gHhmF","fCvGi","Y7HLJ","IASwV","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"URI":{"r":[],"be":1},"trackReferrer":{"r":[],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["Y7HLJ"]},"be":1},"PhotoTagApproval":{"r":["\/mnVq","Y7HLJ","qYv8O","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"PhotoSnowlift":{"r":["zsWvq","k3xGb","BqOao","3mj+U","IpGeW","sXDwB","bRZKf","6L+a5","Iuo0\/","GeU3b","XU++e","zbw3Y","Jch7c","HPBRI","xjzli","gHhmF","TckVX","B\/A+L","pPRz0","fCvGi","51yTN","bV\/bO","Y7HLJ","BJQQg","LfVIR","qYv8O","1TU2h","H0dyf","IASwV","V26G2","wrugU","uyhke"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"PhotoTagger":{"r":["k3xGb","BqOao","4VuTu","3mj+U","1z3b5","tBF0I","6ODwX","pNghh","bRZKf","6L+a5","QPg5j","OHdzQ","XU++e","zbw3Y","Jch7c","315pj","rIf1d","3Ua4g","gHhmF","TckVX","B\/A+L","AFydu","pPRz0","0blwW","OTet7","fCvGi","Y7HLJ","he5fq","4W2TK","r+kN\/","BJQQg","LfVIR","qYv8O","bjh+L","gZPhR","H0dyf","4XPte","KW9fi","aF9iP","twToF","IASwV","CFYlP","1d0Fn","wrugU","ZsKAc","51yTN","uyhke"],"rds":{"m":["PresenceStatus","BanzaiODS","BanzaiScuba","VisualCompletionGating"]},"be":1},"PhotoTags":{"r":["\/mnVq","Y7HLJ","qYv8O","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"TagTokenizer":{"r":["bRZKf","\/mnVq","gHhmF","pPRz0","S6lnf","Y7HLJ","omomU","Oe9ec","IASwV","lOCdI","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"AsyncDialog":{"r":["BqOao","bRZKf","gHhmF","Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Hovercard":{"r":["BqOao","bRZKf","gHhmF","fCvGi","Y7HLJ","he5fq","BJQQg","aF9iP","IASwV","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Banzai":{"r":["Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ResourceTimingBootloaderHelper":{"r":["Y7HLJ","zFs9c"],"rds":{"m":["BanzaiODS","VisualCompletionGating","BanzaiScuba"],"r":["pPRz0"]},"be":1},"TimeSliceHelper":{"r":["K0mn\/"],"be":1},"XSalesPromoWWWDetailsDialogAsyncController":{"r":["Y7HLJ","gWMJg"],"be":1},"BanzaiStream":{"r":["ZU1ro","Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"SnappyCompressUtil":{"r":["Y7HLJ"],"be":1},"GeneratedArtilleryUserTimingSink":{"r":["sGe+Z","uYbVb","9Zaf3","Hx+az"],"rds":{"m":["BanzaiODS","BanzaiScuba"],"r":["Y7HLJ"]},"be":1},"XOfferController":{"r":["Y7HLJ","hIek+"],"be":1},"PerfXSharedFields":{"r":["BJQQg"],"be":1},"KeyEventTypedLogger":{"r":["50zLZ","Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Animation":{"r":["BqOao","fCvGi","Y7HLJ","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"Dialog":{"r":["BqOao","bRZKf","zbw3Y","gHhmF","fCvGi","Y7HLJ","LfVIR","IASwV","wrugU","XU++e","51yTN","uyhke"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"],"r":["pPRz0"]},"be":1},"ExceptionDialog":{"r":["BqOao","bRZKf","gHhmF","OTet7","Y7HLJ","BJQQg","LfVIR","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ReactDOM":{"r":["Y7HLJ","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"QuickSandSolver":{"r":["8ELCB","WO08q","gHhmF","+ClWy","Y7HLJ","BJQQg","IASwV","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ConfirmationDialog":{"r":["Y7HLJ","oE4Do","IASwV","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"React":{"r":["Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"XUIDialogButton.react":{"r":["BqOao","bRZKf","gHhmF","Y7HLJ","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"XUIDialogBody.react":{"r":["BqOao","bRZKf","Y7HLJ","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"XUIDialogFooter.react":{"r":["BqOao","bRZKf","Y7HLJ","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"XUIDialogTitle.react":{"r":["BqOao","bRZKf","gHhmF","Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"XUIGrayText.react":{"r":["BqOao","Y7HLJ","wrugU"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"PageTransitions":{"r":["zbw3Y","XU++e","gHhmF","51yTN","Y7HLJ","uyhke","IASwV","wrugU","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba","VisualCompletionGating"],"r":["pPRz0"]},"be":1},"DialogX":{"r":["BqOao","bRZKf","gHhmF","Y7HLJ"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1},"ContextualLayerInlineTabOrder":{"r":["bRZKf","B\/A+L","Y7HLJ","fI+Du","BqOao"],"rds":{"m":["BanzaiODS","BanzaiScuba"]},"be":1}});});</script> <script>requireLazy(["InitialJSLoader"], function(InitialJSLoader) {InitialJSLoader.loadOnDOMContentReady(["vUKlT","pPRz0","uyhke","zbw3Y","fCvGi","Y7HLJ","wrugU","KQnjh","3mj+U","B\/A+L","BJQQg","LyZqS","IASwV","XU++e","51yTN","P\/mr5"]);});</script> <script>require("TimeSliceImpl").guard(function() {require("ServerJSDefine").handleDefines([["AsyncRequestConfig",[],{"retryOnNetworkError":"1","useFetchStreamAjaxPipeTransport":false},328],["FbtLogger",[],{"logger":null},288],["FbtQTOverrides",[],{"overrides":{}},551],["FbtResultGK",[],{"shouldReturnFbtResult":true,"inlineMode":"NO_INLINE"},876],["IntlPhonologicalRules",[],{"meta":{"\/_B\/":"([.,!?\\s]|^)","\/_E\/":"([.,!?\\s]|$)"},"patterns":{"\/(\u00df|s|z|x)\u0001s_E\/":"$1\u0001$2","\/_\u0001([^\u0001]*)\u0001\/":"javascript"}},1496],["IntlViewerContext",[],{"GENDER":3},772],["NumberFormatConfig",[],{"decimalSeparator":",","numberDelimiter":".","minDigitsForThousandsSeparator":4,"standardDecimalPatternInfo":{"primaryGroupSize":3,"secondaryGroupSize":3},"numberingSystemData":null},54],["SessionNameConfig",[],{"seed":"2GcJ"},757],["ZeroCategoryHeader",[],{},1127],["KSConfig",[],{"killed":{"__set":["POCKET_MONSTERS_CREATE","POCKET_MONSTERS_DELETE","VIDEO_DIMENSIONS_FROM_PLAYER_IN_UPLOAD_DIALOG","PREVENT_INFINITE_URL_REDIRECT","POCKET_MONSTERS_UPDATE_NAME","ADS_PLACEMENT_FIX_PUBLISHER_PLATFORMS_MUTATION","MOBILITY_KILL_OLD_VISIBILITY_POSITION_SETTING","WORKPLACE_DISPLAY_TEXT_EVIDENCE_REPORTING","DYNAMIC_ADS_SET_CATALOG_AND_PRODUCT_SET_TOGETHER","UNIDASH_DATA_FORMAT_CHANGE","BUSINESS_GRAPH_SETTING_APP_ASSIGNED_USERS_NEW_API","BUSINESS_GRAPH_SETTING_WABA_ASSIGNED_USERS_NEW_API","BUSINESS_GRAPH_SETTING_ESG_ASSIGNED_USERS_NEW_API","MESSAGING_INFRA_BROADCAST_IN_FANOUT_HANDLER_DARK","BUSINESS_GRAPH_SETTING_PRODUCT_CATALOG_ASSIGNED_USERS_NEW_API","BUSINESS_MANAGER_SHOW_UI_HIDDEN_TASK_FOR_ASSET"]},"ko":{"__set":["acrJTh9WGdp","1oOE64fL4wO","2dhqRnqXGLQ","alHyDgpJdsZ","7r6mSP7ofr2","1ntjZ2zgf03","3oh5Mw86USj","8NAceEy9JZo","5mNEXob0nTj","6bdKsf1Fnc6"
23.09 21:19:33 [Server] INFO p8lg5Kz","nc":1},"qYv8O":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iNOw4\/yV\/l\/de_DE\/CF8D-qsVFCz.jsnc_x=Ij3Wp8lg5Kz","nc":1},"zsWvq":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yy\/l\/0,cross\/qmfwCkNhGU8.cssnc_x=Ij3Wp8lg5Kz","nc":1},"k3xGb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iAbP4\/y9\/l\/de_DE\/mApMU_Z0ljU.jsnc_x=Ij3Wp8lg5Kz","nc":1},"IpGeW":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/l\/0,cross\/i4xL_ywTmj4.cssnc_x=Ij3Wp8lg5Kz","nc":1},"sXDwB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iokI4\/yW\/l\/de_DE\/4dSHabbPJvG.jsnc_x=Ij3Wp8lg5Kz","nc":1},"6L+a5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ib_Y4\/yv\/l\/de_DE\/7RBCBgJM58-.jsnc_x=Ij3Wp8lg5Kz","nc":1},"Iuo0\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yS\/r\/QSD4ca-UWue.jsnc_x=Ij3Wp8lg5Kz","nc":1},"GeU3b":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/l\/0,cross\/_yvMStBqcL4.cssnc_x=Ij3Wp8lg5Kz","nc":1},"XU++e":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/r\/82LgSkUAZi0.jsnc_x=Ij3Wp8lg5Kz","nc":1},"zbw3Y":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3isAO4\/yB\/l\/de_DE\/ni8gE3eOR74.jsnc_x=Ij3Wp8lg5Kz","nc":1},"Jch7c":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/r\/j4K8Rx1wRpD.jsnc_x=Ij3Wp8lg5Kz","nc":1},"HPBRI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3irJ04\/yo\/l\/de_DE\/ygP16n52oZF.jsnc_x=Ij3Wp8lg5Kz","nc":1},"TckVX":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i3BZ4\/yD\/l\/de_DE\/6gOF5uoDu2z.jsnc_x=Ij3Wp8lg5Kz","nc":1},"B\/A+L":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_8b4\/yT\/l\/de_DE\/l0JA5-xWn-r.jsnc_x=Ij3Wp8lg5Kz","nc":1},"51yTN":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/i2cEbJ69GFD.jsnc_x=Ij3Wp8lg5Kz","nc":1},"bV\/bO":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/l\/0,cross\/7vt80xzWQ8v.cssnc_x=Ij3Wp8lg5Kz","nc":1},"LfVIR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iZwY4\/yA\/l\/de_DE\/L6mcY-lr8Hu.jsnc_x=Ij3Wp8lg5Kz","nc":1},"1TU2h":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ifEx4\/yu\/l\/de_DE\/NsDUClX2B9p.jsnc_x=Ij3Wp8lg5Kz","nc":1},"H0dyf":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipxf4\/yf\/l\/de_DE\/Ay1RWlXo2ha.jsnc_x=Ij3Wp8lg5Kz","nc":1},"V26G2":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ipSB4\/yM\/l\/de_DE\/hDq5c3l0qIO.jsnc_x=Ij3Wp8lg5Kz","nc":1},"wrugU":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ig1H4\/yu\/l\/de_DE\/cbtlEGBAJ1O.jsnc_x=Ij3Wp8lg5Kz","nc":1},"uyhke":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ii_L4\/y0\/l\/de_DE\/ifJBNsbe5GE.jsnc_x=Ij3Wp8lg5Kz","nc":1},"4VuTu":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/IfXYouHkgaI.jsnc_x=Ij3Wp8lg5Kz","nc":1},"1z3b5":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/95j1tdBGz8m.jsnc_x=Ij3Wp8lg5Kz","nc":1},"tBF0I":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/l\/0,cross\/A2D5ehpDdBt.cssnc_x=Ij3Wp8lg5Kz","nc":1},"pNghh":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/l\/0,cross\/w9OB22-aZ-w.cssnc_x=Ij3Wp8lg5Kz","nc":1},"QPg5j":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6_R4\/yB\/l\/de_DE\/saPlw3JaMt4.jsnc_x=Ij3Wp8lg5Kz","nc":1},"OHdzQ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iUQa4\/ya\/l\/de_DE\/fXbCwJxaJzU.jsnc_x=Ij3Wp8lg5Kz","nc":1},"315pj":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/l\/0,cross\/3XOcrLtXS5c.cssnc_x=Ij3Wp8lg5Kz","nc":1},"rIf1d":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i76f4\/y_\/l\/de_DE\/qRpxJqzZJW-.jsnc_x=Ij3Wp8lg5Kz","nc":1},"3Ua4g":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y3\/r\/KyCrn_KKTXj.jsnc_x=Ij3Wp8lg5Kz","nc":1},"0blwW":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/l\/0,cross\/zkmJ7UHGYjx.cssnc_x=Ij3Wp8lg5Kz","nc":1},"OTet7":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iKYc4\/y0\/l\/de_DE\/qKXoRITqMEe.jsnc_x=Ij3Wp8lg5Kz","nc":1},"he5fq":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/l\/0,cross\/-L5A0aPRrgZ.cssnc_x=Ij3Wp8lg5Kz","nc":1},"4W2TK":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yc\/l\/0,cross\/Vz0F5SvclsR.cssnc_x=Ij3Wp8lg5Kz","nc":1},"r+kN\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/3Tzud5Ti-w_.jsnc_x=Ij3Wp8lg5Kz","nc":1},"bjh+L":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yh\/l\/0,cross\/P-iBMOKvUfI.cssnc_x=Ij3Wp8lg5Kz","nc":1},"gZPhR":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iwvp4\/yX\/l\/de_DE\/LJtYc41EDh0.jsnc_x=Ij3Wp8lg5Kz","nc":1},"4XPte":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iTsV4\/yc\/l\/de_DE\/epQDftQPH84.jsnc_x=Ij3Wp8lg5Kz","nc":1},"KW9fi":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iSSI4\/yH\/l\/de_DE\/thzsPm8MBpW.jsnc_x=Ij3Wp8lg5Kz","nc":1},"aF9iP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOTn4\/yt\/l\/de_DE\/-pEAx5ufBq8.jsnc_x=Ij3Wp8lg5Kz","nc":1},"twToF":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yl\/r\/cmPbV0Nnly3.jsnc_x=Ij3Wp8lg5Kz","nc":1},"CFYlP":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3im6Q4\/yP\/l\/de_DE\/Dd0qleVbvxd.jsnc_x=Ij3Wp8lg5Kz","nc":1},"1d0Fn":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iZJp4\/yh\/l\/de_DE\/n_lE8uo_KXr.jsnc_x=Ij3Wp8lg5Kz","nc":1},"ZsKAc":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_IB4\/yy\/l\/de_DE\/oqfCv73CFPw.jsnc_x=Ij3Wp8lg5Kz","nc":1},"S6lnf":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/l\/0,cross\/nm4RoCgKTjw.cssnc_x=Ij3Wp8lg5Kz","nc":1},"omomU":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4bt4\/yh\/l\/de_DE\/Hgurx3gP8kd.jsnc_x=Ij3Wp8lg5Kz","nc":1},"Oe9ec":{"type":"css","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/l\/0,cross\/wbzrNoOa-t7.cssnc_x=Ij3Wp8lg5Kz","nc":1},"lOCdI":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i-5r4\/y1\/l\/de_DE\/x8xs82e_By5.jsnc_x=Ij3Wp8lg5Kz","nc":1},"zFs9c":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i2UN4\/yB\/l\/de_DE\/WrayBk0ZtZK.jsnc_x=Ij3Wp8lg5Kz","nc":1},"K0mn\/":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yt\/r\/M7ZAVro0ED-.jsnc_x=Ij3Wp8lg5Kz","nc":1},"gWMJg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/iGksp69foR_.jsnc_x=Ij3Wp8lg5Kz","nc":1},"ZU1ro":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yU\/r\/QKWIqWeZBgJ.jsnc_x=Ij3Wp8lg5Kz","nc":1},"sGe+Z":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/r\/JjU0WcjV29H.jsnc_x=Ij3Wp8lg5Kz","nc":1},"uYbVb":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yO\/r\/yncgZiC7BC6.jsnc_x=Ij3Wp8lg5Kz","nc":1},"9Zaf3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/dQ_TzJobF0o.jsnc_x=Ij3Wp8lg5Kz","nc":1},"Hx+az":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yf\/r\/zO5MojAgN8I.jsnc_x=Ij3Wp8lg5Kz","nc":1},"hIek+":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/DZ_VBlsy-dC.jsnc_x=Ij3Wp8lg5Kz","nc":1},"50zLZ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iIlC4\/yn\/l\/de_DE\/nr3cyp4uDJB.jsnc_x=Ij3Wp8lg5Kz","nc":1},"vUKlT":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iPZZ4\/ym\/l\/de_DE\/CuIN-hfxi4f.jsnc_x=Ij3Wp8lg5Kz","nc":1},"KQnjh":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i5ED4\/ye\/l\/de_DE\/c84hphJBDj7.jsnc_x=Ij3Wp8lg5Kz","nc":1},"8ELCB":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/r\/4c56_sYLseJ.jsnc_x=Ij3Wp8lg5Kz","nc":1},"WO08q":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/8139hIgwWs8
23.09 21:19:33 [Server] INFO iano</a></li><li><a class="_sv4" dir="ltr" href="https://ro-ro.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;ro_RO&quot;, &quot;de_DE&quot;, &quot;https:\/\/ro-ro.facebook.com\/&quot;, &quot;www_list_selector&quot;, 4); return false;" title="Romanian">Română</a></li><li><a class="_sv4" dir="ltr" href="https://fr-fr.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;fr_FR&quot;, &quot;de_DE&quot;, &quot;https:\/\/fr-fr.facebook.com\/&quot;, &quot;www_list_selector&quot;, 5); return false;" title="French (France)">Français (France)</a></li><li><a class="_sv4" dir="ltr" href="https://ru-ru.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;ru_RU&quot;, &quot;de_DE&quot;, &quot;https:\/\/ru-ru.facebook.com\/&quot;, &quot;www_list_selector&quot;, 6); return false;" title="Russian">Русский</a></li><li><a class="_sv4" dir="rtl" href="https://ar-ar.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;ar_AR&quot;, &quot;de_DE&quot;, &quot;https:\/\/ar-ar.facebook.com\/&quot;, &quot;www_list_selector&quot;, 7); return false;" title="Arabic">العربية</a></li><li><a class="_sv4" dir="ltr" href="https://es-la.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;es_LA&quot;, &quot;de_DE&quot;, &quot;https:\/\/es-la.facebook.com\/&quot;, &quot;www_list_selector&quot;, 8); return false;" title="Spanish">Español</a></li><li><a class="_sv4" dir="ltr" href="https://pt-br.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;pt_BR&quot;, &quot;de_DE&quot;, &quot;https:\/\/pt-br.facebook.com\/&quot;, &quot;www_list_selector&quot;, 9); return false;" title="Portuguese (Brazil)">Português (Brasil)</a></li><li><a role="button" class="_42ft _4jy0 _517i _517h _51sy" rel="dialog" ajaxify="/settings/language/language/ri=https%3A%2F%2Fpt-br.facebook.com%2F&amp;source=www_list_selector_more" href="#" title="Weitere Sprachen anzeigen"><i class="img sp_gNqCxYl3J40 sx_c8e7e7"></i></a></li></ul><div id="contentCurve"></div><div role="contentinfo" aria-label="Facebook-Webseitenlinks"><ul class="uiList pageFooterLinkList _509- _4ki _703 _6-i"><li><a href="/r.php" title="F&#xfc;r Facebook registrieren">Registrieren</a></li><li><a href="/login/" title="Bei Facebook anmelden">Anmelden</a></li><li><a href="https://messenger.com/" title="Probiere den Messenger aus.">Messenger</a></li><li><a href="/lite/" title="Facebook Lite f&#xfc;r Android">Facebook Lite</a></li><li><a href="/directory/people/" title="Durchsuche unser Personenverzeichnis.">Nutzer</a></li><li><a href="/directory/pages/" title="Durchsuche unser Seitenverzeichnis.">Seiten</a></li><li><a href="/pages/category/">Seitenkategorien</a></li><li><a href="/places/" title="Probiere beliebte Orte auf Facebook aus.">Orte</a></li><li><a href="/games/" title="Probiere Spiele auf Facebook aus.">Spiele</a></li><li><a href="/directory/places/" title="Durchsuche unser Orteverzeichnis.">Standorte</a></li><li><a href="/marketplace/directory/" title="Durchsuche unser Marketplace-Produktverzeichnis.">Marketplace</a></li><li><a href="/directory/groups/" title="Durchsuche unser Gruppenverzeichnis.">Gruppen</a></li><li><a href="https://l.facebook.com/l.php=https%3A%2F%2Finstagram.com%2F&amp;h=AT0fXQrKYgTEfYGhRZHTjSce7omHO6H1beq1mhi-YTpV7qHsF0vV2e0IObBCVYgzpkG1nxhgjfciTmAcWsMOecpRT_5M9pRzc_5RRLc9pDO-ZnL8ncQUk1dIHJSn6eIIkDiwZ2jZFYISlKt1" title="Probiere Instagram aus" target="_blank" rel="nofollow" data-lynx-mode="hover">Instagram</a></li><li><a href="/local/lists/245019872666104/" title="Durchsuche unser Verzeichnis &#x201e;Lokale Listen&#x201c;.">Lokales</a></li><li><a href="/fundraisers/" title="Spende f&#xfc;r eine sinnvolle Sache.">Spendenaktionen</a></li><li><a href="/biz/directory/" title="Browse our Facebook Services directory.">Services</a></li><li><a href="/facebook" accesskey="8" title="Lies unseren Blog, entdecke unseren Ressourcenbereich und suche nach Jobs.">Über uns</a></li><li><a href="/ad_campaign/landing.phplacement=pflo&amp;campaign_id=402047449186&amp;extra_1=auto" title="Wirb auf Facebook.">Werbeanzeige erstellen</a></li><li><a href="/pages/create/ef_type=sitefooter" title="Seite erstellen">Seite erstellen</a></li><li><a href="https://developers.facebook.com/ef=pf" title="Entwickle Apps auf unserer Plattform.">Entwickler</a></li><li><a href="/careers/ef=pf" title="Mach deinen n&#xe4;chsten Karriereschritt und bewirb dich bei unserem gro&#xdf;artigen Unternehmen.">Karriere</a></li><li><a data-nocookies="1" href="/privacy/explanation" title="Erfahre mehr &#xfc;ber deine Privatsph&#xe4;re und Facebook.">Datenschutz</a></li><li><a href="/policies/cookies/" title="Erfahre mehr &#xfc;ber Cookies und Facebook." data-nocookies="1">Cookies</a></li><li><a class="_41ug" data-nocookies="1" href="https://www.facebook.com/help/568137493302217" title="Erfahre mehr &#xfc;ber Datenschutzinfo.">Datenschutzinfo<i class="img sp_NjJHMaoZ4oF sx_e1f168"></i></a></li><li><a data-nocookies="1" href="/legal/termsef=pf" accesskey="9" title="Unsere Nutzungsbedingungen und Richtlinien.">Impressum/AGB/NetzDG</a></li><li><a href="/help/ef=pf" accesskey="0" title="Besuche unseren Hilfebereich.">Hilfe</a></li><li><a accesskey="6" class="accessible_elem" href="/settings" title="Facebook-Einstellungen anzeigen und bearbeiten.">Einstellungen</a></li><li><a accesskey="7" class="accessible_elem" href="/allactivityrivacy_source=activity_log_top_menu" title="Aktivit&#xe4;tenprotokoll anzeigen">Aktivitätenprotokoll</a></li></ul></div><div class="mvl copyright"><div><span> Facebook © 2019</span></div></div></div></div></div><div></div><span><img src="https://facebook.com/security/hsts-pixel.gif=3.2.5" width="0" height="0" style="display:none" /></span></div><div style="display:none"></div> <script>requireLazy(["gkx"],function(gkx){gkx.add({"676940":{"result":false,"hash":"AT7fsJxhJPjw48R8"},"677762":{"result":false,"hash":"AT5Lh9Nyp5tj7pV5"},"996939":{"result":false,"hash":"AT6x33sccJ9JP1oR"},"996940":{"result":false,"hash":"AT5lI_5WjLzBh7Q5"},"729629":{"result":false,"hash":"AT6XruZcVsIq54hx"},"729630":{"result":false,"hash":"AT4NXy9cZo8X9EID"},"729631":{"result":false,"hash":"AT7Gd-oB4TxIJrmR"},"729632":{"result":false,"hash":"AT7x_EUuANAJ4EtD"},"729633":{"result":true,"hash":"AT52kyzZNGK-C3BQ"},"972776":{"result":true,"hash":"AT6L1GWbGHccz2Yj"},"925108":{"result":false,"hash":"AT4ylXbPR0Zvu0tE"},"678676":{"result":true,"hash":"AT40qVCCGbzfVt6e"},"819236":{"result":false,"hash":"AT46ISHvXyjD4b9A"},"1029033":{"result":false,"hash":"AT69A20cUo0kcI-5"},"1099893":{"result":false,"hash":"AT5jhZukvK3jcEJN"}});}); requireLazy(["Bootloader"],function(Bootloader){Bootloader.setResourceMap({"Y7HLJ":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i79u4\/yY\/l\/de_DE\/m852Lc6S4Wz.jsnc_x=Ij3Wp8lg5Kz","nc":1},"pPRz0":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iWez4\/y_\/l\/de_DE\/2_Hr1sM8lOH.jsnc_x=Ij3Wp8lg5Kz","nc":1},"BJQQg":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i_bz4\/yo\/l\/de_DE\/w637dVHuK2X.jsnc_x=Ij3Wp8lg5Kz","nc":1},"3mj+U":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3irxq4\/y_\/l\/de_DE\/7WzXRVeeyVK.jsnc_x=Ij3Wp8lg5Kz","nc":1},"HaM8j":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yq\/r\/1OcDquRsUbp.jsnc_x=Ij3Wp8lg5Kz","nc":1},"lwQa1":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/tHBQYLMDdo9.jsnc_x=Ij3Wp8lg5Kz","nc":1},"IASwV":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i5Tg4\/yy\/l\/de_DE\/2hXvJyXSAln.jsnc_x=Ij3Wp8lg5Kz","nc":1},"+P21j":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yV\/r\/H-MZ_fTPhH7.jsnc_x=Ij3Wp8lg5Kz","nc":1},"qJLb3":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yX\/r\/dKa5ur9xKEL.jsnc_x=Ij3Wp8lg5Kz","nc":1},"fCvGi":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iOTn4\/yU\/l\/de_DE\/d5jcLbM8fi6.jsnc_x=Ij3Wp8lg5Kz","nc":1},"\/mnVq":{"type":"js","src":"https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iX7i4\/yo\/l\/de_DE\/YyuPfrzeYXp.jsnc_x=Ij3W
23.09 21:19:33 [Server] INFO /MPlatformLikeJSDialog\/":0,"\/qp\/interstitial\/":1,"\/qp\/action\/redirect\/":1,"\/qp\/action\/close\/":1,"\/zero\/support\/ineligible\/":1,"\/zero_balance_redirect\/":1,"\/zero_balance_redirect":1,"\/l.php":1,"\/lsr.php":1,"\/ajax\/dtsg\/":1,"\/checkpoint\/block\/":1,"\/exitdsite":1,"\/zero\/balance\/pixel\/":1,"\/zero\/balance\/":1,"\/zero\/balance\/carrier_landing\/":1,"\/zero\/flex\/logging\/":1,"\/tr":1,"\/tr\/":1,"\/sem_campaigns\/sem_pixel_test\/":1,"\/bookmarks\/flyout\/body\/":1,"\/zero\/subno\/":1,"\/confirmemail.php":1,"\/policies\/":1,"\/mobile\/internetdotorg\/classifier\/":1,"\/zero\/dogfooding":1,"\/xti.php":1,"\/zero\/fblite\/config\/":1,"\/lite\/":1,"\/hr\/zsh\/wc\/":1,"\/4oh4.php":1,"\/autologin.php":1,"\/birthday_help.php":1,"\/checkpoint\/":1,"\/contact-importer\/":1,"\/cr.php":1,"\/legal\/terms\/":1,"\/login.php":1,"\/login\/":1,"\/mobile\/account\/":1,"\/n\/":1,"\/remote_test_device\/":1,"\/upsell\/buy\/":1,"\/upsell\/buyconfirm\/":1,"\/upsell\/buyresult\/":1,"\/upsell\/promos\/":1,"\/upsell\/continue\/":1,"\/upsell\/h\/promos\/":1,"\/upsell\/loan\/learnmore\/":1,"\/upsell\/purchase\/":1,"\/upsell\/promos\/upgrade\/":1,"\/upsell\/buy_redirect\/":1,"\/upsell\/loan\/buyconfirm\/":1,"\/upsell\/loan\/buy\/":1,"\/upsell\/sms\/":1,"\/wap\/a\/channel\/reconnect.php":1,"\/wap\/a\/nux\/wizard\/nav.php":1,"\/wap\/appreg.php":1,"\/wap\/birthday_help.php":1,"\/wap\/c.php":1,"\/wap\/confirmemail.php":1,"\/wap\/cr.php":1,"\/wap\/login.php":1,"\/wap\/r.php":1,"\/zero\/datapolicy":1,"\/a\/timezone.php":1,"\/a\/bz":1,"\/bz\/reliability":1,"\/r.php":1,"\/mr\/":1,"\/reg\/":1,"\/registration\/log\/":1,"\/terms\/":1,"\/f123\/":1,"\/expert\/":1,"\/experts\/":1,"\/terms\/index.php":1,"\/terms.php":1,"\/srr\/":1,"\/msite\/redirect\/":1,"\/fbs\/pixel\/":1,"\/contactpoint\/preconfirmation\/":1,"\/contactpoint\/cliff\/":1,"\/contactpoint\/confirm\/submit\/":1,"\/contactpoint\/confirmed\/":1,"\/contactpoint\/login\/":1,"\/preconfirmation\/contactpoint_change\/":1,"\/help\/contact\/":1,"\/survey\/":1,"\/upsell\/loyaltytopup\/accept\/":1,"\/settings\/":1}},1478]]);new (require("ServerJS"))().handle({"require":[["markJSEnabled"],["lowerDomain"],["URLFragmentPrelude"],["Primer"],["BigPipe"],["Bootloader"],["TimeSlice"],["ArtilleryOnUntilOffLogging","disable",[],[]],["BanzaiODS"],["BanzaiScuba"],["VisualCompletionGating"]]});}, "ServerJS define", {"root":true})();</script></head><body class="fbIndex UIPage_LoggedOut hasBanner _-kb _605a b_c3pyn-ahh x1 Locale_de_DE" dir="ltr"><script>requireLazy(["bootstrapWebSession"],function(j){j(1569266373)})</script><div class="_li" id="u_0_2"><div class="_3_s0 _1toe _3_s1 _3_s1 uiBoxGray noborder" data-testid="ax-navigation-menubar" id="u_0_3"><div class="_608m"><div class="clearfix _ikh _tb6"><div class="_4bl7"><span class="mrm _3bcv _50f3">Gehe zu:</span></div><div class="_4bl9 _3bcp"><div class="_6a _608n" aria-label="Navigationsassistent" role="menubar" id="u_0_4"><div class="_6a uiPopover" id="u_0_5"><a role="button" class="_42ft _4jy0 _55pi _2agf _4o_4 _63xb _p _4jy3 _517h _51sy" href="#" style="max-width:200px;" aria-haspopup="true" aria-expanded="false" rel="toggle" id="u_0_6"><span class="_55pe">Bereiche dieser Seite</span><span class="_4o_3 _3-99"><i class="img sp_NjJHMaoZ4oF sx_000f9c"></i></span></a></div><div class="_6a _3bcs"></div><div class="_6a mrm uiPopover" id="u_0_7"><a role="button" class="_42ft _4jy0 _55pi _2agf _4o_4 _3_s2 _63xb _p _4jy3 _4jy1 selected _51sy" href="#" style="max-width:200px;" aria-haspopup="true" tabindex="-1" aria-expanded="false" rel="toggle" id="u_0_8"><span class="_55pe">Zugriffshilfe</span><span class="_4o_3 _3-99"><i class="img sp_NjJHMaoZ4oF sx_70cfca"></i></span></a></div></div></div></div></div></div><div class="pam fbPageBanner _73y_ uiBoxGray bottomborder" role="alert" data-cookiebanner="banner" id="u_0_9"><div class="fbPageBannerInner"><button class="_42ft _5upp _5la0" data-cookiebanner="close_button" data-testid="cookie-policy-banner-close" title="Entfernen" type="button" id="u_0_a">Entfernen</button><div class="_4juw">Wir verwenden Cookies, um Inhalte zu personalisieren, Werbeanzeigen maßzuschneidern und zu messen sowie die Sicherheit unserer Nutzer zu erhöhen. Wenn du auf unsere Website klickst oder hier navigierst, stimmst du der Erfassung von Informationen durch Cookies auf und außerhalb von Facebook zu. Weitere Informationen zu unseren Cookies und dazu, wie du die Kontrolle darüber behältst, findest du hier: <a href="https://www.facebook.com/policies/cookies/" class="_5l9y" id="cpn-pv-link">Cookie-Richtlinie</a>.</div></div></div><div id="pagelet_bluebar" data-referrer="pagelet_bluebar"><div id="blueBarDOMInspector"><div class="_53jh"><div class="loggedout_menubar_container"><div class="clearfix loggedout_menubar"><div class="lfloat _ohe"><h1><a href="https://www.facebook.com/" title="Zur Facebook-Startseite gehen"><i class="fb_logo img sp_NjJHMaoZ4oF sx_c00243"><u>Facebook</u></i></a></h1></div></div></div></div></div></div><div id="globalContainer" class="uiContextualLayerParent"><div class="fb_content clearfix " id="content" role="main"><div><div class="gradient _8esf _8f3m _8ilg"><div class="gradientContent"><div class="clearfix"><div class="lfloat _ohe"><div class="_5iyy"><div class="_5iyx">Auf Facebook bleibst du mit Menschen in Verbindung und teilst Fotos, Videos und vieles mehr mit ihnen.</div><img class="img" src="https://static.xx.fbcdn.net/rsrc.php/v3/yi/r/OBaVg52wtTZ.png" alt="" width="537" height="195" /></div></div><div class="_5iyz rfloat _ohf"><div class="_6m0s"><div class="_8iep"><div class="_6luv _52jv"><form class="_featuredLogin__formContainer" action="/login/" method="post" onsubmit="" id="u_0_b"><input type="hidden" name="jazoest" value="2679" autocomplete="off" /><input type="hidden" name="lsd" value="AVpOSkCP" autocomplete="off" /><div class="_6luw">Bei Facebook anmelden</div><div class="_6lux"><input type="text" class="inputtext _55r1 _6luy" name="email" placeholder="E-Mail-Adresse oder Telefonnummer" aria-label="E-Mail-Adresse oder Telefonnummer" /></div><div class="_6lux"><input type="password" class="inputtext _55r1 _6luy" name="pass" placeholder="Passwort" aria-label="Passwort" /></div><div class="_6ltg"><button value="1" class="_42ft _4jy0 _6lth _4jy6 _4jy1 selected _51sy" name="login" type="submit">Anmelden</button></div><div class="_6ltj"><a href="https://www.facebook.com/recover/initiate/rs=facebook_login">Passwort vergessen?</a></div><div class="_6ltk">oder</div><div class="_6ltg"><a role="button" class="_42ft _4jy0 _6lti _4jy6 _4jy2 selected _51sy" href="/r.php" ajaxify="">Neues Konto erstellen</a></div></form></div><div id="reg_pages_msg" class="_58mk"><a href="/pages/create/ef_type=registration_form" class="_8esh">Erstelle eine Seite</a> für einen Star, eine Band oder ein Unternehmen.</div></div></div></div></div></div></div></div></div><div><div id="pageFooter" data-referrer="page_footer"><ul class="uiList localeSelectorList _2pid _509- _4ki _6-h _6-j _6-i" data-nocookies="1"><li>Deutsch</li><li><a class="_sv4" dir="ltr" href="https://www.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;en_US&quot;, &quot;de_DE&quot;, &quot;https:\/\/www.facebook.com\/&quot;, &quot;www_list_selector&quot;, 0); return false;" title="English (US)">English (US)</a></li><li><a class="_sv4" dir="ltr" href="https://tr-tr.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;tr_TR&quot;, &quot;de_DE&quot;, &quot;https:\/\/tr-tr.facebook.com\/&quot;, &quot;www_list_selector&quot;, 1); return false;" title="Turkish">Türkçe</a></li><li><a class="_sv4" dir="ltr" href="https://pl-pl.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;pl_PL&quot;, &quot;de_DE&quot;, &quot;https:\/\/pl-pl.facebook.com\/&quot;, &quot;www_list_selector&quot;, 2); return false;" title="Polish">Polski</a></li><li><a class="_sv4" dir="ltr" href="https://it-it.facebook.com/" onclick="require(&quot;IntlUtils&quot;).setCookieLocale(&quot;it_IT&quot;, &quot;de_DE&quot;, &quot;https:\/\/it-it.facebook.com\/&quot;, &quot;www_list_selector&quot;, 3); return false;" title="Italian">Ital
23.09 21:19:33 [Server] INFO ctionYearOverviews":" _84vi(?: .*)?$","IntlPolyglotHomepage":" _Interaction__IntlPolyglotVoteActivityCardButton(?: .*)?$","ProtonElementSelection":" _67ft(?: .*)?$"},"interaction_boost":{"SnowliftPrevPager":0.2,"SnowliftNextPager":0.2,"ChatSideBarLink":2,"MessengerSearchTypeahead":2,"Messages_Jewel_Button":2.5,"Notifications_Jewel_Button":1.5,"Tahoe":30,"ProtonElementSelection":4},"event_types":{"BlueBarAccountChevronMenu":["click"],"BlueBarHomeButton":["click"],"BlueBarProfileLink":["click"],"ReactComposerSproutMedia":["click"],"ReactComposerSproutAlbum":["click"],"ReactComposerSproutNote":["click"],"ReactComposerSproutLocation":["click"],"ReactComposerSproutActivity":["click"],"ReactComposerSproutPeople":["click"],"ReactComposerSproutLiveVideo":["click"],"ReactComposerSproutMarkdown":["click"],"ReactComposerSproutFormattedText":["click"],"ReactComposerSproutSticker":["click"],"ReactComposerSproutSponsor":["click"],"ReactComposerSproutEllipsis":["click"],"ReactComposerSproutContactYourRepresentative":["click"],"ReactComposerSproutFunFact":["click"],"TextExposeSeeMoreLink":["click"],"SnowliftBigCloseButton":["click"],"SnowliftPrevPager":["click"],"SnowliftNextPager":["click"],"SnowliftFullScreenButton":["click"],"PrivacySelectorMenu":["click"],"ReactComposerFeedXSprouts":["click"],"SproutsComposerStatusTab":["click"],"SproutsComposerLiveVideoTab":["click"],"SproutsComposerAlbumTab":["click"],"composerAudienceSelector":["click"],"FeedHScrollAttachmentsPrevPager":["click"],"FeedHScrollAttachmentsNextPager":["click"],"DockChatTabFlyout":["click"],"PrivacyLiteJewel":["click"],"ActorSelector":["click"],"LegacyMentionsInput":["click"],"UFIActionLinksEmbedLink":["click"],"UFIPhotoAttachLink":["click"],"UFIMentionsInputProxy":["click"],"UFIMentionsInputDummy":["click"],"UFIOrderingModeSelector":["click"],"UFIPager":["click"],"UFIReplyRow":["click"],"UFIReplySocialSentence":["click"],"UFIShareLink":["click"],"UFIStickerButton":["click"],"MentionsInput":["click"],"FantaChatTabRoot":["click"],"SnowliftViewableRoot":["click"],"ReactBlueBarJewelButton":["click"],"UFIReactionsDialogLayerImpl":["click"],"UFIReactionsLikeLinkImpl":["click"],"UFIReactionsLinkImplRoot":["click"],"Reaction":["click"],"UFIReactionsMenuImpl":["click"],"UFIReactionsSpatialReactionIconContainer":["click"],"VideoComponentPlayButton":["click"],"FeedOptionsPopover":["click"],"UFICommentLikeCount":["click"],"UFICommentLink":["click"],"ChatTabComposerInputContainer":["click"],"ChatTabHeader":["click"],"DraftEditor":["click"],"ChatSideBarDropDown":["click"],"SearchBox":["click"],"ChatSideBarLink":["mouseup"],"MessengerSearchTypeahead":["click"],"NotificationListItem":["click"],"MessageJewelListItem":["click"],"Messages_Jewel_Button":["click"],"Notifications_Jewel_Button":["click"],"snowliftopen":["click"],"NoteTextSeeMoreLink":["click"],"fbFeedOptionsPopover":["click"],"Requests_Jewel_Button":["click"],"UFICommentActionLinkAjaxify":["click"],"UFICommentActionLinkRedirect":["click"],"UFICommentActionLinkDispatched":["click"],"UFICommentCloseButton":["click"],"UFICommentActionsRemovePreview":["click"],"UFICommentActionsReply":["click"],"UFICommentActionsSaleItemMessage":["click"],"UFICommentActionsAcceptAnswer":["click"],"UFICommentActionsUnacceptAnswer":["click"],"UFICommentReactionsLikeLink":["click"],"UFICommentMenu":["click"],"UFIMentionsInputFallback":["click"],"UFIMentionsInputComponent":["click"],"UFIMentionsInputProxyInput":["click"],"UFIMentionsInputProxyDummy":["click"],"UFIPrivateReplyLinkMessage":["click"],"UFIPrivateReplyLinkSeeReply":["click"],"ChatCloseButton":["click"],"ChatTabComposerPhotoUploader":["click"],"ChatTabComposerGroupPollingButton":["click"],"ChatTabComposerGames":["click"],"ChatTabComposerPlan":["click"],"ChatTabComposerFileUploader":["click"],"ChatTabStickersButton":["click"],"ChatTabComposerGifButton":["click"],"ChatTabComposerEmojiPicker":["click"],"ChatTabComposerLikeButton":["click"],"ChatTabComposerP2PButton":["click"],"ChatTabComposerQuickCam":["click"],"ChatTabHeaderAudioRTCButton":["click"],"ChatTabHeaderVideoRTCButton":["click"],"ChatTabHeaderOptionsButton":["click"],"ChatTabHeaderAddToThreadButton":["click"],"ReactComposerMediaSprout":["click"],"UFIReactionsBlingSocialSentenceComments":["click"],"UFIReactionsBlingSocialSentenceSeens":["click"],"UFIReactionsBlingSocialSentenceShares":["click"],"UFIReactionsBlingSocialSentenceViews":["click"],"UFIReactionsBlingSocialSentence":["click"],"UFIReactionsSocialSentence":["click"],"VideoFullscreenButton":["click"],"Tahoe":["click"],"TahoeFromVideoPlayer":["click"],"TahoeFromVideoLink":["click"],"TahoeFromPhoto":["click"],"":["click"],"FBStoryTrayItem":["click"],"Mobile_Feed_Jewel_Button":["click"],"Mobile_Requests_Jewel_Button":["click"],"Mobile_Messages_Jewel_Button":["click"],"Mobile_Notifications_Jewel_Button":["click"],"Mobile_Search_Jewel_Button":["click"],"Mobile_Bookmarks_Jewel_Button":["click"],"Mobile_Feed_UFI_Comment_Button_Permalink":["click"],"Mobile_Feed_UFI_Comment_Button_Flyout":["click"],"Mobile_Feed_UFI_Token_Bar_Flyout":["click"],"Mobile_Feed_UFI_Token_Bar_Permalink":["click"],"Mobile_UFI_Share_Button":["click"],"Mobile_Feed_Photo_Permalink":["click"],"Mobile_Feed_Video_Permalink":["click"],"Mobile_Feed_Profile_Permalink":["click"],"Mobile_Feed_Story_Permalink":["click"],"Mobile_Feed_Page_Permalink":["click"],"Mobile_Feed_Group_Permalink":["click"],"Mobile_Feed_Event_Permalink":["click"],"ProfileIntroCardAddFeaturedMedia":["click"],"ProfileSectionAbout":["click"],"ProfileSectionAllRelationships":["click"],"ProfileSectionAtWork":["click"],"ProfileSectionContactBasic":["click"],"ProfileSectionEducation":["click"],"ProfileSectionOverview":["click"],"ProfileSectionPlaces":["click"],"ProfileSectionYearOverviews":["click"],"IntlPolyglotHomepage":["click"],"ProtonElementSelection":["click"]},"manual_instrumentation":false,"profile_eager_execution":true,"disable_heuristic":true,"disable_event_profiler":false},1726],["AdsInterfacesSessionConfig",[],{},2393],["TimeSliceInteractionSV",[],{"on_demand_reference_counting":true,"on_demand_profiling_counters":true,"default_rate":1000,"lite_default_rate":100,"interaction_to_lite_coinflip":{"ADS_INTERFACES_INTERACTION":0,"ads_perf_scenario":0,"ads_wait_time":0,"Event":1,"video_psr":0,"video_stall":0},"interaction_to_coinflip":{"ADS_INTERFACES_INTERACTION":1,"ads_perf_scenario":1,"ads_wait_time":1,"video_psr":1000000,"video_stall":2500000,"Event":100,"pixelcloud_view_performance":25,"intern_notify_inbox_page_load":10,"intern_notify_jewel_list_load":10,"tasks_initial_page_load":1,"watch_carousel_left_scroll":1,"watch_carousel_right_scroll":1,"watch_sections_load_more":1,"watch_discover_scroll":1,"fbpkg_ui":1,"sevmanager_powersearch_initial_page_load":10,"network_ui":1,"daiquery_interactive_query":1},"enable_heartbeat":true,"maxBlockMergeDuration":0,"maxBlockMergeDistance":0,"enable_banzai_stream":true,"user_timing_coinflip":50,"banzai_stream_coinflip":1,"compression_enabled":true,"ref_counting_fix":false,"ref_counting_cont_fix":false,"also_record_new_timeslice_format":false,"force_async_request_tracing_on":false},2609],["BanzaiConfig",[],{"EXPIRY":86400000,"MAX_SIZE":10000,"MAX_WAIT":150000,"RESTORE_WAIT":150000,"blacklist":["time_spent"],"gks":{"boosted_component":true,"boosted_pagelikes":true,"jslogger":true,"mercury_send_error_logging":true,"platform_oauth_client_events":true,"xtrackable_clientview_batch":true,"visibility_tracking":true,"graphexplorer":true,"gqls_web_logging":true,"sticker_search_ranking":true}},7],["ZeroRewriteRules",[],{"rewrite_rules":{},"whitelist":{"\/hr\/r":1,"\/hr\/p":1,"\/zero\/unsupported_browser\/":1,"\/zero\/policy\/optin":1,"\/zero\/optin\/write\/":1,"\/zero\/optin\/legal\/":1,"\/zero\/optin\/free\/":1,"\/about\/privacy\/":1,"\/about\/privacy\/update\/":1,"\/about\/privacy\/update":1,"\/zero\/toggle\/welcome\/":1,"\/zero\/toggle\/nux\/":1,"\/fup\/interstitial\/":1,"\/work\/landing":1,"\/work\/login\/":1,"\/work\/email\/":1,"\/ai.php":1,"\/js_dialog_resources\/dialog_descriptions_android.json":0,"\/connect\/jsdialog\/MPlatformAppInvitesJSDialog\/":0,"\/connect\/jsdialog\/MPlatformOAuthShimJSDialog\/":0,"\/connect\/jsdialog\
23.09 21:19:33 [Server] INFO _2":false,"artillery_profiler_on":false,"artillery_merge_max_distance_sec":1,"artillery_merge_max_duration_sec":1,"user_timing":false},1237],["EventConfig",[],{"sampling":{"bandwidth":0,"play":0,"playing":0,"progress":0,"pause":0,"ended":0,"seeked":0,"seeking":0,"waiting":0,"loadedmetadata":0,"canplay":0,"selectionchange":0,"change":0,"timeupdate":2000000,"adaptation":0,"focus":0,"blur":0,"load":0,"error":0,"message":0,"abort":0,"storage":0,"scroll":200000,"mousemove":20000,"mouseover":10000,"mouseout":10000,"mousewheel":1,"MSPointerMove":10000,"keydown":0.1,"click":0.02,"mouseup":0.02,"__100ms":0.001,"__default":5000,"__min":100,"__interactionDefault":200,"__eventDefault":100000},"page_sampling_boost":1,"interaction_regexes":{"BlueBarAccountChevronMenu":" _5lxs(?: .*)?$","BlueBarHomeButton":" _bluebarLinkHome__interaction-root(?: .*)?$","BlueBarProfileLink":" _1k67(?: .*)?$","ReactComposerSproutMedia":" _1pnt(?: .*)?$","ReactComposerSproutAlbum":" _1pnu(?: .*)?$","ReactComposerSproutNote":" _3-9x(?: .*)?$","ReactComposerSproutLocation":" _1pnv(?: .*)?$","ReactComposerSproutActivity":" _1pnz(?: .*)?$","ReactComposerSproutPeople":" _1pn-(?: .*)?$","ReactComposerSproutLiveVideo":" _5tv7(?: .*)?$","ReactComposerSproutMarkdown":" _311p(?: .*)?$","ReactComposerSproutFormattedText":" _mwg(?: .*)?$","ReactComposerSproutSticker":" _2vri(?: .*)?$","ReactComposerSproutSponsor":" _5t5q(?: .*)?$","ReactComposerSproutEllipsis":" _1gr3(?: .*)?$","ReactComposerSproutContactYourRepresentative":" _3cnv(?: .*)?$","ReactComposerSproutFunFact":" _2_xs(?: .*)?$","TextExposeSeeMoreLink":" see_more_link(?: .*)?$","SnowliftBigCloseButton":"(?: _xlt(?: .*)? _418x(?: .*)?$| _418x(?: .*)? _xlt(?: .*)?$)","SnowliftPrevPager":"(?: snowliftPager(?: .*)? prev(?: .*)?$| prev(?: .*)? snowliftPager(?: .*)?$)","SnowliftNextPager":"(?: snowliftPager(?: .*)? next(?: .*)?$| next(?: .*)? snowliftPager(?: .*)?$)","SnowliftFullScreenButton":"#fbPhotoSnowliftFullScreenSwitch( .+)*","PrivacySelectorMenu":"(?: _57di(?: .*)? _2wli(?: .*)?$| _2wli(?: .*)? _57di(?: .*)?$)","ReactComposerFeedXSprouts":" _nh6(?: .*)?$","SproutsComposerStatusTab":" _sg1(?: .*)?$","SproutsComposerLiveVideoTab":" _sg1(?: .*)?$","SproutsComposerAlbumTab":" _sg1(?: .*)?$","composerAudienceSelector":" _ej0(?: .*)?$","FeedHScrollAttachmentsPrevPager":" _1qqy(?: .*)?$","FeedHScrollAttachmentsNextPager":" _1qqz(?: .*)?$","DockChatTabFlyout":" fbDockChatTabFlyout(?: .*)?$","PrivacyLiteJewel":" _59fc(?: .*)?$","ActorSelector":" _6vh(?: .*)?$","LegacyMentionsInput":"(?: ReactLegacyMentionsInput(?: .*)? uiMentionsInput(?: .*)? _2xwx(?: .*)?$| uiMentionsInput(?: .*)? ReactLegacyMentionsInput(?: .*)? _2xwx(?: .*)?$| _2xwx(?: .*)? ReactLegacyMentionsInput(?: .*)? uiMentionsInput(?: .*)?$| ReactLegacyMentionsInput(?: .*)? _2xwx(?: .*)? uiMentionsInput(?: .*)?$| uiMentionsInput(?: .*)? _2xwx(?: .*)? ReactLegacyMentionsInput(?: .*)?$| _2xwx(?: .*)? uiMentionsInput(?: .*)? ReactLegacyMentionsInput(?: .*)?$)","UFIActionLinksEmbedLink":" _2g1w(?: .*)?$","UFIPhotoAttachLink":" UFIPhotoAttachLinkWrapper(?: .*)?$","UFIMentionsInputProxy":" _1osa(?: .*)?$","UFIMentionsInputDummy":" _1osc(?: .*)?$","UFIOrderingModeSelector":" _3scp(?: .*)?$","UFIPager":"(?: UFIPagerRow(?: .*)? UFIRow(?: .*)?$| UFIRow(?: .*)? UFIPagerRow(?: .*)?$)","UFIReplyRow":"(?: UFIReplyRow(?: .*)? UFICommentReply(?: .*)?$| UFICommentReply(?: .*)? UFIReplyRow(?: .*)?$)","UFIReplySocialSentence":" UFIReplySocialSentenceRow(?: .*)?$","UFIShareLink":" _5f9b(?: .*)?$","UFIStickerButton":" UFICommentStickerButton(?: .*)?$","MentionsInput":" _5yk1(?: .*)?$","FantaChatTabRoot":" _3_9e(?: .*)?$","SnowliftViewableRoot":" _2-sx(?: .*)?$","ReactBlueBarJewelButton":" _5fwr(?: .*)?$","UFIReactionsDialogLayerImpl":" _1oxk(?: .*)?$","UFIReactionsLikeLinkImpl":" _4x9_(?: .*)?$","UFIReactionsLinkImplRoot":" _khz(?: .*)?$","Reaction":" _iuw(?: .*)?$","UFIReactionsMenuImpl":" _iu-(?: .*)?$","UFIReactionsSpatialReactionIconContainer":" _1fq9(?: .*)?$","VideoComponentPlayButton":" _bsl(?: .*)?$","FeedOptionsPopover":" _b1e(?: .*)?$","UFICommentLikeCount":" UFICommentLikeButton(?: .*)?$","UFICommentLink":" _5yxe(?: .*)?$","ChatTabComposerInputContainer":" _552h(?: .*)?$","ChatTabHeader":" _15p4(?: .*)?$","DraftEditor":" _5rp7(?: .*)?$","ChatSideBarDropDown":" _5vm9(?: .*)?$","SearchBox":" _539-(?: .*)?$","ChatSideBarLink":" _55ln(?: .*)?$","MessengerSearchTypeahead":" _3rh8(?: .*)?$","NotificationListItem":" _33c(?: .*)?$","MessageJewelListItem":" messagesContent(?: .*)?$","Messages_Jewel_Button":" _3eo8(?: .*)?$","Notifications_Jewel_Button":" _3eo9(?: .*)?$","snowliftopen":" _342u(?: .*)?$","NoteTextSeeMoreLink":" _3qd_(?: .*)?$","fbFeedOptionsPopover":" _1he6(?: .*)?$","Requests_Jewel_Button":" _3eoa(?: .*)?$","UFICommentActionLinkAjaxify":" _15-3(?: .*)?$","UFICommentActionLinkRedirect":" _15-6(?: .*)?$","UFICommentActionLinkDispatched":" _15-7(?: .*)?$","UFICommentCloseButton":" _36rj(?: .*)?$","UFICommentActionsRemovePreview":" _460h(?: .*)?$","UFICommentActionsReply":" _460i(?: .*)?$","UFICommentActionsSaleItemMessage":" _460j(?: .*)?$","UFICommentActionsAcceptAnswer":" _460k(?: .*)?$","UFICommentActionsUnacceptAnswer":" _460l(?: .*)?$","UFICommentReactionsLikeLink":" _3-me(?: .*)?$","UFICommentMenu":" _1-be(?: .*)?$","UFIMentionsInputFallback":" _289b(?: .*)?$","UFIMentionsInputComponent":" _289c(?: .*)?$","UFIMentionsInputProxyInput":" _432z(?: .*)?$","UFIMentionsInputProxyDummy":" _432-(?: .*)?$","UFIPrivateReplyLinkMessage":" _14hj(?: .*)?$","UFIPrivateReplyLinkSeeReply":" _14hk(?: .*)?$","ChatCloseButton":" _4vu4(?: .*)?$","ChatTabComposerPhotoUploader":" _13f-(?: .*)?$","ChatTabComposerGroupPollingButton":" _13f_(?: .*)?$","ChatTabComposerGames":" _13ga(?: .*)?$","ChatTabComposerPlan":" _13gb(?: .*)?$","ChatTabComposerFileUploader":" _13gd(?: .*)?$","ChatTabStickersButton":" _13ge(?: .*)?$","ChatTabComposerGifButton":" _13gf(?: .*)?$","ChatTabComposerEmojiPicker":" _13gg(?: .*)?$","ChatTabComposerLikeButton":" _13gi(?: .*)?$","ChatTabComposerP2PButton":" _13gj(?: .*)?$","ChatTabComposerQuickCam":" _13gk(?: .*)?$","ChatTabHeaderAudioRTCButton":" _461a(?: .*)?$","ChatTabHeaderVideoRTCButton":" _461b(?: .*)?$","ChatTabHeaderOptionsButton":" _461_(?: .*)?$","ChatTabHeaderAddToThreadButton":" _4620(?: .*)?$","ReactComposerMediaSprout":" _fk5(?: .*)?$","UFIReactionsBlingSocialSentenceComments":" _-56(?: .*)?$","UFIReactionsBlingSocialSentenceSeens":" _2x0l(?: .*)?$","UFIReactionsBlingSocialSentenceShares":" _2x0m(?: .*)?$","UFIReactionsBlingSocialSentenceViews":" _-5c(?: .*)?$","UFIReactionsBlingSocialSentence":" _-5d(?: .*)?$","UFIReactionsSocialSentence":" _1vaq(?: .*)?$","VideoFullscreenButton":" _39ip(?: .*)?$","Tahoe":" _400z(?: .*)?$","TahoeFromVideoPlayer":" _1vek(?: .*)?$","TahoeFromVideoLink":" _2-40(?: .*)?$","TahoeFromPhoto":" _2ju5(?: .*)?$","FBStoryTrayItem":" _1fvw(?: .*)?$","Mobile_Feed_Jewel_Button":"#feed_jewel( .+)*","Mobile_Requests_Jewel_Button":"#requests_jewel( .+)*","Mobile_Messages_Jewel_Button":"#messages_jewel( .+)*","Mobile_Notifications_Jewel_Button":"#notifications_jewel( .+)*","Mobile_Search_Jewel_Button":"#search_jewel( .+)*","Mobile_Bookmarks_Jewel_Button":"#bookmarks_jewel( .+)*","Mobile_Feed_UFI_Comment_Button_Permalink":" _l-a(?: .*)?$","Mobile_Feed_UFI_Comment_Button_Flyout":" _4qeq(?: .*)?$","Mobile_Feed_UFI_Token_Bar_Flyout":" _4qer(?: .*)?$","Mobile_Feed_UFI_Token_Bar_Permalink":" _4-09(?: .*)?$","Mobile_UFI_Share_Button":" _15kr(?: .*)?$","Mobile_Feed_Photo_Permalink":" _1mh-(?: .*)?$","Mobile_Feed_Video_Permalink":" _65g_(?: .*)?$","Mobile_Feed_Profile_Permalink":" _4kk6(?: .*)?$","Mobile_Feed_Story_Permalink":" _26yo(?: .*)?$","Mobile_Feed_Page_Permalink":" _4e81(?: .*)?$","Mobile_Feed_Group_Permalink":" _20u1(?: .*)?$","Mobile_Feed_Event_Permalink":" _20u0(?: .*)?$","ProfileIntroCardAddFeaturedMedia":" _30qr(?: .*)?$","ProfileSectionAbout":" _84wb(?: .*)?$","ProfileSectionAllRelationships":" _84wc(?: .*)?$","ProfileSectionAtWork":" _2fnv(?: .*)?$","ProfileSectionContactBasic":" _84vf(?: .*)?$","ProfileSectionEducation":" _84vh(?: .*)?$","ProfileSectionOverview":" _84vj(?: .*)?$","ProfileSectionPlaces":" _84vg(?: .*)?$","ProfileSe
23.09 21:19:33 [Server] INFO rel="shortcut icon" href="https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico" /><link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yd/l/0,cross/e1QRjuH9veu.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="bRZKf" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yP/l/0,cross/3S7hQrv4Ret.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="hX5dk" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yj/l/0,cross/1Is6f4uCAA-.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="BqOao" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yE/l/0,cross/Fu_l8W-Chax.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="AFydu" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yy/l/0,cross/Q7ZsJzgHtwP.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="gHhmF" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yf/l/0,cross/qDClur1GWqw.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="Tiyq/" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/y9/l/0,cross/gG2aUGvKBHL.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="xjzli" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yO/l/0,cross/1OC8cOoRyBP.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="P749T" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yO/l/0,cross/FRyt6DsTlSW.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="CuAgb" /> <link type="text/css" rel="stylesheet" href="https://static.xx.fbcdn.net/rsrc.php/v3/yf/l/0,cross/opD-QrhBVca.cssnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="6ODwX" /> <script src="https://static.xx.fbcdn.net/rsrc.php/v3/yn/r/tcPghJHDUqI.jsnc_x=Ij3Wp8lg5Kz" data-bootloader-hash="KM2Q4"></script> <script>requireLazy(["gkx"],function(gkx){gkx.add({"946894":{"result":false,"hash":"AT6SLXTTxZ57bByS"},"676837":{"result":false,"hash":"AT5oXf2v5KGFLveF"},"676920":{"result":false,"hash":"AT77yalTFtW994Yf"},"676921":{"result":false,"hash":"AT6UK6i5If2QVZ4n"},"676922":{"result":false,"hash":"AT6Ah0V1EJVTF-hQ"},"1073500":{"result":false,"hash":"AT4RJOwH1LCgMbgs"},"1113247":{"result":false,"hash":"AT4PA-3LW-wyyL7d"},"708253":{"result":false,"hash":"AT7Ahyuh3Z5e6t3z"}});});require("TimeSliceImpl").guard(function(){(require("ServerJSDefine")).handleDefines([["cr:696703",[],{"__rc":[null,"Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:708886",["EventProfilerImpl"],{"__rc":["EventProfilerImpl","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:717822",["TimeSliceImpl"],{"__rc":["TimeSliceImpl","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:806696",["clearTimeoutBlue"],{"__rc":["clearTimeoutBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:807042",["setTimeoutBlue"],{"__rc":["setTimeoutBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:896462",["setIntervalAcrossTransitionsBlue"],{"__rc":["setIntervalAcrossTransitionsBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:925100",["RunBlue"],{"__rc":["RunBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:986633",["setTimeoutAcrossTransitionsBlue"],{"__rc":["setTimeoutAcrossTransitionsBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:1003267",["clearIntervalBlue"],{"__rc":["clearIntervalBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:896461",["setIntervalBlue"],{"__rc":["setIntervalBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:1000292",["BanzaiNew"],{"__rc":["BanzaiNew","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:729414",[],{"__rc":[null,"Aa22fduFtHpZLOqNRZUf-5G6vohQHhSxQJkNwivxd_SkN8WJ-8LDjypWoawXk61IvJY0mcjhqGk2VLJuFnXn"]},-1],["cr:692209",["cancelIdleCallbackBlue"],{"__rc":["cancelIdleCallbackBlue","Aa3NdK8XAdXQFJCmNVGegqLQNEHvr-yzmWLpzTbsrO4f-n1WN9etLZIRGR5iocIlb4vt2QNodzRLlcDsMRKhDbU"]},-1],["cr:695720",["SnappyCompressUtil"],{"__rc":["SnappyCompressUtil","Aa2Mr-ufn9YDLaH281gW2kbGicBbeDonwEfYibV1PEAUu_voFPqwTwm5hK0cJhoGNJClLwwnUTedXV32s2HDM-ui7jE"]},-1],["URLFragmentPreludeConfig",[],{"hashtagRedirect":true,"fragBlacklist":["nonce","access_token","oauth_token","xs","checkpoint_data","code"]},137],["BigPipeExperiments",[],{"link_images_to_pagelets":false,"enable_bigpipe_plugins":false},907],["BootloaderConfig",[],{"jsRetries":null,"jsRetryAbortNum":2,"jsRetryAbortTime":5,"payloadEndpointURI":"https:\/\/www.facebook.com\/ajax\/bootloader-endpoint\/","preloadBE":false,"assumeNotNonblocking":false,"shouldCoalesceModuleRequestsMadeInSameTick":true,"staggerJsDownloads":false,"preloader_num_preloads":0,"preloader_preload_after_dd":false,"preloader_num_loads":1,"preloader_enabled":false,"retryQueuedBootloads":false,"silentDups":false,"asyncPreloadBoost":true},329],["CSSLoaderConfig",[],{"timeout":5000,"modulePrefix":"BLCSS:"},619],["CookieCoreConfig",[],{"a11y":{},"act":{},"c_user":{},"ddid":{"p":"\/deferreddeeplink\/","t":2419200},"dpr":{"t":604800},"js_ver":{"t":604800},"locale":{"t":604800},"lh":{"t":604800},"m_pixel_ratio":{"t":604800},"noscript":{},"pnl_data2":{"t":2},"presence":{},"sfau":{},"wd":{"t":604800},"x-referer":{},"x-src":{"t":1}},2104],["CurrentCommunityInitialData",[],{},490],["CurrentEnvironment",[],{"facebookdotcom":true,"messengerdotcom":false},827],["CurrentUserInitialData",[],{"USER_ID":"0","ACCOUNT_ID":"0","NAME":"","SHORT_NAME":null,"IS_MESSENGER_ONLY_USER":false,"IS_DEACTIVATED_ALLOWED_ON_MESSENGER":false,"APP_ID":"256281040558"},270],["DTSGInitialData",[],{},258],["ISB",[],{},330],["LSD",[],{"token":"AVpOSkCP"},323],["ServerNonce",[],{"ServerNonce":"xXTiQ67GImA8UMicAM8Q_D"},141],["SiteData",[],{"server_revision":1001205873,"client_revision":1001205873,"tier":"","push_phase":"C3","pkg_cohort":"PHASED:DEFAULT","pr":1,"haste_site":"www","be_mode":1,"be_key":"__be","ir_on":true,"is_rtl":false,"is_comet":false,"hsi":"6739947751571737774-0","spin":4,"__spin_r":1001205873,"__spin_b":"trunk","__spin_t":1569266373,"vip":"185.60.216.35"},317],["SprinkleConfig",[],{"param_name":"jazoest","version":2,"should_randomize":false},2111],["UserAgentData",[],{"browserArchitecture":"32","browserFullVersion":null,"browserMinorVersion":null,"browserName":"Unknown","browserVersion":null,"deviceName":"Unknown","engineName":"Unknown","engineVersion":null,"platformArchitecture":"32","platformName":"Unknown","platformVersion":null,"platformFullVersion":null},527],["PromiseUsePolyfillSetImmediateGK",[],{"www_always_use_polyfill_setimmediate":false},2190],["DataStoreConfig",[],{"expandoKey":"__FBDATASTORAGE","useExpando":true},2915],["CookieCoreLoggingConfig",[],{"maximumIgnorableStallMs":16.67,"sampleRate":9.7e-5,"sampleRateClassic":1.0e-10,"sampleRateFastStale":1.0e-8},3401],["ImmediateImplementationExperiments",[],{"prefer_message_channel":true},3419],["DTSGInitData",[],{"token":"","async_get_token":""},3515],["UriNeedRawQuerySVConfig",[],{"uris":["dms.netmng.com","doubleclick.net","r.msn.com","watchit.sky.com","graphite.instagram.com","www.kfc.co.th","learn.pantheon.io","www.landmarkshops.in","www.ncl.com","s0.wp.com","www.tatacliq.com","bs.serving-sys.com","kohls.com","lazada.co.th","xg4ken.com","technopark.ru","officedepot.com.mx","bestbuy.com.mx"]},3871],["InitialCookieConsent",[],{"deferCookies":true,"noCookies":false,"shouldShowCookieBanner":true},4328],["TrustedTypesConfig",[],{"useTrustedTypes":false,"reportOnly":true},4548],["ArtilleryExperiments",[],{"artillery_static_resources_pagelet_attribution":false,"artillery_timeslice_compressed_data":false,"artillery_miny_client_payload":false,"artillery_prolong_page_tracing":false,"artillery_navigation_timing_level
23.09 21:19:33 [Multicraft] Skipped 227 lines due to rate limit (75/s)
[doublepost=1569266496][/doublepost]This might be easier to read. https://pastebin.com/yw8igwN8
 
Yea I hope that you can see by yourself that that text message is a little too long for the client.
 
This is the message that appears, when i try sending a link to the client. In this case it was https://facebook.com for testing.
[doublepost=1569326416,1569326130][/doublepost]apparently the facebook link was the problem of the error. I replaced it with another link, and i dont get kicked anymore, but the message is still <none>
 
This is the message that appears, when i try sending a link to the client. In this case it was https://facebook.com for testing.
[doublepost=1569326416,1569326130][/doublepost]apparently the facebook link was the problem of the error. I replaced it with another link, and i dont get kicked anymore, but the message is still <none>
Can you send your new code (with link)?
 
Hi, sorry for the late reply.
Code:
options:
    facebooklink: https://fb.me/test
    twitterlink: Test


on right click on head:
    if "%region at event-block%" contains "facebook":
        set {_facebook} to text from "{@facebooklink}"
        wait 3 ticks
        send "&6%{_facebook}%" to player
        stop

on right click on head:
    if "%region at event-block%" contains "twitter":
        set {_twitter} to text from "{@twitterlink}"
        wait 3 ticks
        send "&6%{_twitter}%" to player
        stop

This seemed to work fine, except it still says <none> when clicked.
 
Status
Not open for further replies.