Gitlab@Informatics

Skip to content
Snippets Groups Projects
Commit 199ce2bc authored by Aekapop Bunpeng's avatar Aekapop Bunpeng
Browse files

lab

parent 3b829464
No related branches found
No related tags found
No related merge requests found
Showing
with 357 additions and 0 deletions
.env 0 → 100644
# Please Note:
# In PHP Versions <= 7.4 MySQL8 is not supported due to lacking pdo support
# To determine the name of your containers
COMPOSE_PROJECT_NAME=lamp
# Possible values: php54, php56, php71, php72, php73, php74, php8, php81
PHPVERSION=php81
DOCUMENT_ROOT=./www
APACHE_DOCUMENT_ROOT=/var/www/html
VHOSTS_DIR=./config/vhosts
APACHE_LOG_DIR=./logs/apache2
PHP_INI=./config/php/php.ini
SSL_DIR=./config/ssl
# PHPMyAdmin
UPLOAD_LIMIT=512M
MEMORY_LIMIT=512M
# Xdebug
XDEBUG_LOG_DIR=./logs/xdebug
XDEBUG_PORT=9003
#XDEBUG_PORT=9000
# Possible values: mysql57, mysql8, mariadb103, mariadb104, mariadb105, mariadb106
#
# For Apple Silicon User:
# Please select Mariadb as Database. Oracle doesn't build their SQL Containers for the arm Architecure
DATABASE=mysql8
MYSQL_INITDB_DIR=./config/initdb
MYSQL_DATA_DIR=./data/mysql
MYSQL_LOG_DIR=./logs/mysql
# If you already have the port 80 in use, you can change it (for example if you have Apache)
HOST_MACHINE_UNSECURE_HOST_PORT=80
# If you already have the port 443 in use, you can change it (for example if you have Apache)
HOST_MACHINE_SECURE_HOST_PORT=443
# If you already have the port 3306 in use, you can change it (for example if you have MySQL)
HOST_MACHINE_MYSQL_PORT=3306
# If you already have the port 8080 in use, you can change it (for example if you have PMA)
HOST_MACHINE_PMA_PORT=8080
HOST_MACHINE_PMA_SECURE_PORT=8443
# If you already has the port 6379 in use, you can change it (for example if you have Redis)
HOST_MACHINE_REDIS_PORT=6379
# MySQL root user password
MYSQL_ROOT_PASSWORD=tiger
# Database settings: Username, password and database name
#
# If you need to give the docker user access to more databases than the "docker" db
# you can grant the privileges with phpmyadmin to the user.
MYSQL_USER=docker
MYSQL_PASSWORD=docker
MYSQL_DATABASE=docker
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: database:3306
-- Generation Time: Dec 15, 2020 at 03:51 AM
-- Server version: 5.7.32
-- PHP Version: 7.4.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `docker`
--
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`userid` int(11) NOT NULL,
`username` varchar(30) NOT NULL,
`password` varchar(255) NOT NULL,
`is_admin` varchar(1) NOT NULL,
`status` varchar(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`userid`, `username`, `password`, `is_admin`, `status`) VALUES
(1, 'admin', 'password', 'Y', 'Y'),
(2, 'user01', 'abcd1234', 'N', 'Y'),
(3, 'user02', 'qazxsw', 'N', 'N');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`userid`),
ADD UNIQUE KEY `username` (`username`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `userid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
memory_limit = 256M
post_max_size = 100M
upload_max_filesize = 100M
# Xdebug 2
#xdebug.remote_enable=1
#xdebug.remote_autostart=1
#xdebug.remote_connect_back=1
#xdebug.remote_host=host.docker.internal
#xdebug.remote_port=9000
# Xdebug 3
#xdebug.mode=debug
#xdebug.start_with_request=yes
#xdebug.client_host=host.docker.internal
#xdebug.client_port=9003
#xdebug.idekey=VSCODE
\ No newline at end of file
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot ${APACHE_DOCUMENT_ROOT}
ServerName localhost
<Directory ${APACHE_DOCUMENT_ROOT}>
AllowOverride all
</Directory>
</VirtualHost>
# Allows HTTPS on localhost. You will need to use mkcert on your local machine
# to create the `cert.pem` and `cert-key.pem` files, and then place them in the
# `./config/ssl` directory. You coudl also create certificates for any local
# testing domain you wish such as `localapp.test`, you will then edit your hosts
# file to map that domain name to 127.0.0.1 and then configure your vhosts below
# accordingly:
#
# <VirtualHost *:443>
# ServerAdmin webmaster@localhost
# DocumentRoot ${APACHE_DOCUMENT_ROOT}
# ServerName localhost
# <Directory ${APACHE_DOCUMENT_ROOT}>
# AllowOverride all
# </Directory>
# SSLEngine on
# SSLCertificateFile /etc/apache2/ssl/cert.pem
# SSLCertificateKeyFile /etc/apache2/ssl/cert-key.pem
# </VirtualHost>
\ No newline at end of file
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.21.0.5. Set the 'ServerName' directive globally to suppress this message
[Tue Jul 25 02:47:16.192489 2023] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/8.1.20 OpenSSL/1.1.1n configured -- resuming normal operations
[Tue Jul 25 02:47:16.193233 2023] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
[Tue Jul 25 03:01:11.729363 2023] [mpm_prefork:notice] [pid 1] AH00170: caught SIGWINCH, shutting down gracefully
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:10 +0000] "GET / HTTP/1.1" 200 872 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:10 +0000] "GET /assets/css/bulma.min.css HTTP/1.1" 200 22080 "http://localhost/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:12 +0000] "GET /favicon.ico HTTP/1.1" 404 487 "http://localhost/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:41 +0000] "GET / HTTP/1.1" 200 872 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:49 +0000] "GET /login_lab HTTP/1.1" 301 574 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:49 +0000] "GET /login_lab/ HTTP/1.1" 200 1183 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:49 +0000] "GET /login_lab/assets/images/logo.svg HTTP/1.1" 200 5183 "http://localhost/login_lab/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:49 +0000] "GET /login_lab/assets/css/login.css HTTP/1.1" 200 1028 "http://localhost/login_lab/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:49 +0000] "GET /login_lab/assets/images/login.jpg HTTP/1.1" 200 446273 "http://localhost/login_lab/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:48:58 +0000] "GET /login_lab/index.php?username=admin&password=password&login=Login HTTP/1.1" 200 1211 "http://localhost/login_lab/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:49:03 +0000] "GET /login_lab/index.php?username=admin&password=1234&login=Login HTTP/1.1" 200 1210 "http://localhost/login_lab/index.php?username=admin&password=password&login=Login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
localhost:80 172.21.0.1 - - [25/Jul/2023:02:49:55 +0000] "-" 408 0 "-" "-"
This diff is collapsed.
This diff is collapsed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LAMP STACK</title>
<link rel="stylesheet" href="/assets/css/bulma.min.css">
</head>
<body>
<section class="hero is-medium is-info is-bold">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">
LAMP STACK
</h1>
<h2 class="subtitle">
Your local development environment
</h2>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column">
<h3 class="title is-3 has-text-centered">Environment</h3>
<hr>
<div class="content">
<ul>
<li><?= apache_get_version(); ?></li>
<li>PHP <?= phpversion(); ?></li>
<li>
<?php
$link = mysqli_connect("database", "root", $_ENV['MYSQL_ROOT_PASSWORD'], null);
/* check connection */
if (mysqli_connect_errno()) {
printf("MySQL connecttion failed: %s", mysqli_connect_error());
} else {
/* print server version */
printf("MySQL Server %s", mysqli_get_server_info($link));
}
/* close connection */
mysqli_close($link);
?>
</li>
</ul>
</div>
</div>
<div class="column">
<h3 class="title is-3 has-text-centered">Quick Links</h3>
<hr>
<div class="content">
<ul>
<li><a href="/phpinfo.php">phpinfo()</a></li>
<li><a href="http://localhost:<? print $_ENV['PMA_PORT']; ?>">phpMyAdmin</a></li>
<li><a href="/test_db.php">Test DB Connection with mysqli</a></li>
<li><a href="/test_db_pdo.php">Test DB Connection with PDO</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
</body>
</html>
node_modules
.Ds_Store
\ No newline at end of file
body {
font-family: "Karla", sans-serif;
background-color: #d0d0ce;
min-height: 100vh; }
.brand-wrapper {
margin-bottom: 19px; }
.brand-wrapper .logo {
height: 37px; }
.login-card {
border: 0;
border-radius: 27.5px;
box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
overflow: hidden; }
.login-card-img {
border-radius: 0;
position: absolute;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover; }
.login-card .card-body {
padding: 85px 60px 60px; }
@media (max-width: 422px) {
.login-card .card-body {
padding: 35px 24px; } }
.login-card-description {
font-size: 25px;
color: #000;
font-weight: normal;
margin-bottom: 23px; }
.login-card form {
max-width: 326px; }
.login-card .form-control {
border: 1px solid #d5dae2;
padding: 15px 25px;
margin-bottom: 20px;
min-height: 45px;
font-size: 13px;
line-height: 15;
font-weight: normal; }
.login-card .form-control::-webkit-input-placeholder {
color: #919aa3; }
.login-card .form-control::-moz-placeholder {
color: #919aa3; }
.login-card .form-control:-ms-input-placeholder {
color: #919aa3; }
.login-card .form-control::-ms-input-placeholder {
color: #919aa3; }
.login-card .form-control::placeholder {
color: #919aa3; }
.login-card .login-btn {
padding: 13px 20px 12px;
background-color: #000;
border-radius: 4px;
font-size: 17px;
font-weight: bold;
line-height: 20px;
color: #fff;
margin-bottom: 24px; }
.login-card .login-btn:hover {
border: 1px solid #000;
background-color: transparent;
color: #000; }
.login-card .forgot-password-link {
font-size: 14px;
color: #919aa3;
margin-bottom: 12px; }
.login-card-footer-text {
font-size: 16px;
color: #0d2366;
margin-bottom: 60px; }
@media (max-width: 767px) {
.login-card-footer-text {
margin-bottom: 24px; } }
.login-card-footer-nav a {
font-size: 14px;
color: #919aa3; }
/*# sourceMappingURL=login.css.map */
{"version":3,"sources":["login.scss"],"names":[],"mappings":"AAAA;EACI,gCAAgC;EAChC,yBAAyB;EACzB,iBAAiB,EAAA;;AAGrB;EACI,mBAAmB,EAAA;EADvB;IAIQ,YAAY,EAAA;;AAIpB;EACI,SAAS;EACT,qBAAqB;EACrB,mDAAmD;EACnD,gBAAgB,EAAA;EAGhB;IACI,gBAAgB;IAChB,kBAAkB;IAClB,WAAW;IACX,YAAY;IACZ,oBAAiB;OAAjB,iBAAiB,EAAA;EAZzB;IAeQ,uBAAuB,EAAA;IAEvB;MAjBR;QAkBY,kBAAkB,EAAA,EAEzB;EAED;IACI,eAAe;IACf,WAAW;IACX,mBAAmB;IACnB,mBAAmB,EAAA;EA1B3B;IA8BQ,gBAAgB,EAAA;EA9BxB;IAkCQ,yBAAyB;IACzB,kBAAkB;IAClB,mBAAmB;IACnB,gBAAgB;IAChB,eAAe;IACf,eAAe;IACf,mBAAmB,EAAA;IAxC3B;MA2CY,cAAc,EAAA;IA3C1B;MA2CY,cAAc,EAAA;IA3C1B;MA2CY,cAAc,EAAA;IA3C1B;MA2CY,cAAc,EAAA;IA3C1B;MA2CY,cAAc,EAAA;EA3C1B;IAgDQ,uBAAuB;IACvB,sBAAsB;IACtB,kBAAkB;IAClB,eAAe;IACf,iBAAiB;IACjB,iBAAiB;IACjB,WAAW;IACX,mBAAmB,EAAA;IAvD3B;MA0DY,sBAAsB;MACtB,6BAA6B;MAC7B,WAAW,EAAA;EA5DvB;IAiEQ,eAAe;IACf,cAAc;IACd,mBAAmB,EAAA;EAGvB;IACI,eAAe;IACf,cAAc;IACd,mBAAmB,EAAA;IAEnB;MALJ;QAMQ,mBAAmB,EAAA,EAE1B;EAEA;IAEO,eAAe;IACf,cAAc,EAAA","file":"login.css","sourcesContent":["body {\n font-family: \"Karla\", sans-serif;\n background-color: #d0d0ce;\n min-height: 100vh;\n}\n\n.brand-wrapper {\n margin-bottom: 19px;\n\n .logo {\n height: 37px;\n }\n}\n\n.login-card {\n border: 0;\n border-radius: 27.5px;\n box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);\n overflow: hidden;\n\n\n &-img {\n border-radius: 0;\n position: absolute;\n width: 100%;\n height: 100%;\n object-fit: cover;\n }\n .card-body {\n padding: 85px 60px 60px;\n\n @media (max-width: 422px) {\n padding: 35px 24px;\n }\n }\n\n &-description {\n font-size: 25px;\n color: #000;\n font-weight: normal;\n margin-bottom: 23px;\n }\n\n form {\n max-width: 326px;\n }\n\n .form-control {\n border: 1px solid #d5dae2;\n padding: 15px 25px;\n margin-bottom: 20px;\n min-height: 45px;\n font-size: 13px;\n line-height: 15;\n font-weight: normal;\n\n &::placeholder {\n color: #919aa3;\n }\n }\n\n .login-btn {\n padding: 13px 20px 12px;\n background-color: #000;\n border-radius: 4px;\n font-size: 17px;\n font-weight: bold;\n line-height: 20px;\n color: #fff;\n margin-bottom: 24px;\n\n &:hover {\n border: 1px solid #000;\n background-color: transparent;\n color: #000;\n }\n }\n\n .forgot-password-link {\n font-size: 14px;\n color: #919aa3;\n margin-bottom: 12px;\n }\n\n &-footer-text {\n font-size: 16px;\n color: #0d2366;\n margin-bottom: 60px;\n\n @media (max-width: 767px) {\n margin-bottom: 24px;\n }\n }\n\n &-footer-nav {\n a {\n font-size: 14px;\n color: #919aa3;\n }\n }\n}\n"]}
\ No newline at end of file
www/login_lab/assets/images/login.jpg

436 KiB

<svg xmlns="http://www.w3.org/2000/svg" width="85" height="25" viewBox="0 0 85 25">
<g fill="none" fill-rule="evenodd" transform="translate(1)">
<g stroke="#FF4600" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" transform="translate(0 1)">
<path d="M18,14 L18,6 C17.9992679,5.28620161 17.6181681,4.62689901 17,4.27 L10,0.27 C9.38119785,-0.0872655899 8.61880215,-0.0872655899 8,0.27 L1,4.27 C0.38183192,4.62689901 0.00073214874,5.28620161 0,6 L0,14 C0.00073214874,14.7137984 0.38183192,15.373101 1,15.73 L8,19.73 C8.61880215,20.0872656 9.38119785,20.0872656 10,19.73 L17,15.73 C17.6181681,15.373101 17.9992679,14.7137984 18,14 Z"/>
<polyline points="4.5 2.21 9 4.81 13.5 2.21"/>
<polyline points="4.5 17.79 4.5 12.6 0 10"/>
<polyline points="18 10 13.5 12.6 13.5 17.79"/>
<polyline points=".27 4.96 9 10.01 17.73 4.96"/>
<line x1="9" x2="9" y1="20.08" y2="10"/>
</g>
<path fill="#000" fill-rule="nonzero" d="M29.525,14.95 L35.45,14.95 L35.45,17.65 L26,17.65 L26,1.77635684e-15 L29.525,1.77635684e-15 L29.525,14.95 Z M43.95,3.625 C45.3000068,3.625 46.5124946,3.9083305 47.5875,4.475 C48.6625054,5.0416695 49.5083303,5.86249463 50.125,6.9375 C50.7416698,8.01250538 51.05,9.27499275 51.05,10.725 C51.05,12.1750073 50.7416698,13.433328 50.125,14.5 C49.5083303,15.566672 48.6625054,16.3874971 47.5875,16.9625 C46.5124946,17.5375029 45.3000068,17.825 43.95,17.825 C42.5999933,17.825 41.3875054,17.5375029 40.3125,16.9625 C39.2374946,16.3874971 38.3916698,15.566672 37.775,14.5 C37.1583303,13.433328 36.85,12.1750073 36.85,10.725 C36.85,9.27499275 37.1583303,8.01250538 37.775,6.9375 C38.3916698,5.86249463 39.2374946,5.0416695 40.3125,4.475 C41.3875054,3.9083305 42.5999933,3.625 43.95,3.625 Z M43.95,6.675 C42.9666618,6.675 42.1333368,7.02082988 41.45,7.7125 C40.7666633,8.40417013 40.425,9.40832675 40.425,10.725 C40.425,12.0416733 40.7666633,13.0458299 41.45,13.7375 C42.1333368,14.4291701 42.9666618,14.775 43.95,14.775 C44.9333383,14.775 45.7666633,14.4291701 46.45,13.7375 C47.1333368,13.0458299 47.475,12.0416733 47.475,10.725 C47.475,9.40832675 47.1333368,8.40417013 46.45,7.7125 C45.7666633,7.02082988 44.9333383,6.675 43.95,6.675 Z M58.975,3.625 C60.1416725,3.625 61.1416625,3.89999725 61.975,4.45 C62.8083375,5.00000275 63.3999983,5.741662 63.75,6.675 L63.75,3.8 L67.25,3.8 L67.25,17.7 C67.25,18.9833398 66.9958359,20.1374949 66.4875,21.1625 C65.9791641,22.1875051 65.2208384,22.9916638 64.2125,23.575 C63.2041616,24.1583363 61.9833405,24.45 60.55,24.45 C58.54999,24.45 56.9333395,23.9750048 55.7,23.025 C54.4666605,22.0749953 53.716668,20.7833415 53.45,19.15 L56.925,19.15 C57.125001,19.8500035 57.5124971,20.3958314 58.0875,20.7875 C58.6625029,21.1791686 59.3999955,21.375 60.3,21.375 C61.3333385,21.375 62.1666635,21.0708364 62.8,20.4625 C63.4333365,19.8541636 63.75,18.9333395 63.75,17.7 L63.75,14.75 C63.3999983,15.683338 62.8083375,16.4291639 61.975,16.9875 C61.1416625,17.5458361 60.1416725,17.825 58.975,17.825 C57.8083275,17.825 56.758338,17.5416695 55.825,16.975 C54.891662,16.4083305 54.1625026,15.5875054 53.6375,14.5125 C53.1124974,13.4374946 52.85,12.1750073 52.85,10.725 C52.85,9.27499275 53.1124974,8.01250538 53.6375,6.9375 C54.1625026,5.86249463 54.891662,5.0416695 55.825,4.475 C56.758338,3.9083305 57.8083275,3.625 58.975,3.625 Z M60.075,6.7 C58.9749945,6.7 58.09167,7.05832975 57.425,7.775 C56.75833,8.49167025 56.425,9.47499375 56.425,10.725 C56.425,11.9750063 56.75833,12.9541631 57.425,13.6625 C58.09167,14.3708369 58.9749945,14.725 60.075,14.725 C61.141672,14.725 62.0208299,14.3625036 62.7125,13.6375 C63.4041701,12.9124964 63.75,11.9416728 63.75,10.725 C63.75,9.4916605 63.4041701,8.51250363 62.7125,7.7875 C62.0208299,7.06249638 61.141672,6.7 60.075,6.7 Z M76.85,3.625 C78.2000068,3.625 79.4124946,3.9083305 80.4875,4.475 C81.5625054,5.0416695 82.4083303,5.86249463 83.025,6.9375 C83.6416698,8.01250538 83.95,9.27499275 83.95,10.725 C83.95,12.1750073 83.6416698,13.433328 83.025,14.5 C82.4083303,15.566672 81.5625054,16.3874971 80.4875,16.9625 C79.4124946,17.5375029 78.2000068,17.825 76.85,17.825 C75.4999933,17.825 74.2875054,17.5375029 73.2125,16.9625 C72.1374946,16.3874971 71.2916698,15.566672 70.675,14.5 C70.0583303,13.433328 69.75,12.1750073 69.75,10.725 C69.75,9.27499275 70.0583303,8.01250538 70.675,6.9375 C71.2916698,5.86249463 72.1374946,5.0416695 73.2125,4.475 C74.2875054,3.9083305 75.4999933,3.625 76.85,3.625 Z M76.85,6.675 C75.8666618,6.675 75.0333368,7.02082988 74.35,7.7125 C73.6666633,8.40417013 73.325,9.40832675 73.325,10.725 C73.325,12.0416733 73.6666633,13.0458299 74.35,13.7375 C75.0333368,14.4291701 75.8666618,14.775 76.85,14.775 C77.8333383,14.775 78.6666633,14.4291701 79.35,13.7375 C80.0333368,13.0458299 80.375,12.0416733 80.375,10.725 C80.375,9.40832675 80.0333368,8.40417013 79.35,7.7125 C78.6666633,7.02082988 77.8333383,6.675 76.85,6.675 Z"/>
</g>
</svg>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment