diff --git a/app/Http/Controllers/MainController.php b/app/Http/Controllers/MainController.php index 52ba956..547d5f2 100644 --- a/app/Http/Controllers/MainController.php +++ b/app/Http/Controllers/MainController.php @@ -32,7 +32,7 @@ class MainController extends Controller {
- URL; ?>"> + URL; ?>">

SportsName ?>

diff --git a/app/Http/Controllers/designer/DesignerController.php b/app/Http/Controllers/designer/DesignerController.php index e899684..cf0ef5d 100644 --- a/app/Http/Controllers/designer/DesignerController.php +++ b/app/Http/Controllers/designer/DesignerController.php @@ -486,6 +486,14 @@ class DesignerController extends Controller { $json_Shorts_Right = null; } + if(isset($post['json_Shirts_Front'])){ + $json_Jersey_Front = $post['json_Shirts_Front']; + } + + if(isset($post['json_Shirts_Back'])){ + $json_Jersey_Back = $post['json_Shirts_Back']; + } + try { $design_info = array( 'ClientId' => $clientId, @@ -509,8 +517,8 @@ class DesignerController extends Controller { if($res){ // dd(Uuid::generate()); - // return redirect('/designer/preview/'.$designCode); - return redirect('http://localhost/crew-designer/mydesign/'.$designCode.'/'); + return redirect('/designer/preview/'.$designCode); + // return redirect('http://localhost/crew-designer/mydesign/'.$designCode.'/'); } // else{ diff --git a/app/Http/Controllers/paypal/PaypalController.php b/app/Http/Controllers/paypal/PaypalController.php index de57fce..26ad1c8 100644 --- a/app/Http/Controllers/paypal/PaypalController.php +++ b/app/Http/Controllers/paypal/PaypalController.php @@ -27,24 +27,24 @@ class PaypalController extends Controller { config('services.paypal.secret')); - $this->_apiContext->setConfig(array( + $this->_apiContext->setConfig(array( 'mode' => 'sandbox', 'service.EndPoint' => 'https://api.sandbox.paypal.com', 'http.ConnectionTimeOut' => 30, 'log.LogEnabled' => true, 'log.FileName' => storage_path('logs/paypal.log'), 'log.LogLevel' => 'FINE' - )); + )); - // live - // $this->_apiContext->setConfig(array( - // 'mode' => 'live', - // 'service.EndPoint' => 'https://api.paypal.com', - // 'http.ConnectionTimeOut' => 30, - // 'log.LogEnabled' => true, - // 'log.FileName' => storage_path('logs/paypal.log'), - // 'log.LogLevel' => 'FINE' - // )); + // live + // $this->_apiContext->setConfig(array( + // 'mode' => 'live', + // 'service.EndPoint' => 'https://api.paypal.com', + // 'http.ConnectionTimeOut' => 30, + // 'log.LogEnabled' => true, + // 'log.FileName' => storage_path('logs/paypal.log'), + // 'log.LogLevel' => 'FINE' + // )); } diff --git a/app/Http/Controllers/teamstore/TeamStoreController.php b/app/Http/Controllers/teamstore/TeamStoreController.php index 114e45e..8b2a037 100644 --- a/app/Http/Controllers/teamstore/TeamStoreController.php +++ b/app/Http/Controllers/teamstore/TeamStoreController.php @@ -23,21 +23,28 @@ class TeamStoreController extends Controller { if (Auth::check()){ $user_role = Auth::user()->role; $store_id = Auth::user()->store_id; + }else{ + $user_role = null; + $store_id = null; } - // if($request->session()->get('teamstore_data_array') == null){ - // if($store_id != $store_array[0]->Id){ - // return redirect()->back(); - // } - // }else{ - // if($user_role != "store_owner"){ - // if($request->session()->get('teamstore_data_array')[0]->StoreUrl != $store_array[0]->StoreUrl){ - // return redirect()->back(); - // } - // } - - // } + if($store_array[0]->Password != null){ + if($request->session()->get('teamstore_data_array') == null){ + if($store_id != $store_array[0]->Id){ + return redirect('teamstore'); + } + }else{ + + if($user_role != "store_owner"){ + if($request->session()->get('teamstore_data_array')[0]->StoreUrl != $store_array[0]->StoreUrl){ + return redirect()->back(); + } + } + + } + } + foreach ($product_array as $p => $pr_arr) { diff --git a/app/Http/Controllers/user/UserController.php b/app/Http/Controllers/user/UserController.php index 1463930..79b8f28 100644 --- a/app/Http/Controllers/user/UserController.php +++ b/app/Http/Controllers/user/UserController.php @@ -12,6 +12,7 @@ use Illuminate\Support\Facades\Hash; use Paypal; use View; use Mail; +use Validator; class UserController extends Controller { @@ -441,8 +442,8 @@ class UserController extends Controller { public function orderDetails($ck){ $newUserModel = new UserModel; - $order_item_array = $newUserModel->selectOrderItem($ck); - $item_goup_array = $newUserModel->itemGroup($ck); + $order_item_array = $newUserModel->selectOrderItem($ck); + $item_goup_array = $newUserModel->itemGroup($ck); $item_thumbs = $newUserModel->selectDisplayItemThumb(); $array_payment_details = $newUserModel->selectPaymentDetails('CartKey', $ck); return view('user-layouts.order_details') @@ -452,4 +453,123 @@ class UserController extends Controller { ->with('order_item_array', $order_item_array); } + public function sellDesign($designCode){ + $m = new UserModel; + $newMainModel = new MainModel; + $newTeamStoreModel = new TeamStoreModel; + $userId = Auth::user()->id; + $store_id = Auth::user()->store_id; + $array_client_designs = $m->selectClientDesignsbyCode($designCode); + $store_array = $newTeamStoreModel->selectTeamStore('Id', $store_id); + // check if its your design + if($userId != $array_client_designs[0]->ClientId){ + return redirect()->back(); + } + + // var_dump($store_array); + + $array_template_paths = $m->selectTemplatePaths('TemplateCode', $array_client_designs[0]->TemplateCode); + $array_cat_name = $newMainModel->selectCategoryName($array_client_designs[0]->TemplateCode); + + return view('user-layouts.sell_design') + ->with('array_client_designs', $array_client_designs) + ->with('array_template_paths', $array_template_paths) + ->with('store_array', $store_array) + ->with('array_cat_name', $array_cat_name); + } + + + public function saveNewStoreItem(Request $request){ + $post = $request->all(); + $UserModel = new UserModel; + $getYear = date('y'); + + $store_id = Auth::user()->store_id; + $templateCode = $post['templateCode']; + $designCode = $post['designCode']; + $itemName = $post['itemName']; + $itemDescription = $post['itemDescription']; + $itemPrice = $post['itemPrice']; + $itemForm = $post['itemForm']; + $itemUrl = $post['itemUrl']; + $itemPrivacy = $post['itemPrivacy']; + + $check_product_url = array( + 'ProductURL' => $itemUrl + ); + + $validator = Validator::make($check_product_url, [ + 'ProductURL' => 'unique:teamstore_products' + ], + [ + 'ProductURL.unique' => 'The Item URL has already been taken.', + ]); + + + if ($validator->fails()) + { + $errors = ""; + // var_dump(($validator->errors()->all())); + foreach($validator->errors()->all() as $error){ + $errors .= "
  • ".$error."
  • "; + } + + $message = ' +
    + +

    ERROR:

    + '.$errors. + '
    '; + + return response()->json(array( + 'success' => false, + 'message' => $message + )); + } + + $data = array( + 'TeamStoreId' => $store_id, + 'ProductName' => $itemName, + 'ProductPrice' => str_replace('$ ', '', $itemPrice), + 'ProductDescription'=> $itemDescription, + 'ProductURL' => $itemUrl, + 'ProductForm' => $itemForm, + 'PrivacyStatus' => $itemPrivacy, + 'TemplateCode' => $templateCode, + 'DesignCode' => $designCode, + ); + + $id = $UserModel->insertNewProduct($data); // product item id + // echo $i; + + $array_template_paths = $UserModel->selectTemplatePaths('TemplateCode', $templateCode); + + foreach($array_template_paths as $key => $row1){ + if($key == 0){ + $thumb = $designCode . '-front-thumbnail.png'; + $class = "active"; + }else{ + $thumb = $designCode . '-' . strtolower($row1->Side) . '-thumbnail.png'; + $class = null; + } + + $thumbs = $data = array( + 'ProductId' => $id, + 'Image' => $thumb, + 'ImageClass' =>$class + ); + + $UserModel->insertNewProductThumbnails($thumbs); + + + } + $prod_code = array('ProductCode' => $getYear . '-' .str_pad($id, 10,'0', STR_PAD_LEFT)); + $i = $UserModel->updateProductCode($prod_code, $id); + + return response()->json(array( + 'success' => true + )); + + } + } diff --git a/app/Http/routes.php b/app/Http/routes.php index 5bef0f8..f2f57e8 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -119,6 +119,9 @@ Route::group(['middleware' => 'normaluser'], function () { Route::get('user/email-verify', 'user\UserController@emailVerify'); Route::post('user/post/resend-verification', 'user\UserController@resendVericationCode'); Route::post('user/post/verify-code', 'user\UserController@verifyCode'); + + Route::get('user/my-designs/sell-design/{designCode}', 'user\UserController@sellDesign'); + Route::post('user/my-designs/addstoreitem', 'user\UserController@saveNewStoreItem'); }); diff --git a/app/Models/designer/DesignerModel.php b/app/Models/designer/DesignerModel.php index 513c9b7..d9e0b96 100644 --- a/app/Models/designer/DesignerModel.php +++ b/app/Models/designer/DesignerModel.php @@ -12,13 +12,16 @@ class DesignerModel extends Model { } function selectTemplatePaths($templateid){ - $i = DB::table('template_paths')->where('HashTemplateCode', $templateid) + $i = DB::table('template_paths') + ->where('HashTemplateCode', $templateid) + ->where('IsActive', 'TRUE') ->get(); return $i; } function selectTemplatePathsByTemplateCode($templateid){ $i = DB::table('template_paths')->where('TemplateCode', $templateid) + ->where('IsActive', 'TRUE') ->get(); return $i; } diff --git a/app/Models/teamstore/TeamStoreModel.php b/app/Models/teamstore/TeamStoreModel.php index a56af8e..7229d8c 100644 --- a/app/Models/teamstore/TeamStoreModel.php +++ b/app/Models/teamstore/TeamStoreModel.php @@ -17,6 +17,7 @@ class TeamStoreModel extends Model { { $i = DB::table('teamstore_products') ->where($field, $teamstoreId) + ->orderBy('Id', 'ASC') ->orderBy('Ordering', 'ASC')->get(); return $i; } @@ -111,7 +112,7 @@ class TeamStoreModel extends Model { function myCartGroup($cartKey){ if($cartKey != ""){ $pdo = DB::connection()->getPdo(); - $query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, SUM(Price) * Quantity AS total_price FROM cart_tmp WHERE CartKey = :ck GROUP BY ProductId"); + $query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, Price * SUM(Quantity) AS total_price FROM cart_tmp WHERE CartKey = :ck GROUP BY ProductId"); $query->execute([':ck'=>$cartKey]); $row = $query->fetchAll(\PDO::FETCH_OBJ); return $row; diff --git a/app/Models/user/UserModel.php b/app/Models/user/UserModel.php index 5a23cdd..49abb0f 100644 --- a/app/Models/user/UserModel.php +++ b/app/Models/user/UserModel.php @@ -91,8 +91,10 @@ class UserModel extends Model { } function selectTemplatePaths($field, $templateid){ - $i = DB::table('template_paths')->where($field, $templateid) - ->get(); + $i = DB::table('template_paths') + ->where($field, $templateid) + ->where('IsActive', 'TRUE') + ->get(); return $i; } @@ -142,15 +144,33 @@ class UserModel extends Model { return $i; } + function selectOrderItemWithStoreId($store_id, $ck){ + $i = DB::table('orders') + ->where('StoreId', $store_id) + ->where('CartKey', $ck) + ->get(); + return $i; + } + function itemGroup($cartKey){ $pdo = DB::connection()->getPdo(); - $query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, SUM(Price) * Quantity AS total_price FROM orders WHERE CartKey = :ck GROUP BY ProductId"); + $query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, Price * SUM(Quantity) AS total_price FROM orders WHERE CartKey = :ck GROUP BY ProductId"); $query->execute([':ck'=>$cartKey]); $row = $query->fetchAll(\PDO::FETCH_OBJ); return $row; } + + function itemGroupWithStoreId($store_id, $cartKey){ + $pdo = DB::connection()->getPdo(); + $query = $pdo->prepare("SELECT *, COUNT(Id) AS qty, Price * SUM(Quantity) AS total_price FROM orders WHERE StoreId= :si AND CartKey = :ck GROUP BY ProductId"); + $query->execute(array(':si'=>$store_id, ':ck'=>$cartKey)); + $row = $query->fetchAll(\PDO::FETCH_OBJ); + return $row; + + } + function selectDisplayItemThumb(){ $i = DB::table('teamstore_product_thumbnails') @@ -158,4 +178,42 @@ class UserModel extends Model { ->get(); return $i; } -} + + function selectItemsStoreId($ck){ + + $i = DB::table('cart_tmp') + ->select(DB::raw('StoreId')) + ->where('CartKey', $ck) + ->groupby('StoreId') + ->get(); + return $i; + } + + + function selectUserLogins($field, $value){ + + $i = DB::table('user_logins') + ->where($field, $value) + ->get(); + return $i; + } + + function insertNewProduct($data){ + $pdo = DB::connection()->getPdo(); + $i = DB::table('teamstore_products')->insert($data); + $id = DB::getPdo()->lastInsertId(); + return $id; + } + + function insertNewProductThumbnails($data){ + $i = DB::table('teamstore_product_thumbnails')->insert($data); + return $i; + } + + function updateProductCode($data, $id){ + $i = DB::table('teamstore_products')->where('Id', $id) + ->update($data); + + return $i; + } +} \ No newline at end of file diff --git a/composer.json b/composer.json index a5b688a..1320f5c 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,8 @@ "webpatser/laravel-uuid": "^2.0", "netshell/paypal": "dev-master", "guzzlehttp/guzzle": "~5.0", - "google/recaptcha": "~1.1" + "google/recaptcha": "~1.1", + "spatie/laravel-analytics": "^1.4" }, "require-dev": { "phpunit/phpunit": "~4.0", diff --git a/composer.lock b/composer.lock index be02db7..e373fe7 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "a3df3a89cedca4dc48bf6f68ac5f9fe1", + "content-hash": "a6aecb41f379bcff36b6bca5a100f7a1", "packages": [ { "name": "classpreloader/classpreloader", @@ -222,6 +222,49 @@ ], "time": "2015-11-06T14:35:42+00:00" }, + { + "name": "google/apiclient", + "version": "v1.1.8", + "source": { + "type": "git", + "url": "https://github.com/googleapis/google-api-php-client.git", + "reference": "85309a3520bb5f53368d43e35fd24f43c9556323" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/85309a3520bb5f53368d43e35fd24f43c9556323", + "reference": "85309a3520bb5f53368d43e35fd24f43c9556323", + "shasum": "" + }, + "require": { + "php": ">=5.2.1" + }, + "require-dev": { + "phpunit/phpunit": "3.7.*", + "squizlabs/php_codesniffer": "~2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-v1-master": "1.1.x-dev" + } + }, + "autoload": { + "files": [ + "src/Google/autoload.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "Client library for Google APIs", + "homepage": "http://developers.google.com/api-client-library/php", + "keywords": [ + "google" + ], + "time": "2016-06-06T21:22:48+00:00" + }, { "name": "google/recaptcha", "version": "1.2.1", @@ -467,32 +510,32 @@ }, { "name": "jakub-onderka/php-console-color", - "version": "0.1", + "version": "v0.2", "source": { "type": "git", "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", - "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1" + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1", - "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": ">=5.4.0" }, "require-dev": { "jakub-onderka/php-code-style": "1.0", - "jakub-onderka/php-parallel-lint": "0.*", + "jakub-onderka/php-parallel-lint": "1.0", "jakub-onderka/php-var-dump-check": "0.*", - "phpunit/phpunit": "3.7.*", + "phpunit/phpunit": "~4.3", "squizlabs/php_codesniffer": "1.*" }, "type": "library", "autoload": { - "psr-0": { - "JakubOnderka\\PhpConsoleColor": "src/" + "psr-4": { + "JakubOnderka\\PhpConsoleColor\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -502,11 +545,10 @@ "authors": [ { "name": "Jakub Onderka", - "email": "jakub.onderka@gmail.com", - "homepage": "http://www.acci.cz" + "email": "jakub.onderka@gmail.com" } ], - "time": "2014-04-08T15:00:19+00:00" + "time": "2018-09-29T17:23:10+00:00" }, { "name": "jakub-onderka/php-console-highlighter", @@ -738,26 +780,26 @@ }, { "name": "league/flysystem", - "version": "1.0.46", + "version": "1.0.51", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2" + "reference": "755ba7bf3fb9031e6581d091db84d78275874396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2", - "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/755ba7bf3fb9031e6581d091db84d78275874396", + "reference": "755ba7bf3fb9031e6581d091db84d78275874396", "shasum": "" }, "require": { + "ext-fileinfo": "*", "php": ">=5.5.9" }, "conflict": { "league/flysystem-sftp": "<1.0.6" }, "require-dev": { - "ext-fileinfo": "*", "phpspec/phpspec": "^3.4", "phpunit/phpunit": "^5.7.10" }, @@ -818,20 +860,20 @@ "sftp", "storage" ], - "time": "2018-08-22T07:45:22+00:00" + "time": "2019-03-30T13:22:34+00:00" }, { "name": "monolog/monolog", - "version": "1.23.0", + "version": "1.24.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" + "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", - "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", + "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", "shasum": "" }, "require": { @@ -896,7 +938,7 @@ "logging", "psr-3" ], - "time": "2017-06-19T01:22:40+00:00" + "time": "2018-11-05T09:00:11+00:00" }, { "name": "mtdowling/cron-expression", @@ -944,16 +986,16 @@ }, { "name": "nesbot/carbon", - "version": "1.33.0", + "version": "1.36.2", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "55667c1007a99e82030874b1bb14d24d07108413" + "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/55667c1007a99e82030874b1bb14d24d07108413", - "reference": "55667c1007a99e82030874b1bb14d24d07108413", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9", + "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9", "shasum": "" }, "require": { @@ -961,9 +1003,12 @@ "symfony/translation": "~2.6 || ~3.0 || ~4.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~2", "phpunit/phpunit": "^4.8.35 || ^5.7" }, + "suggest": { + "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.", + "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors." + }, "type": "library", "extra": { "laravel": { @@ -995,7 +1040,7 @@ "datetime", "time" ], - "time": "2018-08-07T08:39:47+00:00" + "time": "2018-12-28T10:07:33+00:00" }, { "name": "netshell/paypal", @@ -1183,16 +1228,16 @@ }, { "name": "psr/log", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", "shasum": "" }, "require": { @@ -1226,7 +1271,7 @@ "psr", "psr-3" ], - "time": "2016-10-10T12:19:37+00:00" + "time": "2018-11-20T15:27:04+00:00" }, { "name": "psy/psysh", @@ -1301,16 +1346,16 @@ }, { "name": "react/promise", - "version": "v2.7.0", + "version": "v2.7.1", "source": { "type": "git", "url": "https://github.com/reactphp/promise.git", - "reference": "f4edc2581617431aea50430749db55cc3fc031b3" + "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/f4edc2581617431aea50430749db55cc3fc031b3", - "reference": "f4edc2581617431aea50430749db55cc3fc031b3", + "url": "https://api.github.com/repos/reactphp/promise/zipball/31ffa96f8d2ed0341a57848cbb84d88b89dd664d", + "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d", "shasum": "" }, "require": { @@ -1343,7 +1388,69 @@ "promise", "promises" ], - "time": "2018-06-13T15:59:06+00:00" + "time": "2019-01-07T21:25:54+00:00" + }, + { + "name": "spatie/laravel-analytics", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-analytics.git", + "reference": "957f8f698fd14b89dedfff1d90eb486d89b559c8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-analytics/zipball/957f8f698fd14b89dedfff1d90eb486d89b559c8", + "reference": "957f8f698fd14b89dedfff1d90eb486d89b559c8", + "shasum": "" + }, + "require": { + "google/apiclient": "1.1.*", + "illuminate/contracts": "~5.0", + "illuminate/support": "~5.0", + "nesbot/carbon": "~1.0", + "php": ">=5.4.0" + }, + "require-dev": { + "mockery/mockery": "0.9.*", + "phpunit/phpunit": "4.*", + "scrutinizer/ocular": "~1.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\LaravelAnalytics\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://murze.be", + "role": "Developer" + }, + { + "name": "Matthias De Winter", + "email": "dewinter.matthias@gmail.com", + "homepage": "https://github.com/MatthiasDeWinter", + "role": "Developer" + } + ], + "description": "An opinionated Laravel 5 package to retrieve Google Analytics data.", + "homepage": "https://github.com/spatie/laravel-analytics", + "keywords": [ + "analytics", + "google", + "laravel", + "reports", + "retrieve", + "spatie" + ], + "time": "2016-05-13T06:41:58+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -1520,16 +1627,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v2.8.45", + "version": "v2.8.49", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "84ae343f39947aa084426ed1138bb96bf94d1f12" + "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/84ae343f39947aa084426ed1138bb96bf94d1f12", - "reference": "84ae343f39947aa084426ed1138bb96bf94d1f12", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0", + "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0", "shasum": "" }, "require": { @@ -1576,20 +1683,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2018-07-26T09:03:18+00:00" + "time": "2018-11-21T14:20:20+00:00" }, { "name": "symfony/filesystem", - "version": "v2.8.45", + "version": "v2.8.49", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "0b252f4e25b7da17abb5a98eb60755b71d082c9c" + "reference": "7ae46872dad09dffb7fe1e93a0937097339d0080" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/0b252f4e25b7da17abb5a98eb60755b71d082c9c", - "reference": "0b252f4e25b7da17abb5a98eb60755b71d082c9c", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/7ae46872dad09dffb7fe1e93a0937097339d0080", + "reference": "7ae46872dad09dffb7fe1e93a0937097339d0080", "shasum": "" }, "require": { @@ -1626,7 +1733,7 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2018-08-07T09:12:42+00:00" + "time": "2018-11-11T11:18:13+00:00" }, { "name": "symfony/finder", @@ -1812,16 +1919,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.9.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "e3d826245268269cd66f8326bd8bc066687b4a19" + "reference": "82ebae02209c21113908c229e9883c419720738a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19", - "reference": "e3d826245268269cd66f8326bd8bc066687b4a19", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a", + "reference": "82ebae02209c21113908c229e9883c419720738a", "shasum": "" }, "require": { @@ -1833,7 +1940,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.11-dev" } }, "autoload": { @@ -1855,7 +1962,7 @@ }, { "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "email": "backendtea@gmail.com" } ], "description": "Symfony polyfill for ctype functions", @@ -1866,20 +1973,20 @@ "polyfill", "portable" ], - "time": "2018-08-06T14:22:27+00:00" + "time": "2019-02-06T07:57:58+00:00" }, { "name": "symfony/polyfill-php56", - "version": "v1.9.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "7b4fc009172cc0196535b0328bd1226284a28000" + "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000", - "reference": "7b4fc009172cc0196535b0328bd1226284a28000", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42", + "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42", "shasum": "" }, "require": { @@ -1889,7 +1996,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.11-dev" } }, "autoload": { @@ -1922,20 +2029,20 @@ "portable", "shim" ], - "time": "2018-08-06T14:22:27+00:00" + "time": "2019-02-06T07:57:58+00:00" }, { "name": "symfony/polyfill-util", - "version": "v1.9.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", - "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581" + "reference": "b46c6cae28a3106735323f00a0c38eccf2328897" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581", - "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897", + "reference": "b46c6cae28a3106735323f00a0c38eccf2328897", "shasum": "" }, "require": { @@ -1944,7 +2051,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.11-dev" } }, "autoload": { @@ -1974,7 +2081,7 @@ "polyfill", "shim" ], - "time": "2018-08-06T14:22:27+00:00" + "time": "2019-02-08T14:16:39+00:00" }, { "name": "symfony/process", @@ -3130,6 +3237,7 @@ "mock", "xunit" ], + "abandoned": true, "time": "2015-10-02T06:51:40+00:00" }, { @@ -3561,20 +3669,21 @@ }, { "name": "webmozart/assert", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "0df1908962e7a3071564e857d86874dad1ef204a" + "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", - "reference": "0df1908962e7a3071564e857d86874dad1ef204a", + "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9", + "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0" + "php": "^5.3.3 || ^7.0", + "symfony/polyfill-ctype": "^1.8" }, "require-dev": { "phpunit/phpunit": "^4.6", @@ -3607,7 +3716,7 @@ "check", "validate" ], - "time": "2018-01-29T19:49:41+00:00" + "time": "2018-12-25T11:19:39+00:00" } ], "aliases": [], diff --git a/config/site_config.php b/config/site_config.php index ff09860..d6d0eb4 100644 --- a/config/site_config.php +++ b/config/site_config.php @@ -17,10 +17,10 @@ return [ // 'company_email' => env('COMPANY_email','contact@acme.inc'), // 'prod_private_server_ip' => env('35.232.234.8', '35.232.234.8'), - 'prod_private_server_ip' => env('localhost', 'localhost'), // local + 'prod_private_server_ip' => env('http://192.168.2.238', 'http://192.168.2.238'), // local 'designer_location' => env('http://localhost/plain-tshirt/', 'http://localhost/plain-tshirt/'), - 'images_directory' => env('http://localhost/laravel5-adminLTE/public/images/', 'http://localhost/laravel5-adminLTE/public/images/'), + 'images_directory' => env('http://localhost/crewsportswear/public/images/', 'http://localhost/crewsportswear/public/images/'), ]; \ No newline at end of file diff --git a/public/assets/js/jquery.bcSwipe.min.js b/public/assets/js/jquery.bcSwipe.min.js new file mode 100644 index 0000000..7ca41ba --- /dev/null +++ b/public/assets/js/jquery.bcSwipe.min.js @@ -0,0 +1,58 @@ + +/** + * Bootstrap Carousel Swipe v1.1 + * + * jQuery plugin to enable swipe gestures on Bootstrap 3 carousels. + * Examples and documentation: https://github.com/maaaaark/bcSwipe + * + * Licensed under the MIT license. + */ +(function($) { + $.fn.bcSwipe = function(settings) { + var config = { threshold: 50 }; + if (settings) { + $.extend(config, settings); + } + + this.each(function() { + var stillMoving = false; + var start; + + if ('ontouchstart' in document.documentElement) { + this.addEventListener('touchstart', onTouchStart, false); + } + + function onTouchStart(e) { + if (e.touches.length == 1) { + start = e.touches[0].pageX; + stillMoving = true; + this.addEventListener('touchmove', onTouchMove, false); + } + } + + function onTouchMove(e) { + if (stillMoving) { + var x = e.touches[0].pageX; + var difference = start - x; + if (Math.abs(difference) >= config.threshold) { + cancelTouch(); + if (difference > 0) { + $(this).carousel('next'); + } + else { + $(this).carousel('prev'); + } + } + } + } + + function cancelTouch() { + this.removeEventListener('touchmove', onTouchMove); + start = null; + stillMoving = false; + } + }); + + return this; + }; + })(jQuery); \ No newline at end of file diff --git a/public/assets/js/jquery.mobile.custom.min.js b/public/assets/js/jquery.mobile.custom.min.js deleted file mode 100644 index e69de29..0000000 diff --git a/public/assets/js/jquery.zoom.js b/public/assets/js/jquery.zoom.js new file mode 100644 index 0000000..dfbb955 --- /dev/null +++ b/public/assets/js/jquery.zoom.js @@ -0,0 +1,236 @@ +/*! + Zoom 1.7.21 + license: MIT + http://www.jacklmoore.com/zoom +*/ +(function ($) { + var defaults = { + url: false, + callback: false, + target: false, + duration: 120, + on: 'mouseover', // other options: grab, click, toggle + touch: true, // enables a touch fallback + onZoomIn: false, + onZoomOut: false, + magnify: 1 + }; + + // Core Zoom Logic, independent of event listeners. + $.zoom = function(target, source, img, magnify) { + var targetHeight, + targetWidth, + sourceHeight, + sourceWidth, + xRatio, + yRatio, + offset, + $target = $(target), + position = $target.css('position'), + $source = $(source); + + // The parent element needs positioning so that the zoomed element can be correctly positioned within. + target.style.position = /(absolute|fixed)/.test(position) ? position : 'unset'; + target.style.overflow = 'hidden'; + img.style.width = img.style.height = ''; + + $(img) + .addClass('zoomImg') + .css({ + position: 'absolute', + top: 0, + left: 0, + opacity: 0, + width: img.width * magnify, + height: img.height * magnify, + border: 'none', + maxWidth: 'none', + maxHeight: 'none' + }) + .appendTo(target); + + return { + init: function() { + targetWidth = $target.outerWidth(); + targetHeight = $target.outerHeight(); + + if (source === target) { + sourceWidth = targetWidth; + sourceHeight = targetHeight; + } else { + sourceWidth = $source.outerWidth(); + sourceHeight = $source.outerHeight(); + } + + xRatio = (img.width - targetWidth) / sourceWidth; + yRatio = (img.height - targetHeight) / sourceHeight; + + offset = $source.offset(); + }, + move: function (e) { + var left = (e.pageX - offset.left), + top = (e.pageY - offset.top); + + top = Math.max(Math.min(top, sourceHeight), 0); + left = Math.max(Math.min(left, sourceWidth), 0); + + img.style.left = (left * -xRatio) + 'px'; + img.style.top = (top * -yRatio) + 'px'; + } + }; + }; + + $.fn.zoom = function (options) { + return this.each(function () { + var + settings = $.extend({}, defaults, options || {}), + //target will display the zoomed image + target = settings.target && $(settings.target)[0] || this, + //source will provide zoom location info (thumbnail) + source = this, + $source = $(source), + img = document.createElement('img'), + $img = $(img), + mousemove = 'mousemove.zoom', + clicked = false, + touched = false; + + // If a url wasn't specified, look for an image element. + if (!settings.url) { + var srcElement = source.querySelector('img'); + if (srcElement) { + settings.url = srcElement.getAttribute('data-src') || srcElement.currentSrc || srcElement.src; + } + if (!settings.url) { + return; + } + } + + $source.one('zoom.destroy', function(position, overflow){ + $source.off(".zoom"); + target.style.position = position; + target.style.overflow = overflow; + img.onload = null; + $img.remove(); + }.bind(this, target.style.position, target.style.overflow)); + + img.onload = function () { + var zoom = $.zoom(target, source, img, settings.magnify); + + function start(e) { + zoom.init(); + zoom.move(e); + + // Skip the fade-in for IE8 and lower since it chokes on fading-in + // and changing position based on mousemovement at the same time. + $img.stop() + .fadeTo($.support.opacity ? settings.duration : 0, 1, $.isFunction(settings.onZoomIn) ? settings.onZoomIn.call(img) : false); + } + + function stop() { + $img.stop() + .fadeTo(settings.duration, 0, $.isFunction(settings.onZoomOut) ? settings.onZoomOut.call(img) : false); + } + + // Mouse events + if (settings.on === 'grab') { + $source + .on('mousedown.zoom', + function (e) { + if (e.which === 1) { + $(document).one('mouseup.zoom', + function () { + stop(); + + $(document).off(mousemove, zoom.move); + } + ); + + start(e); + + $(document).on(mousemove, zoom.move); + + e.preventDefault(); + } + } + ); + } else if (settings.on === 'click') { + $source.on('click.zoom', + function (e) { + if (clicked) { + // bubble the event up to the document to trigger the unbind. + return; + } else { + clicked = true; + start(e); + $(document).on(mousemove, zoom.move); + $(document).one('click.zoom', + function () { + stop(); + clicked = false; + $(document).off(mousemove, zoom.move); + } + ); + return false; + } + } + ); + } else if (settings.on === 'toggle') { + $source.on('click.zoom', + function (e) { + if (clicked) { + stop(); + } else { + start(e); + } + clicked = !clicked; + } + ); + } else if (settings.on === 'mouseover') { + zoom.init(); // Preemptively call init because IE7 will fire the mousemove handler before the hover handler. + + $source + .on('mouseenter.zoom', start) + .on('mouseleave.zoom', stop) + .on(mousemove, zoom.move); + } + + // Touch fallback + if (settings.touch) { + $source + .on('touchstart.zoom', function (e) { + e.preventDefault(); + if (touched) { + touched = false; + stop(); + } else { + touched = true; + start( e.originalEvent.touches[0] || e.originalEvent.changedTouches[0] ); + } + }) + .on('touchmove.zoom', function (e) { + e.preventDefault(); + zoom.move( e.originalEvent.touches[0] || e.originalEvent.changedTouches[0] ); + }) + .on('touchend.zoom', function (e) { + e.preventDefault(); + if (touched) { + touched = false; + stop(); + } + }); + } + + if ($.isFunction(settings.callback)) { + settings.callback.call(img); + } + }; + + img.setAttribute('role', 'presentation'); + img.alt = ''; + img.src = settings.url; + }); + }; + + $.fn.zoom.defaults = defaults; +}(window.jQuery)); diff --git a/public/images/cliparts/1-5c8a38a52e116.svg b/public/images/cliparts/1-5c8a38a52e116.svg new file mode 100644 index 0000000..e944499 --- /dev/null +++ b/public/images/cliparts/1-5c8a38a52e116.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/10-5c8a40782b51b.svg b/public/images/cliparts/10-5c8a40782b51b.svg new file mode 100644 index 0000000..324d499 --- /dev/null +++ b/public/images/cliparts/10-5c8a40782b51b.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/11-5c8a40bfc431d.svg b/public/images/cliparts/11-5c8a40bfc431d.svg new file mode 100644 index 0000000..9646ed6 --- /dev/null +++ b/public/images/cliparts/11-5c8a40bfc431d.svg @@ -0,0 +1,15 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + + diff --git a/public/images/cliparts/12-5c8a4167db731.svg b/public/images/cliparts/12-5c8a4167db731.svg new file mode 100644 index 0000000..f0f8d12 --- /dev/null +++ b/public/images/cliparts/12-5c8a4167db731.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/13-5c8a41a7beb12.svg b/public/images/cliparts/13-5c8a41a7beb12.svg new file mode 100644 index 0000000..548a946 --- /dev/null +++ b/public/images/cliparts/13-5c8a41a7beb12.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/14-5c8a41c04c119.svg b/public/images/cliparts/14-5c8a41c04c119.svg new file mode 100644 index 0000000..1386775 --- /dev/null +++ b/public/images/cliparts/14-5c8a41c04c119.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/15-5c8a41f36fa9e.svg b/public/images/cliparts/15-5c8a41f36fa9e.svg new file mode 100644 index 0000000..565a268 --- /dev/null +++ b/public/images/cliparts/15-5c8a41f36fa9e.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/16-5c8a4215bd198.svg b/public/images/cliparts/16-5c8a4215bd198.svg new file mode 100644 index 0000000..ab68987 --- /dev/null +++ b/public/images/cliparts/16-5c8a4215bd198.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/17-5c8a4248c495d.svg b/public/images/cliparts/17-5c8a4248c495d.svg new file mode 100644 index 0000000..90cb9b8 --- /dev/null +++ b/public/images/cliparts/17-5c8a4248c495d.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/2-5c8a39b47a79f.svg b/public/images/cliparts/2-5c8a39b47a79f.svg new file mode 100644 index 0000000..221b66c --- /dev/null +++ b/public/images/cliparts/2-5c8a39b47a79f.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/3-5ac482852fdf0.svg b/public/images/cliparts/3-5ac482852fdf0.svg new file mode 100644 index 0000000..90f3a7e --- /dev/null +++ b/public/images/cliparts/3-5ac482852fdf0.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/public/images/cliparts/3-5c8a3b34f37f1.svg b/public/images/cliparts/3-5c8a3b34f37f1.svg new file mode 100644 index 0000000..d6ea068 --- /dev/null +++ b/public/images/cliparts/3-5c8a3b34f37f1.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/4-5c8a3b994a538.svg b/public/images/cliparts/4-5c8a3b994a538.svg new file mode 100644 index 0000000..832aed4 --- /dev/null +++ b/public/images/cliparts/4-5c8a3b994a538.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/5-5c8a3bc631a9c.svg b/public/images/cliparts/5-5c8a3bc631a9c.svg new file mode 100644 index 0000000..9c8ebfb --- /dev/null +++ b/public/images/cliparts/5-5c8a3bc631a9c.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/5bbcb54d58c40.svg b/public/images/cliparts/5bbcb54d58c40.svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/5bbcb54d58c40.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/5bbcb5daaa7b0.svg b/public/images/cliparts/5bbcb5daaa7b0.svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/5bbcb5daaa7b0.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/5bbcb5f87dafe.svg b/public/images/cliparts/5bbcb5f87dafe.svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/5bbcb5f87dafe.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/6-5c8a3c2ee9978.svg b/public/images/cliparts/6-5c8a3c2ee9978.svg new file mode 100644 index 0000000..20754a7 --- /dev/null +++ b/public/images/cliparts/6-5c8a3c2ee9978.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/7-5c8a3ca74ea7d.svg b/public/images/cliparts/7-5c8a3ca74ea7d.svg new file mode 100644 index 0000000..edfc2c5 --- /dev/null +++ b/public/images/cliparts/7-5c8a3ca74ea7d.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/8-5c8a3cd9d61a1.svg b/public/images/cliparts/8-5c8a3cd9d61a1.svg new file mode 100644 index 0000000..a0b112b --- /dev/null +++ b/public/images/cliparts/8-5c8a3cd9d61a1.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/9-5c8a3e9bd86d8.svg b/public/images/cliparts/9-5c8a3e9bd86d8.svg new file mode 100644 index 0000000..491fdaf --- /dev/null +++ b/public/images/cliparts/9-5c8a3e9bd86d8.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/_laravel5-adminlte_public_images_cliparts_newesttree-(1)-5bbef51ba39b9..svg b/public/images/cliparts/_laravel5-adminlte_public_images_cliparts_newesttree-(1)-5bbef51ba39b9..svg new file mode 100644 index 0000000..0d18bb2 --- /dev/null +++ b/public/images/cliparts/_laravel5-adminlte_public_images_cliparts_newesttree-(1)-5bbef51ba39b9..svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/_laravel5-adminlte_public_images_cliparts_newesttree-5bbf4f5424d03.svg b/public/images/cliparts/_laravel5-adminlte_public_images_cliparts_newesttree-5bbf4f5424d03.svg new file mode 100644 index 0000000..fb5a486 --- /dev/null +++ b/public/images/cliparts/_laravel5-adminlte_public_images_cliparts_newesttree-5bbf4f5424d03.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/argyle1-01-5afd362316484.svg b/public/images/cliparts/argyle1-01-5afd362316484.svg new file mode 100644 index 0000000..4d2f2b0 --- /dev/null +++ b/public/images/cliparts/argyle1-01-5afd362316484.svg @@ -0,0 +1,106 @@ + + + + + + + diff --git a/public/images/cliparts/b1-59890694d3023.svg b/public/images/cliparts/b1-59890694d3023.svg new file mode 100644 index 0000000..a184718 --- /dev/null +++ b/public/images/cliparts/b1-59890694d3023.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/cliparts/b2-598906a138b48.svg b/public/images/cliparts/b2-598906a138b48.svg new file mode 100644 index 0000000..efd16e5 --- /dev/null +++ b/public/images/cliparts/b2-598906a138b48.svg @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/cliparts/b3-598906b3059a7.svg b/public/images/cliparts/b3-598906b3059a7.svg new file mode 100644 index 0000000..ffe988f --- /dev/null +++ b/public/images/cliparts/b3-598906b3059a7.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/cliparts/b4-598906cf9293e.svg b/public/images/cliparts/b4-598906cf9293e.svg new file mode 100644 index 0000000..143d42f --- /dev/null +++ b/public/images/cliparts/b4-598906cf9293e.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/cliparts/b5-598906e6970a8.svg b/public/images/cliparts/b5-598906e6970a8.svg new file mode 100644 index 0000000..f9d7fa6 --- /dev/null +++ b/public/images/cliparts/b5-598906e6970a8.svg @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/cliparts/b6-5989072e8bae3.svg b/public/images/cliparts/b6-5989072e8bae3.svg new file mode 100644 index 0000000..2e78748 --- /dev/null +++ b/public/images/cliparts/b6-5989072e8bae3.svg @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/cliparts/bata-sole-1-01-5aed45a57d8c7.svg b/public/images/cliparts/bata-sole-1-01-5aed45a57d8c7.svg new file mode 100644 index 0000000..4eeba58 --- /dev/null +++ b/public/images/cliparts/bata-sole-1-01-5aed45a57d8c7.svg @@ -0,0 +1,105 @@ + + + + + + diff --git a/public/images/cliparts/bata-sole-2-5aed45aa9bcbb.svg b/public/images/cliparts/bata-sole-2-5aed45aa9bcbb.svg new file mode 100644 index 0000000..5e9833b --- /dev/null +++ b/public/images/cliparts/bata-sole-2-5aed45aa9bcbb.svg @@ -0,0 +1,195 @@ + + + + + + diff --git a/public/images/cliparts/bata-sole-3-5aed45af31dd8.svg b/public/images/cliparts/bata-sole-3-5aed45af31dd8.svg new file mode 100644 index 0000000..e199871 --- /dev/null +++ b/public/images/cliparts/bata-sole-3-5aed45af31dd8.svg @@ -0,0 +1,49 @@ + + + + + + diff --git a/public/images/cliparts/bata-sole-4-5aed45b31fed2.svg b/public/images/cliparts/bata-sole-4-5aed45b31fed2.svg new file mode 100644 index 0000000..9d75bff --- /dev/null +++ b/public/images/cliparts/bata-sole-4-5aed45b31fed2.svg @@ -0,0 +1,109 @@ + + + + + + diff --git a/public/images/cliparts/bata-sole-5-5aed45b696526.svg b/public/images/cliparts/bata-sole-5-5aed45b696526.svg new file mode 100644 index 0000000..7ec13d2 --- /dev/null +++ b/public/images/cliparts/bata-sole-5-5aed45b696526.svg @@ -0,0 +1,173 @@ + + + + + + diff --git a/public/images/cliparts/bilog-5bbf55807b580.svg b/public/images/cliparts/bilog-5bbf55807b580.svg new file mode 100644 index 0000000..e9b2bb1 --- /dev/null +++ b/public/images/cliparts/bilog-5bbf55807b580.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/bulls-01-5be158e31607a.svg b/public/images/cliparts/bulls-01-5be158e31607a.svg new file mode 100644 index 0000000..86563f6 --- /dev/null +++ b/public/images/cliparts/bulls-01-5be158e31607a.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/bulls-new-5981688ad01b9.svg b/public/images/cliparts/bulls-new-5981688ad01b9.svg new file mode 100644 index 0000000..574d325 --- /dev/null +++ b/public/images/cliparts/bulls-new-5981688ad01b9.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + diff --git a/public/images/cliparts/bulls-new-5982182b538e0.svg b/public/images/cliparts/bulls-new-5982182b538e0.svg new file mode 100644 index 0000000..574d325 --- /dev/null +++ b/public/images/cliparts/bulls-new-5982182b538e0.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + diff --git a/public/images/cliparts/chicago-star-01-5b2e1a33e41f0.svg b/public/images/cliparts/chicago-star-01-5b2e1a33e41f0.svg new file mode 100644 index 0000000..fbea06e --- /dev/null +++ b/public/images/cliparts/chicago-star-01-5b2e1a33e41f0.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/public/images/cliparts/circle-5ac722c50e275.svg b/public/images/cliparts/circle-5ac722c50e275.svg new file mode 100644 index 0000000..57072f0 --- /dev/null +++ b/public/images/cliparts/circle-5ac722c50e275.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/public/images/cliparts/courage-5ac477df99136.svg b/public/images/cliparts/courage-5ac477df99136.svg new file mode 100644 index 0000000..a339ade --- /dev/null +++ b/public/images/cliparts/courage-5ac477df99136.svg @@ -0,0 +1,583 @@ + + + + + + + diff --git a/public/images/cliparts/demons-01-5bed2ff602554.svg b/public/images/cliparts/demons-01-5bed2ff602554.svg new file mode 100644 index 0000000..3304fb2 --- /dev/null +++ b/public/images/cliparts/demons-01-5bed2ff602554.svg @@ -0,0 +1,16 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + + + diff --git a/public/images/cliparts/demons-01-5bee5b664b54d.svg b/public/images/cliparts/demons-01-5bee5b664b54d.svg new file mode 100644 index 0000000..7684911 --- /dev/null +++ b/public/images/cliparts/demons-01-5bee5b664b54d.svg @@ -0,0 +1,16 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + + + diff --git a/public/images/cliparts/diamond-01-5afd3662bb3a1.svg b/public/images/cliparts/diamond-01-5afd3662bb3a1.svg new file mode 100644 index 0000000..aeb8f0f --- /dev/null +++ b/public/images/cliparts/diamond-01-5afd3662bb3a1.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/public/images/cliparts/dragon-logo-01-5aed22928b6db.svg b/public/images/cliparts/dragon-logo-01-5aed22928b6db.svg new file mode 100644 index 0000000..41d47ff --- /dev/null +++ b/public/images/cliparts/dragon-logo-01-5aed22928b6db.svg @@ -0,0 +1,93 @@ + + + + + + + diff --git a/public/images/cliparts/dragons-01-5aebdbb80740a.svg b/public/images/cliparts/dragons-01-5aebdbb80740a.svg new file mode 100644 index 0000000..46b4554 --- /dev/null +++ b/public/images/cliparts/dragons-01-5aebdbb80740a.svg @@ -0,0 +1,164 @@ + + + + + + + diff --git a/public/images/cliparts/ggt-clip-art-01-5ca3446df1fca.svg b/public/images/cliparts/ggt-clip-art-01-5ca3446df1fca.svg new file mode 100644 index 0000000..e0d93ff --- /dev/null +++ b/public/images/cliparts/ggt-clip-art-01-5ca3446df1fca.svg @@ -0,0 +1,10 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + diff --git a/public/images/cliparts/ggt-clip-art-2-01-5ca367456193c.svg b/public/images/cliparts/ggt-clip-art-2-01-5ca367456193c.svg new file mode 100644 index 0000000..c298b77 --- /dev/null +++ b/public/images/cliparts/ggt-clip-art-2-01-5ca367456193c.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/ggt-clip-art-3-01-5ca36737a3d4d.svg b/public/images/cliparts/ggt-clip-art-3-01-5ca36737a3d4d.svg new file mode 100644 index 0000000..6939147 --- /dev/null +++ b/public/images/cliparts/ggt-clip-art-3-01-5ca36737a3d4d.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/hands-5ac482921c991.svg b/public/images/cliparts/hands-5ac482921c991.svg new file mode 100644 index 0000000..4ff5260 --- /dev/null +++ b/public/images/cliparts/hands-5ac482921c991.svg @@ -0,0 +1,164 @@ + + + + + + diff --git a/public/images/cliparts/handswith3-5ac4828cd7839.svg b/public/images/cliparts/handswith3-5ac4828cd7839.svg new file mode 100644 index 0000000..141a843 --- /dev/null +++ b/public/images/cliparts/handswith3-5ac4828cd7839.svg @@ -0,0 +1,174 @@ + + + + + + + diff --git a/public/images/cliparts/hersey-logo1-01-5c81181a7e7b8.svg b/public/images/cliparts/hersey-logo1-01-5c81181a7e7b8.svg new file mode 100644 index 0000000..006ef84 --- /dev/null +++ b/public/images/cliparts/hersey-logo1-01-5c81181a7e7b8.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/hersey-logo2-01-5c81182035793.svg b/public/images/cliparts/hersey-logo2-01-5c81182035793.svg new file mode 100644 index 0000000..c87dcf0 --- /dev/null +++ b/public/images/cliparts/hersey-logo2-01-5c81182035793.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/hersey-logo3-01-5c811828bed19.svg b/public/images/cliparts/hersey-logo3-01-5c811828bed19.svg new file mode 100644 index 0000000..895d145 --- /dev/null +++ b/public/images/cliparts/hersey-logo3-01-5c811828bed19.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/hersey-logo4-01-5c839d097f904.svg b/public/images/cliparts/hersey-logo4-01-5c839d097f904.svg new file mode 100644 index 0000000..c1b2b1e --- /dev/null +++ b/public/images/cliparts/hersey-logo4-01-5c839d097f904.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/hersey-logo5-01-5c839d13f2411.svg b/public/images/cliparts/hersey-logo5-01-5c839d13f2411.svg new file mode 100644 index 0000000..a24f6e4 --- /dev/null +++ b/public/images/cliparts/hersey-logo5-01-5c839d13f2411.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/hersey-logo6-01-5c839d1d9ce8a.svg b/public/images/cliparts/hersey-logo6-01-5c839d1d9ce8a.svg new file mode 100644 index 0000000..e8cfad3 --- /dev/null +++ b/public/images/cliparts/hersey-logo6-01-5c839d1d9ce8a.svg @@ -0,0 +1,14 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + diff --git a/public/images/cliparts/hersey-logo7-01-5c839d38d7a9f.svg b/public/images/cliparts/hersey-logo7-01-5c839d38d7a9f.svg new file mode 100644 index 0000000..ad957cb --- /dev/null +++ b/public/images/cliparts/hersey-logo7-01-5c839d38d7a9f.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/hersey-logo8-01-5c839d410aca2.svg b/public/images/cliparts/hersey-logo8-01-5c839d410aca2.svg new file mode 100644 index 0000000..8231329 --- /dev/null +++ b/public/images/cliparts/hersey-logo8-01-5c839d410aca2.svg @@ -0,0 +1,10 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + diff --git a/public/images/cliparts/hi-five-logo-01-5af14278de555.svg b/public/images/cliparts/hi-five-logo-01-5af14278de555.svg new file mode 100644 index 0000000..e8d085e --- /dev/null +++ b/public/images/cliparts/hi-five-logo-01-5af14278de555.svg @@ -0,0 +1,342 @@ + + + + + + + + + + + diff --git a/public/images/cliparts/hi-five-logo-2-01-5af14333a33d0.svg b/public/images/cliparts/hi-five-logo-2-01-5af14333a33d0.svg new file mode 100644 index 0000000..3255828 --- /dev/null +++ b/public/images/cliparts/hi-five-logo-2-01-5af14333a33d0.svg @@ -0,0 +1,47 @@ + + + + + + + diff --git a/public/images/cliparts/hi-five-logo-5af15e45c6f80.svg b/public/images/cliparts/hi-five-logo-5af15e45c6f80.svg new file mode 100644 index 0000000..4e30508 --- /dev/null +++ b/public/images/cliparts/hi-five-logo-5af15e45c6f80.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + diff --git a/public/images/cliparts/ice-logo-1-01-5bf6b65379383.svg b/public/images/cliparts/ice-logo-1-01-5bf6b65379383.svg new file mode 100644 index 0000000..d3945ac --- /dev/null +++ b/public/images/cliparts/ice-logo-1-01-5bf6b65379383.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/ice-logo-2-01-5bf6b6bbc6f02.svg b/public/images/cliparts/ice-logo-2-01-5bf6b6bbc6f02.svg new file mode 100644 index 0000000..3b3a61f --- /dev/null +++ b/public/images/cliparts/ice-logo-2-01-5bf6b6bbc6f02.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/ice-logo-3-01-5bf6b7240e004.svg b/public/images/cliparts/ice-logo-3-01-5bf6b7240e004.svg new file mode 100644 index 0000000..16d30f4 --- /dev/null +++ b/public/images/cliparts/ice-logo-3-01-5bf6b7240e004.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/ice-logo-4-01-5bf6b777dd4c9.svg b/public/images/cliparts/ice-logo-4-01-5bf6b777dd4c9.svg new file mode 100644 index 0000000..ee3d827 --- /dev/null +++ b/public/images/cliparts/ice-logo-4-01-5bf6b777dd4c9.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/ice-logo-5-01-5bf6b7c95b1f0.svg b/public/images/cliparts/ice-logo-5-01-5bf6b7c95b1f0.svg new file mode 100644 index 0000000..af9a100 --- /dev/null +++ b/public/images/cliparts/ice-logo-5-01-5bf6b7c95b1f0.svg @@ -0,0 +1,14 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + diff --git a/public/images/cliparts/ice-logo-6-01-5bf6b8079fa2d.svg b/public/images/cliparts/ice-logo-6-01-5bf6b8079fa2d.svg new file mode 100644 index 0000000..3881c7d --- /dev/null +++ b/public/images/cliparts/ice-logo-6-01-5bf6b8079fa2d.svg @@ -0,0 +1,14 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + diff --git a/public/images/cliparts/ice-logo-7-01-5bf6b88ba2f49.svg b/public/images/cliparts/ice-logo-7-01-5bf6b88ba2f49.svg new file mode 100644 index 0000000..54a61f1 --- /dev/null +++ b/public/images/cliparts/ice-logo-7-01-5bf6b88ba2f49.svg @@ -0,0 +1,15 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + + + diff --git a/public/images/cliparts/impact-logo-01-5c66c2d979451.svg b/public/images/cliparts/impact-logo-01-5c66c2d979451.svg new file mode 100644 index 0000000..a9d7c34 --- /dev/null +++ b/public/images/cliparts/impact-logo-01-5c66c2d979451.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/impacto-01-5c66c1dc5b8b5.svg b/public/images/cliparts/impacto-01-5c66c1dc5b8b5.svg new file mode 100644 index 0000000..8ee0473 --- /dev/null +++ b/public/images/cliparts/impacto-01-5c66c1dc5b8b5.svg @@ -0,0 +1,10 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + diff --git a/public/images/cliparts/logo-01-5c7f800d7a388.svg b/public/images/cliparts/logo-01-5c7f800d7a388.svg new file mode 100644 index 0000000..de3300a --- /dev/null +++ b/public/images/cliparts/logo-01-5c7f800d7a388.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/logo-rev-01-5b0fb92366a9a.svg b/public/images/cliparts/logo-rev-01-5b0fb92366a9a.svg new file mode 100644 index 0000000..7c82d01 --- /dev/null +++ b/public/images/cliparts/logo-rev-01-5b0fb92366a9a.svg @@ -0,0 +1,21 @@ + + + + + + diff --git a/public/images/cliparts/logo1-01-5b0d2ae468f2f.svg b/public/images/cliparts/logo1-01-5b0d2ae468f2f.svg new file mode 100644 index 0000000..9e4a1c2 --- /dev/null +++ b/public/images/cliparts/logo1-01-5b0d2ae468f2f.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/public/images/cliparts/logo2-01-5b0d2af3bcfeb.svg b/public/images/cliparts/logo2-01-5b0d2af3bcfeb.svg new file mode 100644 index 0000000..fec09e9 --- /dev/null +++ b/public/images/cliparts/logo2-01-5b0d2af3bcfeb.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/public/images/cliparts/logo2-01-5c7f8017e1af5.svg b/public/images/cliparts/logo2-01-5c7f8017e1af5.svg new file mode 100644 index 0000000..df649df --- /dev/null +++ b/public/images/cliparts/logo2-01-5c7f8017e1af5.svg @@ -0,0 +1,13 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + + diff --git a/public/images/cliparts/logo3-01-5b0d2b1c76c17.svg b/public/images/cliparts/logo3-01-5b0d2b1c76c17.svg new file mode 100644 index 0000000..e4426e7 --- /dev/null +++ b/public/images/cliparts/logo3-01-5b0d2b1c76c17.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/public/images/cliparts/logo4-01-5b0d2b323edf8.svg b/public/images/cliparts/logo4-01-5b0d2b323edf8.svg new file mode 100644 index 0000000..4824185 --- /dev/null +++ b/public/images/cliparts/logo4-01-5b0d2b323edf8.svg @@ -0,0 +1,36 @@ + + + + + + + diff --git a/public/images/cliparts/logo5-01-5b0d2b480e912.svg b/public/images/cliparts/logo5-01-5b0d2b480e912.svg new file mode 100644 index 0000000..ea8e842 --- /dev/null +++ b/public/images/cliparts/logo5-01-5b0d2b480e912.svg @@ -0,0 +1,36 @@ + + + + + + + diff --git a/public/images/cliparts/logo6-01-5b0d2b5b2711b.svg b/public/images/cliparts/logo6-01-5b0d2b5b2711b.svg new file mode 100644 index 0000000..11ed7a9 --- /dev/null +++ b/public/images/cliparts/logo6-01-5b0d2b5b2711b.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/public/images/cliparts/logo7-01-5b0d2b68a532d.svg b/public/images/cliparts/logo7-01-5b0d2b68a532d.svg new file mode 100644 index 0000000..9868217 --- /dev/null +++ b/public/images/cliparts/logo7-01-5b0d2b68a532d.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/public/images/cliparts/logo8-01-5b0d2b83b3887.svg b/public/images/cliparts/logo8-01-5b0d2b83b3887.svg new file mode 100644 index 0000000..16c9c66 --- /dev/null +++ b/public/images/cliparts/logo8-01-5b0d2b83b3887.svg @@ -0,0 +1,20 @@ + + + + + + + diff --git a/public/images/cliparts/logo9-01-5b0d2b90aab6b.svg b/public/images/cliparts/logo9-01-5b0d2b90aab6b.svg new file mode 100644 index 0000000..ef37f67 --- /dev/null +++ b/public/images/cliparts/logo9-01-5b0d2b90aab6b.svg @@ -0,0 +1,20 @@ + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbef57abd7d3..svg b/public/images/cliparts/mario-01-5bbef57abd7d3..svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbef57abd7d3..svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbef7be1a180..svg b/public/images/cliparts/mario-01-5bbef7be1a180..svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbef7be1a180..svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf094f24f27..svg b/public/images/cliparts/mario-01-5bbf094f24f27..svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf094f24f27..svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf0b1e5184c..svg b/public/images/cliparts/mario-01-5bbf0b1e5184c..svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf0b1e5184c..svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf0b6b6e80b..svg b/public/images/cliparts/mario-01-5bbf0b6b6e80b..svg new file mode 100644 index 0000000..e7233d2 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf0b6b6e80b..svg @@ -0,0 +1,113 @@ + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf0d284e16a.svg b/public/images/cliparts/mario-01-5bbf0d284e16a.svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf0d284e16a.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf0e0e3c367.svg b/public/images/cliparts/mario-01-5bbf0e0e3c367.svg new file mode 100644 index 0000000..fde7cb0 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf0e0e3c367.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf0ecc9754c.svg b/public/images/cliparts/mario-01-5bbf0ecc9754c.svg new file mode 100644 index 0000000..00a9619 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf0ecc9754c.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf0f2054771.svg b/public/images/cliparts/mario-01-5bbf0f2054771.svg new file mode 100644 index 0000000..b99d34f --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf0f2054771.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf118f71ef6.svg b/public/images/cliparts/mario-01-5bbf118f71ef6.svg new file mode 100644 index 0000000..c75778d --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf118f71ef6.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf11a03507d.svg b/public/images/cliparts/mario-01-5bbf11a03507d.svg new file mode 100644 index 0000000..d3a5d7d --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf11a03507d.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf126376817.svg b/public/images/cliparts/mario-01-5bbf126376817.svg new file mode 100644 index 0000000..460d1c2 --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf126376817.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf17b173544.svg b/public/images/cliparts/mario-01-5bbf17b173544.svg new file mode 100644 index 0000000..92d8f5c --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf17b173544.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf1844beb63.svg b/public/images/cliparts/mario-01-5bbf1844beb63.svg new file mode 100644 index 0000000..c75778d --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf1844beb63.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf46966d24c.svg b/public/images/cliparts/mario-01-5bbf46966d24c.svg new file mode 100644 index 0000000..c75778d --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf46966d24c.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf46bacec22.svg b/public/images/cliparts/mario-01-5bbf46bacec22.svg new file mode 100644 index 0000000..c75778d --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf46bacec22.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/mario-01-5bbf472e84686.svg b/public/images/cliparts/mario-01-5bbf472e84686.svg new file mode 100644 index 0000000..c75778d --- /dev/null +++ b/public/images/cliparts/mario-01-5bbf472e84686.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/miriam-clipart1-01-5b43399c39f71.svg b/public/images/cliparts/miriam-clipart1-01-5b43399c39f71.svg new file mode 100644 index 0000000..4a7ad3f --- /dev/null +++ b/public/images/cliparts/miriam-clipart1-01-5b43399c39f71.svg @@ -0,0 +1,3619 @@ + + + + + + + + + + + + + + diff --git a/public/images/cliparts/miriam-clipart2-01-5b4339b9ae8f4.svg b/public/images/cliparts/miriam-clipart2-01-5b4339b9ae8f4.svg new file mode 100644 index 0000000..cd51492 --- /dev/null +++ b/public/images/cliparts/miriam-clipart2-01-5b4339b9ae8f4.svg @@ -0,0 +1,2176 @@ + + + + + + + + + diff --git a/public/images/cliparts/newesttree-5bbf4ff00854e.svg b/public/images/cliparts/newesttree-5bbf4ff00854e.svg new file mode 100644 index 0000000..502868c --- /dev/null +++ b/public/images/cliparts/newesttree-5bbf4ff00854e.svg @@ -0,0 +1,12 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + + diff --git a/public/images/cliparts/shell-logo-vector-01-5c3db7c2513e4.svg b/public/images/cliparts/shell-logo-vector-01-5c3db7c2513e4.svg new file mode 100644 index 0000000..38c49d4 --- /dev/null +++ b/public/images/cliparts/shell-logo-vector-01-5c3db7c2513e4.svg @@ -0,0 +1,11 @@ + + + +Created with Fabric.js 1.7.15 + + + + + + + diff --git a/public/images/cliparts/sox-5ac482d90d4c9.svg b/public/images/cliparts/sox-5ac482d90d4c9.svg new file mode 100644 index 0000000..466011f --- /dev/null +++ b/public/images/cliparts/sox-5ac482d90d4c9.svg @@ -0,0 +1,104 @@ + + + + + + + diff --git a/public/images/cliparts/square-5ac722aaafb0e.svg b/public/images/cliparts/square-5ac722aaafb0e.svg new file mode 100644 index 0000000..d028d36 --- /dev/null +++ b/public/images/cliparts/square-5ac722aaafb0e.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/public/images/cliparts/star-(2)-5ac769366b017.svg b/public/images/cliparts/star-(2)-5ac769366b017.svg new file mode 100644 index 0000000..9e6712f --- /dev/null +++ b/public/images/cliparts/star-(2)-5ac769366b017.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/public/images/cliparts/triangle-5afd326170dfc.svg b/public/images/cliparts/triangle-5afd326170dfc.svg new file mode 100644 index 0000000..addd957 --- /dev/null +++ b/public/images/cliparts/triangle-5afd326170dfc.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/public/images/icon.png b/public/images/icon.png new file mode 100644 index 0000000..ecac94a Binary files /dev/null and b/public/images/icon.png differ diff --git a/public/images/patterns/3DGeomectricPattern.png b/public/images/patterns/3DGeomectricPattern.png new file mode 100644 index 0000000..4cdd5e6 Binary files /dev/null and b/public/images/patterns/3DGeomectricPattern.png differ diff --git a/public/images/patterns/SVG/3DGeomectricPattern.svg b/public/images/patterns/SVG/3DGeomectricPattern.svg new file mode 100644 index 0000000..a768707 --- /dev/null +++ b/public/images/patterns/SVG/3DGeomectricPattern.svg @@ -0,0 +1,718 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/3DGeomectricPattern.svg b/public/images/patterns/SVG/Actual/3DGeomectricPattern.svg new file mode 100644 index 0000000..630b0c4 --- /dev/null +++ b/public/images/patterns/SVG/Actual/3DGeomectricPattern.svg @@ -0,0 +1,498 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/atqcPattern.svg b/public/images/patterns/SVG/Actual/atqcPattern.svg new file mode 100644 index 0000000..85afa02 --- /dev/null +++ b/public/images/patterns/SVG/Actual/atqcPattern.svg @@ -0,0 +1,568 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/Actual/bape.svg b/public/images/patterns/SVG/Actual/bape.svg new file mode 100644 index 0000000..ad7294c --- /dev/null +++ b/public/images/patterns/SVG/Actual/bape.svg @@ -0,0 +1,3675 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/Actual/desertPattern.svg b/public/images/patterns/SVG/Actual/desertPattern.svg new file mode 100644 index 0000000..711df57 --- /dev/null +++ b/public/images/patterns/SVG/Actual/desertPattern.svg @@ -0,0 +1,1829 @@ + + + + + + + + + diff --git a/public/images/patterns/SVG/Actual/digitalPattern.svg b/public/images/patterns/SVG/Actual/digitalPattern.svg new file mode 100644 index 0000000..ce97108 --- /dev/null +++ b/public/images/patterns/SVG/Actual/digitalPattern.svg @@ -0,0 +1,1029 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/Actual/dots.svg b/public/images/patterns/SVG/Actual/dots.svg new file mode 100644 index 0000000..c81ffe5 --- /dev/null +++ b/public/images/patterns/SVG/Actual/dots.svg @@ -0,0 +1,1074 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/elephant.svg b/public/images/patterns/SVG/Actual/elephant.svg new file mode 100644 index 0000000..05f5d7a --- /dev/null +++ b/public/images/patterns/SVG/Actual/elephant.svg @@ -0,0 +1,52299 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/hifive.svg b/public/images/patterns/SVG/Actual/hifive.svg new file mode 100644 index 0000000..a63000a --- /dev/null +++ b/public/images/patterns/SVG/Actual/hifive.svg @@ -0,0 +1,57675 @@ + + + + + + + diff --git a/public/images/patterns/SVG/Actual/honeyCombPattern.svg b/public/images/patterns/SVG/Actual/honeyCombPattern.svg new file mode 100644 index 0000000..6c1a75b --- /dev/null +++ b/public/images/patterns/SVG/Actual/honeyCombPattern.svg @@ -0,0 +1,472 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/lumberJackPattern.svg b/public/images/patterns/SVG/Actual/lumberJackPattern.svg new file mode 100644 index 0000000..3868ffa --- /dev/null +++ b/public/images/patterns/SVG/Actual/lumberJackPattern.svg @@ -0,0 +1,513 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/propellersPattern.svg b/public/images/patterns/SVG/Actual/propellersPattern.svg new file mode 100644 index 0000000..8604fad --- /dev/null +++ b/public/images/patterns/SVG/Actual/propellersPattern.svg @@ -0,0 +1,3690 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/stormPattern.svg b/public/images/patterns/SVG/Actual/stormPattern.svg new file mode 100644 index 0000000..ce3b974 --- /dev/null +++ b/public/images/patterns/SVG/Actual/stormPattern.svg @@ -0,0 +1,1141 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/swirlPattern.svg b/public/images/patterns/SVG/Actual/swirlPattern.svg new file mode 100644 index 0000000..7996ec4 --- /dev/null +++ b/public/images/patterns/SVG/Actual/swirlPattern.svg @@ -0,0 +1,6582 @@ + + + + + + diff --git a/public/images/patterns/SVG/Actual/swords.svg b/public/images/patterns/SVG/Actual/swords.svg new file mode 100644 index 0000000..eea80dc --- /dev/null +++ b/public/images/patterns/SVG/Actual/swords.svg @@ -0,0 +1,37805 @@ + + + + + + + diff --git a/public/images/patterns/SVG/Actual/triArrowPattern.svg b/public/images/patterns/SVG/Actual/triArrowPattern.svg new file mode 100644 index 0000000..a4b1b75 --- /dev/null +++ b/public/images/patterns/SVG/Actual/triArrowPattern.svg @@ -0,0 +1,281 @@ + + + + + + diff --git a/public/images/patterns/SVG/atqcPattern.svg b/public/images/patterns/SVG/atqcPattern.svg new file mode 100644 index 0000000..cd8bb85 --- /dev/null +++ b/public/images/patterns/SVG/atqcPattern.svg @@ -0,0 +1,757 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/bape.svg b/public/images/patterns/SVG/bape.svg new file mode 100644 index 0000000..a434288 --- /dev/null +++ b/public/images/patterns/SVG/bape.svg @@ -0,0 +1,3439 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/desertPattern.svg b/public/images/patterns/SVG/desertPattern.svg new file mode 100644 index 0000000..77dd4da --- /dev/null +++ b/public/images/patterns/SVG/desertPattern.svg @@ -0,0 +1,2823 @@ + + + + + + + + + diff --git a/public/images/patterns/SVG/digitalPattern.svg b/public/images/patterns/SVG/digitalPattern.svg new file mode 100644 index 0000000..7566961 --- /dev/null +++ b/public/images/patterns/SVG/digitalPattern.svg @@ -0,0 +1,1467 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/digitalPattern1.svg b/public/images/patterns/SVG/digitalPattern1.svg new file mode 100644 index 0000000..3187ed4 --- /dev/null +++ b/public/images/patterns/SVG/digitalPattern1.svg @@ -0,0 +1,1011 @@ + + + + + + + + diff --git a/public/images/patterns/SVG/dots.svg b/public/images/patterns/SVG/dots.svg new file mode 100644 index 0000000..3125b39 --- /dev/null +++ b/public/images/patterns/SVG/dots.svg @@ -0,0 +1,910 @@ + + + + + + diff --git a/public/images/patterns/SVG/elephant.svg b/public/images/patterns/SVG/elephant.svg new file mode 100644 index 0000000..83d01d8 --- /dev/null +++ b/public/images/patterns/SVG/elephant.svg @@ -0,0 +1,51896 @@ + + + + + + diff --git a/public/images/patterns/SVG/full-image-pattern.svg b/public/images/patterns/SVG/full-image-pattern.svg new file mode 100644 index 0000000..b1059a7 --- /dev/null +++ b/public/images/patterns/SVG/full-image-pattern.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/public/images/patterns/SVG/hifive.svg b/public/images/patterns/SVG/hifive.svg new file mode 100644 index 0000000..7caef03 --- /dev/null +++ b/public/images/patterns/SVG/hifive.svg @@ -0,0 +1,32782 @@ + + + + + + + diff --git a/public/images/patterns/SVG/honeyCombPattern.svg b/public/images/patterns/SVG/honeyCombPattern.svg new file mode 100644 index 0000000..79d9d8e --- /dev/null +++ b/public/images/patterns/SVG/honeyCombPattern.svg @@ -0,0 +1,666 @@ + + + + + + diff --git a/public/images/patterns/SVG/image.svg b/public/images/patterns/SVG/image.svg new file mode 100644 index 0000000..93fca3e --- /dev/null +++ b/public/images/patterns/SVG/image.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/public/images/patterns/SVG/image1.svg b/public/images/patterns/SVG/image1.svg new file mode 100644 index 0000000..f13655a --- /dev/null +++ b/public/images/patterns/SVG/image1.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/public/images/patterns/SVG/lumberJackPattern.svg b/public/images/patterns/SVG/lumberJackPattern.svg new file mode 100644 index 0000000..dfca6b9 --- /dev/null +++ b/public/images/patterns/SVG/lumberJackPattern.svg @@ -0,0 +1,742 @@ + + + + + + diff --git a/public/images/patterns/SVG/pattern-image-1-back.svg b/public/images/patterns/SVG/pattern-image-1-back.svg new file mode 100644 index 0000000..e597a8e --- /dev/null +++ b/public/images/patterns/SVG/pattern-image-1-back.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/public/images/patterns/SVG/pattern-image-1.svg b/public/images/patterns/SVG/pattern-image-1.svg new file mode 100644 index 0000000..28de38b --- /dev/null +++ b/public/images/patterns/SVG/pattern-image-1.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/public/images/patterns/SVG/pattern-image-2-back.svg b/public/images/patterns/SVG/pattern-image-2-back.svg new file mode 100644 index 0000000..0cb59e3 --- /dev/null +++ b/public/images/patterns/SVG/pattern-image-2-back.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/public/images/patterns/SVG/pattern-image-2.svg b/public/images/patterns/SVG/pattern-image-2.svg new file mode 100644 index 0000000..f954be6 --- /dev/null +++ b/public/images/patterns/SVG/pattern-image-2.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/public/images/patterns/SVG/pattern-image-3-back.svg b/public/images/patterns/SVG/pattern-image-3-back.svg new file mode 100644 index 0000000..3617575 --- /dev/null +++ b/public/images/patterns/SVG/pattern-image-3-back.svg @@ -0,0 +1,8 @@ + + + + + + + diff --git a/public/images/patterns/SVG/pattern-image-3.svg b/public/images/patterns/SVG/pattern-image-3.svg new file mode 100644 index 0000000..696ac9c --- /dev/null +++ b/public/images/patterns/SVG/pattern-image-3.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/public/images/patterns/SVG/propellersPattern.svg b/public/images/patterns/SVG/propellersPattern.svg new file mode 100644 index 0000000..d2b46a6 --- /dev/null +++ b/public/images/patterns/SVG/propellersPattern.svg @@ -0,0 +1,5872 @@ + + + + + + diff --git a/public/images/patterns/SVG/stormPattern.svg b/public/images/patterns/SVG/stormPattern.svg new file mode 100644 index 0000000..f5dbdd3 --- /dev/null +++ b/public/images/patterns/SVG/stormPattern.svg @@ -0,0 +1,1734 @@ + + + + + + diff --git a/public/images/patterns/SVG/swirlPattern.svg b/public/images/patterns/SVG/swirlPattern.svg new file mode 100644 index 0000000..033fb4d --- /dev/null +++ b/public/images/patterns/SVG/swirlPattern.svg @@ -0,0 +1,10253 @@ + + + + + + diff --git a/public/images/patterns/SVG/swords.svg b/public/images/patterns/SVG/swords.svg new file mode 100644 index 0000000..56af035 --- /dev/null +++ b/public/images/patterns/SVG/swords.svg @@ -0,0 +1,32875 @@ + + + + + + + diff --git a/public/images/patterns/SVG/triArrowPattern.svg b/public/images/patterns/SVG/triArrowPattern.svg new file mode 100644 index 0000000..2fb8f13 --- /dev/null +++ b/public/images/patterns/SVG/triArrowPattern.svg @@ -0,0 +1,389 @@ + + + + + + diff --git a/public/images/patterns/atqcPattern.png b/public/images/patterns/atqcPattern.png new file mode 100644 index 0000000..93beaef Binary files /dev/null and b/public/images/patterns/atqcPattern.png differ diff --git a/public/images/patterns/bape.png b/public/images/patterns/bape.png new file mode 100644 index 0000000..f8bb6f5 Binary files /dev/null and b/public/images/patterns/bape.png differ diff --git a/public/images/patterns/desertPattern.png b/public/images/patterns/desertPattern.png new file mode 100644 index 0000000..1094308 Binary files /dev/null and b/public/images/patterns/desertPattern.png differ diff --git a/public/images/patterns/digital.png b/public/images/patterns/digital.png new file mode 100644 index 0000000..501c960 Binary files /dev/null and b/public/images/patterns/digital.png differ diff --git a/public/images/patterns/digital1.png b/public/images/patterns/digital1.png new file mode 100644 index 0000000..f116258 Binary files /dev/null and b/public/images/patterns/digital1.png differ diff --git a/public/images/patterns/dots.png b/public/images/patterns/dots.png new file mode 100644 index 0000000..3685639 Binary files /dev/null and b/public/images/patterns/dots.png differ diff --git a/public/images/patterns/elephant.png b/public/images/patterns/elephant.png new file mode 100644 index 0000000..8aaf572 Binary files /dev/null and b/public/images/patterns/elephant.png differ diff --git a/public/images/patterns/hifive.png b/public/images/patterns/hifive.png new file mode 100644 index 0000000..3aebf8e Binary files /dev/null and b/public/images/patterns/hifive.png differ diff --git a/public/images/patterns/honeyCombPattern.png b/public/images/patterns/honeyCombPattern.png new file mode 100644 index 0000000..0e0da87 Binary files /dev/null and b/public/images/patterns/honeyCombPattern.png differ diff --git a/public/images/patterns/image.png b/public/images/patterns/image.png new file mode 100644 index 0000000..6e9eb3a Binary files /dev/null and b/public/images/patterns/image.png differ diff --git a/public/images/patterns/image1.png b/public/images/patterns/image1.png new file mode 100644 index 0000000..9ce058c Binary files /dev/null and b/public/images/patterns/image1.png differ diff --git a/public/images/patterns/image2.png b/public/images/patterns/image2.png new file mode 100644 index 0000000..b4fe771 Binary files /dev/null and b/public/images/patterns/image2.png differ diff --git a/public/images/patterns/image3.png b/public/images/patterns/image3.png new file mode 100644 index 0000000..7a6b08e Binary files /dev/null and b/public/images/patterns/image3.png differ diff --git a/public/images/patterns/lumberJackPattern.png b/public/images/patterns/lumberJackPattern.png new file mode 100644 index 0000000..2163afe Binary files /dev/null and b/public/images/patterns/lumberJackPattern.png differ diff --git a/public/images/patterns/none.png b/public/images/patterns/none.png new file mode 100644 index 0000000..f3d36ab Binary files /dev/null and b/public/images/patterns/none.png differ diff --git a/public/images/patterns/propellersPattern.png b/public/images/patterns/propellersPattern.png new file mode 100644 index 0000000..61cce88 Binary files /dev/null and b/public/images/patterns/propellersPattern.png differ diff --git a/public/images/patterns/stormPattern.png b/public/images/patterns/stormPattern.png new file mode 100644 index 0000000..af56adb Binary files /dev/null and b/public/images/patterns/stormPattern.png differ diff --git a/public/images/patterns/swirlPattern.png b/public/images/patterns/swirlPattern.png new file mode 100644 index 0000000..1a2adc2 Binary files /dev/null and b/public/images/patterns/swirlPattern.png differ diff --git a/public/images/patterns/swords.png b/public/images/patterns/swords.png new file mode 100644 index 0000000..1fda469 Binary files /dev/null and b/public/images/patterns/swords.png differ diff --git a/public/images/patterns/triArrowPattern.png b/public/images/patterns/triArrowPattern.png new file mode 100644 index 0000000..7cfc63b Binary files /dev/null and b/public/images/patterns/triArrowPattern.png differ diff --git a/public/images/sports-category/jersey_shorts.old.JPG b/public/images/sports-category/jersey_shorts.old.JPG new file mode 100644 index 0000000..0dfb8f5 Binary files /dev/null and b/public/images/sports-category/jersey_shorts.old.JPG differ diff --git a/public/images/sports-category/jersey_shorts.old.png b/public/images/sports-category/jersey_shorts.old.png new file mode 100644 index 0000000..5d24d92 Binary files /dev/null and b/public/images/sports-category/jersey_shorts.old.png differ diff --git a/public/images/sports-category/jersey_shorts.png b/public/images/sports-category/jersey_shorts.png new file mode 100644 index 0000000..a4da45e Binary files /dev/null and b/public/images/sports-category/jersey_shorts.png differ diff --git a/public/images/sports-category/tshirts.old.JPG b/public/images/sports-category/tshirts.old.JPG new file mode 100644 index 0000000..b35113b Binary files /dev/null and b/public/images/sports-category/tshirts.old.JPG differ diff --git a/public/images/sports-category/tshirts.old.png b/public/images/sports-category/tshirts.old.png new file mode 100644 index 0000000..88aff8f Binary files /dev/null and b/public/images/sports-category/tshirts.old.png differ diff --git a/public/images/sports-category/tshirts.png b/public/images/sports-category/tshirts.png new file mode 100644 index 0000000..891bca8 Binary files /dev/null and b/public/images/sports-category/tshirts.png differ diff --git a/public/images/sports-thumbnails/20170908-1504866440-20170906-1504693230-20170906-1504691525-basketball.png b/public/images/sports-thumbnails/20170908-1504866440-20170906-1504693230-20170906-1504691525-basketball.png new file mode 100644 index 0000000..a2604e5 Binary files /dev/null and b/public/images/sports-thumbnails/20170908-1504866440-20170906-1504693230-20170906-1504691525-basketball.png differ diff --git a/public/images/sports-thumbnails/20170908-1504866904-20170906-1504678229-baseball.png b/public/images/sports-thumbnails/20170908-1504866904-20170906-1504678229-baseball.png new file mode 100644 index 0000000..5de3dc5 Binary files /dev/null and b/public/images/sports-thumbnails/20170908-1504866904-20170906-1504678229-baseball.png differ diff --git a/public/images/sports-thumbnails/20170911-1505111507-hockey.png b/public/images/sports-thumbnails/20170911-1505111507-hockey.png new file mode 100644 index 0000000..bbb090c Binary files /dev/null and b/public/images/sports-thumbnails/20170911-1505111507-hockey.png differ diff --git a/public/images/sports-thumbnails/20171011-1507711019-hockey.png b/public/images/sports-thumbnails/20171011-1507711019-hockey.png new file mode 100644 index 0000000..bbb090c Binary files /dev/null and b/public/images/sports-thumbnails/20171011-1507711019-hockey.png differ diff --git a/public/images/sports-thumbnails/20171011-1507711050-football.png b/public/images/sports-thumbnails/20171011-1507711050-football.png new file mode 100644 index 0000000..b463f35 Binary files /dev/null and b/public/images/sports-thumbnails/20171011-1507711050-football.png differ diff --git a/public/images/sports-thumbnails/20180122-1516605151-basketball.png b/public/images/sports-thumbnails/20180122-1516605151-basketball.png new file mode 100644 index 0000000..a2604e5 Binary files /dev/null and b/public/images/sports-thumbnails/20180122-1516605151-basketball.png differ diff --git a/public/images/sports-thumbnails/20180123-1516703787-hockey.png b/public/images/sports-thumbnails/20180123-1516703787-hockey.png new file mode 100644 index 0000000..bbb090c Binary files /dev/null and b/public/images/sports-thumbnails/20180123-1516703787-hockey.png differ diff --git a/public/images/sports-thumbnails/20180503-1525328473-basketball.png b/public/images/sports-thumbnails/20180503-1525328473-basketball.png new file mode 100644 index 0000000..e11a968 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525328473-basketball.png differ diff --git a/public/images/sports-thumbnails/20180503-1525328521-volleyball.png b/public/images/sports-thumbnails/20180503-1525328521-volleyball.png new file mode 100644 index 0000000..f8b5d1b Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525328521-volleyball.png differ diff --git a/public/images/sports-thumbnails/20180503-1525328573-football.png b/public/images/sports-thumbnails/20180503-1525328573-football.png new file mode 100644 index 0000000..1a7d7e3 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525328573-football.png differ diff --git a/public/images/sports-thumbnails/20180503-1525329019-basketball-(1).png b/public/images/sports-thumbnails/20180503-1525329019-basketball-(1).png new file mode 100644 index 0000000..1a9b682 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525329019-basketball-(1).png differ diff --git a/public/images/sports-thumbnails/20180503-1525332430-basketball-(2).png b/public/images/sports-thumbnails/20180503-1525332430-basketball-(2).png new file mode 100644 index 0000000..2554a34 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525332430-basketball-(2).png differ diff --git a/public/images/sports-thumbnails/20180503-1525332442-volleyball-(1).png b/public/images/sports-thumbnails/20180503-1525332442-volleyball-(1).png new file mode 100644 index 0000000..9dcebc9 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525332442-volleyball-(1).png differ diff --git a/public/images/sports-thumbnails/20180503-1525332456-football-(1).png b/public/images/sports-thumbnails/20180503-1525332456-football-(1).png new file mode 100644 index 0000000..003dce0 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525332456-football-(1).png differ diff --git a/public/images/sports-thumbnails/20180503-1525332470-soccer.png b/public/images/sports-thumbnails/20180503-1525332470-soccer.png new file mode 100644 index 0000000..005f360 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525332470-soccer.png differ diff --git a/public/images/sports-thumbnails/20180503-1525336010-hockey.png b/public/images/sports-thumbnails/20180503-1525336010-hockey.png new file mode 100644 index 0000000..1c7ab08 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525336010-hockey.png differ diff --git a/public/images/sports-thumbnails/20180503-1525336022-baseball.png b/public/images/sports-thumbnails/20180503-1525336022-baseball.png new file mode 100644 index 0000000..69b8086 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525336022-baseball.png differ diff --git a/public/images/sports-thumbnails/20180503-1525336034-badminton.png b/public/images/sports-thumbnails/20180503-1525336034-badminton.png new file mode 100644 index 0000000..c201e0b Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525336034-badminton.png differ diff --git a/public/images/sports-thumbnails/20180503-1525343604-football-(3).png b/public/images/sports-thumbnails/20180503-1525343604-football-(3).png new file mode 100644 index 0000000..d012c8a Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525343604-football-(3).png differ diff --git a/public/images/sports-thumbnails/20180503-1525343621-bowling.png b/public/images/sports-thumbnails/20180503-1525343621-bowling.png new file mode 100644 index 0000000..4744eb4 Binary files /dev/null and b/public/images/sports-thumbnails/20180503-1525343621-bowling.png differ diff --git a/public/images/sports-thumbnails/20180523-1527076952-basketball.jpg b/public/images/sports-thumbnails/20180523-1527076952-basketball.jpg new file mode 100644 index 0000000..34bc372 Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527076952-basketball.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527076968-volleyball.jpg b/public/images/sports-thumbnails/20180523-1527076968-volleyball.jpg new file mode 100644 index 0000000..231153a Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527076968-volleyball.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527077000-football.jpg b/public/images/sports-thumbnails/20180523-1527077000-football.jpg new file mode 100644 index 0000000..2ae3c52 Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527077000-football.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527077016-soccer.jpg b/public/images/sports-thumbnails/20180523-1527077016-soccer.jpg new file mode 100644 index 0000000..bb6fde0 Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527077016-soccer.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527077029-hockey.jpg b/public/images/sports-thumbnails/20180523-1527077029-hockey.jpg new file mode 100644 index 0000000..61abb01 Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527077029-hockey.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527077046-baseball.jpg b/public/images/sports-thumbnails/20180523-1527077046-baseball.jpg new file mode 100644 index 0000000..bbaa635 Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527077046-baseball.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527077064-badminton.jpg b/public/images/sports-thumbnails/20180523-1527077064-badminton.jpg new file mode 100644 index 0000000..82155cb Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527077064-badminton.jpg differ diff --git a/public/images/sports-thumbnails/20180523-1527077082-bowling.jpg b/public/images/sports-thumbnails/20180523-1527077082-bowling.jpg new file mode 100644 index 0000000..2cd5576 Binary files /dev/null and b/public/images/sports-thumbnails/20180523-1527077082-bowling.jpg differ diff --git a/public/images/sports-thumbnails/20180927-1538040297-basketball.png b/public/images/sports-thumbnails/20180927-1538040297-basketball.png new file mode 100644 index 0000000..6b6390b Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538040297-basketball.png differ diff --git a/public/images/sports-thumbnails/20180927-1538040423-volleyball.png b/public/images/sports-thumbnails/20180927-1538040423-volleyball.png new file mode 100644 index 0000000..aa34946 Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538040423-volleyball.png differ diff --git a/public/images/sports-thumbnails/20180927-1538041278-football.png b/public/images/sports-thumbnails/20180927-1538041278-football.png new file mode 100644 index 0000000..c550879 Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538041278-football.png differ diff --git a/public/images/sports-thumbnails/20180927-1538041302-soccer.png b/public/images/sports-thumbnails/20180927-1538041302-soccer.png new file mode 100644 index 0000000..2ea9476 Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538041302-soccer.png differ diff --git a/public/images/sports-thumbnails/20180927-1538041320-hockey.png b/public/images/sports-thumbnails/20180927-1538041320-hockey.png new file mode 100644 index 0000000..e798ba1 Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538041320-hockey.png differ diff --git a/public/images/sports-thumbnails/20180927-1538041337-baseball.png b/public/images/sports-thumbnails/20180927-1538041337-baseball.png new file mode 100644 index 0000000..ca210b9 Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538041337-baseball.png differ diff --git a/public/images/sports-thumbnails/20180927-1538041354-badminton.png b/public/images/sports-thumbnails/20180927-1538041354-badminton.png new file mode 100644 index 0000000..41eb6be Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538041354-badminton.png differ diff --git a/public/images/sports-thumbnails/20180927-1538041378-bowling.png b/public/images/sports-thumbnails/20180927-1538041378-bowling.png new file mode 100644 index 0000000..54048a3 Binary files /dev/null and b/public/images/sports-thumbnails/20180927-1538041378-bowling.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832181-basketball.png b/public/images/sports-thumbnails/20181203-1543832181-basketball.png new file mode 100644 index 0000000..67e4a3b Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832181-basketball.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832227-volleyball.png b/public/images/sports-thumbnails/20181203-1543832227-volleyball.png new file mode 100644 index 0000000..f9111d7 Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832227-volleyball.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832248-football.png b/public/images/sports-thumbnails/20181203-1543832248-football.png new file mode 100644 index 0000000..e124247 Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832248-football.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832269-soccer.png b/public/images/sports-thumbnails/20181203-1543832269-soccer.png new file mode 100644 index 0000000..f157d6e Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832269-soccer.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832351-baseball.png b/public/images/sports-thumbnails/20181203-1543832351-baseball.png new file mode 100644 index 0000000..7d40bc8 Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832351-baseball.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832368-badminton.png b/public/images/sports-thumbnails/20181203-1543832368-badminton.png new file mode 100644 index 0000000..c4ac1f0 Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832368-badminton.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832387-tennis-1.png b/public/images/sports-thumbnails/20181203-1543832387-tennis-1.png new file mode 100644 index 0000000..57de676 Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832387-tennis-1.png differ diff --git a/public/images/sports-thumbnails/20181203-1543832404-tennis-2.png b/public/images/sports-thumbnails/20181203-1543832404-tennis-2.png new file mode 100644 index 0000000..6083d2b Binary files /dev/null and b/public/images/sports-thumbnails/20181203-1543832404-tennis-2.png differ diff --git a/public/images/sports-thumbnails/20190221-1550745084-basketball.png b/public/images/sports-thumbnails/20190221-1550745084-basketball.png new file mode 100644 index 0000000..92e6746 Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550745084-basketball.png differ diff --git a/public/images/sports-thumbnails/20190221-1550745104-volleyball.png b/public/images/sports-thumbnails/20190221-1550745104-volleyball.png new file mode 100644 index 0000000..4d9ef10 Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550745104-volleyball.png differ diff --git a/public/images/sports-thumbnails/20190221-1550745120-football.png b/public/images/sports-thumbnails/20190221-1550745120-football.png new file mode 100644 index 0000000..70138a0 Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550745120-football.png differ diff --git a/public/images/sports-thumbnails/20190221-1550745134-soccer.png b/public/images/sports-thumbnails/20190221-1550745134-soccer.png new file mode 100644 index 0000000..bf3d3cf Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550745134-soccer.png differ diff --git a/public/images/sports-thumbnails/20190221-1550746849-hockey.png b/public/images/sports-thumbnails/20190221-1550746849-hockey.png new file mode 100644 index 0000000..db36765 Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550746849-hockey.png differ diff --git a/public/images/sports-thumbnails/20190221-1550746867-baseball.png b/public/images/sports-thumbnails/20190221-1550746867-baseball.png new file mode 100644 index 0000000..3e58819 Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550746867-baseball.png differ diff --git a/public/images/sports-thumbnails/20190221-1550746891-badminton.png b/public/images/sports-thumbnails/20190221-1550746891-badminton.png new file mode 100644 index 0000000..e74aefe Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550746891-badminton.png differ diff --git a/public/images/sports-thumbnails/20190221-1550746910-bowling.png b/public/images/sports-thumbnails/20190221-1550746910-bowling.png new file mode 100644 index 0000000..e8cf1b8 Binary files /dev/null and b/public/images/sports-thumbnails/20190221-1550746910-bowling.png differ diff --git a/public/images/teamstore/agb/banner.png b/public/images/teamstore/agb/banner.png new file mode 100644 index 0000000..9e4ec22 Binary files /dev/null and b/public/images/teamstore/agb/banner.png differ diff --git a/public/images/teamstore/agb/logo.png b/public/images/teamstore/agb/logo.png new file mode 100644 index 0000000..82333df Binary files /dev/null and b/public/images/teamstore/agb/logo.png differ diff --git a/public/images/teamstore/b-and-b-elite/banner.png b/public/images/teamstore/b-and-b-elite/banner.png new file mode 100644 index 0000000..759ca19 Binary files /dev/null and b/public/images/teamstore/b-and-b-elite/banner.png differ diff --git a/public/images/teamstore/b-and-b-elite/logo.png b/public/images/teamstore/b-and-b-elite/logo.png new file mode 100644 index 0000000..16fec50 Binary files /dev/null and b/public/images/teamstore/b-and-b-elite/logo.png differ diff --git a/public/images/teamstore/batasole/banner.png b/public/images/teamstore/batasole/banner.png new file mode 100644 index 0000000..9a6ae58 Binary files /dev/null and b/public/images/teamstore/batasole/banner.png differ diff --git a/public/images/teamstore/batasole/logo.png b/public/images/teamstore/batasole/logo.png new file mode 100644 index 0000000..fb9d5ab Binary files /dev/null and b/public/images/teamstore/batasole/logo.png differ diff --git a/public/images/teamstore/catada-vasquez/banner.png b/public/images/teamstore/catada-vasquez/banner.png new file mode 100644 index 0000000..fc42b0e Binary files /dev/null and b/public/images/teamstore/catada-vasquez/banner.png differ diff --git a/public/images/teamstore/catada-vasquez/logo.png b/public/images/teamstore/catada-vasquez/logo.png new file mode 100644 index 0000000..4683b68 Binary files /dev/null and b/public/images/teamstore/catada-vasquez/logo.png differ diff --git a/public/images/teamstore/centurions/banner.png b/public/images/teamstore/centurions/banner.png new file mode 100644 index 0000000..de6ad5d Binary files /dev/null and b/public/images/teamstore/centurions/banner.png differ diff --git a/public/images/teamstore/centurions/logo.png b/public/images/teamstore/centurions/logo.png new file mode 100644 index 0000000..62a99a1 Binary files /dev/null and b/public/images/teamstore/centurions/logo.png differ diff --git a/public/images/teamstore/dtermined/banner.png b/public/images/teamstore/dtermined/banner.png new file mode 100644 index 0000000..3094d2d Binary files /dev/null and b/public/images/teamstore/dtermined/banner.png differ diff --git a/public/images/teamstore/dtermined/logo.png b/public/images/teamstore/dtermined/logo.png new file mode 100644 index 0000000..222914f Binary files /dev/null and b/public/images/teamstore/dtermined/logo.png differ diff --git a/public/images/teamstore/familya-washington-dc/banner.png b/public/images/teamstore/familya-washington-dc/banner.png new file mode 100644 index 0000000..5835422 Binary files /dev/null and b/public/images/teamstore/familya-washington-dc/banner.png differ diff --git a/public/images/teamstore/familya-washington-dc/logo.png b/public/images/teamstore/familya-washington-dc/logo.png new file mode 100644 index 0000000..96fdeb8 Binary files /dev/null and b/public/images/teamstore/familya-washington-dc/logo.png differ diff --git a/public/images/teamstore/gbn-spartans/products/sample-img1.png b/public/images/teamstore/gbn-spartans/products/sample-img1.png new file mode 100644 index 0000000..50ffbe5 Binary files /dev/null and b/public/images/teamstore/gbn-spartans/products/sample-img1.png differ diff --git a/public/images/teamstore/gbn-spartans/products/sample-img2.png b/public/images/teamstore/gbn-spartans/products/sample-img2.png new file mode 100644 index 0000000..87acfe3 Binary files /dev/null and b/public/images/teamstore/gbn-spartans/products/sample-img2.png differ diff --git a/public/images/teamstore/gbn-spartans/products/sample-img3.png b/public/images/teamstore/gbn-spartans/products/sample-img3.png new file mode 100644 index 0000000..90f486b Binary files /dev/null and b/public/images/teamstore/gbn-spartans/products/sample-img3.png differ diff --git a/public/images/teamstore/gbn-spartans/products/sample-img4.png b/public/images/teamstore/gbn-spartans/products/sample-img4.png new file mode 100644 index 0000000..3959356 Binary files /dev/null and b/public/images/teamstore/gbn-spartans/products/sample-img4.png differ diff --git a/public/images/teamstore/gbn-spartans/products/sample-img5.png b/public/images/teamstore/gbn-spartans/products/sample-img5.png new file mode 100644 index 0000000..ff4100c Binary files /dev/null and b/public/images/teamstore/gbn-spartans/products/sample-img5.png differ diff --git a/public/images/teamstore/ggt/banner.png b/public/images/teamstore/ggt/banner.png new file mode 100644 index 0000000..4b438ed Binary files /dev/null and b/public/images/teamstore/ggt/banner.png differ diff --git a/public/images/teamstore/ggt/logo.png b/public/images/teamstore/ggt/logo.png new file mode 100644 index 0000000..872d221 Binary files /dev/null and b/public/images/teamstore/ggt/logo.png differ diff --git a/public/images/teamstore/gurnee-demons/logo.png b/public/images/teamstore/gurnee-demons/logo.png new file mode 100644 index 0000000..dd455b5 Binary files /dev/null and b/public/images/teamstore/gurnee-demons/logo.png differ diff --git a/public/images/teamstore/hifive/logo.png b/public/images/teamstore/hifive/logo.png new file mode 100644 index 0000000..94d9783 Binary files /dev/null and b/public/images/teamstore/hifive/logo.png differ diff --git a/public/images/teamstore/ice/banner.png b/public/images/teamstore/ice/banner.png new file mode 100644 index 0000000..678665d Binary files /dev/null and b/public/images/teamstore/ice/banner.png differ diff --git a/public/images/teamstore/ice/logo.old.png b/public/images/teamstore/ice/logo.old.png new file mode 100644 index 0000000..f43702d Binary files /dev/null and b/public/images/teamstore/ice/logo.old.png differ diff --git a/public/images/teamstore/ice/logo.png b/public/images/teamstore/ice/logo.png new file mode 100644 index 0000000..530f984 Binary files /dev/null and b/public/images/teamstore/ice/logo.png differ diff --git a/public/images/teamstore/john-hersey/banner.png b/public/images/teamstore/john-hersey/banner.png new file mode 100644 index 0000000..5be9ee8 Binary files /dev/null and b/public/images/teamstore/john-hersey/banner.png differ diff --git a/public/images/teamstore/john-hersey/logo.png b/public/images/teamstore/john-hersey/logo.png new file mode 100644 index 0000000..7a16e26 Binary files /dev/null and b/public/images/teamstore/john-hersey/logo.png differ diff --git a/public/images/teamstore/lady-reign/banner.png b/public/images/teamstore/lady-reign/banner.png new file mode 100644 index 0000000..9380acc Binary files /dev/null and b/public/images/teamstore/lady-reign/banner.png differ diff --git a/public/images/teamstore/lady-reign/logo.png b/public/images/teamstore/lady-reign/logo.png new file mode 100644 index 0000000..13d1190 Binary files /dev/null and b/public/images/teamstore/lady-reign/logo.png differ diff --git a/public/images/teamstore/lfg/banner.png b/public/images/teamstore/lfg/banner.png new file mode 100644 index 0000000..fcd094f Binary files /dev/null and b/public/images/teamstore/lfg/banner.png differ diff --git a/public/images/teamstore/lfg/logo.png b/public/images/teamstore/lfg/logo.png new file mode 100644 index 0000000..d3e7ebf Binary files /dev/null and b/public/images/teamstore/lfg/logo.png differ diff --git a/public/images/teamstore/limitless/banner.png b/public/images/teamstore/limitless/banner.png new file mode 100644 index 0000000..9b13efb Binary files /dev/null and b/public/images/teamstore/limitless/banner.png differ diff --git a/public/images/teamstore/limitless/logo.png b/public/images/teamstore/limitless/logo.png new file mode 100644 index 0000000..5c078fd Binary files /dev/null and b/public/images/teamstore/limitless/logo.png differ diff --git a/public/images/teamstore/mac-irvin-fire/banner.png b/public/images/teamstore/mac-irvin-fire/banner.png new file mode 100644 index 0000000..9f6557f Binary files /dev/null and b/public/images/teamstore/mac-irvin-fire/banner.png differ diff --git a/public/images/teamstore/mac-irvin-fire/logo.png b/public/images/teamstore/mac-irvin-fire/logo.png new file mode 100644 index 0000000..70c7974 Binary files /dev/null and b/public/images/teamstore/mac-irvin-fire/logo.png differ diff --git a/public/images/teamstore/nla-angels/banner.png b/public/images/teamstore/nla-angels/banner.png new file mode 100644 index 0000000..35400b9 Binary files /dev/null and b/public/images/teamstore/nla-angels/banner.png differ diff --git a/public/images/teamstore/nla-angels/logo.png b/public/images/teamstore/nla-angels/logo.png new file mode 100644 index 0000000..739e0ce Binary files /dev/null and b/public/images/teamstore/nla-angels/logo.png differ diff --git a/public/images/teamstore/nlp/logo.png b/public/images/teamstore/nlp/logo.png new file mode 100644 index 0000000..f380211 Binary files /dev/null and b/public/images/teamstore/nlp/logo.png differ diff --git a/public/images/teamstore/rtg/banner.png b/public/images/teamstore/rtg/banner.png new file mode 100644 index 0000000..d1090e4 Binary files /dev/null and b/public/images/teamstore/rtg/banner.png differ diff --git a/public/images/teamstore/rtg/logo.png b/public/images/teamstore/rtg/logo.png new file mode 100644 index 0000000..91f64fb Binary files /dev/null and b/public/images/teamstore/rtg/logo.png differ diff --git a/public/images/teamstore/store-banner.png b/public/images/teamstore/store-banner.png new file mode 100644 index 0000000..4401699 Binary files /dev/null and b/public/images/teamstore/store-banner.png differ diff --git a/public/images/teamstore/store-banner1.png b/public/images/teamstore/store-banner1.png new file mode 100644 index 0000000..0a4040e Binary files /dev/null and b/public/images/teamstore/store-banner1.png differ diff --git a/public/images/teamstore/tdba/banner.png b/public/images/teamstore/tdba/banner.png new file mode 100644 index 0000000..93093c3 Binary files /dev/null and b/public/images/teamstore/tdba/banner.png differ diff --git a/public/images/teamstore/tdba/logo.png b/public/images/teamstore/tdba/logo.png new file mode 100644 index 0000000..3539f41 Binary files /dev/null and b/public/images/teamstore/tdba/logo.png differ diff --git a/public/images/teamstore/the-future-elite/banner.png b/public/images/teamstore/the-future-elite/banner.png new file mode 100644 index 0000000..c0b7224 Binary files /dev/null and b/public/images/teamstore/the-future-elite/banner.png differ diff --git a/public/images/teamstore/the-future-elite/logo.png b/public/images/teamstore/the-future-elite/logo.png new file mode 100644 index 0000000..5088bbf Binary files /dev/null and b/public/images/teamstore/the-future-elite/logo.png differ diff --git a/public/images/teamstore/wcb/banner.png b/public/images/teamstore/wcb/banner.png new file mode 100644 index 0000000..cc70434 Binary files /dev/null and b/public/images/teamstore/wcb/banner.png differ diff --git a/public/images/teamstore/wcb/logo.png b/public/images/teamstore/wcb/logo.png new file mode 100644 index 0000000..3ec538a Binary files /dev/null and b/public/images/teamstore/wcb/logo.png differ diff --git a/public/images/templates/thumbnail/20180509-1525845739-download.JPG b/public/images/templates/thumbnail/20180509-1525845739-download.JPG new file mode 100644 index 0000000..b35113b Binary files /dev/null and b/public/images/templates/thumbnail/20180509-1525845739-download.JPG differ diff --git a/public/images/templates/thumbnail/20180509-1525845739-download.png b/public/images/templates/thumbnail/20180509-1525845739-download.png new file mode 100644 index 0000000..fe7844c Binary files /dev/null and b/public/images/templates/thumbnail/20180509-1525845739-download.png differ diff --git a/public/images/templates/thumbnail/20180529-1527597831-atlanta.png b/public/images/templates/thumbnail/20180529-1527597831-atlanta.png new file mode 100644 index 0000000..e827653 Binary files /dev/null and b/public/images/templates/thumbnail/20180529-1527597831-atlanta.png differ diff --git a/public/images/templates/thumbnail/20180529-1527597871-phila1.png b/public/images/templates/thumbnail/20180529-1527597871-phila1.png new file mode 100644 index 0000000..31432d0 Binary files /dev/null and b/public/images/templates/thumbnail/20180529-1527597871-phila1.png differ diff --git a/public/images/templates/thumbnail/20180529-1527598923-cleve.png b/public/images/templates/thumbnail/20180529-1527598923-cleve.png new file mode 100644 index 0000000..5873b46 Binary files /dev/null and b/public/images/templates/thumbnail/20180529-1527598923-cleve.png differ diff --git a/public/images/templates/thumbnail/20180530-1527659070-brooklyn.png b/public/images/templates/thumbnail/20180530-1527659070-brooklyn.png new file mode 100644 index 0000000..580a19a Binary files /dev/null and b/public/images/templates/thumbnail/20180530-1527659070-brooklyn.png differ diff --git a/public/images/templates/thumbnail/20180608-1528441041-thumb-brooklyn.png b/public/images/templates/thumbnail/20180608-1528441041-thumb-brooklyn.png new file mode 100644 index 0000000..d75f58d Binary files /dev/null and b/public/images/templates/thumbnail/20180608-1528441041-thumb-brooklyn.png differ diff --git a/public/images/templates/thumbnail/20180608-1528441366-thumb-chicago.png b/public/images/templates/thumbnail/20180608-1528441366-thumb-chicago.png new file mode 100644 index 0000000..afd117d Binary files /dev/null and b/public/images/templates/thumbnail/20180608-1528441366-thumb-chicago.png differ diff --git a/public/images/templates/thumbnail/20180611-1528708258-thumb-cleveland.png b/public/images/templates/thumbnail/20180611-1528708258-thumb-cleveland.png new file mode 100644 index 0000000..396f745 Binary files /dev/null and b/public/images/templates/thumbnail/20180611-1528708258-thumb-cleveland.png differ diff --git a/public/images/templates/thumbnail/20180807-1533649379-thumbnail-boston.png b/public/images/templates/thumbnail/20180807-1533649379-thumbnail-boston.png new file mode 100644 index 0000000..3e1dd58 Binary files /dev/null and b/public/images/templates/thumbnail/20180807-1533649379-thumbnail-boston.png differ diff --git a/public/images/templates/thumbnail/20180807-1533652279-lakers.png b/public/images/templates/thumbnail/20180807-1533652279-lakers.png new file mode 100644 index 0000000..658f4e0 Binary files /dev/null and b/public/images/templates/thumbnail/20180807-1533652279-lakers.png differ diff --git a/public/images/templates/thumbnail/20180808-1533709165-orlando_magic.png b/public/images/templates/thumbnail/20180808-1533709165-orlando_magic.png new file mode 100644 index 0000000..b883fe6 Binary files /dev/null and b/public/images/templates/thumbnail/20180808-1533709165-orlando_magic.png differ diff --git a/public/images/templates/thumbnail/20180816-1534421693-thumb-cleveland.png b/public/images/templates/thumbnail/20180816-1534421693-thumb-cleveland.png new file mode 100644 index 0000000..396f745 Binary files /dev/null and b/public/images/templates/thumbnail/20180816-1534421693-thumb-cleveland.png differ diff --git a/public/images/templates/thumbnail/20181113-1542105363-duke.png b/public/images/templates/thumbnail/20181113-1542105363-duke.png new file mode 100644 index 0000000..70ccc24 Binary files /dev/null and b/public/images/templates/thumbnail/20181113-1542105363-duke.png differ diff --git a/public/images/templates/thumbnail/20190125-1548422911-boston.JPG b/public/images/templates/thumbnail/20190125-1548422911-boston.JPG new file mode 100644 index 0000000..1754eaf Binary files /dev/null and b/public/images/templates/thumbnail/20190125-1548422911-boston.JPG differ diff --git a/public/images/templates/thumbnail/20190125-1548428501-chicago.JPG b/public/images/templates/thumbnail/20190125-1548428501-chicago.JPG new file mode 100644 index 0000000..d5cfbd1 Binary files /dev/null and b/public/images/templates/thumbnail/20190125-1548428501-chicago.JPG differ diff --git a/public/images/templates/thumbnail/20190215-1550237431-impact.JPG b/public/images/templates/thumbnail/20190215-1550237431-impact.JPG new file mode 100644 index 0000000..dc7486b Binary files /dev/null and b/public/images/templates/thumbnail/20190215-1550237431-impact.JPG differ diff --git a/public/images/templates/thumbnail/20190306-1551857209-oklahoma-2.JPG b/public/images/templates/thumbnail/20190306-1551857209-oklahoma-2.JPG new file mode 100644 index 0000000..72535c9 Binary files /dev/null and b/public/images/templates/thumbnail/20190306-1551857209-oklahoma-2.JPG differ diff --git a/public/images/text-shapes-logo/arch-logo.png b/public/images/text-shapes-logo/arch-logo.png new file mode 100644 index 0000000..5dae795 Binary files /dev/null and b/public/images/text-shapes-logo/arch-logo.png differ diff --git a/public/images/text-shapes-logo/curve-logo.png b/public/images/text-shapes-logo/curve-logo.png new file mode 100644 index 0000000..c8ee40d Binary files /dev/null and b/public/images/text-shapes-logo/curve-logo.png differ diff --git a/public/images/text-shapes-logo/normal-logo.png b/public/images/text-shapes-logo/normal-logo.png new file mode 100644 index 0000000..33bae65 Binary files /dev/null and b/public/images/text-shapes-logo/normal-logo.png differ diff --git a/public/images/uniform-templates/SHADOW/BACK.png b/public/images/uniform-templates/SHADOW/BACK.png new file mode 100644 index 0000000..665e81e Binary files /dev/null and b/public/images/uniform-templates/SHADOW/BACK.png differ diff --git a/public/images/uniform-templates/SHADOW/FRONT.png b/public/images/uniform-templates/SHADOW/FRONT.png new file mode 100644 index 0000000..2a6fcd3 Binary files /dev/null and b/public/images/uniform-templates/SHADOW/FRONT.png differ diff --git a/public/images/uniform-templates/SHADOW/SHORT LEFT SIDE.png b/public/images/uniform-templates/SHADOW/SHORT LEFT SIDE.png new file mode 100644 index 0000000..ff3804b Binary files /dev/null and b/public/images/uniform-templates/SHADOW/SHORT LEFT SIDE.png differ diff --git a/public/images/uniform-templates/SHADOW/SHORT RIGHT SIDE.png b/public/images/uniform-templates/SHADOW/SHORT RIGHT SIDE.png new file mode 100644 index 0000000..1e48307 Binary files /dev/null and b/public/images/uniform-templates/SHADOW/SHORT RIGHT SIDE.png differ diff --git a/public/images/uniform-templates/SHADOW/Thumbs.db b/public/images/uniform-templates/SHADOW/Thumbs.db new file mode 100644 index 0000000..e0a3a19 Binary files /dev/null and b/public/images/uniform-templates/SHADOW/Thumbs.db differ diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/BACK JERSEY.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/BACK JERSEY.svg new file mode 100644 index 0000000..777e267 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/BACK JERSEY.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/FRONT JERSEY - Copy.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/FRONT JERSEY - Copy.svg new file mode 100644 index 0000000..ed611c0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/FRONT JERSEY - Copy.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/FRONT JERSEY.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/FRONT JERSEY.svg new file mode 100644 index 0000000..ed611c0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/FRONT JERSEY.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/LEFT SHORT.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/LEFT SHORT.svg new file mode 100644 index 0000000..ba2db46 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/LEFT SHORT.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/RIGTH SHORT.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/RIGTH SHORT.svg new file mode 100644 index 0000000..decc67f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY - Copy/RIGTH SHORT.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY - Copy.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY - Copy.svg new file mode 100644 index 0000000..777e267 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY - Copy.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY------.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY------.svg new file mode 100644 index 0000000..9ad7ed2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY------.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY----.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY----.svg new file mode 100644 index 0000000..c0b04b0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY----.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY.svg new file mode 100644 index 0000000..cd74a68 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/BACK JERSEY.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY.svg new file mode 100644 index 0000000..a37ed00 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY_.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY_.svg new file mode 100644 index 0000000..f2f57ae --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY_.svg @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY__.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY__.svg new file mode 100644 index 0000000..a3a1e0e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/FRONT JERSEY__.svg @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/LEFT SHORT---.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/LEFT SHORT---.svg new file mode 100644 index 0000000..2f85e95 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/LEFT SHORT---.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/LEFT SHORT.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/LEFT SHORT.svg new file mode 100644 index 0000000..359a060 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/LEFT SHORT.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/RIGTH SHORT---.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/RIGTH SHORT---.svg new file mode 100644 index 0000000..82ec786 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/RIGTH SHORT---.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/DISPLAY/RIGTH SHORT.svg b/public/images/uniform-templates/TEMP-00003/DISPLAY/RIGTH SHORT.svg new file mode 100644 index 0000000..ccfc128 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/DISPLAY/RIGTH SHORT.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..da88dda --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S1.svg b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S1.svg new file mode 100644 index 0000000..cfa1ede --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S1.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S_.svg b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S_.svg new file mode 100644 index 0000000..f0e6ba0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S_.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + PLAIN_BACK_SMALL + + + + + + + + + + + + + + + + + PLAIN_FRONT_SMALL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S__.svg b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S__.svg new file mode 100644 index 0000000..ff4b16d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/JERSEY/SIZES/S__.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00003/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00003/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..0d8187a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00003/SHORTS/SIZES/S.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _L + E + F + T + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/DISPLAY/BACK JERSEY.svg b/public/images/uniform-templates/TEMP-00021/DISPLAY/BACK JERSEY.svg new file mode 100644 index 0000000..d4c8007 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/DISPLAY/BACK JERSEY.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/DISPLAY/FRONT JERSEY.svg b/public/images/uniform-templates/TEMP-00021/DISPLAY/FRONT JERSEY.svg new file mode 100644 index 0000000..cb294f3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/DISPLAY/FRONT JERSEY.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/DISPLAY/LEFT SHORT.svg b/public/images/uniform-templates/TEMP-00021/DISPLAY/LEFT SHORT.svg new file mode 100644 index 0000000..99a534f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/DISPLAY/LEFT SHORT.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/DISPLAY/RIGTH SHORT.svg b/public/images/uniform-templates/TEMP-00021/DISPLAY/RIGTH SHORT.svg new file mode 100644 index 0000000..4284264 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/DISPLAY/RIGTH SHORT.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..9b3b4ee --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/2XL.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _2 + XL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _2 + XL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..c1398f2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/3XL.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _3 + XL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _3 + XL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..a9ea079 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/4XL.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _4 + XL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _4 + XL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..a37d71d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/5XL.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _5 + XL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..ecc0202 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/L.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _L + A + R + G + E + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _L + A + R + G + E + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..d409292 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/M.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + ME + D + I + U + M + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _MEDIUM + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..cfa42f7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/S.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/S_.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/S_.svg new file mode 100644 index 0000000..3e9f152 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/S_.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..a2e08fb --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/XL.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + AXL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + AXL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..44ff9b2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YL.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + YL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + YL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..20c1961 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YM.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + YM + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + YM + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..d267488 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YS.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + YS + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + YS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..9ae7b51 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YXL.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + YXL + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + YXL + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..3218369 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/JERSEY/SIZES/YXS.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + YXS + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + YXS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..e3328dd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/2XL.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _2 + X + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _2 + X + L_ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..b9366b0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/3XL.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _3 + X + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _3 + X + L_ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..6229519 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/4XL.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + A + Y + _4 + X + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + A + Y + _4 + X + L_ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..c72200a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/5XL.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + A + Y + _5 + X + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + A + Y + _5 + X + L_ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..a97c8dd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/L.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _L_ + R + IG + T + H + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..7e65770 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/M.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + M + _L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + M + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..3adf034 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/S.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _L + E + F + T + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..4193865 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/XL.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + X + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + X + L_ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..ad4fa93 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YL.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + Y + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + Y + L_ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YM.svg new file mode 100644 index 0000000..774bf56 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YM.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + Y + M + _L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + Y + M + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YS.svg new file mode 100644 index 0000000..212df79 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YS.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + YS + _L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + YS + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YXL.svg new file mode 100644 index 0000000..a927eae --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YXL.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + YX + L_L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + YX + L_ + R + IG + T + H + + + + + + diff --git a/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YXS.svg new file mode 100644 index 0000000..af59270 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00021/SHORTS/SIZES/YXS.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + YXS + _L + E + F + T + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + YXS + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00022/DISPLAY/BACK JERSEY.svg b/public/images/uniform-templates/TEMP-00022/DISPLAY/BACK JERSEY.svg new file mode 100644 index 0000000..cd74a68 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00022/DISPLAY/BACK JERSEY.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00022/DISPLAY/FRONT JERSEY.svg b/public/images/uniform-templates/TEMP-00022/DISPLAY/FRONT JERSEY.svg new file mode 100644 index 0000000..a37ed00 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00022/DISPLAY/FRONT JERSEY.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00022/DISPLAY/LEFT SHORT.svg b/public/images/uniform-templates/TEMP-00022/DISPLAY/LEFT SHORT.svg new file mode 100644 index 0000000..359a060 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00022/DISPLAY/LEFT SHORT.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00022/DISPLAY/RIGTH SHORT.svg b/public/images/uniform-templates/TEMP-00022/DISPLAY/RIGTH SHORT.svg new file mode 100644 index 0000000..ccfc128 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00022/DISPLAY/RIGTH SHORT.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00022/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00022/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..cfa1ede --- /dev/null +++ b/public/images/uniform-templates/TEMP-00022/JERSEY/SIZES/S.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00022/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00022/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..0d8187a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00022/SHORTS/SIZES/S.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _L + E + F + T + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/DISPLAY/BACK TSHIRT.svg b/public/images/uniform-templates/TEMP-00023/DISPLAY/BACK TSHIRT.svg new file mode 100644 index 0000000..073ce1c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/DISPLAY/BACK TSHIRT.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/DISPLAY/BACK TSHIRT__.svg b/public/images/uniform-templates/TEMP-00023/DISPLAY/BACK TSHIRT__.svg new file mode 100644 index 0000000..07383db --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/DISPLAY/BACK TSHIRT__.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/DISPLAY/FRONT TSHIRT.svg b/public/images/uniform-templates/TEMP-00023/DISPLAY/FRONT TSHIRT.svg new file mode 100644 index 0000000..5511dc2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/DISPLAY/FRONT TSHIRT.svg @@ -0,0 +1,233 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/DISPLAY/FRONT TSHIRT_.svg b/public/images/uniform-templates/TEMP-00023/DISPLAY/FRONT TSHIRT_.svg new file mode 100644 index 0000000..346454c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/DISPLAY/FRONT TSHIRT_.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00023/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..cfa1ede --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/JERSEY/SIZES/S.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/JERSEY/SIZES/UNIVERSAL.svg b/public/images/uniform-templates/TEMP-00023/JERSEY/SIZES/UNIVERSAL.svg new file mode 100644 index 0000000..5581a03 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/JERSEY/SIZES/UNIVERSAL.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + BACK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + FRONT + + + + + + diff --git a/public/images/uniform-templates/TEMP-00023/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00023/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..0d8187a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00023/SHORTS/SIZES/S.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _L + E + F + T + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00024/DISPLAY/BACK TSHIRT.svg b/public/images/uniform-templates/TEMP-00024/DISPLAY/BACK TSHIRT.svg new file mode 100644 index 0000000..073ce1c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00024/DISPLAY/BACK TSHIRT.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00024/DISPLAY/FRONT TSHIRT.svg b/public/images/uniform-templates/TEMP-00024/DISPLAY/FRONT TSHIRT.svg new file mode 100644 index 0000000..23cee3f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00024/DISPLAY/FRONT TSHIRT.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00024/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00024/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..cfa1ede --- /dev/null +++ b/public/images/uniform-templates/TEMP-00024/JERSEY/SIZES/S.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + BA + C + K + _ + SMA + L + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P + L + A + I + N + _ + F + R + O + N + T + _ + SMA + L + L + + + + + + diff --git a/public/images/uniform-templates/TEMP-00024/JERSEY/SIZES/UNIVERSAL.svg b/public/images/uniform-templates/TEMP-00024/JERSEY/SIZES/UNIVERSAL.svg new file mode 100644 index 0000000..f7dd547 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00024/JERSEY/SIZES/UNIVERSAL.svg @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + BACK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + FRONT + + + + + + diff --git a/public/images/uniform-templates/TEMP-00024/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00024/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..0d8187a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00024/SHORTS/SIZES/S.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _L + E + F + T + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G + A + M + E + D + + A + Y + _ + S + _ + R + IG + H + T + + + + + + diff --git a/public/images/uniform-templates/TEMP-00025/DISPLAY/socks back-01.svg b/public/images/uniform-templates/TEMP-00025/DISPLAY/socks back-01.svg new file mode 100644 index 0000000..26fa87b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00025/DISPLAY/socks back-01.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00025/DISPLAY/socks front-01.svg b/public/images/uniform-templates/TEMP-00025/DISPLAY/socks front-01.svg new file mode 100644 index 0000000..b26b2ae --- /dev/null +++ b/public/images/uniform-templates/TEMP-00025/DISPLAY/socks front-01.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00025/JERSEY/SIZES/SOCKS-PRINT-FILE.svg b/public/images/uniform-templates/TEMP-00025/JERSEY/SIZES/SOCKS-PRINT-FILE.svg new file mode 100644 index 0000000..73cd757 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00025/JERSEY/SIZES/SOCKS-PRINT-FILE.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + BACK + + + + + + + + + + + + + + + + + + + + + + + FRONT + + + + + + diff --git a/public/images/uniform-templates/TEMP-00025/JERSEY/SIZES/SOCKS-PRINT-FILE_1.svg b/public/images/uniform-templates/TEMP-00025/JERSEY/SIZES/SOCKS-PRINT-FILE_1.svg new file mode 100644 index 0000000..0906116 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00025/JERSEY/SIZES/SOCKS-PRINT-FILE_1.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE-BRIM-01.svg b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE-BRIM-01.svg new file mode 100644 index 0000000..c7802a0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE-BRIM-01.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE-BRIM-01_.svg b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE-BRIM-01_.svg new file mode 100644 index 0000000..701edbb --- /dev/null +++ b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE-BRIM-01_.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE.svg b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE.svg new file mode 100644 index 0000000..467b998 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE_.svg b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE_.svg new file mode 100644 index 0000000..7d6d46b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00026/DISPLAY/V-TEMPLATE_.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00026/JERSEY/SIZES/PRINT-TEMPLATE.svg b/public/images/uniform-templates/TEMP-00026/JERSEY/SIZES/PRINT-TEMPLATE.svg new file mode 100644 index 0000000..1f0b3fe --- /dev/null +++ b/public/images/uniform-templates/TEMP-00026/JERSEY/SIZES/PRINT-TEMPLATE.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/BACK JERSEY.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/BACK JERSEY.svg new file mode 100644 index 0000000..d4c8007 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/BACK JERSEY.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL JERSEY BACK.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL JERSEY BACK.svg new file mode 100644 index 0000000..fc1cb7a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL JERSEY BACK.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL JERSEY FRONT-01.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL JERSEY FRONT-01.svg new file mode 100644 index 0000000..ea8feda --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL JERSEY FRONT-01.svg @@ -0,0 +1,443 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL SHORTS LEFT-01.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL SHORTS LEFT-01.svg new file mode 100644 index 0000000..5a46d27 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL SHORTS LEFT-01.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL SHORTS RIGHT-01.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL SHORTS RIGHT-01.svg new file mode 100644 index 0000000..c0a0642 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/FINAL SHORTS RIGHT-01.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/FRONT JERSEY.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/FRONT JERSEY.svg new file mode 100644 index 0000000..cb294f3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/FRONT JERSEY.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/LEFT SHORT.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/LEFT SHORT.svg new file mode 100644 index 0000000..99a534f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/LEFT SHORT.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/DISPLAY/RIGTH SHORT.svg b/public/images/uniform-templates/TEMP-00027/DISPLAY/RIGTH SHORT.svg new file mode 100644 index 0000000..4284264 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/DISPLAY/RIGTH SHORT.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00027/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..6e37a9b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/JERSEY/SIZES/XL.svg @@ -0,0 +1,1092 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BACK XL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XL + + + + + + + + + + + + + + + + 3X + + + + + + diff --git a/public/images/uniform-templates/TEMP-00027/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00027/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..ca662e1 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00027/SHORTS/SIZES/XL.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GAMEDAY_XL_RIGHT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GAMEDAY_XL_RIGHT + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/BACK TSHIRT.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/BACK TSHIRT.svg new file mode 100644 index 0000000..3ea5c12 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/BACK TSHIRT.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/BACK TSHIRT.svg.old b/public/images/uniform-templates/TEMP-00028/DISPLAY/BACK TSHIRT.svg.old new file mode 100644 index 0000000..073ce1c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/BACK TSHIRT.svg.old @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT - Copy.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT - Copy.svg new file mode 100644 index 0000000..31804a7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT - Copy.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT-01.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT-01.svg new file mode 100644 index 0000000..6f9db00 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT-01.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT.svg new file mode 100644 index 0000000..31804a7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT.with.text.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT.with.text.svg new file mode 100644 index 0000000..13f2592 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/FRONT TSHIRT.with.text.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/LEFT SHIRT.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/LEFT SHIRT.svg new file mode 100644 index 0000000..c67823f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/LEFT SHIRT.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + ** for sleeve decoration only.body color does not reflect actual shirt color ** + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/DISPLAY/RIGHT SHIRT.svg b/public/images/uniform-templates/TEMP-00028/DISPLAY/RIGHT SHIRT.svg new file mode 100644 index 0000000..5673c3b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/DISPLAY/RIGHT SHIRT.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/JERSEY/SIZES/4XL.old.svg b/public/images/uniform-templates/TEMP-00028/JERSEY/SIZES/4XL.old.svg new file mode 100644 index 0000000..ebf0081 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/JERSEY/SIZES/4XL.old.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00028/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00028/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..1530abb --- /dev/null +++ b/public/images/uniform-templates/TEMP-00028/JERSEY/SIZES/4XL.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/BACK JERSEY-01.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/BACK JERSEY-01.svg new file mode 100644 index 0000000..84fcade --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/BACK JERSEY-01.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/BACK JERSEY-01_stable.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/BACK JERSEY-01_stable.svg new file mode 100644 index 0000000..dd98ab7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/BACK JERSEY-01_stable.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/FRONT JERSEY-01.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/FRONT JERSEY-01.svg new file mode 100644 index 0000000..a5fac59 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/FRONT JERSEY-01.svg @@ -0,0 +1,607 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/FRONT JERSEY-01_stable.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/FRONT JERSEY-01_stable.svg new file mode 100644 index 0000000..eea7249 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/FRONT JERSEY-01_stable.svg @@ -0,0 +1,234 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS LEFT SIDE-01.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS LEFT SIDE-01.svg new file mode 100644 index 0000000..40d227a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS LEFT SIDE-01.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS LEFT SIDE-01_stable.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS LEFT SIDE-01_stable.svg new file mode 100644 index 0000000..4028e1d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS LEFT SIDE-01_stable.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS RIGHT SIDE-01.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS RIGHT SIDE-01.svg new file mode 100644 index 0000000..6a53b35 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS RIGHT SIDE-01.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS RIGHT SIDE-01_stable.svg b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS RIGHT SIDE-01_stable.svg new file mode 100644 index 0000000..83c5166 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/DISPLAY/SHORTS RIGHT SIDE-01_stable.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..596963e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/2XL.svg @@ -0,0 +1,500 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..377dfd0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/3XL.svg @@ -0,0 +1,433 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 3XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..75b7e32 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/4XL.svg @@ -0,0 +1,561 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..40fcfc0 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/5XL.svg @@ -0,0 +1,496 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 5XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..9088d50 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/L.svg @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..36a688f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/M.svg @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + MEDIUM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..0e7aba8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/S.svg @@ -0,0 +1,525 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + SMALL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..42438d8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/XL.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..72711e5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YL.svg @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..6179d9f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YM.svg @@ -0,0 +1,410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..4d982c6 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YXL.svg @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..d4185b8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/JERSEY/SIZES/YXS.svg @@ -0,0 +1,461 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..e0c8cec --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/2XL.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..67d4d40 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/3XL.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..fb6e1fd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/4XL.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..cd3fc0c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/5XL.svg @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..47bd7df --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/L.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..751e196 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/M.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..eabf675 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/S.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..f256f71 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/XL.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..9b3461b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YL.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YM.svg new file mode 100644 index 0000000..e497bc3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YM.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YS.svg new file mode 100644 index 0000000..7d8ab6c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YS.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YXL.svg new file mode 100644 index 0000000..46960ef --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YXL.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YXS.svg new file mode 100644 index 0000000..64e090c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00029/SHORTS/SIZES/YXS.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00030/DISPLAY/BACK-01.svg b/public/images/uniform-templates/TEMP-00030/DISPLAY/BACK-01.svg new file mode 100644 index 0000000..e01b06a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00030/DISPLAY/BACK-01.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00030/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00030/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..6f9161e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00030/DISPLAY/FRONT-01.svg @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00030/DISPLAY/SHORTS LEFT-01.svg b/public/images/uniform-templates/TEMP-00030/DISPLAY/SHORTS LEFT-01.svg new file mode 100644 index 0000000..5327e0a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00030/DISPLAY/SHORTS LEFT-01.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00030/DISPLAY/SHORTS RIGHT-01.svg b/public/images/uniform-templates/TEMP-00030/DISPLAY/SHORTS RIGHT-01.svg new file mode 100644 index 0000000..324bacb --- /dev/null +++ b/public/images/uniform-templates/TEMP-00030/DISPLAY/SHORTS RIGHT-01.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00031/DISPLAY/BACK-01.svg b/public/images/uniform-templates/TEMP-00031/DISPLAY/BACK-01.svg new file mode 100644 index 0000000..429e987 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00031/DISPLAY/BACK-01.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00031/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00031/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..4f91db1 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00031/DISPLAY/FRONT-01.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00031/DISPLAY/LEFT-01.svg b/public/images/uniform-templates/TEMP-00031/DISPLAY/LEFT-01.svg new file mode 100644 index 0000000..1d25b35 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00031/DISPLAY/LEFT-01.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00031/DISPLAY/RIGHT-01.svg b/public/images/uniform-templates/TEMP-00031/DISPLAY/RIGHT-01.svg new file mode 100644 index 0000000..69c57a8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00031/DISPLAY/RIGHT-01.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/DISPLAY/BACK.svg b/public/images/uniform-templates/TEMP-00032/DISPLAY/BACK.svg new file mode 100644 index 0000000..d765c78 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/DISPLAY/BACK.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/DISPLAY/BOSTON BACK-01.svg b/public/images/uniform-templates/TEMP-00032/DISPLAY/BOSTON BACK-01.svg new file mode 100644 index 0000000..6661237 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/DISPLAY/BOSTON BACK-01.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/DISPLAY/BOSTON-FRONT-01.svg b/public/images/uniform-templates/TEMP-00032/DISPLAY/BOSTON-FRONT-01.svg new file mode 100644 index 0000000..a3226b3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/DISPLAY/BOSTON-FRONT-01.svg @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00032/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..78b1a73 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/DISPLAY/FRONT-01.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/DISPLAY/LEFT-01.svg b/public/images/uniform-templates/TEMP-00032/DISPLAY/LEFT-01.svg new file mode 100644 index 0000000..4016ba8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/DISPLAY/LEFT-01.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/DISPLAY/RIGHT-01.svg b/public/images/uniform-templates/TEMP-00032/DISPLAY/RIGHT-01.svg new file mode 100644 index 0000000..841f54d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/DISPLAY/RIGHT-01.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..87d2379 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/2XL.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..b641bb5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/3XL.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..77f4f1d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/4XL.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..6c149be --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/5XL.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..5771fae --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/L.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..1702de4 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/M.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + MEDIUM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..87ef686 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/S.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..23ca324 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/XL.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + XLARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..a82f759 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YL.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..cb10090 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YM.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..e30f1b7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YS.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YS FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..6371bc6 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YXL.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YXL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..4544708 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/JERSEY/SIZES/YXS.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YXS FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..cc7c3a2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/2XL.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..857fc5d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/3XL.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..aff2c6b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/4XL.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..4971ca9 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/5XL.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..cc7c3a2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/L.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..8b85f0b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/M.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..af0a9f6 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/S.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..cee3f55 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/XL.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..c3d55fd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YL.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YM.svg new file mode 100644 index 0000000..5c00a99 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YM.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YS.svg new file mode 100644 index 0000000..506750c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YS.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YXL.svg new file mode 100644 index 0000000..8f42a5d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YXL.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YXS.svg new file mode 100644 index 0000000..bb74ffd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00032/SHORTS/SIZES/YXS.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/DISPLAY/BACK-01.svg b/public/images/uniform-templates/TEMP-00033/DISPLAY/BACK-01.svg new file mode 100644 index 0000000..ca287ba --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/DISPLAY/BACK-01.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00033/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..6edb1e2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/DISPLAY/FRONT-01.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/DISPLAY/LEFT-01.svg b/public/images/uniform-templates/TEMP-00033/DISPLAY/LEFT-01.svg new file mode 100644 index 0000000..4dcfdbc --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/DISPLAY/LEFT-01.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/DISPLAY/RIGHT-01.svg b/public/images/uniform-templates/TEMP-00033/DISPLAY/RIGHT-01.svg new file mode 100644 index 0000000..e99fc17 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/DISPLAY/RIGHT-01.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..40e0f9d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/2XL.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 2XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..d9fe3ae --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/3XL.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 3XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..810e5b6 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/4XL.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 4XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..f218553 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/5XL.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..deaf781 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/L.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + LARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..e759e1e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/M.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + MEDIUM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..931bcea --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/S.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + SMALL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..020ff5d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/XL.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + XLARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..5d1cd38 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YL.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..d77cdab --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YM.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..fc4681e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YS.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YS FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..b35ec9a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YXL.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..5e7877b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/JERSEY/SIZES/YXS.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YXS FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..511bb1d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/2XL.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..e3b7afe --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/3XL.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..83a9de8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/4XL.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..717556b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/5XL.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..c7b2e59 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/L.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..eea114a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/M.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..b672e42 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/S.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..750e2ca --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/XL.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..b2e7660 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YL.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YM.svg new file mode 100644 index 0000000..d8b273c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YM.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YS.svg new file mode 100644 index 0000000..a381337 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YS.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YXL.svg new file mode 100644 index 0000000..1ef1d52 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YXL.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YXS.svg new file mode 100644 index 0000000..eb8bf43 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00033/SHORTS/SIZES/YXS.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/DISPLAY/BACK-01.svg b/public/images/uniform-templates/TEMP-00034/DISPLAY/BACK-01.svg new file mode 100644 index 0000000..6b4e8ef --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/DISPLAY/BACK-01.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00034/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..2818884 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/DISPLAY/FRONT-01.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/DISPLAY/LEFT-01.svg b/public/images/uniform-templates/TEMP-00034/DISPLAY/LEFT-01.svg new file mode 100644 index 0000000..2737d5b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/DISPLAY/LEFT-01.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/DISPLAY/RIGHT-01.svg b/public/images/uniform-templates/TEMP-00034/DISPLAY/RIGHT-01.svg new file mode 100644 index 0000000..940cb51 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/DISPLAY/RIGHT-01.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..ba421f2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/2XL.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..3074470 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/3XL.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 3XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..c871cf2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/4XL.svg @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 4XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..5a3d69f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/5XL.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 5XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..5923532 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/L.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + LARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..759095c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/M.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + MEDIUM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..5742fae --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/S.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + SMALL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..48e3eb8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/XL.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + XLARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..4a971fe --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YL.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..c18f61a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YM.svg @@ -0,0 +1,257 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..1be36bd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YS.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YS FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..47bb685 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YXL.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YXL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..e0a49c2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/JERSEY/SIZES/YXS.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..03819ac --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/2XL.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..a6356b8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/3XL.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..31e1c4a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/4XL.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..b521234 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/5XL.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..0d8aa28 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/L.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..96d8648 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/M.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..6deaa41 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/S.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..641a944 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/XL.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..f6518c5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YL.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YM.svg new file mode 100644 index 0000000..ec674d3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YM.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YS.svg new file mode 100644 index 0000000..c74457f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YS.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YXL.svg new file mode 100644 index 0000000..33ac5f3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00034/SHORTS/SIZES/YXL.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-BACK-01.svg b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-BACK-01.svg new file mode 100644 index 0000000..b6806a1 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-BACK-01.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-FRONT-01.svg b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-FRONT-01.svg new file mode 100644 index 0000000..4da20fe --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-FRONT-01.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-LEFT-01-01.svg b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-LEFT-01-01.svg new file mode 100644 index 0000000..20a6283 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-LEFT-01-01.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-RIGHT-01-01.svg b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-RIGHT-01-01.svg new file mode 100644 index 0000000..7faa699 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/DISPLAY/LAKERS-RIGHT-01-01.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..b758425 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/2XL.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + 2XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..45b94ee --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/3XL.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..944853a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/4XL.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..aaeb2ab --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/5XL.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..c6a0cbb --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/L.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + LARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..416f84c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/M.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + MEDIUM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..9ff1c5e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/S.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + SMALL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..c5126ad --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/XL.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + XLARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..de7ec05 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YL.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..558281e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YM.svg @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..634ec0e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YS.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..d4907ec --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YXL.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YXL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..da1f94a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/JERSEY/SIZES/YXS.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PRINT_3PCS_RIBBINGS + YXS FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..759e6ea --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/2XL.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..58771c8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/3XL.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..3770c77 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/4XL.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..56bc1b5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/5XL.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..184bb8d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/L.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..7e2dd67 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/M.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..85a4473 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/S.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..d986215 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/XL.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..0b59f7c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/YL.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/YXS.svg new file mode 100644 index 0000000..d76a1b5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00035/SHORTS/SIZES/YXS.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00036/DISPLAY/BACK-01.svg b/public/images/uniform-templates/TEMP-00036/DISPLAY/BACK-01.svg new file mode 100644 index 0000000..a302b9e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00036/DISPLAY/BACK-01.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00036/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00036/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..465fb58 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00036/DISPLAY/FRONT-01.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00036/DISPLAY/LEFT-01.svg b/public/images/uniform-templates/TEMP-00036/DISPLAY/LEFT-01.svg new file mode 100644 index 0000000..b564b05 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00036/DISPLAY/LEFT-01.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00036/DISPLAY/RIGHT-01.svg b/public/images/uniform-templates/TEMP-00036/DISPLAY/RIGHT-01.svg new file mode 100644 index 0000000..96275cd --- /dev/null +++ b/public/images/uniform-templates/TEMP-00036/DISPLAY/RIGHT-01.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00037/DISPLAY/BACKai-01.svg b/public/images/uniform-templates/TEMP-00037/DISPLAY/BACKai-01.svg new file mode 100644 index 0000000..e991223 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00037/DISPLAY/BACKai-01.svg @@ -0,0 +1,942 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00037/DISPLAY/FRONT-01.svg b/public/images/uniform-templates/TEMP-00037/DISPLAY/FRONT-01.svg new file mode 100644 index 0000000..b95afe4 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00037/DISPLAY/FRONT-01.svg @@ -0,0 +1,973 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00037/DISPLAY/LEFT-01.svg b/public/images/uniform-templates/TEMP-00037/DISPLAY/LEFT-01.svg new file mode 100644 index 0000000..d6e68dc --- /dev/null +++ b/public/images/uniform-templates/TEMP-00037/DISPLAY/LEFT-01.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00037/DISPLAY/RIGHT-01.svg b/public/images/uniform-templates/TEMP-00037/DISPLAY/RIGHT-01.svg new file mode 100644 index 0000000..f94da7a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00037/DISPLAY/RIGHT-01.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/FI BACK-01.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI BACK-01.svg new file mode 100644 index 0000000..c2299f6 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI BACK-01.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/FI FRONT-01.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI FRONT-01.svg new file mode 100644 index 0000000..4a472ed --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI FRONT-01.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/FI LEFT-01.old.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI LEFT-01.old.svg new file mode 100644 index 0000000..f338242 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI LEFT-01.old.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/FI LEFT-01.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI LEFT-01.svg new file mode 100644 index 0000000..f7abbd2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI LEFT-01.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/FI RIGHT-01.old.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI RIGHT-01.old.svg new file mode 100644 index 0000000..31ab8ff --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI RIGHT-01.old.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/FI RIGHT-01.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI RIGHT-01.svg new file mode 100644 index 0000000..9b2e699 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/FI RIGHT-01.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI BACK-01.old.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI BACK-01.old.svg new file mode 100644 index 0000000..8ca68fc --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI BACK-01.old.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI FRONT-01 with grid-01.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI FRONT-01 with grid-01.svg new file mode 100644 index 0000000..e0976cc --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI FRONT-01 with grid-01.svg @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI FRONT-01.old.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI FRONT-01.old.svg new file mode 100644 index 0000000..b72b7ba --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI FRONT-01.old.svg @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI LEFT-01.old.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI LEFT-01.old.svg new file mode 100644 index 0000000..9c9f95b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI LEFT-01.old.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI LEFT-01.old1.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI LEFT-01.old1.svg new file mode 100644 index 0000000..ed3e866 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI LEFT-01.old1.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI RIGHT-01.old.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI RIGHT-01.old.svg new file mode 100644 index 0000000..23ca2b7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI RIGHT-01.old.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI RIGHT-01.old1.svg b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI RIGHT-01.old1.svg new file mode 100644 index 0000000..e508e68 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/DISPLAY/New folder/FI RIGHT-01.old1.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/2XL.svg new file mode 100644 index 0000000..a390e7e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/2XL.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/3XL.svg new file mode 100644 index 0000000..085d725 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/3XL.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/4XL.svg new file mode 100644 index 0000000..3321a4f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/4XL.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/5XL.old.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/5XL.old.svg new file mode 100644 index 0000000..afb7906 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/5XL.old.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/5XL.svg new file mode 100644 index 0000000..da31a3a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/5XL.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + XL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + XL FRONT JERSEY + PRINT_3PCS_RIBBINGS + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..676c077 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/L.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..171b9f5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/M.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..d5230ed --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/S.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..0c52bb2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/XL.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE FRONT JERSEY + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..4302405 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL FRONT JERSEY + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL1-01.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL1-01.svg new file mode 100644 index 0000000..3d707a8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL1-01.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + L BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + L FRONT JERSEY + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL_1-01.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL_1-01.svg new file mode 100644 index 0000000..4d81f78 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YL_1-01.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + L BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + L FRONT JERSEY + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..50b872d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YM.svg @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YM_1-01.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YM_1-01.svg new file mode 100644 index 0000000..77d6dd9 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YM_1-01.svg @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + M BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..582b2c4 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YS.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS FRONT JERSEY + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YS_1-01.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YS_1-01.svg new file mode 100644 index 0000000..3c6c924 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YS_1-01.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + S BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + S FRONT JERSEY + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..9a57da2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXL.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL FRONT JERSEY + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..54330d5 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS.svg @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS.svg.orig b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS.svg.orig new file mode 100644 index 0000000..196d3b3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS.svg.orig @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS FRONT JERSEY + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS_1-01.svg b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS_1-01.svg new file mode 100644 index 0000000..6f33b95 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/JERSEY/SIZES/YXS_1-01.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + XS BACK JERSEY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Y + XS FRONT JERSEY + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/2XL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/2XL.svg new file mode 100644 index 0000000..4af2541 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/2XL.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/3XL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/3XL.svg new file mode 100644 index 0000000..fcac6e3 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/3XL.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/4XL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/4XL.svg new file mode 100644 index 0000000..22b07c8 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/4XL.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/5XL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/5XL.svg new file mode 100644 index 0000000..30cea54 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/5XL.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5XL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/L.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/L.svg new file mode 100644 index 0000000..cc7f5a1 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/L.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/M.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/M.svg new file mode 100644 index 0000000..d9793f2 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/M.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MEDIUM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/S.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/S.svg new file mode 100644 index 0000000..b7e1297 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/S.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SMALL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/XL.svg new file mode 100644 index 0000000..65d13a7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/XL.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XLARGE RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YL.svg new file mode 100644 index 0000000..e9a0171 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YL.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YM.svg new file mode 100644 index 0000000..67f7158 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YM.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YM RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YS.svg new file mode 100644 index 0000000..187925d --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YS.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YXL.svg new file mode 100644 index 0000000..b71e66a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YXL.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXL RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YXS.svg new file mode 100644 index 0000000..a1f1fd6 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00038/SHORTS/SIZES/YXS.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS LEFT SHORTS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + YXS RIGHT SHORTS + + + + + + diff --git a/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT BACK-01.svg b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT BACK-01.svg new file mode 100644 index 0000000..7aa1610 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT BACK-01.svg @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT FRONT-01.svg b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT FRONT-01.svg new file mode 100644 index 0000000..b7edfc1 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT FRONT-01.svg @@ -0,0 +1,10474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT SHORTS LEFT-01.svg b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT SHORTS LEFT-01.svg new file mode 100644 index 0000000..9a24f7c --- /dev/null +++ b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT SHORTS LEFT-01.svg @@ -0,0 +1,3160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT SHORTS RIGHT-01.svg b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT SHORTS RIGHT-01.svg new file mode 100644 index 0000000..797732f --- /dev/null +++ b/public/images/uniform-templates/TEMP-00039/DISPLAY/IMPACT SHORTS RIGHT-01.svg @@ -0,0 +1,3159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/DISPLAY/FRONT.svg b/public/images/uniform-templates/TEMP-00040/DISPLAY/FRONT.svg new file mode 100644 index 0000000..8d3094b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/DISPLAY/FRONT.svg @@ -0,0 +1,608 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/DISPLAY/HAE BACK-01.svg b/public/images/uniform-templates/TEMP-00040/DISPLAY/HAE BACK-01.svg new file mode 100644 index 0000000..e1c2b6b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/DISPLAY/HAE BACK-01.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/L.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/L.svg new file mode 100644 index 0000000..99bc632 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/L.svg @@ -0,0 +1,435 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/M.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/M.svg new file mode 100644 index 0000000..913ff75 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/M.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/S.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/S.svg new file mode 100644 index 0000000..55c9c2a --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/S.svg @@ -0,0 +1,493 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/XL.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/XL.svg new file mode 100644 index 0000000..064036b --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/XL.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YL.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YL.svg new file mode 100644 index 0000000..5912e27 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YL.svg @@ -0,0 +1,361 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YM.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YM.svg new file mode 100644 index 0000000..be56bd7 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YM.svg @@ -0,0 +1,431 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YS.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YS.svg new file mode 100644 index 0000000..1f0071e --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YS.svg @@ -0,0 +1,500 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YXL.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YXL.svg new file mode 100644 index 0000000..7bd1707 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YXL.svg @@ -0,0 +1,456 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YXS.svg b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YXS.svg new file mode 100644 index 0000000..56f86b9 --- /dev/null +++ b/public/images/uniform-templates/TEMP-00040/JERSEY/SIZES/YXS.svg @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/user/default-user.png b/public/images/user/default-user.png new file mode 100644 index 0000000..c2bd605 Binary files /dev/null and b/public/images/user/default-user.png differ diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php index 887eb87..dbac941 100644 --- a/resources/views/app.blade.php +++ b/resources/views/app.blade.php @@ -67,7 +67,14 @@ - + + + + + diff --git a/resources/views/user-layouts/view-design.blade.php b/resources/views/user-layouts/view-design.blade.php index 11cf6dd..58757c9 100644 --- a/resources/views/user-layouts/view-design.blade.php +++ b/resources/views/user-layouts/view-design.blade.php @@ -39,7 +39,7 @@ @foreach($array_client_designs as $row) @foreach($array_template_paths as $key => $row1) @if($key == 0) - {{ $row->DesignName }} + {{ $row->DesignName }} @endif @endforeach @endforeach @@ -53,13 +53,13 @@ @if($key == 0)
  • - +
  • @else
  • - +
  • @endif diff --git a/resources/views/user-layouts/view-store-item.blade.php b/resources/views/user-layouts/view-store-item.blade.php index e418256..e13dea6 100644 --- a/resources/views/user-layouts/view-store-item.blade.php +++ b/resources/views/user-layouts/view-store-item.blade.php @@ -36,7 +36,7 @@
    @foreach($thumbnails_array as $thumbnail) @if($thumbnail->ImageClass == 'active') - + @endif @endforeach
    @@ -47,7 +47,7 @@ @foreach($thumbnails_array as $thumbnail)
  • - +
  • @endforeach