Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
ramsey /
uuid /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxr-xr-x
2020-02-21 04:36
Codec
[ DIR ]
drwxr-xr-x
2020-02-21 04:36
Converter
[ DIR ]
drwxr-xr-x
2020-02-21 04:36
Exception
[ DIR ]
drwxr-xr-x
2020-02-21 04:36
Generator
[ DIR ]
drwxr-xr-x
2020-02-21 04:36
Provider
[ DIR ]
drwxr-xr-x
2020-02-21 04:36
BinaryUtils.php
1.04
KB
-rw-r--r--
2020-02-21 04:36
DegradedUuid.php
3.6
KB
-rw-r--r--
2020-02-21 04:36
FeatureSet.php
9
KB
-rw-r--r--
2020-02-21 04:36
Uuid.php
22.13
KB
-rw-r--r--
2020-02-21 04:36
UuidFactory.php
8.3
KB
-rw-r--r--
2020-02-21 04:36
UuidFactoryInterface.php
3.82
KB
-rw-r--r--
2020-02-21 04:36
UuidInterface.php
9.23
KB
-rw-r--r--
2020-02-21 04:36
functions.php
2.31
KB
-rw-r--r--
2020-02-21 04:36
Save
Rename
<?php namespace Ramsey\Uuid; /** * Provides binary math utilities */ class BinaryUtils { /** * Applies the RFC 4122 variant field to the `clock_seq_hi_and_reserved` field * * @param $clockSeqHi * @return int The high field of the clock sequence multiplexed with the variant * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 */ public static function applyVariant($clockSeqHi) { // Set the variant to RFC 4122 $clockSeqHi = $clockSeqHi & 0x3f; $clockSeqHi |= 0x80; return $clockSeqHi; } /** * Applies the RFC 4122 version number to the `time_hi_and_version` field * * @param string $timeHi * @param integer $version * @return int The high field of the timestamp multiplexed with the version number * @link http://tools.ietf.org/html/rfc4122#section-4.1.3 */ public static function applyVersion($timeHi, $version) { $timeHi = hexdec($timeHi) & 0x0fff; $timeHi |= $version << 12; return $timeHi; } }