index
int64
0
0
repo_id
stringclasses
87 values
file_path
stringlengths
41
143
content
stringlengths
6
1.82M
0
/content/gmx-projects/gmx-admin/frontend/pages/seller
/content/gmx-projects/gmx-admin/frontend/pages/seller/sign-up/[slug].js
import React, { useEffect, useRef, useState } from 'react'; /* global google */ import { cardImages, getCardTypeByValue, isExpiryInvalid, CARD_TYPES, } from '../../../services/CardInput'; import { Card, Col, Container, Row, Form, Button, Nav, Spinner, } from 'react-bootstrap'; import Link from 'next/link'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faAngleRight, faEye, faEyeSlash, faLocation, faQuestionCircle, } from '@fortawesome/free-solid-svg-icons'; // import Datetime from "react-datetime"; import 'react-datetime/css/react-datetime.css'; import Select from 'react-select'; import { DropdownIndicator, react_select_lg_Styles_light, } from '../../../components/DropDown'; import FormValidator from '../../../components/FormValidator'; import InputMask from 'react-input-mask'; import { OverlayTrigger, Tooltip } from 'react-bootstrap'; import API from '../../../config/endpoints.config'; import Rest from '../../../config/rest.config'; import Notifier from '../../../components/Notifier'; import { contextCookie, isLoggedIn } from '../../../services/Auth'; import { Helper } from '../../../services/Helper'; import { useRouter } from 'next/router'; import Meta from '../../../components/Meta'; import { APP_NAME, RECAPTCHA_SITE_KEY } from '../../../config/server.config'; import ReCAPTCHA from 'react-google-recaptcha'; import CustomDatePicker from '../../../components/CustomDatePicker'; const axios = require('axios'); function SellerSignStep2(props) { const reCaptchaRef = useRef(); const router = useRouter(); const { slug } = router.query; const decodedPlanId = atob(slug ?? ''); // const params = router.query; const noti = new Notifier(); const locationRef = useRef(null); const brandLocationRef = useRef(null); const passwordMatch = (confirmation, state) => { if ( state.password !== '' && state.confirmPassword !== '' && state.password === state.confirmPassword ) { return false; } else { return true; } }; const medRecCertificateMatch = (confirmation, state) => { if ( (state.medRecId === 3 && state.medCertificatePath !== '' && state.recCertificatePath !== '') || ((state.medRecId === 1 || state.medRecId === 2) && state.medRecCertificatePath !== '') ) { return false; } else { return true; } }; const validationHandler = () => { const validationArr = [ { field: 'name', method: 'isEmpty', validWhen: false, message: 'Please enter name.', }, { field: 'email', method: 'isEmpty', validWhen: false, message: 'Please enter email.', }, { field: 'email', method: 'isEmail', validWhen: true, message: 'Please enter valid email address.', }, { field: 'password', method: 'isEmpty', validWhen: false, message: 'Please enter password.', }, { field: 'password', method: 'isLength', args: [6, 20], validWhen: true, message: 'Password should be minimum 6 and maximum 20 characters.', }, { field: 'confirmPassword', method: 'isEmpty', validWhen: false, message: 'Please enter confirm password.', }, { field: 'confirmPassword', method: 'isLength', args: [6, 20], validWhen: true, message: 'Confirm password should be minimum 6 and maximum 20 characters.', }, { field: 'confirmPassword', method: passwordMatch, validWhen: false, message: 'Please enter same as password.', }, { field: 'companyName', method: 'isEmpty', validWhen: false, message: 'Please enter company name.', }, // { // field: 'contactNumber', // method: 'isEmpty', // validWhen: false, // message: 'Please enter company contact number.', // }, // { // field: 'contactEmail', // method: 'isEmpty', // validWhen: false, // message: 'Please enter company contact email.', // }, // { // field: 'contactEmail', // method: 'isEmail', // validWhen: true, // message: 'Please enter valid email address.', // }, { field: 'medRecId', method: 'isEmpty', validWhen: false, message: 'Please enter license type.', }, { field: 'licenseNumber', method: 'isEmpty', validWhen: false, message: 'Please enter license number.', }, { field: 'licenseExpirationDate', method: 'isEmpty', validWhen: false, message: 'Please enter license expire date.', }, { field: 'medRecCertificatePath', method: medRecCertificateMatch, validWhen: false, message: 'Please upload license document.', }, { field: 'resaleLicensePath', method: 'isEmpty', validWhen: false, message: 'Please upload resale license document.', }, { field: 'address', method: 'isEmpty', validWhen: false, message: 'Please enter address.', }, { field: 'selectedState', method: 'isEmpty', validWhen: false, message: 'Please select state.', }, { field: 'zipCode', method: 'isEmpty', validWhen: false, message: 'Please enter zip code.', }, { field: 'zipCode', method: 'isLength', args: [5, 5], validWhen: true, message: 'Zipcode should be 5 characters long.', }, { field: 'phoneNumber', method: 'isEmpty', validWhen: false, message: 'Please enter phone number.', }, { field: 'phoneNumber', method: 'isLength', args: [10, 10], validWhen: true, message: 'Phone number should comprise ten digits.', }, { field: 'brandName', method: 'isEmpty', validWhen: false, message: 'Please enter brand name.', }, ]; const validationCardArr = [ { field: 'cardNumber', method: 'isEmpty', validWhen: false, message: 'Please enter card number.', }, { field: 'cardHolder', method: 'isEmpty', validWhen: false, message: "Please enter card holder's name.", }, { field: 'cardExpiry', method: 'isEmpty', validWhen: false, message: 'Please enter card expiry.', }, { field: 'cardCvc', method: 'isEmpty', validWhen: false, message: 'Please enter card cvv.', }, ]; if (decodedPlanId != 1) { return [...validationArr, ...validationCardArr]; } else { return validationArr; } }; const validator = new FormValidator(validationHandler()); const [state, setState] = useState({ /* ---- Personal Field ----*/ name: '', email: '', role: '2', password: '', confirmPassword: '', planId: decodedPlanId, /* ---- Company Field ---- */ companyName: '', medRecId: '', medRecTitle: '', licenseNumber: '', licenseExpirationDate: '', medCertificatePath: '', recCertificatePath: '', medRecCertificatePath: '', resaleLicensePath: '', address: '', selectedState: '', zipCode: '', phoneNumber: '', //contactNumber: '', /* ---- Brand Field ---- */ brandName: '', year: '', website: '', profileDocument: '', description: '', avgProductRating: '', reviewsProductCount: '', avgDOTRating: '', reviewsDOTCount: '', avgGeneralRating: '', reviewsGeneralCount: '', avgRating: '', // reviewsCount: '', /* ----Card Details */ ...(decodedPlanId != 1 && { cardHolder: '', cardNumber: '', cardExpiry: '', cardCvc: '', }), }); const [maskInput, setMaskInput] = useState('9999 9999 9999 9999 9999'); const [passwordType, setPasswordType] = useState({ password: 'password', confirmPassword: 'password', }); const [card, setCard] = useState('unknown'); const [expiryError, setExpiryError] = useState(''); const [cardError, setCardError] = useState(''); const [cvvError, setCvvError] = useState(''); const [showLoading, setShowLoading] = useState(false); const [submitted, setSubmitted] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [states, setStates] = useState([]); const [medRecs, setMedRecs] = useState([]); const [recaptchaMessage, setRecaptchaMessage] = useState(''); useEffect(async () => { if (isLoggedIn()) { router.push('/my-account'); } const statesData = await Rest.axiosRequest(API.getStates, {}, 'GET'); if (statesData.status === 200) { const states = []; statesData.data.data.map((state) => { states.push({ id: state.id, value: state.id, name: state.name, label: state.name, }); }); setStates(states); } else { noti.notify(statesData.data.message, 'danger'); } const medRecData = await Rest.axiosRequest(API.getMedrec, {}, 'GET'); if (medRecData && medRecData.status === 200) { const medRecs = []; medRecData.data.data.map((medRec) => { medRecs.push({ id: medRec.id, value: medRec.id, name: medRec.title, label: medRec.title, }); }); setMedRecs(medRecs); } else { noti.notify(medRecData.data.message, 'danger'); } const autoCompleteAddress = new google.maps.places.Autocomplete( document.getElementById('address'), { componentRestrictions: { country: ['US'] } } ); google.maps.event.addListener( autoCompleteAddress, 'place_changed', function () { setState((prevState) => ({ ...prevState, address: locationRef.current.value, })); } ); }, []); const handleReCaptcha = () => { if (reCaptchaRef.current && reCaptchaRef.current.getValue()) { setRecaptchaMessage(''); } }; const handleChangeSelectState = (val) => { if (val) { setState((prevState) => ({ ...prevState, selectedState: val.value })); } else { setState((prevState) => ({ ...prevState, selectedState: '' })); } }; const handleChangeSelectLicenseType = (val) => { if (val) { setState((prevState) => ({ ...prevState, medRecId: val.value })); setState((prevState) => ({ ...prevState, medRecTitle: val.label })); } else { setState((prevState) => ({ ...prevState, medRecId: '' })); setState((prevState) => ({ ...prevState, medRecTitle: '' })); } }; const handleChangeDate = (date) => { setState((prevState) => ({ ...prevState, licenseExpirationDate: date.format('YYYY-MM-DD'), })); }; const medRecDocumentHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if ( fileType === 'application/pdf' || (fileCheck && fileCheck.length > 0) ) { setState((prevState) => ({ ...prevState, medRecCertificatePath: event.target.files[0], })); } else { event.target.value = null; setState((prevState) => ({ ...prevState, medRecCertificatePath: '' })); noti.notify('Please upload Image or PDF file only.', 'danger'); } } }; const resaledocumentHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if ( fileType === 'application/pdf' || (fileCheck && fileCheck.length > 0) ) { setState((prevState) => ({ ...prevState, resaleLicensePath: event.target.files[0], })); } else { event.target.value = null; setState((prevState) => ({ ...prevState, resaleLicensePath: '' })); notifier.notify('Please upload Image or PDF file only.', 'danger'); } } }; const logoHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if (fileCheck && fileCheck.length > 0) { setState((prevState) => ({ ...prevState, profileDocument: event.target.files[0], })); } else { event.target.value = null; setState((prevState) => ({ ...prevState, profileDocument: '' })); noti.notify('Please upload Image file only.', 'danger'); } } }; const onChangeHandler = async (event) => { const { name, value } = event.target; if (name === 'zipCode' && value < 1) { return; } setState((prevState) => ({ ...prevState, [name]: name === 'password' || name === 'confirmPassword' ? value.trim() : value, })); }; const cardChangeHandler = (event) => { setState((prevState) => ({ ...prevState, cardNumber: event.target.value })); let cardType = getCardTypeByValue(event.target.value) ? getCardTypeByValue(event.target.value).type : 'unknown'; setCard(cardType); CARD_TYPES.map((card) => { if (cardType === card.type) { setMaskInput(card.cardInputMask); } }); if (event.target.value.length != 0 && event.target.value.length < 15) { setCardError('Card number is invalid'); } else { setCardError(''); } }; const dateChangeHandler = (event) => { const expiryDate = event.target.value; const errorMsg = isExpiryInvalid(expiryDate); setState((prevState) => ({ ...prevState, cardExpiry: expiryDate })); if (!checkValidation.cardExpiry.isInvalid) { setExpiryError(errorMsg); } else { setExpiryError(''); } }; const csvChangeHandler = (event) => { const cvvData = event.target.value; const errorMsg = 'CVV is invalid'; if ( !checkValidation.cardCvc.isInvalid && cvvData !== '' && cvvData.length < 3 ) { setCvvError(errorMsg); } else { setState((prevState) => ({ ...prevState, cardCvc: event.target.value })); setCvvError(''); } // if (event.target.value !== null || event.target.value == '') { // setCardError(event.target.value) // } }; const sellerSignUp = async () => { const validation = validator.validate(state); setValidation(validation); setSubmitted(true); if ( validation.isValid && (expiryError === '' || expiryError === undefined) && cardError === '' && cvvError === '' ) { if (reCaptchaRef.current && reCaptchaRef.current.getValue()) { let formData = new FormData(); formData.append('name', state.name); formData.append('email', state.email); formData.append('role', state.role); formData.append('password', state.password); formData.append('confirmPassword', state.confirmPassword); formData.append('planId', decodedPlanId); /* ----- company ----- */ formData.append('companyName', state.companyName); formData.append('medRecId', state.medRecId); formData.append('licenseNumber', state.licenseNumber); formData.append('licenseExpirationDate', state.licenseExpirationDate); formData.append('medRecCertificatePath', state.medRecCertificatePath); formData.append('medCertificatePath', state.medCertificatePath); formData.append('recCertificatePath', state.recCertificatePath); formData.append('resaleLicensePath', state.resaleLicensePath); formData.append('address', state.address); formData.append('selectedState', state.selectedState); formData.append('zipCode', state.zipCode); formData.append('phoneNumber', state.phoneNumber); // formData.append('contactNumber', state.contactNumber); // formData.append('contactEmail', state.contactEmail); /* ----- brand ----- */ formData.append('brandName', state.brandName); formData.append('year', state.year); formData.append('website', state.website); formData.append('profileDocument', state.profileDocument); formData.append('description', state.description); formData.append('cardNumber', state.cardNumber); formData.append('cardExpiry', state.cardExpiry); formData.append('cardCvc', state.cardCvc); formData.append('cardHolder', state.cardHolder); setShowLoading(true); const jsonResponse = await Rest.axiosRequest( API.brandSignUp, formData, 'POST', true ); const response = jsonResponse; if (response.status === 201) { reCaptchaRef.current.reset(); setShowLoading(false); noti.notify('Signed up successfully you can log in now.', 'success'); router.push('/sign-in'); } else { setShowLoading(false); noti.notify(response.data.message, 'danger'); } } else { setRecaptchaMessage('Please verify captcha.'); } } }; let inputProps = { placeholder: 'Select Expiration Date', readOnly: true, }; const showHide = (fieldName) => { // e.preventDefault(); // e.stopPropagation(); setPasswordType((prevState) => ({ ...prevState, [fieldName]: prevState[fieldName] === 'password' ? 'text' : 'password', })); }; let checkValidation = submitted ? validator.validate(state) : validation; return ( <> <Meta title={`Sign Up | ${APP_NAME}`} keyword={`Sign Up | ${APP_NAME}`} description={`Sign Up | ${APP_NAME}`} /> <section className='bg-black'> <Container> <Row> <Col lg={8} md={10} className='mx-auto'> <Card className='card-post border-gray bs-none'> <Card.Body className='p-md-5 py-md-4 p-3'> <Card.Title className='text-center fs-26 fw-700 color-dcdcdc mb-12'> Sign Up </Card.Title> <p className='text-center fs-15 fw-500 color-dcdcdc mb-2'> Already have an account?{' '} <Link href='/sign-in'> <a className='color-22a612 fw-500'>Sign in</a> </Link> </p> <Nav variant='tabs' defaultActiveKey='seller/sign-up' className='custom_tabs mb-4' > <Link href='/sign-up'> <Nav.Item> <Nav.Link href='/sign-up'>Retailers</Nav.Link> </Nav.Item> </Link> <Link href='/seller/sign-up'> <Nav.Item> <Nav.Link href='/seller/sign-up' className='active'> Brands </Nav.Link> </Nav.Item> </Link> </Nav> <h3 className='fs-18 fw-700 color-dcdcdc mb-14'> Personal Details </h3> <Form className='form-dark'> <Row> <Col md={6}> <Form.Group className='mb-20'> <Form.Label>Name</Form.Label> <Form.Control type='text' name='name' onChange={onChangeHandler} placeholder='Enter Name' /> <div className={ checkValidation.name.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.name.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-20'> <Form.Label>Email</Form.Label> <Form.Control type='email' name='email' onChange={onChangeHandler} placeholder='Enter Email' /> <div className={ checkValidation.email.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.email.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-20'> <Form.Label>Password</Form.Label> <div className='form-icon form-icon-right'> <Form.Control type={passwordType['password']} name='password' onChange={onChangeHandler} value={state.password} placeholder='Enter Password' /> <span className='icon' onClick={() => showHide('password')} > {passwordType['password'] === 'password' ? ( <FontAwesomeIcon icon={faEye} /> ) : ( <FontAwesomeIcon icon={faEyeSlash} /> )} </span> </div> <div className={ checkValidation.password.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.password.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-3'> <Form.Label>Confirm Password</Form.Label> <div className='form-icon form-icon-right'> <Form.Control type={passwordType['confirmPassword']} name='confirmPassword' onChange={onChangeHandler} value={state.confirmPassword} placeholder='Enter Confirm Password' /> <span className='icon' onClick={() => showHide('confirmPassword')} > {passwordType['confirmPassword'] === 'password' ? ( <FontAwesomeIcon icon={faEye} /> ) : ( <FontAwesomeIcon icon={faEyeSlash} /> )} </span> </div> <div className={ checkValidation.confirmPassword.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.confirmPassword.message} </div> </div> </Form.Group> </Col> <Col md={12}> <h3 className='fs-18 fw-700 color-dcdcdc mb-17 mt-13 '> Company Details </h3> </Col> <Col md={6}> <Form.Group className='mb-20'> <Form.Label>Company Name</Form.Label> <Form.Control type='text' placeholder='Enter Company Name' name='companyName' onChange={onChangeHandler} /> <div className={ checkValidation.companyName.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.companyName.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>License Type</Form.Label> <Select classNamePrefix='react-select' styles={react_select_lg_Styles_light} options={medRecs.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val) => handleChangeSelectLicenseType(val) } placeholder='Select License Type' components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name='medRecId' isClearable={true} /> <div className={ checkValidation.medRecId.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.medRecId.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>License Number</Form.Label> <Form.Control type='text' name='licenseNumber' onChange={onChangeHandler} placeholder='Enter License Number' /> <div className={ checkValidation.licenseNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.licenseNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>License Expire Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={state.licenseExpirationDate} handleOnChange={(date) => handleChangeDate(date)} disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.licenseExpirationDate.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.licenseExpirationDate.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>License Document</Form.Label> <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='medRecCertificate' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*,application/pdf' name='medRecCertificate' className='uploadImg' id='medRecCertificate' onChange={(e) => medRecDocumentHandler(e)} /> <div className='my-3'> {state.medRecCertificatePath.name} </div> </div> <div className={ checkValidation.medRecCertificatePath.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.medRecCertificatePath.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>Resale License Document</Form.Label> <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='document_upload' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*,application/pdf' name='license-upload' className='uploadImg' id='document_upload' onChange={(e) => resaledocumentHandler(e)} /> <div className='my-3'> {state.resaleLicensePath.name} </div> </div> <div className={ checkValidation.resaleLicensePath.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.resaleLicensePath.message} </div> </div> </Form.Group> </Col> <Col md={12}> <Form.Group className='mb-4'> <Form.Label>Address</Form.Label> <div className='form-icon form-icon-right'> <Form.Control type='text' name='address' onChange={onChangeHandler} placeholder='Enter Address' ref={locationRef} id='address' /> <span className='icon'> <FontAwesomeIcon icon={faLocation} /> </span> </div> <div className={ checkValidation.address.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.address.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>State</Form.Label> <Select classNamePrefix='react-select' styles={react_select_lg_Styles_light} //value={state.selectedState} options={states.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val) => handleChangeSelectState(val)} placeholder='Select State' components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name='state_id' isClearable={true} /> <div className={ checkValidation.selectedState.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.selectedState.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>Zipcode</Form.Label> <Form.Control type='number' name='zipCode' onChange={onChangeHandler} placeholder='Enter Zip Code' min='1' /> <div className={ checkValidation.zipCode.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.zipCode.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-20'> <Form.Label>Phone Number</Form.Label> <InputMask name='phoneNumber' placeholder='Enter Phone Number' onChange={onChangeHandler} onBlur={onChangeHandler} maskChar={null} className='form-control' mask='9999999999' /> <div className={ checkValidation.phoneNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.phoneNumber.message} </div> </div> </Form.Group> </Col> <Col md={12}> <h3 className='fs-18 fw-700 color-dcdcdc mb-17 mt-13 '> Brand Details </h3> </Col> <Col md={6}> <Form.Group className='mb-20'> <Form.Label>Brand Name</Form.Label> <Form.Control type='text' placeholder='Enter Brand Name' name='brandName' onChange={onChangeHandler} /> <div className={ checkValidation.brandName.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.brandName.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label> Brand Establish Year<span>(optional)</span> </Form.Label> <Form.Control type='number' name='year' onChange={onChangeHandler} placeholder='Enter Brand Establish Year' min='0' /> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label> Website<span>(optional)</span> </Form.Label> <Form.Control type='text' name='website' onChange={onChangeHandler} placeholder='Enter Website' /> {/*<div className={ checkValidation.website.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.website.message} </div> </div>*/} </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-20'> <Form.Label> Logo<span>(optional)</span> </Form.Label> <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='document_upload' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*' name='profileDocument' className='uploadImg' id='document_upload' onChange={(e) => logoHandler(e)} /> <div className='my-3'> {state.profileDocument.name} </div> </div> </Form.Group> </Col> <Col md={12}> <Form.Group className='mb-4'> <Form.Label>Description</Form.Label> <Form.Control as='textarea' name='description' onChange={onChangeHandler} placeholder='Enter Description' style={{ height: '100px' }} /> </Form.Group> </Col> {/* <Col md={6}> <Form.Group className="mb-20"> <Form.Label> Company Contact Number <OverlayTrigger overlay={ <Tooltip id="tooltip-disabled"> This will be visible to other users on platform </Tooltip> } > <span className="d-inline-block"> <FontAwesomeIcon icon={faQuestionCircle} /> </span> </OverlayTrigger> </Form.Label> <Form.Control type="number" name="contactNumber" onChange={onChangeHandler} placeholder="Enter Company Contact Number" min="0" /> <div className={ checkValidation.contactNumber.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.contactNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className="mb-20"> <Form.Label> Company Contact Email <OverlayTrigger overlay={ <Tooltip id="tooltip-disabled"> This will be visible to other users on platform </Tooltip> } > <span className="d-inline-block"> <FontAwesomeIcon icon={faQuestionCircle} /> </span> </OverlayTrigger> </Form.Label> <Form.Control type="email" name="contactEmail" onChange={onChangeHandler} placeholder="Enter Company Contact Email" /> <div className={ checkValidation.contactEmail.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.contactEmail.message} </div> </div> </Form.Group> </Col> */} {decodedPlanId != 1 && ( <> <Col md={12}> <h3 className='fs-18 fw-700 color-dcdcdc mb-17 mt-13'> Payment Details </h3> </Col> {/* <Form> */} <Col md={6}> <Form.Group className='mb-4'> <Form.Label>Card Holder's Name</Form.Label> <Form.Control type='text' name='cardHolder' onChange={onChangeHandler} placeholder="Enter Card Holder's Name" />{' '} <div className={ checkValidation.cardHolder.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.cardHolder.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>Card Number</Form.Label> <div className='card_img'> <InputMask name='cardNumber' className='form-control' placeholder='Card number' mask={maskInput} maskChar={null} onChange={cardChangeHandler} onBlur={cardChangeHandler} /> <img src={`${cardImages[card ?? 'unknown'].src}`} style={{ width: '40px', height: 'auto' }} /> </div> {cardError && ( <div className='error'> {cardError} </div> )} <div className={ checkValidation.cardNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.cardNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label>Expiry</Form.Label> <InputMask name='cardExpiry' className='form-control' mask='99/99' maskChar={null} placeholder='MM / YY' onChange={dateChangeHandler} onBlur={dateChangeHandler} /> {expiryError && ( <div className='error'> {expiryError} </div> )} <div className={ checkValidation.cardExpiry.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.cardExpiry.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4'> <Form.Label> CVV <OverlayTrigger overlay={ <Tooltip id='tooltip-disabled'> CVV number on the back of the card </Tooltip> } > <span className='d-inline-block'> <FontAwesomeIcon icon={faQuestionCircle} /> </span> </OverlayTrigger> </Form.Label> <InputMask name='cardCvc' maskChar={null} //maskPlaceholder={null} className='form-control' mask='999' placeholder='CVV' onChange={csvChangeHandler} onBlur={csvChangeHandler} /> {cvvError && ( <div className='error'> {cvvError} </div> )} <div className={ checkValidation.cardCvc.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.cardCvc.message} </div> </div> </Form.Group> </Col> </> )} </Row> <Row> <Col md={6}> <Form.Group className='mb-4'> <div className='recaptcha'> <ReCAPTCHA ref={reCaptchaRef} sitekey={RECAPTCHA_SITE_KEY} onChange={handleReCaptcha} /> </div> <div className='error'>{recaptchaMessage}</div> </Form.Group> </Col> <Col md={6}> <Form.Group className='mb-4 text-end'> <Button variant='primary' //type="submit" className='btn-wh-180-56 btn-rounded btn-right-icons' onClick={!showLoading ? sellerSignUp : null} disabled={showLoading} > {showLoading ? ( <Spinner animation='border' /> ) : ( 'Sign Up' )} <span className='color-22a612'> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </Form.Group> </Col> <Col md={12}> <hr></hr> <Form.Group className='text-center'> <div className='fs-16 fw-700 color-dcdcdc mb-17 mt-13 text-center'> Supported Cards </div> <ul className='nav justify-content-center'> <li className='mx-2'> <img src={'/assets/images/cards/Visa.png'} alt='Visa' width={40} /> </li> <li className='mx-2'> <img src={'/assets/images/cards/AmericanExpress.png'} alt='American Express' width={40} /> </li> <li className='mx-2'> <img src={'/assets/images/cards/Discover.png'} alt='Discover' width={40} /> </li> <li className='mx-2'> <img src={'/assets/images/cards/MasterCard.png'} alt='MasterCard' width={40} /> </li> </ul> </Form.Group> </Col> <Col md={12}> {!checkValidation.isValid ? ( <div className='error text-center'> You have missed to provide details for some mandatory fields </div> ) : null} </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default SellerSignStep2; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); if (isLoggedIn) { return { redirect: { destination: '/' }, }; } return { props: {}, }; }
0
/content/gmx-projects/gmx-admin/frontend/pages
/content/gmx-projects/gmx-admin/frontend/pages/deals/index.js
import React, { useEffect, useState, createContext } from 'react'; import { Card, Col, Container, Row, Form, Button, OverlayTrigger, Tooltip, } from 'react-bootstrap'; import Link from 'next/link'; import { useRouter } from 'next/router'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faCirclePlus, faEdit, faMagnifyingGlass, faTimes, faTrash, faTrashAlt, } from '@fortawesome/free-solid-svg-icons'; import API from '../../config/endpoints.config'; import Rest from '../../config/rest.config'; import Notifier from '../../components/Notifier'; import Select from 'react-select'; import { DropdownIndicator, react_select_xs_Styles, } from '../../components/DropDown'; import ReactPaginate from 'react-paginate'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { contextCookie } from '../../services/Auth'; import Meta from '../../components/Meta'; import { APP_NAME } from '../../config/server.config'; import { Table as ResponsiveTable, Thead, Tbody, Tr, Th, Td, } from 'react-super-responsive-table'; import { Helper } from '../../services/Helper'; import moment from 'moment'; import { CustomLadda } from '../../components/CustomLadda'; const baseColor = '#202020'; const highlightColor = '#444'; function Deals(props) { const noti = new Notifier(); const router = useRouter(); const [params, setParams] = useState({ offset: props.queryString.offset ?? 0, }); const [showSkeleton, setShowSkeleton] = useState(true); const [isDeleteLoading, setIsDeleteLoading] = useState({}); const [offers, setOffers] = useState([]); const [limit, setLimit] = useState(10); const [totalPages, setTotalPages] = useState(); useEffect(async () => { setShowSkeleton(true); const response = await Rest.axiosRequest( API.offers + '?' + `limit=${limit}&` + new URLSearchParams(params).toString(), {}, 'GET' ); if (response.status === 200) { setOffers(response.data.data.offers); setTotalPages(response.data.data.totalPages); } else { noti.notify(response.data.message, 'danger'); } setShowSkeleton(false); }, [new URLSearchParams(params).toString(), isDeleteLoading]); const handlePageChange = (event) => { setParams((prevState) => ({ ...prevState, offset: event.selected })); }; const handleDelete = async (slug) => { setIsDeleteLoading((prevState) => ({ ...prevState, [slug]: !prevState[slug], })); const response = await Rest.axiosRequest( API.offers + '/' + slug, {}, 'DELETE' ); if (response.data.status) { setIsDeleteLoading({}); noti.notify(response.data.message, 'success'); } else { setIsDeleteLoading({}); noti.notify(response.data.message, 'danger'); } }; return ( <> <Meta title={`Deals | ${APP_NAME}`} keywords={'Deals'} description={'Deals'} /> <section className="bg-black p-30-0-60"> <Container> <Row> <Col lg={12} className="mx-auto"> <Card className="card-dark border-gray p-8-21-30 br-10"> <Card.Header className="d-flex justify-content-between align-items-center border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-6"> <Card.Title className="fs-18 fw-600 color-dcdcdc mb-0"> Deals </Card.Title> <Link href="/deals/discount/add"> <a className="btn btn-primary btn-wh-130-38 br-6"> <span className="me-2"> <FontAwesomeIcon icon={faCirclePlus} /> </span> Add Discount Deal </a> </Link> <Link href="/deals/bulk-order/add"> <a className="btn btn-primary btn-wh-130-38 br-6"> <span className="me-2"> <FontAwesomeIcon icon={faCirclePlus} /> </span> Add Bulk Order Deal </a> </Link> <Link href="/block-retailers"> <a className="btn btn-primary btn-wh-130-38 br-6"> <span className="me-2"> <FontAwesomeIcon icon={faCirclePlus} /> </span> Block Price Viewing and Ordering </a> </Link> </Card.Header> <Card.Body className="p-0"> <div className="table-wrap CustomScrollbar CustomScrollbarY"> <ResponsiveTable className="table table-bordered table-hover table-dark form-dark" id="seller-offer" > <Thead> <Tr> <Th width="300px">Deal Title</Th> <Th width="100px">Type</Th> <Th width="100px">Applies to</Th> <Th width="100px">Category</Th> <Th width="100px">Product</Th> <Th width="100px">Retailer</Th> <Th width="100px">Start Date</Th> <Th width="100px">End Date</Th> <Th width="100px">Discount</Th> <Th width="180px">Action</Th> </Tr> </Thead> <Tbody> {showSkeleton ? ( [...Array(5)].map((arrayData, index) => { return ( <Tr key={index + 'loader'}> {[...Array(11)].map((data, sIndex) => { return ( <Td key={sIndex + 'skeleton'}> <SkeletonTheme baseColor={baseColor} highlightColor={highlightColor} > <Skeleton /> </SkeletonTheme> </Td> ); })} </Tr> ); }) ) : offers.length ? ( offers.map((offer, i) => { const offerSlug = offer.offerType == '1' ? 'discount' : 'bulk-order'; return ( <Tr> <Td> <Link href={`/deals/${offerSlug}/edit/${offer.slug}`} > <a className="text-white"> <b> {Helper.niceString( offer.title, 20, true )} </b> </a> </Link> </Td> <Td> {offer.offerType == '1' ? 'Discount' : 'Bulk Order'} </Td> <Td> {offer.orderType == '1' ? 'Per Package' : 'Per Order'} </Td> <Td> {offer.categories ? offer.categories.split(',').length : '0'} </Td> <Td> {offer.originalProducts ? offer?.originalProducts?.split(',').length : '0'} </Td> <Td> {offer.originalRetailers ? offer?.originalRetailers?.split(',') .length : '0'} </Td> <Td> {offer.startDate ? moment(offer.startDate).format( "DD MMM 'YY" ) : ''} </Td> <Td> {offer.isInfinite == '1' ? 'Infinite' : moment(offer.endDate).format( "DD MMM 'YY" )} </Td> <Td>{offer.displayPrice}</Td> <Td> <Link href={`/deals/${offerSlug}/edit/${offer.slug}`} > <a className="action-btn color-22a612"> <FontAwesomeIcon icon={faEdit} /> </a> </Link> <CustomLadda className="action-btn color-f32c2c bg-black" onClick={() => handleDelete(offer.slug)} disabled={isDeleteLoading[offer.slug]} > <FontAwesomeIcon icon={faTrashAlt} /> </CustomLadda> </Td> </Tr> ); }) ) : ( <Tr> <Td className="text-center" colSpan={10}> No records found! </Td> </Tr> )} </Tbody> </ResponsiveTable> </div> <div className="mt-5 d-flex justify-content-center"> {totalPages > 1 ? ( <ReactPaginate previousLabel={ <i className="fas fa-long-arrow-alt-left"></i> } nextLabel={ <i className="fas fa-long-arrow-alt-right"></i> } pageClassName="page-item" pageLinkClassName="page-link" previousClassName="page-item prev-item" previousLinkClassName="page-link" nextClassName="page-item next-item" nextLinkClassName="page-link" breakLabel="..." breakClassName="page-item" breakLinkClassName="page-link" pageCount={totalPages} //marginPagesDisplayed={1} pageRangeDisplayed={5} onPageChange={handlePageChange} containerClassName="pagination" activeClassName="active" forcePage={parseInt(params.offset)} /> ) : null} </div> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default Deals; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); if (!isLoggedIn) { return { redirect: { destination: '/' }, }; } return { props: { queryString: context.query, }, }; }
0
/content/gmx-projects/gmx-admin/frontend/pages/deals
/content/gmx-projects/gmx-admin/frontend/pages/deals/discount/add.js
import React, { useEffect, useState } from 'react'; import Link from 'next/link'; import { useRouter } from 'next/router'; import { Card, Col, Container, Row, Form, Button, Spinner, } from 'react-bootstrap'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faAngleRight } from '@fortawesome/free-solid-svg-icons'; import 'react-dropzone-uploader/dist/styles.css'; import API from '../../../config/endpoints.config'; import FormValidator from '../../../components/FormValidator'; import moment from 'moment'; import 'react-datetime/css/react-datetime.css'; import Select from 'react-select'; import { DropdownIndicator, react_select_lg_Styles, } from '../../../components/DropDown'; import Rest from '../../../config/rest.config'; import Notifier from '../../../components/Notifier'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { SkeletonOptions } from '../../../services/SkeletonOptions'; import { APP_NAME } from '../../../config/server.config'; import Meta from '../../../components/Meta'; import CustomDatePicker from '../../../components/CustomDatePicker'; import { MultiSelect } from 'react-multi-select-component'; function AddDiscountDeal() { const router = useRouter(); const noti = new Notifier(); const isInfiniteMatch = () => { if (discountData.endDate !== '' || discountData.isInfinite === true) { return false; } else { return true; } }; const validator = new FormValidator([ { field: 'title', method: 'isEmpty', validWhen: false, message: 'Please enter product name.', }, { field: 'price', method: 'isEmpty', validWhen: false, message: 'Please enter discount amount.', }, { field: 'orderType', method: 'isEmpty', validWhen: false, message: 'Please select discount applies to.', }, { field: 'categoryIds', method: 'isEmpty', validWhen: false, message: 'Please select category.', }, { field: 'startDate', method: 'isEmpty', validWhen: false, message: 'Please select start date.', }, { field: 'endDate', method: isInfiniteMatch, validWhen: false, message: 'Please select end date.', }, ]); const [discountData, setDiscountData] = useState({ title: '', price: '', orderType: '', categoryIds: [], productIds: [], retailerIds: [], startDate: '', endDate: '', isInfinite: false, }); const [showLoading, setShowLoading] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [submitted, setSubmitted] = useState(false); const [orderType] = useState([ { id: 1, value: 1, name: 'Per package', label: 'Per package', }, { id: 2, value: 2, name: 'Per order', label: 'Per order', }, ]); const [categories, setCategories] = useState([]); const [products, setProducts] = useState([]); const [retailers, setRetailers] = useState([]); const [showSkeleton, setShowSkeleton] = useState(true); useEffect(async () => { const categoriesData = await Rest.axiosRequest( `${API.offers}/categories`, {}, 'GET' ); if (categoriesData.status === 200) { const categories = []; categoriesData.data.data.map((category) => { categories.push({ id: category.id, value: category.id, name: category.title, label: category.title, }); }); setCategories(categories); } const retailersData = await Rest.axiosRequest( `${API.offers}/retailers`, {}, 'GET' ); if (retailersData.status === 200) { const retailers = []; retailersData.data.data.map((retailer) => { retailers.push({ id: retailer.id, value: retailer.id, name: retailer.fullName, label: retailer.fullName, }); }); setRetailers(retailers); } setShowSkeleton(false); }, []); const handleChange = (event) => { const { name, value } = event.target; setDiscountData((prevState) => ({ ...prevState, [name]: value })); }; const handleChangeSelect = async (val, name) => { if (val) { setDiscountData((prevState) => ({ ...prevState, [name]: val.map((item) => item.value), })); } else { setDiscountData((prevState) => ({ ...prevState, [name]: [], })); } if (name === 'categoryIds') { const productsData = await Rest.axiosRequest( `${API.offers}/products`, { categoryIds: val?.map((item) => item.value) }, 'POST' ); if (productsData.status === 201) { const products = []; productsData.data.data.map((product) => { products.push({ id: product.id, value: product.id, name: product.title, label: product.title, }); }); setProducts(products); } } }; const handleSelectChangeOrderType = async (val, e) => { if (val) { setDiscountData((prevState) => ({ ...prevState, [e.name]: val.value })); } else { setDiscountData((prevState) => ({ ...prevState, [e.name]: '' })); } }; const handleChangeDate = (date, name) => { setDiscountData((prevState) => ({ ...prevState, [name]: date instanceof moment ? date.format('YYYY-MM-DD') : '', })); if (name === 'endDate') { setDiscountData((prevState) => ({ ...prevState, isInfinite: false })); } }; const handleInfinite = (isShowStock) => { const { name, checked } = isShowStock.target; setDiscountData((prevState) => ({ ...prevState, [name]: checked, })); if (checked) { setDiscountData((prevState) => ({ ...prevState, endDate: checked, })); } else { setDiscountData((prevState) => ({ ...prevState, endDate: '', })); } }; const handleSubmit = async (e) => { e.preventDefault(); const validation = validator.validate(discountData); setValidation(validation); setSubmitted(true); if (validation.isValid) { setShowLoading(true); const response = await Rest.axiosRequest( API.discount, discountData, 'POST' ); if (response.status === 200) { noti.notify(response.data.message, 'success'); setSubmitted(false); router.push('/deals'); } else { noti.notify(response.data.message, 'danger'); } setShowLoading(false); } }; let checkValidation = submitted ? validator.validate(discountData) : validation; return ( <> <Meta title={`Add Discount Deal | ${APP_NAME}`} keywords={''} description={''} /> <section className="bg-black p-30-0-60"> <Container> <Row> <Col lg={12} className="mx-auto"> <Card className="card-dark border-gray p-15-20-30 br-10"> <Card.Header className="border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-13"> <Card.Title className="fs-18 fw-600 color-white mb-0"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={150} /> </SkeletonTheme> ) : ( 'Add Discount Deal' )} </Card.Title> </Card.Header> <Card.Body className="p-0"> <Form> <Row> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Deal Title</Form.Label> <Form.Control type="text" placeholder="Enter Deal Title" value={discountData.title} name="title" onChange={handleChange} /> <div className={ checkValidation.title.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.title.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Amount</Form.Label> <Form.Control type="number" placeholder="Enter Discount Amount" value={discountData.price} name="price" onChange={handleChange} /> <div className={ checkValidation.price.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.price.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Applies To</Form.Label> <Select classNamePrefix="react-select" className="react-select-lg" styles={react_select_lg_Styles} value={orderType.filter( (item) => item.id == discountData.orderType )} options={orderType.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val, e) => handleSelectChangeOrderType(val, e) } placeholder="Discount Applies To" components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name="orderType" isClearable={true} /> <div className={ checkValidation.orderType.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.orderType.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Category</Form.Label> <MultiSelect options={categories.map(({ id, name }) => ({ value: id, label: name, }))} value={categories.filter((item) => discountData?.categoryIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'categoryIds') } labelledBy="Category" /> <div className={ checkValidation.categoryIds.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.categoryIds.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Product</Form.Label> <MultiSelect options={products.map(({ id, name }) => ({ value: id, label: name, }))} value={products.filter((item) => discountData?.productIds?.includes(item.value) )} onChange={(val) => handleChangeSelect(val, 'productIds') } labelledBy="Product" overrideStrings={{ selectSomeItems: discountData?.categoryIds?.length > 0 ? 'Select...' : 'Please select category first', }} /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Retailer</Form.Label> <MultiSelect options={retailers.map(({ id, name }) => ({ value: id, label: name, }))} value={retailers.filter((item) => discountData?.retailerIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'retailerIds') } labelledBy="Retailer" /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Start Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ discountData.startDate ? moment(discountData.startDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'startDate') } disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.startDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.startDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>End Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ discountData.endDate ? moment(discountData.endDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'endDate') } disableFutureDates={false} disablePastDates={true} /> <Form.Check type="checkbox" name="isInfinite" label="Infinite" id="isShowStock" className="fw-500 color-white" value={!discountData.isInfinite} checked={discountData.isInfinite} onChange={handleInfinite} /> <div className={ checkValidation.endDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.endDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={12}> <div className="d-flex justify-content-center align-items-center mt-6 mbottom-5 flex-wrap"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={300} height={50} inline={true} count={2} className="m-10" /> </SkeletonTheme> ) : ( <> <Link href="/deals"> <a className="btn btn-wh-160-54 btn-rounded btn-secondary btn-right-icons m-10"> Cancel <span> <FontAwesomeIcon icon={faAngleRight} /> </span> </a> </Link> <Button variant="primary" type="submit" className="btn-wh-150-54 btn-rounded btn-right-icons m-10" onClick={!showLoading ? handleSubmit : null} disabled={showLoading} > {showLoading ? ( <Spinner animation="border" /> ) : ( 'Save' )} <span className="color-22a612"> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </> )} </div> </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default AddDiscountDeal;
0
/content/gmx-projects/gmx-admin/frontend/pages/deals/discount
/content/gmx-projects/gmx-admin/frontend/pages/deals/discount/edit/[slug].js
import React, { useEffect, useState } from 'react'; import Link from 'next/link'; import { useRouter } from 'next/router'; import { Card, Col, Container, Row, Form, Button, Spinner, } from 'react-bootstrap'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faAngleRight } from '@fortawesome/free-solid-svg-icons'; import 'react-dropzone-uploader/dist/styles.css'; import API from '../../../../config/endpoints.config'; import FormValidator from '../../../../components/FormValidator'; import moment from 'moment'; import 'react-datetime/css/react-datetime.css'; import Select from 'react-select'; import { DropdownIndicator, react_select_lg_Styles, } from '../../../../components/DropDown'; import Rest from '../../../../config/rest.config'; import Notifier from '../../../../components/Notifier'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { SkeletonOptions } from '../../../../services/SkeletonOptions'; import { APP_NAME } from '../../../../config/server.config'; import Meta from '../../../../components/Meta'; import CustomDatePicker from '../../../../components/CustomDatePicker'; import { MultiSelect } from 'react-multi-select-component'; import { contextCookie } from '../../../../services/Auth'; function EditDiscountDeal({ editDiscountDealData }) { const router = useRouter(); const noti = new Notifier(); const { slug } = router.query; const isInfiniteMatch = () => { if ( discountData.endDate !== '' || discountData.isInfinite === '1' || discountData.isInfinite === true ) { return false; } else { return true; } }; const validator = new FormValidator([ { field: 'title', method: 'isEmpty', validWhen: false, message: 'Please enter product name.', }, { field: 'price', method: 'isEmpty', validWhen: false, message: 'Please enter discount amount.', }, { field: 'orderType', method: 'isEmpty', validWhen: false, message: 'Please select discount applies to.', }, { field: 'categoryIds', method: 'isEmpty', validWhen: false, message: 'Please select category.', }, { field: 'startDate', method: 'isEmpty', validWhen: false, message: 'Please select start date.', }, { field: 'endDate', method: isInfiniteMatch, validWhen: false, message: 'Please select end date.', }, ]); const [discountData, setDiscountData] = useState({ title: editDiscountDealData?.title, price: editDiscountDealData?.price, orderType: editDiscountDealData?.orderType, categoryIds: editDiscountDealData?.categories ? editDiscountDealData?.categories : [], productIds: editDiscountDealData?.originalProducts ? editDiscountDealData?.originalProducts : [], retailerIds: editDiscountDealData?.originalRetailers ? editDiscountDealData?.originalRetailers : [], startDate: editDiscountDealData?.startDate, endDate: editDiscountDealData?.isInfinite !== '1' ? editDiscountDealData?.endDate : null, isInfinite: editDiscountDealData?.isInfinite, }); const [showLoading, setShowLoading] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [submitted, setSubmitted] = useState(false); const [orderType] = useState([ { id: 1, value: 1, name: 'Per package', label: 'Per package', }, { id: 2, value: 2, name: 'Per order', label: 'Per order', }, ]); const [categories, setCategories] = useState([]); const [products, setProducts] = useState([]); const [retailers, setRetailers] = useState([]); const [showSkeleton, setShowSkeleton] = useState(true); useEffect(async () => { const categoriesData = await Rest.axiosRequest( `${API.offers}/categories`, {}, 'GET' ); if (categoriesData.status === 200) { const categories = []; categoriesData.data.data.map((category) => { categories.push({ id: category.id, value: category.id, name: category.title, label: category.title, }); }); setCategories(categories); } const productsData = await Rest.axiosRequest( `${API.offers}/products`, { categoryIds: discountData?.categoryIds?.split(',') }, 'POST' ); if (productsData.status === 201) { const products = []; productsData.data.data.map((product) => { products.push({ id: product.id, value: product.id, name: product.title, label: product.title, }); }); setProducts(products); } const retailersData = await Rest.axiosRequest( `${API.offers}/retailers`, {}, 'GET' ); if (retailersData.status === 200) { const retailers = []; retailersData.data.data.map((retailer) => { retailers.push({ id: retailer.id, value: retailer.id, name: retailer.fullName, label: retailer.fullName, }); }); setRetailers(retailers); } else { noti.notify(retailersData.data.message, 'danger'); } setShowSkeleton(false); }, []); const handleChange = (event) => { const { name, value } = event.target; setDiscountData((prevState) => ({ ...prevState, [name]: value })); }; const handleChangeSelect = async (val, name) => { if (val) { setDiscountData((prevState) => ({ ...prevState, [name]: val.map((item) => item.value), })); } else { setDiscountData((prevState) => ({ ...prevState, [name]: [], })); } if (name === 'categoryIds') { const productsData = await Rest.axiosRequest( `${API.offers}/products`, { categoryIds: val?.map((item) => item.value) }, 'POST' ); if (productsData.status === 201) { const products = []; productsData.data.data.map((product) => { products.push({ id: product.id, value: product.id, name: product.title, label: product.title, }); }); setProducts(products); } } }; const handleSelectChangeOrderType = async (val, e) => { if (val) { setDiscountData((prevState) => ({ ...prevState, [e.name]: val.value })); } else { setDiscountData((prevState) => ({ ...prevState, [e.name]: '' })); } }; const handleChangeDate = (date, name) => { setDiscountData((prevState) => ({ ...prevState, [name]: date instanceof moment ? date.format('YYYY-MM-DD') : '', })); if (name === 'endDate') { setDiscountData((prevState) => ({ ...prevState, isInfinite: false, })); } }; const handleInfinite = (isShowStock) => { const { name, checked } = isShowStock.target; setDiscountData((prevState) => ({ ...prevState, [name]: checked, })); if (checked) { setDiscountData((prevState) => ({ ...prevState, endDate: checked, })); } else { setDiscountData((prevState) => ({ ...prevState, endDate: '', })); } }; const handleSubmit = async (e) => { e.preventDefault(); const validation = validator.validate(discountData); setValidation(validation); setSubmitted(true); if (validation.isValid) { setShowLoading(true); const response = await Rest.axiosRequest( API.discount + '/' + slug, discountData, 'PUT' ); if (response.status === 200) { noti.notify(response.data.message, 'success'); setSubmitted(false); router.push('/deals'); } else { noti.notify(response.data.message, 'danger'); } setShowLoading(false); } }; let checkValidation = submitted ? validator.validate(discountData) : validation; return ( <> <Meta title={`Edit Discount Deal | ${APP_NAME}`} keywords={''} description={''} /> <section className="bg-black p-30-0-60"> <Container> <Row> <Col lg={12} className="mx-auto"> <Card className="card-dark border-gray p-15-20-30 br-10"> <Card.Header className="border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-13"> <Card.Title className="fs-18 fw-600 color-white mb-0"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={150} /> </SkeletonTheme> ) : ( 'Edit Discount Deal' )} </Card.Title> </Card.Header> <Card.Body className="p-0"> <Form> <Row> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Deal Title</Form.Label> <Form.Control type="text" placeholder="Enter Deal Title" value={discountData.title} name="title" onChange={handleChange} /> <div className={ checkValidation.title.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.title.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Amount</Form.Label> <Form.Control type="number" placeholder="Enter Discount Amount" value={discountData.price} name="price" onChange={handleChange} /> <div className={ checkValidation.price.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.price.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Applies To</Form.Label> <Select classNamePrefix="react-select" className="react-select-lg" styles={react_select_lg_Styles} value={orderType.filter( (item) => item.id == discountData.orderType )} options={orderType.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val, e) => handleSelectChangeOrderType(val, e) } placeholder="Discount Applies To" components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name="orderType" isClearable={true} /> <div className={ checkValidation.orderType.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.orderType.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Category</Form.Label> <MultiSelect options={categories.map(({ id, name }) => ({ value: id, label: name, }))} value={categories.filter((item) => discountData?.categoryIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'categoryIds') } labelledBy="Category" /> <div className={ checkValidation.categoryIds.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.categoryIds.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Product</Form.Label> <MultiSelect options={products.map(({ id, name }) => ({ value: id, label: name, }))} value={products.filter((item) => discountData?.productIds?.includes(item.value) )} onChange={(val) => handleChangeSelect(val, 'productIds') } labelledBy="Product" overrideStrings={{ selectSomeItems: discountData?.categoryIds?.length > 0 ? 'Select...' : 'Please select category first', }} /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Retailer</Form.Label> <MultiSelect options={retailers.map(({ id, name }) => ({ value: id, label: name, }))} value={retailers.filter((item) => discountData?.retailerIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'retailerIds') } labelledBy="Retailer" /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Start Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ discountData.startDate ? moment(discountData.startDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'startDate') } disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.startDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.startDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>End Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ discountData.endDate ? moment(discountData.endDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'endDate') } disableFutureDates={false} disablePastDates={true} /> <Form.Check type="checkbox" name="isInfinite" label="Infinite" id="isShowStock" className="fw-500 color-white" value={!discountData.isInfinite} checked={discountData.isInfinite} onChange={handleInfinite} /> <div className={ checkValidation.endDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.endDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={12}> <div className="d-flex justify-content-center align-items-center mt-6 mbottom-5 flex-wrap"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={300} height={50} inline={true} count={2} className="m-10" /> </SkeletonTheme> ) : ( <> <Link href="/deals"> <a className="btn btn-wh-160-54 btn-rounded btn-secondary btn-right-icons m-10"> Cancel <span> <FontAwesomeIcon icon={faAngleRight} /> </span> </a> </Link> <Button variant="primary" type="submit" className="btn-wh-150-54 btn-rounded btn-right-icons m-10" onClick={!showLoading ? handleSubmit : null} disabled={showLoading} > {showLoading ? ( <Spinner animation="border" /> ) : ( 'Save' )} <span className="color-22a612"> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </> )} </div> </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default EditDiscountDeal; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); if (!isLoggedIn) { return { redirect: { destination: '/' }, }; } try { const { slug } = context.params; const token = contextCookie(context, 'token'); let editDiscountDealData = {}; const response = await Rest.axiosRequest( API.discount + '/' + slug, {}, 'GET', false, token ); if (response.status === 200) { editDiscountDealData = response.data.data; } else { return { notFound: true, }; } return { props: { editDiscountDealData, }, }; } catch (e) { return { redirect: { destination: '/deals' }, }; } }
0
/content/gmx-projects/gmx-admin/frontend/pages/deals
/content/gmx-projects/gmx-admin/frontend/pages/deals/bulk-order/add.js
import React, { useEffect, useState } from 'react'; import Link from 'next/link'; import { useRouter } from 'next/router'; import { Card, Col, Container, Row, Form, Button, Spinner, } from 'react-bootstrap'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faAngleRight } from '@fortawesome/free-solid-svg-icons'; import 'react-dropzone-uploader/dist/styles.css'; import API from '../../../config/endpoints.config'; import FormValidator from '../../../components/FormValidator'; import moment from 'moment'; import 'react-datetime/css/react-datetime.css'; import Select from 'react-select'; import { DropdownIndicator, react_select_lg_Styles, } from '../../../components/DropDown'; import Rest from '../../../config/rest.config'; import Notifier from '../../../components/Notifier'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { SkeletonOptions } from '../../../services/SkeletonOptions'; import { APP_NAME } from '../../../config/server.config'; import Meta from '../../../components/Meta'; import CustomDatePicker from '../../../components/CustomDatePicker'; import { MultiSelect } from 'react-multi-select-component'; function AddBulkOrderDeal() { const router = useRouter(); const noti = new Notifier(); const isInfiniteMatch = () => { if (bulkOrderData.endDate !== '' || bulkOrderData.isInfinite === true) { return false; } else { return true; } }; const validator = new FormValidator([ { field: 'title', method: 'isEmpty', validWhen: false, message: 'Please enter product name.', }, { field: 'price', method: 'isEmpty', validWhen: false, message: 'Please enter discount amount.', }, { field: 'orderType', method: 'isEmpty', validWhen: false, message: 'Please select discount applies to.', }, { field: 'minQty', method: 'isEmpty', validWhen: false, message: 'Please enter minimum package for order.', }, { field: 'maxQty', method: 'isEmpty', validWhen: false, message: 'Please enter maximum package for order.', }, { field: 'categoryIds', method: 'isEmpty', validWhen: false, message: 'Please select category.', }, { field: 'startDate', method: 'isEmpty', validWhen: false, message: 'Please select start date.', }, { field: 'endDate', method: isInfiniteMatch, validWhen: false, message: 'Please select end date.', }, ]); const [bulkOrderData, setBulkOrderData] = useState({ title: '', price: '', orderType: '', minQty: '', maxQty: '', categoryIds: [], productIds: [], retailerIds: [], startDate: '', endDate: '', isInfinite: false, }); const [showLoading, setShowLoading] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [submitted, setSubmitted] = useState(false); const [orderType] = useState([ { id: 1, value: 1, name: 'Per package', label: 'Per package', }, { id: 2, value: 2, name: 'Per order', label: 'Per order', }, ]); const [categories, setCategories] = useState([]); const [products, setProducts] = useState([]); const [retailers, setRetailers] = useState([]); const [showSkeleton, setShowSkeleton] = useState(true); useEffect(async () => { const categoriesData = await Rest.axiosRequest( `${API.offers}/categories`, {}, 'GET' ); if (categoriesData.status === 200) { const categories = []; categoriesData.data.data.map((category) => { categories.push({ id: category.id, value: category.id, name: category.title, label: category.title, }); }); setCategories(categories); } const retailersData = await Rest.axiosRequest( `${API.offers}/retailers`, {}, 'GET' ); if (retailersData.status === 200) { const retailers = []; retailersData.data.data.map((retailer) => { retailers.push({ id: retailer.id, value: retailer.id, name: retailer.fullName, label: retailer.fullName, }); }); setRetailers(retailers); } else { noti.notify(retailersData.data.message, 'danger'); } setShowSkeleton(false); }, []); const handleChange = (event) => { const { name, value } = event.target; setBulkOrderData((prevState) => ({ ...prevState, [name]: value })); }; const handleChangeSelect = async (val, name) => { if (val) { setBulkOrderData((prevState) => ({ ...prevState, [name]: val.map((item) => item.value), })); } else { setBulkOrderData((prevState) => ({ ...prevState, [name]: [], })); } if (name === 'categoryIds') { const productsData = await Rest.axiosRequest( `${API.offers}/products`, { categoryIds: val?.map((item) => item.value) }, 'POST' ); if (productsData.status === 201) { const products = []; productsData.data.data.map((product) => { products.push({ id: product.id, value: product.id, name: product.title, label: product.title, }); }); setProducts(products); } } }; const handleSelectChangeOrderType = async (val, e) => { if (val) { setBulkOrderData((prevState) => ({ ...prevState, [e.name]: val.value })); } else { setBulkOrderData((prevState) => ({ ...prevState, [e.name]: '' })); } }; const handleChangeDate = (date, name) => { setBulkOrderData((prevState) => ({ ...prevState, [name]: date instanceof moment ? date.format('YYYY-MM-DD') : '', })); if (name === 'endDate') { setBulkOrderData((prevState) => ({ ...prevState, isInfinite: false })); } }; const handleInfinite = (isShowStock) => { const { name, checked } = isShowStock.target; setBulkOrderData((prevState) => ({ ...prevState, [name]: checked, })); if (checked) { setBulkOrderData((prevState) => ({ ...prevState, endDate: checked, })); } else { setBulkOrderData((prevState) => ({ ...prevState, endDate: '', })); } }; const handleSubmit = async (e) => { e.preventDefault(); const validation = validator.validate(bulkOrderData); setValidation(validation); setSubmitted(true); if (validation.isValid) { setShowLoading(true); const response = await Rest.axiosRequest( API.bulkOrder, bulkOrderData, 'POST' ); if (response.status === 200) { noti.notify(response.data.message, 'success'); setSubmitted(false); router.push('/deals'); } else { noti.notify(response.data.message, 'danger'); } setShowLoading(false); } }; let checkValidation = submitted ? validator.validate(bulkOrderData) : validation; return ( <> <Meta title={`Add Bulk Order Deal | ${APP_NAME}`} keywords={''} description={''} /> <section className="bg-black p-30-0-60"> <Container> <Row> <Col lg={12} className="mx-auto"> <Card className="card-dark border-gray p-15-20-30 br-10"> <Card.Header className="border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-13"> <Card.Title className="fs-18 fw-600 color-white mb-0"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={150} /> </SkeletonTheme> ) : ( 'Add Bulk Order Deal' )} </Card.Title> </Card.Header> <Card.Body className="p-0"> <Form> <Row> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Deal Title</Form.Label> <Form.Control type="text" placeholder="Enter Deal Title" value={bulkOrderData.title} name="title" onChange={handleChange} /> <div className={ checkValidation.title.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.title.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Amount</Form.Label> <Form.Control type="number" placeholder="Enter Discount Amount" value={bulkOrderData.price} name="price" onChange={handleChange} /> <div className={ checkValidation.price.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.price.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Applies To</Form.Label> <Select classNamePrefix="react-select" className="react-select-lg" styles={react_select_lg_Styles} value={orderType.filter( (item) => item.id == bulkOrderData.orderType )} options={orderType.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val, e) => handleSelectChangeOrderType(val, e) } placeholder="Discount Applies To" components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name="orderType" isClearable={true} /> <div className={ checkValidation.orderType.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.orderType.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}></Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Minimum Package for Order</Form.Label> <Form.Control type="number" placeholder="Enter Minimum Package for Order" value={bulkOrderData.minQty} name="minQty" min={0} onChange={handleChange} /> <div className={ checkValidation.minQty.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.minQty.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Maximum Package for Order</Form.Label> <Form.Control type="number" placeholder="Enter Maximum Package for Order" value={bulkOrderData.maxQty} name="maxQty" min={0} onChange={handleChange} /> <div className={ checkValidation.maxQty.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.maxQty.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Category</Form.Label> <MultiSelect options={categories.map(({ id, name }) => ({ value: id, label: name, }))} value={categories.filter((item) => bulkOrderData?.categoryIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'categoryIds') } labelledBy="Category" /> <div className={ checkValidation.categoryIds.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.categoryIds.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}></Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Product</Form.Label> <MultiSelect options={products.map(({ id, name }) => ({ value: id, label: name, }))} value={products.filter((item) => bulkOrderData?.productIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'productIds') } labelledBy="Product" overrideStrings={{ selectSomeItems: bulkOrderData?.categoryIds?.length > 0 ? 'Select...' : 'Please select category first', }} /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Retailer</Form.Label> <MultiSelect options={retailers.map(({ id, name }) => ({ value: id, label: name, }))} value={retailers.filter((item) => bulkOrderData?.retailerIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'retailerIds') } labelledBy="Retailer" /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Start Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ bulkOrderData.startDate ? moment(bulkOrderData.startDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'startDate') } disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.startDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.startDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>End Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ bulkOrderData.endDate ? moment(bulkOrderData.endDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'endDate') } disableFutureDates={false} disablePastDates={true} /> <Form.Check type="checkbox" name="isInfinite" label="Infinite" id="isShowStock" className="fw-500 color-white" value={!bulkOrderData.isInfinite} checked={bulkOrderData.isInfinite} onChange={handleInfinite} /> <div className={ checkValidation.endDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.endDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={12}> <div className="d-flex justify-content-center align-items-center mt-6 mbottom-5 flex-wrap"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={300} height={50} inline={true} count={2} className="m-10" /> </SkeletonTheme> ) : ( <> <Link href="/deals"> <a className="btn btn-wh-160-54 btn-rounded btn-secondary btn-right-icons m-10"> Cancel <span> <FontAwesomeIcon icon={faAngleRight} /> </span> </a> </Link> <Button variant="primary" type="submit" className="btn-wh-150-54 btn-rounded btn-right-icons m-10" onClick={!showLoading ? handleSubmit : null} disabled={showLoading} > {showLoading ? ( <Spinner animation="border" /> ) : ( 'Save' )} <span className="color-22a612"> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </> )} </div> </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default AddBulkOrderDeal;
0
/content/gmx-projects/gmx-admin/frontend/pages/deals/bulk-order
/content/gmx-projects/gmx-admin/frontend/pages/deals/bulk-order/edit/[slug].js
import React, { useEffect, useState } from 'react'; import Link from 'next/link'; import { useRouter } from 'next/router'; import { Card, Col, Container, Row, Form, Button, Spinner, } from 'react-bootstrap'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faAngleRight } from '@fortawesome/free-solid-svg-icons'; import 'react-dropzone-uploader/dist/styles.css'; import API from '../../../../config/endpoints.config'; import FormValidator from '../../../../components/FormValidator'; import moment from 'moment'; import 'react-datetime/css/react-datetime.css'; import Select from 'react-select'; import { DropdownIndicator, react_select_lg_Styles, } from '../../../../components/DropDown'; import Rest from '../../../../config/rest.config'; import Notifier from '../../../../components/Notifier'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { SkeletonOptions } from '../../../../services/SkeletonOptions'; import { APP_NAME } from '../../../../config/server.config'; import Meta from '../../../../components/Meta'; import CustomDatePicker from '../../../../components/CustomDatePicker'; import { MultiSelect } from 'react-multi-select-component'; import { contextCookie } from '../../../../services/Auth'; function EditBulkOrder({ editBulkOrderData }) { const router = useRouter(); const noti = new Notifier(); const { slug } = router.query; const isInfiniteMatch = () => { if ( bulkOrderData.endDate !== '' || bulkOrderData.isInfinite === '1' || bulkOrderData.isInfinite === true ) { return false; } else { return true; } }; const validator = new FormValidator([ { field: 'title', method: 'isEmpty', validWhen: false, message: 'Please enter product name.', }, { field: 'price', method: 'isEmpty', validWhen: false, message: 'Please enter discount amount.', }, { field: 'orderType', method: 'isEmpty', validWhen: false, message: 'Please select discount applies to.', }, { field: 'minQty', method: 'isEmpty', validWhen: false, message: 'Please enter minimum package for order.', }, { field: 'maxQty', method: 'isEmpty', validWhen: false, message: 'Please enter maximum package for order.', }, { field: 'categoryIds', method: 'isEmpty', validWhen: false, message: 'Please select category.', }, { field: 'startDate', method: 'isEmpty', validWhen: false, message: 'Please select start date.', }, { field: 'endDate', method: isInfiniteMatch, validWhen: false, message: 'Please select end date.', }, ]); const [bulkOrderData, setBulkOrderData] = useState({ title: editBulkOrderData?.title, price: editBulkOrderData?.price, orderType: editBulkOrderData?.orderType, minQty: editBulkOrderData?.minQty ? editBulkOrderData?.minQty : '', maxQty: editBulkOrderData?.maxQty ? editBulkOrderData?.maxQty : '', categoryIds: editBulkOrderData?.categories ? editBulkOrderData?.categories : [], productIds: editBulkOrderData?.originalProducts ? editBulkOrderData?.originalProducts : [], retailerIds: editBulkOrderData?.originalRetailers ? editBulkOrderData?.originalRetailers : [], startDate: editBulkOrderData?.startDate, endDate: editBulkOrderData?.isInfinite !== '1' ? editBulkOrderData?.endDate : null, isInfinite: editBulkOrderData?.isInfinite, }); const [showLoading, setShowLoading] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [submitted, setSubmitted] = useState(false); const [orderType] = useState([ { id: 1, value: 1, name: 'Per package', label: 'Per package', }, { id: 2, value: 2, name: 'Per order', label: 'Per order', }, ]); const [categories, setCategories] = useState([]); const [products, setProducts] = useState([]); const [retailers, setRetailers] = useState([]); const [showSkeleton, setShowSkeleton] = useState(true); useEffect(async () => { const categoriesData = await Rest.axiosRequest( `${API.offers}/categories`, {}, 'GET' ); if (categoriesData.status === 200) { const categories = []; categoriesData.data.data.map((category) => { categories.push({ id: category.id, value: category.id, name: category.title, label: category.title, }); }); setCategories(categories); } const productsData = await Rest.axiosRequest( `${API.offers}/products`, { categoryIds: bulkOrderData?.categoryIds?.split(',') }, 'POST' ); if (productsData.status === 201) { const products = []; productsData.data.data.map((product) => { products.push({ id: product.id, value: product.id, name: product.title, label: product.title, }); }); setProducts(products); } const retailersData = await Rest.axiosRequest( `${API.offers}/retailers`, {}, 'GET' ); if (retailersData.status === 200) { const retailers = []; retailersData.data.data.map((retailer) => { retailers.push({ id: retailer.id, value: retailer.id, name: retailer.fullName, label: retailer.fullName, }); }); setRetailers(retailers); } else { noti.notify(retailersData.data.message, 'danger'); } setShowSkeleton(false); }, []); const handleChange = (event) => { const { name, value } = event.target; setBulkOrderData((prevState) => ({ ...prevState, [name]: value })); }; const handleChangeSelect = async (val, name) => { if (val) { setBulkOrderData((prevState) => ({ ...prevState, [name]: val.map((item) => item.value), })); } else { setBulkOrderData((prevState) => ({ ...prevState, [name]: [], })); } if (name === 'categoryIds') { const productsData = await Rest.axiosRequest( `${API.offers}/products`, { categoryIds: val?.map((item) => item.value) }, 'POST' ); if (productsData.status === 201) { const products = []; productsData.data.data.map((product) => { products.push({ id: product.id, value: product.id, name: product.title, label: product.title, }); }); setProducts(products); } } }; const handleSelectChangeOrderType = async (val, e) => { if (val) { setBulkOrderData((prevState) => ({ ...prevState, [e.name]: val.value })); } else { setBulkOrderData((prevState) => ({ ...prevState, [e.name]: '' })); } }; const handleChangeDate = (date, name) => { setBulkOrderData((prevState) => ({ ...prevState, [name]: date instanceof moment ? date.format('YYYY-MM-DD') : '', })); if (name === 'endDate') { setBulkOrderData((prevState) => ({ ...prevState, isInfinite: false, })); } }; const handleInfinite = (isShowStock) => { const { name, checked } = isShowStock.target; setBulkOrderData((prevState) => ({ ...prevState, [name]: checked, })); if (checked) { setBulkOrderData((prevState) => ({ ...prevState, endDate: checked, })); } else { setBulkOrderData((prevState) => ({ ...prevState, endDate: '', })); } }; const handleSubmit = async (e) => { e.preventDefault(); const validation = validator.validate(bulkOrderData); setValidation(validation); setSubmitted(true); if (validation.isValid) { setShowLoading(true); const response = await Rest.axiosRequest( API.bulkOrder + '/' + slug, bulkOrderData, 'PUT' ); if (response.status === 200) { noti.notify(response.data.message, 'success'); setSubmitted(false); router.push('/deals'); } else { noti.notify(response.data.message, 'danger'); } setShowLoading(false); } }; let checkValidation = submitted ? validator.validate(bulkOrderData) : validation; return ( <> <Meta title={`Edit Bulk Order Deal | ${APP_NAME}`} keywords={''} description={''} /> <section className="bg-black p-30-0-60"> <Container> <Row> <Col lg={12} className="mx-auto"> <Card className="card-dark border-gray p-15-20-30 br-10"> <Card.Header className="border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-13"> <Card.Title className="fs-18 fw-600 color-white mb-0"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={150} /> </SkeletonTheme> ) : ( 'Edit Bulk Order Deal' )} </Card.Title> </Card.Header> <Card.Body className="p-0"> <Form> <Row> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Deal Title</Form.Label> <Form.Control type="text" placeholder="Enter Deal Title" value={bulkOrderData.title} name="title" onChange={handleChange} /> <div className={ checkValidation.title.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.title.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Amount</Form.Label> <Form.Control type="number" placeholder="Enter Discount Amount" value={bulkOrderData.price} name="price" onChange={handleChange} /> <div className={ checkValidation.price.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.price.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Discount Applies To</Form.Label> <Select classNamePrefix="react-select" className="react-select-lg" styles={react_select_lg_Styles} value={orderType.filter( (item) => item.id == bulkOrderData.orderType )} options={orderType.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val, e) => handleSelectChangeOrderType(val, e) } placeholder="Discount Applies To" components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name="orderType" isClearable={true} /> <div className={ checkValidation.orderType.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.orderType.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}></Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Minimum Package for Order</Form.Label> <Form.Control type="number" placeholder="Enter Minimum Package for Order" value={bulkOrderData.minQty} name="minQty" min={0} onChange={handleChange} /> <div className={ checkValidation.minQty.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.minQty.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Maximum Package for Order</Form.Label> <Form.Control type="number" placeholder="Enter Maximum Package for Order" value={bulkOrderData.maxQty} name="maxQty" min={0} onChange={handleChange} /> <div className={ checkValidation.maxQty.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.maxQty.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Category</Form.Label> <MultiSelect options={categories.map(({ id, name }) => ({ value: id, label: name, }))} value={categories.filter((item) => bulkOrderData?.categoryIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'categoryIds') } labelledBy="Category" /> <div className={ checkValidation.categoryIds.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.categoryIds.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}></Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Product</Form.Label> <MultiSelect options={products.map(({ id, name }) => ({ value: id, label: name, }))} value={products.filter((item) => bulkOrderData?.productIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'productIds') } labelledBy="Product" overrideStrings={{ selectSomeItems: bulkOrderData?.categoryIds?.length > 0 ? 'Select...' : 'Please select category first', }} /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Retailer</Form.Label> <MultiSelect options={retailers.map(({ id, name }) => ({ value: id, label: name, }))} value={retailers.filter((item) => bulkOrderData?.retailerIds?.includes( item.value ) )} onChange={(val) => handleChangeSelect(val, 'retailerIds') } labelledBy="Retailer" /> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>Start Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ bulkOrderData.startDate ? moment(bulkOrderData.startDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'startDate') } disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.startDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.startDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={6}> <Form.Group className="form-dark mb-4"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton height={50} /> </SkeletonTheme> ) : ( <> <Form.Label>End Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={ bulkOrderData.endDate ? moment(bulkOrderData.endDate).format( 'DD MMM, YYYY' ) : '' } handleOnChange={(date) => handleChangeDate(date, 'endDate') } disableFutureDates={false} disablePastDates={true} /> <Form.Check type="checkbox" name="isInfinite" label="Infinite" id="isShowStock" className="fw-500 color-white" value={!bulkOrderData.isInfinite} checked={bulkOrderData.isInfinite} onChange={handleInfinite} /> <div className={ checkValidation.endDate.isInvalid ? 'animated fadeIn' : '' } > <div className="error"> {checkValidation.endDate.message} </div> </div> </> )} </Form.Group> </Col> <Col md={12}> <div className="d-flex justify-content-center align-items-center mt-6 mbottom-5 flex-wrap"> {showSkeleton ? ( <SkeletonTheme baseColor={SkeletonOptions.baseColor} highlightColor={SkeletonOptions.highlightColor} > <Skeleton width={300} height={50} inline={true} count={2} className="m-10" /> </SkeletonTheme> ) : ( <> <Link href="/deals"> <a className="btn btn-wh-160-54 btn-rounded btn-secondary btn-right-icons m-10"> Cancel <span> <FontAwesomeIcon icon={faAngleRight} /> </span> </a> </Link> <Button variant="primary" type="submit" className="btn-wh-150-54 btn-rounded btn-right-icons m-10" onClick={!showLoading ? handleSubmit : null} disabled={showLoading} > {showLoading ? ( <Spinner animation="border" /> ) : ( 'Save' )} <span className="color-22a612"> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </> )} </div> </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default EditBulkOrder; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); if (!isLoggedIn) { return { redirect: { destination: '/' }, }; } try { const { slug } = context.params; const token = contextCookie(context, 'token'); let editBulkOrderData = {}; const response = await Rest.axiosRequest( API.bulkOrder + '/' + slug, {}, 'GET', false, token ); if (response.status === 200) { editBulkOrderData = response.data.data; } else { return { notFound: true, }; } return { props: { editBulkOrderData, }, }; } catch (e) { return { redirect: { destination: '/deals' }, }; } }
0
/content/gmx-projects/gmx-admin/frontend/pages
/content/gmx-projects/gmx-admin/frontend/pages/customer/[slug].js
import { Card, Col, Container, Form, Row } from 'react-bootstrap'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faCommentDots } from '@fortawesome/free-solid-svg-icons'; import Figure from 'react-bootstrap/Figure'; import { saveAs } from 'file-saver'; import Rest from '../../config/rest.config'; import API from '../../config/endpoints.config'; import { Helper } from '../../services/Helper'; import { contextCookie, getSingle } from '../../services/Auth'; import { ASSETS_URL, REACT_APP_API_BASE_URL } from '../../config/server.config'; import Link from 'next/link'; import { useEffect, useState } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import ActivityList from '../../components/ActivityList'; import { useRouter } from 'next/router'; import { addActivity, fetchActivities, handleOnComment, resetActivities, } from '../../app/slices/activitiesSlice'; import ActivityPost from '../../services/ActivityPost'; import RepostModal from '../../components/RepostModal'; import LightboxModal from '../../components/LightboxModal'; import LikeModal from '../../components/LikeModal'; import CommentModal from '../../components/CommentModal'; import Notifier from '../../components/Notifier'; import { showModal } from '../../app/slices/commentSlice'; const noti = new Notifier(); function RetailerDetails({ userImage, ...props }) { const dispatch = useDispatch(); const router = useRouter(); const { slug } = router.query; const [followersCount, setFollowersCount] = useState( props.retailerData.followersCount ); const [isFollowClicked, setIsFollowClicked] = useState(false); const [followStatus, setFollowStatus] = useState( props.retailerData?.userFollowed ? 'Following' : 'Follow' ); // Activity state const [activityPage, setActivityPage] = useState(0); const activities = useSelector((state) => state.activities.activities); const totalActivities = useSelector( (state) => state.activities.totalActivites ); const showActivityLoader = useSelector((state) => state.activities.status); const deletePostStatus = useSelector( (state) => state?.activities?.deletePost?.status ); const [activityComment, setActivityComment] = useState(''); const [mentions, setMentions] = useState([]); const [searchValue, setSearchValue] = useState(''); const [attachments, setAttachments] = useState([]); const [selectedMediaFile, setSelectedMediaFile] = useState([]); const [isEnable, setIsEnable] = useState(true); const [isMediaEnable, setIsMediaEnable] = useState(false); const [individualPostAttachments, setIndividualPostAttachments] = useState( [] ); const [users, setUsers] = useState([]); const [show, setShow] = useState(false); const [showCommentModal, setShowCommentModal] = useState(false); const [selectedPostId, setSelectedPostId] = useState(0); const [activeIndex, setActiveIndex] = useState(0); const [isPosted, setIsPosted] = useState(false); //RepostModal const [reposts, setReposts] = useState([]); const [repostsPage, setRepostsPage] = useState(0); const [repostsCount, setRepostsCount] = useState(0); const [currentRepostPost, setCurrentRepostPost] = useState(null); //comment const handleCloseCommentModal = () => dispatch(showModal({ modalStatus: false, modalType: 'comment' })); const handleShowCommentModal = async (postId) => { await setSelectedPostId(postId); await dispatch(showModal({ modalStatus: true, modalType: 'comment' })); }; const [openCommentBox, setOpenCommentBox] = useState(false); const fetchMoreReposts = () => { setRepostsPage(repostsPage + 1); }; // Profile data const userRoleWiseId = getSingle('role') === '2' ? getSingle('currentBrandId') : getSingle('retailerCompanyId'); const handleFollow = async () => { setIsFollowClicked(true); let formData = { slug: props.retailerData.slug, }; let response = await Rest.axiosRequest(API.follow, formData); response = response.data; if (response.status) { const follow = response.data.follow; setFollowStatus(follow ? 'Following' : 'Follow'); setFollowersCount(follow ? ++followersCount : --followersCount); } else { noti.notify(response.message, 'danger'); } setIsFollowClicked(false); }; const downloadFile = (filePath) => { saveAs(REACT_APP_API_BASE_URL + '/get/file' + filePath); }; useEffect(() => { let formData = { page: activityPage, limit: 10, type: 'retailer', slug: slug, }; dispatch(fetchActivities(formData)); }, [dispatch, activityPage]); const fetchMoreActivity = () => { setActivityPage(activityPage + 1); }; const formatBytes = (bytes, decimals = 2) => { if (!+bytes) return '0 Bytes'; const k = 1024; const dm = decimals < 0 ? 0 : decimals; const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; const i = Math.floor(Math.log(bytes) / Math.log(k)); return { valueWithSize: `${parseFloat((bytes / Math.pow(k, i)).toFixed(dm))} ${ sizes[i] }`, value: parseFloat((bytes / Math.pow(k, i)).toFixed(dm)), size: sizes[i], }; }; const attachmentsHandler = (event) => { let filesCount = selectedMediaFile.length + event.target.files.length; if (filesCount > 10) { noti.notify('Please choose up to 10 media.', 'danger'); return false; } else { if (filesCount >= 10) { setIsMediaEnable(true); } else { setIsMediaEnable(false); } if (event.target.files.length > 0) { setIsEnable(false); } else { setIsEnable(true); } const selectedFiles = event.target.files; const selectedFilesArray = Array.from(selectedFiles); const imagesArray = selectedFilesArray.map((file, index) => { return { previewFile: URL.createObjectURL(file), size: formatBytes(file.size), type: file.type.substring(0, 5) === 'image' ? 'image' : 'video', id: index, }; }); // videos and images validation let previousAndSelectedMediaFile = selectedMediaFile.concat(imagesArray); let fileTypeCount = {}; let videoSize = {}; let imageSize = {}; previousAndSelectedMediaFile.map(function (item) { fileTypeCount[item.type] = (fileTypeCount[item.type] || 0) + 1; if (item.type === 'video') { videoSize[item.type] = item.size; } if (item.type === 'image') { imageSize[item.type] = item.size; } }); if (fileTypeCount.video > 1) { noti.notify('You can upload only one video.', 'danger'); return false; } else { if ( videoSize?.video?.size === 'GB' || videoSize?.video?.size === 'TB' || videoSize?.video?.size === 'PB' || videoSize?.video?.size === 'EB' || videoSize?.video?.size === 'ZB' || videoSize?.video?.size === 'YB' ) { noti.notify('Max video file limit is 256 MB.', 'danger'); return false; } else { if ( videoSize?.video?.size === 'MB' && videoSize?.video?.value > 256.05 ) { noti.notify('Max video file limit is 256 MB.', 'danger'); return false; } } } if ( imageSize?.image?.size === 'GB' || imageSize?.image?.size === 'TB' || imageSize?.image?.size === 'PB' || imageSize?.image?.size === 'EB' || imageSize?.image?.size === 'ZB' || imageSize?.image?.size === 'YB' ) { noti.notify('Max image file limit is 5 MB.', 'danger'); return false; } else { if (imageSize?.image?.size === 'MB' && imageSize?.image?.value > 5.05) { noti.notify('Max image file limit is 5 MB.', 'danger'); return false; } } setSelectedMediaFile((previousMediaFile) => previousMediaFile.concat(imagesArray) ); let f = event.target.files; let sf = attachments; for (let i = 0; i < event.target.files.length; i++) { setAttachments((prevfiles) => [...prevfiles, event.target.files[i]]); } } }; function deleteHandler(selectedIndex, selectedFile, selectedId) { setSelectedMediaFile( selectedMediaFile.filter((e, index) => index !== selectedIndex) ); const copiedAttachment = [...attachments]; delete copiedAttachment[selectedId]; const newFiles = []; for (let i = 0; i < copiedAttachment.length; i++) { if (copiedAttachment[i]) { newFiles.push(copiedAttachment[i]); } } setAttachments(newFiles); const imagesArray = newFiles.map((file, index) => { return { previewFile: URL.createObjectURL(file), size: formatBytes(file.size), type: file.type.substring(0, 5) === 'image' ? 'image' : 'video', id: index, }; }); setSelectedMediaFile(imagesArray); if (Object.keys(copiedAttachment).length === 0 && activityComment === '') { setIsEnable(true); } else { setIsEnable(false); } URL.revokeObjectURL(selectedFile); let filesCount = selectedMediaFile.length - 1; if (filesCount >= 10) { setIsMediaEnable(true); } else { setIsMediaEnable(false); } } const postContentHandler = (event, newValue, newPlainTextValue, mentions) => { const { value } = event.target; setActivityComment(newValue); setMentions(mentions); setSearchValue( newPlainTextValue?.substring(newPlainTextValue.lastIndexOf('@') + 1) ); if (value !== '' || Object.keys(selectedMediaFile).length > 0) { setIsEnable(false); } else { setIsEnable(true); } }; const postContentHandlerSelect = (id, display) => { const mentionText = `@${display}`; setActivityComment(mentionText); setMentions([...mentions, { id, display }]); }; const submitPost = async () => { if (activityComment != '' || Object.keys(attachments).length > 0) { let formData = new FormData(); setIsEnable(false); setIsMediaEnable(false); formData.append('type', 1); formData.append('post', activityComment?.replace(/\(([^)]+)\)/g, '$1')); formData.append('mentions', JSON.stringify(mentions)); formData.append('attachableType', 'post'); for (const key of Object.keys(attachments)) { formData.append('attachment', attachments[key]); } const response = await Rest.axiosRequest( API.postActivity, formData, 'POST', true ); if (response.status === 201) { noti.notify(response.data.message, 'success'); const activity = response.data.data; dispatch(addActivity(activity)); resetPostForm(); } else { noti.notify('Something went wrong!', 'danger'); } } else { setIsEnable(true); } }; const resetPostForm = () => { setActivityComment(''); setAttachments([]); setSelectedMediaFile([]); setIsEnable(true); }; useEffect(() => { return () => dispatch(resetActivities()); }, [dispatch]); useEffect(() => { const getRepostsBy = async () => { let repostRes = await Rest.axiosRequest( API.posts + '/' + currentRepostPost + `/reposts?limit=10&page=${repostsPage}`, {}, 'GET' ); repostRes = repostRes.data; if (repostRes.status) { const { count, rows } = repostRes.data; setRepostsCount(count); if (rows.length > 0) { setReposts([...reposts, ...rows]); } } }; if (currentRepostPost != null) { getRepostsBy(); } }, [currentRepostPost, repostsPage]); const resetRepostModal = () => { setCurrentRepostPost(null); setReposts([]); setRepostsPage(0); setRepostsCount(0); }; const [showRepostModal, setShowRepostModal] = useState(false); const repostsModalClose = () => { setShowRepostModal(false); resetRepostModal(); }; const repostsModalShow = () => setShowRepostModal(true); const repostsClickhandler = (e, postUniqueId) => { setCurrentRepostPost(postUniqueId); repostsModalShow(); }; //LikeModal const [likes, setLikes] = useState([]); const [likesPage, setLikesPage] = useState(0); const [likesCount, setLikesCount] = useState(0); const [currenLikePost, setCurrentLikePost] = useState(null); const fetchMoreLikes = () => { setLikesPage(likesPage + 1); }; const { createCommentStatus, postId, postCommentCount } = useSelector( (state) => state.comment ); useEffect(() => { if (createCommentStatus === 'succeeded') { dispatch(handleOnComment({ postId, postCommentCount })); } }, [dispatch, createCommentStatus]); useEffect(() => { const getLikesBy = async () => { let likeRes = await Rest.axiosRequest( API.posts + '/' + currenLikePost + `/likes?limit=10&page=${likesPage}`, {}, 'GET' ); likeRes = likeRes.data; if (likeRes.status) { const { count, rows } = likeRes.data; setLikesCount(count); if (rows.length > 0) { setLikes([...likes, ...rows]); } } }; if (currenLikePost != null) { getLikesBy(); } }, [currenLikePost, likesPage]); const resetLikesModal = () => { setCurrentLikePost(null); setLikes([]); setLikesPage(0); setLikesCount(0); }; const [showLikeModal, setShowLikeModal] = useState(false); const likesModalClose = () => { setShowLikeModal(false); resetLikesModal(); }; const likesModalShow = () => setShowLikeModal(true); const likesClickHandler = (e, postUniqueId) => { setCurrentLikePost(postUniqueId); likesModalShow(); }; const handleClose = () => setShow(false); const handleShow = (value, index, id) => { setActiveIndex(index); setShow(true); let singleActivity = activities.find((data) => data.id === id); let mainPost = singleActivity.type == '2' ? singleActivity.parentPost : singleActivity; setIndividualPostAttachments(mainPost.attachments); }; useEffect(() => { if (deletePostStatus === 'succeeded') { let formData = { page: activityPage, limit: 10, type: 'retailer', slug: slug, }; dispatch(fetchActivities(formData)); } }, [dispatch, deletePostStatus]); useEffect(async () => { let formData = { keyword: '', page: 0, limit: 10, }; const response = await Rest.axiosRequest( API.axisPointUsers, formData, 'POST' ); setUsers(response?.data?.data?.rows); }, []); return ( <> <section className='bg-black p-60-0'> <Container> <Row> <Col lg={12} className='mx-auto'> <div className='m-l-r-30'> <div className='box-dark mb-30 overflow-hidden'> <ul className='d-flex justify-start flex-wrap'> <li className='logo-box d-flex justify-content-center align-items-center '> <Figure className='mb-0 figure-circle figure-green-2 figure-120'> {props.retailerData.profilePath ? ( <Figure.Image src={ASSETS_URL + props.retailerData.profilePath} className='cover circle' /> ) : ( <Figure.Image src={ASSETS_URL + '/profile/no-profile-image.jpg'} className='cover circle' /> )} </Figure> </li> <li className='seller-detail-wrap'> <ul> <li className='seller-infor'> <div className='d-flex align-items-center justify-content-between flex-wrap'> <div> <div className='fs-23 fw-600 color-f3772c'> <h5 className='fs-24 fw-600 color-f3772c mb-2'> {' '} {Helper.niceString( props.retailerData.companyName, 90, true )} </h5> </div> <ul className='inline-listing'> {props.retailerData?.website ? ( <li className='fs-15 fw-600 color-22a612 text-decoration-none'> <a href={props.retailerData?.website} target='_blank' className='fs-14 fw-500 color-0598ff text-decoration-none' > <i className='icon-globe'></i> <span className='text-decoration-none'> {Helper.niceString( props.retailerData?.website, 20 )} </span> </a> </li> ) : null} <a> <li className='fs-15 fw-600 color-22a612 text-decoration-none' onClick={() => downloadFile( props.retailerData.medRecCertificatePath ) } > <i className='icon-pdf-download'></i> <span className='text-decoration-underline'> Operating Licenses </span> </li> </a> </ul> </div> {!props.isLoggedIn ? ( <Link href={`/sign-in`}> <a className='btn-wh-150-46 btn btn-primary br-30 position-static top-0 end-0 me-sm-3 mx-auto' style={{ transform: 'none' }} > <span className='fs-20 v-align-middle'> <i className='icon icon-add-friend'></i> </span>{' '} Follow </a> </Link> ) : ( props.isLoggedIn && props.retailerData.id !== userRoleWiseId && ( <a className='btn-wh-150-46 btn btn-primary br-30 position-static top-0 end-0 me-sm-3 mx-auto' style={{ transform: 'none' }} onClick={handleFollow} > <span> <i className='icon icon-add-friend'></i> </span>{' '} {followStatus} </a> ) )} </div> {!props.isLoggedIn ? ( <Link href={`/sign-in`}> <a className='btn-wh-150-46 btn btn-secondary br-30'> <span className='fs-20 v-align-middle'> <FontAwesomeIcon icon={faCommentDots} /> </span>{' '} Message </a> </Link> ) : props.isLoggedIn && getSingle('role') !== '3' ? ( <Link href={`/messages/${props.retailerData.slug}`}> <a className='btn-wh-150-46 btn btn-secondary br-30'> <span className='fs-20 v-align-middle'> <FontAwesomeIcon icon={faCommentDots} /> </span>{' '} Message </a> </Link> ) : null} </li> <li> <ul className='listing-33p'> <li> <span className='color-777777 fs-16 fw-600 text-center d-block'> State </span> <p className='fs-18 fw-600 color-white mb-0 text-center'> {props.retailerData.state} </p> </li> <li> <span className='color-777777 fs-16 fw-600 text-center d-block'> Phone Number </span> <p className='fs-18 fw-600 color-white mb-0 text-center'> {props.retailerData.phoneNumber} </p> </li> <li> <span className='color-777777 fs-16 fw-600 text-center d-block'> Zipcode </span> <p className='fs-18 fw-600 color-white mb-0 text-center'> {props.retailerData.zipCode} </p> </li> </ul> </li> </ul> </li> </ul> <ul className='listing-50p rating-listing'> <li className='p-3'> {followersCount > 0 ? ( <Link href={'/followers/' + props.retailerData.slug}> <a> <span className='fs-16 fw-500 color-777777 d-block mb-6 text-center'> Followers </span> <p className='fs-16 fw-500 color-white mb-0 text-center'> {followersCount} </p> </a> </Link> ) : ( <div> <span className='fs-16 fw-500 color-777777 d-block mb-6 text-center'> Followers </span> <p className='fs-16 fw-500 color-white mb-0 text-center'> {followersCount} </p> </div> )} </li> <li className='p-3'> {props.retailerData.followingsCount > 0 ? ( <Link href={'/following/' + props.retailerData.slug}> <a> <span className='fs-16 fw-500 color-777777 d-block mb-6 text-center'> Following </span> <p className='fs-16 fw-500 color-white mb-0 text-center'> {props.retailerData.followingsCount} </p> </a> </Link> ) : ( <div> <span className='fs-16 fw-500 color-777777 d-block mb-6 text-center'> Following </span> <p className='fs-16 fw-500 color-white mb-0 text-center'> {props.retailerData.followingsCount} </p> </div> )} </li> </ul> </div> </div> <Card className='card-dark card-post card-axis-point border-gray-1'> <Card.Header> <div className='d-flex align-items-center'> <h3 className='text-white fs-18 fw-500 mb-0 py-1'> Activity </h3> </div> </Card.Header> <Card.Body> <Row> <Col lg={11} className='mx-auto'> {userRoleWiseId === props.retailerData.id ? ( <ActivityPost activityComment={activityComment} searchValue={searchValue} attachments={attachments} attachmentsHandler={attachmentsHandler} deleteHandler={deleteHandler} postContentHandler={postContentHandler} postContentHandlerSelect={postContentHandlerSelect} submitPost={submitPost} userImage={userImage} isEnable={isEnable} isMediaEnable={isMediaEnable} selectedMediaFile={selectedMediaFile} users={users} /> ) : null} </Col> </Row> <hr></hr> <ActivityList activities={activities} totalActivities={totalActivities} fetchMoreActivity={fetchMoreActivity} handleShow={handleShow} handleShowCommentModal={handleShowCommentModal} likesClickHandler={likesClickHandler} repostsClickhandler={repostsClickhandler} /> </Card.Body> </Card> </Col> </Row> </Container> </section> <LightboxModal sliderIndex={activeIndex} images={individualPostAttachments} show={show} handleClose={handleClose} /> <CommentModal showCommentModal={showCommentModal} handleCloseCommentModal={handleCloseCommentModal} postId={selectedPostId} userImage={userImage} /> <RepostModal show={showRepostModal} hide={repostsModalClose} reposts={reposts} repostsCount={repostsCount} fetchMoreReposts={fetchMoreReposts} /> <LikeModal show={showLikeModal} hide={likesModalClose} likes={likes} likesCount={likesCount} fetchMoreLikes={fetchMoreLikes} /> </> ); } export default RetailerDetails; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); try { const { slug } = context.params; const token = contextCookie(context, 'token'); const userImage = contextCookie(context, 'userImage'); const retailerDetails = await Rest.axiosRequest( API.retailerDetails + '/' + slug, {}, 'GET', false, token ); const response = retailerDetails.data; if (response?.status) { // const medRecId = contextCookie(context, 'medRecId'); // if (isLoggedIn && medRecId !== response.data?.medRecId) { // return { notFound: true }; // } const retailerData = { companyName: response?.data?.companyName ?? '', profilePath: response?.data?.profilePath ?? '', phoneNumber: response?.data?.phoneNumber ?? '', zipCode: response?.data?.store?.zipCode ?? '', state: response?.data?.store?.state?.name ?? '', medRecCertificatePath: response.data.medRecCertificatePath ?? '', website: response?.data?.website ?? '', slug: response.data.slug ?? '', id: response.data.id ?? 0, // followersCount: response?.data?.followers?.length ?? 0, // followingsCount: response?.data?.followings?.length ?? 0, followersCount: response?.data?.followersCount ?? 0, followingsCount: response?.data?.followingsCount ?? 0, // follower: isLoggedIn // ? response?.data?.followers?.find( // (follower) => // follower.followerId === contextCookie(context, 'userId') // ) ?? null // : null, userFollowed: isLoggedIn ? response?.data?.userFollowed ?? false : null, }; return { props: { retailerData, isLoggedIn, userImage, }, }; } else { return { notFound: true, }; } } catch (e) { console.log('customer detail', e.message); return { redirect: { destination: '/orders', }, }; } }
0
/content/gmx-projects/gmx-admin/frontend/pages
/content/gmx-projects/gmx-admin/frontend/pages/stores/index.js
import { faCirclePlus, faEdit, faTrashAlt, } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Link from 'next/link'; import { useRouter } from 'next/router'; import React, { useEffect, useState } from 'react'; import { Card, Col, Container, Row } from 'react-bootstrap'; import ReactPaginate from 'react-paginate'; import { Table as ResponsiveTable, Tbody, Td, Th, Thead, Tr, } from 'react-super-responsive-table'; import { CustomLadda } from '../../components/CustomLadda'; import Meta from '../../components/Meta'; import Notifier from '../../components/Notifier'; import API from '../../config/endpoints.config'; import Rest from '../../config/rest.config'; import { APP_NAME } from '../../config/server.config'; import { contextCookie } from '../../services/Auth'; function Stores(props) { const noti = new Notifier(); const router = useRouter(); const [params, setParams] = useState({ offset: props.queryString.offset ?? 0, }); const [isDeleteLoading, setIsDeleteLoading] = useState({}); const [stores, setStores] = useState([]); const [limit, setLimit] = useState(10); const [totalPages, setTotalPages] = useState(); useEffect(async () => { await fetchStores(); }, []); const fetchStores = async () => { router.push('/stores', { query: { ...params } }, undefined, { shallow: true, }); const response = await Rest.axiosRequest( API.stores + '?' + `limit=${limit}&` + new URLSearchParams(params).toString(), {}, 'GET' ); if (response.status === 200) { setStores(response.data.data.data); setTotalPages(response.data.data.totalPages); } else { noti.notify(response.data.message, 'danger'); } }; const handlePageChange = (event) => { setParams((prevState) => ({ ...prevState, offset: event.selected })); }; const handleDefaultAddressChange = async (id) => { const response = await Rest.axiosRequest( `${API.stores}/change/default/${id}`, {} ); if (response.data.status) { await fetchStores(); noti.notify(response.data.message, 'success'); } else { noti.notify(response.data.message, 'danger'); } }; const handleDelete = async (id) => { setIsDeleteLoading((prevState) => ({ ...prevState, [id]: !prevState[id], })); const response = await Rest.axiosRequest( `${API.stores}/${id}`, {}, 'DELETE' ); if (response.data.status) { setIsDeleteLoading({}); await fetchStores(); noti.notify(response.data.message, 'success'); } else { setIsDeleteLoading({}); noti.notify(response.data.message, 'danger'); } }; return ( <> <Meta title={`Stores | ${APP_NAME}`} keywords={'Stores'} description={'Stores'} /> <section className='bg-black p-30-0-60'> <Container> <Row> <Col lg={12} className='mx-auto'> <Card className='card-dark border-gray p-8-21-30 br-10'> <Card.Header className='d-flex justify-content-between align-items-center border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-6'> <Card.Title className='fs-18 fw-600 color-dcdcdc mb-0'> Stores </Card.Title> <Link href='/stores/add'> <a className='btn btn-primary btn-wh-130-38 br-6'> <span className='me-2'> <FontAwesomeIcon icon={faCirclePlus} /> </span> Add Store </a> </Link> </Card.Header> <Card.Body className='p-0'> <div className='table-wrap CustomScrollbar CustomScrollbarY'> <ResponsiveTable className='table table-bordered table-hover table-dark form-dark' id='customer-stores' > <Thead> <Tr> <Th width='150px'>Store Name</Th> <Th width='400px'>Address</Th> <Th width='80px'>Phone Number</Th> <Th width='180px'>Action</Th> </Tr> </Thead> <Tbody> {stores.length ? ( stores.map((store, i) => { return ( <Tr> <Td> <Link href={`/stores/edit/${store?.id}`}> <a className='text-white'> <b> {+store?.isDefault === 1 && 'Default Store'} </b> <br /> {store?.managerName} </a> </Link> </Td> <Td> <Link href={`/stores/edit/${store?.id}`}> <a className='text-white'> {`${store?.address}, ${store?.state?.name}, ${store?.zipCode}.`} </a> </Link> </Td> <Td> <Link href={`/stores/edit/${store?.id}`}> <a className='text-white'> {store?.phoneNumber} </a> </Link> </Td> <Td> <Link href={`/stores/edit/${store?.id}`}> <a className='action-btn color-22a612'> <FontAwesomeIcon title='Edit' icon={faEdit} /> </a> </Link> <CustomLadda className='action-btn color-f32c2c bg-black' onClick={() => handleDelete(store?.id)} disabled={isDeleteLoading[store?.id]} > <FontAwesomeIcon title='Delete' icon={faTrashAlt} /> </CustomLadda> <a title='Set as Default' className='action-btn color-22a612' onClick={() => handleDefaultAddressChange(store?.id) } > {+store?.isDefault === 0 && ( <i className='fa fa-check' id={'action-' + store?.id} ></i> )} </a> </Td> </Tr> ); }) ) : ( <Tr> <Td className='text-center' colSpan={10}> No records found! </Td> </Tr> )} </Tbody> </ResponsiveTable> </div> <div className='mt-5 d-flex justify-content-center'> {totalPages > 1 ? ( <ReactPaginate previousLabel={ <i className='fas fa-long-arrow-alt-left'></i> } nextLabel={ <i className='fas fa-long-arrow-alt-right'></i> } pageClassName='page-item' pageLinkClassName='page-link' previousClassName='page-item prev-item' previousLinkClassName='page-link' nextClassName='page-item next-item' nextLinkClassName='page-link' breakLabel='...' breakClassName='page-item' breakLinkClassName='page-link' pageCount={totalPages} //marginPagesDisplayed={1} pageRangeDisplayed={5} onPageChange={handlePageChange} containerClassName='pagination' activeClassName='active' forcePage={parseInt(params.offset)} /> ) : null} </div> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default Stores; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); if (!isLoggedIn) { return { redirect: { destination: '/' }, }; } return { props: { queryString: context.query, }, }; }
0
/content/gmx-projects/gmx-admin/frontend/pages
/content/gmx-projects/gmx-admin/frontend/pages/stores/add.js
import { faAngleRight, faLocation } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Link from 'next/link'; import { useRouter } from 'next/router'; import React, { useEffect, useRef, useState } from 'react'; import InputMask from 'react-input-mask'; import { Button, Card, Col, Container, Form, Row, Spinner, } from 'react-bootstrap'; import 'react-dropzone-uploader/dist/styles.css'; import Select from 'react-select'; import CustomDatePicker from '../../components/CustomDatePicker'; import { DropdownIndicator, react_select_lg_Styles, } from '../../components/DropDown'; import FormValidator from '../../components/FormValidator'; import Meta from '../../components/Meta'; import Notifier from '../../components/Notifier'; import API from '../../config/endpoints.config'; import Rest from '../../config/rest.config'; import { APP_NAME } from '../../config/server.config'; function AddStore() { const router = useRouter(); const noti = new Notifier(); const locationRef = useRef(null); const validator = new FormValidator([ { field: 'managerName', method: 'isEmpty', validWhen: false, message: 'Please enter store name.', }, { field: 'address', method: 'isEmpty', validWhen: false, message: 'Please enter address.', }, { field: 'stateId', method: 'isEmpty', validWhen: false, message: 'Please select state.', }, { field: 'zipCode', method: 'isEmpty', validWhen: false, message: 'Please enter zip code.', }, { field: 'zipCode', method: 'isLength', args: [5, 5], validWhen: true, message: 'Zipcode should be 5 characters long.', }, { field: 'phoneNumber', method: 'isEmpty', validWhen: false, message: 'Please enter phone number.', }, { field: 'phoneNumber', method: 'isLength', args: [10, 10], validWhen: true, message: 'Store number should comprise ten digits.', }, { field: 'licenseNumber', method: 'isEmpty', validWhen: false, message: 'Please enter license number.', }, { field: 'licenseExpirationDate', method: 'isEmpty', validWhen: false, message: 'Please enter license expire date.', }, { field: 'medRecCertificatePath', method: 'isEmpty', validWhen: false, message: 'Please upload license document.', }, { field: 'resaleLicensePath', method: 'isEmpty', validWhen: false, message: 'Please upload resale license document.', }, ]); const [storeData, setStoreData] = useState({ managerName: '', address: '', stateId: '', zipCode: '', phoneNumber: '', licenseNumber: '', licenseExpirationDate: '', medRecCertificatePath: '', resaleLicensePath: '', isDefault: false, }); const [showLoading, setShowLoading] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [submitted, setSubmitted] = useState(false); const [states, setStates] = useState([]); const handleChangeSelectState = (val) => { if (val) { setStoreData((prevState) => ({ ...prevState, stateId: val.value })); } else { setStoreData((prevState) => ({ ...prevState, stateId: '' })); } }; const handleChangeDate = (date) => { setStoreData((prevState) => ({ ...prevState, licenseExpirationDate: date.format('YYYY-MM-DD'), })); }; const medRecDocumentHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if ( fileType === 'application/pdf' || (fileCheck && fileCheck.length > 0) ) { setStoreData((prevState) => ({ ...prevState, medRecCertificatePath: event.target.files[0], })); } else { event.target.value = null; setStoreData((prevState) => ({ ...prevState, medRecCertificatePath: '', })); noti.notify('Please upload Image or PDF file only.', 'danger'); } } }; const resaledocumentHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if ( fileType === 'application/pdf' || (fileCheck && fileCheck.length > 0) ) { setStoreData((prevState) => ({ ...prevState, resaleLicensePath: event.target.files[0], })); } else { event.target.value = null; setStoreData((prevState) => ({ ...prevState, resaleLicensePath: '' })); notifier.notify('Please upload Image or PDF file only.', 'danger'); } } }; const handleChange = (event) => { const { name, value } = event.target; setStoreData((prevState) => ({ ...prevState, [name]: value })); }; const handleSubmit = async (e) => { e.preventDefault(); const validation = validator.validate(storeData); setValidation(validation); setSubmitted(true); if (validation.isValid) { let formData = new FormData(); formData.append('managerName', storeData.managerName); formData.append('address', storeData.address); formData.append('stateId', storeData.stateId); formData.append('zipCode', storeData.zipCode); formData.append('phoneNumber', storeData.phoneNumber); formData.append('licenseNumber', storeData.licenseNumber); formData.append('licenseExpirationDate', storeData.licenseExpirationDate); formData.append('medRecCertificatePath', storeData.medRecCertificatePath); formData.append('resaleLicensePath', storeData.resaleLicensePath); formData.append('isDefault', storeData.isDefault); setShowLoading(true); let response; response = await Rest.axiosRequest(API.stores, formData, 'POST', true); if (response.status === 201) { noti.notify(response.data.message, 'success'); setSubmitted(false); router.push('/stores'); } else { noti.notify(response.data.message, 'danger'); } setShowLoading(false); } }; let checkValidation = submitted ? validator.validate(storeData) : validation; useEffect(async () => { const statesData = await Rest.axiosRequest(API.getStates, {}, 'GET'); if (statesData.status === 200) { const states = []; statesData.data.data.map((state) => { states.push({ id: state.id, value: state.id, name: state.name, label: state.name, }); }); setStates(states); } else { noti.notify(statesData.data.message, 'danger'); } const autoCompleteAddress = new google.maps.places.Autocomplete( document.getElementById('address'), { componentRestrictions: { country: ['US'] } } ); google.maps.event.addListener( autoCompleteAddress, 'place_changed', function () { setStoreData((prevState) => ({ ...prevState, address: locationRef.current.value, })); } ); }, []); const handleAddressKeyUp = (e) => { setStoreData((prevState) => ({ ...prevState, address: e.target.value })); }; return ( <> <Meta title={`Add Store | ${APP_NAME}`} keywords={''} description={''} /> <section className='bg-black p-30-0-60'> <Container> <Row> <Col lg={12} className='mx-auto'> <Card className='card-dark border-gray p-15-20-30 br-10'> <Card.Header className='border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-13'> <Card.Title className='fs-18 fw-600 color-white mb-0'> Add Store </Card.Title> </Card.Header> <Card.Body className='p-0'> <Form> <Row> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Store Name</Form.Label> <Form.Control type='text' placeholder='Enter Store Name' value={storeData.managerName} name='managerName' onChange={handleChange} /> <div className={ checkValidation.managerName.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.managerName.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Address</Form.Label> <div className='form-icon form-icon-right'> <Form.Control type='text' name='address' placeholder='Enter Address' ref={locationRef} onChange={handleAddressKeyUp} id='address' /> <span className='icon'> <FontAwesomeIcon icon={faLocation} /> </span> </div> <div className={ checkValidation.address.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.address.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>State</Form.Label> <Select classNamePrefix='react-select' className='react-select-lg' styles={react_select_lg_Styles} value={states.filter( (item) => item.id == storeData.stateId )} options={states.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val) => handleChangeSelectState(val)} placeholder='Select State' components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name='stateId' isClearable={true} /> <div className={ checkValidation.stateId.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.stateId.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Zip Code</Form.Label> <Form.Control type='number' name='zipCode' placeholder='Enter Zip Code' value={storeData.zipCode} onChange={handleChange} min='1' /> <div className={ checkValidation.zipCode.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.zipCode.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Phone Number</Form.Label> <InputMask name='phoneNumber' placeholder='Enter Phone Number' onChange={handleChange} onBlur={handleChange} maskChar={null} className='form-control' mask='9999999999' /> <div className={ checkValidation.phoneNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.phoneNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>License Number</Form.Label> <Form.Control type='text' name='licenseNumber' onChange={handleChange} placeholder='Enter License Number' /> <div className={ checkValidation.licenseNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.licenseNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>License Expire Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={storeData.licenseExpirationDate} handleOnChange={(date) => handleChangeDate(date)} disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.licenseExpirationDate.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.licenseExpirationDate.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>License Document</Form.Label> <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='medRecCertificate' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*,application/pdf' name='medRecCertificate' className='uploadImg' id='medRecCertificate' onChange={(e) => medRecDocumentHandler(e)} /> <div className='my-3'> {storeData.medRecCertificatePath.name} </div> </div> <div className={ checkValidation.medRecCertificatePath.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.medRecCertificatePath.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Resale License Document</Form.Label> <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='document_upload' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*,application/pdf' name='license-upload' className='uploadImg' id='document_upload' onChange={(e) => resaledocumentHandler(e)} /> <div className='my-3'> {storeData.resaleLicensePath.name} </div> </div> <div className={ checkValidation.resaleLicensePath.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.resaleLicensePath.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <div className='mb-3'> <Form.Check inline label='Mark this my default address' name='isDefault' type={'checkbox'} value={!storeData?.isDefault} id={'isDefault'} onChange={handleChange} /> </div> </Form.Group> </Col> <Col md={12}> <div className='d-flex justify-content-center align-items-center mt-6 mbottom-5 flex-wrap'> <Link href='/stores'> <a className='btn btn-wh-160-54 btn-rounded btn-secondary btn-right-icons m-10'> Cancel <span> <FontAwesomeIcon icon={faAngleRight} /> </span> </a> </Link> <Button variant='primary' type='submit' className='btn-wh-150-54 btn-rounded btn-right-icons m-10' onClick={!showLoading ? handleSubmit : null} disabled={showLoading} > {showLoading ? ( <Spinner animation='border' /> ) : ( 'Save' )} <span className='color-22a612'> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </div> </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default AddStore;
0
/content/gmx-projects/gmx-admin/frontend/pages/stores
/content/gmx-projects/gmx-admin/frontend/pages/stores/edit/[id].js
import { faAngleRight, faLocation } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { saveAs } from 'file-saver'; import Link from 'next/link'; import { useRouter } from 'next/router'; import React, { useEffect, useRef, useState } from 'react'; import InputMask from 'react-input-mask'; import { Button, Card, Col, Container, Form, Row, Spinner, } from 'react-bootstrap'; import 'react-dropzone-uploader/dist/styles.css'; import Select from 'react-select'; import CustomDatePicker from '../../../components/CustomDatePicker'; import { DropdownIndicator, react_select_lg_Styles, } from '../../../components/DropDown'; import FormValidator from '../../../components/FormValidator'; import Meta from '../../../components/Meta'; import Notifier from '../../../components/Notifier'; import API from '../../../config/endpoints.config'; import Rest from '../../../config/rest.config'; import { APP_NAME, REACT_APP_API_BASE_URL, } from '../../../config/server.config'; import { contextCookie } from '../../../services/Auth'; function EditStore({ editStoreData }) { const router = useRouter(); const noti = new Notifier(); const { id } = router.query; const locationRef = useRef(null); const validator = new FormValidator([ { field: 'managerName', method: 'isEmpty', validWhen: false, message: 'Please enter store name.', }, { field: 'address', method: 'isEmpty', validWhen: false, message: 'Please enter address.', }, { field: 'stateId', method: 'isEmpty', validWhen: false, message: 'Please select state.', }, { field: 'zipCode', method: 'isEmpty', validWhen: false, message: 'Please enter zip code.', }, { field: 'zipCode', method: 'isLength', args: [5, 5], validWhen: true, message: 'Zipcode should be 5 characters long.', }, { field: 'phoneNumber', method: 'isEmpty', validWhen: false, message: 'Please enter phone number.', }, { field: 'phoneNumber', method: 'isLength', args: [10, 10], validWhen: true, message: 'Store number should comprise ten digits.', }, { field: 'licenseNumber', method: 'isEmpty', validWhen: false, message: 'Please enter license number.', }, { field: 'licenseExpirationDate', method: 'isEmpty', validWhen: false, message: 'Please enter license expire date.', }, ]); const [storeData, setStoreData] = useState(editStoreData); const [showLoading, setShowLoading] = useState(false); const [validation, setValidation] = useState(validator.valid()); const [submitted, setSubmitted] = useState(false); const [states, setStates] = useState([]); const handleChangeSelectState = (val) => { if (val) { setStoreData((prevState) => ({ ...prevState, stateId: val.value })); } else { setStoreData((prevState) => ({ ...prevState, stateId: '' })); } }; const handleChangeDate = (date) => { setStoreData((prevState) => ({ ...prevState, licenseExpirationDate: date.format('YYYY-MM-DD'), })); }; const medRecDocumentHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if ( fileType === 'application/pdf' || (fileCheck && fileCheck.length > 0) ) { setStoreData((prevState) => ({ ...prevState, medRecCertificatePath: event.target.files[0], })); } else { event.target.value = null; setStoreData((prevState) => ({ ...prevState, medRecCertificatePath: '', })); noti.notify('Please upload Image or PDF file only.', 'danger'); } } }; const resaledocumentHandler = (event) => { let file = event.target.files[0]; if (file) { let fileType = file.type; let fileCheck = fileType.match(/image\/[A-Za-z]*/g); if ( fileType === 'application/pdf' || (fileCheck && fileCheck.length > 0) ) { setStoreData((prevState) => ({ ...prevState, resaleLicensePath: event.target.files[0], })); } else { event.target.value = null; setStoreData((prevState) => ({ ...prevState, resaleLicensePath: '' })); notifier.notify('Please upload Image or PDF file only.', 'danger'); } } }; const downloadFile = (filePath) => { saveAs(REACT_APP_API_BASE_URL + '/get/file' + filePath); }; const handleChange = (event) => { const { name, value } = event.target; setStoreData((prevState) => ({ ...prevState, [name]: value })); }; const handleSubmit = async (e) => { e.preventDefault(); const validation = validator.validate(storeData); setValidation(validation); setSubmitted(true); if (validation.isValid) { let formData = new FormData(); formData.append('managerName', storeData.managerName); formData.append('address', storeData.address); formData.append('stateId', storeData.stateId); formData.append('zipCode', storeData.zipCode); formData.append('phoneNumber', storeData.phoneNumber); formData.append('licenseNumber', storeData.licenseNumber); formData.append('licenseExpirationDate', storeData.licenseExpirationDate); formData.append('medRecCertificatePath', storeData.medRecCertificatePath); formData.append('resaleLicensePath', storeData.resaleLicensePath); formData.append('isDefault', storeData.isDefault); setShowLoading(true); let response; response = await Rest.axiosRequest( `${API.stores}/${id}`, formData, 'PUT', true ); if (response.status === 200) { noti.notify(response.data.message, 'success'); setSubmitted(false); router.push('/stores'); } else { noti.notify(response.data.message, 'danger'); } setShowLoading(false); } }; let checkValidation = submitted ? validator.validate(storeData) : validation; useEffect(async () => { const statesData = await Rest.axiosRequest(API.getStates, {}, 'GET'); if (statesData.status === 200) { const states = []; statesData.data.data.map((state) => { states.push({ id: state.id, value: state.id, name: state.name, label: state.name, }); }); setStates(states); } else { noti.notify(statesData.data.message, 'danger'); } const autoCompleteAddress = new google.maps.places.Autocomplete( document.getElementById('address'), { componentRestrictions: { country: ['US'] } } ); google.maps.event.addListener( autoCompleteAddress, 'place_changed', function () { setStoreData((prevState) => ({ ...prevState, address: locationRef.current.value, })); } ); }, []); const handleAddressKeyUp = (e) => { setStoreData((prevState) => ({ ...prevState, address: e.target.value })); }; return ( <> <Meta title={`Edit Store | ${APP_NAME}`} keywords={''} description={''} /> <section className='bg-black p-30-0-60'> <Container> <Row> <Col lg={12} className='mx-auto'> <Card className='card-dark border-gray p-15-20-30 br-10'> <Card.Header className='border-btm-gray mb-20 p-l-0 p-r-0 p-t-0 p-b-13'> <Card.Title className='fs-18 fw-600 color-white mb-0'> Edit Store </Card.Title> </Card.Header> <Card.Body className='p-0'> <Form> <Row> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Store Name</Form.Label> <Form.Control type='text' placeholder='Enter Store Name' value={storeData.managerName} name='managerName' onChange={handleChange} /> <div className={ checkValidation.managerName.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.managerName.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Address</Form.Label> <div className='form-icon form-icon-right'> <Form.Control type='text' value={storeData.address} name='address' placeholder='Enter Address' ref={locationRef} onChange={handleAddressKeyUp} id='address' /> <span className='icon'> <FontAwesomeIcon icon={faLocation} /> </span> </div> <div className={ checkValidation.address.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.address.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>State</Form.Label> <Select classNamePrefix='react-select' className='react-select-lg' styles={react_select_lg_Styles} value={states.filter( (item) => item.id == storeData.stateId )} options={states.map(({ id, name }) => ({ value: id, label: name, }))} onChange={(val) => handleChangeSelectState(val)} placeholder='Select State' components={{ DropdownIndicator, IndicatorSeparator: () => null, }} name='stateId' isClearable={true} /> <div className={ checkValidation.stateId.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.stateId.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Zip Code</Form.Label> <Form.Control type='number' name='zipCode' placeholder='Enter Zip Code' value={storeData.zipCode} onChange={handleChange} min='1' /> <div className={ checkValidation.zipCode.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.zipCode.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Phone Number</Form.Label> <InputMask name='phoneNumber' placeholder='Enter Phone Number' onChange={handleChange} onBlur={handleChange} value={storeData.phoneNumber} maskChar={null} className='form-control' mask='9999999999' /> <div className={ checkValidation.phoneNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.phoneNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>License Number</Form.Label> <Form.Control type='text' name='licenseNumber' onChange={handleChange} placeholder='Enter License Number' value={storeData.licenseNumber} /> <div className={ checkValidation.licenseNumber.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.licenseNumber.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>License Expire Date</Form.Label> <CustomDatePicker responsive={true} selectedDate={storeData.licenseExpirationDate} handleOnChange={(date) => handleChangeDate(date)} disableFutureDates={false} disablePastDates={true} /> <div className={ checkValidation.licenseExpirationDate.isInvalid ? 'animated fadeIn' : '' } > <div className='error'> {checkValidation.licenseExpirationDate.message} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>License Document</Form.Label> {storeData.certificatePath && ( <a className='color-f3772c curser-pointer ms-2' onClick={() => downloadFile(storeData.certificatePath) } > (Download Certificate File) </a> )} <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='medRecCertificate' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*,application/pdf' name='medRecCertificate' className='uploadImg' id='medRecCertificate' onChange={(e) => medRecDocumentHandler(e)} /> <div className='my-3'> {storeData.medRecCertificatePath?.name} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <Form.Label>Resale License Document</Form.Label> {storeData.resaleLicensePath && ( <a className='color-f3772c curser-pointer ms-2' onClick={() => downloadFile(storeData.resaleLicensePath) } > (Download Certificate File) </a> )} <div className='form-control upload_file' placeholder='Choose File' > <Form.Label htmlFor='document_upload' className='btn btn-primary bs-none' > Choose File </Form.Label> <Form.Control type='file' accept='image/*,application/pdf' name='license-upload' className='uploadImg' id='document_upload' onChange={(e) => resaledocumentHandler(e)} /> <div className='my-3'> {storeData.resaleLicensePath?.name} </div> </div> </Form.Group> </Col> <Col md={6}> <Form.Group className='form-dark mb-4'> <div className='mb-3'> <Form.Check inline label='Mark this my default address' name='isDefault' type={'checkbox'} value={!storeData?.isDefault} id={'isDefault'} checked={storeData.isDefault} onChange={handleChange} /> </div> </Form.Group> </Col> <Col md={12}> <div className='d-flex justify-content-center align-items-center mt-6 mbottom-5 flex-wrap'> <Link href='/stores'> <a className='btn btn-wh-160-54 btn-rounded btn-secondary btn-right-icons m-10'> Cancel <span> <FontAwesomeIcon icon={faAngleRight} /> </span> </a> </Link> <Button variant='primary' type='submit' className='btn-wh-150-54 btn-rounded btn-right-icons m-10' onClick={!showLoading ? handleSubmit : null} disabled={showLoading} > {showLoading ? ( <Spinner animation='border' /> ) : ( 'Save' )} <span className='color-22a612'> <FontAwesomeIcon icon={faAngleRight} /> </span> </Button> </div> </Col> </Row> </Form> </Card.Body> </Card> </Col> </Row> </Container> </section> </> ); } export default EditStore; export async function getServerSideProps(context) { const isLoggedIn = contextCookie(context, 'isLogin'); if (!isLoggedIn) { return { redirect: { destination: '/' }, }; } try { const { id } = context.params; const token = contextCookie(context, 'token'); let editStoreData = {}; const response = await Rest.axiosRequest( API.stores + '/' + id, {}, 'GET', false, token ); if (response.status === 200) { editStoreData = response.data.data; } else { return { notFound: true, }; } return { props: { editStoreData, }, }; } catch (e) { return { redirect: { destination: '/stores' }, }; } }
0
/content/gmx-projects/gmx-admin/frontend
/content/gmx-projects/gmx-admin/frontend/chatServer/server.js
const express = require("express"); const { createServer } = require("http"); const { Server } = require("socket.io"); const app = express(); const httpServer = createServer(app); const io = new Server(httpServer, { cors: { origin: "http://localhost:3000", }, }); app.get("/", function (req, res) { res.send("Access Forbidden!"); }); io.on("connection", (socket) => { socket.on("joinRoom", function (user, callback) { socket.join(user.username); }); socket.on("new_message", function (data) { io.to(data.receiver).emit("new_message", data); }); }); httpServer.listen(3001, () => { console.log("listening on localhost:3001"); });
0
/content/gmx-projects/gmx-admin/frontend
/content/gmx-projects/gmx-admin/frontend/chatServer/server-https.js
const express = require("express"); const { readFileSync } = require("fs"); const { createServer } = require("https"); const { Server } = require("socket.io"); const app = express(); const httpServer = createServer( { key: readFileSync("ssl/key.pem"), cert: readFileSync("ssl/crt.pem"), }, app ); const io = new Server(httpServer, { cors: { origin: "https://www.greenmarketexchange.com", }, }); app.get("/", function (req, res) { res.send("Access Forbidden!"); }); io.on("connection", (socket) => { socket.on("joinRoom", function (user, callback) { socket.join(user.username); }); socket.on("new_message", function (data) { io.to(data.receiver).emit("new_message", data); }); socket.on("notificationRoom", function (user, callback) { socket.join(user.username); }); socket.on("new_notification", function (data) { io.to(data.receiver).emit("new_notification", data); }); }); httpServer.listen(3007, () => { console.log("listening on localhost:3007"); });
0
/content/gmx-projects/gmx-admin/frontend
/content/gmx-projects/gmx-admin/frontend/chatServer/package-lock.json
{ "name": "chatserver", "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "chatserver", "version": "1.0.0", "license": "ISC", "dependencies": { "cors": "^2.8.5", "express": "^4.17.1", "socket.io": "^4.5.3" } }, "node_modules/@socket.io/component-emitter": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" }, "node_modules/@types/cors": { "version": "2.8.12", "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==" }, "node_modules/@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" } }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, "node_modules/base64id": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "engines": { "node": "^4.5.0 || >= 5.9" } }, "node_modules/body-parser": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dependencies": { "safe-buffer": "5.2.1" }, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dependencies": { "object-assign": "^4", "vary": "^1" }, "engines": { "node": ">= 0.10" } }, "node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "engines": { "node": ">= 0.8" } }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "engines": { "node": ">= 0.8" } }, "node_modules/engine.io": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", "ws": "~8.2.3" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-parser": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz", "integrity": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==", "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io/node_modules/cookie": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "engines": { "node": ">= 0.6" } }, "node_modules/engine.io/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/engine.io/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "engines": { "node": ">= 0.6" } }, "node_modules/express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.10.0" } }, "node_modules/finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "engines": { "node": ">= 0.6" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "engines": { "node": ">= 0.6" } }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/get-intrinsic": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { "function-bind": "^1.1.1" }, "engines": { "node": ">= 0.4.0" } }, "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "engines": { "node": ">= 0.10" } }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "engines": { "node": ">= 0.6" } }, "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "engines": { "node": ">= 0.6" } }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4" } }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "engines": { "node": ">= 0.6" } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } }, "node_modules/object-inspect": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dependencies": { "ee-first": "1.1.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "engines": { "node": ">= 0.8" } }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, "engines": { "node": ">= 0.10" } }, "node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dependencies": { "side-channel": "^1.0.4" }, "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/socket.io": { "version": "4.5.3", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz", "integrity": "sha512-zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", "engine.io": "~6.2.0", "socket.io-adapter": "~2.4.0", "socket.io-parser": "~4.2.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/socket.io-adapter": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" }, "node_modules/socket.io-parser": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.1.tgz", "integrity": "sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" }, "engines": { "node": ">=10.0.0" } }, "node_modules/socket.io-parser/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/socket.io-parser/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/socket.io/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/socket.io/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "engines": { "node": ">= 0.8" } }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "engines": { "node": ">=0.6" } }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" }, "engines": { "node": ">= 0.6" } }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "engines": { "node": ">= 0.8" } }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "engines": { "node": ">= 0.4.0" } }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "engines": { "node": ">= 0.8" } }, "node_modules/ws": { "version": "8.2.3", "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", "engines": { "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } } }, "dependencies": { "@socket.io/component-emitter": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", "integrity": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" }, "@types/cors": { "version": "2.8.12", "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==" }, "@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "requires": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, "base64id": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" }, "body-parser": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "requires": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" } }, "bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "requires": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" } }, "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "requires": { "safe-buffer": "5.2.1" } }, "content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, "cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "requires": { "object-assign": "^4", "vary": "^1" } }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" } }, "depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" }, "destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" }, "engine.io": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", "ws": "~8.2.3" }, "dependencies": { "cookie": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "engine.io-parser": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz", "integrity": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==" }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" }, "express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" } }, "finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" } }, "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" }, "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "get-intrinsic": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" } }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { "function-bind": "^1.1.1" } }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, "http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "requires": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" }, "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" }, "mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" }, "mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" }, "mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "requires": { "mime-db": "1.52.0" } }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" }, "object-inspect": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, "on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "requires": { "ee-first": "1.1.1" } }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, "proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "requires": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "requires": { "side-channel": "^1.0.4" } }, "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" }, "raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "requires": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }, "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "requires": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "dependencies": { "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" } } }, "serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }, "setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "requires": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" } }, "socket.io": { "version": "4.5.3", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz", "integrity": "sha512-zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", "engine.io": "~6.2.0", "socket.io-adapter": "~2.4.0", "socket.io-parser": "~4.2.0" }, "dependencies": { "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "socket.io-adapter": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" }, "socket.io-parser": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.1.tgz", "integrity": "sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" }, "dependencies": { "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" }, "toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" }, "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" } }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" }, "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "ws": { "version": "8.2.3", "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", "requires": {} } } }
0
/content/gmx-projects/gmx-admin/frontend
/content/gmx-projects/gmx-admin/frontend/chatServer/package.json
{ "name": "chatserver", "version": "1.0.0", "description": "\"Chat Server\"", "main": "server.js", "scripts": { "start": "node server-https.js", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Lalit Bhanderi", "license": "ISC", "dependencies": { "cors": "^2.8.5", "express": "^4.17.1", "socket.io": "^4.5.3" } }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/tsconfig.build.json
{ "extends": "./tsconfig.json", "exclude": ["node_modules", "test", "dist", "**/*spec.ts"] }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/.prettierrc
{ "singleQuote": true, "trailingComma": "all" }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/README.md
# GMX Backend Framework : Node JS Node Version : v16.17.0 ## Getting started To make it easy for you to get started with GitLab, here's a list of recommended next steps. Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! ## Add your files - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: ``` cd existing_repo git remote add origin https://gitlab.com/nyusoft-solutions/gmx-backend.git git branch -M main git push -uf origin main ``` ## Integrate with your tools - [ ] [Set up project integrations](https://gitlab.com/nyusoft-solutions/gmx-backend/-/settings/integrations) ## Collaborate with your team - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) ## Test and Deploy Use the built-in continuous integration in GitLab. - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) *** # Editing this README When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. ## Suggestions for a good README Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. ## Name Choose a self-explaining name for your project. ## Description Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. ## Badges On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. ## Visuals Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. ## Installation Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. ## Usage Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. ## Support Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. ## Roadmap If you have ideas for releases in the future, it is a good idea to list them in the README. ## Contributing State if you are open to contributions and what your requirements are for accepting them. For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. ## Authors and acknowledgment Show your appreciation to those who have contributed to the project. ## License For open source projects, say how it is licensed. ## Project status If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/nest-cli.json
{ "collection": "@nestjs/schematics", "sourceRoot": "src" }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/tsconfig.json
{ "compilerOptions": { "module": "commonjs", "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "es2017", "sourceMap": true, "outDir": "./dist", "baseUrl": "./", "incremental": true, "skipLibCheck": true, "strictNullChecks": false, "noImplicitAny": false, "strictBindCallApply": false, "forceConsistentCasingInFileNames": false, "noFallthroughCasesInSwitch": false } }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/package-lock.json
{ "name": "gmx-nodejs", "version": "0.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "gmx-nodejs", "version": "0.0.1", "license": "UNLICENSED", "dependencies": { "@nestjs-modules/mailer": "^1.6.1", "@nestjs/common": "^8.0.0", "@nestjs/core": "^8.0.0", "@nestjs/jwt": "^8.0.0", "@nestjs/mapped-types": "*", "@nestjs/passport": "^8.2.1", "@nestjs/platform-express": "^8.0.0", "@nestjs/schedule": "^2.1.0", "@nestjs/sequelize": "^8.0.0", "@types/bcryptjs": "^2.4.2", "bcryptjs": "^2.4.3", "class-transformer": "^0.5.1", "class-validator": "^0.13.2", "dotenv": "^16.0.0", "file-size": "^1.0.0", "moment": "^2.29.3", "mysql2": "^2.3.3", "nest-router": "^1.0.9", "passport": "^0.5.2", "passport-jwt": "^4.0.0", "passport-local": "^1.0.0", "pdf-creator-node": "^2.3.4", "react-dropzone-uploader": "^2.11.0", "reflect-metadata": "^0.1.13", "rimraf": "^3.0.2", "rxjs": "^7.2.0", "sequelize": "^6.17.0", "sequelize-typescript": "^2.1.3", "stripe": "^8.222.0" }, "devDependencies": { "@nestjs/cli": "^8.0.0", "@nestjs/schematics": "^8.0.0", "@nestjs/testing": "^8.0.0", "@types/cron": "^2.0.0", "@types/express": "^4.17.13", "@types/jest": "^27.0.1", "@types/multer": "^1.4.7", "@types/node": "^16.0.0", "@types/passport-local": "^1.0.34", "@types/sequelize": "^4.28.11", "@types/supertest": "^2.0.11", "@typescript-eslint/eslint-plugin": "^4.28.2", "@typescript-eslint/parser": "^4.28.2", "eslint": "^7.30.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "jest": "^27.0.6", "prettier": "^2.3.2", "supertest": "^6.1.3", "ts-jest": "^27.0.3", "ts-loader": "^9.2.3", "ts-node": "^10.0.0", "tsconfig-paths": "^3.10.1", "typescript": "^4.3.5" } }, "node_modules/@ampproject/remapping": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.1.0", "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@angular-devkit/core": { "version": "13.3.6", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.6.tgz", "integrity": "sha512-ZmD586B+RnM2CG5+jbXh2NVfIydTc/yKSjppYDDOv4I530YBm6vpfZMwClpiNk6XLbMv7KqX4Tlr4wfxlPYYbA==", "dev": true, "dependencies": { "ajv": "8.9.0", "ajv-formats": "2.1.1", "fast-json-stable-stringify": "2.1.0", "magic-string": "0.25.7", "rxjs": "6.6.7", "source-map": "0.7.3" }, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { "chokidar": "^3.5.2" }, "peerDependenciesMeta": { "chokidar": { "optional": true } } }, "node_modules/@angular-devkit/core/node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "dependencies": { "tslib": "^1.9.0" }, "engines": { "npm": ">=2.0.0" } }, "node_modules/@angular-devkit/core/node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "node_modules/@angular-devkit/schematics": { "version": "13.3.6", "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.6.tgz", "integrity": "sha512-yLh5xc92C/FiaAp27coPiKWpSUmwoXF7vMxbJYJTyOXlt0mUITAEAwtrZQNr4yAxW/yvgTdyg7PhXaveQNTUuQ==", "dev": true, "dependencies": { "@angular-devkit/core": "13.3.6", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", "rxjs": "6.6.7" }, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/schematics-cli": { "version": "13.3.6", "resolved": "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-13.3.6.tgz", "integrity": "sha512-5tTuu9gbXM0bMk0sin4phmWA3U1Qz53zT/rpEfzQ/+c/s8CoqZ5N1qOnYtemRct3Jxsz1kn4TBpHeriR4r5hHg==", "dev": true, "dependencies": { "@angular-devkit/core": "13.3.6", "@angular-devkit/schematics": "13.3.6", "ansi-colors": "4.1.1", "inquirer": "8.2.0", "minimist": "1.2.6", "symbol-observable": "4.0.0" }, "bin": { "schematics": "bin/schematics.js" }, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/schematics-cli/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@angular-devkit/schematics-cli/node_modules/inquirer": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.0.tgz", "integrity": "sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==", "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.21", "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", "rxjs": "^7.2.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" }, "engines": { "node": ">=8.0.0" } }, "node_modules/@angular-devkit/schematics/node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "dependencies": { "tslib": "^1.9.0" }, "engines": { "npm": ">=2.0.0" } }, "node_modules/@angular-devkit/schematics/node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "node_modules/@babel/code-frame": { "version": "7.12.11", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "dependencies": { "@babel/highlight": "^7.10.4" } }, "node_modules/@babel/compat-data": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz", "integrity": "sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.3.tgz", "integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", "@babel/generator": "^7.19.3", "@babel/helper-compilation-targets": "^7.19.3", "@babel/helper-module-transforms": "^7.19.0", "@babel/helpers": "^7.19.0", "@babel/parser": "^7.19.3", "@babel/template": "^7.18.10", "@babel/traverse": "^7.19.3", "@babel/types": "^7.19.3", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.1", "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/babel" } }, "node_modules/@babel/core/node_modules/@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "dependencies": { "@babel/highlight": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz", "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==", "dev": true, "dependencies": { "@babel/types": "^7.19.3", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "dev": true, "dependencies": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/helper-compilation-targets": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz", "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==", "dev": true, "dependencies": { "@babel/compat-data": "^7.19.3", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-environment-visitor": { "version": "7.18.9", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, "dependencies": { "@babel/template": "^7.18.10", "@babel/types": "^7.19.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, "dependencies": { "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "dev": true, "dependencies": { "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.10", "@babel/traverse": "^7.19.0", "@babel/types": "^7.19.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", "dev": true, "dependencies": { "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, "dependencies": { "@babel/types": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { "version": "7.19.1", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", "dev": true, "dependencies": { "@babel/template": "^7.18.10", "@babel/traverse": "^7.19.0", "@babel/types": "^7.19.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { "color-name": "1.1.3" } }, "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "engines": { "node": ">=0.8.0" } }, "node_modules/@babel/highlight/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/@babel/parser": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz", "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==", "bin": { "parser": "bin/babel-parser.js" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/runtime": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", "dependencies": { "regenerator-runtime": "^0.13.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.18.10", "@babel/types": "^7.18.10" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template/node_modules/@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "dependencies": { "@babel/highlight": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz", "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==", "dev": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/generator": "^7.19.3", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/parser": "^7.19.3", "@babel/types": "^7.19.3", "debug": "^4.1.0", "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse/node_modules/@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "dependencies": { "@babel/highlight": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse/node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/@babel/types": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", "dependencies": { "@babel/helper-string-parser": "^7.18.10", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, "optional": true, "engines": { "node": ">=0.1.90" } }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "0.3.9" }, "engines": { "node": ">=12" } }, "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@eslint/eslintrc": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.1.1", "espree": "^7.3.0", "globals": "^13.9.0", "ignore": "^4.0.6", "import-fresh": "^3.2.1", "js-yaml": "^3.13.1", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/@eslint/eslintrc/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/@eslint/eslintrc/node_modules/ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/@humanwhocodes/config-array": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.0", "debug": "^4.1.1", "minimatch": "^3.0.4" }, "engines": { "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/@jest/console": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/console/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@jest/core": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "dev": true, "dependencies": { "@jest/console": "^27.5.1", "@jest/reporters": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "jest-changed-files": "^27.5.1", "jest-config": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-resolve-dependencies": "^27.5.1", "jest-runner": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/@jest/core/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@jest/environment": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "dev": true, "dependencies": { "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/fake-timers": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/globals": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/types": "^27.5.1", "expect": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/reporters": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", "jest-haste-map": "^27.5.1", "jest-resolve": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", "terminal-link": "^2.0.0", "v8-to-istanbul": "^8.1.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/@jest/reporters/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@jest/reporters/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@jest/reporters/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/source-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dev": true, "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.9", "source-map": "^0.6.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/source-map/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/test-result": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dev": true, "dependencies": { "@jest/console": "^27.5.1", "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/test-sequencer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "dev": true, "dependencies": { "@jest/test-result": "^27.5.1", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-runtime": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/transform": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/transform/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@jest/transform/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^16.0.0", "chalk": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/types/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@jonkemp/package-utils": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@jonkemp/package-utils/-/package-utils-1.0.8.tgz", "integrity": "sha512-bIcKnH5YmtTYr7S6J3J86dn/rFiklwRpOqbTOQ9C0WMmR9FKHVb3bxs2UYfqEmNb93O4nbA97sb6rtz33i9SyA==" }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", "dev": true, "dependencies": { "@jridgewell/set-array": "^1.0.0", "@jridgewell/sourcemap-codec": "^1.4.10" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "dev": true, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "dev": true, "dependencies": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.14", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "dev": true }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.15", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@nestjs-modules/mailer": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/@nestjs-modules/mailer/-/mailer-1.8.1.tgz", "integrity": "sha512-rNlKzNB+Vr/aRDVcTibj2JCJQcTSE59EBQIpCwh/FkKg0Be1xoF3dQDZ4dmc9X1j396fkIBI5aQ5XAtJNPdxpw==", "dependencies": { "glob": "8.0.3", "inline-css": "4.0.1", "mjml": "^4.12.0", "preview-email": "3.0.5" }, "optionalDependencies": { "@types/ejs": "^3.0.3", "@types/pug": "2.0.6", "ejs": "^3.1.2", "handlebars": "^4.7.6", "pug": "^3.0.1" }, "peerDependencies": { "@nestjs/common": "^7.0.9 || ^8.0.0 || ^9.0.0", "@nestjs/core": "^7.0.9 || ^8.0.0 || ^9.0.0", "@types/ejs": "^3.0.3", "@types/pug": "2.0.6", "ejs": "^3.1.2", "handlebars": "^4.7.6", "nodemailer": "^6.4.6", "pug": "^3.0.1" } }, "node_modules/@nestjs/cli": { "version": "8.2.8", "resolved": "https://registry.npmjs.org/@nestjs/cli/-/cli-8.2.8.tgz", "integrity": "sha512-y5Imcw1EY0OxD3POAM7SLUB1rFdn5FjbfSsyJrokjKmXY+i6KcBdbRrv3Ox7aeJ4W7wXuckIXZEUlK6lC52dnA==", "dev": true, "dependencies": { "@angular-devkit/core": "13.3.6", "@angular-devkit/schematics": "13.3.6", "@angular-devkit/schematics-cli": "13.3.6", "@nestjs/schematics": "^8.0.3", "chalk": "3.0.0", "chokidar": "3.5.3", "cli-table3": "0.6.2", "commander": "4.1.1", "fork-ts-checker-webpack-plugin": "7.2.11", "inquirer": "7.3.3", "node-emoji": "1.11.0", "ora": "5.4.1", "os-name": "4.0.1", "rimraf": "3.0.2", "shelljs": "0.8.5", "source-map-support": "0.5.21", "tree-kill": "1.2.2", "tsconfig-paths": "3.14.1", "tsconfig-paths-webpack-plugin": "3.5.2", "typescript": "4.7.4", "webpack": "5.73.0", "webpack-node-externals": "3.0.0" }, "bin": { "nest": "bin/nest.js" }, "engines": { "node": ">= 10.13.0", "npm": ">= 6.11.0" } }, "node_modules/@nestjs/cli/node_modules/acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/@nestjs/cli/node_modules/acorn-import-assertions": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", "dev": true, "peerDependencies": { "acorn": "^8" } }, "node_modules/@nestjs/cli/node_modules/typescript": { "version": "4.7.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=4.2.0" } }, "node_modules/@nestjs/cli/node_modules/webpack": { "version": "5.73.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.73.0.tgz", "integrity": "sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==", "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", "acorn": "^8.4.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.9.3", "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.9", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.3.1", "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" }, "engines": { "node": ">=10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependenciesMeta": { "webpack-cli": { "optional": true } } }, "node_modules/@nestjs/common": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/common/-/common-8.4.7.tgz", "integrity": "sha512-m/YsbcBal+gA5CFrDpqXqsSfylo+DIQrkFY3qhVIltsYRfu8ct8J9pqsTO6OPf3mvqdOpFGrV5sBjoyAzOBvsw==", "dependencies": { "axios": "0.27.2", "iterare": "1.2.1", "tslib": "2.4.0", "uuid": "8.3.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/nest" }, "peerDependencies": { "cache-manager": "*", "class-transformer": "*", "class-validator": "*", "reflect-metadata": "^0.1.12", "rxjs": "^7.1.0" }, "peerDependenciesMeta": { "cache-manager": { "optional": true }, "class-transformer": { "optional": true }, "class-validator": { "optional": true } } }, "node_modules/@nestjs/core": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/core/-/core-8.4.7.tgz", "integrity": "sha512-XB9uexHqzr2xkPo6QSiQWJJttyYYLmvQ5My64cFvWFi7Wk2NIus0/xUNInwX3kmFWB6pF1ab5Y2ZBvWdPwGBhw==", "hasInstallScript": true, "dependencies": { "@nuxtjs/opencollective": "0.3.2", "fast-safe-stringify": "2.1.1", "iterare": "1.2.1", "object-hash": "3.0.0", "path-to-regexp": "3.2.0", "tslib": "2.4.0", "uuid": "8.3.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/nest" }, "peerDependencies": { "@nestjs/common": "^8.0.0", "@nestjs/microservices": "^8.0.0", "@nestjs/platform-express": "^8.0.0", "@nestjs/websockets": "^8.0.0", "reflect-metadata": "^0.1.12", "rxjs": "^7.1.0" }, "peerDependenciesMeta": { "@nestjs/microservices": { "optional": true }, "@nestjs/platform-express": { "optional": true }, "@nestjs/websockets": { "optional": true } } }, "node_modules/@nestjs/jwt": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/@nestjs/jwt/-/jwt-8.0.1.tgz", "integrity": "sha512-9WGfgngX8aclC/MC+CH35Ooo4iPVKc+7xLXaBV6o4ty8g2uZdPomry7cSdK/e6Lv623O/84WapThnPoAtW/jvA==", "dependencies": { "@types/jsonwebtoken": "8.5.8", "jsonwebtoken": "8.5.1" }, "peerDependencies": { "@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/@nestjs/mapped-types": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@nestjs/mapped-types/-/mapped-types-1.1.0.tgz", "integrity": "sha512-+2kSly4P1QI+9eGt+/uGyPdEG1hVz7nbpqPHWZVYgoqz8eOHljpXPag+UCVRw9zo2XCu4sgNUIGe8Uk0+OvUQg==", "peerDependencies": { "@nestjs/common": "^7.0.8 || ^8.0.0 || ^9.0.0", "class-transformer": "^0.2.0 || ^0.3.0 || ^0.4.0 || ^0.5.0", "class-validator": "^0.11.1 || ^0.12.0 || ^0.13.0", "reflect-metadata": "^0.1.12" }, "peerDependenciesMeta": { "class-transformer": { "optional": true }, "class-validator": { "optional": true } } }, "node_modules/@nestjs/passport": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/@nestjs/passport/-/passport-8.2.2.tgz", "integrity": "sha512-Ytbn8j7WZ4INmEntOpdJY1isTgdQqZkx5ADz8zsZ5wAp0t8tc5GF/A+GlXlmn9/yRPwZHSbmHpv7Qt2EIiNnrw==", "peerDependencies": { "@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0", "passport": "^0.4.0 || ^0.5.0 || ^0.6.0" } }, "node_modules/@nestjs/platform-express": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/platform-express/-/platform-express-8.4.7.tgz", "integrity": "sha512-lPE5Ltg2NbQGRQIwXWY+4cNrXhJdycbxFDQ8mNxSIuv+LbrJBIdEB/NONk+LLn9N/8d2+I2LsIETGQrPvsejBg==", "dependencies": { "body-parser": "1.20.0", "cors": "2.8.5", "express": "4.18.1", "multer": "1.4.4-lts.1", "tslib": "2.4.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/nest" }, "peerDependencies": { "@nestjs/common": "^8.0.0", "@nestjs/core": "^8.0.0" } }, "node_modules/@nestjs/schedule": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/@nestjs/schedule/-/schedule-2.1.0.tgz", "integrity": "sha512-4Xaw56WiW3VsxEPPnj/iDtfjcO+sUZyYAeRxD0gnF5havncxjAnv52Iw7UH3DuzzUA784xPGgGje3Fq0Gu925g==", "dependencies": { "cron": "2.0.0", "uuid": "8.3.2" }, "peerDependencies": { "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0", "@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0", "reflect-metadata": "^0.1.12" } }, "node_modules/@nestjs/schematics": { "version": "8.0.11", "resolved": "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.11.tgz", "integrity": "sha512-W/WzaxgH5aE01AiIErE9QrQJ73VR/M/8p8pq0LZmjmNcjZqU5kQyOWUxZg13WYfSpJdOa62t6TZRtFDmgZPoIg==", "dev": true, "dependencies": { "@angular-devkit/core": "13.3.5", "@angular-devkit/schematics": "13.3.5", "fs-extra": "10.1.0", "jsonc-parser": "3.0.0", "pluralize": "8.0.0" }, "peerDependencies": { "typescript": "^3.4.5 || ^4.3.5" } }, "node_modules/@nestjs/schematics/node_modules/@angular-devkit/core": { "version": "13.3.5", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.5.tgz", "integrity": "sha512-w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ==", "dev": true, "dependencies": { "ajv": "8.9.0", "ajv-formats": "2.1.1", "fast-json-stable-stringify": "2.1.0", "magic-string": "0.25.7", "rxjs": "6.6.7", "source-map": "0.7.3" }, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { "chokidar": "^3.5.2" }, "peerDependenciesMeta": { "chokidar": { "optional": true } } }, "node_modules/@nestjs/schematics/node_modules/@angular-devkit/schematics": { "version": "13.3.5", "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.5.tgz", "integrity": "sha512-0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w==", "dev": true, "dependencies": { "@angular-devkit/core": "13.3.5", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", "rxjs": "6.6.7" }, "engines": { "node": "^12.20.0 || ^14.15.0 || >=16.10.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@nestjs/schematics/node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "dependencies": { "tslib": "^1.9.0" }, "engines": { "npm": ">=2.0.0" } }, "node_modules/@nestjs/schematics/node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "node_modules/@nestjs/sequelize": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/@nestjs/sequelize/-/sequelize-8.0.1.tgz", "integrity": "sha512-nO1Pipvl1Msvb3h0wQusbIDDz5713Qlc4EIZFaVenNXwktbuPNqbmbNlclWmfBhnJNjs9cOWWDLPE1wm7uvlqQ==", "dependencies": { "uuid": "8.3.2" }, "peerDependencies": { "@nestjs/common": "^8.0.0", "@nestjs/core": "^8.0.0", "reflect-metadata": "^0.1.13", "rxjs": "^7.2.0", "sequelize": "^6.3.5", "sequelize-typescript": "^2.0.0" } }, "node_modules/@nestjs/testing": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/testing/-/testing-8.4.7.tgz", "integrity": "sha512-aedpeJFicTBeiTCvJWUG45WMMS53f5eu8t2fXsfjsU1t+WdDJqYcZyrlCzA4dL1B7MfbqaTURdvuVVHTmJO8ag==", "dev": true, "dependencies": { "tslib": "2.4.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/nest" }, "peerDependencies": { "@nestjs/common": "^8.0.0", "@nestjs/core": "^8.0.0", "@nestjs/microservices": "^8.0.0", "@nestjs/platform-express": "^8.0.0" }, "peerDependenciesMeta": { "@nestjs/microservices": { "optional": true }, "@nestjs/platform-express": { "optional": true } } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { "node": ">= 8" } }, "node_modules/@nuxtjs/opencollective": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz", "integrity": "sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==", "dependencies": { "chalk": "^4.1.0", "consola": "^2.15.0", "node-fetch": "^2.6.1" }, "bin": { "opencollective": "bin/opencollective.js" }, "engines": { "node": ">=8.0.0", "npm": ">=5.0.0" } }, "node_modules/@nuxtjs/opencollective/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@selderee/plugin-htmlparser2": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.6.0.tgz", "integrity": "sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==", "dependencies": { "domhandler": "^4.2.0", "selderee": "^0.6.0" }, "funding": { "url": "https://ko-fi.com/killymxi" } }, "node_modules/@selderee/plugin-htmlparser2/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/@sinonjs/commons": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", "dev": true, "dependencies": { "@sinonjs/commons": "^1.7.0" } }, "node_modules/@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "engines": { "node": ">= 6" } }, "node_modules/@tsconfig/node10": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", "dev": true }, "node_modules/@tsconfig/node12": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", "dev": true }, "node_modules/@tsconfig/node14": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", "dev": true }, "node_modules/@tsconfig/node16": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", "dev": true }, "node_modules/@types/babel__core": { "version": "7.1.19", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "node_modules/@types/babel__generator": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { "version": "7.18.2", "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.2.tgz", "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", "dev": true, "dependencies": { "@babel/types": "^7.3.0" } }, "node_modules/@types/bcryptjs": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.2.tgz", "integrity": "sha512-LiMQ6EOPob/4yUL66SZzu6Yh77cbzJFYll+ZfaPiPPFswtIlA/Fs1MzdKYA7JApHU49zQTbJGX3PDmCpIdDBRQ==" }, "node_modules/@types/bluebird": { "version": "3.5.37", "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.37.tgz", "integrity": "sha512-g2qEd+zkfkTEudA2SrMAeAvY7CrFqtbsLILm2dT2VIeKTqMqVzcdfURlvu6FU3srRgbmXN1Srm94pg34EIehww==", "dev": true }, "node_modules/@types/body-parser": { "version": "1.19.2", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/continuation-local-storage": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/@types/continuation-local-storage/-/continuation-local-storage-3.2.4.tgz", "integrity": "sha512-OT32vCVMymU1JMPKDeY0lX3cduAr0Pm/VwIbxygMeDS4lRcv57qYXn9bMwBRcRnEpXKBb/r4xYaZCARTZllP0A==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/cookiejar": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.2.tgz", "integrity": "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==", "dev": true }, "node_modules/@types/cron": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@types/cron/-/cron-2.0.0.tgz", "integrity": "sha512-xZM08fqvwIXgghtPVkSPKNgC+JoMQ2OHazEvyTKnNf7aWu1aB6/4lBbQFrb03Td2cUGG7ITzMv3mFYnMu6xRaQ==", "dev": true, "dependencies": { "@types/luxon": "*", "@types/node": "*" } }, "node_modules/@types/debug": { "version": "4.1.7", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", "dependencies": { "@types/ms": "*" } }, "node_modules/@types/ejs": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.1.tgz", "integrity": "sha512-RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==", "optional": true }, "node_modules/@types/eslint": { "version": "8.4.6", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.6.tgz", "integrity": "sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==", "dev": true, "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "node_modules/@types/eslint-scope": { "version": "3.7.4", "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { "version": "0.0.51", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true }, "node_modules/@types/express": { "version": "4.17.14", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", "dev": true, "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.18", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { "version": "4.17.31", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "dev": true, "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*" } }, "node_modules/@types/graceful-fs": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", "dev": true }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { "version": "27.5.2", "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", "dev": true, "dependencies": { "jest-matcher-utils": "^27.0.0", "pretty-format": "^27.0.0" } }, "node_modules/@types/json-schema": { "version": "7.0.11", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "node_modules/@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true }, "node_modules/@types/jsonwebtoken": { "version": "8.5.8", "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz", "integrity": "sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/lodash": { "version": "4.14.185", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz", "integrity": "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==", "dev": true }, "node_modules/@types/luxon": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@types/luxon/-/luxon-3.1.0.tgz", "integrity": "sha512-gCd/HcCgjqSxfMrgtqxCgYk/22NBQfypwFUG7ZAyG/4pqs51WLTcUzVp1hqTbieDYeHS3WoVEh2Yv/2l+7B0Vg==", "dev": true }, "node_modules/@types/mime": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", "dev": true }, "node_modules/@types/ms": { "version": "0.7.31", "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "node_modules/@types/multer": { "version": "1.4.7", "resolved": "https://registry.npmjs.org/@types/multer/-/multer-1.4.7.tgz", "integrity": "sha512-/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA==", "dev": true, "dependencies": { "@types/express": "*" } }, "node_modules/@types/node": { "version": "16.11.62", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.62.tgz", "integrity": "sha512-K/ggecSdwAAy2NUW4WKmF4Rc03GKbsfP+k326UWgckoS+Rzd2PaWbjk76dSmqdLQvLTJAO9axiTUJ6488mFsYQ==" }, "node_modules/@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, "node_modules/@types/passport": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@types/passport/-/passport-1.0.11.tgz", "integrity": "sha512-pz1cx9ptZvozyGKKKIPLcVDVHwae4hrH5d6g5J+DkMRRjR3cVETb4jMabhXAUbg3Ov7T22nFHEgaK2jj+5CBpw==", "dev": true, "dependencies": { "@types/express": "*" } }, "node_modules/@types/passport-local": { "version": "1.0.34", "resolved": "https://registry.npmjs.org/@types/passport-local/-/passport-local-1.0.34.tgz", "integrity": "sha512-PSc07UdYx+jhadySxxIYWuv6sAnY5e+gesn/5lkPKfBeGuIYn9OPR+AAEDq73VRUh6NBTpvE/iPE62rzZUslog==", "dev": true, "dependencies": { "@types/express": "*", "@types/passport": "*", "@types/passport-strategy": "*" } }, "node_modules/@types/passport-strategy": { "version": "0.2.35", "resolved": "https://registry.npmjs.org/@types/passport-strategy/-/passport-strategy-0.2.35.tgz", "integrity": "sha512-o5D19Jy2XPFoX2rKApykY15et3Apgax00RRLf0RUotPDUsYrQa7x4howLYr9El2mlUApHmCMv5CZ1IXqKFQ2+g==", "dev": true, "dependencies": { "@types/express": "*", "@types/passport": "*" } }, "node_modules/@types/prettier": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.1.tgz", "integrity": "sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==", "dev": true }, "node_modules/@types/pug": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.6.tgz", "integrity": "sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==", "optional": true }, "node_modules/@types/qs": { "version": "6.9.7", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, "node_modules/@types/range-parser": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "dev": true }, "node_modules/@types/sequelize": { "version": "4.28.14", "resolved": "https://registry.npmjs.org/@types/sequelize/-/sequelize-4.28.14.tgz", "integrity": "sha512-O8lTJ8YPVVaoY9xjduchDlo0MOS3w262pro2H1QMuFIo/kc/p1elP/UxLOTP2wcVO2cFd6Gvghg9ZSAiJi0GLA==", "dev": true, "dependencies": { "@types/bluebird": "*", "@types/continuation-local-storage": "*", "@types/lodash": "*", "@types/validator": "*" } }, "node_modules/@types/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", "dev": true, "dependencies": { "@types/mime": "*", "@types/node": "*" } }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, "node_modules/@types/superagent": { "version": "4.1.15", "resolved": "https://registry.npmjs.org/@types/superagent/-/superagent-4.1.15.tgz", "integrity": "sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==", "dev": true, "dependencies": { "@types/cookiejar": "*", "@types/node": "*" } }, "node_modules/@types/supertest": { "version": "2.0.12", "resolved": "https://registry.npmjs.org/@types/supertest/-/supertest-2.0.12.tgz", "integrity": "sha512-X3HPWTwXRerBZS7Mo1k6vMVR1Z6zmJcDVn5O/31whe0tnjE4te6ZJSJGq1RiqHPjzPdMTfjCFogDJmwng9xHaQ==", "dev": true, "dependencies": { "@types/superagent": "*" } }, "node_modules/@types/validator": { "version": "13.7.7", "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.7.tgz", "integrity": "sha512-jiEw2kTUJ8Jsh4A1K4b5Pkjj9Xz6FktLLOQ36ZVLRkmxFbpTvAV2VRoKMojz8UlZxNg/2dZqzpigH4JYn1bkQg==" }, "node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { "version": "21.0.0", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", "dev": true, "dependencies": { "@typescript-eslint/experimental-utils": "4.33.0", "@typescript-eslint/scope-manager": "4.33.0", "debug": "^4.3.1", "functional-red-black-tree": "^1.0.1", "ignore": "^5.1.8", "regexpp": "^3.1.0", "semver": "^7.3.5", "tsutils": "^3.21.0" }, "engines": { "node": "^10.12.0 || >=12.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "@typescript-eslint/parser": "^4.0.0", "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/experimental-utils": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.7", "@typescript-eslint/scope-manager": "4.33.0", "@typescript-eslint/types": "4.33.0", "@typescript-eslint/typescript-estree": "4.33.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0" }, "engines": { "node": "^10.12.0 || >=12.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "*" } }, "node_modules/@typescript-eslint/parser": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", "dev": true, "dependencies": { "@typescript-eslint/scope-manager": "4.33.0", "@typescript-eslint/types": "4.33.0", "@typescript-eslint/typescript-estree": "4.33.0", "debug": "^4.3.1" }, "engines": { "node": "^10.12.0 || >=12.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/scope-manager": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", "dev": true, "dependencies": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0" }, "engines": { "node": "^8.10.0 || ^10.13.0 || >=11.10.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/types": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", "dev": true, "engines": { "node": "^8.10.0 || ^10.13.0 || >=11.10.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/typescript-estree": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", "dev": true, "dependencies": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0", "debug": "^4.3.1", "globby": "^11.0.3", "is-glob": "^4.0.1", "semver": "^7.3.5", "tsutils": "^3.21.0" }, "engines": { "node": "^10.12.0 || >=12.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/visitor-keys": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", "dev": true, "dependencies": { "@typescript-eslint/types": "4.33.0", "eslint-visitor-keys": "^2.0.0" }, "engines": { "node": "^8.10.0 || ^10.13.0 || >=11.10.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "dev": true, "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.1", "@webassemblyjs/helper-api-error": "1.11.1", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/wasm-gen": "1.11.1" } }, "node_modules/@webassemblyjs/ieee754": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/helper-wasm-section": "1.11.1", "@webassemblyjs/wasm-gen": "1.11.1", "@webassemblyjs/wasm-opt": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", "@webassemblyjs/wast-printer": "1.11.1" } }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/ieee754": "1.11.1", "@webassemblyjs/leb128": "1.11.1", "@webassemblyjs/utf8": "1.11.1" } }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", "@webassemblyjs/wasm-gen": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1" } }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-api-error": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/ieee754": "1.11.1", "@webassemblyjs/leb128": "1.11.1", "@webassemblyjs/utf8": "1.11.1" } }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, "node_modules/abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", "dev": true }, "node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" } }, "node_modules/acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-globals": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "dependencies": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dependencies": { "debug": "4" }, "engines": { "node": ">= 6.0.0" } }, "node_modules/ajv": { "version": "8.9.0", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz", "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ajv-formats": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "dependencies": { "ajv": "^8.0.0" }, "peerDependencies": { "ajv": "^8.0.0" }, "peerDependenciesMeta": { "ajv": { "optional": true } } }, "node_modules/ansi-colors": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", "engines": { "node": ">=6" } }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { "type-fest": "^0.21.3" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-escapes/node_modules/type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/append-field": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, "node_modules/asn1": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "optional": true, "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/assert-never": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz", "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==" }, "node_modules/assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "optional": true, "engines": { "node": ">=0.8" } }, "node_modules/ast-types": { "version": "0.13.4", "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "dependencies": { "tslib": "^2.0.1" }, "engines": { "node": ">=4" } }, "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/async": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "optional": true }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "node_modules/aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "optional": true, "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "optional": true }, "node_modules/axios": { "version": "0.27.2", "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", "dependencies": { "follow-redirects": "^1.14.9", "form-data": "^4.0.0" } }, "node_modules/babel-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dev": true, "dependencies": { "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": "^7.8.0" } }, "node_modules/babel-jest/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" }, "engines": { "node": ">=8" } }, "node_modules/babel-plugin-jest-hoist": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", "@types/babel__core": "^7.0.0", "@types/babel__traverse": "^7.0.6" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", "@babel/plugin-syntax-class-properties": "^7.8.3", "@babel/plugin-syntax-import-meta": "^7.8.3", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.8.3", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-top-level-await": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/babel-preset-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dev": true, "dependencies": { "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/babel-walk": { "version": "3.0.0-canary-5", "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz", "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==", "dependencies": { "@babel/types": "^7.9.6" }, "engines": { "node": ">= 10.0.0" } }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "optional": true, "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/bcryptjs": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "engines": { "node": ">=8" } }, "node_modules/bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, "node_modules/bl/node_modules/readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/body-parser": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.10.3", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dependencies": { "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, "node_modules/browser-process-hrtime": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, "node_modules/browserslist": { "version": "4.21.4", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" } ], "dependencies": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.9" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, "node_modules/bs-logger": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "dependencies": { "fast-json-stable-stringify": "2.x" }, "engines": { "node": ">= 6" } }, "node_modules/bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { "node-int64": "^0.4.0" } }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "node_modules/buffer-crc32": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "optional": true, "engines": { "node": "*" } }, "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "node_modules/busboy": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "dependencies": { "streamsearch": "^1.1.0" }, "engines": { "node": ">=10.16.0" } }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/camel-case": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", "dependencies": { "no-case": "^2.2.0", "upper-case": "^1.1.1" } }, "node_modules/camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/caniuse-lite": { "version": "1.0.30001412", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001412.tgz", "integrity": "sha512-+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" } ] }, "node_modules/caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", "optional": true }, "node_modules/chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=8" } }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/character-parser": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", "integrity": "sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==", "dependencies": { "is-regex": "^1.0.3" } }, "node_modules/chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, "node_modules/cheerio": { "version": "1.0.0-rc.12", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "dependencies": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", "domhandler": "^5.0.3", "domutils": "^3.0.1", "htmlparser2": "^8.0.1", "parse5": "^7.0.0", "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, "node_modules/cheerio-select": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "dependencies": { "boolbase": "^1.0.0", "css-select": "^5.1.0", "css-what": "^6.1.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3", "domutils": "^3.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true, "engines": { "node": ">=6.0" } }, "node_modules/ci-info": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.4.0.tgz", "integrity": "sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug==", "dev": true }, "node_modules/cjs-module-lexer": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, "node_modules/class-transformer": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/class-transformer/-/class-transformer-0.5.1.tgz", "integrity": "sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==" }, "node_modules/class-validator": { "version": "0.13.2", "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.13.2.tgz", "integrity": "sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==", "dependencies": { "libphonenumber-js": "^1.9.43", "validator": "^13.7.0" } }, "node_modules/clean-css": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", "dependencies": { "source-map": "~0.6.0" }, "engines": { "node": ">= 4.0" } }, "node_modules/clean-css/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "engines": { "node": ">=0.10.0" } }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { "restore-cursor": "^3.1.0" }, "engines": { "node": ">=8" } }, "node_modules/cli-spinners": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", "dev": true, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/cli-table3": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz", "integrity": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==", "dev": true, "dependencies": { "string-width": "^4.2.0" }, "engines": { "node": "10.* || >= 12.*" }, "optionalDependencies": { "@colors/colors": "1.5.0" } }, "node_modules/cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true, "engines": { "node": ">= 10" } }, "node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "node_modules/clone": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, "engines": { "node": ">=0.8" } }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" } }, "node_modules/collect-v8-coverage": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { "delayed-stream": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/commander": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true, "engines": { "node": ">= 6" } }, "node_modules/component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "engines": [ "node >= 0.8" ], "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }, "node_modules/config-chain": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dependencies": { "ini": "^1.3.4", "proto-list": "~1.2.1" } }, "node_modules/consola": { "version": "2.15.3", "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" }, "node_modules/constantinople": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz", "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==", "dependencies": { "@babel/parser": "^7.6.0", "@babel/types": "^7.6.1" } }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dependencies": { "safe-buffer": "5.2.1" }, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "engines": { "node": ">= 0.6" } }, "node_modules/convert-source-map": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "dependencies": { "safe-buffer": "~5.1.1" } }, "node_modules/convert-source-map/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "node_modules/cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/cookiejar": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz", "integrity": "sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==" }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dependencies": { "object-assign": "^4", "vary": "^1" }, "engines": { "node": ">= 0.10" } }, "node_modules/cosmiconfig": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.10.0" }, "engines": { "node": ">=10" } }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, "node_modules/cron": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/cron/-/cron-2.0.0.tgz", "integrity": "sha512-RPeRunBCFr/WEo7WLp8Jnm45F/ziGJiHVvVQEBSDTSGu6uHW49b2FOP2O14DcXlGJRLhwE7TIoDzHHK4KmlL6g==", "dependencies": { "luxon": "^1.23.x" } }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/css-rules": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/css-rules/-/css-rules-1.1.0.tgz", "integrity": "sha512-7L6krLIRwAEVCaVKyCEL6PQjQXUmf8DM9bWYKutlZd0DqOe0SiKIGQOkFb59AjDBb+3If7SDp3X8UlzDAgYSow==", "dependencies": { "cssom": "^0.5.0" } }, "node_modules/css-select": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-what": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/cssom": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" }, "node_modules/cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "dependencies": { "cssom": "~0.3.6" }, "engines": { "node": ">=8" } }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, "node_modules/dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "optional": true, "dependencies": { "assert-plus": "^1.0.0" }, "engines": { "node": ">=0.10" } }, "node_modules/data-uri-to-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", "engines": { "node": ">= 6" } }, "node_modules/data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "dependencies": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.0.0" }, "engines": { "node": ">=10" } }, "node_modules/dayjs": { "version": "1.11.5", "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.5.tgz", "integrity": "sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==" }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/decimal.js": { "version": "10.4.1", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz", "integrity": "sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==", "dev": true }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "engines": { "node": ">=0.10.0" } }, "node_modules/defaults": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", "dev": true, "dependencies": { "clone": "^1.0.2" } }, "node_modules/degenerator": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.2.tgz", "integrity": "sha512-c0mef3SNQo56t6urUU6tdQAs+ThoD0o9B9MJ8HEt7NQcGEILCRFqQb7ZbP9JAv+QF1Ky5plydhMR/IrqWDm+TQ==", "dependencies": { "ast-types": "^0.13.2", "escodegen": "^1.8.1", "esprima": "^4.0.0", "vm2": "^3.9.8" }, "engines": { "node": ">= 6" } }, "node_modules/degenerator/node_modules/escodegen": { "version": "1.14.3", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "dependencies": { "esprima": "^4.0.1", "estraverse": "^4.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { "node": ">=4.0" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "node_modules/degenerator/node_modules/levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/degenerator/node_modules/optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/degenerator/node_modules/prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "engines": { "node": ">= 0.8.0" } }, "node_modules/degenerator/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/degenerator/node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "dependencies": { "prelude-ls": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "engines": { "node": ">=0.4.0" } }, "node_modules/denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", "engines": { "node": ">=0.10" } }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "engines": { "node": ">= 0.8" } }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/detect-node": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" }, "node_modules/dezalgo": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz", "integrity": "sha512-K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ==", "dependencies": { "asap": "^2.0.0", "wrappy": "1" } }, "node_modules/diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, "engines": { "node": ">=0.3.1" } }, "node_modules/diff-sequences": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "dev": true, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/discontinuous-range": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" }, "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=6.0.0" } }, "node_modules/doctypes": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==" }, "node_modules/dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ] }, "node_modules/domexception": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "dependencies": { "webidl-conversions": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dependencies": { "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/domutils": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/dotenv": { "version": "16.0.2", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz", "integrity": "sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA==", "engines": { "node": ">=12" } }, "node_modules/dottie": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.2.tgz", "integrity": "sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg==" }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "optional": true, "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dependencies": { "safe-buffer": "^5.0.1" } }, "node_modules/editorconfig": { "version": "0.15.3", "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", "dependencies": { "commander": "^2.19.0", "lru-cache": "^4.1.5", "semver": "^5.6.0", "sigmund": "^1.0.1" }, "bin": { "editorconfig": "bin/editorconfig" } }, "node_modules/editorconfig/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/editorconfig/node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "bin": { "semver": "bin/semver" } }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/ejs": { "version": "3.1.8", "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", "optional": true, "dependencies": { "jake": "^10.8.5" }, "bin": { "ejs": "bin/cli.js" }, "engines": { "node": ">=0.10.0" } }, "node_modules/electron-to-chromium": { "version": "1.4.265", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.265.tgz", "integrity": "sha512-38KaYBNs0oCzWCpr6j7fY/W9vF0vSp4tKFIshQTgdZMhUpkxgotkQgjJP6iGMdmlsgMs3i0/Hkko4UXLTrkYVQ==", "dev": true }, "node_modules/emittery": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "engines": { "node": ">= 0.8" } }, "node_modules/encoding-japanese": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encoding-japanese/-/encoding-japanese-2.0.0.tgz", "integrity": "sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==", "engines": { "node": ">=8.10.0" } }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "dependencies": { "once": "^1.4.0" } }, "node_modules/enhanced-resolve": { "version": "5.10.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" }, "engines": { "node": ">=10.13.0" } }, "node_modules/enquirer": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "dependencies": { "ansi-colors": "^4.1.1" }, "engines": { "node": ">=8.6" } }, "node_modules/entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "engines": { "node": ">=0.12" }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-module-lexer": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, "node_modules/es6-promise": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", "optional": true }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "engines": { "node": ">=6" } }, "node_modules/escape-goat": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-3.0.0.tgz", "integrity": "sha512-w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw==", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/escodegen": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { "node": ">=6.0" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "node_modules/escodegen/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/escodegen/node_modules/levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "dev": true, "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/escodegen/node_modules/optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/escodegen/node_modules/prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/escodegen/node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "dev": true, "dependencies": { "prelude-ls": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/eslint": { "version": "7.32.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", "dev": true, "dependencies": { "@babel/code-frame": "7.12.11", "@eslint/eslintrc": "^0.4.3", "@humanwhocodes/config-array": "^0.5.0", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.0.1", "doctrine": "^3.0.0", "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", "eslint-scope": "^5.1.1", "eslint-utils": "^2.1.0", "eslint-visitor-keys": "^2.0.0", "espree": "^7.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^5.1.2", "globals": "^13.6.0", "ignore": "^4.0.6", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "js-yaml": "^3.13.1", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", "progress": "^2.0.0", "regexpp": "^3.1.0", "semver": "^7.2.1", "strip-ansi": "^6.0.0", "strip-json-comments": "^3.1.0", "table": "^6.0.9", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { "node": "^10.12.0 || >=12.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-config-prettier": { "version": "8.5.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" }, "peerDependencies": { "eslint": ">=7.0.0" } }, "node_modules/eslint-plugin-prettier": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0" }, "engines": { "node": ">=6.0.0" }, "peerDependencies": { "eslint": ">=5.0.0", "prettier": ">=1.13.0" }, "peerDependenciesMeta": { "eslint-config-prettier": { "optional": true } } }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/eslint-utils": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "dependencies": { "eslint-visitor-keys": "^2.0.0" }, "engines": { "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, "funding": { "url": "https://github.com/sponsors/mysticatea" }, "peerDependencies": { "eslint": ">=5" } }, "node_modules/eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/eslint/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/eslint/node_modules/eslint-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "dependencies": { "eslint-visitor-keys": "^1.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/mysticatea" } }, "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/eslint/node_modules/ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/espree": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "dev": true, "dependencies": { "acorn": "^7.4.0", "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^1.3.0" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/espree/node_modules/eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" }, "engines": { "node": ">=4" } }, "node_modules/esquery": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "dependencies": { "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/esquery/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { "estraverse": "^5.2.0" }, "engines": { "node": ">=4.0" } }, "node_modules/esrecurse/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "engines": { "node": ">= 0.6" } }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, "engines": { "node": ">=0.8.x" } }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "jest-get-type": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/express": { "version": "4.18.1", "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.0", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.10.3", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.10.0" } }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/express/node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "optional": true }, "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" }, "engines": { "node": ">=4" } }, "node_modules/extract-css": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/extract-css/-/extract-css-3.0.0.tgz", "integrity": "sha512-ZM2IuJkX79gys2PMN12yWrHvyK2sw1ReCdCtp/RAdgcFaBui+wY3Bsll9Em2LJXzKI8BYEBZLm2UczqyBCXSjQ==", "dependencies": { "batch": "^0.6.1", "href-content": "^2.0.1", "list-stylesheets": "^2.0.0", "style-data": "^2.0.0" } }, "node_modules/extract-zip": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", "optional": true, "dependencies": { "concat-stream": "^1.6.2", "debug": "^2.6.9", "mkdirp": "^0.5.4", "yauzl": "^2.10.0" }, "bin": { "extract-zip": "cli.js" } }, "node_modules/extract-zip/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "optional": true, "dependencies": { "ms": "2.0.0" } }, "node_modules/extract-zip/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "optional": true }, "node_modules/extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "engines": [ "node >=0.6.0" ], "optional": true }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "devOptional": true }, "node_modules/fast-diff": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", "dev": true }, "node_modules/fast-glob": { "version": "3.2.12", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "devOptional": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" }, "node_modules/fast-safe-stringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" }, "node_modules/fastq": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "dependencies": { "reusify": "^1.0.4" } }, "node_modules/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "dependencies": { "bser": "2.1.1" } }, "node_modules/fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "optional": true, "dependencies": { "pend": "~1.2.0" } }, "node_modules/figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "dependencies": { "escape-string-regexp": "^1.0.5" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/figures/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "engines": { "node": ">=0.8.0" } }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "dependencies": { "flat-cache": "^3.0.4" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/file-size": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-size/-/file-size-1.0.0.tgz", "integrity": "sha512-tLIdonWTpABkU6Axg2yGChYdrOsy4V8xcm0IcyAP8fSsu6jiXLm5pgs083e4sq5fzNRZuAYolUbZyYmPvCKfwQ==" }, "node_modules/file-uri-to-path": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", "engines": { "node": ">= 6" } }, "node_modules/filelist": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "optional": true, "dependencies": { "minimatch": "^5.0.1" } }, "node_modules/filelist/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "optional": true, "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/filelist/node_modules/minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", "optional": true, "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" } }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "dependencies": { "flatted": "^3.1.0", "rimraf": "^3.0.2" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flat-util": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/flat-util/-/flat-util-1.1.9.tgz", "integrity": "sha512-BOTMw/6rbbxVjv5JQvwgGMc2/6wWGd2VeyTvnzvvE49VRjS0tTxLbry/QVP1yPw8SaAOBYsnixmzruXoqjdUHA==" }, "node_modules/flatted": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, "node_modules/follow-redirects": { "version": "1.15.2", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], "engines": { "node": ">=4.0" }, "peerDependenciesMeta": { "debug": { "optional": true } } }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "optional": true, "engines": { "node": "*" } }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "7.2.11", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.11.tgz", "integrity": "sha512-2e5+NyTUTE1Xq4fWo7KFEQblCaIvvINQwUX3jRmEGlgCTc1Ecqw/975EfQrQ0GEraxJTnp8KB9d/c8hlCHUMJA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.16.7", "chalk": "^4.1.2", "chokidar": "^3.5.3", "cosmiconfig": "^7.0.1", "deepmerge": "^4.2.2", "fs-extra": "^10.0.0", "memfs": "^3.4.1", "minimatch": "^3.0.4", "schema-utils": "^3.1.1", "semver": "^7.3.5", "tapable": "^2.2.1" }, "engines": { "node": ">=12.13.0", "yarn": ">=1.0.0" }, "peerDependencies": { "typescript": ">3.6.0", "vue-template-compiler": "*", "webpack": "^5.11.0" }, "peerDependenciesMeta": { "vue-template-compiler": { "optional": true } } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "dependencies": { "@babel/highlight": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { "node": ">= 6" } }, "node_modules/formidable": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/formidable/-/formidable-2.0.1.tgz", "integrity": "sha512-rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ==", "dependencies": { "dezalgo": "1.0.3", "hexoid": "1.0.0", "once": "1.4.0", "qs": "6.9.3" }, "funding": { "url": "https://ko-fi.com/tunnckoCore/commissions" } }, "node_modules/formidable/node_modules/qs": { "version": "6.9.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz", "integrity": "sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==", "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "engines": { "node": ">= 0.6" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "engines": { "node": ">= 0.6" } }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=12" } }, "node_modules/fs-monkey": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, "node_modules/fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "hasInstallScript": true, "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/ftp": { "version": "0.3.10", "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", "dependencies": { "readable-stream": "1.1.x", "xregexp": "2.0.0" }, "engines": { "node": ">=0.8.0" } }, "node_modules/ftp/node_modules/isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" }, "node_modules/ftp/node_modules/readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", "isarray": "0.0.1", "string_decoder": "~0.10.x" } }, "node_modules/ftp/node_modules/string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, "node_modules/generate-function": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", "dependencies": { "is-property": "^1.0.2" } }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "engines": { "node": ">=8.0.0" } }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/get-uri": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", "dependencies": { "@tootallnate/once": "1", "data-uri-to-buffer": "3", "debug": "4", "file-uri-to-path": "2", "fs-extra": "^8.1.0", "ftp": "^0.3.10" }, "engines": { "node": ">= 6" } }, "node_modules/get-uri/node_modules/fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" }, "engines": { "node": ">=6 <7 || >=8" } }, "node_modules/get-uri/node_modules/jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/get-uri/node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "engines": { "node": ">= 4.0.0" } }, "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "optional": true, "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/glob": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^5.0.1", "once": "^1.3.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/glob/node_modules/minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" } }, "node_modules/globals": { "version": "13.17.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", "dev": true, "dependencies": { "type-fest": "^0.20.2" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "node_modules/handlebars": { "version": "4.7.7", "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.0", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, "bin": { "handlebars": "bin/handlebars" }, "engines": { "node": ">=0.4.7" }, "optionalDependencies": { "uglify-js": "^3.1.4" } }, "node_modules/handlebars/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "engines": { "node": ">=0.10.0" } }, "node_modules/har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "optional": true, "engines": { "node": ">=4" } }, "node_modules/har-validator": { "version": "5.1.5", "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "deprecated": "this library is no longer supported", "optional": true, "dependencies": { "ajv": "^6.12.3", "har-schema": "^2.0.0" }, "engines": { "node": ">=6" } }, "node_modules/har-validator/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "optional": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/har-validator/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "optional": true }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { "function-bind": "^1.1.1" }, "engines": { "node": ">= 0.4.0" } }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dependencies": { "has-symbols": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/hasha": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", "integrity": "sha512-jZ38TU/EBiGKrmyTNNZgnvCZHNowiRI4+w/I9noMlekHTZH3KyGgvJLmhSgykeAQ9j2SYPDosM0Bg3wHfzibAQ==", "optional": true, "dependencies": { "is-stream": "^1.0.1", "pinkie-promise": "^2.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/hasha/node_modules/is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "bin": { "he": "bin/he" } }, "node_modules/hexoid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz", "integrity": "sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==", "engines": { "node": ">=8" } }, "node_modules/href-content": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/href-content/-/href-content-2.0.1.tgz", "integrity": "sha512-5uiAmBCvzCFVu70kli3Hp0BONbAOfwGqR7jKolV+bAh174sIAZBL8DHfg5SnxAhId2mQmYgyL7Y62msnWJ34Xg==", "dependencies": { "remote-content": "^3.0.0" } }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "dependencies": { "whatwg-encoding": "^1.0.5" }, "engines": { "node": ">=10" } }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, "node_modules/html-minifier": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz", "integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==", "dependencies": { "camel-case": "^3.0.0", "clean-css": "^4.2.1", "commander": "^2.19.0", "he": "^1.2.0", "param-case": "^2.1.1", "relateurl": "^0.2.7", "uglify-js": "^3.5.1" }, "bin": { "html-minifier": "cli.js" }, "engines": { "node": ">=6" } }, "node_modules/html-minifier/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/html-pdf": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/html-pdf/-/html-pdf-3.0.1.tgz", "integrity": "sha512-CKNSacmQn+CKJ2GNfT4UYKaPy/T3Ndj82yJ2aju/UPmnvWNjIpyumqRqkFU0mwT6BTHBFhFGTnXN8dBn4Bdj0Q==", "deprecated": "Please migrate your projects to a newer library like puppeteer", "bin": { "html-pdf": "bin/index.js" }, "engines": { "node": ">=4.0.0" }, "optionalDependencies": { "phantomjs-prebuilt": "^2.1.16" } }, "node_modules/html-to-text": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/html-to-text/-/html-to-text-8.2.0.tgz", "integrity": "sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ==", "dependencies": { "@selderee/plugin-htmlparser2": "^0.6.0", "deepmerge": "^4.2.2", "he": "^1.2.0", "htmlparser2": "^6.1.0", "minimist": "^1.2.6", "selderee": "^0.6.0" }, "bin": { "html-to-text": "bin/cli.js" }, "engines": { "node": ">=10.23.2" } }, "node_modules/html-to-text/node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/html-to-text/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/html-to-text/node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/html-to-text/node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/html-to-text/node_modules/htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "node_modules/htmlparser2": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "entities": "^4.3.0" } }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/http-signature": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "optional": true, "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", "sshpk": "^1.7.0" }, "engines": { "node": ">=0.8", "npm": ">=1.3.7" } }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dependencies": { "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "engines": { "node": ">=10.17.0" } }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/ignore": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" }, "bin": { "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "engines": { "node": ">=0.8.19" } }, "node_modules/inflection": { "version": "1.13.4", "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz", "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==", "engines": [ "node >= 0.4.0" ] }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "node_modules/inline-css": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/inline-css/-/inline-css-4.0.1.tgz", "integrity": "sha512-gzumhrp0waBLF5TtwQcm5bviA9ZNURXeNOs2xVSTsX60FWPFlrPJol4HI8yrozZ6V5udWKUT3LS2tMUDMMdi1Q==", "dependencies": { "cheerio": "^1.0.0-rc.10", "css-rules": "^1.1.0", "extract-css": "^3.0.0", "flat-util": "^1.1.8", "pick-util": "^1.1.4", "slick": "^1.12.2", "specificity": "^0.4.1" }, "engines": { "node": ">=8" } }, "node_modules/inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.19", "mute-stream": "0.0.8", "run-async": "^2.4.0", "rxjs": "^6.6.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" }, "engines": { "node": ">=8.0.0" } }, "node_modules/inquirer/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/inquirer/node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "dependencies": { "tslib": "^1.9.0" }, "engines": { "npm": ">=2.0.0" } }, "node_modules/inquirer/node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "node_modules/interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true, "engines": { "node": ">= 0.10" } }, "node_modules/ip": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" }, "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "engines": { "node": ">= 0.10" } }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-core-module": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", "dependencies": { "has": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "bin": { "is-docker": "cli.js" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-expression": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz", "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==", "dependencies": { "acorn": "^7.1.1", "object-assign": "^4.1.1" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "engines": { "node": ">=8" } }, "node_modules/is-generator-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { "node": ">=0.12.0" } }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, "node_modules/is-promise": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" }, "node_modules/is-property": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" }, "node_modules/is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "devOptional": true }, "node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dependencies": { "is-docker": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "devOptional": true }, "node_modules/isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "optional": true }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, "engines": { "node": ">=10" } }, "node_modules/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/istanbul-reports": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/iterare": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/iterare/-/iterare-1.2.1.tgz", "integrity": "sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==", "engines": { "node": ">=6" } }, "node_modules/jake": { "version": "10.8.5", "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "optional": true, "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" }, "bin": { "jake": "bin/cli.js" }, "engines": { "node": ">=10" } }, "node_modules/jake/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "optional": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dev": true, "dependencies": { "@jest/core": "^27.5.1", "import-local": "^3.0.2", "jest-cli": "^27.5.1" }, "bin": { "jest": "bin/jest.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/jest-changed-files": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-circus": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-circus/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-cli": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dev": true, "dependencies": { "@jest/core": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", "jest-config": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "prompts": "^2.0.1", "yargs": "^16.2.0" }, "bin": { "jest": "bin/jest.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/jest-cli/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-config": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "dev": true, "dependencies": { "@babel/core": "^7.8.0", "@jest/test-sequencer": "^27.5.1", "@jest/types": "^27.5.1", "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", "graceful-fs": "^4.2.9", "jest-circus": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-get-type": "^27.5.1", "jest-jasmine2": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runner": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "micromatch": "^4.0.4", "parse-json": "^5.2.0", "pretty-format": "^27.5.1", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { "ts-node": { "optional": true } } }, "node_modules/jest-config/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-config/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/jest-diff": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-diff/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-docblock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-each": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-each/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-environment-jsdom": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1", "jsdom": "^16.6.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-environment-node": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-get-type": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "dev": true, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-haste-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^27.5.1", "jest-serializer": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "optionalDependencies": { "fsevents": "^2.3.2" } }, "node_modules/jest-jasmine2": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-jasmine2/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-leak-detector": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "dev": true, "dependencies": { "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-matcher-utils": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-matcher-utils/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-message-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-message-util/node_modules/@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "dependencies": { "@babel/highlight": "^7.18.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/jest-message-util/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-mock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-pnp-resolver": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, "engines": { "node": ">=6" }, "peerDependencies": { "jest-resolve": "*" }, "peerDependenciesMeta": { "jest-resolve": { "optional": true } } }, "node_modules/jest-regex-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve-dependencies": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-snapshot": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-runner": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", "dev": true, "dependencies": { "@jest/console": "^27.5.1", "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", "graceful-fs": "^4.2.9", "jest-docblock": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-leak-detector": "^27.5.1", "jest-message-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runtime": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runner/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-runtime": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/globals": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runtime/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-runtime/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/jest-serializer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "dependencies": { "@types/node": "*", "graceful-fs": "^4.2.9" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-snapshot": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dev": true, "dependencies": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", "expect": "^27.5.1", "graceful-fs": "^4.2.9", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "natural-compare": "^1.4.0", "pretty-format": "^27.5.1", "semver": "^7.3.2" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-snapshot/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-util/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-validate": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "leven": "^3.1.0", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/jest-validate/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-watcher": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dev": true, "dependencies": { "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "jest-util": "^27.5.1", "string-length": "^4.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-watcher/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/js-beautify": { "version": "1.14.6", "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.6.tgz", "integrity": "sha512-GfofQY5zDp+cuHc+gsEXKPpNw2KbPddreEo35O6jT6i0RVK6LhsoYBhq5TvK4/n74wnA0QbK8gGd+jUZwTMKJw==", "dependencies": { "config-chain": "^1.1.13", "editorconfig": "^0.15.3", "glob": "^8.0.3", "nopt": "^6.0.0" }, "bin": { "css-beautify": "js/bin/css-beautify.js", "html-beautify": "js/bin/html-beautify.js", "js-beautify": "js/bin/js-beautify.js" }, "engines": { "node": ">=10" } }, "node_modules/js-stringify": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", "integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==" }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "optional": true }, "node_modules/jsdom": { "version": "16.7.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "dependencies": { "abab": "^2.0.5", "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", "data-urls": "^2.0.0", "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", "w3c-hr-time": "^1.0.2", "w3c-xmlserializer": "^2.0.0", "webidl-conversions": "^6.1.0", "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", "ws": "^7.4.6", "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" }, "peerDependencies": { "canvas": "^2.5.0" }, "peerDependenciesMeta": { "canvas": { "optional": true } } }, "node_modules/jsdom/node_modules/acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/jsdom/node_modules/cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, "node_modules/jsdom/node_modules/form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { "node": ">= 6" } }, "node_modules/jsdom/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, "bin": { "jsesc": "bin/jsesc" }, "engines": { "node": ">=4" } }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "node_modules/json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "optional": true }, "node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "node_modules/json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "optional": true }, "node_modules/json5": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true, "bin": { "json5": "lib/cli.js" }, "engines": { "node": ">=6" } }, "node_modules/jsonc-parser": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", "dev": true }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/jsonwebtoken": { "version": "8.5.1", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", "dependencies": { "jws": "^3.2.2", "lodash.includes": "^4.3.0", "lodash.isboolean": "^3.0.3", "lodash.isinteger": "^4.0.4", "lodash.isnumber": "^3.0.3", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "lodash.once": "^4.0.0", "ms": "^2.1.1", "semver": "^5.6.0" }, "engines": { "node": ">=4", "npm": ">=1.4.28" } }, "node_modules/jsonwebtoken/node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "bin": { "semver": "bin/semver" } }, "node_modules/jsprim": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "optional": true, "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.4.0", "verror": "1.10.0" }, "engines": { "node": ">=0.6.0" } }, "node_modules/jstransformer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", "integrity": "sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==", "dependencies": { "is-promise": "^2.0.0", "promise": "^7.0.1" } }, "node_modules/juice": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/juice/-/juice-7.0.0.tgz", "integrity": "sha512-AjKQX31KKN+uJs+zaf+GW8mBO/f/0NqSh2moTMyvwBY+4/lXIYTU8D8I2h6BAV3Xnz6GGsbalUyFqbYMe+Vh+Q==", "dependencies": { "cheerio": "^1.0.0-rc.3", "commander": "^5.1.0", "mensch": "^0.3.4", "slick": "^1.12.2", "web-resource-inliner": "^5.0.0" }, "bin": { "juice": "bin/juice" }, "engines": { "node": ">=10.0.0" } }, "node_modules/juice/node_modules/commander": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "engines": { "node": ">= 6" } }, "node_modules/jwa": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "node_modules/jws": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "dependencies": { "jwa": "^1.4.1", "safe-buffer": "^5.0.1" } }, "node_modules/kew": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", "integrity": "sha512-IG6nm0+QtAMdXt9KvbgbGdvY50RSrw+U4sGZg+KlrSKPJEwVE5JVoI3d7RWfSMdBQneRheeAOj3lIjX5VL/9RQ==", "optional": true }, "node_modules/klaw": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", "optional": true, "optionalDependencies": { "graceful-fs": "^4.1.9" } }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/libbase64": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-1.2.1.tgz", "integrity": "sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==" }, "node_modules/libmime": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/libmime/-/libmime-5.1.0.tgz", "integrity": "sha512-xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==", "dependencies": { "encoding-japanese": "2.0.0", "iconv-lite": "0.6.3", "libbase64": "1.2.1", "libqp": "1.1.0" } }, "node_modules/libmime/node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/libphonenumber-js": { "version": "1.10.13", "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.13.tgz", "integrity": "sha512-b74iyWmwb4GprAUPjPkJ11GTC7KX4Pd3onpJfKxYyY8y9Rbb4ERY47LvCMEDM09WD3thiLDMXtkfDK/AX+zT7Q==" }, "node_modules/libqp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz", "integrity": "sha512-4Rgfa0hZpG++t1Vi2IiqXG9Ad1ig4QTmtuZF946QJP4bPqOYC78ixUXgz5TW/wE7lNaNKlplSYTxQ+fR2KZ0EA==" }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "node_modules/linkify-it": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.0.tgz", "integrity": "sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==", "dependencies": { "uc.micro": "^1.0.1" } }, "node_modules/list-stylesheets": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/list-stylesheets/-/list-stylesheets-2.0.0.tgz", "integrity": "sha512-EMhWosVmqftbB3WZb4JWcS3tVj9rhBpkDqB87HaNdOi5gpFZNC+Od7hHPFSSlB99Qt/HxJZs8atINa/z672EDA==", "dependencies": { "cheerio": "1.0.0-rc.10", "pick-util": "^1.1.4" } }, "node_modules/list-stylesheets/node_modules/cheerio": { "version": "1.0.0-rc.10", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", "dependencies": { "cheerio-select": "^1.5.0", "dom-serializer": "^1.3.2", "domhandler": "^4.2.0", "htmlparser2": "^6.1.0", "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", "tslib": "^2.2.0" }, "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, "node_modules/list-stylesheets/node_modules/cheerio-select": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", "dependencies": { "css-select": "^4.3.0", "css-what": "^6.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.3.1", "domutils": "^2.8.0" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/list-stylesheets/node_modules/css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/list-stylesheets/node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/list-stylesheets/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/list-stylesheets/node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/list-stylesheets/node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/list-stylesheets/node_modules/htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "node_modules/list-stylesheets/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "node_modules/list-stylesheets/node_modules/parse5-htmlparser2-tree-adapter": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dependencies": { "parse5": "^6.0.1" } }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true, "engines": { "node": ">=6.11.5" } }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/lodash.includes": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" }, "node_modules/lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" }, "node_modules/lodash.isinteger": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" }, "node_modules/lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" }, "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "node_modules/lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" }, "node_modules/lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/log-symbols/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/long": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "peer": true, "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { "loose-envify": "cli.js" } }, "node_modules/lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==" }, "node_modules/lru-cache": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dependencies": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" } }, "node_modules/luxon": { "version": "1.28.0", "resolved": "https://registry.npmjs.org/luxon/-/luxon-1.28.0.tgz", "integrity": "sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ==", "engines": { "node": "*" } }, "node_modules/macos-release": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.5.0.tgz", "integrity": "sha512-EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g==", "dev": true, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/magic-string": { "version": "0.25.7", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", "dev": true, "dependencies": { "sourcemap-codec": "^1.4.4" } }, "node_modules/mailparser": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/mailparser/-/mailparser-3.5.0.tgz", "integrity": "sha512-mdr2DFgz8LKC0/Q6io6znA0HVnzaPFT0a4TTnLeZ7mWHlkfnm227Wxlq7mHh7AgeP32h7gOUpXvyhSfJJIEeyg==", "dependencies": { "encoding-japanese": "2.0.0", "he": "1.2.0", "html-to-text": "8.2.0", "iconv-lite": "0.6.3", "libmime": "5.1.0", "linkify-it": "4.0.0", "mailsplit": "5.3.2", "nodemailer": "6.7.3", "tlds": "1.231.0" } }, "node_modules/mailparser/node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/mailparser/node_modules/nodemailer": { "version": "6.7.3", "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.3.tgz", "integrity": "sha512-KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g==", "engines": { "node": ">=6.0.0" } }, "node_modules/mailsplit": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/mailsplit/-/mailsplit-5.3.2.tgz", "integrity": "sha512-coES12hhKqagkuBTJoqERX+y9bXNpxbxw3Esd07auuwKYmcagouVlgucyIVRp48fnswMKxcUtLoFn/L1a75ynQ==", "dependencies": { "libbase64": "1.2.1", "libmime": "5.1.0", "libqp": "1.1.0" } }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { "semver": "^6.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/make-dir/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { "tmpl": "1.0.5" } }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "engines": { "node": ">= 0.6" } }, "node_modules/mediaquery-text": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mediaquery-text/-/mediaquery-text-1.2.0.tgz", "integrity": "sha512-cJyRqgYQi+hsYhRkyd5le0s4LsEPvOB7r+6X3jdEELNqVlM9mRIgyUPg9BzF+PuTqQH1ZekgIjYVOeWSXWq35Q==", "dependencies": { "cssom": "^0.5.0" } }, "node_modules/memfs": { "version": "3.4.7", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", "dev": true, "dependencies": { "fs-monkey": "^1.0.3" }, "engines": { "node": ">= 4.0.0" } }, "node_modules/mensch": { "version": "0.3.4", "resolved": "https://registry.npmjs.org/mensch/-/mensch-0.3.4.tgz", "integrity": "sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==" }, "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4" } }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "node_modules/mjml": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml/-/mjml-4.13.0.tgz", "integrity": "sha512-OnFKESouLshz8DPFSb6M/dE8GkhiJnoy6LAam5TiLA1anAj24yQ2ZH388LtQoEkvTisqwiTmc9ejDh5ctnFaJQ==", "dependencies": { "@babel/runtime": "^7.14.6", "mjml-cli": "4.13.0", "mjml-core": "4.13.0", "mjml-migrate": "4.13.0", "mjml-preset-core": "4.13.0", "mjml-validator": "4.13.0" }, "bin": { "mjml": "bin/mjml" } }, "node_modules/mjml-accordion": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-accordion/-/mjml-accordion-4.13.0.tgz", "integrity": "sha512-E3yihZW5Oq2p+sWOcr8kWeRTROmiTYOGxB4IOxW/jTycdY07N3FX3e6vuh7Fv3rryHEUaydUQYto3ICVyctI7w==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-body": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-body/-/mjml-body-4.13.0.tgz", "integrity": "sha512-S4HgwAuO9dEsyX9sr6WBf9/xr+H2ASVaLn22aurJm1S2Lvc1wifLPYBQgFmNdCjaesTCNtOMUDpG+Rbnavyaqg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-button": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-button/-/mjml-button-4.13.0.tgz", "integrity": "sha512-3y8IAHCCxh7ESHh1aOOqobZKUgyNxOKAGQ9TlJoyaLpsKUFzkN8nmrD0KXF0ADSuzvhMZ1CdRIJuZ5mjv2TwWQ==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-carousel": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-carousel/-/mjml-carousel-4.13.0.tgz", "integrity": "sha512-ORSY5bEYlMlrWSIKI/lN0Tz3uGltWAjG8DQl2Yr3pwjwOaIzGE+kozrDf+T9xItfiIIbvKajef1dg7B7XgP0zg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-cli": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-cli/-/mjml-cli-4.13.0.tgz", "integrity": "sha512-kAZxpH0QqlTF/CcLzELgKw1ljKRxrmWJ310CJQhbPAxHvwQ/nIb+q82U+zRJAelRPPKjnOb+hSrMRqTgk9rH3w==", "dependencies": { "@babel/runtime": "^7.14.6", "chokidar": "^3.0.0", "glob": "^7.1.1", "html-minifier": "^4.0.0", "js-beautify": "^1.6.14", "lodash": "^4.17.21", "mjml-core": "4.13.0", "mjml-migrate": "4.13.0", "mjml-parser-xml": "4.13.0", "mjml-validator": "4.13.0", "yargs": "^16.1.0" }, "bin": { "mjml-cli": "bin/mjml" } }, "node_modules/mjml-cli/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/mjml-column": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-column/-/mjml-column-4.13.0.tgz", "integrity": "sha512-O8FrWKK/bCy9XpKxrKRYWNdgWNaVd4TK4RqMeVI/I70IbnYnc1uf15jnsPMxCBSbT+NyXyk8k7fn099797uwpw==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-core": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-core/-/mjml-core-4.13.0.tgz", "integrity": "sha512-kU5AoVTlZaXR/EDi3ix66xpzUe+kScYus71lBH/wo/B+LZW70GHE1AYWtsog5oJp1MuTHpMFTNuBD/wePeEgWg==", "dependencies": { "@babel/runtime": "^7.14.6", "cheerio": "1.0.0-rc.10", "detect-node": "2.0.4", "html-minifier": "^4.0.0", "js-beautify": "^1.6.14", "juice": "^7.0.0", "lodash": "^4.17.21", "mjml-migrate": "4.13.0", "mjml-parser-xml": "4.13.0", "mjml-validator": "4.13.0" } }, "node_modules/mjml-core/node_modules/cheerio": { "version": "1.0.0-rc.10", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", "dependencies": { "cheerio-select": "^1.5.0", "dom-serializer": "^1.3.2", "domhandler": "^4.2.0", "htmlparser2": "^6.1.0", "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", "tslib": "^2.2.0" }, "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, "node_modules/mjml-core/node_modules/cheerio-select": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", "dependencies": { "css-select": "^4.3.0", "css-what": "^6.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.3.1", "domutils": "^2.8.0" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/mjml-core/node_modules/css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/mjml-core/node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/mjml-core/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/mjml-core/node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/mjml-core/node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/mjml-core/node_modules/htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "node_modules/mjml-core/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "node_modules/mjml-core/node_modules/parse5-htmlparser2-tree-adapter": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dependencies": { "parse5": "^6.0.1" } }, "node_modules/mjml-divider": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-divider/-/mjml-divider-4.13.0.tgz", "integrity": "sha512-ooPCwfmxEC+wJduqObYezMp7W5UCHjL9Y1LPB5FGna2FrOejgfd6Ix3ij8Wrmycmlol7E2N4D7c5NDH5DbRCJg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-group": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-group/-/mjml-group-4.13.0.tgz", "integrity": "sha512-U7E8m8aaoAE/dMqjqXPjjrKcwO36B4cquAy9ASldECrIZJBcpFYO6eYf5yLXrNCUM2P0id8pgVjrUq23s00L7Q==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head/-/mjml-head-4.13.0.tgz", "integrity": "sha512-sL2qQuoVALXBCiemu4DPo9geDr8DuUdXVJxm+4nd6k5jpLCfSDmFlNhgSsLPzsYn7VEac3/sxsjLtomQ+6/BHg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-attributes": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-attributes/-/mjml-head-attributes-4.13.0.tgz", "integrity": "sha512-haggCafno+0lQylxJStkINCVCPMwfTpwE6yjCHeGOpQl/TkoNmjNkDr7DEEbNTZbt4Ekg070lQFn7clDy38EoA==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-breakpoint": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-breakpoint/-/mjml-head-breakpoint-4.13.0.tgz", "integrity": "sha512-D2iPDeUKQK1+rYSNa2HGOvgfPxZhNyndTG0iBEb/FxdGge2hbeDCZEN0mwDYE3wWB+qSBqlCuMI+Vr4pEjZbKg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-font": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-font/-/mjml-head-font-4.13.0.tgz", "integrity": "sha512-mYn8aWnbrEap5vX2b4662hkUv6WifcYzYn++Yi6OHrJQi55LpzcU+myAGpfQEXXrpU8vGwExMTFKsJq5n2Kaow==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-html-attributes": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-html-attributes/-/mjml-head-html-attributes-4.13.0.tgz", "integrity": "sha512-m30Oro297+18Zou/1qYjagtmCOWtYXeoS38OABQ5zOSzMItE3TcZI9JNcOueIIWIyFCETe8StrTAKcQ2GHwsDw==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-preview": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-preview/-/mjml-head-preview-4.13.0.tgz", "integrity": "sha512-v0K/NocjFCbaoF/0IMVNmiqov91HxqT07vNTEl0Bt9lKFrTKVC01m1S4K7AB78T/bEeJ/HwmNjr1+TMtVNGGow==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-style": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-style/-/mjml-head-style-4.13.0.tgz", "integrity": "sha512-tBa33GL9Atn5bAM2UwE+uxv4rI29WgX/e5lXX+5GWlsb4thmiN6rxpFTNqBqWbBNRbZk4UEZF78M7Da8xC1ZGQ==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-head-title": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-title/-/mjml-head-title-4.13.0.tgz", "integrity": "sha512-Mq0bjuZXJlwxfVcjuYihQcigZSDTKeQaG3nORR1D0jsOH2BXU4XgUK1UOcTXn2qCBIfRoIMq7rfzYs+L0CRhdw==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-hero": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-hero/-/mjml-hero-4.13.0.tgz", "integrity": "sha512-aWEOScdrhyjwdKBWG4XQaElRHP8LU5PtktkpMeBXa4yxrxNs25qRnDqMNkjSrnnmFKWZmQ166tfboY6RBNf0UA==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-image": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-image/-/mjml-image-4.13.0.tgz", "integrity": "sha512-agMmm2wRZTIrKwrUnYFlnAbtrKYSP0R2en+Vf92HPspAwmaw3/AeOW/QxmSiMhfGf+xsEJyzVvR/nd33jbT3sg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-migrate": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-migrate/-/mjml-migrate-4.13.0.tgz", "integrity": "sha512-I1euHiAyNpaz+B5vH+Z4T+hg/YtI5p3PqQ3/zTLv8gi24V6BILjTaftWhH5+3R/gQkQhH0NUaWNnRmds+Mq5DQ==", "dependencies": { "@babel/runtime": "^7.14.6", "js-beautify": "^1.6.14", "lodash": "^4.17.21", "mjml-core": "4.13.0", "mjml-parser-xml": "4.13.0", "yargs": "^16.1.0" }, "bin": { "migrate": "lib/cli.js" } }, "node_modules/mjml-navbar": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-navbar/-/mjml-navbar-4.13.0.tgz", "integrity": "sha512-0Oqyyk+OdtXfsjswRb/7Ql1UOjN4MbqFPKoyltJqtj+11MRpF5+Wjd74Dj9H7l81GFwkIB9OaP+ZMiD+TPECgg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-parser-xml": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-parser-xml/-/mjml-parser-xml-4.13.0.tgz", "integrity": "sha512-phljtI8DaW++q0aybR/Ykv9zCyP/jCFypxVNo26r2IQo//VYXyc7JuLZZT8N/LAI8lZcwbTVxQPBzJTmZ5IfwQ==", "dependencies": { "@babel/runtime": "^7.14.6", "detect-node": "2.0.4", "htmlparser2": "^4.1.0", "lodash": "^4.17.15" } }, "node_modules/mjml-parser-xml/node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/mjml-parser-xml/node_modules/dom-serializer/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/mjml-parser-xml/node_modules/domhandler": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", "dependencies": { "domelementtype": "^2.0.1" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/mjml-parser-xml/node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/mjml-parser-xml/node_modules/domutils/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/mjml-parser-xml/node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/mjml-parser-xml/node_modules/htmlparser2": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^3.0.0", "domutils": "^2.0.0", "entities": "^2.0.0" } }, "node_modules/mjml-preset-core": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-preset-core/-/mjml-preset-core-4.13.0.tgz", "integrity": "sha512-gxzYaKkvUrHuzT1oqjEPSDtdmgEnN99Hf5f1r2CR5aMOB1x66EA3T8ATvF1o7qrBTVV4KMVlQem3IubMSYJZRw==", "dependencies": { "@babel/runtime": "^7.14.6", "mjml-accordion": "4.13.0", "mjml-body": "4.13.0", "mjml-button": "4.13.0", "mjml-carousel": "4.13.0", "mjml-column": "4.13.0", "mjml-divider": "4.13.0", "mjml-group": "4.13.0", "mjml-head": "4.13.0", "mjml-head-attributes": "4.13.0", "mjml-head-breakpoint": "4.13.0", "mjml-head-font": "4.13.0", "mjml-head-html-attributes": "4.13.0", "mjml-head-preview": "4.13.0", "mjml-head-style": "4.13.0", "mjml-head-title": "4.13.0", "mjml-hero": "4.13.0", "mjml-image": "4.13.0", "mjml-navbar": "4.13.0", "mjml-raw": "4.13.0", "mjml-section": "4.13.0", "mjml-social": "4.13.0", "mjml-spacer": "4.13.0", "mjml-table": "4.13.0", "mjml-text": "4.13.0", "mjml-wrapper": "4.13.0" } }, "node_modules/mjml-raw": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-raw/-/mjml-raw-4.13.0.tgz", "integrity": "sha512-JbBYxwX1a/zbqnCrlDCRNqov2xqUrMCaEdTHfqE2athj479aQXvLKFM20LilTMaClp/dR0yfvFLfFVrC5ej4FQ==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-section": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-section/-/mjml-section-4.13.0.tgz", "integrity": "sha512-BLcqlhavtRakKtzDQPLv6Ae4Jt4imYWq/P0jo+Sjk7tP4QifgVA2KEQOirPK5ZUqw/lvK7Afhcths5rXZ2ItnQ==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-social": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-social/-/mjml-social-4.13.0.tgz", "integrity": "sha512-zL2a7Wwsk8OXF0Bqu+1B3La1UPwdTMcEXptO8zdh2V5LL6Xb7Gfyvx6w0CmmBtG5IjyCtqaKy5wtrcpG9Hvjfg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-spacer": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-spacer/-/mjml-spacer-4.13.0.tgz", "integrity": "sha512-Acw4QJ0MJ38W4IewXuMX7hLaW1BZaln+gEEuTfrv0xwPdTxX1ILqz4r+s9mYMxYkIDLWMCjBvXyQK6aWlid13A==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-table": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-table/-/mjml-table-4.13.0.tgz", "integrity": "sha512-UAWPVMaGReQhf776DFdiwdcJTIHTek3zzQ1pb+E7VlypEYgIpFvdUJ39UIiiflhqtdBATmHwKBOtePwU0MzFMg==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-text": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-text/-/mjml-text-4.13.0.tgz", "integrity": "sha512-uDuraaQFdu+6xfuigCimbeznnOnJfwRdcCL1lTBTusTuEvW/5Va6m2D3mnMeEpl+bp4+cxesXIz9st6A9pcg5A==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "node_modules/mjml-validator": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-validator/-/mjml-validator-4.13.0.tgz", "integrity": "sha512-uURYfyQYtHJ6Qz/1A7/+E9ezfcoISoLZhYK3olsxKRViwaA2Mm8gy/J3yggZXnsUXWUns7Qymycm5LglLEIiQg==", "dependencies": { "@babel/runtime": "^7.14.6" } }, "node_modules/mjml-wrapper": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-wrapper/-/mjml-wrapper-4.13.0.tgz", "integrity": "sha512-p/44JvHg04rAFR7QDImg8nZucEokIjFH6KJMHxsO0frJtLZ+IuakctzlZAADHsqiR52BwocDsXSa+o9SE2l6Ng==", "dependencies": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0", "mjml-section": "4.13.0" } }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dependencies": { "minimist": "^1.2.6" }, "bin": { "mkdirp": "bin/cmd.js" } }, "node_modules/moment": { "version": "2.29.4", "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", "engines": { "node": "*" } }, "node_modules/moment-timezone": { "version": "0.5.37", "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.37.tgz", "integrity": "sha512-uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==", "dependencies": { "moment": ">= 2.9.0" }, "engines": { "node": "*" } }, "node_modules/moo": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz", "integrity": "sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==" }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/multer": { "version": "1.4.4-lts.1", "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.4-lts.1.tgz", "integrity": "sha512-WeSGziVj6+Z2/MwQo3GvqzgR+9Uc+qt8SwHKh3gvNPiISKfsMfG4SvCOFYlxxgkXt7yIV2i1yczehm0EOKIxIg==", "dependencies": { "append-field": "^1.0.0", "busboy": "^1.0.0", "concat-stream": "^1.5.2", "mkdirp": "^0.5.4", "object-assign": "^4.1.1", "type-is": "^1.6.4", "xtend": "^4.0.0" }, "engines": { "node": ">= 6.0.0" } }, "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, "node_modules/mysql2": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-2.3.3.tgz", "integrity": "sha512-wxJUev6LgMSgACDkb/InIFxDprRa6T95+VEoR+xPvtngtccNH2dGjEB/fVZ8yg1gWv1510c9CvXuJHi5zUm0ZA==", "dependencies": { "denque": "^2.0.1", "generate-function": "^2.3.1", "iconv-lite": "^0.6.3", "long": "^4.0.0", "lru-cache": "^6.0.0", "named-placeholders": "^1.1.2", "seq-queue": "^0.0.5", "sqlstring": "^2.3.2" }, "engines": { "node": ">= 8.0" } }, "node_modules/mysql2/node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/mysql2/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/mysql2/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/named-placeholders": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.2.tgz", "integrity": "sha512-wiFWqxoLL3PGVReSZpjLVxyJ1bRqe+KKJVbr4hGs1KWfTZTQyezHFBbuKj9hsizHyGV2ne7EMjHdxEGAybD5SA==", "dependencies": { "lru-cache": "^4.1.3" }, "engines": { "node": ">=6.0.0" } }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "node_modules/nearley": { "version": "2.20.1", "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", "dependencies": { "commander": "^2.19.0", "moo": "^0.5.0", "railroad-diagrams": "^1.0.0", "randexp": "0.4.6" }, "bin": { "nearley-railroad": "bin/nearley-railroad.js", "nearley-test": "bin/nearley-test.js", "nearley-unparse": "bin/nearley-unparse.js", "nearleyc": "bin/nearleyc.js" }, "funding": { "type": "individual", "url": "https://nearley.js.org/#give-to-nearley" } }, "node_modules/nearley/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "engines": { "node": ">= 0.6" } }, "node_modules/neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "node_modules/nest-router": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/nest-router/-/nest-router-1.0.9.tgz", "integrity": "sha512-ZyRdSVs9GczI+39B7tNXsxfBXQOYnEF6l/q2aLYG8wSEvRHRDXAlzZ1SIosDibM02pLahGkDNLFC+nZ8uzJGDQ==" }, "node_modules/netmask": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", "engines": { "node": ">= 0.4.0" } }, "node_modules/no-case": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", "dependencies": { "lower-case": "^1.1.1" } }, "node_modules/node-emoji": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", "dev": true, "dependencies": { "lodash": "^4.17.21" } }, "node_modules/node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dependencies": { "whatwg-url": "^5.0.0" }, "engines": { "node": "4.x || >=6.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "peerDependenciesMeta": { "encoding": { "optional": true } } }, "node_modules/node-fetch/node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/node-fetch/node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/node-fetch/node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, "node_modules/node-releases": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", "dev": true }, "node_modules/nodemailer": { "version": "6.7.8", "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.8.tgz", "integrity": "sha512-2zaTFGqZixVmTxpJRCFC+Vk5eGRd/fYtvIR+dl5u9QXLTQWGIf48x/JXvo58g9sa0bU6To04XUv554Paykum3g==", "engines": { "node": ">=6.0.0" } }, "node_modules/nopt": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dependencies": { "abbrev": "^1.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "engines": { "node": ">=0.10.0" } }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dependencies": { "boolbase": "^1.0.0" }, "funding": { "url": "https://github.com/fb55/nth-check?sponsor=1" } }, "node_modules/nwsapi": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", "dev": true }, "node_modules/oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "optional": true, "engines": { "node": "*" } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } }, "node_modules/object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "engines": { "node": ">= 6" } }, "node_modules/object-inspect": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dependencies": { "ee-first": "1.1.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/open": { "version": "7.4.2", "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dependencies": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/optionator": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.5.0", "is-interactive": "^1.0.0", "is-unicode-supported": "^0.1.0", "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ora/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/os-name": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/os-name/-/os-name-4.0.1.tgz", "integrity": "sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==", "dev": true, "dependencies": { "macos-release": "^2.5.0", "windows-release": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "dependencies": { "p-try": "^2.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { "p-limit": "^2.2.0" }, "engines": { "node": ">=8" } }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/pac-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4", "get-uri": "3", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "5", "pac-resolver": "^5.0.0", "raw-body": "^2.2.0", "socks-proxy-agent": "5" }, "engines": { "node": ">= 8" } }, "node_modules/pac-resolver": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", "dependencies": { "degenerator": "^3.0.2", "ip": "^1.1.5", "netmask": "^2.0.2" }, "engines": { "node": ">= 8" } }, "node_modules/param-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", "dependencies": { "no-case": "^2.2.0" } }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "dependencies": { "callsites": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parse5": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.1.tgz", "integrity": "sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==", "dependencies": { "entities": "^4.4.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" } }, "node_modules/parse5-htmlparser2-tree-adapter": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "dependencies": { "domhandler": "^5.0.2", "parse5": "^7.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" } }, "node_modules/parseley": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/parseley/-/parseley-0.7.0.tgz", "integrity": "sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==", "dependencies": { "moo": "^0.5.1", "nearley": "^2.20.1" }, "funding": { "url": "https://ko-fi.com/killymxi" } }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "engines": { "node": ">= 0.8" } }, "node_modules/passport": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/passport/-/passport-0.5.3.tgz", "integrity": "sha512-gGc+70h4gGdBWNsR3FuV3byLDY6KBTJAIExGFXTpQaYfbbcHCBlRRKx7RBQSpqEqc5Hh2qVzRs7ssvSfOpkUEA==", "dependencies": { "passport-strategy": "1.x.x", "pause": "0.0.1" }, "engines": { "node": ">= 0.4.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/jaredhanson" } }, "node_modules/passport-jwt": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/passport-jwt/-/passport-jwt-4.0.0.tgz", "integrity": "sha512-BwC0n2GP/1hMVjR4QpnvqA61TxenUMlmfNjYNgK0ZAs0HK4SOQkHcSv4L328blNTLtHq7DbmvyNJiH+bn6C5Mg==", "dependencies": { "jsonwebtoken": "^8.2.0", "passport-strategy": "^1.0.0" } }, "node_modules/passport-local": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz", "integrity": "sha512-9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==", "dependencies": { "passport-strategy": "1.x.x" }, "engines": { "node": ">= 0.4.0" } }, "node_modules/passport-strategy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz", "integrity": "sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==", "engines": { "node": ">= 0.4.0" } }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "node_modules/path-to-regexp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz", "integrity": "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/pause": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz", "integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==" }, "node_modules/pdf-creator-node": { "version": "2.3.5", "resolved": "https://registry.npmjs.org/pdf-creator-node/-/pdf-creator-node-2.3.5.tgz", "integrity": "sha512-dUnYiYTGBkC60M1hBrHjlZs+gsSZZvXP33OLDUDOUPhNNhnHXQrzXFC3leo57ujzS/3rpbrqFcXxWpB5fgwkpw==", "dependencies": { "handlebars": "^4.7.7", "html-pdf": "^3.0.1" } }, "node_modules/pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "optional": true }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "optional": true }, "node_modules/pg-connection-string": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" }, "node_modules/phantomjs-prebuilt": { "version": "2.1.16", "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz", "integrity": "sha512-PIiRzBhW85xco2fuj41FmsyuYHKjKuXWmhjy3A/Y+CMpN/63TV+s9uzfVhsUwFe0G77xWtHBG8xmXf5BqEUEuQ==", "deprecated": "this package is now deprecated", "hasInstallScript": true, "optional": true, "dependencies": { "es6-promise": "^4.0.3", "extract-zip": "^1.6.5", "fs-extra": "^1.0.0", "hasha": "^2.2.0", "kew": "^0.7.0", "progress": "^1.1.8", "request": "^2.81.0", "request-progress": "^2.0.1", "which": "^1.2.10" }, "bin": { "phantomjs": "bin/phantomjs" } }, "node_modules/phantomjs-prebuilt/node_modules/fs-extra": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", "integrity": "sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==", "optional": true, "dependencies": { "graceful-fs": "^4.1.2", "jsonfile": "^2.1.0", "klaw": "^1.0.0" } }, "node_modules/phantomjs-prebuilt/node_modules/jsonfile": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", "optional": true, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/phantomjs-prebuilt/node_modules/progress": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", "integrity": "sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw==", "optional": true, "engines": { "node": ">=0.4.0" } }, "node_modules/phantomjs-prebuilt/node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "optional": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "bin/which" } }, "node_modules/pick-util": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/pick-util/-/pick-util-1.1.5.tgz", "integrity": "sha512-H0MaM8T7wpQ/azvB12ChZw7kpSFzjsgv3Z+N7fUWnL1McTGSEeroCngcK4eOPiFQq08rAyKX3hadcAB1kUqfXA==", "dependencies": { "@jonkemp/package-utils": "^1.0.8" } }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "optional": true, "dependencies": { "pinkie": "^2.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/pirates": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "dev": true, "engines": { "node": ">= 6" } }, "node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { "find-up": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/pluralize": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/prettier": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", "dev": true, "bin": { "prettier": "bin-prettier.js" }, "engines": { "node": ">=10.13.0" }, "funding": { "url": "https://github.com/prettier/prettier?sponsor=1" } }, "node_modules/prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, "dependencies": { "fast-diff": "^1.1.2" }, "engines": { "node": ">=6.0.0" } }, "node_modules/pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/preview-email": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/preview-email/-/preview-email-3.0.5.tgz", "integrity": "sha512-q37jdkVw+wic0o/7xYhOTBS4kF0WX3two0OepmR1Fhxp9NTpO3rJTccAjQm95gJx/2Wa/Nv98sr9pXIQ77/foA==", "deprecated": "Please upgrade to v3.0.7+ as we have added iOS Simulator support to previewing emails! See <https://github.com/forwardemail/preview-email/releases/tag/v3.0.6> and screenshots at <https://github.com/forwardemail/preview-email\\#ios-simulator>.", "dependencies": { "dayjs": "^1.10.6", "debug": "^4.3.2", "mailparser": "^3.3.0", "nodemailer": "^6.6.3", "open": "7", "pug": "^3.0.2", "uuid": "^8.3.2" }, "engines": { "node": ">=10" } }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/promise": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dependencies": { "asap": "~2.0.3" } }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" }, "engines": { "node": ">= 6" } }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "peer": true, "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "peer": true }, "node_modules/proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, "engines": { "node": ">= 0.10" } }, "node_modules/proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", "dependencies": { "agent-base": "^6.0.0", "debug": "4", "http-proxy-agent": "^4.0.0", "https-proxy-agent": "^5.0.0", "lru-cache": "^5.1.1", "pac-proxy-agent": "^5.0.0", "proxy-from-env": "^1.0.0", "socks-proxy-agent": "^5.0.0" }, "engines": { "node": ">= 8" } }, "node_modules/proxy-agent/node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dependencies": { "yallist": "^3.0.2" } }, "node_modules/proxy-agent/node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "node_modules/pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" }, "node_modules/psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "devOptional": true }, "node_modules/pug": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz", "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", "dependencies": { "pug-code-gen": "^3.0.2", "pug-filters": "^4.0.0", "pug-lexer": "^5.0.1", "pug-linker": "^4.0.0", "pug-load": "^3.0.0", "pug-parser": "^6.0.0", "pug-runtime": "^3.0.1", "pug-strip-comments": "^2.0.0" } }, "node_modules/pug-attrs": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz", "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==", "dependencies": { "constantinople": "^4.0.1", "js-stringify": "^1.0.2", "pug-runtime": "^3.0.0" } }, "node_modules/pug-code-gen": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz", "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==", "dependencies": { "constantinople": "^4.0.1", "doctypes": "^1.1.0", "js-stringify": "^1.0.2", "pug-attrs": "^3.0.0", "pug-error": "^2.0.0", "pug-runtime": "^3.0.0", "void-elements": "^3.1.0", "with": "^7.0.0" } }, "node_modules/pug-error": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz", "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==" }, "node_modules/pug-filters": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz", "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==", "dependencies": { "constantinople": "^4.0.1", "jstransformer": "1.0.0", "pug-error": "^2.0.0", "pug-walk": "^2.0.0", "resolve": "^1.15.1" } }, "node_modules/pug-lexer": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz", "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==", "dependencies": { "character-parser": "^2.2.0", "is-expression": "^4.0.0", "pug-error": "^2.0.0" } }, "node_modules/pug-linker": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz", "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==", "dependencies": { "pug-error": "^2.0.0", "pug-walk": "^2.0.0" } }, "node_modules/pug-load": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz", "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==", "dependencies": { "object-assign": "^4.1.1", "pug-walk": "^2.0.0" } }, "node_modules/pug-parser": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz", "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==", "dependencies": { "pug-error": "^2.0.0", "token-stream": "1.0.0" } }, "node_modules/pug-runtime": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz", "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==" }, "node_modules/pug-strip-comments": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz", "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==", "dependencies": { "pug-error": "^2.0.0" } }, "node_modules/pug-walk": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz", "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==" }, "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "devOptional": true, "engines": { "node": ">=6" } }, "node_modules/qs": { "version": "6.10.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "dependencies": { "side-channel": "^1.0.4" }, "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/railroad-diagrams": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" }, "node_modules/randexp": { "version": "0.4.6", "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", "dependencies": { "discontinuous-range": "1.0.0", "ret": "~0.1.10" }, "engines": { "node": ">=0.12" } }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "dependencies": { "safe-buffer": "^5.1.0" } }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/react": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "peer": true, "dependencies": { "loose-envify": "^1.1.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/react-dom": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", "peer": true, "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.0" }, "peerDependencies": { "react": "^18.2.0" } }, "node_modules/react-dropzone-uploader": { "version": "2.11.0", "resolved": "https://registry.npmjs.org/react-dropzone-uploader/-/react-dropzone-uploader-2.11.0.tgz", "integrity": "sha512-1DpdPMGKP7vYL5SeCh13HCl+Xrz0F6jGrDPU5Tj2ojEIXGMCtfflrZhyXdr7u40IkQ+hYjAUEEtJW24SiY8WRA==", "dependencies": { "@babel/runtime": "^7.1.2" }, "peerDependencies": { "prop-types": ">=15.5.10", "react": ">=16.2.0", "react-dom": ">=16.2.0" } }, "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, "node_modules/readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, "dependencies": { "resolve": "^1.1.6" }, "engines": { "node": ">= 0.10" } }, "node_modules/reflect-metadata": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, "node_modules/regenerator-runtime": { "version": "0.13.9", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" }, "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/mysticatea" } }, "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "engines": { "node": ">= 0.10" } }, "node_modules/remote-content": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/remote-content/-/remote-content-3.0.0.tgz", "integrity": "sha512-/hjCYVqWY/jYR07ptEJpClnYrGedSQ5AxCrEeMb3NlrxTgUK/7+iCOReE3z1QMYm3UL7sJX3o7cww/NC6UgyhA==", "dependencies": { "proxy-from-env": "^1.1.0", "superagent": "^7.0.2", "superagent-proxy": "^3.0.0" } }, "node_modules/request": { "version": "2.88.2", "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "optional": true, "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", "combined-stream": "~1.0.6", "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", "har-validator": "~5.1.3", "http-signature": "~1.2.0", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", "mime-types": "~2.1.19", "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", "qs": "~6.5.2", "safe-buffer": "^5.1.2", "tough-cookie": "~2.5.0", "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" }, "engines": { "node": ">= 6" } }, "node_modules/request-progress": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", "integrity": "sha512-dxdraeZVUNEn9AvLrxkgB2k6buTlym71dJk1fk4v8j3Ou3RKNm07BcgbHdj2lLgYGfqX71F+awb1MR+tWPFJzA==", "optional": true, "dependencies": { "throttleit": "^1.0.0" } }, "node_modules/request/node_modules/form-data": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "optional": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", "mime-types": "^2.1.12" }, "engines": { "node": ">= 0.12" } }, "node_modules/request/node_modules/qs": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "optional": true, "engines": { "node": ">=0.6" } }, "node_modules/request/node_modules/tough-cookie": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "optional": true, "dependencies": { "psl": "^1.1.28", "punycode": "^2.1.1" }, "engines": { "node": ">=0.8" } }, "node_modules/request/node_modules/uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", "optional": true, "bin": { "uuid": "bin/uuid" } }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "engines": { "node": ">=0.10.0" } }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "node_modules/resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dependencies": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "dependencies": { "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/resolve.exports": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" }, "engines": { "node": ">=8" } }, "node_modules/ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "engines": { "node": ">=0.12" } }, "node_modules/retry-as-promised": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-6.1.0.tgz", "integrity": "sha512-Hj/jY+wFC+SB9SDlIIFWiGOHnNG0swYbGYsOj2BJ8u2HKUaobNKab0OIC0zOLYzDy0mb7A4xA5BMo4LMz5YtEA==" }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, "engines": { "node": ">=0.12.0" } }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { "version": "7.5.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, "dependencies": { "xmlchars": "^2.2.0" }, "engines": { "node": ">=10" } }, "node_modules/scheduler": { "version": "0.23.0", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", "peer": true, "dependencies": { "loose-envify": "^1.1.0" } }, "node_modules/schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/schema-utils/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/schema-utils/node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, "peerDependencies": { "ajv": "^6.9.1" } }, "node_modules/schema-utils/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/selderee": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/selderee/-/selderee-0.6.0.tgz", "integrity": "sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==", "dependencies": { "parseley": "^0.7.0" }, "funding": { "url": "https://ko-fi.com/killymxi" } }, "node_modules/semver": { "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/semver/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/semver/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/send/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/seq-queue": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz", "integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" }, "node_modules/sequelize": { "version": "6.23.2", "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-6.23.2.tgz", "integrity": "sha512-0jy5pkRV7LZlBArIrYKfpKa+DowC+fIcI6LrWDfvdqFmuXZfmS4qq8gzFmIu0C210ts2Mmw/dghzRhX73xPoMg==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/sequelize" } ], "dependencies": { "@types/debug": "^4.1.7", "@types/validator": "^13.7.1", "debug": "^4.3.3", "dottie": "^2.0.2", "inflection": "^1.13.2", "lodash": "^4.17.21", "moment": "^2.29.1", "moment-timezone": "^0.5.34", "pg-connection-string": "^2.5.0", "retry-as-promised": "^6.1.0", "semver": "^7.3.5", "sequelize-pool": "^7.1.0", "toposort-class": "^1.0.1", "uuid": "^8.3.2", "validator": "^13.7.0", "wkx": "^0.5.0" }, "engines": { "node": ">=10.0.0" }, "peerDependenciesMeta": { "ibm_db": { "optional": true }, "mariadb": { "optional": true }, "mysql2": { "optional": true }, "oracledb": { "optional": true }, "pg": { "optional": true }, "pg-hstore": { "optional": true }, "snowflake-sdk": { "optional": true }, "sqlite3": { "optional": true }, "tedious": { "optional": true } } }, "node_modules/sequelize-pool": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-7.1.0.tgz", "integrity": "sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==", "engines": { "node": ">= 10.0.0" } }, "node_modules/sequelize-typescript": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/sequelize-typescript/-/sequelize-typescript-2.1.3.tgz", "integrity": "sha512-0mejGAaLywuCoOOLSXCQs2sMBNudU/QtWZkGY5VT2dfTHToXZi5bOxCa3/CukNNk7wJwXnLuIdeHdlqjvVoj1g==", "dependencies": { "glob": "7.2.0" }, "engines": { "node": ">=10.0.0" }, "peerDependencies": { "@types/node": "*", "@types/validator": "*", "reflect-metadata": "*", "sequelize": ">=6.8.0" } }, "node_modules/sequelize-typescript/node_modules/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/serialize-javascript": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", "dev": true, "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/shelljs": { "version": "0.8.5", "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, "dependencies": { "glob": "^7.0.0", "interpret": "^1.0.0", "rechoir": "^0.6.2" }, "bin": { "shjs": "bin/shjs" }, "engines": { "node": ">=4" } }, "node_modules/shelljs/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/sigmund": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", "integrity": "sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==" }, "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, "node_modules/slick": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/slick/-/slick-1.12.2.tgz", "integrity": "sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==", "engines": { "node": "*" } }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" } }, "node_modules/socks": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", "dependencies": { "ip": "^2.0.0", "smart-buffer": "^4.2.0" }, "engines": { "node": ">= 10.13.0", "npm": ">= 3.0.0" } }, "node_modules/socks-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", "dependencies": { "agent-base": "^6.0.2", "debug": "4", "socks": "^2.3.3" }, "engines": { "node": ">= 6" } }, "node_modules/socks/node_modules/ip": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" }, "node_modules/source-map": { "version": "0.7.3", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "dev": true }, "node_modules/specificity": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz", "integrity": "sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==", "bin": { "specificity": "bin/specificity" } }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, "node_modules/sqlstring": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz", "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==", "engines": { "node": ">= 0.6" } }, "node_modules/sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "optional": true, "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", "dashdash": "^1.12.0", "ecc-jsbn": "~0.1.1", "getpass": "^0.1.1", "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" }, "bin": { "sshpk-conv": "bin/sshpk-conv", "sshpk-sign": "bin/sshpk-sign", "sshpk-verify": "bin/sshpk-verify" }, "engines": { "node": ">=0.10.0" } }, "node_modules/stack-utils": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "dependencies": { "escape-string-regexp": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "engines": { "node": ">= 0.8" } }, "node_modules/streamsearch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", "engines": { "node": ">=10.0.0" } }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/string_decoder/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/stripe": { "version": "8.222.0", "resolved": "https://registry.npmjs.org/stripe/-/stripe-8.222.0.tgz", "integrity": "sha512-hrA79fjmN2Eb6K3kxkDzU4ODeVGGjXQsuVaAPSUro6I9MM3X+BvIsVqdphm3BXWfimAGFvUqWtPtHy25mICY1w==", "dependencies": { "@types/node": ">=8.1.0", "qs": "^6.10.3" }, "engines": { "node": "^8.1 || >=10.*" } }, "node_modules/style-data": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/style-data/-/style-data-2.0.0.tgz", "integrity": "sha512-8RJ+MnHlwFUrf3B3gUjs9KIrOk0TppHHwfIHfBd6QjYmZcuzN1OGqeMkWA3ZnD6GiRWJjCVouY/l11v4rlfnPA==", "dependencies": { "cheerio": "^1.0.0-rc.10", "mediaquery-text": "^1.2.0", "pick-util": "^1.1.4" } }, "node_modules/superagent": { "version": "7.1.5", "resolved": "https://registry.npmjs.org/superagent/-/superagent-7.1.5.tgz", "integrity": "sha512-HQYyGuDRFGmZ6GNC4hq2f37KnsY9Lr0/R1marNZTgMweVDQLTLJJ6DGQ9Tj/xVVs5HEnop9EMmTbywb5P30aqw==", "dependencies": { "component-emitter": "^1.3.0", "cookiejar": "^2.1.3", "debug": "^4.3.4", "fast-safe-stringify": "^2.1.1", "form-data": "^4.0.0", "formidable": "^2.0.1", "methods": "^1.1.2", "mime": "^2.5.0", "qs": "^6.10.3", "readable-stream": "^3.6.0", "semver": "^7.3.7" }, "engines": { "node": ">=6.4.0 <13 || >=14" } }, "node_modules/superagent-proxy": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/superagent-proxy/-/superagent-proxy-3.0.0.tgz", "integrity": "sha512-wAlRInOeDFyd9pyonrkJspdRAxdLrcsZ6aSnS+8+nu4x1aXbz6FWSTT9M6Ibze+eG60szlL7JA8wEIV7bPWuyQ==", "dependencies": { "debug": "^4.3.2", "proxy-agent": "^5.0.0" }, "engines": { "node": ">=6" }, "peerDependencies": { "superagent": ">= 0.15.4 || 1 || 2 || 3" } }, "node_modules/superagent/node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4.0.0" } }, "node_modules/superagent/node_modules/readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/supertest": { "version": "6.2.4", "resolved": "https://registry.npmjs.org/supertest/-/supertest-6.2.4.tgz", "integrity": "sha512-M8xVnCNv+q2T2WXVzxDECvL2695Uv2uUj2O0utxsld/HRyJvOU8W9f1gvsYxSNU4wmIe0/L/ItnpU4iKq0emDA==", "dev": true, "dependencies": { "methods": "^1.1.2", "superagent": "^8.0.0" }, "engines": { "node": ">=6.4.0" } }, "node_modules/supertest/node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, "bin": { "mime": "cli.js" }, "engines": { "node": ">=4.0.0" } }, "node_modules/supertest/node_modules/readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/supertest/node_modules/superagent": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.0.tgz", "integrity": "sha512-iudipXEel+SzlP9y29UBWGDjB+Zzag+eeA1iLosaR2YHBRr1Q1kC29iBrF2zIVD9fqVbpZnXkN/VJmwFMVyNWg==", "dev": true, "dependencies": { "component-emitter": "^1.3.0", "cookiejar": "^2.1.3", "debug": "^4.3.4", "fast-safe-stringify": "^2.1.1", "form-data": "^4.0.0", "formidable": "^2.0.1", "methods": "^1.1.2", "mime": "2.6.0", "qs": "^6.10.3", "readable-stream": "^3.6.0", "semver": "^7.3.7" }, "engines": { "node": ">=6.4.0 <13 || >=14" } }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-hyperlinks": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/symbol-observable": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", "dev": true, "engines": { "node": ">=0.10" } }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "node_modules/table": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", "dev": true, "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=10.0.0" } }, "node_modules/tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/terser": { "version": "5.15.0", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" }, "engines": { "node": ">=10" } }, "node_modules/terser-webpack-plugin": { "version": "5.3.6", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.14", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.0", "terser": "^5.14.1" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.1.0" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "esbuild": { "optional": true }, "uglify-js": { "optional": true } } }, "node_modules/terser/node_modules/acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" }, "engines": { "node": ">=8" } }, "node_modules/test-exclude/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "node_modules/throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", "dev": true }, "node_modules/throttleit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", "optional": true }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, "node_modules/tlds": { "version": "1.231.0", "resolved": "https://registry.npmjs.org/tlds/-/tlds-1.231.0.tgz", "integrity": "sha512-L7UQwueHSkGxZHQBXHVmXW64oi+uqNtzFt2x6Ssk7NVnpIbw16CRs4eb/jmKOZ9t2JnqZ/b3Cfvo97lnXqKrhw==", "bin": { "tlds": "bin.js" } }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "dependencies": { "os-tmpdir": "~1.0.2" }, "engines": { "node": ">=0.6.0" } }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "engines": { "node": ">=4" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "engines": { "node": ">=0.6" } }, "node_modules/token-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz", "integrity": "sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==" }, "node_modules/toposort-class": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz", "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==" }, "node_modules/tough-cookie": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", "dev": true, "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" }, "engines": { "node": ">=6" } }, "node_modules/tough-cookie/node_modules/universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, "engines": { "node": ">= 4.0.0" } }, "node_modules/tr46": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "dependencies": { "punycode": "^2.1.1" }, "engines": { "node": ">=8" } }, "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, "bin": { "tree-kill": "cli.js" } }, "node_modules/ts-jest": { "version": "27.1.5", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.5.tgz", "integrity": "sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==", "dev": true, "dependencies": { "bs-logger": "0.x", "fast-json-stable-stringify": "2.x", "jest-util": "^27.0.0", "json5": "2.x", "lodash.memoize": "4.x", "make-error": "1.x", "semver": "7.x", "yargs-parser": "20.x" }, "bin": { "ts-jest": "cli.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", "@types/jest": "^27.0.0", "babel-jest": ">=27.0.0 <28", "jest": "^27.0.0", "typescript": ">=3.8 <5.0" }, "peerDependenciesMeta": { "@babel/core": { "optional": true }, "@types/jest": { "optional": true }, "babel-jest": { "optional": true }, "esbuild": { "optional": true } } }, "node_modules/ts-loader": { "version": "9.4.1", "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.1.tgz", "integrity": "sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw==", "dev": true, "dependencies": { "chalk": "^4.1.0", "enhanced-resolve": "^5.0.0", "micromatch": "^4.0.0", "semver": "^7.3.4" }, "engines": { "node": ">=12.0.0" }, "peerDependencies": { "typescript": "*", "webpack": "^5.0.0" } }, "node_modules/ts-loader/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/ts-node": { "version": "10.9.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "bin": { "ts-node": "dist/bin.js", "ts-node-cwd": "dist/bin-cwd.js", "ts-node-esm": "dist/bin-esm.js", "ts-node-script": "dist/bin-script.js", "ts-node-transpile-only": "dist/bin-transpile.js", "ts-script": "dist/bin-script-deprecated.js" }, "peerDependencies": { "@swc/core": ">=1.2.50", "@swc/wasm": ">=1.2.50", "@types/node": "*", "typescript": ">=2.7" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "@swc/wasm": { "optional": true } } }, "node_modules/ts-node/node_modules/acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/ts-node/node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/tsconfig-paths": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", "dev": true, "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.1", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "node_modules/tsconfig-paths-webpack-plugin": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-3.5.2.tgz", "integrity": "sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==", "dev": true, "dependencies": { "chalk": "^4.1.0", "enhanced-resolve": "^5.7.0", "tsconfig-paths": "^3.9.0" } }, "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/tsconfig-paths/node_modules/json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "dev": true, "dependencies": { "minimist": "^1.2.0" }, "bin": { "json5": "lib/cli.js" } }, "node_modules/tsconfig-paths/node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/tslib": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "dependencies": { "tslib": "^1.8.1" }, "engines": { "node": ">= 6" }, "peerDependencies": { "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, "node_modules/tsutils/node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "optional": true, "dependencies": { "safe-buffer": "^5.0.1" }, "engines": { "node": "*" } }, "node_modules/tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "optional": true }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" }, "engines": { "node": ">= 0.6" } }, "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, "dependencies": { "is-typedarray": "^1.0.0" } }, "node_modules/typescript": { "version": "4.8.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=4.2.0" } }, "node_modules/uc.micro": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, "node_modules/uglify-js": { "version": "3.17.2", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.2.tgz", "integrity": "sha512-bbxglRjsGQMchfvXZNusUcYgiB9Hx2K4AHYXQy2DITZ9Rd+JzhX7+hoocE5Winr7z2oHvPsekkBwXtigvxevXg==", "bin": { "uglifyjs": "bin/uglifyjs" }, "engines": { "node": ">=0.8.0" } }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, "engines": { "node": ">= 10.0.0" } }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "engines": { "node": ">= 0.8" } }, "node_modules/update-browserslist-db": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" } ], "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0" }, "bin": { "browserslist-lint": "cli.js" }, "peerDependencies": { "browserslist": ">= 4.21.0" } }, "node_modules/upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==" }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "devOptional": true, "dependencies": { "punycode": "^2.1.0" } }, "node_modules/url-parse": { "version": "1.5.10", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "engines": { "node": ">= 0.4.0" } }, "node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, "node_modules/v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" }, "engines": { "node": ">=10.12.0" } }, "node_modules/valid-data-url": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/valid-data-url/-/valid-data-url-3.0.1.tgz", "integrity": "sha512-jOWVmzVceKlVVdwjNSenT4PbGghU0SBIizAev8ofZVgivk/TVHXSbNL8LP6M3spZvkR9/QolkyJavGSX5Cs0UA==", "engines": { "node": ">=10" } }, "node_modules/validator": { "version": "13.7.0", "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==", "engines": { "node": ">= 0.10" } }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "engines": { "node": ">= 0.8" } }, "node_modules/verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "engines": [ "node >=0.6.0" ], "optional": true, "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, "node_modules/verror/node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "optional": true }, "node_modules/vm2": { "version": "3.9.11", "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.11.tgz", "integrity": "sha512-PFG8iJRSjvvBdisowQ7iVF580DXb1uCIiGaXgm7tynMR1uTBlv7UJlB1zdv5KJ+Tmq1f0Upnj3fayoEOPpCBKg==", "dependencies": { "acorn": "^8.7.0", "acorn-walk": "^8.2.0" }, "bin": { "vm2": "bin/vm2" }, "engines": { "node": ">=6.0" } }, "node_modules/vm2/node_modules/acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/vm2/node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "engines": { "node": ">=0.4.0" } }, "node_modules/void-elements": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", "integrity": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==", "engines": { "node": ">=0.10.0" } }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, "dependencies": { "browser-process-hrtime": "^1.0.0" } }, "node_modules/w3c-xmlserializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, "dependencies": { "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" } }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "dependencies": { "makeerror": "1.0.12" } }, "node_modules/watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" }, "engines": { "node": ">=10.13.0" } }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, "dependencies": { "defaults": "^1.0.3" } }, "node_modules/web-resource-inliner": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/web-resource-inliner/-/web-resource-inliner-5.0.0.tgz", "integrity": "sha512-AIihwH+ZmdHfkJm7BjSXiEClVt4zUFqX4YlFAzjL13wLtDuUneSaFvDBTbdYRecs35SiU7iNKbMnN+++wVfb6A==", "dependencies": { "ansi-colors": "^4.1.1", "escape-goat": "^3.0.0", "htmlparser2": "^4.0.0", "mime": "^2.4.6", "node-fetch": "^2.6.0", "valid-data-url": "^3.0.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/web-resource-inliner/node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/web-resource-inliner/node_modules/dom-serializer/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/web-resource-inliner/node_modules/domhandler": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", "dependencies": { "domelementtype": "^2.0.1" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/web-resource-inliner/node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/web-resource-inliner/node_modules/domutils/node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/web-resource-inliner/node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/web-resource-inliner/node_modules/htmlparser2": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^3.0.0", "domutils": "^2.0.0", "entities": "^2.0.0" } }, "node_modules/web-resource-inliner/node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4.0.0" } }, "node_modules/webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true, "engines": { "node": ">=10.4" } }, "node_modules/webpack": { "version": "5.74.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz", "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", "dev": true, "peer": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.10.0", "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.9", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" }, "engines": { "node": ">=10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependenciesMeta": { "webpack-cli": { "optional": true } } }, "node_modules/webpack-node-externals": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true, "engines": { "node": ">=10.13.0" } }, "node_modules/webpack/node_modules/acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true, "peer": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/webpack/node_modules/acorn-import-assertions": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", "dev": true, "peer": true, "peerDependencies": { "acorn": "^8" } }, "node_modules/whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, "dependencies": { "iconv-lite": "0.4.24" } }, "node_modules/whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, "node_modules/whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "dependencies": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" }, "engines": { "node": ">=10" } }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/windows-release": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-4.0.0.tgz", "integrity": "sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==", "dev": true, "dependencies": { "execa": "^4.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/windows-release/node_modules/execa": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, "dependencies": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", "human-signals": "^1.1.1", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.0", "onetime": "^5.1.0", "signal-exit": "^3.0.2", "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/windows-release/node_modules/get-stream": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "dependencies": { "pump": "^3.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/windows-release/node_modules/human-signals": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true, "engines": { "node": ">=8.12.0" } }, "node_modules/with": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz", "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==", "dependencies": { "@babel/parser": "^7.9.6", "@babel/types": "^7.9.6", "assert-never": "^1.2.1", "babel-walk": "3.0.0-canary-5" }, "engines": { "node": ">= 10.0.0" } }, "node_modules/wkx": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz", "integrity": "sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==", "dependencies": { "@types/node": "*" } }, "node_modules/word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "engines": { "node": ">=0.10.0" } }, "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, "node_modules/ws": { "version": "7.5.9", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "dev": true, "engines": { "node": ">=8.3.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } }, "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, "node_modules/xregexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", "engines": { "node": "*" } }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" }, "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true, "engines": { "node": ">= 6" } }, "node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" }, "engines": { "node": ">=10" } }, "node_modules/yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "engines": { "node": ">=10" } }, "node_modules/yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "optional": true, "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, "engines": { "node": ">=6" } } }, "dependencies": { "@ampproject/remapping": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "dev": true, "requires": { "@jridgewell/gen-mapping": "^0.1.0", "@jridgewell/trace-mapping": "^0.3.9" } }, "@angular-devkit/core": { "version": "13.3.6", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.6.tgz", "integrity": "sha512-ZmD586B+RnM2CG5+jbXh2NVfIydTc/yKSjppYDDOv4I530YBm6vpfZMwClpiNk6XLbMv7KqX4Tlr4wfxlPYYbA==", "dev": true, "requires": { "ajv": "8.9.0", "ajv-formats": "2.1.1", "fast-json-stable-stringify": "2.1.0", "magic-string": "0.25.7", "rxjs": "6.6.7", "source-map": "0.7.3" }, "dependencies": { "rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" } }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "@angular-devkit/schematics": { "version": "13.3.6", "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.6.tgz", "integrity": "sha512-yLh5xc92C/FiaAp27coPiKWpSUmwoXF7vMxbJYJTyOXlt0mUITAEAwtrZQNr4yAxW/yvgTdyg7PhXaveQNTUuQ==", "dev": true, "requires": { "@angular-devkit/core": "13.3.6", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", "rxjs": "6.6.7" }, "dependencies": { "rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" } }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "@angular-devkit/schematics-cli": { "version": "13.3.6", "resolved": "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-13.3.6.tgz", "integrity": "sha512-5tTuu9gbXM0bMk0sin4phmWA3U1Qz53zT/rpEfzQ/+c/s8CoqZ5N1qOnYtemRct3Jxsz1kn4TBpHeriR4r5hHg==", "dev": true, "requires": { "@angular-devkit/core": "13.3.6", "@angular-devkit/schematics": "13.3.6", "ansi-colors": "4.1.1", "inquirer": "8.2.0", "minimist": "1.2.6", "symbol-observable": "4.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "inquirer": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.0.tgz", "integrity": "sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.21", "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", "rxjs": "^7.2.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" } } } }, "@babel/code-frame": { "version": "7.12.11", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, "requires": { "@babel/highlight": "^7.10.4" } }, "@babel/compat-data": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz", "integrity": "sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==", "dev": true }, "@babel/core": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.3.tgz", "integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==", "dev": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", "@babel/generator": "^7.19.3", "@babel/helper-compilation-targets": "^7.19.3", "@babel/helper-module-transforms": "^7.19.0", "@babel/helpers": "^7.19.0", "@babel/parser": "^7.19.3", "@babel/template": "^7.18.10", "@babel/traverse": "^7.19.3", "@babel/types": "^7.19.3", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.1", "semver": "^6.3.0" }, "dependencies": { "@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "requires": { "@babel/highlight": "^7.18.6" } }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "@babel/generator": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz", "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==", "dev": true, "requires": { "@babel/types": "^7.19.3", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "dependencies": { "@jridgewell/gen-mapping": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "dev": true, "requires": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } } } }, "@babel/helper-compilation-targets": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz", "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==", "dev": true, "requires": { "@babel/compat-data": "^7.19.3", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", "semver": "^6.3.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "@babel/helper-environment-visitor": { "version": "7.18.9", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", "dev": true }, "@babel/helper-function-name": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, "requires": { "@babel/template": "^7.18.10", "@babel/types": "^7.19.0" } }, "@babel/helper-hoist-variables": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, "requires": { "@babel/types": "^7.18.6" } }, "@babel/helper-module-imports": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "dev": true, "requires": { "@babel/types": "^7.18.6" } }, "@babel/helper-module-transforms": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-module-imports": "^7.18.6", "@babel/helper-simple-access": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.18.6", "@babel/template": "^7.18.10", "@babel/traverse": "^7.19.0", "@babel/types": "^7.19.0" } }, "@babel/helper-plugin-utils": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", "dev": true }, "@babel/helper-simple-access": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", "dev": true, "requires": { "@babel/types": "^7.18.6" } }, "@babel/helper-split-export-declaration": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, "requires": { "@babel/types": "^7.18.6" } }, "@babel/helper-string-parser": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==" }, "@babel/helper-validator-identifier": { "version": "7.19.1", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" }, "@babel/helper-validator-option": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", "dev": true }, "@babel/helpers": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", "dev": true, "requires": { "@babel/template": "^7.18.10", "@babel/traverse": "^7.19.0", "@babel/types": "^7.19.0" } }, "@babel/highlight": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, "dependencies": { "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" } }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" } }, "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { "has-flag": "^3.0.0" } } } }, "@babel/parser": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz", "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==" }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-top-level-await": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, "@babel/plugin-syntax-typescript": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.18.6" } }, "@babel/runtime": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.18.10", "@babel/types": "^7.18.10" }, "dependencies": { "@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "requires": { "@babel/highlight": "^7.18.6" } } } }, "@babel/traverse": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz", "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", "@babel/generator": "^7.19.3", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/parser": "^7.19.3", "@babel/types": "^7.19.3", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { "@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "requires": { "@babel/highlight": "^7.18.6" } }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true } } }, "@babel/types": { "version": "7.19.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", "requires": { "@babel/helper-string-parser": "^7.18.10", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } }, "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, "@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, "optional": true }, "@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "requires": { "@jridgewell/trace-mapping": "0.3.9" }, "dependencies": { "@jridgewell/trace-mapping": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } } } }, "@eslint/eslintrc": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.1.1", "espree": "^7.3.0", "globals": "^13.9.0", "ignore": "^4.0.6", "import-fresh": "^3.2.1", "js-yaml": "^3.13.1", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" }, "dependencies": { "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true } } }, "@humanwhocodes/config-array": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "dev": true, "requires": { "@humanwhocodes/object-schema": "^1.2.0", "debug": "^4.1.1", "minimatch": "^3.0.4" } }, "@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "requires": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, "dependencies": { "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } } }, "@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true }, "@jest/console": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "@jest/core": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "dev": true, "requires": { "@jest/console": "^27.5.1", "@jest/reporters": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "jest-changed-files": "^27.5.1", "jest-config": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-resolve-dependencies": "^27.5.1", "jest-runner": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "@jest/environment": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "dev": true, "requires": { "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1" } }, "@jest/fake-timers": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" } }, "@jest/globals": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/types": "^27.5.1", "expect": "^27.5.1" } }, "@jest/reporters": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "dev": true, "requires": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", "jest-haste-map": "^27.5.1", "jest-resolve": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", "terminal-link": "^2.0.0", "v8-to-istanbul": "^8.1.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "@jest/source-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dev": true, "requires": { "callsites": "^3.0.0", "graceful-fs": "^4.2.9", "source-map": "^0.6.0" }, "dependencies": { "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "@jest/test-result": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dev": true, "requires": { "@jest/console": "^27.5.1", "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" } }, "@jest/test-sequencer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "dev": true, "requires": { "@jest/test-result": "^27.5.1", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-runtime": "^27.5.1" } }, "@jest/transform": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "requires": { "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^16.0.0", "chalk": "^4.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "@jonkemp/package-utils": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@jonkemp/package-utils/-/package-utils-1.0.8.tgz", "integrity": "sha512-bIcKnH5YmtTYr7S6J3J86dn/rFiklwRpOqbTOQ9C0WMmR9FKHVb3bxs2UYfqEmNb93O4nbA97sb6rtz33i9SyA==" }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", "dev": true, "requires": { "@jridgewell/set-array": "^1.0.0", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "@jridgewell/resolve-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "dev": true }, "@jridgewell/set-array": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "dev": true }, "@jridgewell/source-map": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", "dev": true, "requires": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" }, "dependencies": { "@jridgewell/gen-mapping": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "dev": true, "requires": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" } } } }, "@jridgewell/sourcemap-codec": { "version": "1.4.14", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "dev": true }, "@jridgewell/trace-mapping": { "version": "0.3.15", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", "dev": true, "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "@nestjs-modules/mailer": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/@nestjs-modules/mailer/-/mailer-1.8.1.tgz", "integrity": "sha512-rNlKzNB+Vr/aRDVcTibj2JCJQcTSE59EBQIpCwh/FkKg0Be1xoF3dQDZ4dmc9X1j396fkIBI5aQ5XAtJNPdxpw==", "requires": { "@types/ejs": "^3.0.3", "@types/pug": "2.0.6", "ejs": "^3.1.2", "glob": "8.0.3", "handlebars": "^4.7.6", "inline-css": "4.0.1", "mjml": "^4.12.0", "preview-email": "3.0.5", "pug": "^3.0.1" } }, "@nestjs/cli": { "version": "8.2.8", "resolved": "https://registry.npmjs.org/@nestjs/cli/-/cli-8.2.8.tgz", "integrity": "sha512-y5Imcw1EY0OxD3POAM7SLUB1rFdn5FjbfSsyJrokjKmXY+i6KcBdbRrv3Ox7aeJ4W7wXuckIXZEUlK6lC52dnA==", "dev": true, "requires": { "@angular-devkit/core": "13.3.6", "@angular-devkit/schematics": "13.3.6", "@angular-devkit/schematics-cli": "13.3.6", "@nestjs/schematics": "^8.0.3", "chalk": "3.0.0", "chokidar": "3.5.3", "cli-table3": "0.6.2", "commander": "4.1.1", "fork-ts-checker-webpack-plugin": "7.2.11", "inquirer": "7.3.3", "node-emoji": "1.11.0", "ora": "5.4.1", "os-name": "4.0.1", "rimraf": "3.0.2", "shelljs": "0.8.5", "source-map-support": "0.5.21", "tree-kill": "1.2.2", "tsconfig-paths": "3.14.1", "tsconfig-paths-webpack-plugin": "3.5.2", "typescript": "4.7.4", "webpack": "5.73.0", "webpack-node-externals": "3.0.0" }, "dependencies": { "acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true }, "acorn-import-assertions": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", "dev": true, "requires": {} }, "typescript": { "version": "4.7.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true }, "webpack": { "version": "5.73.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.73.0.tgz", "integrity": "sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==", "dev": true, "requires": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", "acorn": "^8.4.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.9.3", "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.9", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.3.1", "webpack-sources": "^3.2.3" } } } }, "@nestjs/common": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/common/-/common-8.4.7.tgz", "integrity": "sha512-m/YsbcBal+gA5CFrDpqXqsSfylo+DIQrkFY3qhVIltsYRfu8ct8J9pqsTO6OPf3mvqdOpFGrV5sBjoyAzOBvsw==", "requires": { "axios": "0.27.2", "iterare": "1.2.1", "tslib": "2.4.0", "uuid": "8.3.2" } }, "@nestjs/core": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/core/-/core-8.4.7.tgz", "integrity": "sha512-XB9uexHqzr2xkPo6QSiQWJJttyYYLmvQ5My64cFvWFi7Wk2NIus0/xUNInwX3kmFWB6pF1ab5Y2ZBvWdPwGBhw==", "requires": { "@nuxtjs/opencollective": "0.3.2", "fast-safe-stringify": "2.1.1", "iterare": "1.2.1", "object-hash": "3.0.0", "path-to-regexp": "3.2.0", "tslib": "2.4.0", "uuid": "8.3.2" } }, "@nestjs/jwt": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/@nestjs/jwt/-/jwt-8.0.1.tgz", "integrity": "sha512-9WGfgngX8aclC/MC+CH35Ooo4iPVKc+7xLXaBV6o4ty8g2uZdPomry7cSdK/e6Lv623O/84WapThnPoAtW/jvA==", "requires": { "@types/jsonwebtoken": "8.5.8", "jsonwebtoken": "8.5.1" } }, "@nestjs/mapped-types": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@nestjs/mapped-types/-/mapped-types-1.1.0.tgz", "integrity": "sha512-+2kSly4P1QI+9eGt+/uGyPdEG1hVz7nbpqPHWZVYgoqz8eOHljpXPag+UCVRw9zo2XCu4sgNUIGe8Uk0+OvUQg==", "requires": {} }, "@nestjs/passport": { "version": "8.2.2", "resolved": "https://registry.npmjs.org/@nestjs/passport/-/passport-8.2.2.tgz", "integrity": "sha512-Ytbn8j7WZ4INmEntOpdJY1isTgdQqZkx5ADz8zsZ5wAp0t8tc5GF/A+GlXlmn9/yRPwZHSbmHpv7Qt2EIiNnrw==", "requires": {} }, "@nestjs/platform-express": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/platform-express/-/platform-express-8.4.7.tgz", "integrity": "sha512-lPE5Ltg2NbQGRQIwXWY+4cNrXhJdycbxFDQ8mNxSIuv+LbrJBIdEB/NONk+LLn9N/8d2+I2LsIETGQrPvsejBg==", "requires": { "body-parser": "1.20.0", "cors": "2.8.5", "express": "4.18.1", "multer": "1.4.4-lts.1", "tslib": "2.4.0" } }, "@nestjs/schedule": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/@nestjs/schedule/-/schedule-2.1.0.tgz", "integrity": "sha512-4Xaw56WiW3VsxEPPnj/iDtfjcO+sUZyYAeRxD0gnF5havncxjAnv52Iw7UH3DuzzUA784xPGgGje3Fq0Gu925g==", "requires": { "cron": "2.0.0", "uuid": "8.3.2" } }, "@nestjs/schematics": { "version": "8.0.11", "resolved": "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.11.tgz", "integrity": "sha512-W/WzaxgH5aE01AiIErE9QrQJ73VR/M/8p8pq0LZmjmNcjZqU5kQyOWUxZg13WYfSpJdOa62t6TZRtFDmgZPoIg==", "dev": true, "requires": { "@angular-devkit/core": "13.3.5", "@angular-devkit/schematics": "13.3.5", "fs-extra": "10.1.0", "jsonc-parser": "3.0.0", "pluralize": "8.0.0" }, "dependencies": { "@angular-devkit/core": { "version": "13.3.5", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.5.tgz", "integrity": "sha512-w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ==", "dev": true, "requires": { "ajv": "8.9.0", "ajv-formats": "2.1.1", "fast-json-stable-stringify": "2.1.0", "magic-string": "0.25.7", "rxjs": "6.6.7", "source-map": "0.7.3" } }, "@angular-devkit/schematics": { "version": "13.3.5", "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.5.tgz", "integrity": "sha512-0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w==", "dev": true, "requires": { "@angular-devkit/core": "13.3.5", "jsonc-parser": "3.0.0", "magic-string": "0.25.7", "ora": "5.4.1", "rxjs": "6.6.7" } }, "rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" } }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "@nestjs/sequelize": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/@nestjs/sequelize/-/sequelize-8.0.1.tgz", "integrity": "sha512-nO1Pipvl1Msvb3h0wQusbIDDz5713Qlc4EIZFaVenNXwktbuPNqbmbNlclWmfBhnJNjs9cOWWDLPE1wm7uvlqQ==", "requires": { "uuid": "8.3.2" } }, "@nestjs/testing": { "version": "8.4.7", "resolved": "https://registry.npmjs.org/@nestjs/testing/-/testing-8.4.7.tgz", "integrity": "sha512-aedpeJFicTBeiTCvJWUG45WMMS53f5eu8t2fXsfjsU1t+WdDJqYcZyrlCzA4dL1B7MfbqaTURdvuVVHTmJO8ag==", "dev": true, "requires": { "tslib": "2.4.0" } }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, "@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "@nuxtjs/opencollective": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz", "integrity": "sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==", "requires": { "chalk": "^4.1.0", "consola": "^2.15.0", "node-fetch": "^2.6.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "@selderee/plugin-htmlparser2": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.6.0.tgz", "integrity": "sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==", "requires": { "domhandler": "^4.2.0", "selderee": "^0.6.0" }, "dependencies": { "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } } } }, "@sinonjs/commons": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "requires": { "type-detect": "4.0.8" } }, "@sinonjs/fake-timers": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", "dev": true, "requires": { "@sinonjs/commons": "^1.7.0" } }, "@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" }, "@tsconfig/node10": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", "dev": true }, "@tsconfig/node12": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", "dev": true }, "@tsconfig/node14": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", "dev": true }, "@tsconfig/node16": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", "dev": true }, "@types/babel__core": { "version": "7.1.19", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", "dev": true, "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "@types/babel__generator": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "@types/babel__traverse": { "version": "7.18.2", "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.2.tgz", "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", "dev": true, "requires": { "@babel/types": "^7.3.0" } }, "@types/bcryptjs": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.2.tgz", "integrity": "sha512-LiMQ6EOPob/4yUL66SZzu6Yh77cbzJFYll+ZfaPiPPFswtIlA/Fs1MzdKYA7JApHU49zQTbJGX3PDmCpIdDBRQ==" }, "@types/bluebird": { "version": "3.5.37", "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.37.tgz", "integrity": "sha512-g2qEd+zkfkTEudA2SrMAeAvY7CrFqtbsLILm2dT2VIeKTqMqVzcdfURlvu6FU3srRgbmXN1Srm94pg34EIehww==", "dev": true }, "@types/body-parser": { "version": "1.19.2", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "requires": { "@types/connect": "*", "@types/node": "*" } }, "@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "requires": { "@types/node": "*" } }, "@types/continuation-local-storage": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/@types/continuation-local-storage/-/continuation-local-storage-3.2.4.tgz", "integrity": "sha512-OT32vCVMymU1JMPKDeY0lX3cduAr0Pm/VwIbxygMeDS4lRcv57qYXn9bMwBRcRnEpXKBb/r4xYaZCARTZllP0A==", "dev": true, "requires": { "@types/node": "*" } }, "@types/cookiejar": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.2.tgz", "integrity": "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==", "dev": true }, "@types/cron": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@types/cron/-/cron-2.0.0.tgz", "integrity": "sha512-xZM08fqvwIXgghtPVkSPKNgC+JoMQ2OHazEvyTKnNf7aWu1aB6/4lBbQFrb03Td2cUGG7ITzMv3mFYnMu6xRaQ==", "dev": true, "requires": { "@types/luxon": "*", "@types/node": "*" } }, "@types/debug": { "version": "4.1.7", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", "requires": { "@types/ms": "*" } }, "@types/ejs": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.1.tgz", "integrity": "sha512-RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==", "optional": true }, "@types/eslint": { "version": "8.4.6", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.6.tgz", "integrity": "sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==", "dev": true, "requires": { "@types/estree": "*", "@types/json-schema": "*" } }, "@types/eslint-scope": { "version": "3.7.4", "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { "version": "0.0.51", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true }, "@types/express": { "version": "4.17.14", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", "dev": true, "requires": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.18", "@types/qs": "*", "@types/serve-static": "*" } }, "@types/express-serve-static-core": { "version": "4.17.31", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "dev": true, "requires": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*" } }, "@types/graceful-fs": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "requires": { "@types/node": "*" } }, "@types/istanbul-lib-coverage": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", "dev": true }, "@types/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "*" } }, "@types/istanbul-reports": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "requires": { "@types/istanbul-lib-report": "*" } }, "@types/jest": { "version": "27.5.2", "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", "dev": true, "requires": { "jest-matcher-utils": "^27.0.0", "pretty-format": "^27.0.0" } }, "@types/json-schema": { "version": "7.0.11", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true }, "@types/jsonwebtoken": { "version": "8.5.8", "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz", "integrity": "sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==", "requires": { "@types/node": "*" } }, "@types/lodash": { "version": "4.14.185", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz", "integrity": "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==", "dev": true }, "@types/luxon": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@types/luxon/-/luxon-3.1.0.tgz", "integrity": "sha512-gCd/HcCgjqSxfMrgtqxCgYk/22NBQfypwFUG7ZAyG/4pqs51WLTcUzVp1hqTbieDYeHS3WoVEh2Yv/2l+7B0Vg==", "dev": true }, "@types/mime": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", "dev": true }, "@types/ms": { "version": "0.7.31", "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "@types/multer": { "version": "1.4.7", "resolved": "https://registry.npmjs.org/@types/multer/-/multer-1.4.7.tgz", "integrity": "sha512-/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA==", "dev": true, "requires": { "@types/express": "*" } }, "@types/node": { "version": "16.11.62", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.62.tgz", "integrity": "sha512-K/ggecSdwAAy2NUW4WKmF4Rc03GKbsfP+k326UWgckoS+Rzd2PaWbjk76dSmqdLQvLTJAO9axiTUJ6488mFsYQ==" }, "@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, "@types/passport": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@types/passport/-/passport-1.0.11.tgz", "integrity": "sha512-pz1cx9ptZvozyGKKKIPLcVDVHwae4hrH5d6g5J+DkMRRjR3cVETb4jMabhXAUbg3Ov7T22nFHEgaK2jj+5CBpw==", "dev": true, "requires": { "@types/express": "*" } }, "@types/passport-local": { "version": "1.0.34", "resolved": "https://registry.npmjs.org/@types/passport-local/-/passport-local-1.0.34.tgz", "integrity": "sha512-PSc07UdYx+jhadySxxIYWuv6sAnY5e+gesn/5lkPKfBeGuIYn9OPR+AAEDq73VRUh6NBTpvE/iPE62rzZUslog==", "dev": true, "requires": { "@types/express": "*", "@types/passport": "*", "@types/passport-strategy": "*" } }, "@types/passport-strategy": { "version": "0.2.35", "resolved": "https://registry.npmjs.org/@types/passport-strategy/-/passport-strategy-0.2.35.tgz", "integrity": "sha512-o5D19Jy2XPFoX2rKApykY15et3Apgax00RRLf0RUotPDUsYrQa7x4howLYr9El2mlUApHmCMv5CZ1IXqKFQ2+g==", "dev": true, "requires": { "@types/express": "*", "@types/passport": "*" } }, "@types/prettier": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.1.tgz", "integrity": "sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==", "dev": true }, "@types/pug": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.6.tgz", "integrity": "sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==", "optional": true }, "@types/qs": { "version": "6.9.7", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, "@types/range-parser": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "dev": true }, "@types/sequelize": { "version": "4.28.14", "resolved": "https://registry.npmjs.org/@types/sequelize/-/sequelize-4.28.14.tgz", "integrity": "sha512-O8lTJ8YPVVaoY9xjduchDlo0MOS3w262pro2H1QMuFIo/kc/p1elP/UxLOTP2wcVO2cFd6Gvghg9ZSAiJi0GLA==", "dev": true, "requires": { "@types/bluebird": "*", "@types/continuation-local-storage": "*", "@types/lodash": "*", "@types/validator": "*" } }, "@types/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", "dev": true, "requires": { "@types/mime": "*", "@types/node": "*" } }, "@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, "@types/superagent": { "version": "4.1.15", "resolved": "https://registry.npmjs.org/@types/superagent/-/superagent-4.1.15.tgz", "integrity": "sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==", "dev": true, "requires": { "@types/cookiejar": "*", "@types/node": "*" } }, "@types/supertest": { "version": "2.0.12", "resolved": "https://registry.npmjs.org/@types/supertest/-/supertest-2.0.12.tgz", "integrity": "sha512-X3HPWTwXRerBZS7Mo1k6vMVR1Z6zmJcDVn5O/31whe0tnjE4te6ZJSJGq1RiqHPjzPdMTfjCFogDJmwng9xHaQ==", "dev": true, "requires": { "@types/superagent": "*" } }, "@types/validator": { "version": "13.7.7", "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.7.tgz", "integrity": "sha512-jiEw2kTUJ8Jsh4A1K4b5Pkjj9Xz6FktLLOQ36ZVLRkmxFbpTvAV2VRoKMojz8UlZxNg/2dZqzpigH4JYn1bkQg==" }, "@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "requires": { "@types/yargs-parser": "*" } }, "@types/yargs-parser": { "version": "21.0.0", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, "@typescript-eslint/eslint-plugin": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", "dev": true, "requires": { "@typescript-eslint/experimental-utils": "4.33.0", "@typescript-eslint/scope-manager": "4.33.0", "debug": "^4.3.1", "functional-red-black-tree": "^1.0.1", "ignore": "^5.1.8", "regexpp": "^3.1.0", "semver": "^7.3.5", "tsutils": "^3.21.0" } }, "@typescript-eslint/experimental-utils": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", "dev": true, "requires": { "@types/json-schema": "^7.0.7", "@typescript-eslint/scope-manager": "4.33.0", "@typescript-eslint/types": "4.33.0", "@typescript-eslint/typescript-estree": "4.33.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0" } }, "@typescript-eslint/parser": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", "dev": true, "requires": { "@typescript-eslint/scope-manager": "4.33.0", "@typescript-eslint/types": "4.33.0", "@typescript-eslint/typescript-estree": "4.33.0", "debug": "^4.3.1" } }, "@typescript-eslint/scope-manager": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", "dev": true, "requires": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0" } }, "@typescript-eslint/types": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", "dev": true }, "@typescript-eslint/typescript-estree": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", "dev": true, "requires": { "@typescript-eslint/types": "4.33.0", "@typescript-eslint/visitor-keys": "4.33.0", "debug": "^4.3.1", "globby": "^11.0.3", "is-glob": "^4.0.1", "semver": "^7.3.5", "tsutils": "^3.21.0" } }, "@typescript-eslint/visitor-keys": { "version": "4.33.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", "dev": true, "requires": { "@typescript-eslint/types": "4.33.0", "eslint-visitor-keys": "^2.0.0" } }, "@webassemblyjs/ast": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, "requires": { "@webassemblyjs/helper-numbers": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, "@webassemblyjs/floating-point-hex-parser": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", "dev": true }, "@webassemblyjs/helper-api-error": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", "dev": true }, "@webassemblyjs/helper-buffer": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", "dev": true }, "@webassemblyjs/helper-numbers": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "dev": true, "requires": { "@webassemblyjs/floating-point-hex-parser": "1.11.1", "@webassemblyjs/helper-api-error": "1.11.1", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "dev": true }, "@webassemblyjs/helper-wasm-section": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "dev": true, "requires": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/wasm-gen": "1.11.1" } }, "@webassemblyjs/ieee754": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "dev": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", "dev": true }, "@webassemblyjs/wasm-edit": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, "requires": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/helper-wasm-section": "1.11.1", "@webassemblyjs/wasm-gen": "1.11.1", "@webassemblyjs/wasm-opt": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", "@webassemblyjs/wast-printer": "1.11.1" } }, "@webassemblyjs/wasm-gen": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "dev": true, "requires": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/ieee754": "1.11.1", "@webassemblyjs/leb128": "1.11.1", "@webassemblyjs/utf8": "1.11.1" } }, "@webassemblyjs/wasm-opt": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", "dev": true, "requires": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", "@webassemblyjs/wasm-gen": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1" } }, "@webassemblyjs/wasm-parser": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "dev": true, "requires": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-api-error": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", "@webassemblyjs/ieee754": "1.11.1", "@webassemblyjs/leb128": "1.11.1", "@webassemblyjs/utf8": "1.11.1" } }, "@webassemblyjs/wast-printer": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", "dev": true, "requires": { "@webassemblyjs/ast": "1.11.1", "@xtuc/long": "4.2.2" } }, "@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true }, "@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, "abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", "dev": true }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, "accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "requires": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" }, "acorn-globals": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "requires": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" } }, "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "requires": {} }, "acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true }, "agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "requires": { "debug": "4" } }, "ajv": { "version": "8.9.0", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz", "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }, "ajv-formats": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "requires": { "ajv": "^8.0.0" } }, "ansi-colors": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "requires": { "type-fest": "^0.21.3" }, "dependencies": { "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true } } }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "requires": { "color-convert": "^2.0.1" } }, "anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "append-field": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, "arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "requires": { "sprintf-js": "~1.0.2" } }, "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, "array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, "asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, "asn1": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "optional": true, "requires": { "safer-buffer": "~2.1.0" } }, "assert-never": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz", "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==" }, "assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "optional": true }, "ast-types": { "version": "0.13.4", "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "requires": { "tslib": "^2.0.1" } }, "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, "async": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "optional": true }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "optional": true }, "aws4": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "optional": true }, "axios": { "version": "0.27.2", "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", "requires": { "follow-redirects": "^1.14.9", "form-data": "^4.0.0" } }, "babel-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dev": true, "requires": { "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" } }, "babel-plugin-jest-hoist": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dev": true, "requires": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", "@types/babel__core": "^7.0.0", "@types/babel__traverse": "^7.0.6" } }, "babel-preset-current-node-syntax": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "requires": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", "@babel/plugin-syntax-class-properties": "^7.8.3", "@babel/plugin-syntax-import-meta": "^7.8.3", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.8.3", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-top-level-await": "^7.8.3" } }, "babel-preset-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dev": true, "requires": { "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" } }, "babel-walk": { "version": "3.0.0-canary-5", "resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz", "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==", "requires": { "@babel/types": "^7.9.6" } }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true }, "batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" }, "bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "optional": true, "requires": { "tweetnacl": "^0.14.3" } }, "bcryptjs": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" }, "binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" }, "bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "requires": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" }, "dependencies": { "readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } } } }, "body-parser": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "requires": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.10.3", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "dependencies": { "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" } }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } } }, "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "requires": { "fill-range": "^7.0.1" } }, "browser-process-hrtime": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, "browserslist": { "version": "4.21.4", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, "requires": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", "node-releases": "^2.0.6", "update-browserslist-db": "^1.0.9" } }, "bs-logger": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "requires": { "fast-json-stable-stringify": "2.x" } }, "bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "requires": { "node-int64": "^0.4.0" } }, "buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "requires": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "buffer-crc32": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "optional": true }, "buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "busboy": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "requires": { "streamsearch": "^1.1.0" } }, "bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "requires": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" } }, "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, "camel-case": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", "requires": { "no-case": "^2.2.0", "upper-case": "^1.1.1" } }, "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "caniuse-lite": { "version": "1.0.30001412", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001412.tgz", "integrity": "sha512-+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA==", "dev": true }, "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", "optional": true }, "chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, "character-parser": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz", "integrity": "sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==", "requires": { "is-regex": "^1.0.3" } }, "chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, "cheerio": { "version": "1.0.0-rc.12", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", "requires": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", "domhandler": "^5.0.3", "domutils": "^3.0.1", "htmlparser2": "^8.0.1", "parse5": "^7.0.0", "parse5-htmlparser2-tree-adapter": "^7.0.0" } }, "cheerio-select": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "requires": { "boolbase": "^1.0.0", "css-select": "^5.1.0", "css-what": "^6.1.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3", "domutils": "^3.0.1" } }, "chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "requires": { "anymatch": "~3.1.2", "braces": "~3.0.2", "fsevents": "~2.3.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" } }, "chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true }, "ci-info": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.4.0.tgz", "integrity": "sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug==", "dev": true }, "cjs-module-lexer": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, "class-transformer": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/class-transformer/-/class-transformer-0.5.1.tgz", "integrity": "sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==" }, "class-validator": { "version": "0.13.2", "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.13.2.tgz", "integrity": "sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==", "requires": { "libphonenumber-js": "^1.9.43", "validator": "^13.7.0" } }, "clean-css": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", "requires": { "source-map": "~0.6.0" }, "dependencies": { "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "requires": { "restore-cursor": "^3.1.0" } }, "cli-spinners": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", "dev": true }, "cli-table3": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz", "integrity": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==", "dev": true, "requires": { "@colors/colors": "1.5.0", "string-width": "^4.2.0" } }, "cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true }, "cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "requires": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "clone": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true }, "collect-v8-coverage": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "requires": { "delayed-stream": "~1.0.0" } }, "commander": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true }, "component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }, "config-chain": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "requires": { "ini": "^1.3.4", "proto-list": "~1.2.1" } }, "consola": { "version": "2.15.3", "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" }, "constantinople": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz", "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==", "requires": { "@babel/parser": "^7.6.0", "@babel/types": "^7.6.1" } }, "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "requires": { "safe-buffer": "5.2.1" } }, "content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, "convert-source-map": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "requires": { "safe-buffer": "~5.1.1" }, "dependencies": { "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true } } }, "cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "cookiejar": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz", "integrity": "sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==" }, "core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "requires": { "object-assign": "^4", "vary": "^1" } }, "cosmiconfig": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", "parse-json": "^5.0.0", "path-type": "^4.0.0", "yaml": "^1.10.0" } }, "create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, "cron": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/cron/-/cron-2.0.0.tgz", "integrity": "sha512-RPeRunBCFr/WEo7WLp8Jnm45F/ziGJiHVvVQEBSDTSGu6uHW49b2FOP2O14DcXlGJRLhwE7TIoDzHHK4KmlL6g==", "requires": { "luxon": "^1.23.x" } }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "css-rules": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/css-rules/-/css-rules-1.1.0.tgz", "integrity": "sha512-7L6krLIRwAEVCaVKyCEL6PQjQXUmf8DM9bWYKutlZd0DqOe0SiKIGQOkFb59AjDBb+3If7SDp3X8UlzDAgYSow==", "requires": { "cssom": "^0.5.0" } }, "css-select": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "requires": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, "css-what": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" }, "cssom": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" }, "cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "requires": { "cssom": "~0.3.6" }, "dependencies": { "cssom": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true } } }, "dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "optional": true, "requires": { "assert-plus": "^1.0.0" } }, "data-uri-to-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" }, "data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "requires": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.0.0" } }, "dayjs": { "version": "1.11.5", "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.5.tgz", "integrity": "sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==" }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "decimal.js": { "version": "10.4.1", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz", "integrity": "sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==", "dev": true }, "dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" }, "defaults": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", "dev": true, "requires": { "clone": "^1.0.2" } }, "degenerator": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.2.tgz", "integrity": "sha512-c0mef3SNQo56t6urUU6tdQAs+ThoD0o9B9MJ8HEt7NQcGEILCRFqQb7ZbP9JAv+QF1Ky5plydhMR/IrqWDm+TQ==", "requires": { "ast-types": "^0.13.2", "escodegen": "^1.8.1", "esprima": "^4.0.0", "vm2": "^3.9.8" }, "dependencies": { "escodegen": { "version": "1.14.3", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "requires": { "esprima": "^4.0.1", "estraverse": "^4.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1", "source-map": "~0.6.1" } }, "levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "requires": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" } }, "optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "requires": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" } }, "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "optional": true }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "requires": { "prelude-ls": "~1.1.2" } } } }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" }, "denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" }, "depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" }, "destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" }, "detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true }, "detect-node": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" }, "dezalgo": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz", "integrity": "sha512-K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ==", "requires": { "asap": "^2.0.0", "wrappy": "1" } }, "diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true }, "diff-sequences": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "dev": true }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { "path-type": "^4.0.0" } }, "discontinuous-range": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": { "esutils": "^2.0.2" } }, "doctypes": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz", "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==" }, "dom-serializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "requires": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }, "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" }, "domexception": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "requires": { "webidl-conversions": "^5.0.0" }, "dependencies": { "webidl-conversions": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true } } }, "domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "requires": { "domelementtype": "^2.3.0" } }, "domutils": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "requires": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.1" } }, "dotenv": { "version": "16.0.2", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz", "integrity": "sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA==" }, "dottie": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.2.tgz", "integrity": "sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg==" }, "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "optional": true, "requires": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, "ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "requires": { "safe-buffer": "^5.0.1" } }, "editorconfig": { "version": "0.15.3", "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", "requires": { "commander": "^2.19.0", "lru-cache": "^4.1.5", "semver": "^5.6.0", "sigmund": "^1.0.1" }, "dependencies": { "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "ejs": { "version": "3.1.8", "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", "optional": true, "requires": { "jake": "^10.8.5" } }, "electron-to-chromium": { "version": "1.4.265", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.265.tgz", "integrity": "sha512-38KaYBNs0oCzWCpr6j7fY/W9vF0vSp4tKFIshQTgdZMhUpkxgotkQgjJP6iGMdmlsgMs3i0/Hkko4UXLTrkYVQ==", "dev": true }, "emittery": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", "dev": true }, "emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" }, "encoding-japanese": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encoding-japanese/-/encoding-japanese-2.0.0.tgz", "integrity": "sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==" }, "end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { "once": "^1.4.0" } }, "enhanced-resolve": { "version": "5.10.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", "dev": true, "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "enquirer": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "requires": { "ansi-colors": "^4.1.1" } }, "entities": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==" }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { "is-arrayish": "^0.2.1" } }, "es-module-lexer": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, "es6-promise": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", "optional": true }, "escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" }, "escape-goat": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-3.0.0.tgz", "integrity": "sha512-w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw==" }, "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, "escodegen": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, "requires": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1", "source-map": "~0.6.1" }, "dependencies": { "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, "levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "dev": true, "requires": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" } }, "optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "requires": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" } }, "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "dev": true }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "optional": true }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "dev": true, "requires": { "prelude-ls": "~1.1.2" } } } }, "eslint": { "version": "7.32.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", "dev": true, "requires": { "@babel/code-frame": "7.12.11", "@eslint/eslintrc": "^0.4.3", "@humanwhocodes/config-array": "^0.5.0", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.0.1", "doctrine": "^3.0.0", "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", "eslint-scope": "^5.1.1", "eslint-utils": "^2.1.0", "eslint-visitor-keys": "^2.0.0", "espree": "^7.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^5.1.2", "globals": "^13.6.0", "ignore": "^4.0.6", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "js-yaml": "^3.13.1", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", "progress": "^2.0.0", "regexpp": "^3.1.0", "semver": "^7.2.1", "strip-ansi": "^6.0.0", "strip-json-comments": "^3.1.0", "table": "^6.0.9", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, "dependencies": { "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "eslint-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "requires": { "eslint-visitor-keys": "^1.1.0" }, "dependencies": { "eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true } } }, "ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true } } }, "eslint-config-prettier": { "version": "8.5.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, "requires": {} }, "eslint-plugin-prettier": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", "dev": true, "requires": { "prettier-linter-helpers": "^1.0.0" } }, "eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "eslint-utils": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "requires": { "eslint-visitor-keys": "^2.0.0" } }, "eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true }, "espree": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "dev": true, "requires": { "acorn": "^7.4.0", "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^1.3.0" }, "dependencies": { "eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true } } }, "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esquery": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "requires": { "estraverse": "^5.1.0" }, "dependencies": { "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true } } }, "esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { "estraverse": "^5.2.0" }, "dependencies": { "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true } } }, "estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" }, "events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true }, "execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, "expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "jest-get-type": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1" } }, "express": { "version": "4.18.1", "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.0", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.10.3", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "dependencies": { "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" } }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" } } }, "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "optional": true }, "external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "requires": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" } }, "extract-css": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/extract-css/-/extract-css-3.0.0.tgz", "integrity": "sha512-ZM2IuJkX79gys2PMN12yWrHvyK2sw1ReCdCtp/RAdgcFaBui+wY3Bsll9Em2LJXzKI8BYEBZLm2UczqyBCXSjQ==", "requires": { "batch": "^0.6.1", "href-content": "^2.0.1", "list-stylesheets": "^2.0.0", "style-data": "^2.0.0" } }, "extract-zip": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", "optional": true, "requires": { "concat-stream": "^1.6.2", "debug": "^2.6.9", "mkdirp": "^0.5.4", "yauzl": "^2.10.0" }, "dependencies": { "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "optional": true, "requires": { "ms": "2.0.0" } }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "optional": true } } }, "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "optional": true }, "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "devOptional": true }, "fast-diff": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", "dev": true }, "fast-glob": { "version": "3.2.12", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "devOptional": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" }, "fast-safe-stringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" }, "fastq": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "requires": { "reusify": "^1.0.4" } }, "fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "requires": { "bser": "2.1.1" } }, "fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "optional": true, "requires": { "pend": "~1.2.0" } }, "figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "requires": { "escape-string-regexp": "^1.0.5" }, "dependencies": { "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true } } }, "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { "flat-cache": "^3.0.4" } }, "file-size": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-size/-/file-size-1.0.0.tgz", "integrity": "sha512-tLIdonWTpABkU6Axg2yGChYdrOsy4V8xcm0IcyAP8fSsu6jiXLm5pgs083e4sq5fzNRZuAYolUbZyYmPvCKfwQ==" }, "file-uri-to-path": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==" }, "filelist": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "optional": true, "requires": { "minimatch": "^5.0.1" }, "dependencies": { "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "optional": true, "requires": { "balanced-match": "^1.0.0" } }, "minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", "optional": true, "requires": { "brace-expansion": "^2.0.1" } } } }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "requires": { "to-regex-range": "^5.0.1" } }, "finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" }, "dependencies": { "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" } }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } } }, "find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }, "flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "requires": { "flatted": "^3.1.0", "rimraf": "^3.0.2" } }, "flat-util": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/flat-util/-/flat-util-1.1.9.tgz", "integrity": "sha512-BOTMw/6rbbxVjv5JQvwgGMc2/6wWGd2VeyTvnzvvE49VRjS0tTxLbry/QVP1yPw8SaAOBYsnixmzruXoqjdUHA==" }, "flatted": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, "follow-redirects": { "version": "1.15.2", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "optional": true }, "fork-ts-checker-webpack-plugin": { "version": "7.2.11", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.11.tgz", "integrity": "sha512-2e5+NyTUTE1Xq4fWo7KFEQblCaIvvINQwUX3jRmEGlgCTc1Ecqw/975EfQrQ0GEraxJTnp8KB9d/c8hlCHUMJA==", "dev": true, "requires": { "@babel/code-frame": "^7.16.7", "chalk": "^4.1.2", "chokidar": "^3.5.3", "cosmiconfig": "^7.0.1", "deepmerge": "^4.2.2", "fs-extra": "^10.0.0", "memfs": "^3.4.1", "minimatch": "^3.0.4", "schema-utils": "^3.1.1", "semver": "^7.3.5", "tapable": "^2.2.1" }, "dependencies": { "@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "requires": { "@babel/highlight": "^7.18.6" } }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, "formidable": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/formidable/-/formidable-2.0.1.tgz", "integrity": "sha512-rjTMNbp2BpfQShhFbR3Ruk3qk2y9jKpvMW78nJgx8QKtxjDVrwbZG+wvDOmVbifHyOUOQJXxqEy6r0faRrPzTQ==", "requires": { "dezalgo": "1.0.3", "hexoid": "1.0.0", "once": "1.4.0", "qs": "6.9.3" }, "dependencies": { "qs": { "version": "6.9.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.3.tgz", "integrity": "sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==" } } }, "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" }, "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } }, "fs-monkey": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, "fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "optional": true }, "ftp": { "version": "0.3.10", "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", "requires": { "readable-stream": "1.1.x", "xregexp": "2.0.0" }, "dependencies": { "isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", "isarray": "0.0.1", "string_decoder": "~0.10.x" } }, "string_decoder": { "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" } } }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, "generate-function": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", "requires": { "is-property": "^1.0.2" } }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "get-intrinsic": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" } }, "get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, "get-uri": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", "requires": { "@tootallnate/once": "1", "data-uri-to-buffer": "3", "debug": "4", "file-uri-to-path": "2", "fs-extra": "^8.1.0", "ftp": "^0.3.10" }, "dependencies": { "fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }, "jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "requires": { "graceful-fs": "^4.1.6" } }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" } } }, "getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "optional": true, "requires": { "assert-plus": "^1.0.0" } }, "glob": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^5.0.1", "once": "^1.3.0" }, "dependencies": { "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "requires": { "balanced-match": "^1.0.0" } }, "minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", "requires": { "brace-expansion": "^2.0.1" } } } }, "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "requires": { "is-glob": "^4.0.1" } }, "glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, "globals": { "version": "13.17.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", "dev": true, "requires": { "type-fest": "^0.20.2" } }, "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }, "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "handlebars": { "version": "4.7.7", "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "requires": { "minimist": "^1.2.5", "neo-async": "^2.6.0", "source-map": "^0.6.1", "uglify-js": "^3.1.4", "wordwrap": "^1.0.0" }, "dependencies": { "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" } } }, "har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", "optional": true }, "har-validator": { "version": "5.1.5", "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "optional": true, "requires": { "ajv": "^6.12.3", "har-schema": "^2.0.0" }, "dependencies": { "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "optional": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "optional": true } } }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { "function-bind": "^1.1.1" } }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, "has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "requires": { "has-symbols": "^1.0.2" } }, "hasha": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", "integrity": "sha512-jZ38TU/EBiGKrmyTNNZgnvCZHNowiRI4+w/I9noMlekHTZH3KyGgvJLmhSgykeAQ9j2SYPDosM0Bg3wHfzibAQ==", "optional": true, "requires": { "is-stream": "^1.0.1", "pinkie-promise": "^2.0.0" }, "dependencies": { "is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", "optional": true } } }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" }, "hexoid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz", "integrity": "sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==" }, "href-content": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/href-content/-/href-content-2.0.1.tgz", "integrity": "sha512-5uiAmBCvzCFVu70kli3Hp0BONbAOfwGqR7jKolV+bAh174sIAZBL8DHfg5SnxAhId2mQmYgyL7Y62msnWJ34Xg==", "requires": { "remote-content": "^3.0.0" } }, "html-encoding-sniffer": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "requires": { "whatwg-encoding": "^1.0.5" } }, "html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, "html-minifier": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz", "integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==", "requires": { "camel-case": "^3.0.0", "clean-css": "^4.2.1", "commander": "^2.19.0", "he": "^1.2.0", "param-case": "^2.1.1", "relateurl": "^0.2.7", "uglify-js": "^3.5.1" }, "dependencies": { "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" } } }, "html-pdf": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/html-pdf/-/html-pdf-3.0.1.tgz", "integrity": "sha512-CKNSacmQn+CKJ2GNfT4UYKaPy/T3Ndj82yJ2aju/UPmnvWNjIpyumqRqkFU0mwT6BTHBFhFGTnXN8dBn4Bdj0Q==", "requires": { "phantomjs-prebuilt": "^2.1.16" } }, "html-to-text": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/html-to-text/-/html-to-text-8.2.0.tgz", "integrity": "sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ==", "requires": { "@selderee/plugin-htmlparser2": "^0.6.0", "deepmerge": "^4.2.2", "he": "^1.2.0", "htmlparser2": "^6.1.0", "minimist": "^1.2.6", "selderee": "^0.6.0" }, "dependencies": { "dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } }, "domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, "htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } } } }, "htmlparser2": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "requires": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "entities": "^4.3.0" } }, "http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "requires": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "requires": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4" } }, "http-signature": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "optional": true, "requires": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", "sshpk": "^1.7.0" } }, "https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "requires": { "agent-base": "6", "debug": "4" } }, "human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true }, "ignore": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true }, "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "requires": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" } }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, "inflection": { "version": "1.13.4", "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz", "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==" }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "inline-css": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/inline-css/-/inline-css-4.0.1.tgz", "integrity": "sha512-gzumhrp0waBLF5TtwQcm5bviA9ZNURXeNOs2xVSTsX60FWPFlrPJol4HI8yrozZ6V5udWKUT3LS2tMUDMMdi1Q==", "requires": { "cheerio": "^1.0.0-rc.10", "css-rules": "^1.1.0", "extract-css": "^3.0.0", "flat-util": "^1.1.8", "pick-util": "^1.1.4", "slick": "^1.12.2", "specificity": "^0.4.1" } }, "inquirer": { "version": "7.3.3", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.19", "mute-stream": "0.0.8", "run-async": "^2.4.0", "rxjs": "^6.6.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" } }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "interpret": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true }, "ip": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" }, "ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "requires": { "binary-extensions": "^2.0.0" } }, "is-core-module": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", "requires": { "has": "^1.0.3" } }, "is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" }, "is-expression": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz", "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==", "requires": { "acorn": "^7.1.1", "object-assign": "^4.1.1" } }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" }, "is-generator-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "requires": { "is-extglob": "^2.1.1" } }, "is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, "is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, "is-promise": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" }, "is-property": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" }, "is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "devOptional": true }, "is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true }, "is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "requires": { "is-docker": "^2.0.0" } }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "devOptional": true }, "isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "optional": true }, "istanbul-lib-coverage": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true }, "istanbul-lib-instrument": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", "dev": true, "requires": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "requires": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", "supports-color": "^7.1.0" } }, "istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "requires": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, "dependencies": { "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "istanbul-reports": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "requires": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" } }, "iterare": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/iterare/-/iterare-1.2.1.tgz", "integrity": "sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==" }, "jake": { "version": "10.8.5", "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "optional": true, "requires": { "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "optional": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dev": true, "requires": { "@jest/core": "^27.5.1", "import-local": "^3.0.2", "jest-cli": "^27.5.1" } }, "jest-changed-files": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" } }, "jest-circus": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-cli": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dev": true, "requires": { "@jest/core": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", "jest-config": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "prompts": "^2.0.1", "yargs": "^16.2.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-config": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "dev": true, "requires": { "@babel/core": "^7.8.0", "@jest/test-sequencer": "^27.5.1", "@jest/types": "^27.5.1", "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", "graceful-fs": "^4.2.9", "jest-circus": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-get-type": "^27.5.1", "jest-jasmine2": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runner": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "micromatch": "^4.0.4", "parse-json": "^5.2.0", "pretty-format": "^27.5.1", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "jest-diff": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "dev": true, "requires": { "chalk": "^4.0.0", "diff-sequences": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-docblock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "dev": true, "requires": { "detect-newline": "^3.0.0" } }, "jest-each": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, "requires": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-environment-jsdom": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1", "jsdom": "^16.6.0" } }, "jest-environment-node": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" } }, "jest-get-type": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "dev": true }, "jest-haste-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "fsevents": "^2.3.2", "graceful-fs": "^4.2.9", "jest-regex-util": "^27.5.1", "jest-serializer": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" } }, "jest-jasmine2": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "throat": "^6.0.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-leak-detector": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "dev": true, "requires": { "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" } }, "jest-matcher-utils": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dev": true, "requires": { "chalk": "^4.0.0", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-message-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dev": true, "requires": { "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "dependencies": { "@babel/code-frame": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "requires": { "@babel/highlight": "^7.18.6" } }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-mock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/node": "*" } }, "jest-pnp-resolver": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, "requires": {} }, "jest-regex-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true }, "jest-resolve": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-resolve-dependencies": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "dev": true, "requires": { "@jest/types": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-snapshot": "^27.5.1" } }, "jest-runner": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", "dev": true, "requires": { "@jest/console": "^27.5.1", "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", "graceful-fs": "^4.2.9", "jest-docblock": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-leak-detector": "^27.5.1", "jest-message-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runtime": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-runtime": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/globals": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "jest-serializer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "requires": { "@types/node": "*", "graceful-fs": "^4.2.9" } }, "jest-snapshot": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dev": true, "requires": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", "expect": "^27.5.1", "graceful-fs": "^4.2.9", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "natural-compare": "^1.4.0", "pretty-format": "^27.5.1", "semver": "^7.3.2" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-validate": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dev": true, "requires": { "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "leven": "^3.1.0", "pretty-format": "^27.5.1" }, "dependencies": { "camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-watcher": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dev": true, "requires": { "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "jest-util": "^27.5.1", "string-length": "^4.0.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "requires": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "dependencies": { "supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { "has-flag": "^4.0.0" } } } }, "js-beautify": { "version": "1.14.6", "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.6.tgz", "integrity": "sha512-GfofQY5zDp+cuHc+gsEXKPpNw2KbPddreEo35O6jT6i0RVK6LhsoYBhq5TvK4/n74wnA0QbK8gGd+jUZwTMKJw==", "requires": { "config-chain": "^1.1.13", "editorconfig": "^0.15.3", "glob": "^8.0.3", "nopt": "^6.0.0" } }, "js-stringify": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz", "integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==" }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" } }, "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "optional": true }, "jsdom": { "version": "16.7.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "requires": { "abab": "^2.0.5", "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", "data-urls": "^2.0.0", "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", "w3c-hr-time": "^1.0.2", "w3c-xmlserializer": "^2.0.0", "webidl-conversions": "^6.1.0", "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", "ws": "^7.4.6", "xml-name-validator": "^3.0.0" }, "dependencies": { "acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true }, "cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, "form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true } } }, "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "json-schema": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "optional": true }, "json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "optional": true }, "json5": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true }, "jsonc-parser": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", "dev": true }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { "graceful-fs": "^4.1.6", "universalify": "^2.0.0" } }, "jsonwebtoken": { "version": "8.5.1", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", "requires": { "jws": "^3.2.2", "lodash.includes": "^4.3.0", "lodash.isboolean": "^3.0.3", "lodash.isinteger": "^4.0.4", "lodash.isnumber": "^3.0.3", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "lodash.once": "^4.0.0", "ms": "^2.1.1", "semver": "^5.6.0" }, "dependencies": { "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, "jsprim": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "optional": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.4.0", "verror": "1.10.0" } }, "jstransformer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz", "integrity": "sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==", "requires": { "is-promise": "^2.0.0", "promise": "^7.0.1" } }, "juice": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/juice/-/juice-7.0.0.tgz", "integrity": "sha512-AjKQX31KKN+uJs+zaf+GW8mBO/f/0NqSh2moTMyvwBY+4/lXIYTU8D8I2h6BAV3Xnz6GGsbalUyFqbYMe+Vh+Q==", "requires": { "cheerio": "^1.0.0-rc.3", "commander": "^5.1.0", "mensch": "^0.3.4", "slick": "^1.12.2", "web-resource-inliner": "^5.0.0" }, "dependencies": { "commander": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" } } }, "jwa": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "requires": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "jws": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "requires": { "jwa": "^1.4.1", "safe-buffer": "^5.0.1" } }, "kew": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", "integrity": "sha512-IG6nm0+QtAMdXt9KvbgbGdvY50RSrw+U4sGZg+KlrSKPJEwVE5JVoI3d7RWfSMdBQneRheeAOj3lIjX5VL/9RQ==", "optional": true }, "klaw": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", "optional": true, "requires": { "graceful-fs": "^4.1.9" } }, "kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "requires": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "libbase64": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-1.2.1.tgz", "integrity": "sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==" }, "libmime": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/libmime/-/libmime-5.1.0.tgz", "integrity": "sha512-xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==", "requires": { "encoding-japanese": "2.0.0", "iconv-lite": "0.6.3", "libbase64": "1.2.1", "libqp": "1.1.0" }, "dependencies": { "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" } } } }, "libphonenumber-js": { "version": "1.10.13", "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.13.tgz", "integrity": "sha512-b74iyWmwb4GprAUPjPkJ11GTC7KX4Pd3onpJfKxYyY8y9Rbb4ERY47LvCMEDM09WD3thiLDMXtkfDK/AX+zT7Q==" }, "libqp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz", "integrity": "sha512-4Rgfa0hZpG++t1Vi2IiqXG9Ad1ig4QTmtuZF946QJP4bPqOYC78ixUXgz5TW/wE7lNaNKlplSYTxQ+fR2KZ0EA==" }, "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "linkify-it": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.0.tgz", "integrity": "sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==", "requires": { "uc.micro": "^1.0.1" } }, "list-stylesheets": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/list-stylesheets/-/list-stylesheets-2.0.0.tgz", "integrity": "sha512-EMhWosVmqftbB3WZb4JWcS3tVj9rhBpkDqB87HaNdOi5gpFZNC+Od7hHPFSSlB99Qt/HxJZs8atINa/z672EDA==", "requires": { "cheerio": "1.0.0-rc.10", "pick-util": "^1.1.4" }, "dependencies": { "cheerio": { "version": "1.0.0-rc.10", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", "requires": { "cheerio-select": "^1.5.0", "dom-serializer": "^1.3.2", "domhandler": "^4.2.0", "htmlparser2": "^6.1.0", "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", "tslib": "^2.2.0" } }, "cheerio-select": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", "requires": { "css-select": "^4.3.0", "css-what": "^6.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.3.1", "domutils": "^2.8.0" } }, "css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "requires": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" } }, "dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } }, "domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, "htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "parse5-htmlparser2-tree-adapter": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "requires": { "parse5": "^6.0.1" } } } }, "loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "dev": true }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { "p-locate": "^4.1.0" } }, "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash.includes": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" }, "lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" }, "lodash.isinteger": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" }, "lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" }, "lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" }, "lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, "lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" }, "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "requires": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "long": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "peer": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } }, "lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==" }, "lru-cache": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "requires": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" } }, "luxon": { "version": "1.28.0", "resolved": "https://registry.npmjs.org/luxon/-/luxon-1.28.0.tgz", "integrity": "sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ==" }, "macos-release": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.5.0.tgz", "integrity": "sha512-EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g==", "dev": true }, "magic-string": { "version": "0.25.7", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", "dev": true, "requires": { "sourcemap-codec": "^1.4.4" } }, "mailparser": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/mailparser/-/mailparser-3.5.0.tgz", "integrity": "sha512-mdr2DFgz8LKC0/Q6io6znA0HVnzaPFT0a4TTnLeZ7mWHlkfnm227Wxlq7mHh7AgeP32h7gOUpXvyhSfJJIEeyg==", "requires": { "encoding-japanese": "2.0.0", "he": "1.2.0", "html-to-text": "8.2.0", "iconv-lite": "0.6.3", "libmime": "5.1.0", "linkify-it": "4.0.0", "mailsplit": "5.3.2", "nodemailer": "6.7.3", "tlds": "1.231.0" }, "dependencies": { "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "nodemailer": { "version": "6.7.3", "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.3.tgz", "integrity": "sha512-KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g==" } } }, "mailsplit": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/mailsplit/-/mailsplit-5.3.2.tgz", "integrity": "sha512-coES12hhKqagkuBTJoqERX+y9bXNpxbxw3Esd07auuwKYmcagouVlgucyIVRp48fnswMKxcUtLoFn/L1a75ynQ==", "requires": { "libbase64": "1.2.1", "libmime": "5.1.0", "libqp": "1.1.0" } }, "make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { "semver": "^6.0.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { "tmpl": "1.0.5" } }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" }, "mediaquery-text": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mediaquery-text/-/mediaquery-text-1.2.0.tgz", "integrity": "sha512-cJyRqgYQi+hsYhRkyd5le0s4LsEPvOB7r+6X3jdEELNqVlM9mRIgyUPg9BzF+PuTqQH1ZekgIjYVOeWSXWq35Q==", "requires": { "cssom": "^0.5.0" } }, "memfs": { "version": "3.4.7", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", "dev": true, "requires": { "fs-monkey": "^1.0.3" } }, "mensch": { "version": "0.3.4", "resolved": "https://registry.npmjs.org/mensch/-/mensch-0.3.4.tgz", "integrity": "sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==" }, "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" }, "micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { "braces": "^3.0.2", "picomatch": "^2.3.1" } }, "mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" }, "mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" }, "mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "requires": { "mime-db": "1.52.0" } }, "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "mjml": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml/-/mjml-4.13.0.tgz", "integrity": "sha512-OnFKESouLshz8DPFSb6M/dE8GkhiJnoy6LAam5TiLA1anAj24yQ2ZH388LtQoEkvTisqwiTmc9ejDh5ctnFaJQ==", "requires": { "@babel/runtime": "^7.14.6", "mjml-cli": "4.13.0", "mjml-core": "4.13.0", "mjml-migrate": "4.13.0", "mjml-preset-core": "4.13.0", "mjml-validator": "4.13.0" } }, "mjml-accordion": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-accordion/-/mjml-accordion-4.13.0.tgz", "integrity": "sha512-E3yihZW5Oq2p+sWOcr8kWeRTROmiTYOGxB4IOxW/jTycdY07N3FX3e6vuh7Fv3rryHEUaydUQYto3ICVyctI7w==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-body": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-body/-/mjml-body-4.13.0.tgz", "integrity": "sha512-S4HgwAuO9dEsyX9sr6WBf9/xr+H2ASVaLn22aurJm1S2Lvc1wifLPYBQgFmNdCjaesTCNtOMUDpG+Rbnavyaqg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-button": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-button/-/mjml-button-4.13.0.tgz", "integrity": "sha512-3y8IAHCCxh7ESHh1aOOqobZKUgyNxOKAGQ9TlJoyaLpsKUFzkN8nmrD0KXF0ADSuzvhMZ1CdRIJuZ5mjv2TwWQ==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-carousel": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-carousel/-/mjml-carousel-4.13.0.tgz", "integrity": "sha512-ORSY5bEYlMlrWSIKI/lN0Tz3uGltWAjG8DQl2Yr3pwjwOaIzGE+kozrDf+T9xItfiIIbvKajef1dg7B7XgP0zg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-cli": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-cli/-/mjml-cli-4.13.0.tgz", "integrity": "sha512-kAZxpH0QqlTF/CcLzELgKw1ljKRxrmWJ310CJQhbPAxHvwQ/nIb+q82U+zRJAelRPPKjnOb+hSrMRqTgk9rH3w==", "requires": { "@babel/runtime": "^7.14.6", "chokidar": "^3.0.0", "glob": "^7.1.1", "html-minifier": "^4.0.0", "js-beautify": "^1.6.14", "lodash": "^4.17.21", "mjml-core": "4.13.0", "mjml-migrate": "4.13.0", "mjml-parser-xml": "4.13.0", "mjml-validator": "4.13.0", "yargs": "^16.1.0" }, "dependencies": { "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "mjml-column": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-column/-/mjml-column-4.13.0.tgz", "integrity": "sha512-O8FrWKK/bCy9XpKxrKRYWNdgWNaVd4TK4RqMeVI/I70IbnYnc1uf15jnsPMxCBSbT+NyXyk8k7fn099797uwpw==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-core": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-core/-/mjml-core-4.13.0.tgz", "integrity": "sha512-kU5AoVTlZaXR/EDi3ix66xpzUe+kScYus71lBH/wo/B+LZW70GHE1AYWtsog5oJp1MuTHpMFTNuBD/wePeEgWg==", "requires": { "@babel/runtime": "^7.14.6", "cheerio": "1.0.0-rc.10", "detect-node": "2.0.4", "html-minifier": "^4.0.0", "js-beautify": "^1.6.14", "juice": "^7.0.0", "lodash": "^4.17.21", "mjml-migrate": "4.13.0", "mjml-parser-xml": "4.13.0", "mjml-validator": "4.13.0" }, "dependencies": { "cheerio": { "version": "1.0.0-rc.10", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", "requires": { "cheerio-select": "^1.5.0", "dom-serializer": "^1.3.2", "domhandler": "^4.2.0", "htmlparser2": "^6.1.0", "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", "tslib": "^2.2.0" } }, "cheerio-select": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", "requires": { "css-select": "^4.3.0", "css-what": "^6.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.3.1", "domutils": "^2.8.0" } }, "css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "requires": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" } }, "dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" } }, "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } }, "domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" } }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, "htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, "parse5-htmlparser2-tree-adapter": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "requires": { "parse5": "^6.0.1" } } } }, "mjml-divider": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-divider/-/mjml-divider-4.13.0.tgz", "integrity": "sha512-ooPCwfmxEC+wJduqObYezMp7W5UCHjL9Y1LPB5FGna2FrOejgfd6Ix3ij8Wrmycmlol7E2N4D7c5NDH5DbRCJg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-group": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-group/-/mjml-group-4.13.0.tgz", "integrity": "sha512-U7E8m8aaoAE/dMqjqXPjjrKcwO36B4cquAy9ASldECrIZJBcpFYO6eYf5yLXrNCUM2P0id8pgVjrUq23s00L7Q==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head/-/mjml-head-4.13.0.tgz", "integrity": "sha512-sL2qQuoVALXBCiemu4DPo9geDr8DuUdXVJxm+4nd6k5jpLCfSDmFlNhgSsLPzsYn7VEac3/sxsjLtomQ+6/BHg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-attributes": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-attributes/-/mjml-head-attributes-4.13.0.tgz", "integrity": "sha512-haggCafno+0lQylxJStkINCVCPMwfTpwE6yjCHeGOpQl/TkoNmjNkDr7DEEbNTZbt4Ekg070lQFn7clDy38EoA==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-breakpoint": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-breakpoint/-/mjml-head-breakpoint-4.13.0.tgz", "integrity": "sha512-D2iPDeUKQK1+rYSNa2HGOvgfPxZhNyndTG0iBEb/FxdGge2hbeDCZEN0mwDYE3wWB+qSBqlCuMI+Vr4pEjZbKg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-font": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-font/-/mjml-head-font-4.13.0.tgz", "integrity": "sha512-mYn8aWnbrEap5vX2b4662hkUv6WifcYzYn++Yi6OHrJQi55LpzcU+myAGpfQEXXrpU8vGwExMTFKsJq5n2Kaow==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-html-attributes": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-html-attributes/-/mjml-head-html-attributes-4.13.0.tgz", "integrity": "sha512-m30Oro297+18Zou/1qYjagtmCOWtYXeoS38OABQ5zOSzMItE3TcZI9JNcOueIIWIyFCETe8StrTAKcQ2GHwsDw==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-preview": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-preview/-/mjml-head-preview-4.13.0.tgz", "integrity": "sha512-v0K/NocjFCbaoF/0IMVNmiqov91HxqT07vNTEl0Bt9lKFrTKVC01m1S4K7AB78T/bEeJ/HwmNjr1+TMtVNGGow==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-style": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-style/-/mjml-head-style-4.13.0.tgz", "integrity": "sha512-tBa33GL9Atn5bAM2UwE+uxv4rI29WgX/e5lXX+5GWlsb4thmiN6rxpFTNqBqWbBNRbZk4UEZF78M7Da8xC1ZGQ==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-head-title": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-head-title/-/mjml-head-title-4.13.0.tgz", "integrity": "sha512-Mq0bjuZXJlwxfVcjuYihQcigZSDTKeQaG3nORR1D0jsOH2BXU4XgUK1UOcTXn2qCBIfRoIMq7rfzYs+L0CRhdw==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-hero": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-hero/-/mjml-hero-4.13.0.tgz", "integrity": "sha512-aWEOScdrhyjwdKBWG4XQaElRHP8LU5PtktkpMeBXa4yxrxNs25qRnDqMNkjSrnnmFKWZmQ166tfboY6RBNf0UA==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-image": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-image/-/mjml-image-4.13.0.tgz", "integrity": "sha512-agMmm2wRZTIrKwrUnYFlnAbtrKYSP0R2en+Vf92HPspAwmaw3/AeOW/QxmSiMhfGf+xsEJyzVvR/nd33jbT3sg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-migrate": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-migrate/-/mjml-migrate-4.13.0.tgz", "integrity": "sha512-I1euHiAyNpaz+B5vH+Z4T+hg/YtI5p3PqQ3/zTLv8gi24V6BILjTaftWhH5+3R/gQkQhH0NUaWNnRmds+Mq5DQ==", "requires": { "@babel/runtime": "^7.14.6", "js-beautify": "^1.6.14", "lodash": "^4.17.21", "mjml-core": "4.13.0", "mjml-parser-xml": "4.13.0", "yargs": "^16.1.0" } }, "mjml-navbar": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-navbar/-/mjml-navbar-4.13.0.tgz", "integrity": "sha512-0Oqyyk+OdtXfsjswRb/7Ql1UOjN4MbqFPKoyltJqtj+11MRpF5+Wjd74Dj9H7l81GFwkIB9OaP+ZMiD+TPECgg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-parser-xml": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-parser-xml/-/mjml-parser-xml-4.13.0.tgz", "integrity": "sha512-phljtI8DaW++q0aybR/Ykv9zCyP/jCFypxVNo26r2IQo//VYXyc7JuLZZT8N/LAI8lZcwbTVxQPBzJTmZ5IfwQ==", "requires": { "@babel/runtime": "^7.14.6", "detect-node": "2.0.4", "htmlparser2": "^4.1.0", "lodash": "^4.17.15" }, "dependencies": { "dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "dependencies": { "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } } } }, "domhandler": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", "requires": { "domelementtype": "^2.0.1" } }, "domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "dependencies": { "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } } } }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, "htmlparser2": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^3.0.0", "domutils": "^2.0.0", "entities": "^2.0.0" } } } }, "mjml-preset-core": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-preset-core/-/mjml-preset-core-4.13.0.tgz", "integrity": "sha512-gxzYaKkvUrHuzT1oqjEPSDtdmgEnN99Hf5f1r2CR5aMOB1x66EA3T8ATvF1o7qrBTVV4KMVlQem3IubMSYJZRw==", "requires": { "@babel/runtime": "^7.14.6", "mjml-accordion": "4.13.0", "mjml-body": "4.13.0", "mjml-button": "4.13.0", "mjml-carousel": "4.13.0", "mjml-column": "4.13.0", "mjml-divider": "4.13.0", "mjml-group": "4.13.0", "mjml-head": "4.13.0", "mjml-head-attributes": "4.13.0", "mjml-head-breakpoint": "4.13.0", "mjml-head-font": "4.13.0", "mjml-head-html-attributes": "4.13.0", "mjml-head-preview": "4.13.0", "mjml-head-style": "4.13.0", "mjml-head-title": "4.13.0", "mjml-hero": "4.13.0", "mjml-image": "4.13.0", "mjml-navbar": "4.13.0", "mjml-raw": "4.13.0", "mjml-section": "4.13.0", "mjml-social": "4.13.0", "mjml-spacer": "4.13.0", "mjml-table": "4.13.0", "mjml-text": "4.13.0", "mjml-wrapper": "4.13.0" } }, "mjml-raw": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-raw/-/mjml-raw-4.13.0.tgz", "integrity": "sha512-JbBYxwX1a/zbqnCrlDCRNqov2xqUrMCaEdTHfqE2athj479aQXvLKFM20LilTMaClp/dR0yfvFLfFVrC5ej4FQ==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-section": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-section/-/mjml-section-4.13.0.tgz", "integrity": "sha512-BLcqlhavtRakKtzDQPLv6Ae4Jt4imYWq/P0jo+Sjk7tP4QifgVA2KEQOirPK5ZUqw/lvK7Afhcths5rXZ2ItnQ==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-social": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-social/-/mjml-social-4.13.0.tgz", "integrity": "sha512-zL2a7Wwsk8OXF0Bqu+1B3La1UPwdTMcEXptO8zdh2V5LL6Xb7Gfyvx6w0CmmBtG5IjyCtqaKy5wtrcpG9Hvjfg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-spacer": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-spacer/-/mjml-spacer-4.13.0.tgz", "integrity": "sha512-Acw4QJ0MJ38W4IewXuMX7hLaW1BZaln+gEEuTfrv0xwPdTxX1ILqz4r+s9mYMxYkIDLWMCjBvXyQK6aWlid13A==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-table": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-table/-/mjml-table-4.13.0.tgz", "integrity": "sha512-UAWPVMaGReQhf776DFdiwdcJTIHTek3zzQ1pb+E7VlypEYgIpFvdUJ39UIiiflhqtdBATmHwKBOtePwU0MzFMg==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-text": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-text/-/mjml-text-4.13.0.tgz", "integrity": "sha512-uDuraaQFdu+6xfuigCimbeznnOnJfwRdcCL1lTBTusTuEvW/5Va6m2D3mnMeEpl+bp4+cxesXIz9st6A9pcg5A==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0" } }, "mjml-validator": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-validator/-/mjml-validator-4.13.0.tgz", "integrity": "sha512-uURYfyQYtHJ6Qz/1A7/+E9ezfcoISoLZhYK3olsxKRViwaA2Mm8gy/J3yggZXnsUXWUns7Qymycm5LglLEIiQg==", "requires": { "@babel/runtime": "^7.14.6" } }, "mjml-wrapper": { "version": "4.13.0", "resolved": "https://registry.npmjs.org/mjml-wrapper/-/mjml-wrapper-4.13.0.tgz", "integrity": "sha512-p/44JvHg04rAFR7QDImg8nZucEokIjFH6KJMHxsO0frJtLZ+IuakctzlZAADHsqiR52BwocDsXSa+o9SE2l6Ng==", "requires": { "@babel/runtime": "^7.14.6", "lodash": "^4.17.21", "mjml-core": "4.13.0", "mjml-section": "4.13.0" } }, "mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "requires": { "minimist": "^1.2.6" } }, "moment": { "version": "2.29.4", "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "moment-timezone": { "version": "0.5.37", "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.37.tgz", "integrity": "sha512-uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==", "requires": { "moment": ">= 2.9.0" } }, "moo": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz", "integrity": "sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==" }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multer": { "version": "1.4.4-lts.1", "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.4-lts.1.tgz", "integrity": "sha512-WeSGziVj6+Z2/MwQo3GvqzgR+9Uc+qt8SwHKh3gvNPiISKfsMfG4SvCOFYlxxgkXt7yIV2i1yczehm0EOKIxIg==", "requires": { "append-field": "^1.0.0", "busboy": "^1.0.0", "concat-stream": "^1.5.2", "mkdirp": "^0.5.4", "object-assign": "^4.1.1", "type-is": "^1.6.4", "xtend": "^4.0.0" } }, "mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, "mysql2": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-2.3.3.tgz", "integrity": "sha512-wxJUev6LgMSgACDkb/InIFxDprRa6T95+VEoR+xPvtngtccNH2dGjEB/fVZ8yg1gWv1510c9CvXuJHi5zUm0ZA==", "requires": { "denque": "^2.0.1", "generate-function": "^2.3.1", "iconv-lite": "^0.6.3", "long": "^4.0.0", "lru-cache": "^6.0.0", "named-placeholders": "^1.1.2", "seq-queue": "^0.0.5", "sqlstring": "^2.3.2" }, "dependencies": { "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "requires": { "yallist": "^4.0.0" } }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, "named-placeholders": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.2.tgz", "integrity": "sha512-wiFWqxoLL3PGVReSZpjLVxyJ1bRqe+KKJVbr4hGs1KWfTZTQyezHFBbuKj9hsizHyGV2ne7EMjHdxEGAybD5SA==", "requires": { "lru-cache": "^4.1.3" } }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, "nearley": { "version": "2.20.1", "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", "requires": { "commander": "^2.19.0", "moo": "^0.5.0", "railroad-diagrams": "^1.0.0", "randexp": "0.4.6" }, "dependencies": { "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" } } }, "negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" }, "neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, "nest-router": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/nest-router/-/nest-router-1.0.9.tgz", "integrity": "sha512-ZyRdSVs9GczI+39B7tNXsxfBXQOYnEF6l/q2aLYG8wSEvRHRDXAlzZ1SIosDibM02pLahGkDNLFC+nZ8uzJGDQ==" }, "netmask": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" }, "no-case": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", "requires": { "lower-case": "^1.1.1" } }, "node-emoji": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", "dev": true, "requires": { "lodash": "^4.17.21" } }, "node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "requires": { "whatwg-url": "^5.0.0" }, "dependencies": { "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "requires": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } } } }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, "node-releases": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", "dev": true }, "nodemailer": { "version": "6.7.8", "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.8.tgz", "integrity": "sha512-2zaTFGqZixVmTxpJRCFC+Vk5eGRd/fYtvIR+dl5u9QXLTQWGIf48x/JXvo58g9sa0bU6To04XUv554Paykum3g==" }, "nopt": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "requires": { "abbrev": "^1.0.0" } }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "requires": { "path-key": "^3.0.0" } }, "nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "requires": { "boolbase": "^1.0.0" } }, "nwsapi": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", "dev": true }, "oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "optional": true }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" }, "object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" }, "object-inspect": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, "on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "requires": { "ee-first": "1.1.1" } }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "requires": { "wrappy": "1" } }, "onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "requires": { "mimic-fn": "^2.1.0" } }, "open": { "version": "7.4.2", "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "requires": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" } }, "optionator": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "requires": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.3" } }, "ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "requires": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.5.0", "is-interactive": "^1.0.0", "is-unicode-supported": "^0.1.0", "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "os-name": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/os-name/-/os-name-4.0.1.tgz", "integrity": "sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==", "dev": true, "requires": { "macos-release": "^2.5.0", "windows-release": "^4.0.0" } }, "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true }, "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { "p-try": "^2.0.0" } }, "p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { "p-limit": "^2.2.0" } }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "pac-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", "requires": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4", "get-uri": "3", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "5", "pac-resolver": "^5.0.0", "raw-body": "^2.2.0", "socks-proxy-agent": "5" } }, "pac-resolver": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", "requires": { "degenerator": "^3.0.2", "ip": "^1.1.5", "netmask": "^2.0.2" } }, "param-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", "requires": { "no-case": "^2.2.0" } }, "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "requires": { "callsites": "^3.0.0" } }, "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "parse5": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.1.tgz", "integrity": "sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==", "requires": { "entities": "^4.4.0" } }, "parse5-htmlparser2-tree-adapter": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "requires": { "domhandler": "^5.0.2", "parse5": "^7.0.0" } }, "parseley": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/parseley/-/parseley-0.7.0.tgz", "integrity": "sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==", "requires": { "moo": "^0.5.1", "nearley": "^2.20.1" } }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" }, "passport": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/passport/-/passport-0.5.3.tgz", "integrity": "sha512-gGc+70h4gGdBWNsR3FuV3byLDY6KBTJAIExGFXTpQaYfbbcHCBlRRKx7RBQSpqEqc5Hh2qVzRs7ssvSfOpkUEA==", "requires": { "passport-strategy": "1.x.x", "pause": "0.0.1" } }, "passport-jwt": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/passport-jwt/-/passport-jwt-4.0.0.tgz", "integrity": "sha512-BwC0n2GP/1hMVjR4QpnvqA61TxenUMlmfNjYNgK0ZAs0HK4SOQkHcSv4L328blNTLtHq7DbmvyNJiH+bn6C5Mg==", "requires": { "jsonwebtoken": "^8.2.0", "passport-strategy": "^1.0.0" } }, "passport-local": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz", "integrity": "sha512-9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==", "requires": { "passport-strategy": "1.x.x" } }, "passport-strategy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz", "integrity": "sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==" }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "path-to-regexp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz", "integrity": "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" }, "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, "pause": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz", "integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==" }, "pdf-creator-node": { "version": "2.3.5", "resolved": "https://registry.npmjs.org/pdf-creator-node/-/pdf-creator-node-2.3.5.tgz", "integrity": "sha512-dUnYiYTGBkC60M1hBrHjlZs+gsSZZvXP33OLDUDOUPhNNhnHXQrzXFC3leo57ujzS/3rpbrqFcXxWpB5fgwkpw==", "requires": { "handlebars": "^4.7.7", "html-pdf": "^3.0.1" } }, "pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "optional": true }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "optional": true }, "pg-connection-string": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" }, "phantomjs-prebuilt": { "version": "2.1.16", "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz", "integrity": "sha512-PIiRzBhW85xco2fuj41FmsyuYHKjKuXWmhjy3A/Y+CMpN/63TV+s9uzfVhsUwFe0G77xWtHBG8xmXf5BqEUEuQ==", "optional": true, "requires": { "es6-promise": "^4.0.3", "extract-zip": "^1.6.5", "fs-extra": "^1.0.0", "hasha": "^2.2.0", "kew": "^0.7.0", "progress": "^1.1.8", "request": "^2.81.0", "request-progress": "^2.0.1", "which": "^1.2.10" }, "dependencies": { "fs-extra": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", "integrity": "sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==", "optional": true, "requires": { "graceful-fs": "^4.1.2", "jsonfile": "^2.1.0", "klaw": "^1.0.0" } }, "jsonfile": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", "optional": true, "requires": { "graceful-fs": "^4.1.6" } }, "progress": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", "integrity": "sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw==", "optional": true }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "optional": true, "requires": { "isexe": "^2.0.0" } } } }, "pick-util": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/pick-util/-/pick-util-1.1.5.tgz", "integrity": "sha512-H0MaM8T7wpQ/azvB12ChZw7kpSFzjsgv3Z+N7fUWnL1McTGSEeroCngcK4eOPiFQq08rAyKX3hadcAB1kUqfXA==", "requires": { "@jonkemp/package-utils": "^1.0.8" } }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, "pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", "optional": true }, "pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "optional": true, "requires": { "pinkie": "^2.0.0" } }, "pirates": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", "dev": true }, "pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { "find-up": "^4.0.0" } }, "pluralize": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "dev": true }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, "prettier": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", "dev": true }, "prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, "requires": { "fast-diff": "^1.1.2" } }, "pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "requires": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "dependencies": { "ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true } } }, "preview-email": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/preview-email/-/preview-email-3.0.5.tgz", "integrity": "sha512-q37jdkVw+wic0o/7xYhOTBS4kF0WX3two0OepmR1Fhxp9NTpO3rJTccAjQm95gJx/2Wa/Nv98sr9pXIQ77/foA==", "requires": { "dayjs": "^1.10.6", "debug": "^4.3.2", "mailparser": "^3.3.0", "nodemailer": "^6.6.3", "open": "7", "pug": "^3.0.2", "uuid": "^8.3.2" } }, "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "dev": true }, "promise": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "requires": { "asap": "~2.0.3" } }, "prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" } }, "prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "peer": true, "requires": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" }, "dependencies": { "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "peer": true } } }, "proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" }, "proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "requires": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" } }, "proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", "requires": { "agent-base": "^6.0.0", "debug": "4", "http-proxy-agent": "^4.0.0", "https-proxy-agent": "^5.0.0", "lru-cache": "^5.1.1", "pac-proxy-agent": "^5.0.0", "proxy-from-env": "^1.0.0", "socks-proxy-agent": "^5.0.0" }, "dependencies": { "lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "requires": { "yallist": "^3.0.2" } }, "yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" } } }, "proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" }, "psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "devOptional": true }, "pug": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz", "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", "requires": { "pug-code-gen": "^3.0.2", "pug-filters": "^4.0.0", "pug-lexer": "^5.0.1", "pug-linker": "^4.0.0", "pug-load": "^3.0.0", "pug-parser": "^6.0.0", "pug-runtime": "^3.0.1", "pug-strip-comments": "^2.0.0" } }, "pug-attrs": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz", "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==", "requires": { "constantinople": "^4.0.1", "js-stringify": "^1.0.2", "pug-runtime": "^3.0.0" } }, "pug-code-gen": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz", "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==", "requires": { "constantinople": "^4.0.1", "doctypes": "^1.1.0", "js-stringify": "^1.0.2", "pug-attrs": "^3.0.0", "pug-error": "^2.0.0", "pug-runtime": "^3.0.0", "void-elements": "^3.1.0", "with": "^7.0.0" } }, "pug-error": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz", "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==" }, "pug-filters": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz", "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==", "requires": { "constantinople": "^4.0.1", "jstransformer": "1.0.0", "pug-error": "^2.0.0", "pug-walk": "^2.0.0", "resolve": "^1.15.1" } }, "pug-lexer": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz", "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==", "requires": { "character-parser": "^2.2.0", "is-expression": "^4.0.0", "pug-error": "^2.0.0" } }, "pug-linker": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz", "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==", "requires": { "pug-error": "^2.0.0", "pug-walk": "^2.0.0" } }, "pug-load": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz", "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==", "requires": { "object-assign": "^4.1.1", "pug-walk": "^2.0.0" } }, "pug-parser": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz", "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==", "requires": { "pug-error": "^2.0.0", "token-stream": "1.0.0" } }, "pug-runtime": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz", "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==" }, "pug-strip-comments": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz", "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==", "requires": { "pug-error": "^2.0.0" } }, "pug-walk": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz", "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==" }, "pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "devOptional": true }, "qs": { "version": "6.10.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "requires": { "side-channel": "^1.0.4" } }, "querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "railroad-diagrams": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" }, "randexp": { "version": "0.4.6", "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", "requires": { "discontinuous-range": "1.0.0", "ret": "~0.1.10" } }, "randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "requires": { "safe-buffer": "^5.1.0" } }, "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" }, "raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "requires": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" } }, "react": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "peer": true, "requires": { "loose-envify": "^1.1.0" } }, "react-dom": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", "peer": true, "requires": { "loose-envify": "^1.1.0", "scheduler": "^0.23.0" } }, "react-dropzone-uploader": { "version": "2.11.0", "resolved": "https://registry.npmjs.org/react-dropzone-uploader/-/react-dropzone-uploader-2.11.0.tgz", "integrity": "sha512-1DpdPMGKP7vYL5SeCh13HCl+Xrz0F6jGrDPU5Tj2ojEIXGMCtfflrZhyXdr7u40IkQ+hYjAUEEtJW24SiY8WRA==", "requires": { "@babel/runtime": "^7.1.2" } }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" }, "dependencies": { "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" } } }, "readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "requires": { "picomatch": "^2.2.1" } }, "rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, "requires": { "resolve": "^1.1.6" } }, "reflect-metadata": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, "regenerator-runtime": { "version": "0.13.9", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" }, "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true }, "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" }, "remote-content": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/remote-content/-/remote-content-3.0.0.tgz", "integrity": "sha512-/hjCYVqWY/jYR07ptEJpClnYrGedSQ5AxCrEeMb3NlrxTgUK/7+iCOReE3z1QMYm3UL7sJX3o7cww/NC6UgyhA==", "requires": { "proxy-from-env": "^1.1.0", "superagent": "^7.0.2", "superagent-proxy": "^3.0.0" } }, "request": { "version": "2.88.2", "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", "optional": true, "requires": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", "combined-stream": "~1.0.6", "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", "har-validator": "~5.1.3", "http-signature": "~1.2.0", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", "mime-types": "~2.1.19", "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", "qs": "~6.5.2", "safe-buffer": "^5.1.2", "tough-cookie": "~2.5.0", "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" }, "dependencies": { "form-data": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "optional": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", "mime-types": "^2.1.12" } }, "qs": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "optional": true }, "tough-cookie": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "optional": true, "requires": { "psl": "^1.1.28", "punycode": "^2.1.1" } }, "uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", "optional": true } } }, "request-progress": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", "integrity": "sha512-dxdraeZVUNEn9AvLrxkgB2k6buTlym71dJk1fk4v8j3Ou3RKNm07BcgbHdj2lLgYGfqX71F+awb1MR+tWPFJzA==", "optional": true, "requires": { "throttleit": "^1.0.0" } }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" }, "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true }, "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "requires": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "requires": { "resolve-from": "^5.0.0" }, "dependencies": { "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } } }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, "resolve.exports": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true }, "restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "requires": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }, "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" }, "retry-as-promised": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-6.1.0.tgz", "integrity": "sha512-Hj/jY+wFC+SB9SDlIIFWiGOHnNG0swYbGYsOj2BJ8u2HKUaobNKab0OIC0zOLYzDy0mb7A4xA5BMo4LMz5YtEA==" }, "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "requires": { "glob": "^7.1.3" }, "dependencies": { "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { "queue-microtask": "^1.2.2" } }, "rxjs": { "version": "7.5.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "requires": { "tslib": "^2.1.0" } }, "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, "requires": { "xmlchars": "^2.2.0" } }, "scheduler": { "version": "0.23.0", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", "peer": true, "requires": { "loose-envify": "^1.1.0" } }, "schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" }, "dependencies": { "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, "requires": {} }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true } } }, "selderee": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/selderee/-/selderee-0.6.0.tgz", "integrity": "sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==", "requires": { "parseley": "^0.7.0" } }, "semver": { "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", "requires": { "lru-cache": "^6.0.0" }, "dependencies": { "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "requires": { "yallist": "^4.0.0" } }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, "send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "requires": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "dependencies": { "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" }, "dependencies": { "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" } } }, "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" } } }, "seq-queue": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz", "integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" }, "sequelize": { "version": "6.23.2", "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-6.23.2.tgz", "integrity": "sha512-0jy5pkRV7LZlBArIrYKfpKa+DowC+fIcI6LrWDfvdqFmuXZfmS4qq8gzFmIu0C210ts2Mmw/dghzRhX73xPoMg==", "requires": { "@types/debug": "^4.1.7", "@types/validator": "^13.7.1", "debug": "^4.3.3", "dottie": "^2.0.2", "inflection": "^1.13.2", "lodash": "^4.17.21", "moment": "^2.29.1", "moment-timezone": "^0.5.34", "pg-connection-string": "^2.5.0", "retry-as-promised": "^6.1.0", "semver": "^7.3.5", "sequelize-pool": "^7.1.0", "toposort-class": "^1.0.1", "uuid": "^8.3.2", "validator": "^13.7.0", "wkx": "^0.5.0" } }, "sequelize-pool": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-7.1.0.tgz", "integrity": "sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==" }, "sequelize-typescript": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/sequelize-typescript/-/sequelize-typescript-2.1.3.tgz", "integrity": "sha512-0mejGAaLywuCoOOLSXCQs2sMBNudU/QtWZkGY5VT2dfTHToXZi5bOxCa3/CukNNk7wJwXnLuIdeHdlqjvVoj1g==", "requires": { "glob": "7.2.0" }, "dependencies": { "glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "serialize-javascript": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", "dev": true, "requires": { "randombytes": "^2.1.0" } }, "serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" } }, "setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { "shebang-regex": "^3.0.0" } }, "shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "shelljs": { "version": "0.8.5", "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, "requires": { "glob": "^7.0.0", "interpret": "^1.0.0", "rechoir": "^0.6.2" }, "dependencies": { "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "requires": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" } }, "sigmund": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", "integrity": "sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==" }, "signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "requires": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }, "slick": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/slick/-/slick-1.12.2.tgz", "integrity": "sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==" }, "smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" }, "socks": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", "requires": { "ip": "^2.0.0", "smart-buffer": "^4.2.0" }, "dependencies": { "ip": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" } } }, "socks-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", "requires": { "agent-base": "^6.0.2", "debug": "4", "socks": "^2.3.3" } }, "source-map": { "version": "0.7.3", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "dev": true }, "source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" }, "dependencies": { "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "dev": true }, "specificity": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.4.1.tgz", "integrity": "sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==" }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, "sqlstring": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz", "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==" }, "sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", "optional": true, "requires": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", "dashdash": "^1.12.0", "ecc-jsbn": "~0.1.1", "getpass": "^0.1.1", "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" } }, "stack-utils": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "requires": { "escape-string-regexp": "^2.0.0" }, "dependencies": { "escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true } } }, "statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" }, "streamsearch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "requires": { "safe-buffer": "~5.1.0" }, "dependencies": { "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" } } }, "string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "requires": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" } }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "requires": { "ansi-regex": "^5.0.1" } }, "strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true }, "strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, "stripe": { "version": "8.222.0", "resolved": "https://registry.npmjs.org/stripe/-/stripe-8.222.0.tgz", "integrity": "sha512-hrA79fjmN2Eb6K3kxkDzU4ODeVGGjXQsuVaAPSUro6I9MM3X+BvIsVqdphm3BXWfimAGFvUqWtPtHy25mICY1w==", "requires": { "@types/node": ">=8.1.0", "qs": "^6.10.3" } }, "style-data": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/style-data/-/style-data-2.0.0.tgz", "integrity": "sha512-8RJ+MnHlwFUrf3B3gUjs9KIrOk0TppHHwfIHfBd6QjYmZcuzN1OGqeMkWA3ZnD6GiRWJjCVouY/l11v4rlfnPA==", "requires": { "cheerio": "^1.0.0-rc.10", "mediaquery-text": "^1.2.0", "pick-util": "^1.1.4" } }, "superagent": { "version": "7.1.5", "resolved": "https://registry.npmjs.org/superagent/-/superagent-7.1.5.tgz", "integrity": "sha512-HQYyGuDRFGmZ6GNC4hq2f37KnsY9Lr0/R1marNZTgMweVDQLTLJJ6DGQ9Tj/xVVs5HEnop9EMmTbywb5P30aqw==", "requires": { "component-emitter": "^1.3.0", "cookiejar": "^2.1.3", "debug": "^4.3.4", "fast-safe-stringify": "^2.1.1", "form-data": "^4.0.0", "formidable": "^2.0.1", "methods": "^1.1.2", "mime": "^2.5.0", "qs": "^6.10.3", "readable-stream": "^3.6.0", "semver": "^7.3.7" }, "dependencies": { "mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" }, "readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } } } }, "superagent-proxy": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/superagent-proxy/-/superagent-proxy-3.0.0.tgz", "integrity": "sha512-wAlRInOeDFyd9pyonrkJspdRAxdLrcsZ6aSnS+8+nu4x1aXbz6FWSTT9M6Ibze+eG60szlL7JA8wEIV7bPWuyQ==", "requires": { "debug": "^4.3.2", "proxy-agent": "^5.0.0" } }, "supertest": { "version": "6.2.4", "resolved": "https://registry.npmjs.org/supertest/-/supertest-6.2.4.tgz", "integrity": "sha512-M8xVnCNv+q2T2WXVzxDECvL2695Uv2uUj2O0utxsld/HRyJvOU8W9f1gvsYxSNU4wmIe0/L/ItnpU4iKq0emDA==", "dev": true, "requires": { "methods": "^1.1.2", "superagent": "^8.0.0" }, "dependencies": { "mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true }, "readable-stream": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "superagent": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/superagent/-/superagent-8.0.0.tgz", "integrity": "sha512-iudipXEel+SzlP9y29UBWGDjB+Zzag+eeA1iLosaR2YHBRr1Q1kC29iBrF2zIVD9fqVbpZnXkN/VJmwFMVyNWg==", "dev": true, "requires": { "component-emitter": "^1.3.0", "cookiejar": "^2.1.3", "debug": "^4.3.4", "fast-safe-stringify": "^2.1.1", "form-data": "^4.0.0", "formidable": "^2.0.1", "methods": "^1.1.2", "mime": "2.6.0", "qs": "^6.10.3", "readable-stream": "^3.6.0", "semver": "^7.3.7" } } } }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "requires": { "has-flag": "^4.0.0" } }, "supports-hyperlinks": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, "requires": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" } }, "supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" }, "symbol-observable": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", "dev": true }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "table": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", "dev": true, "requires": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }, "tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true }, "terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" } }, "terser": { "version": "5.15.0", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", "dev": true, "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "dependencies": { "acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true }, "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true } } }, "terser-webpack-plugin": { "version": "5.3.6", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "dev": true, "requires": { "@jridgewell/trace-mapping": "^0.3.14", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.0", "terser": "^5.14.1" } }, "test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "requires": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" }, "dependencies": { "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } } } }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", "dev": true }, "throttleit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", "optional": true }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, "tlds": { "version": "1.231.0", "resolved": "https://registry.npmjs.org/tlds/-/tlds-1.231.0.tgz", "integrity": "sha512-L7UQwueHSkGxZHQBXHVmXW64oi+uqNtzFt2x6Ssk7NVnpIbw16CRs4eb/jmKOZ9t2JnqZ/b3Cfvo97lnXqKrhw==" }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "requires": { "os-tmpdir": "~1.0.2" } }, "tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "requires": { "is-number": "^7.0.0" } }, "toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" }, "token-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz", "integrity": "sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==" }, "toposort-class": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz", "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==" }, "tough-cookie": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", "dev": true, "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" }, "dependencies": { "universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true } } }, "tr46": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "requires": { "punycode": "^2.1.1" } }, "tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true }, "ts-jest": { "version": "27.1.5", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.5.tgz", "integrity": "sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==", "dev": true, "requires": { "bs-logger": "0.x", "fast-json-stable-stringify": "2.x", "jest-util": "^27.0.0", "json5": "2.x", "lodash.memoize": "4.x", "make-error": "1.x", "semver": "7.x", "yargs-parser": "20.x" } }, "ts-loader": { "version": "9.4.1", "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.1.tgz", "integrity": "sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw==", "dev": true, "requires": { "chalk": "^4.1.0", "enhanced-resolve": "^5.0.0", "micromatch": "^4.0.0", "semver": "^7.3.4" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "ts-node": { "version": "10.9.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", "dev": true, "requires": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "dependencies": { "acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true }, "acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true } } }, "tsconfig-paths": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", "dev": true, "requires": { "@types/json5": "^0.0.29", "json5": "^1.0.1", "minimist": "^1.2.6", "strip-bom": "^3.0.0" }, "dependencies": { "json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true } } }, "tsconfig-paths-webpack-plugin": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-3.5.2.tgz", "integrity": "sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==", "dev": true, "requires": { "chalk": "^4.1.0", "enhanced-resolve": "^5.7.0", "tsconfig-paths": "^3.9.0" }, "dependencies": { "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } } } }, "tslib": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" }, "tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "requires": { "tslib": "^1.8.1" }, "dependencies": { "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true } } }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "optional": true, "requires": { "safe-buffer": "^5.0.1" } }, "tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "optional": true }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": { "prelude-ls": "^1.2.1" } }, "type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true }, "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true }, "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" } }, "typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, "requires": { "is-typedarray": "^1.0.0" } }, "typescript": { "version": "4.8.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", "dev": true }, "uc.micro": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, "uglify-js": { "version": "3.17.2", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.2.tgz", "integrity": "sha512-bbxglRjsGQMchfvXZNusUcYgiB9Hx2K4AHYXQy2DITZ9Rd+JzhX7+hoocE5Winr7z2oHvPsekkBwXtigvxevXg==" }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", "dev": true, "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" } }, "upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==" }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "devOptional": true, "requires": { "punycode": "^2.1.0" } }, "url-parse": { "version": "1.5.10", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, "requires": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" }, "uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" }, "v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, "v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, "v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" } }, "valid-data-url": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/valid-data-url/-/valid-data-url-3.0.1.tgz", "integrity": "sha512-jOWVmzVceKlVVdwjNSenT4PbGghU0SBIizAev8ofZVgivk/TVHXSbNL8LP6M3spZvkR9/QolkyJavGSX5Cs0UA==" }, "validator": { "version": "13.7.0", "resolved": "https://registry.npmjs.org/validator/-/validator-13.7.0.tgz", "integrity": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" }, "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "optional": true, "requires": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" }, "dependencies": { "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", "optional": true } } }, "vm2": { "version": "3.9.11", "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.11.tgz", "integrity": "sha512-PFG8iJRSjvvBdisowQ7iVF580DXb1uCIiGaXgm7tynMR1uTBlv7UJlB1zdv5KJ+Tmq1f0Upnj3fayoEOPpCBKg==", "requires": { "acorn": "^8.7.0", "acorn-walk": "^8.2.0" }, "dependencies": { "acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" }, "acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" } } }, "void-elements": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", "integrity": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==" }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, "requires": { "browser-process-hrtime": "^1.0.0" } }, "w3c-xmlserializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, "requires": { "xml-name-validator": "^3.0.0" } }, "walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "requires": { "makeerror": "1.0.12" } }, "watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" } }, "wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, "requires": { "defaults": "^1.0.3" } }, "web-resource-inliner": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/web-resource-inliner/-/web-resource-inliner-5.0.0.tgz", "integrity": "sha512-AIihwH+ZmdHfkJm7BjSXiEClVt4zUFqX4YlFAzjL13wLtDuUneSaFvDBTbdYRecs35SiU7iNKbMnN+++wVfb6A==", "requires": { "ansi-colors": "^4.1.1", "escape-goat": "^3.0.0", "htmlparser2": "^4.0.0", "mime": "^2.4.6", "node-fetch": "^2.6.0", "valid-data-url": "^3.0.0" }, "dependencies": { "dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "dependencies": { "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } } } }, "domhandler": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", "requires": { "domelementtype": "^2.0.1" } }, "domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "dependencies": { "domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { "domelementtype": "^2.2.0" } } } }, "entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, "htmlparser2": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", "requires": { "domelementtype": "^2.0.1", "domhandler": "^3.0.0", "domutils": "^2.0.0", "entities": "^2.0.0" } }, "mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" } } }, "webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true }, "webpack": { "version": "5.74.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz", "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", "dev": true, "peer": true, "requires": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.10.0", "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.9", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { "acorn": { "version": "8.8.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", "dev": true, "peer": true }, "acorn-import-assertions": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", "dev": true, "peer": true, "requires": {} } } }, "webpack-node-externals": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", "dev": true }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true }, "whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, "requires": { "iconv-lite": "0.4.24" } }, "whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, "whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "requires": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" } }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" } }, "windows-release": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-4.0.0.tgz", "integrity": "sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==", "dev": true, "requires": { "execa": "^4.0.2" }, "dependencies": { "execa": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", "dev": true, "requires": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", "human-signals": "^1.1.1", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.0", "onetime": "^5.1.0", "signal-exit": "^3.0.2", "strip-final-newline": "^2.0.0" } }, "get-stream": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, "requires": { "pump": "^3.0.0" } }, "human-signals": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", "dev": true } } }, "with": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz", "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==", "requires": { "@babel/parser": "^7.9.6", "@babel/types": "^7.9.6", "assert-never": "^1.2.1", "babel-walk": "3.0.0-canary-5" } }, "wkx": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz", "integrity": "sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==", "requires": { "@types/node": "*" } }, "word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" }, "wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "requires": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "requires": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, "ws": { "version": "7.5.9", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", "dev": true, "requires": {} }, "xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, "xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, "xregexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==" }, "xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" }, "yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" }, "yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "dev": true }, "yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "requires": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" } }, "yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" }, "yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "optional": true, "requires": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, "yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true } } }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/.eslintrc.js
module.exports = { parser: '@typescript-eslint/parser', parserOptions: { project: 'tsconfig.json', sourceType: 'module', }, plugins: ['@typescript-eslint/eslint-plugin'], extends: [ 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended', ], root: true, env: { node: true, jest: true, }, ignorePatterns: ['.eslintrc.js'], rules: { '@typescript-eslint/interface-name-prefix': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'off', }, };
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/gmx.sql
-- Adminer 4.8.1 MySQL 8.0.28 dump SET NAMES utf8; SET time_zone = '+00:00'; SET foreign_key_checks = 0; SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO'; SET NAMES utf8mb4; DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( `id` int unsigned NOT NULL, `name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `rememberToken` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '1 for active, 2 for inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; INSERT INTO `admin` (`id`, `name`, `email`, `password`, `rememberToken`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, ' ', 'cstraka@greenmarketexchange.com', '$2y$10$tGmL3JkjAz0I/QJDs7ad1.KPBpCWoDCaECyEJLh/X6V4RX6hrn6va', '', '1', '2021-06-17 13:00:00', '2022-10-26 19:47:28', NULL), (2, ' ', 'admin@example.com', '$2a$10$3XCTrWFb2UBBeCFsJGZehOJ7Mvr7SdIRfbfCdslfYS2BSReg3/U26', 'dR1ia2D2XAH5M8rrabpZy384y9rc6GCSMNT7zMKzVfstkZPfesAJjUP3K5Pj', '1', '2021-06-17 13:00:00', '2022-11-18 13:43:09', NULL); DROP TABLE IF EXISTS `attachments`; CREATE TABLE `attachments` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `attachableId` int DEFAULT NULL, `attachableType` varchar(255) DEFAULT NULL COMMENT 'post,comment,commentReply', `attachmentType` enum('1','2') DEFAULT '1' COMMENT '1 for image, 2 for video', `attachment` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `axis_point`; CREATE TABLE `axis_point` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `file` blob, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; DROP TABLE IF EXISTS `banner`; CREATE TABLE `banner` ( `id` int NOT NULL AUTO_INCREMENT, `preTitle` varchar(299) NOT NULL, `title` varchar(299) NOT NULL, `description` varchar(299) NOT NULL, `buttonText` varchar(299) NOT NULL, `buttonLink` varchar(299) NOT NULL, `image` varchar(255) DEFAULT NULL, `isActive` tinyint(1) DEFAULT '1', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; INSERT INTO `banner` (`id`, `preTitle`, `title`, `description`, `buttonText`, `buttonLink`, `image`, `isActive`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 'Green Market Exchange', 'The Future of Cannabis Commerce', 'usce eros nulla euismod elementum ante vulputate venenatis ipsum suspendisse vestibulum.', 'Read More', '', '/cms/1653886861-banner-slide1.jpg', 1, '2022-05-30 04:48:50', '2022-07-22 20:59:14', '2022-07-22 20:59:14'), (2, 'Grow Your Stock', 'Green Market Exchange', 'The Future of Cannabis Trading', 'Read More', 'https://www.greenmarketexchange.com/about-us', '/cms/1653886724-banner-slide1.jpg', 1, '2022-05-30 04:48:50', '2022-08-31 12:13:37', '2022-08-31 12:13:37'), (3, 'Curabi est felis', 'Duis Mis Sien Digni', 'usce eros nulla euismod elementum ante vulputate venenatis ipsum suspendisse vestibulum.', 'Read More', '', '/cms/1658136550-stock-original-4k.jpg', 1, '2022-07-18 09:29:10', '2022-07-18 09:29:29', '2022-07-18 09:29:29'), (4, '', 'Green Market Exchange', 'Wholesale Marketplace', 'Get Started', 'https://www.greenmarketexchange.com/sign-up', '/cms/1661947984-1653886724-banner-slide1.jpg', 1, '2022-08-31 12:13:04', '2022-12-07 16:38:06', NULL); DROP TABLE IF EXISTS `brand_details`; CREATE TABLE `brand_details` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `brandName` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `year` varchar(255) DEFAULT NULL, `totalOrdersCompleted` int DEFAULT '0', `address` varchar(255) DEFAULT NULL, `description` text, `avgProductRating` float(10,2) DEFAULT '0.00', `reviewsProductCount` int DEFAULT '0', `avgDOTRating` float(10,2) DEFAULT '0.00', `reviewsDOTCount` int DEFAULT '0', `avgGeneralRating` float(10,2) DEFAULT '0.00', `reviewsGeneralCount` varchar(255) DEFAULT '0', `avgRating` float(10,2) DEFAULT '0.00', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), CONSTRAINT `brand_details_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; INSERT INTO `brand_details` (`isActive`, `id`, `userId`, `brandName`, `slug`, `website`, `year`, `totalOrdersCompleted`, `address`, `description`, `avgProductRating`, `reviewsProductCount`, `avgDOTRating`, `reviewsDOTCount`, `avgGeneralRating`, `reviewsGeneralCount`, `avgRating`, `createdAt`, `updatedAt`) VALUES (1, 1, 8, 'Nectr', 'gmx', NULL, '2020', 0, '112 North Shore Drive, Owls Head, ME, USA', 'Test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2022-12-20 00:54:23', '2023-06-06 13:43:32'), (1, 2, 12, 'Top Builder', 'topbuildera', NULL, '1988', 0, 'NYU Langone Health, 1st Avenue, New York, NY, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2022-12-20 07:55:55', '2023-05-17 16:15:16'), (1, 3, 13, 'Test 2', 'test2', NULL, NULL, 0, '95 lincoln street', 'test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2022-12-21 02:53:45', '2022-12-21 02:53:45'), (1, 4, 16, 'Top Builder John', 'topbuilderjohn', NULL, NULL, 0, 'Sunshine Skyway Bridge, Sunshine Skyway Ln S, St. Petersburg, FL, USA', 'test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-26 16:47:04', '2023-02-26 16:47:04'), (1, 5, 17, 'Hogn Top John', 'hogntopjohn', NULL, NULL, 0, 'Sunrise, FL, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-26 16:55:41', '2023-02-26 16:55:41'), (1, 6, 18, 'John', 'john2', NULL, NULL, 0, 'SD, USA', 'ssd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-26 17:02:17', '2023-02-26 17:02:17'), (1, 7, 19, 'PrakashB', 'prakashb', NULL, NULL, 0, 'NYU School of Professional Studies, East 12th Street, New York, NY, USA', ' Bio / Description', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-28 08:18:33', '2023-02-28 08:18:33'), (1, 8, 20, 'Louis Builder', 'louisbuilder', 'https://www.louisbland.com', '1994', 0, 'Riverhead, NY, USA', 'Louis bio', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-11 18:44:46', '2023-07-11 18:52:15'); DROP TABLE IF EXISTS `cart`; CREATE TABLE `cart` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `retailerId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `productId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `retailerId` (`retailerId`), KEY `brandId` (`brandId`), KEY `productId` (`productId`), CONSTRAINT `cart_ibfk_1` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, CONSTRAINT `cart_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON UPDATE CASCADE, CONSTRAINT `cart_ibfk_3` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; INSERT INTO `cart` (`isActive`, `id`, `retailerId`, `brandId`, `productId`, `quantity`, `createdAt`, `updatedAt`) VALUES (1, 18, 1, 2, 2, 10, '2023-06-04 09:42:56', '2023-06-04 09:42:56'), (1, 19, 9, 2, 2, 1, '2023-06-19 02:53:18', '2023-06-19 02:53:18'); DROP TABLE IF EXISTS `categories`; CREATE TABLE `categories` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; INSERT INTO `categories` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Badder/Butter', '2022-05-04 00:00:00', '2022-10-18 00:31:36', NULL), (1, 2, 'Crumble', '2022-05-10 00:00:00', '2022-11-22 10:58:35', '2022-11-22 10:58:35'), (1, 3, 'Crystalline', '2022-05-10 14:19:48', '2022-10-18 00:34:54', NULL), (1, 4, 'Crystalline', '2022-06-02 09:45:51', '2022-11-22 10:57:54', '2022-11-22 10:57:54'), (1, 5, 'Distillate', '2022-10-18 00:26:23', '2022-10-18 00:34:59', '2022-10-18 00:34:59'), (1, 6, 'Edible', '2022-10-18 00:26:50', '2022-10-18 00:35:02', '2022-10-18 00:35:02'), (1, 7, 'Dry Sift', '2022-10-18 00:27:06', '2022-10-18 00:35:05', '2022-10-18 00:35:05'), (1, 8, 'Bubble Hash', '2022-10-18 00:27:27', '2022-10-18 00:27:27', NULL), (1, 9, 'Crystalline', '2022-10-18 00:27:39', '2022-10-18 00:35:22', '2022-10-18 00:35:22'), (1, 10, 'Sauce', '2022-10-18 00:27:53', '2022-10-18 00:35:25', '2022-10-18 00:35:25'), (1, 11, 'Shatter', '2022-10-18 00:28:03', '2022-10-18 00:35:29', '2022-10-18 00:35:29'), (1, 12, 'Crumble', '2022-10-18 00:35:43', '2022-10-18 00:35:43', NULL), (1, 13, 'Crystalline', '2022-10-18 00:35:54', '2022-11-22 10:58:13', '2022-11-22 10:58:13'), (1, 14, 'Distillate', '2022-10-18 00:36:17', '2022-10-18 00:36:17', NULL), (1, 15, 'Dry Sift', '2022-10-18 00:36:35', '2022-10-18 00:36:35', NULL), (1, 16, 'Edible', '2022-10-18 00:36:47', '2022-10-18 00:36:47', NULL), (1, 17, 'Flower', '2022-10-18 00:36:59', '2022-10-18 00:36:59', NULL), (1, 18, 'Pre Roll', '2022-10-18 00:37:09', '2022-10-18 00:37:09', NULL), (1, 19, 'Sauce', '2022-10-18 00:37:31', '2022-10-18 00:37:31', NULL), (1, 20, 'Shatter', '2022-10-18 00:37:39', '2022-10-18 00:37:39', NULL), (1, 21, 'Tincture', '2022-10-26 21:51:03', '2022-10-26 21:51:03', NULL), (1, 22, 'CBD', '2022-11-10 01:00:17', '2022-11-10 01:00:33', NULL); DROP TABLE IF EXISTS `cms`; CREATE TABLE `cms` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `content` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; INSERT INTO `cms` (`isActive`, `id`, `name`, `slug`, `content`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Home', 'home', '{\"banner_content\":[{\"preTitle\":\"\",\"title\":\"Green Market Exchange\",\"description\":\"Wholesale Marketplace\",\"buttonText\":\"Get Started\",\"buttonLink\":\"https:\\/\\/www.greenmarketexchange.com\\/sign-up\",\"image\":\"\\/cms\\/1661947984-1653886724-banner-slide1.jpg\"}],\"section2_count\":\"01\",\"section2_main_title\":\"Our vision\",\"section2_description\":\"<p>Green Market Exchange strives&nbsp;to be the industry leader in cannabis wholesale marketplace technology and innovation as we invision cannabis will be a globaly traded&nbsp;commodity in the near future.<\\/p>\",\"section2_button_title\":\"About Us\",\"section2_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/about-us\",\"section2_image\":\"\\/cms\\/1653902872-vision-img.jpg\",\"section3_count\":\"\",\"section3_main_title\":\"For Brands\",\"section3_list_icon1\":\"icon-cap\",\"section3_list_title1\":\"Grow your Brand\",\"section3_list_description1\":\"Create brand awareness, Showcase your business credibility, Differentiate your brand\",\"section3_list_icon2\":\"icon-listing\",\"section3_list_title2\":\"Increase Sale orders\",\"section3_list_description2\":\"Receive and Accept orders, Build new partnerships, Manage sales operations\",\"section3_button_title\":\"Sign Up\",\"section3_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/seller\\/sign-up\",\"section3_image\":\"\\/cms\\/1657531043-brand-img.jpg\",\"section4_count\":\"\",\"section4_main_title\":\"For Retailers\",\"section4_description\":\"\",\"section4_list_icon1\":\"icon color-f3772c\",\"section4_list_title1\":\"Discover credible and quality wholesalers\",\"section4_list_description1\":\"\",\"section4_list_icon2\":\"icon color-f3772c\",\"section4_list_title2\":\"Manifest new partnerships and improve old ones\",\"section4_list_description2\":\"\",\"section4_list_icon3\":\"icon color-f3772c\",\"section4_list_title3\":\"Diversify product offerings\",\"section4_list_description3\":\"\",\"section4_button_title\":\"Sign Up\",\"section4_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/sign-up\",\"section4_image\":\"\\/cms\\/1653902950-retailer-img1.png\",\"section4_small_image\":\"\\/cms\\/1653904493-retailer-img2.png\",\"meta_title\":\"The Future of Cannabis Commerce\",\"meta_keyword\":\"Green Market Exchange The Future of Cannabis Commerce\",\"meta_description\":\"Green Market Exchange The Future of Cannabis Commerce\"}', '2022-04-14 04:02:23', '2022-12-07 17:04:38', NULL), (1, 2, 'Terms Of Use', 'terms-of-use', '{\"main_title\":\"Terms Of Use\",\"main_content\":\"<h6>Acceptance of the Terms of Use<\\/h6>\\r\\n\\r\\n<p>These terms of use are entered into by and between You and Green Market Exchange, Inc. (&quot;<strong>Company<\\/strong>,&quot; &quot;<strong>we<\\/strong>,&quot; or &quot;<strong>us<\\/strong>&quot;). The following terms and conditions, (&quot;<strong>Terms of Use<\\/strong>&quot;), govern your access to and use of <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a>, including any content, functionality, and services offered on or through <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a> (the &quot;<strong>Website<\\/strong>&quot;). If You are accessing or otherwise using this Website on behalf of a company or entity, You hereby represent and warrant that You have the authority to bind such Company to these Terms of Use, and that such company or entity hereby accepts the same.&nbsp;<\\/p>\\r\\n\\r\\n<p>Please read the Terms of Use carefully before you start to use the Website. By using the Website, you accept and agree to be bound and abide by these Terms of Use and our Privacy Policy, found at <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\/privacy-policy\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com\\/privacy-policy<\\/a>, incorporated herein by reference. If you do not want to agree to these Terms of Use or the Privacy Policy, you must not access or use the Website.<\\/p>\\r\\n\\r\\n<p>This Website is offered and available to users who 21 years of age or older within the United States or any of its territories or possessions. By using this Website, you represent and warrant that you meet all of the foregoing eligibility requirements. If you do not meet all of these requirements, you must not access or use the Website.<\\/p>\\r\\n\\r\\n<h6>Changes to the Terms of Use<\\/h6>\\r\\n\\r\\n<p>We may revise and update these Terms of Use from time to time in our sole discretion. All changes are effective immediately when we post them. However, any changes to the dispute resolution provisions set out in Governing Law and Jurisdiction will not apply to any disputes for which the parties have actual notice before the date the change is posted on the Website. Your continued use of the Website following the posting of revised Terms of Use means that you accept and agree to the changes. You are expected to check this page from time to time so you are aware of any changes, as they are binding on you.<\\/p>\\r\\n\\r\\n<h6>Accessing the Website and Account Security<\\/h6>\\r\\n\\r\\n<p>We reserve the right to withdraw or amend this Website, and any service or material we provide on the Website, in our sole discretion without notice. We will not be liable if for any reason all or any part of the Website is unavailable at any time or for any period. From time to time, we may restrict access to some parts of the Website, or the entire Website, to users, including registered users.<\\/p>\\r\\n\\r\\n<p>You are responsible for both:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Making all arrangements necessary for you to have access to the Website.<\\/li>\\r\\n\\t<li>Ensuring that all persons who access the Website through your internet connection are aware of these Terms of Use and comply with them.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>To access the Website or some of the resources it offers, you may be asked to provide certain registration details or other information. It is a condition of your use of the Website that all the information you provide on the Website is correct, current, and complete. You agree that all information you provide to register with this Website or otherwise, including, but not limited to, through the use of any interactive features on the Website, is governed by our Privacy Policy and you consent to all actions we take with respect to your information consistent with our Privacy Policy.<\\/p>\\r\\n\\r\\n<p>If you choose, or are provided with, a user name, password, or any other piece of information as part of our security procedures, you must treat such information as confidential, and you must not disclose it to any other person or entity. You also acknowledge that your account is personal to you and agree not to provide any other person with access to this Website or portions of it using your user name, password, or other security information. You agree to notify us immediately of any unauthorized access to or use of your user name or password or any other breach of security. You also agree to ensure that you exit from your account at the end of each session. You should use particular caution when accessing your account from a public or shared computer so that others are not able to view or record your password or other personal information.<\\/p>\\r\\n\\r\\n<p>We have the right to disable any user name, password, or other identifier, whether chosen by you or provided by us, at any time in our sole discretion for any or no reason, including if, in our opinion, you have violated any provision of these Terms of Use.<\\/p>\\r\\n\\r\\n<h6>Intellectual Property Rights<\\/h6>\\r\\n\\r\\n<p>The Website and its entire contents, features, and functionality (including but not limited to all information, software, text, displays, images, video, and audio, and the design, selection, and arrangement thereof) are owned by the Company, its licensors, or other providers of such material and are protected by United States and international copyright, trademark, patent, trade secret, and other intellectual property or proprietary rights laws.<\\/p>\\r\\n\\r\\n<p>These Terms of Use permit you to use the Website for your personal, non-commercial use only. You must not reproduce, distribute, modify, create derivative works of, publicly display, publicly perform, republish, download, store, or transmit any of the material on our Website, except as follows:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Your computer may temporarily store copies of such materials in RAM incidental to your accessing and viewing those materials.<\\/li>\\r\\n\\t<li>You may store files that are automatically cached by your Web browser for display enhancement purposes.<\\/li>\\r\\n\\t<li>You may print or download one copy of a reasonable number of pages of the Website for your own personal, non-commercial use and not for further reproduction, publication, or distribution.<\\/li>\\r\\n\\t<li>If we provide desktop, mobile, or other applications for download, you may download a single copy to your computer or mobile device solely for your own personal, non-commercial use, provided you agree to be bound by our end user license agreement for such applications.<\\/li>\\r\\n\\t<li>If we provide social media features with certain content, you may take such actions as are enabled by such features.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Modify copies of any materials from this site.<\\/li>\\r\\n\\t<li>Use any illustrations, photographs, video or audio sequences, or any graphics separately from the accompanying text.<\\/li>\\r\\n\\t<li>Delete or alter any copyright, trademark, or other proprietary rights notices from copies of materials from this site.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You must not access or use for any commercial purposes any part of the Website or any services or materials available through the Website.&nbsp;<br \\/>\\r\\nIf you print, copy, modify, download, or otherwise use or provide any other person with access to any part of the Website in breach of the Terms of Use, your right to use the Website will stop immediately and you must, at our option, return or destroy any copies of the materials you have made. No right, title, or interest in or to the Website or any content on the Website is transferred to you, and all rights not expressly granted are reserved by the Company. Any use of the Website not expressly permitted by these Terms of Use is a breach of these Terms of Use and may violate copyright, trademark, and other laws.<\\/p>\\r\\n\\r\\n<h6>Trademarks<\\/h6>\\r\\n\\r\\n<p>The Company name, the terms &ldquo;Green Market Exchange&rdquo;, &ldquo;GMX&rdquo;, all Company logos, and all related names, logos, product and service names, designs, and slogans are trademarks of the Company or its affiliates or licensors. You must not use such marks without the prior written permission of the Company. All other names, logos, product and service names, designs, and slogans on this Website are the trademarks of their respective owners.<\\/p>\\r\\n\\r\\n<h6>Prohibited Uses<\\/h6>\\r\\n\\r\\n<p>You may use the Website only for lawful purposes and in accordance with these Terms of Use. You agree not to use the Website:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>In any way that violates any applicable federal, state, local, or international law or regulation (including, without limitation, any laws regarding the export of data or software to and from the US or other countries).&nbsp;<\\/li>\\r\\n\\t<li>For the purpose of exploiting, harming, or attempting to exploit or harm minors in any way by exposing them to inappropriate content, asking for personally identifiable information, or otherwise.<\\/li>\\r\\n\\t<li>To send, knowingly receive, upload, download, use, or re-use any material that does not comply with the content standards set out in these Terms of Use or elsewhere on this Website.<\\/li>\\r\\n\\t<li>To transmit, or procure the sending of, any advertising or promotional material, including any &quot;junk mail,&quot; &quot;chain letter,&quot; &quot;spam,&quot; or any other similar solicitation.<\\/li>\\r\\n\\t<li>To impersonate or attempt to impersonate the Company, a Company employee, another user, or any other person or entity (including, without limitation, by using email addresses or screen names associated with any of the foregoing).<\\/li>\\r\\n\\t<li>To engage in any other conduct that restricts or inhibits anyone&#39;s use or enjoyment of the Website, or which, as determined by us, may harm the Company or users of the Website, or expose them to liability.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>Additionally, you agree not to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Use the Website in any manner that could disable, overburden, damage, or impair the site or interfere with any other party&#39;s use of the Website, including their ability to engage in real time activities through the Website.<\\/li>\\r\\n\\t<li>Use any robot, spider, or other automatic device, process, or means to access the Website for any purpose, including monitoring or copying any of the material on the Website.<\\/li>\\r\\n\\t<li>Use any manual process to monitor or copy any of the material on the Website, or for any other purpose not expressly authorized in these Terms of Use, without our prior written consent.<\\/li>\\r\\n\\t<li>Use any device, software, or routine that interferes with the proper working of the Website.<\\/li>\\r\\n\\t<li>Introduce any viruses, Trojan horses, worms, logic bombs, or other material that is malicious or technologically harmful.<\\/li>\\r\\n\\t<li>Attempt to gain unauthorized access to, interfere with, damage, or disrupt any parts of the Website, the server on which the Website is stored, or any server, computer, or database connected to the Website.&nbsp;<\\/li>\\r\\n\\t<li>Attack the Website via a denial-of-service attack or a distributed denial-of-service attack.<\\/li>\\r\\n\\t<li>Otherwise attempt to interfere with the proper working of the Website.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>User Contributions<\\/h6>\\r\\n\\r\\n<p>The Website may contain message boards, chat rooms, personal web pages or profiles, forums, bulletin boards, and other interactive features (collectively, &quot;Interactive Services&quot;) that allow users to post, submit, publish, display, or transmit to other users or other persons (hereinafter, &quot;post&quot;) content or materials (collectively, &quot;User Contributions&quot;) on or through the Website. All User Contributions must comply with the Content Standards set out in these Terms of Use.<\\/p>\\r\\n\\r\\n<p>Any User Contribution you post to the site will be considered non-confidential and non-proprietary. By providing any User Contribution on the Website, you grant us and our affiliates and service providers, and each of their respective licensees, successors, and assigns the right to use, reproduce, modify, perform, display, distribute, and otherwise disclose to third parties any such material for any purpose.&nbsp;<\\/p>\\r\\n\\r\\n<p>You represent and warrant that:&nbsp;<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>You own or control all rights in and to the User Contributions and have the right to grant the license granted above to us and our affiliates and service providers, and each of their respective licensees, successors, and assigns.<\\/li>\\r\\n\\t<li>All of your User Contributions do and will comply with these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You understand and acknowledge that you are responsible for any User Contributions you submit or contribute, and you, not the Company, have full responsibility for such content, including its legality, reliability, accuracy, and appropriateness.<\\/p>\\r\\n\\r\\n<p>We are not responsible or liable to any third party for the content or accuracy of any User Contributions posted by you or any other user of the Website.&nbsp;<\\/p>\\r\\n\\r\\n<h6>Monitoring and Enforcement Termination<\\/h6>\\r\\n\\r\\n<p>We have the right to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Remove or refuse to post any User Contributions for any or no reason in our sole discretion.<\\/li>\\r\\n\\t<li>Take any action with respect to any User Contribution that we deem necessary or appropriate in our sole discretion, including if we believe that such User Contribution violates the Terms of Use, including the Content Standards, infringes any intellectual property right or other right of any person or entity, threatens the personal safety of users of the Website or the public, or could create liability for the Company.<\\/li>\\r\\n\\t<li>Disclose your identity or other information about you to any third party who claims that material posted by you violates their rights, including their intellectual property rights or their right to privacy.<\\/li>\\r\\n\\t<li>Take appropriate legal action, including without limitation, referral to law enforcement, for any illegal or unauthorized use of the Website.<\\/li>\\r\\n\\t<li>Terminate or suspend your access to all or part of the Website for any or no reason, including without limitation, any violation of these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>Without limiting the foregoing, we have the right to cooperate fully with any law enforcement authorities or court order requesting or directing us to disclose the identity or other information of anyone posting any materials on or through the Website. YOU WAIVE AND HOLD HARMLESS THE COMPANY AND ITS AFFILIATES, LICENSEES, AND SERVICE PROVIDERS FROM ANY CLAIMS RESULTING FROM ANY ACTION TAKEN BY ANY OF THE FOREGOING PARTIES DURING, OR TAKEN AS A CONSEQUENCE OF, INVESTIGATIONS BY EITHER SUCH PARTIES OR LAW ENFORCEMENT AUTHORITIES.<\\/p>\\r\\n\\r\\n<p>However, we do not undertake to review material before it is posted on the Website, and cannot ensure prompt removal of objectionable material after it has been posted. Accordingly, we assume no liability for any action or inaction regarding transmissions, communications, or content provided by any user or third party. We have no liability or responsibility to anyone for performance or nonperformance of the activities described in this section.<\\/p>\\r\\n\\r\\n<h6>Content Standards<\\/h6>\\r\\n\\r\\n<p>These content standards apply to any and all User Contributions and use of Interactive Services. User Contributions must in their entirety comply with all applicable federal, state, local, and international laws and regulations. Without limiting the foregoing, User Contributions must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Contain any material that is defamatory, obscene, indecent, abusive, offensive, harassing, violent, hateful, inflammatory, or otherwise objectionable.<\\/li>\\r\\n\\t<li>Promote sexually explicit or pornographic material, violence, or discrimination based on race, sex, religion, nationality, disability, sexual orientation, or age.<\\/li>\\r\\n\\t<li>Infringe any patent, trademark, trade secret, copyright, or other intellectual property or other rights of any other person.<\\/li>\\r\\n\\t<li>Violate the legal rights (including the rights of publicity and privacy) of others or contain any material that could give rise to any civil or criminal liability under applicable laws or regulations or that otherwise may be in conflict with these Terms of Use and our Privacy Policy.<\\/li>\\r\\n\\t<li>Be likely to deceive any person.<\\/li>\\r\\n\\t<li>Promote any illegal activity, or advocate, promote, or assist any unlawful act.<\\/li>\\r\\n\\t<li>Cause annoyance, inconvenience, or needless anxiety or be likely to upset, embarrass, alarm, or annoy any other person.<\\/li>\\r\\n\\t<li>Impersonate any person, or misrepresent your identity or affiliation with any person or organization.<\\/li>\\r\\n\\t<li>Involve commercial activities or sales, such as contests, sweepstakes, and other sales promotions, barter, or advertising.<\\/li>\\r\\n\\t<li>Give the impression that they emanate from or are endorsed by us or any other person or entity, if this is not the case.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Copyright Infringement<\\/h6>\\r\\n\\r\\n<p>If you believe that any User Contributions violate your copyright, please contact us and send us a notice of copyright infringement. It is the policy of the Company to terminate the user accounts of repeat infringers. In accordance with the Digital Millennium Copyright Act of 1998 (&ldquo;DMCA&rdquo;), the text of which can be found on the U.S. Copyright Office website, we will respond appropriately to claims and reports of copyright infringement taking place on or through the Websites. If you believe that one of our users is, through the use of our Website, unlawfully infringing the copyright(s) in a work, and wish to have the allegedly infringing material removed, the following information in the form of a written notification (pursuant to 17 U.S.C. &sect; 512(c)) must be provided to our designated Copyright Agent:<\\/p>\\r\\n\\r\\n<p>Please note that, pursuant to 17 U.S.C. &sect; 512(f), any misrepresentation of material fact (falsities) in a written notification automatically subjects the complaining party to liability for any damages, costs and attorney&rsquo;s fees incurred by us in connection with the written notification and allegation of copyright infringement.<\\/p>\\r\\n\\r\\n<p>The Designated Copyright Agent for Green Market Exchange is:<\\/p>\\r\\n\\r\\n<p>Copyright Agent<br \\/>\\r\\nChristian Stratka<br \\/>\\r\\nGreen Market Exchange, LLC<br \\/>\\r\\nADDRESS<br \\/>\\r\\nEmail: <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Your physical or electronic signature;<\\/li>\\r\\n\\t<li>Identification of the copyrighted work(s) that you claim to have been infringed;<\\/li>\\r\\n\\t<li>Identification of the material on our services that you claim is infringing and that you request us to remove;<\\/li>\\r\\n\\t<li>Sufficient information to permit us to locate such material;<\\/li>\\r\\n\\t<li>Your address, telephone number, and e-mail address;<\\/li>\\r\\n\\t<li>A statement that you have a good faith belief that use of the objectionable material is not authorized by the copyright owner, its agent, or under the law; and<\\/li>\\r\\n\\t<li>A statement that the information in the notification is accurate, and under penalty of perjury, that you are either the owner of the copyright that has allegedly been infringed or that you are authorized to act on behalf of the copyright owner.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Reliance on Information Posted<\\/h6>\\r\\n\\r\\n<p>The information presented on or through the Website is made available solely for general information purposes. We do not warrant the accuracy, completeness, or usefulness of this information. Any reliance you place on such information is strictly at your own risk. We disclaim all liability and responsibility arising from any reliance placed on such materials by you or any other visitor to the Website, or by anyone who may be informed of any of its contents.<\\/p>\\r\\n\\r\\n<p>We do not offer any medical advice, and any information presented on our Website is not intended to be a substitute for medical advice.<\\/p>\\r\\n\\r\\n<p>This Website may include content provided by third parties, including materials provided by other users, bloggers, and third-party licensors, syndicators, aggregators, and\\/or reporting services. All statements and\\/or opinions expressed in these materials, and all articles and responses to questions and other content, other than the content provided by the Company, are solely the opinions and the responsibility of the person or entity providing those materials. These materials do not necessarily reflect the opinion of the Company. We are not responsible, or liable to you or any third party, for the content or accuracy of any materials provided by any third parties.<\\/p>\\r\\n\\r\\n<h6>Acknowledgment of Federal and State Laws<\\/h6>\\r\\n\\r\\n<p>You expressly acknowledge that this Website is for residents of states and localities with laws regulating medical or the recreational use of cannabis only and that medical cannabis collectives and patients are established pursuant to their respective local laws. Marijuana is included on Schedule 1 under the United States Controlled Substances Act. Under the federal laws of the United States of America, manufacturing, distributing, dispensing or possession of marijuana is illegal, and individuals are subject to arrest and\\/or prosecution for doing so. User further acknowledges that medical use is not recognized as a valid defense under federal laws regarding marijuana. User also acknowledges that the interstate transportation of marijuana is a federal offense.<\\/p>\\r\\n\\r\\n<h6>Changes to the Website<\\/h6>\\r\\n\\r\\n<p>We may update the content on this Website from time to time, but its content is not necessarily complete or up-to-date. Any of the material on the Website may be out of date at any given time, and we are under no obligation to update such material.<\\/p>\\r\\n\\r\\n<h6>Information About You and Your Visits to the Website<\\/h6>\\r\\n\\r\\n<p>All information we collect on this Website is subject to our Privacy Policy. By using the Website, you consent to all actions taken by us with respect to your information in compliance with the Privacy Policy.<\\/p>\\r\\n\\r\\n<p>[Online Purchases All purchases through our site or other transactions formed through the Website, or resulting from visits made by you, are governed by the following terms of sale [Additional terms and conditions may also apply to specific portions, services, or features of the Website. All such additional terms and conditions are hereby incorporated by this reference into these Terms of Use.]]<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Linking to the Website and Social Media Features<\\/h6>\\r\\n\\r\\n<p>You may link to our homepage, provided you do so in a way that is fair and legal and does not damage our reputation or take advantage of it, but you must not establish a link in such a way as to suggest any form of association, approval, or endorsement on our part.<\\/p>\\r\\n\\r\\n<p>This Website may provide certain social media features that enable you to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Link from your own or certain third-party websites to certain content on this Website.<\\/li>\\r\\n\\t<li>Send emails or other communications with certain content, or links to certain content, on this Website.<\\/li>\\r\\n\\t<li>Cause limited portions of content on this Website to be displayed or appear to be displayed on your own or certain third-party websites.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You may use these features solely as they are provided by us, solely with respect to the content they are displayed with, and otherwise in accordance with any additional terms and conditions we provide with respect to such features. Subject to the foregoing, you must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Establish a link from any website that is not owned by you.<\\/li>\\r\\n\\t<li>Cause the Website or portions of it to be displayed on, or appear to be displayed by, any other site, for example, framing, deep linking, or in-line linking.<\\/li>\\r\\n\\t<li>Link to any part of the Website other than the homepage.<\\/li>\\r\\n\\t<li>Otherwise take any action with respect to the materials on this Website that is inconsistent with any other provision of these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You agree to cooperate with us in causing any unauthorized framing or linking immediately to stop. We reserve the right to withdraw linking permission without notice. We may disable all or any social media features and any links at any time without notice in our discretion.<\\/p>\\r\\n\\r\\n<h6>Links from the Website<\\/h6>\\r\\n\\r\\n<p>If the Website contains links to other sites and resources provided by third parties, these links are provided for your convenience only. This includes links contained in advertisements, including banner advertisements and sponsored links. We have no control over the contents of those sites or resources, and accept no responsibility for them or for any loss or damage that may arise from your use of them. If you decide to access any of the third-party websites linked to this Website, you do so entirely at your own risk and subject to the terms and conditions of use for such websites.<\\/p>\\r\\n\\r\\n<h6>Geographic Restrictions<\\/h6>\\r\\n\\r\\n<p>We provide this Website for use only by persons located in the United States. We make no claims that the Website or any of its content is accessible or appropriate outside of the United States. Access to the Website may not be legal by certain persons or in certain geographic areas. If you access the Website from outside the United States, you do so on your own initiative and are responsible for compliance with local laws.<\\/p>\\r\\n\\r\\n<h6>Disclaimer of Warranties<\\/h6>\\r\\n\\r\\n<p>You understand that we cannot and do not guarantee or warrant that files available for downloading from the internet or the Website will be free of viruses or other destructive code. You are responsible for implementing sufficient procedures and checkpoints to satisfy your particular requirements for anti-virus protection and accuracy of data input and output, and for maintaining a means external to our site for any reconstruction of any lost data.<\\/p>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, WE WILL NOT BE LIABLE FOR ANY LOSS OR DAMAGE CAUSED BY A DISTRIBUTED DENIAL-OF-SERVICE ATTACK, VIRUSES, OR OTHER TECHNOLOGICALLY HARMFUL MATERIAL THAT MAY INFECT YOUR COMPUTER EQUIPMENT, COMPUTER PROGRAMS, DATA, OR OTHER PROPRIETARY MATERIAL DUE TO YOUR USE OF THE WEBSITE OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE OR TO YOUR DOWNLOADING OF ANY MATERIAL POSTED ON IT, OR ON ANY WEBSITE LINKED TO IT.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>YOUR USE OF THE WEBSITE, ITS CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE IS AT YOUR OWN RISK. THE WEBSITE, ITS CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE ARE PROVIDED ON AN &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; BASIS, WITHOUT ANY WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. NEITHER THE COMPANY NOR ANY PERSON ASSOCIATED WITH THE COMPANY MAKES ANY WARRANTY OR REPRESENTATION WITH RESPECT TO THE COMPLETENESS, SECURITY, RELIABILITY, QUALITY, ACCURACY, OR AVAILABILITY OF THE WEBSITE. WITHOUT LIMITING THE FOREGOING, NEITHER THE COMPANY NOR ANYONE ASSOCIATED WITH THE COMPANY REPRESENTS OR WARRANTS THAT THE WEBSITE, ITS CONTENT, OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL BE ACCURATE, RELIABLE, ERROR-FREE, OR UNINTERRUPTED, THAT DEFECTS WILL BE CORRECTED, THAT OUR SITE OR THE SERVER THAT MAKES IT AVAILABLE ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE WEBSITE OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL OTHERWISE MEET YOUR NEEDS OR EXPECTATIONS.<\\/p>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, THE COMPANY HEREBY DISCLAIMS ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR PARTICULAR PURPOSE.<\\/p>\\r\\n\\r\\n<p>THE FOREGOING DOES NOT AFFECT ANY WARRANTIES THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.<\\/p>\\r\\n\\r\\n<h6>Limitation on Liability<\\/h6>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, IN NO EVENT WILL THE COMPANY, ITS AFFILIATES, OR THEIR LICENSORS, SERVICE PROVIDERS, EMPLOYEES, AGENTS, OFFICERS, OR DIRECTORS BE LIABLE FOR DAMAGES OF ANY KIND, UNDER ANY LEGAL THEORY, ARISING OUT OF OR IN CONNECTION WITH YOUR USE, OR INABILITY TO USE, THE WEBSITE, ANY WEBSITES LINKED TO IT, ANY CONTENT ON THE WEBSITE OR SUCH OTHER WEBSITES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO, PERSONAL INJURY, PAIN AND SUFFERING, EMOTIONAL DISTRESS, LOSS OF REVENUE, LOSS OF PROFITS, LOSS OF BUSINESS OR ANTICIPATED SAVINGS, LOSS OF USE, LOSS OF GOODWILL, LOSS OF DATA, AND WHETHER CAUSED BY TORT (INCLUDING NEGLIGENCE), BREACH OF CONTRACT, OR OTHERWISE, EVEN IF FORESEEABLE. THE FOREGOING DOES NOT AFFECT ANY LIABILITY THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.<\\/p>\\r\\n\\r\\n<h6>Indemnification<\\/h6>\\r\\n\\r\\n<p>You agree to defend, indemnify, and hold harmless the Company, its affiliates, licensors, and service providers, and its and their respective officers, directors, employees, contractors, agents, licensors, suppliers, successors, and assigns from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable attorneys&#39; fees) arising out of or relating to your violation of these Terms of Use or your use of the Website, including, but not limited to, your User Contributions, any use of the Website&#39;s content, services, and products other than as expressly authorized in these Terms of Use, or your use of any information obtained from the Website.<\\/p>\\r\\n\\r\\n<h6>Governing Law and Jurisdiction<\\/h6>\\r\\n\\r\\n<p>All matters relating to the Website and these Terms of Use, and any dispute or claim arising therefrom or related thereto (in each case, including non-contractual disputes or claims), shall be governed by and construed in accordance with the internal laws of the State of Maine without giving effect to any choice or conflict of law provision or rule (whether of the State of Maine or any other jurisdiction). Any legal suit, action, or proceeding arising out of, or related to, these Terms of Use or the Website shall be instituted exclusively in the federal courts of the United States or the courts of the State of Maine, although we retain the right to bring any suit, action, or proceeding against you for breach of these Terms of Use in your jurisdiction of residence or any other relevant jurisdiction. You waive any and all objections to the exercise of jurisdiction over you by such courts and to venue in such courts.<\\/p>\\r\\n\\r\\n<h6>Arbitration<\\/h6>\\r\\n\\r\\n<p>At Company&#39;s sole discretion, it may require You to submit any disputes arising from these Terms of Use or use of the Website, including disputes arising from or concerning their interpretation, violation, invalidity, non-performance, or termination, to final and binding arbitration under the Rules of Arbitration of the American Arbitration Association applying Maine law.<\\/p>\\r\\n\\r\\n<h6>Waiver and Severability<\\/h6>\\r\\n\\r\\n<p>No waiver by the Company of any term or condition set out in these Terms of Use shall be deemed a further or continuing waiver of such term or condition or a waiver of any other term or condition, and any failure of the Company to assert a right or provision under these Terms of Use shall not constitute a waiver of such right or provision. If any provision of these Terms of Use is held by a court or other tribunal of competent jurisdiction to be invalid, illegal, or unenforceable for any reason, such provision shall be eliminated or limited to the minimum extent such that the remaining provisions of the Terms of Use will continue in full force and effect.<\\/p>\\r\\n\\r\\n<h6>Entire Agreement<\\/h6>\\r\\n\\r\\n<p>The Terms of Use and our Privacy Policy constitute the sole and entire agreement between you and Green Market Exchange, LLC regarding the Website and supersede all prior and contemporaneous understandings, agreements, representations, and warranties, both written and oral, regarding the Website.<\\/p>\\r\\n\\r\\n<h6>Your Comments and Concerns<\\/h6>\\r\\n\\r\\n<p>This website is operated by Green Market Exchange, LLC, a Maine limited liability company. All feedback, comments, requests for technical support, and other communications relating to the Website should be directed to: <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\",\"meta_title\":\"Terms Of Use\",\"meta_keyword\":\"Terms Of Use\",\"meta_description\":\"Terms Of Use\"}', '2022-04-14 04:02:23', '2023-02-24 18:41:00', NULL), (1, 3, 'About us', 'about-us', '{\"section1_main_title\":\"About Us\",\"section1_title\":\"Our Goal\",\"section1_description\":\"Green Market Exchange strives to be the central provider of cannabis wholesale market information and data for the cannabis business ecosystem. We aspire to create and develop a world class platform to connect cannabis based companies from every corner of the globe with the hopes of making the world a greener place.\",\"section1_list_title1\":\"The Future is Green\",\"section1_list_description1\":\"<p>The cannabis indusustry is poised to explode to new hights. At Green Market Exchange, we&#39;re buliding a community and marketplace to be part of your journey into the green frontier.&nbsp;<\\/p>\",\"section1_list_image1\":\"\\/cms\\/1653912907-about-img.jpg\",\"section1_list_title2\":\"Power in Perspective\",\"section1_list_description2\":\"<p>Green Market Exchange values diversity in perspective. As we continue to devlop our platform and grow our product offerings, we ask our users and the community to be transparent with us and offer suggestions to help us create true value for you,&nbsp;the community and the industry.<\\/p>\",\"section1_list_image2\":\"\\/cms\\/1653912907-about-tag-img.jpg\",\"section2_main_title\":\"Our Roots\",\"section2_description\":\"<p>Green Market Exchange was founded in 2020 on the basis of cannabis being a health beneficial product and a positive alternative to other common consumable products. Green Market Exchange&nbsp;believes cannabis is a natural&nbsp;medicine that has the potenial to not only better invidual health but connect society in an optimistic&nbsp;manner as the cannabis community envokes peace.&nbsp;We hope to not only create an awesome product but more importantly a platform that connects, inspires and radiates the values&nbsp;of the cannabis community.<\\/p>\",\"section2_quote\":\"\",\"section2_image\":\"\\/cms\\/1650008538-cart-image-7.png\",\"meta_title\":\"About Us\",\"meta_keyword\":\"About Us\",\"meta_description\":\"About Us\"}', '2022-04-14 04:02:23', '2022-12-07 16:55:39', NULL), (1, 4, 'Contact us', 'contact-us', NULL, '2022-07-11 13:19:52', '2022-07-11 13:19:52', NULL), (1, 5, 'Privacy Policy', 'privacy-policy', '{\"main_title\":\"Privacy Policy\",\"main_content\":\"<p>Green Market Exchange Inc. (&quot;Company&quot;, &quot;We&quot;, or &ldquo;Us&rdquo;) respect your privacy and are committed to protecting it through our compliance with this policy. This policy describes the types of information we may collect from you or that you may provide when you visit the website <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\/\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a> (our &quot;Website&quot;) and our practices for collecting, using, maintaining, protecting, and disclosing that information.<\\/p>\\r\\n\\r\\n<p>This policy applies to information we collect on this Website, as well as, any related online services, sales, marketing, or events we conduct (including in any electronic messages between you and us). It does not apply to information collected by us offline or through any other means, including on any other website operated by us or any third party, including through any application or content (including advertising) that may link to or be accessible from or on the Website.<\\/p>\\r\\n\\r\\n<p>Please read this policy carefully to understand our policies and practices regarding your information and how we will treat it. If you do not agree with our policies and practices, your choice is not to use our Website. By accessing or using this Website, you agree to this privacy policy. This policy may change from time to time. Your continued use of this Website after we make changes is deemed to be acceptance of those changes, so please check the policy periodically for updates.<\\/p>\\r\\n\\r\\n<h6>Children Under the Age of 18<\\/h6>\\r\\n\\r\\n<p>Our Website is not intended for anyone under 21 years of age. No one under age 21 may provide any personal information to the Website. We do not knowingly collect personal information from children under 18. If you are under 21, do not use or provide any information on this Website. If we learn we have collected or received personal information from a child under 18 without verification of parental consent, we will delete that information. If you believe we might have any information from or about a child under 18, please contact us at <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a>.<\\/p>\\r\\n\\r\\n<h6>Information We Collect About You and How We Collect It<\\/h6>\\r\\n\\r\\n<p>We collect several types of information from and about users of our Website, including information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>By which you may be personally identified, such as name, postal address (in whole or part), e-mail address, telephone number, job title, professional experience, or any other identifier by which you may be contacted online or offline (&quot;personal information&quot;);<\\/li>\\r\\n <li>Some users may also submit their (i) means of age verification, or (ii) medical marijuana recommendation, including their recommending doctor&rsquo;s name and license number, contact information, verification methodology, and verification number (&ldquo;Medical Marijuana Information&rdquo;).<\\/li>\\r\\n <li>That is about you but individually does not identify you; and\\/or<\\/li>\\r\\n <li>About your IP address, browser, network, device, internet connection, the equipment you use to access our Website, and Website usage details (including, without limitation, clinks, internal links, pages visited, scrolling, searches, and timestamps).<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<p>We collect this information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Directly from you when you voluntarily provide it to us.<\\/li>\\r\\n <li>Automatically as you navigate through the site. Information collected automatically may include usage details, IP addresses, and information collected through cookies, web beacons, and other tracking technologies.<\\/li>\\r\\n <li>From third parties, for example, our business partners.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<h6>Information You Provide to Us<\\/h6>\\r\\n\\r\\n<p>The information we collect on or through our Website may include:<\\/p>\\r\\n<ul>\\r\\n <li>Information that you provide by filling in forms on our Website. This includes information provided at the time of purchasing or using our services or products, subscribing to our newsletter, registering for courses we host, or otherwise registering to use our Website. We may also ask you for information when you report a problem with our Website (When you submit information to this website via webform, we collect the data requested in the webform in order to track and respond to your submissions. We may share this information with our Website hosting provider, so that they can provide website services to us.<\\/li>\\r\\n <li>Records and copies of your correspondence (including email addresses), if you contact us.<\\/li>\\r\\n <li>Details of transactions you carry out through our Website and of the fulfillment of your orders. You may be required to provide financial information before placing an order through our Website.<\\/li>\\r\\n <li>Information you otherwise provide us via our Website.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>You also may provide information to be published or displayed (hereinafter, &quot;posted&quot;) on public areas of the Website, or transmitted to other users of the Website or third parties (collectively, &quot;User Contributions&quot;). Your User Contributions are posted on and transmitted to others at your own risk. Although, please be aware that no security measures are perfect or impenetrable. Additionally, we cannot control the actions of other users of the Website with whom you may choose to share your User Contributions. Therefore, we cannot and do not guarantee that your User Contributions will not be viewed by unauthorized persons.<\\/p>\\r\\n\\r\\n<h6>Information We Collect Through Automatic Data Collection Technologies<\\/h6>\\r\\n\\r\\n<p>As you navigate through and interact with our Website, we may use automatic data collection technologies to collect certain information about your equipment, browsing actions, and patterns, including:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Details of your visits to our Website and other communication data and the resources that you access and use on the Website.<\\/li>\\r\\n <li>Information about your computer and internet connection, including your IP address, operating system, and browser type.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n\\r\\n<p>We also may use these technologies to collect information about your online activities over time and across third-party websites or other online services (behavioral tracking). The information we collect automatically may include personal information or we may maintain it or associate it with personal information we collect in other ways or receive from third parties. It helps us to improve our Website and to deliver a better and more personalized service, including by enabling us to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Estimate our audience size and usage patterns.<\\/li>\\r\\n <li>Store information about your preferences, allowing us to customize our Website according to your individual interests.<\\/li>\\r\\n <li>Speed up your searches.<\\/li>\\r\\n <li>Recognize you when you return to our Website.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<p>The technologies we use for this automatic data collection may include:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Cookies (or browser cookies). A cookie is a small file placed on the hard drive of your computer. You may refuse to accept browser cookies by activating the appropriate setting on your browser. However, if you select this setting you may be unable to access certain parts of our Website. Unless you have adjusted your browser setting so that it will refuse cookies, our system will issue cookies when you direct your browser to our Website. We may share information with our website analytics provider, google analytics, to learn about site traffic and activity. Flash Cookies. Certain features of our Website may use local stored objects (or Flash cookies) to collect and store information about your preferences and navigation to, from, and on our Website.<\\/li>\\r\\n <li>Flash Cookies. Certain features of our Website may use local stored objects (or Flash cookies) to collect and store information about your preferences and navigation to, from, and on our Website. Flash cookies are not managed by the same browser settings as are used for browser cookies. For information about managing your privacy and security settings for Flash cookies, see Choices About How We Use and Disclose Your Information.<\\/li>\\r\\n <li>Web Beacons. Pages of our the Website and our e-mails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of certain website content and verifying system and server integrity).<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<h6>Third-Party Use of Cookies and Other Tracking Technologies<\\/h6>\\r\\n\\r\\n<p>Some content or applications, including advertisements, on the Website are served by third-parties, including advertisers, ad networks and servers, content providers, and application providers. These third parties may use cookies alone or in conjunction with web beacons or other tracking technologies to collect information about you when you use our website. The information they collect may be associated with your personal information or they may collect information, including personal information, about your online activities over time and across different websites and other online services. They may use this information to provide you with interest-based (behavioral) advertising or other targeted content. Our third-party services may include Amazon Web Services, google analytics, and may include others in the future. We do not control these third parties&#39; tracking technologies or how they may be used. If you have any questions about an advertisement or other targeted content, you should contact the responsible provider directly. For information about how you can opt out of receiving targeted advertising from many providers, see Choices About How We Use and Disclose Your Information.<\\/p>\\r\\n\\r\\n<h6>How We Use Your Information<\\/h6>\\r\\n\\r\\n<p>We use information that we collect about you or that you provide to us, including any personal information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To present our Website and its contents to you.<\\/li>\\r\\n <li>To provide you with information, products, or services that you request from us.<\\/li>\\r\\n <li>To fulfill any other purpose for which you provide it.<\\/li>\\r\\n <li>To carry out our obligations and enforce our rights arising from any contracts entered into between you and us, including for billing and collection.<\\/li>\\r\\n <li>To notify you about changes to our Website or any products or services we offer or provide though it.<\\/li>\\r\\n <li>In any other way we may describe when you provide the information.<\\/li>\\r\\n <li>For any other purpose with your consent.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We may also use your information to contact you about our own and third-parties&#39; goods and services and\\/or promotional offers that may be of interest to you, industry news and dates, and other information via email newsletter. If you do not want us to use your information in this way, please click &ldquo;unsubscribe&rdquo; from any email newsletter you may receive from us in the future.<\\/p>\\r\\n\\r\\n<p>We may use the information we have collected from you to enable us to display advertisements to our advertisers&#39; target audiences. Even though we do not disclose your personal information for these purposes without your consent, if you click on or otherwise interact with an advertisement, the advertiser may assume that you meet its target criteria.<\\/p>\\r\\n\\r\\n<h6>Disclosure of Your Information<\\/h6>\\r\\n\\r\\n<p>We may disclose aggregated information about our users, and information that does not identify any individual, without restriction.<\\/p>\\r\\n\\r\\n<p>We may disclose personal information that we collect or you provide as described in this privacy policy:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To our subsidiaries and affiliates.<\\/li>\\r\\n <li>To contractors, service providers, and other third parties we use to support our business[ and who are bound by contractual obligations to keep personal information confidential and use it only for the purposes for which we disclose it to them.<\\/li>\\r\\n <li>To a buyer or other successor in the event of a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which personal information held by us about our Website users is among the assets transferred.<\\/li>\\r\\n <li>To third parties to market their products or services to you if you have not opted out of these disclosures.<\\/li>\\r\\n <li>To fulfill the purpose for which you provide it. For example, if you give us an email address to use the &quot;email a friend&quot; feature of our Website, we will transmit the contents of that email and your email address to the recipients.<\\/li>\\r\\n <li>For any other purpose disclosed by us when you provide the information.<\\/li>\\r\\n <li>With your consent.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We may also disclose your personal information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To comply with any court order, law, or legal process, including to respond to any government or regulatory request.<\\/li>\\r\\n <li>Medical Marijuana Information may need to be disclosed, along with other required information, for the purpose of calculating taxes, ensuring legal compliance.<\\/li>\\r\\n <li>To enforce or apply our terms of use and other agreements, including for billing and collection purposes.<\\/li>\\r\\n <li>If we believe disclosure is necessary or appropriate to protect the rights, property, or safety of us, our customers, or others. This includes exchanging information with other companies and organizations for the purposes of fraud protection and credit risk reduction.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<h6>Choices About How We Use and Disclose Your Information<\\/h6>\\r\\n\\r\\n<p>We strive to provide you with choices regarding the personal information you provide to us. We have created mechanisms to provide you with the following control over your information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Tracking Technologies and Advertising. You can set your browser to refuse all or some browser cookies, or to alert you when cookies are being sent. To learn how you can manage your Flash cookie settings, visit the Flash player settings page on Adobe&#39;s website. If you disable or refuse cookies, please note that some parts of this site may then be inaccessible or not function properly.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We do not control third parties&#39; collection or use of your information to serve interest-based advertising. However these third parties may provide you with ways to choose not to have your information collected or used in this way. You can opt out of receiving targeted ads from members of the Network Advertising Initiative (&quot;NAI&quot;) on the NAI&#39;s website.<\\/p>\\r\\n\\r\\n<h6>Accessing and Correcting Your Information<\\/h6>\\r\\n\\r\\n<p>You may also send us an email at <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a> to request access to, correct or delete any personal information that you have provided to us. We cannot however, guarantee that can delete any such information once it has already been provided to us and\\/or third parties. In certain cases, we cannot delete your personal information except by also deleting your user account. We may not accommodate a request to change information if we believe the change would violate any law or legal requirement or cause the information to be incorrect. If you delete your User Contributions from the Website, copies of your User Contributions may remain viewable in cached and archived pages, or might have been copied or stored by other Website users.<\\/p>\\r\\n\\r\\n<h6>Your California Privacy Rights<\\/h6>\\r\\n\\r\\n<p>California&#39;s &quot;Shine the Light&quot; law (Civil Code Section &sect; 1798.83) permits users who are California residents to request certain information regarding our disclosure of personal information to third parties for their direct marketing purposes. To make such a request, please send an email to <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a>.<\\/p>\\r\\n\\r\\n<p>If you are under 18 years of age, reside in California, and have a registered account with the Website, you have the right to request removal of unwanted data that you publicly post on the Website. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Website, but please be aware that the data may not be completely or comprehensively removed from all our systems (e.g. backups, etc.).<\\/p>\\r\\n\\r\\n<h6>Data Security<\\/h6>\\r\\n\\r\\n<p>We have implemented measures designed to secure your personal information from accidental loss and from unauthorized access, use, alteration, and disclosure. The safety and security of your information also depends on you. Where we have given you (or where you have chosen) a password for access to certain parts of our Website, you are responsible for keeping this password confidential. We ask you not to share your password with anyone. Unfortunately, the transmission of information via the internet is not completely secure. Although we do our best to protect your personal information, we cannot guarantee the security of your personal information transmitted to our Website. Any transmission of personal information is at your own risk. We are not responsible for circumvention of any privacy settings or security measures contained on the Website.<\\/p>\\r\\n\\r\\n<h6>Changes to Our Privacy Policy<\\/h6>\\r\\n\\r\\n<p>It is our policy to post any changes we make to our privacy policy on this page. If we make material changes to how we treat our users&#39; personal information, we will notify you by email to the email address specified in your account and\\/or through a notice on the Website home page. The date the privacy policy was last revised is identified at the top of the page. You are responsible for ensuring we have an up-to-date active and deliverable email address for you, and for periodically visiting our Website and this privacy policy to check for any changes.<\\/p>\\r\\n\\r\\n<h6>Contact Information<\\/h6>\\r\\n\\r\\n<p>To ask questions or comment about this privacy policy and our privacy practices, contact us at:<\\/p>\\r\\n\\r\\n<p><a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\",\"meta_title\":\"Privacy Policy\",\"meta_keyword\":\"Privacy Policy\",\"meta_description\":\"Privacy Policy\"}', '2022-11-11 17:51:01', '2022-11-23 05:34:49', NULL), (1, 6, 'Subscription Policy', 'subscription-policy', '{\"main_title\":\"Subscription Policy\",\"main_content\":\"<div classname=\\\"content-box\\\">\\r\\n<h6>Payment<\\/h6>\\r\\n\\r\\n<p>All subscriptions must be paid in advance on a monthly basis. Payment will be charged to the customer&#39;s credit card or debit card on the day a customer selects a subscription. If the payment is not successful, the subscription will be suspended until payment is received.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Cancellation<\\/h6>\\r\\n\\r\\n<p>Customers may cancel their subscription at any time through their manage subscription settings. Cancellation will be effective at the end of the current billing period. No refunds will be given for partial days, months or years of service.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Changes to subscription plans<\\/h6>\\r\\n\\r\\n<p>Customers may upgrade or downgrade their subscription plan at any time through their manage subscription settings. Any changes to the subscription plan will take effect immediately, customers will be charged for the current billing period for an upgraded plan if they are downgrading their subscription.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Changes to subscription fees<\\/h6>\\r\\n\\r\\n<p>We reserve the right to change the subscription fees at any time. Any changes will be communicated to customers at least 30 days in advance and will take effect at the end of the current billing period.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Termination<\\/h6>\\r\\n\\r\\n<p>We reserve the right to terminate a subscription at any time for any reason, with or without notice. If we terminate a subscription without cause, we will provide a pro-rated refund for the remaining subscription period.<\\/p>\\r\\n\\r\\n<p>By subscribing to Green Market Exchange, you agree to the terms of this subscription policy. If you have any questions or concerns, please do not hesitate to contact us.<\\/p>\\r\\n<\\/div>\",\"meta_title\":\"Subscription Policy\",\"meta_keyword\":\"Subscription Policy\",\"meta_description\":\"Subscription Policy\"}', '2023-02-24 04:02:23', '2023-02-24 18:40:20', NULL); DROP TABLE IF EXISTS `comment_like`; CREATE TABLE `comment_like` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `commentId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `commentId` (`commentId`), CONSTRAINT `comment_like_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, CONSTRAINT `comment_like_ibfk_2` FOREIGN KEY (`commentId`) REFERENCES `comments` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `comment_replies`; CREATE TABLE `comment_replies` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `commentId` int DEFAULT NULL, `userId` int DEFAULT NULL, `reply` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `commentId` (`commentId`), KEY `userId` (`userId`), CONSTRAINT `comment_replies_ibfk_1` FOREIGN KEY (`commentId`) REFERENCES `comments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `comment_replies_ibfk_2` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; INSERT INTO `comment_replies` (`isActive`, `id`, `commentId`, `userId`, `reply`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 20, 'This is sub test @john2', '2023-07-11 18:59:49', '2023-07-11 18:59:49', NULL); DROP TABLE IF EXISTS `comments`; CREATE TABLE `comments` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `comment` text, `commentUniqueId` varchar(255) DEFAULT NULL, `replyCount` int DEFAULT '0', `likeCount` int DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `commentUniqueId` (`commentUniqueId`), KEY `userId` (`userId`), KEY `postId` (`postId`), CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; INSERT INTO `comments` (`isActive`, `id`, `userId`, `postId`, `comment`, `commentUniqueId`, `replyCount`, `likeCount`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 20, 2, 'Hello @hogntopjohn this is test reply', 'ljynp5mg8aimpb6oib', 1, 0, '2023-07-11 18:59:25', '2023-07-11 18:59:49', NULL); DROP TABLE IF EXISTS `email_template`; CREATE TABLE `email_template` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `headerId` int DEFAULT NULL, `footerId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `body` text, `status` enum('1','2') DEFAULT NULL COMMENT '1 for active, 2 for inactive', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `headerId` (`headerId`), KEY `footerId` (`footerId`), CONSTRAINT `email_template_ibfk_1` FOREIGN KEY (`headerId`) REFERENCES `email_template_header` (`id`) ON UPDATE CASCADE, CONSTRAINT `email_template_ibfk_2` FOREIGN KEY (`footerId`) REFERENCES `email_template_footer` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 1, 'Welcome', 'Welcome to GMX', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 2, 1, 1, 'Reset password | User', 'Reset Password', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Reset Password</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Dear <b>{NAME}</b>, you are receiving this email because you requested to reset your password at GMX.</p>\n\n <p style=\"margin-top: 30px;margin-bottom: 0px;\">Click the button below to reset your password.</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">RESET PASSWORD</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">If you did not request this, please contact <a href=\"{LINK_1}\">support</a> for assistance.</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 3, 1, 1, 'Contact Us | Admin', 'Contact us', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"hero-white-icon-outline0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\"><!--[if mso]>\n <table width=\"584\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\">\n <![endif]-->\n <div data-color=\"Light\" data-max=\"23\" data-min=\"15\" data-size=\"Text MD\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 data-color=\"Dark\" data-max=\"40\" data-min=\"20\" data-size=\"Heading 2\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Contact us</h2>\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td><!--[if mso]>\n <table width=\"800\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td>\n <![endif]-->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">First Name</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{FIRST_NAME}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Last Name</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{LAST_NAME}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Phone Number</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{PHONE_NUMBER}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 100%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Message</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"100\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 100%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{MESSAGE}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n </table>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-06-01 09:44:36', NULL), (1, 4, 1, 1, 'Contact Us | User', 'Contact us', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"hero-white-icon-outline0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\"><!--[if mso]>\n <table width=\"584\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\">\n <![endif]-->\n <div data-color=\"Light\" data-max=\"23\" data-min=\"15\" data-size=\"Text MD\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 data-color=\"Dark\" data-max=\"40\" data-min=\"20\" data-size=\"Heading 2\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Thank you for getting in touch.</h2>\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n </table>\n <!-- ------------------------------------------------ -->\n \n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"button-dark0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\"><!-- -------------------------------------- -->\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">We will review your message and come back to you shortly. Thank you for reaching out to the GMX. We look forward to connecting soon.</p>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n <!-- --------------------------------------- --></td>\n </tr>\n </tbody>\n </table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 5, 1, 1, 'New member arrived. Retailer| Admin', 'New member arrived', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">New Member Arrived</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Name</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{NAME}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Role</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ROLE}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO MEMBERS</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 6, 1, 1, 'New member arrived. Brand | Admin', 'New member arrived', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">New Member Arrived.</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" cstyle=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">(Selected plan : {PLAN})</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{NAME}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Role</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ROLE}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO MEMBERS</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 7, 1, 1, 'Order Placed | Retailer', 'Order Placed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-21 15:03:30', NULL), (1, 8, 1, 1, 'Order Placed | Brand', 'New Order: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE}/{UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:36:15', NULL), (1, 9, 1, 1, 'Order Accepted | Retailer', 'Order Accepted: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:36:40', NULL), (1, 10, 1, 1, 'Order Accepted | Brand', 'Order Accepted: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE}/{UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:37:04', NULL), (1, 11, 1, 1, 'Order Cancelled | Retailer', 'Order Cancelled: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:43:45', NULL), (1, 12, 1, 1, 'Order Cancelled | Brand', 'Order Cancelled: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:44:38', NULL), (1, 13, 1, 1, 'Order Delivered | Retailer', 'Order Delivered: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:45:12', NULL), (1, 14, 1, 1, 'Order Delivered | Brand', 'Order Delivered: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:45:44', NULL), (1, 15, 1, 1, 'Order Received | Retailer', 'Order Received: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:46:09', NULL), (1, 16, 1, 1, 'Order Received | Brand', 'Order Received: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:47:19', NULL), (1, 17, 1, 1, 'Order Completed | Retailer', 'Order Completed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:47:45', NULL), (1, 18, 1, 1, 'Order Completed | Brand', 'Order Completed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:48:22', NULL), (1, 19, 1, 1, 'Profile Approved', 'Your Profile has been approved', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Congratulations! {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Your profile is verified by administrator.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">You can now login <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a></p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 20, 1, 1, 'Quote Cancelled | Retailer', 'Quote Cancelled: {QUOTE_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quote ID</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUOTEID}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO QUOTE</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 21, 1, 1, 'Quote Cancelled | Brand', 'Quote Cancelled: {QUOTE_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quote ID</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUOTEID}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Cutomer Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO QUOTE</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 22, 1, 1, 'Requested Quotes', 'Requested Quotes', '{QUOTE_DETAILS}', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 23, 1, 1, 'Unread Messages', 'Unread Messages', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">{MESSAGE}</div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-11-10 07:52:00', '2022-11-10 07:52:00', NULL), (1, 24, 1, 1, 'Upgraded Subscription | Brand', 'Upgraded Subscription', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 25, 1, 1, 'Downgraded Subscription | Brand', 'Downgraded Subscription', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 26, 1, 1, 'Mention in a post | User', 'Tagged in a Post: Let\'s Check It Out!', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Tagged in a post! Check it out!</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Dear <b>{NAME}</b>, You&#39;ve been tagged in a post! Take a look and see what it&#39;s all about. Don&#39;t miss out on the conversation.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">&nbsp;</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\"><strong>{MESSAGE}</strong></p>\r\n\r\n <p style=\"margin-top: 30px;margin-bottom: 0px;\">Click the button below to join the conversion.</p>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">JOIN CONVERSION</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2023-07-09 00:00:00', '2023-07-09 00:00:00', NULL); DROP TABLE IF EXISTS `email_template_footer`; CREATE TABLE `email_template_footer` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` text, `status` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; INSERT INTO `email_template_footer` (`isActive`, `id`, `title`, `description`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Footer 1', '<!--footer-->\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td style=\"font-size: 48px;line-height: 20px;height: 20px;background-color: #ffffff;\">&nbsp;</td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #f2f2f2;padding-left: 16px;padding-right: 16px;padding-bottom: 23px;\">\n <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\">\n <div style=\"font-size: 32px; line-height: 32px; height: 32px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 9px;margin-bottom: 14px;font-size: 14px;line-height: 21px;color:#333;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 8px;width: 100%;\">&copy; {COPYRIGHTYEAR} GMX. All Rights Reserved.</p>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\">\n\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n<!--footer-->', 1, '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL); DROP TABLE IF EXISTS `email_template_header`; CREATE TABLE `email_template_header` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` text, `status` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; INSERT INTO `email_template_header` (`isActive`, `id`, `title`, `description`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Header 1', '<title></title>\r\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans\" rel=\"stylesheet\" type=\"text/css\" />\r\n<style media=\"screen\" type=\"text/css\">[style*=\'Open Sans\'] {\r\n font-family: \'Open Sans\', Arial, sans-serif !important\r\n }\r\n</style>\r\n<div>\r\n<div><!--header-->\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; background-color:#f2f2f2; padding: 8px;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\"><a href=\"{BASE_URL}\" style=\"text-decoration: none;outline: none;color: #ffffff;\"><img alt=\"GMX\" src=\"https://assets.greenmarketexchange.com/settings/main-logo.png\" style=\"max-width:240px;-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%; outline: none;text-decoration: none;\" /></a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>', 1, '2022-05-10 00:00:00', '2022-11-04 12:13:11', NULL); DROP TABLE IF EXISTS `followers`; CREATE TABLE `followers` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `followingId` int DEFAULT NULL, `followerId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `followingId` (`followingId`), KEY `followerId` (`followerId`), CONSTRAINT `followers_ibfk_1` FOREIGN KEY (`followingId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `followers_ibfk_2` FOREIGN KEY (`followerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; INSERT INTO `followers` (`isActive`, `id`, `followingId`, `followerId`, `createdAt`, `updatedAt`) VALUES (0, 1, 19, 1, '2023-03-05 17:56:57', '2023-03-05 17:57:18'), (1, 2, 9, 8, '2023-06-19 03:04:33', '2023-06-19 03:04:33'); DROP TABLE IF EXISTS `ioro`; CREATE TABLE `ioro` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; INSERT INTO `ioro` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Indoor', '2022-05-11 04:18:47', '2022-05-11 04:18:47', NULL), (1, 2, 'Outdoor', '2022-05-11 04:18:47', '2022-05-11 04:18:47', NULL); DROP TABLE IF EXISTS `license_types`; CREATE TABLE `license_types` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; INSERT INTO `license_types` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Recreational', '2022-07-18 06:22:13', '2022-07-18 20:31:14', NULL), (1, 2, 'Medical', '2022-07-18 06:22:13', '2022-07-18 20:31:26', NULL), (1, 3, NULL, '2022-07-19 06:51:11', '2022-07-19 06:51:19', '2022-07-19 06:51:19'), (1, 4, NULL, '2022-07-19 07:12:59', '2022-07-19 07:13:21', '2022-07-19 07:13:21'); DROP TABLE IF EXISTS `likes`; CREATE TABLE `likes` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `postId` (`postId`), CONSTRAINT `likes_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, CONSTRAINT `likes_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `med_rec`; CREATE TABLE `med_rec` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; INSERT INTO `med_rec` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Medical', '2022-05-02 00:00:00', '2022-12-07 16:30:43', '2022-12-07 16:30:43'), (1, 2, 'Recreational', '2022-05-04 00:00:00', '2023-03-22 12:57:48', NULL), (1, 3, 'Med', '2022-05-04 00:00:00', '2022-11-21 15:27:23', '2022-11-21 15:27:23'), (2, 4, 'Medical', '2022-06-10 01:30:19', '2022-06-10 01:30:26', '2022-10-04 00:00:00'), (1, 5, 'Rec', '2022-10-26 22:45:40', '2022-11-21 15:27:26', '2022-11-21 15:27:26'), (1, 6, 'Medical', '2023-03-22 12:58:01', '2023-05-16 02:17:43', NULL); DROP TABLE IF EXISTS `messages`; CREATE TABLE `messages` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `fromId` int DEFAULT NULL, `toId` int DEFAULT NULL, `message` text, `attachment` enum('1','2') DEFAULT NULL COMMENT '1 for yes,2 for no', `fileType` varchar(255) DEFAULT NULL, `fileSize` varchar(255) DEFAULT NULL, `readStatus` enum('1','2') DEFAULT NULL COMMENT '1 for read, 2 for unread', `mailSend` enum('1','2') DEFAULT '2' COMMENT '1 for send, 2 for pending', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `fromId` (`fromId`), KEY `toId` (`toId`), CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`fromId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `messages_ibfk_2` FOREIGN KEY (`toId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; DROP TABLE IF EXISTS `orders`; CREATE TABLE `orders` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `brandId` int DEFAULT NULL, `retailerId` int DEFAULT NULL, `orderId` varchar(255) DEFAULT NULL, `productId` int DEFAULT NULL, `categoryId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `amount` float(10,2) DEFAULT NULL, `total` float(10,2) DEFAULT NULL, `cancelledBy` int DEFAULT NULL, `cancelledAt` datetime DEFAULT NULL, `status` enum('1','2','3','4','5','6') DEFAULT NULL COMMENT '1 for Placed, 2 for Accepted, 3 for Cancelled, 4 for Delivered, 5 for Received, 6 for Completed', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `brandId` (`brandId`), KEY `retailerId` (`retailerId`), KEY `productId` (`productId`), KEY `categoryId` (`categoryId`), CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `orders_ibfk_2` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `orders_ibfk_3` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `orders_ibfk_4` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; INSERT INTO `orders` (`isActive`, `id`, `brandId`, `retailerId`, `orderId`, `productId`, `categoryId`, `quantity`, `amount`, `total`, `cancelledBy`, `cancelledAt`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 9, 'ORD00000001', 1, 17, 5, 500.00, 2500.00, NULL, NULL, '5', '2023-01-11 00:37:56', '2023-01-11 00:41:44', NULL), (1, 2, 1, 9, 'ORD00000002', 1, 17, 1, 5.00, 5.00, NULL, NULL, '2', '2023-01-16 02:45:33', '2023-01-16 02:46:03', NULL), (1, 3, 1, 9, 'ORD00000003', 1, 17, 2, 10.00, 20.00, NULL, NULL, '4', '2023-02-05 19:55:43', '2023-02-23 20:12:19', NULL), (1, 4, 1, 9, 'ORD00000004', 1, 17, 1, 100.00, 100.00, NULL, NULL, '1', '2023-02-08 01:46:34', '2023-02-08 01:46:34', NULL), (1, 5, 1, 9, 'ORD00000005', 1, 17, 10, 25.00, 250.00, NULL, NULL, '2', '2023-02-18 22:29:37', '2023-02-24 02:49:20', NULL), (1, 6, 1, 9, 'ORD00000006', 1, 17, 2, 50.00, 100.00, NULL, NULL, '5', '2023-02-24 03:08:10', '2023-02-24 03:11:38', NULL), (1, 7, 1, 9, 'ORD00000007', 1, 17, 10, 20.00, 200.00, NULL, NULL, '1', '2023-03-02 20:59:07', '2023-03-02 20:59:07', NULL), (1, 8, 2, 1, 'ORD00000008', 2, 3, 15, 20.00, 300.00, NULL, NULL, '5', '2023-05-17 16:16:25', '2023-06-03 14:33:39', NULL), (1, 9, 2, 1, 'ORD00000009', 2, 3, 38, 100.00, 3800.00, NULL, NULL, '4', '2023-06-03 15:24:32', '2023-06-03 15:30:35', NULL); DROP TABLE IF EXISTS `plans`; CREATE TABLE `plans` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `price` float DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; INSERT INTO `plans` (`isActive`, `id`, `title`, `slug`, `price`, `description`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Standard', 'standard', 0, 'Display and list your Products as a Brand', '2022-05-05 18:21:40', '2022-12-07 16:42:26', NULL), (1, 2, 'Marketplace', 'marketplace', 99, 'Display and list your Products as a Brand', '2022-06-29 12:11:53', '2022-07-04 15:01:36', NULL); DROP TABLE IF EXISTS `posts`; CREATE TABLE `posts` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `type` enum('1','2') DEFAULT '1' COMMENT '1 for post, 2 for repost', `repostId` int DEFAULT NULL, `post` text, `postUniqueId` varchar(255) DEFAULT NULL, `likeCount` int NOT NULL DEFAULT '0', `repostCount` int NOT NULL DEFAULT '0', `commentCount` int NOT NULL DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `postUniqueId` (`postUniqueId`), KEY `userId` (`userId`), KEY `repostId` (`repostId`), CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `posts_ibfk_2` FOREIGN KEY (`repostId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; INSERT INTO `posts` (`isActive`, `id`, `userId`, `type`, `repostId`, `post`, `postUniqueId`, `likeCount`, `repostCount`, `commentCount`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 12, '1', NULL, 'Hello THis is test post', 'ljvduxbb68wh67n4djr', 0, 0, 0, '2023-07-09 12:00:39', '2023-07-09 12:00:39', NULL), (1, 2, 20, '1', NULL, 'Hello @gmxtest this is test post', 'ljynofc1831q6gn9v0n', 0, 0, 1, '2023-07-11 18:58:51', '2023-07-11 18:59:25', NULL); DROP TABLE IF EXISTS `product_favourite`; CREATE TABLE `product_favourite` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `productId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `productId` (`productId`), CONSTRAINT `product_favourite_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `product_favourite_ibfk_2` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; INSERT INTO `product_favourite` (`isActive`, `id`, `userId`, `productId`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 9, 1, '2023-01-23 01:26:37', '2023-01-23 01:26:37', NULL), (1, 2, 9, 2, '2023-03-01 02:32:46', '2023-03-02 20:54:54', NULL), (1, 3, 1, 2, '2023-03-14 09:03:24', '2023-05-17 16:15:38', NULL); DROP TABLE IF EXISTS `product_images`; CREATE TABLE `product_images` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`), CONSTRAINT `product_images_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; INSERT INTO `product_images` (`isActive`, `id`, `productId`, `image`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 2, '/products/product-50110704-ed41-4296-9888-acd0cfe988df.png', '2023-02-28 08:14:24', '2023-02-28 08:14:24', NULL), (1, 2, 3, '/products/product-762a664e-77e4-4e88-91b7-8a1d959208b1.png', '2023-02-28 09:14:29', '2023-02-28 09:14:29', NULL), (1, 3, 3, '/products/product-0d793700-4c51-41e7-9993-c4a45abcd4e9.png', '2023-02-28 09:14:29', '2023-02-28 09:14:29', NULL), (1, 4, 4, '/products/product-ea77a8e8-4b7c-4fd9-beec-283e4136eae6.png', '2023-05-17 16:10:45', '2023-05-17 16:10:45', NULL); DROP TABLE IF EXISTS `product_price_history`; CREATE TABLE `product_price_history` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`), CONSTRAINT `product_price_history_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `product_quote_items`; CREATE TABLE `product_quote_items` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productQuoteId` int DEFAULT NULL, `productId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productQuoteId` (`productQuoteId`), KEY `productId` (`productId`), CONSTRAINT `product_quote_items_ibfk_1` FOREIGN KEY (`productQuoteId`) REFERENCES `product_quotes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `product_quote_items_ibfk_2` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; INSERT INTO `product_quote_items` (`isActive`, `id`, `productQuoteId`, `productId`, `quantity`, `price`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 3, 3, 1, 1, NULL, '2022-12-20 01:16:28', '2022-12-20 01:16:28', NULL), (1, 5, 5, 1, 1, 1.00, '2023-01-16 02:41:23', '2023-01-16 02:42:29', NULL), (1, 9, 9, 1, 1, 200.00, '2023-02-08 01:47:36', '2023-02-08 01:48:37', NULL), (1, 12, 12, 2, 2, NULL, '2023-03-01 04:07:07', '2023-03-01 04:07:07', NULL), (1, 13, 13, 2, 10, NULL, '2023-03-02 20:55:55', '2023-03-02 20:55:55', NULL); DROP TABLE IF EXISTS `product_quotes`; CREATE TABLE `product_quotes` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `quoteId` varchar(255) DEFAULT NULL, `retailerId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `totalQuantity` int DEFAULT NULL, `status` enum('1','2','3') DEFAULT NULL COMMENT '1 for Requested, 2 for Quoted, 3 for Cancelled', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `retailerId` (`retailerId`), KEY `brandId` (`brandId`), CONSTRAINT `product_quotes_ibfk_1` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, CONSTRAINT `product_quotes_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; INSERT INTO `product_quotes` (`isActive`, `id`, `quoteId`, `retailerId`, `brandId`, `totalQuantity`, `status`, `createdAt`, `updatedAt`) VALUES (1, 3, 'QT00000003', 9, 1, 1, '1', '2022-12-20 01:16:28', '2022-12-20 01:16:28'), (1, 5, 'QT00000005', 9, 1, 1, '3', '2023-01-16 02:41:23', '2023-01-16 02:43:02'), (1, 9, 'QT00000009', 9, 1, 1, '2', '2023-02-08 01:47:36', '2023-02-08 01:48:37'), (1, 12, 'QT00000012', 9, 2, 2, '1', '2023-03-01 04:07:06', '2023-03-01 04:07:07'), (1, 13, 'QT00000013', 9, 2, 10, '1', '2023-03-02 20:55:55', '2023-03-02 20:55:55'); DROP TABLE IF EXISTS `products`; CREATE TABLE `products` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `categoryId` int DEFAULT NULL, `medRecId` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `strainId` int DEFAULT NULL, `dominant` varchar(255) DEFAULT NULL, `iOId` int DEFAULT NULL, `harvested` datetime DEFAULT NULL, `thc` float(10,2) DEFAULT NULL, `flavor` varchar(255) DEFAULT NULL, `description` text, `labResultsPath` varchar(255) DEFAULT NULL, `avgProductRating` float(10,2) DEFAULT '0.00', `reviewsProductCount` int DEFAULT '0', `unit` text, `productVisibility` enum('1','2') DEFAULT '1' COMMENT '1 for show, 2 for hidden', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), KEY `userId` (`userId`), KEY `brandId` (`brandId`), KEY `categoryId` (`categoryId`), KEY `medRecId` (`medRecId`), KEY `strainId` (`strainId`), KEY `iOId` (`iOId`), CONSTRAINT `products_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `products_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `products_ibfk_3` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON UPDATE CASCADE, CONSTRAINT `products_ibfk_4` FOREIGN KEY (`medRecId`) REFERENCES `med_rec` (`id`) ON UPDATE CASCADE, CONSTRAINT `products_ibfk_5` FOREIGN KEY (`strainId`) REFERENCES `strains` (`id`) ON UPDATE CASCADE, CONSTRAINT `products_ibfk_6` FOREIGN KEY (`iOId`) REFERENCES `ioro` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; INSERT INTO `products` (`isActive`, `id`, `userId`, `brandId`, `title`, `slug`, `categoryId`, `medRecId`, `price`, `strainId`, `dominant`, `iOId`, `harvested`, `thc`, `flavor`, `description`, `labResultsPath`, `avgProductRating`, `reviewsProductCount`, `unit`, `productVisibility`, `createdAt`, `updatedAt`) VALUES (1, 1, 8, 1, 'Nectr Blue ginger', 'test', 16, 2, NULL, 5, '-', 1, '2023-01-11 00:00:00', 10.00, 'Blueberry', 'Test', '/products/product-lab-resultsc83c5092-9e99-4e45-86ec-57fb7974116c.pdf', 0.00, 0, '355 ML', '2', '2022-12-20 01:03:53', '2023-06-17 17:45:54'), (1, 2, 12, 2, 'product test', 'product-test', 3, 2, NULL, 1, '12', 1, '2023-02-01 00:00:00', 12.00, 'mint', 'Max 5 Images That Might be Helpful in Describing About Product', '/products/product-lab-results3e06de3f-14e8-4dc3-870c-6da1331172ca.pdf', 0.00, 0, '5 Grams', '1', '2023-02-28 08:14:24', '2023-02-28 08:14:24'), (1, 3, 19, 7, 'pra01', 'pra01', 8, 6, NULL, 2, 'Terpene', 2, '2023-02-01 00:00:00', 12.00, 'mint', 'Description asda asd asdasdasd asd asd asdasdas dasdda', '/products/product-lab-results3889a2db-51db-4e64-8611-3b923f8b8598.pdf', 0.00, 0, '5 Grams', '2', '2023-02-28 09:14:29', '2023-05-17 16:03:51'), (1, 4, 19, 7, 'Recreational product', 'recreational-product', 8, 2, NULL, 2, '12', 1, '2023-05-16 00:00:00', 12.00, 'mint', 'test desc', '/products/product-lab-results212cab77-0621-4f52-bbd4-0cfdf5f4757a.pdf', 0.00, 0, '56', '2', '2023-05-17 16:10:45', '2023-05-17 16:11:21'), (1, 5, 8, 1, 'Nectr Cola', 'nectr-cola', 16, 2, NULL, 5, 'Caryophyllene, Limonene', 1, '2023-06-18 00:00:00', 10.00, 'cola', 'Nectr Cola', '/products/product-lab-results1a71e49a-2c0a-4d44-b4c5-e1c0759c3612.pdf', 0.00, 0, '355ML', '2', '2023-06-19 01:32:58', '2023-06-19 01:32:58'); DROP TABLE IF EXISTS `reposts`; CREATE TABLE `reposts` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `repostId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `postId` (`postId`), CONSTRAINT `reposts_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, CONSTRAINT `reposts_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `retailer_details`; CREATE TABLE `retailer_details` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), CONSTRAINT `retailer_details_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; INSERT INTO `retailer_details` (`isActive`, `id`, `userId`, `slug`, `website`, `createdAt`, `updatedAt`) VALUES (1, 1, 1, 'top-builder', 'https://abc.com', '2023-02-22 22:00:25', '2023-02-22 16:34:36'), (1, 2, 9, 'gmx-test', 'https://www.greenmarketexchange.com/', '2023-02-22 22:00:25', '2023-02-22 22:00:25'), (1, 3, 14, 'top-mail', 'https://abctop.com', '2023-02-22 16:37:56', '2023-02-22 16:37:56'), (1, 4, 15, 'lalit22022023ssdf', NULL, '2023-02-22 17:02:17', '2023-02-22 17:02:17'), (1, 5, 21, 'louis-retailer', NULL, '2023-07-11 19:03:59', '2023-07-11 19:03:59'); DROP TABLE IF EXISTS `reviews`; CREATE TABLE `reviews` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `retailerId` int DEFAULT NULL, `type` enum('1','2','3') DEFAULT NULL COMMENT '1 for product, 2 for delivery on time, 3 for general', `ratings` float(10,2) DEFAULT NULL, `description` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`), KEY `brandId` (`brandId`), KEY `retailerId` (`retailerId`), CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `reviews_ibfk_3` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `settings`; CREATE TABLE `settings` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; INSERT INTO `settings` (`isActive`, `id`, `name`, `description`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'info_email', 'info@greenmarketexchange.com', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 2, 'contact_number', '2076913707', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 3, 'site_address', 'https://greenmarketexchange.com/', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 4, 'facebook_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 5, 'instagram_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 6, 'twitter_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 7, 'linkedin_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 8, 'logo', '/settings/main-logo.png', '2022-04-13 01:44:31', '2022-04-15 11:03:53', NULL), (1, 9, 'footerlogo', '/settings/main-logo.png', '2022-04-13 01:49:30', '2022-04-15 10:23:42', NULL), (1, 10, 'stripe_secret_key', 'sk_test_51M6k0gBMOPRi3AfhyM851Ahh1167JDjXxNmbPNOUSccvUNW2gvR17C5Yg5GirtAKW6fuYP2K3yTxDTootYoMxJwU00qQOTO0Ki', '2022-04-13 01:49:30', '2022-04-15 10:23:42', NULL), (1, 11, 'recaptcha_key', '6LfphBgjAAAAAFSzjfFDQ6LW_PCuo9Qo3m0x71-H', '2022-06-02 09:35:32', '2022-06-02 09:35:32', NULL), (1, 12, 'site_name', NULL, '2022-07-08 09:52:41', '2022-12-13 02:52:51', NULL), (1, 13, 'minlogo', '/settings/min-logo.svg', '2022-04-13 01:44:31', '2022-04-15 11:03:53', NULL); DROP TABLE IF EXISTS `state`; CREATE TABLE `state` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; INSERT INTO `state` (`isActive`, `id`, `name`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Alabama', '0000-00-00 00:00:00', '2022-12-07 16:41:20', '2022-12-07 16:41:20'), (1, 2, 'New York', '0000-00-00 00:00:00', '2022-12-07 16:41:24', '2022-12-07 16:41:24'), (1, 3, 'Florida', '0000-00-00 00:00:00', '2022-12-07 16:41:16', '2022-12-07 16:41:16'), (1, 4, 'Maine', '2022-07-24 20:50:39', '2022-12-07 16:41:28', '2022-12-07 16:41:28'), (1, 5, 'Massachusetts', '2022-09-26 21:04:18', '2022-09-26 21:04:35', NULL); DROP TABLE IF EXISTS `strains`; CREATE TABLE `strains` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; INSERT INTO `strains` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Indica dominant', '2022-05-02 00:00:00', '2023-03-22 13:02:14', NULL), (1, 2, 'Sativa dominant', '2022-05-04 00:00:00', '2023-03-22 13:02:23', NULL), (1, 3, 'Hybrid', '2022-05-04 00:00:00', '2022-05-04 00:00:00', '1900-01-03 00:00:00'), (1, 4, NULL, '2022-06-24 07:59:24', '2022-06-24 07:59:28', '2022-06-24 07:59:28'), (1, 5, 'Hyrbid', '2022-10-26 23:49:52', '2022-10-26 23:49:52', NULL); DROP TABLE IF EXISTS `user_subscription`; CREATE TABLE `user_subscription` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `planId` int DEFAULT NULL, `customerId` varchar(255) DEFAULT NULL, `subscriptionToken` varchar(255) DEFAULT NULL, `subscriptionId` varchar(255) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `amount` varchar(255) DEFAULT NULL, `responseJson` text, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `planCancelDate` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `planId` (`planId`), CONSTRAINT `user_subscription_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `user_subscription_ibfk_2` FOREIGN KEY (`planId`) REFERENCES `plans` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=latin1; INSERT INTO `user_subscription` (`isActive`, `id`, `userId`, `planId`, `customerId`, `subscriptionToken`, `subscriptionId`, `status`, `amount`, `responseJson`, `startDate`, `endDate`, `planCancelDate`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '2000', '{\"id\":\"sub_1MGu65BMOPRi3AfhiiE7qvuk\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671497661,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671497661,\"currency\":\"usd\",\"current_period_end\":1671584061,\"current_period_start\":1671497661,\"customer\":\"cus_N0vyvES8MRSn2n\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N0vyzNstIqUi3o\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671497661,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MGu65BMOPRi3AfhiiE7qvuk\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MGu65BMOPRi3AfhiiE7qvuk\"},\"latest_invoice\":\"in_1MGu65BMOPRi3Afh2ZHgqHwU\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671497661,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-19 00:00:00', '2023-01-19 00:00:00', '', '2022-12-20 00:54:23', '2022-12-20 00:54:23', NULL), (1, 2, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '2000', '{\"id\":\"sub_1MH0g1BMOPRi3AfhI9j6Mjw1\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671522953,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671522953,\"currency\":\"usd\",\"current_period_end\":1671609353,\"current_period_start\":1671522953,\"customer\":\"cus_N12lQRrHIxkkQY\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N12lfmL13lUNKn\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671522954,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MH0g1BMOPRi3AfhI9j6Mjw1\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MH0g1BMOPRi3AfhI9j6Mjw1\"},\"latest_invoice\":\"in_1MH0g1BMOPRi3AfhKQ5DBVe0\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671522953,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-20 00:00:00', '2023-01-20 00:00:00', '', '2022-12-20 07:55:55', '2022-12-20 07:55:55', NULL), (1, 3, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-20 00:00:00', '2022-12-20 00:00:00', NULL, '2022-12-21 00:57:26', '2022-12-21 00:57:26', NULL), (1, 4, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '2000', '{\"id\":\"sub_1MHIR9BMOPRi3AfhuNclK18F\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671591223,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671591223,\"currency\":\"usd\",\"current_period_end\":1671677623,\"current_period_start\":1671591223,\"customer\":\"cus_N1L7P5vtLWoUDD\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N1L7fyOFFcKQs4\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671591223,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MHIR9BMOPRi3AfhuNclK18F\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MHIR9BMOPRi3AfhuNclK18F\"},\"latest_invoice\":\"in_1MHIR9BMOPRi3AfhHwF9WEpI\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671591223,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-20 00:00:00', '2023-01-20 00:00:00', '', '2022-12-21 02:53:45', '2022-12-21 02:53:45', NULL), (1, 5, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-21 00:00:00', '2022-12-21 00:00:00', NULL, '2022-12-21 07:56:29', '2022-12-21 07:56:29', NULL), (1, 6, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-22 05:54:27', '2022-12-22 05:54:27', NULL), (1, 7, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-22 08:02:39', '2022-12-22 08:02:39', NULL), (1, 8, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-23 00:57:27', '2022-12-23 00:57:27', NULL), (1, 9, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-23 02:54:59', '2022-12-23 02:54:59', NULL), (1, 10, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-23 07:56:20', '2022-12-23 07:56:20', NULL), (1, 11, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-24 00:55:38', '2022-12-24 00:55:38', NULL), (1, 12, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-24 02:56:20', '2022-12-24 02:56:20', NULL), (1, 13, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-24 07:57:43', '2022-12-24 07:57:43', NULL), (1, 14, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-25 00:55:30', '2022-12-25 00:55:30', NULL), (1, 15, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-25 02:54:26', '2022-12-25 02:54:26', NULL), (1, 16, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-26 07:57:08', '2022-12-26 07:57:08', NULL), (1, 17, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-27 00:56:26', '2022-12-27 00:56:26', NULL), (1, 18, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-27 02:54:26', '2022-12-27 02:54:26', NULL), (1, 19, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-27 07:58:23', '2022-12-27 07:58:23', NULL), (1, 20, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-28 00:58:33', '2022-12-28 00:58:33', NULL), (1, 21, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-28 02:54:24', '2022-12-28 02:54:24', NULL), (1, 22, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-28 07:58:44', '2022-12-28 07:58:44', NULL), (1, 23, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-29 00:54:33', '2022-12-29 00:54:33', NULL), (1, 24, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-29 02:54:26', '2022-12-29 02:54:26', NULL), (1, 25, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-29 07:56:03', '2022-12-29 07:56:03', NULL), (1, 26, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-30 00:57:31', '2022-12-30 00:57:31', NULL), (1, 27, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-30 02:54:29', '2022-12-30 02:54:29', NULL), (1, 28, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-30 07:58:05', '2022-12-30 07:58:05', NULL), (1, 29, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-31 00:57:14', '2022-12-31 00:57:14', NULL), (1, 30, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-31 02:57:43', '2022-12-31 02:57:43', NULL), (1, 31, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2022-12-31 07:56:18', '2022-12-31 07:56:18', NULL), (1, 32, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2023-01-01 01:02:46', '2023-01-01 01:02:46', NULL), (1, 33, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2023-01-01 03:01:02', '2023-01-01 03:01:02', NULL), (1, 34, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-01 00:00:00', '2023-01-01 00:00:00', NULL, '2023-01-01 07:56:09', '2023-01-01 07:56:09', NULL), (1, 35, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-01 00:00:00', '2023-01-01 00:00:00', NULL, '2023-01-02 03:55:21', '2023-01-02 03:55:21', NULL), (1, 36, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-02 07:57:49', '2023-01-02 07:57:49', NULL), (1, 37, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-03 00:55:44', '2023-01-03 00:55:44', NULL), (1, 38, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-03 03:03:17', '2023-01-03 03:03:17', NULL), (1, 39, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-03 07:56:57', '2023-01-03 07:56:57', NULL), (1, 40, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-04 00:57:31', '2023-01-04 00:57:31', NULL), (1, 41, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-04 02:55:57', '2023-01-04 02:55:57', NULL), (1, 42, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-04 07:57:32', '2023-01-04 07:57:32', NULL), (1, 43, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-05 00:57:46', '2023-01-05 00:57:46', NULL), (1, 44, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-05 03:04:55', '2023-01-05 03:04:55', NULL), (1, 45, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-05 07:58:28', '2023-01-05 07:58:28', NULL), (1, 46, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-06 01:03:42', '2023-01-06 01:03:42', NULL), (1, 47, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-06 02:58:41', '2023-01-06 02:58:41', NULL), (1, 48, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-06 00:00:00', '2023-01-06 00:00:00', NULL, '2023-01-06 07:56:23', '2023-01-06 07:56:23', NULL), (1, 49, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-09 07:56:03', '2023-01-09 07:56:03', NULL), (1, 50, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-10 00:54:29', '2023-01-10 00:54:29', NULL), (1, 51, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-10 02:56:41', '2023-01-10 02:56:41', NULL), (1, 52, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-10 07:56:14', '2023-01-10 07:56:14', NULL), (1, 53, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-11 00:57:19', '2023-01-11 00:57:19', NULL), (1, 54, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-11 02:55:43', '2023-01-11 02:55:43', NULL), (1, 55, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-11 08:06:22', '2023-01-11 08:06:22', NULL), (1, 56, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-12 00:55:57', '2023-01-12 00:55:57', NULL), (1, 57, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-12 03:00:56', '2023-01-12 03:00:56', NULL), (1, 58, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-12 08:02:46', '2023-01-12 08:02:46', NULL), (1, 59, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-13 00:55:33', '2023-01-13 00:55:33', NULL), (1, 60, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-13 02:54:30', '2023-01-13 02:54:30', NULL), (1, 61, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-13 07:59:57', '2023-01-13 07:59:57', NULL), (1, 62, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-14 00:54:50', '2023-01-14 00:54:50', NULL), (1, 63, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-14 03:01:14', '2023-01-14 03:01:14', NULL), (1, 64, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-14 07:57:37', '2023-01-14 07:57:37', NULL), (1, 65, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-15 00:54:37', '2023-01-15 00:54:37', NULL), (1, 66, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-15 02:59:23', '2023-01-15 02:59:23', NULL), (1, 67, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-15 07:57:00', '2023-01-15 07:57:00', NULL), (1, 68, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-16 00:55:49', '2023-01-16 00:55:49', NULL), (1, 69, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-16 02:55:31', '2023-01-16 02:55:31', NULL), (1, 70, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-16 07:59:14', '2023-01-16 07:59:14', NULL), (1, 71, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-17 00:56:32', '2023-01-17 00:56:32', NULL), (1, 72, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-17 02:54:05', '2023-01-17 02:54:05', NULL), (1, 73, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-17 07:56:54', '2023-01-17 07:56:54', NULL), (1, 74, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-18 00:54:40', '2023-01-18 00:54:40', NULL), (1, 75, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-18 03:01:20', '2023-01-18 03:01:20', NULL), (1, 76, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 07:57:57', '2023-01-18 07:57:57', NULL), (1, 77, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:33:23', '2023-01-18 12:33:23', NULL), (1, 78, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:34:25', '2023-01-18 12:34:25', NULL), (1, 79, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:36:22', '2023-01-18 12:36:22', NULL), (1, 80, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:33:57', '2023-02-18 12:33:57', NULL), (1, 81, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:37:31', '2023-02-18 12:37:31', NULL), (1, 82, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:37:56', '2023-02-18 12:37:56', NULL), (1, 83, 17, 2, 'cus_NQepzNiC0HhMvi', 'tok_1MfnVeBMOPRi3AfhOuruppHA', 'sub_1MfnVfBMOPRi3AfhVKophPiG', 'canceled', '99', '{\"id\":\"sub_1MfnVfBMOPRi3AfhVKophPiG\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677430539,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677430669,\"collection_method\":\"charge_automatically\",\"created\":1677430539,\"currency\":\"usd\",\"current_period_end\":1679849739,\"current_period_start\":1677430539,\"customer\":\"cus_NQepzNiC0HhMvi\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677430669,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NQepLp0glTwRsE\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677430540,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MfnVfBMOPRi3AfhVKophPiG\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MfnVfBMOPRi3AfhVKophPiG\"},\"latest_invoice\":\"in_1MfnVfBMOPRi3Afh2xTAEaY1\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677430539,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-26 00:00:00', '2023-03-26 00:00:00', '2023-02-26 11:57:49', '2023-02-26 16:55:41', '2023-02-26 16:57:49', NULL), (1, 84, 17, 2, 'cus_NQesZGYPkLvknD', 'tok_1MfnYJBMOPRi3AfhJQjhhlQu', 'sub_1MfnYKBMOPRi3AfhoMczck2I', 'active', '99', '{\"id\":\"sub_1MfnYKBMOPRi3AfhoMczck2I\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677430704,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1677430704,\"currency\":\"usd\",\"current_period_end\":1679849904,\"current_period_start\":1677430704,\"customer\":\"cus_NQesZGYPkLvknD\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NQesCqM9KN1F6e\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677430704,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MfnYKBMOPRi3AfhoMczck2I\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MfnYKBMOPRi3AfhoMczck2I\"},\"latest_invoice\":\"in_1MfnYKBMOPRi3Afhg2jUyuQV\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677430704,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-26 00:00:00', '2023-03-26 00:00:00', '', '2023-02-26 16:58:26', '2023-02-26 16:58:26', NULL), (1, 85, 19, 2, 'cus_NRHsx3xxIkJJV8', 'tok_1MgPITBMOPRi3AfhlGVi24jj', 'sub_1MgPIUBMOPRi3AfhDrZCKJBc', 'canceled', '99', '{\"id\":\"sub_1MgPIUBMOPRi3AfhDrZCKJBc\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677575794,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677575807,\"collection_method\":\"charge_automatically\",\"created\":1677575794,\"currency\":\"usd\",\"current_period_end\":1679994994,\"current_period_start\":1677575794,\"customer\":\"cus_NRHsx3xxIkJJV8\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677575807,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NRHsHzE1ibmfmE\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677575794,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MgPIUBMOPRi3AfhDrZCKJBc\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MgPIUBMOPRi3AfhDrZCKJBc\"},\"latest_invoice\":\"in_1MgPIUBMOPRi3AfhDdyYgcRZ\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677575794,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-28 00:00:00', '2023-03-28 00:00:00', '2023-02-28 04:16:47', '2023-02-28 09:16:36', '2023-02-28 09:16:47', NULL), (1, 86, 19, 2, 'cus_NRHtIbGWBMo1Ax', 'tok_1MgPJKBMOPRi3AfhWhjrUjwH', 'sub_1MgPJLBMOPRi3Afhea4JUlLt', 'canceled', '99', '{\"id\":\"sub_1MgPJLBMOPRi3Afhea4JUlLt\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677575847,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677575947,\"collection_method\":\"charge_automatically\",\"created\":1677575847,\"currency\":\"usd\",\"current_period_end\":1679995047,\"current_period_start\":1677575847,\"customer\":\"cus_NRHtIbGWBMo1Ax\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677575947,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NRHtnLCCUfozKs\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677575847,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MgPJLBMOPRi3Afhea4JUlLt\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MgPJLBMOPRi3Afhea4JUlLt\"},\"latest_invoice\":\"in_1MgPJLBMOPRi3AfhxZxQSc02\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677575847,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-28 00:00:00', '2023-03-28 00:00:00', '2023-02-28 04:19:07', '2023-02-28 09:17:29', '2023-02-28 09:19:07', NULL), (1, 87, 17, 2, 'cus_NQesZGYPkLvknD', 'tok_1MfnYJBMOPRi3AfhJQjhhlQu', 'sub_1MfnYKBMOPRi3AfhoMczck2I', 'active', '99', NULL, '2023-03-26 00:00:00', '2023-03-26 00:00:00', NULL, '2023-03-26 17:00:13', '2023-03-26 17:00:13', NULL); DROP TABLE IF EXISTS `user_tokens`; CREATE TABLE `user_tokens` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `token` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), CONSTRAINT `user_tokens_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `isApproved` enum('1','2') DEFAULT '1' COMMENT '1 for approved, 2 for unapproved', `role` enum('1','2','3') DEFAULT NULL COMMENT '1 for admin, 2 for brand, 3 for retailer', `name` varchar(255) DEFAULT NULL, `businessName` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `stateId` int DEFAULT NULL, `zipCode` int DEFAULT NULL, `phoneNumber` varchar(255) DEFAULT NULL, `licenseNumber` varchar(255) DEFAULT NULL, `medRecId` int DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `profilePath` varchar(255) DEFAULT NULL, `licensePath` varchar(255) DEFAULT NULL, `planId` int DEFAULT NULL, `planExpiryDate` datetime DEFAULT NULL, `subscriptionId` int DEFAULT NULL, `verification_token` varchar(255) DEFAULT NULL, `followersCount` int NOT NULL DEFAULT '0', `followingsCount` int NOT NULL DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), UNIQUE KEY `email` (`email`), KEY `stateId` (`stateId`), KEY `medRecId` (`medRecId`), KEY `planId` (`planId`), CONSTRAINT `users_ibfk_1` FOREIGN KEY (`stateId`) REFERENCES `state` (`id`) ON UPDATE CASCADE, CONSTRAINT `users_ibfk_2` FOREIGN KEY (`medRecId`) REFERENCES `med_rec` (`id`) ON UPDATE CASCADE, CONSTRAINT `users_ibfk_3` FOREIGN KEY (`planId`) REFERENCES `plans` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; INSERT INTO `users` (`isActive`, `id`, `isApproved`, `role`, `name`, `businessName`, `slug`, `email`, `password`, `stateId`, `zipCode`, `phoneNumber`, `licenseNumber`, `medRecId`, `expirationDate`, `profilePath`, `licensePath`, `planId`, `planExpiryDate`, `subscriptionId`, `verification_token`, `followersCount`, `followingsCount`, `createdAt`, `updatedAt`) VALUES (1, 1, '1', '3', 'Top Builder', 'Top Builder', 'topbuilder', 'lalit.nyusoft@gmail.com', '$2a$10$auHh3SvUN.Hqp7YTEnjGUuwvLSF/sgtEy0sRj7cfr7tvn/jyuPavq', 5, 47605, '717', '543', 2, '2023-03-29 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-9e9e6d45-1f87-4401-adf7-77216678cacc.pdf', NULL, NULL, NULL, NULL, 0, 0, '2022-12-19 07:20:47', '2023-05-16 15:57:29'), (1, 8, '1', '2', 'Nectr', 'Nectr', 'gmx', 'straka26@icloud.com', '$2a$10$rymNukpxNqjVxknuBYhp8e0q6RCX921me7BZ7lIIwVThVpYz7CbAm', 5, 40909, '2076913707', 'AMS1242', 2, '2023-02-03 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-f1a74103-7b08-4aa6-a753-aebd71273dbe.png', 1, '2023-02-18 00:00:00', 81, NULL, 0, 1, '2022-12-20 00:54:23', '2023-06-19 03:04:33'), (1, 9, '1', '3', 'GMX test', 'GMX test', 'gmxtest', 'christian.j.straka@gmail.com', '$2a$10$xfl9.tO.fk015oOgYswRNuB5BxrVkatqAUvbQwMolMTDfTLBtK1oi', 5, 40920, '2076913707', '45454', 2, '2022-12-27 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-bc8f1995-7737-47b7-a758-b3032bd11346.png', NULL, NULL, NULL, NULL, 1, 0, '2022-12-20 01:05:16', '2023-06-19 03:04:33'), (1, 12, '1', '2', 'Smit', 'Smit', 'topbuildera', 'smit.nyusoft@gmail.com', '$2a$10$auHh3SvUN.Hqp7YTEnjGUuwvLSF/sgtEy0sRj7cfr7tvn/jyuPavq', 5, 54545, '123456000', '45645456', 2, '2023-06-15 00:00:00', '/profile/profile-336d7d00-e57b-4d2e-a1e7-644560ff44ae.png', '/documents/license-83135f12-d7a6-4c4c-a941-5af26434a940.pdf', 1, '2023-02-18 00:00:00', 80, '$2a$10$cdep2GGd1foFvsb3wTjUIe9oITGzL7qebjzVXg7MKg4c/FYsOxaPm', 0, 0, '2022-12-20 07:55:55', '2023-06-20 11:19:21'), (1, 13, '2', '2', 'christian', 'Test 2', 'test2', 'cstraka.gmx@gmail.com', '$2a$10$GJxSZr5q6nGifuBHHAUJvOre1DNK/eLvw7/JKBN7nDtDtH03c4/CO', 5, 4092, '2076913707', '123456', 2, '2022-12-30 00:00:00', NULL, '/documents/license-8b4fca8a-69e4-4f39-bee3-4d07cce39328.png', 1, '2023-02-18 00:00:00', 82, NULL, 0, 0, '2022-12-21 02:53:45', '2023-02-18 12:37:56'), (1, 14, '1', '3', 'Lalit 22022023', 'Top Mail', 'topmail', 'Lalit22022023@mailinator.com', '$2a$10$cxDjH2u.sc0r66d5av1mRe2PP8WETbGeFPNMuK9qcaQOR.mS4T0M6', 5, 54564, '123456789', '545454', 2, '2023-02-22 00:00:00', NULL, '/documents/license-21c07a5d-38f4-4327-924a-3f58d2855dd5.pdf', NULL, NULL, NULL, NULL, 0, 0, '2023-02-22 16:37:56', '2023-02-22 16:37:56'), (1, 15, '2', '3', 'Lalit 22022023 ssdf', 'Lalit22022023ssdf', 'lalit22022023ssdf', 'Lalit22022023ssdf@mailinator.com', '$2a$10$SgyrgPtYkSOss08fx/cbRez2Pb3JkFwIYUFoZ9IY5ibhNLz/PS1LS', 5, 56464, '12345600886', '6564545', 2, '2023-02-22 00:00:00', NULL, '/documents/license-9cb5e762-08b7-4f80-98a4-131d7619dd7d.pdf', NULL, NULL, NULL, NULL, 0, 0, '2023-02-22 17:02:17', '2023-02-22 17:02:17'), (1, 16, '1', '2', 'John Test', 'Top Builder John', 'topbuilderjohn', 'john@mailinator.com', '$2a$10$ba3XS3RE.boUnLaX3JAzGewBOivyCSd.GjMXw78ky8/4zjAgbxf4e', 5, 12345, '1234567890', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-5496c8e8-4d87-4fd0-b914-71fde46e6853.pdf', 1, NULL, NULL, NULL, 0, 0, '2023-02-26 16:47:04', '2023-02-26 16:49:26'), (1, 17, '1', '2', 'John Branddsdsd', 'Hogn Top John', 'hogntopjohn', 'john1@mailinator.com', '$2a$10$r6qlrSDegdcBv.X2t4V3TemLtMzxKxv/1oQJ4SohTDmNwG3Nqxl0y', 5, 54455, '1234567890', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-fb740068-3dda-459e-a424-9ffd90f5ee52.pdf', 2, '2023-03-26 00:00:00', 87, NULL, 0, 0, '2023-02-26 16:55:41', '2023-03-26 17:00:13'), (1, 18, '1', '2', 'John Brand', 'John', 'john2', 'john2@mailinator.com', '$2a$10$1Vu0/2WOiQgOs2r7bNtBH.dXp1DPL.ollrOst9JItxL1oJ1Qr.r22', 5, 12345, '124564800', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-4a50ec78-c00b-4a95-8ae1-164a4466608e.pdf', 1, NULL, NULL, NULL, 0, 0, '2023-02-26 17:02:17', '2023-02-26 17:04:55'), (1, 19, '1', '2', 'PrakashB', 'PrakashB', 'prakashb', 'prakash@vintomaper.com', '$2a$10$4sIZ.x8K/tqLjnbe4Y7wzu7DAKLRoLCipluAHkuk3FVg1xi7StwAm', 5, 38002, '88666844441', '123456', 2, '2023-08-31 00:00:00', '/profile/profile-a2f6600f-0d53-4350-bcb8-e14302a473ab.jpg', '/documents/license-80bf2619-a2c6-4173-8538-e493e4a5b64c.pdf', 1, '2023-03-28 00:00:00', 86, NULL, 0, 0, '2023-02-28 08:18:33', '2023-05-17 16:12:05'), (1, 20, '1', '2', 'Louis Bland', 'Louis Builder', 'louisbuilder', 'louisbland@mailinator.com', '$2a$10$NJmql4oixFM8Ab2eYkMnLu09/pe1srwEGsMH/HBIsF5zHqC67SIii', 5, 54545, '12345648900', '123545654', 2, '2034-09-14 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-2a7b6712-78cc-427b-a0d3-ebcc30f6b115.png', 1, NULL, NULL, NULL, 0, 0, '2023-07-11 18:44:46', '2023-07-11 18:52:15'), (1, 21, '1', '3', 'Louis Mailinator', 'Louis Retailer', 'louis-retailer', 'louisretailer@mailinator.com', '$2a$10$aiePEUyNR9bd56gzsyqoTOin/b/qMaR4gs.MdJ.bQXL31jkpJPaPK', 5, 87875, '1234560844', '58454564', 6, '2029-09-27 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-8749e057-b996-48db-bc5b-d9a70eb1a536.png', NULL, NULL, NULL, NULL, 0, 0, '2023-07-11 19:03:59', '2023-07-11 19:09:18'); -- 2023-07-16 11:10:32
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/gmx-phase-3.sql
-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Aug 14, 2023 at 01:41 PM -- Server version: 8.0.31 -- PHP Version: 8.0.26 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `gmx` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- DROP TABLE IF EXISTS `admin`; CREATE TABLE IF NOT EXISTS `admin` ( `id` int UNSIGNED NOT NULL, `name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `rememberToken` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '1 for active, 2 for inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`id`, `name`, `email`, `password`, `rememberToken`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, ' ', 'cstraka@greenmarketexchange.com', '$2y$10$tGmL3JkjAz0I/QJDs7ad1.KPBpCWoDCaECyEJLh/X6V4RX6hrn6va', '', '1', '2021-06-17 13:00:00', '2022-10-26 19:47:28', NULL), (2, ' ', 'admin@example.com', '$2a$10$3XCTrWFb2UBBeCFsJGZehOJ7Mvr7SdIRfbfCdslfYS2BSReg3/U26', 'dR1ia2D2XAH5M8rrabpZy384y9rc6GCSMNT7zMKzVfstkZPfesAJjUP3K5Pj', '1', '2021-06-17 13:00:00', '2022-11-18 13:43:09', NULL); -- -------------------------------------------------------- -- -- Table structure for table `attachments` -- DROP TABLE IF EXISTS `attachments`; CREATE TABLE IF NOT EXISTS `attachments` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `attachableId` int DEFAULT NULL, `attachableType` varchar(255) DEFAULT NULL COMMENT 'post,comment,commentReply', `attachmentType` enum('1','2') DEFAULT '1' COMMENT '1 for image, 2 for video', `attachment` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `axis_point` -- DROP TABLE IF EXISTS `axis_point`; CREATE TABLE IF NOT EXISTS `axis_point` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `file` blob, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -------------------------------------------------------- -- -- Table structure for table `banner` -- DROP TABLE IF EXISTS `banner`; CREATE TABLE IF NOT EXISTS `banner` ( `id` int NOT NULL AUTO_INCREMENT, `preTitle` varchar(299) NOT NULL, `title` varchar(299) NOT NULL, `description` varchar(299) NOT NULL, `buttonText` varchar(299) NOT NULL, `buttonLink` varchar(299) NOT NULL, `image` varchar(255) DEFAULT NULL, `isActive` tinyint(1) DEFAULT '1', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- -- Dumping data for table `banner` -- INSERT INTO `banner` (`id`, `preTitle`, `title`, `description`, `buttonText`, `buttonLink`, `image`, `isActive`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 'Green Market Exchange', 'The Future of Cannabis Commerce', 'usce eros nulla euismod elementum ante vulputate venenatis ipsum suspendisse vestibulum.', 'Read More', '', '/cms/1653886861-banner-slide1.jpg', 1, '2022-05-30 04:48:50', '2022-07-22 20:59:14', '2022-07-22 20:59:14'), (2, 'Grow Your Stock', 'Green Market Exchange', 'The Future of Cannabis Trading', 'Read More', 'https://www.greenmarketexchange.com/about-us', '/cms/1653886724-banner-slide1.jpg', 1, '2022-05-30 04:48:50', '2022-08-31 12:13:37', '2022-08-31 12:13:37'), (3, 'Curabi est felis', 'Duis Mis Sien Digni', 'usce eros nulla euismod elementum ante vulputate venenatis ipsum suspendisse vestibulum.', 'Read More', '', '/cms/1658136550-stock-original-4k.jpg', 1, '2022-07-18 09:29:10', '2022-07-18 09:29:29', '2022-07-18 09:29:29'), (4, '', 'Green Market Exchange', 'Wholesale Marketplace', 'Get Started', 'https://www.greenmarketexchange.com/sign-up', '/cms/1661947984-1653886724-banner-slide1.jpg', 1, '2022-08-31 12:13:04', '2022-12-07 16:38:06', NULL); -- -------------------------------------------------------- -- -- Table structure for table `brand_details` -- DROP TABLE IF EXISTS `brand_details`; CREATE TABLE IF NOT EXISTS `brand_details` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `brandName` varchar(255) DEFAULT NULL, `contactNumber` varchar(255) DEFAULT NULL, `contactEmail` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `year` varchar(255) DEFAULT NULL, `totalOrdersCompleted` int DEFAULT '0', `address` varchar(255) DEFAULT NULL, `description` text, `avgProductRating` float(10,2) DEFAULT '0.00', `reviewsProductCount` int DEFAULT '0', `avgDOTRating` float(10,2) DEFAULT '0.00', `reviewsDOTCount` int DEFAULT '0', `avgGeneralRating` float(10,2) DEFAULT '0.00', `reviewsGeneralCount` varchar(255) DEFAULT '0', `avgRating` float(10,2) DEFAULT '0.00', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `brand_details` -- INSERT INTO `brand_details` (`isActive`, `id`, `userId`, `brandName`, `contactNumber`, `contactEmail`, `slug`, `website`, `year`, `totalOrdersCompleted`, `address`, `description`, `avgProductRating`, `reviewsProductCount`, `avgDOTRating`, `reviewsDOTCount`, `avgGeneralRating`, `reviewsGeneralCount`, `avgRating`, `createdAt`, `updatedAt`) VALUES (1, 1, 8, 'Nectr', NULL, NULL, 'gmx', NULL, '2020', 0, '112 North Shore Drive, Owls Head, ME, USA', 'Test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2022-12-20 00:54:23', '2023-06-06 13:43:32'), (1, 2, 12, 'Smitsd', '1234567111', 'toprrbuilder@smit.com', 'topbuildera', NULL, '1991', 0, 'NYU Langone Health, 1st Avenue, New York, NY, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2022-12-20 07:55:55', '2023-07-23 11:31:01'), (1, 3, 13, 'Test 2', NULL, NULL, 'test2', NULL, NULL, 0, '95 lincoln street', 'test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2022-12-21 02:53:45', '2022-12-21 02:53:45'), (1, 4, 16, 'Top Builder John', NULL, NULL, 'topbuilderjohn', NULL, NULL, 0, 'Sunshine Skyway Bridge, Sunshine Skyway Ln S, St. Petersburg, FL, USA', 'test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-26 16:47:04', '2023-02-26 16:47:04'), (1, 5, 17, 'Hogn Top John', NULL, NULL, 'hogntopjohn', NULL, NULL, 0, 'Sunrise, FL, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-26 16:55:41', '2023-02-26 16:55:41'), (1, 6, 18, 'John', NULL, NULL, 'john2', NULL, NULL, 0, 'SD, USA', 'ssd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-26 17:02:17', '2023-02-26 17:02:17'), (1, 7, 19, 'PrakashB', NULL, NULL, 'prakashb', NULL, NULL, 0, 'NYU School of Professional Studies, East 12th Street, New York, NY, USA', ' Bio / Description', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-02-28 08:18:33', '2023-02-28 08:18:33'), (1, 8, 20, 'Louis Builder', NULL, NULL, 'louisbuilder', 'https://www.louisbland.com', '1994', 0, 'Riverhead, NY, USA', 'Louis bio', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-11 18:44:46', '2023-07-11 18:52:15'), (1, 9, 22, 'ssdsd', '545545454', 'sdsdf@df.df', 'ssdsd', NULL, NULL, 0, 'Sunrise, FL, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-16 17:24:49', '2023-07-16 17:24:49'), (1, 10, 23, 'sdjkjk', '55545854545', 'sdkjjkj@hjhsd.sd', 'sdjkjk', NULL, NULL, 0, 'Sun Valley, ID, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-16 17:30:17', '2023-07-16 17:30:17'), (1, 11, 24, 'sdsdshgjh', '54554', 'hggjkhjkW@ssd.sd', 'sdsdshgjh', NULL, NULL, 0, 'Yampa Valley Regional Airport, RCR 51A, Hayden, CO, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-16 17:32:23', '2023-07-16 17:32:23'), (1, 12, 25, 'sdsd', '5656565', 'sdssd@ssdweef.dff', 'sdsd-2', NULL, NULL, 0, 'Combat Fitness Training/JKDLI, Crest Road West, Merrick, NY, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-16 17:34:04', '2023-07-16 17:34:04'), (1, 13, 26, 'sdsdjhg', '54454454', 'sdsdgh@ssd.sd', 'sdsdjhg', NULL, NULL, 0, 'SDF airport (SDF), Terminal Drive, Louisville, KY, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-16 17:35:46', '2023-07-16 17:35:46'), (1, 14, 28, 'BHhjkjk', NULL, NULL, 'bhhjkjk', NULL, NULL, 0, 'Sun Valley, ID, USA', NULL, 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-23 16:36:23', '2023-07-23 16:36:23'), (1, 15, 29, 'dfdf', NULL, NULL, 'dfdf', 'https://abc.co', '65656', 0, 'Sunshine Factory Bar & Grill, Vinewood Lane North, Plymouth, MN, USA', NULL, 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-07-23 16:39:14', '2023-07-23 16:39:14'), (1, 16, 34, 'Sd', NULL, NULL, 'sd-5', NULL, '15', 0, 'Sun Valley, ID, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, '2023-08-03 16:16:07', '2023-08-03 16:58:22'); -- -------------------------------------------------------- -- -- Table structure for table `cart` -- DROP TABLE IF EXISTS `cart`; CREATE TABLE IF NOT EXISTS `cart` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `retailerId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `productId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `retailerId` (`retailerId`), KEY `brandId` (`brandId`), KEY `productId` (`productId`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; -- -- Dumping data for table `cart` -- INSERT INTO `cart` (`isActive`, `id`, `retailerId`, `brandId`, `productId`, `quantity`, `createdAt`, `updatedAt`) VALUES (1, 18, 1, 2, 2, 10, '2023-06-04 09:42:56', '2023-06-04 09:42:56'), (1, 19, 9, 2, 2, 1, '2023-06-19 02:53:18', '2023-06-19 02:53:18'); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; CREATE TABLE IF NOT EXISTS `categories` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Badder/Butter', '2022-05-04 00:00:00', '2022-10-18 00:31:36', NULL), (1, 2, 'Crumble', '2022-05-10 00:00:00', '2022-11-22 10:58:35', '2022-11-22 10:58:35'), (1, 3, 'Crystalline', '2022-05-10 14:19:48', '2022-10-18 00:34:54', NULL), (1, 4, 'Crystalline', '2022-06-02 09:45:51', '2022-11-22 10:57:54', '2022-11-22 10:57:54'), (1, 5, 'Distillate', '2022-10-18 00:26:23', '2022-10-18 00:34:59', '2022-10-18 00:34:59'), (1, 6, 'Edible', '2022-10-18 00:26:50', '2022-10-18 00:35:02', '2022-10-18 00:35:02'), (1, 7, 'Dry Sift', '2022-10-18 00:27:06', '2022-10-18 00:35:05', '2022-10-18 00:35:05'), (1, 8, 'Bubble Hash', '2022-10-18 00:27:27', '2022-10-18 00:27:27', NULL), (1, 9, 'Crystalline', '2022-10-18 00:27:39', '2022-10-18 00:35:22', '2022-10-18 00:35:22'), (1, 10, 'Sauce', '2022-10-18 00:27:53', '2022-10-18 00:35:25', '2022-10-18 00:35:25'), (1, 11, 'Shatter', '2022-10-18 00:28:03', '2022-10-18 00:35:29', '2022-10-18 00:35:29'), (1, 12, 'Crumble', '2022-10-18 00:35:43', '2022-10-18 00:35:43', NULL), (1, 13, 'Crystalline', '2022-10-18 00:35:54', '2022-11-22 10:58:13', '2022-11-22 10:58:13'), (1, 14, 'Distillate', '2022-10-18 00:36:17', '2022-10-18 00:36:17', NULL), (1, 15, 'Dry Sift', '2022-10-18 00:36:35', '2022-10-18 00:36:35', NULL), (1, 16, 'Edible', '2022-10-18 00:36:47', '2022-10-18 00:36:47', NULL), (1, 17, 'Flower', '2022-10-18 00:36:59', '2022-10-18 00:36:59', NULL), (1, 18, 'Pre Roll', '2022-10-18 00:37:09', '2022-10-18 00:37:09', NULL), (1, 19, 'Sauce', '2022-10-18 00:37:31', '2022-10-18 00:37:31', NULL), (1, 20, 'Shatter', '2022-10-18 00:37:39', '2022-10-18 00:37:39', NULL), (1, 21, 'Tincture', '2022-10-26 21:51:03', '2022-10-26 21:51:03', NULL), (1, 22, 'CBD', '2022-11-10 01:00:17', '2022-11-10 01:00:33', NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms` -- DROP TABLE IF EXISTS `cms`; CREATE TABLE IF NOT EXISTS `cms` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `content` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- -- Dumping data for table `cms` -- INSERT INTO `cms` (`isActive`, `id`, `name`, `slug`, `content`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Home', 'home', '{\"banner_content\":[{\"preTitle\":\"\",\"title\":\"Green Market Exchange\",\"description\":\"Wholesale Marketplace\",\"buttonText\":\"Get Started\",\"buttonLink\":\"https:\\/\\/www.greenmarketexchange.com\\/sign-up\",\"image\":\"\\/cms\\/1661947984-1653886724-banner-slide1.jpg\"}],\"section2_count\":\"01\",\"section2_main_title\":\"Our vision\",\"section2_description\":\"<p>Green Market Exchange strives&nbsp;to be the industry leader in cannabis wholesale marketplace technology and innovation as we invision cannabis will be a globaly traded&nbsp;commodity in the near future.<\\/p>\",\"section2_button_title\":\"About Us\",\"section2_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/about-us\",\"section2_image\":\"\\/cms\\/1653902872-vision-img.jpg\",\"section3_count\":\"\",\"section3_main_title\":\"For Brands\",\"section3_list_icon1\":\"icon-cap\",\"section3_list_title1\":\"Grow your Brand\",\"section3_list_description1\":\"Create brand awareness, Showcase your business credibility, Differentiate your brand\",\"section3_list_icon2\":\"icon-listing\",\"section3_list_title2\":\"Increase Sale orders\",\"section3_list_description2\":\"Receive and Accept orders, Build new partnerships, Manage sales operations\",\"section3_button_title\":\"Sign Up\",\"section3_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/seller\\/sign-up\",\"section3_image\":\"\\/cms\\/1657531043-brand-img.jpg\",\"section4_count\":\"\",\"section4_main_title\":\"For Retailers\",\"section4_description\":\"\",\"section4_list_icon1\":\"icon color-f3772c\",\"section4_list_title1\":\"Discover credible and quality wholesalers\",\"section4_list_description1\":\"\",\"section4_list_icon2\":\"icon color-f3772c\",\"section4_list_title2\":\"Manifest new partnerships and improve old ones\",\"section4_list_description2\":\"\",\"section4_list_icon3\":\"icon color-f3772c\",\"section4_list_title3\":\"Diversify product offerings\",\"section4_list_description3\":\"\",\"section4_button_title\":\"Sign Up\",\"section4_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/sign-up\",\"section4_image\":\"\\/cms\\/1653902950-retailer-img1.png\",\"section4_small_image\":\"\\/cms\\/1653904493-retailer-img2.png\",\"meta_title\":\"The Future of Cannabis Commerce\",\"meta_keyword\":\"Green Market Exchange The Future of Cannabis Commerce\",\"meta_description\":\"Green Market Exchange The Future of Cannabis Commerce\"}', '2022-04-14 04:02:23', '2022-12-07 17:04:38', NULL), (1, 2, 'Terms Of Use', 'terms-of-use', '{\"main_title\":\"Terms Of Use\",\"main_content\":\"<h6>Acceptance of the Terms of Use<\\/h6>\\r\\n\\r\\n<p>These terms of use are entered into by and between You and Green Market Exchange, Inc. (&quot;<strong>Company<\\/strong>,&quot; &quot;<strong>we<\\/strong>,&quot; or &quot;<strong>us<\\/strong>&quot;). The following terms and conditions, (&quot;<strong>Terms of Use<\\/strong>&quot;), govern your access to and use of <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a>, including any content, functionality, and services offered on or through <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a> (the &quot;<strong>Website<\\/strong>&quot;). If You are accessing or otherwise using this Website on behalf of a company or entity, You hereby represent and warrant that You have the authority to bind such Company to these Terms of Use, and that such company or entity hereby accepts the same.&nbsp;<\\/p>\\r\\n\\r\\n<p>Please read the Terms of Use carefully before you start to use the Website. By using the Website, you accept and agree to be bound and abide by these Terms of Use and our Privacy Policy, found at <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\/privacy-policy\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com\\/privacy-policy<\\/a>, incorporated herein by reference. If you do not want to agree to these Terms of Use or the Privacy Policy, you must not access or use the Website.<\\/p>\\r\\n\\r\\n<p>This Website is offered and available to users who 21 years of age or older within the United States or any of its territories or possessions. By using this Website, you represent and warrant that you meet all of the foregoing eligibility requirements. If you do not meet all of these requirements, you must not access or use the Website.<\\/p>\\r\\n\\r\\n<h6>Changes to the Terms of Use<\\/h6>\\r\\n\\r\\n<p>We may revise and update these Terms of Use from time to time in our sole discretion. All changes are effective immediately when we post them. However, any changes to the dispute resolution provisions set out in Governing Law and Jurisdiction will not apply to any disputes for which the parties have actual notice before the date the change is posted on the Website. Your continued use of the Website following the posting of revised Terms of Use means that you accept and agree to the changes. You are expected to check this page from time to time so you are aware of any changes, as they are binding on you.<\\/p>\\r\\n\\r\\n<h6>Accessing the Website and Account Security<\\/h6>\\r\\n\\r\\n<p>We reserve the right to withdraw or amend this Website, and any service or material we provide on the Website, in our sole discretion without notice. We will not be liable if for any reason all or any part of the Website is unavailable at any time or for any period. From time to time, we may restrict access to some parts of the Website, or the entire Website, to users, including registered users.<\\/p>\\r\\n\\r\\n<p>You are responsible for both:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Making all arrangements necessary for you to have access to the Website.<\\/li>\\r\\n\\t<li>Ensuring that all persons who access the Website through your internet connection are aware of these Terms of Use and comply with them.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>To access the Website or some of the resources it offers, you may be asked to provide certain registration details or other information. It is a condition of your use of the Website that all the information you provide on the Website is correct, current, and complete. You agree that all information you provide to register with this Website or otherwise, including, but not limited to, through the use of any interactive features on the Website, is governed by our Privacy Policy and you consent to all actions we take with respect to your information consistent with our Privacy Policy.<\\/p>\\r\\n\\r\\n<p>If you choose, or are provided with, a user name, password, or any other piece of information as part of our security procedures, you must treat such information as confidential, and you must not disclose it to any other person or entity. You also acknowledge that your account is personal to you and agree not to provide any other person with access to this Website or portions of it using your user name, password, or other security information. You agree to notify us immediately of any unauthorized access to or use of your user name or password or any other breach of security. You also agree to ensure that you exit from your account at the end of each session. You should use particular caution when accessing your account from a public or shared computer so that others are not able to view or record your password or other personal information.<\\/p>\\r\\n\\r\\n<p>We have the right to disable any user name, password, or other identifier, whether chosen by you or provided by us, at any time in our sole discretion for any or no reason, including if, in our opinion, you have violated any provision of these Terms of Use.<\\/p>\\r\\n\\r\\n<h6>Intellectual Property Rights<\\/h6>\\r\\n\\r\\n<p>The Website and its entire contents, features, and functionality (including but not limited to all information, software, text, displays, images, video, and audio, and the design, selection, and arrangement thereof) are owned by the Company, its licensors, or other providers of such material and are protected by United States and international copyright, trademark, patent, trade secret, and other intellectual property or proprietary rights laws.<\\/p>\\r\\n\\r\\n<p>These Terms of Use permit you to use the Website for your personal, non-commercial use only. You must not reproduce, distribute, modify, create derivative works of, publicly display, publicly perform, republish, download, store, or transmit any of the material on our Website, except as follows:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Your computer may temporarily store copies of such materials in RAM incidental to your accessing and viewing those materials.<\\/li>\\r\\n\\t<li>You may store files that are automatically cached by your Web browser for display enhancement purposes.<\\/li>\\r\\n\\t<li>You may print or download one copy of a reasonable number of pages of the Website for your own personal, non-commercial use and not for further reproduction, publication, or distribution.<\\/li>\\r\\n\\t<li>If we provide desktop, mobile, or other applications for download, you may download a single copy to your computer or mobile device solely for your own personal, non-commercial use, provided you agree to be bound by our end user license agreement for such applications.<\\/li>\\r\\n\\t<li>If we provide social media features with certain content, you may take such actions as are enabled by such features.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Modify copies of any materials from this site.<\\/li>\\r\\n\\t<li>Use any illustrations, photographs, video or audio sequences, or any graphics separately from the accompanying text.<\\/li>\\r\\n\\t<li>Delete or alter any copyright, trademark, or other proprietary rights notices from copies of materials from this site.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You must not access or use for any commercial purposes any part of the Website or any services or materials available through the Website.&nbsp;<br \\/>\\r\\nIf you print, copy, modify, download, or otherwise use or provide any other person with access to any part of the Website in breach of the Terms of Use, your right to use the Website will stop immediately and you must, at our option, return or destroy any copies of the materials you have made. No right, title, or interest in or to the Website or any content on the Website is transferred to you, and all rights not expressly granted are reserved by the Company. Any use of the Website not expressly permitted by these Terms of Use is a breach of these Terms of Use and may violate copyright, trademark, and other laws.<\\/p>\\r\\n\\r\\n<h6>Trademarks<\\/h6>\\r\\n\\r\\n<p>The Company name, the terms &ldquo;Green Market Exchange&rdquo;, &ldquo;GMX&rdquo;, all Company logos, and all related names, logos, product and service names, designs, and slogans are trademarks of the Company or its affiliates or licensors. You must not use such marks without the prior written permission of the Company. All other names, logos, product and service names, designs, and slogans on this Website are the trademarks of their respective owners.<\\/p>\\r\\n\\r\\n<h6>Prohibited Uses<\\/h6>\\r\\n\\r\\n<p>You may use the Website only for lawful purposes and in accordance with these Terms of Use. You agree not to use the Website:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>In any way that violates any applicable federal, state, local, or international law or regulation (including, without limitation, any laws regarding the export of data or software to and from the US or other countries).&nbsp;<\\/li>\\r\\n\\t<li>For the purpose of exploiting, harming, or attempting to exploit or harm minors in any way by exposing them to inappropriate content, asking for personally identifiable information, or otherwise.<\\/li>\\r\\n\\t<li>To send, knowingly receive, upload, download, use, or re-use any material that does not comply with the content standards set out in these Terms of Use or elsewhere on this Website.<\\/li>\\r\\n\\t<li>To transmit, or procure the sending of, any advertising or promotional material, including any &quot;junk mail,&quot; &quot;chain letter,&quot; &quot;spam,&quot; or any other similar solicitation.<\\/li>\\r\\n\\t<li>To impersonate or attempt to impersonate the Company, a Company employee, another user, or any other person or entity (including, without limitation, by using email addresses or screen names associated with any of the foregoing).<\\/li>\\r\\n\\t<li>To engage in any other conduct that restricts or inhibits anyone&#39;s use or enjoyment of the Website, or which, as determined by us, may harm the Company or users of the Website, or expose them to liability.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>Additionally, you agree not to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Use the Website in any manner that could disable, overburden, damage, or impair the site or interfere with any other party&#39;s use of the Website, including their ability to engage in real time activities through the Website.<\\/li>\\r\\n\\t<li>Use any robot, spider, or other automatic device, process, or means to access the Website for any purpose, including monitoring or copying any of the material on the Website.<\\/li>\\r\\n\\t<li>Use any manual process to monitor or copy any of the material on the Website, or for any other purpose not expressly authorized in these Terms of Use, without our prior written consent.<\\/li>\\r\\n\\t<li>Use any device, software, or routine that interferes with the proper working of the Website.<\\/li>\\r\\n\\t<li>Introduce any viruses, Trojan horses, worms, logic bombs, or other material that is malicious or technologically harmful.<\\/li>\\r\\n\\t<li>Attempt to gain unauthorized access to, interfere with, damage, or disrupt any parts of the Website, the server on which the Website is stored, or any server, computer, or database connected to the Website.&nbsp;<\\/li>\\r\\n\\t<li>Attack the Website via a denial-of-service attack or a distributed denial-of-service attack.<\\/li>\\r\\n\\t<li>Otherwise attempt to interfere with the proper working of the Website.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>User Contributions<\\/h6>\\r\\n\\r\\n<p>The Website may contain message boards, chat rooms, personal web pages or profiles, forums, bulletin boards, and other interactive features (collectively, &quot;Interactive Services&quot;) that allow users to post, submit, publish, display, or transmit to other users or other persons (hereinafter, &quot;post&quot;) content or materials (collectively, &quot;User Contributions&quot;) on or through the Website. All User Contributions must comply with the Content Standards set out in these Terms of Use.<\\/p>\\r\\n\\r\\n<p>Any User Contribution you post to the site will be considered non-confidential and non-proprietary. By providing any User Contribution on the Website, you grant us and our affiliates and service providers, and each of their respective licensees, successors, and assigns the right to use, reproduce, modify, perform, display, distribute, and otherwise disclose to third parties any such material for any purpose.&nbsp;<\\/p>\\r\\n\\r\\n<p>You represent and warrant that:&nbsp;<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>You own or control all rights in and to the User Contributions and have the right to grant the license granted above to us and our affiliates and service providers, and each of their respective licensees, successors, and assigns.<\\/li>\\r\\n\\t<li>All of your User Contributions do and will comply with these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You understand and acknowledge that you are responsible for any User Contributions you submit or contribute, and you, not the Company, have full responsibility for such content, including its legality, reliability, accuracy, and appropriateness.<\\/p>\\r\\n\\r\\n<p>We are not responsible or liable to any third party for the content or accuracy of any User Contributions posted by you or any other user of the Website.&nbsp;<\\/p>\\r\\n\\r\\n<h6>Monitoring and Enforcement Termination<\\/h6>\\r\\n\\r\\n<p>We have the right to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Remove or refuse to post any User Contributions for any or no reason in our sole discretion.<\\/li>\\r\\n\\t<li>Take any action with respect to any User Contribution that we deem necessary or appropriate in our sole discretion, including if we believe that such User Contribution violates the Terms of Use, including the Content Standards, infringes any intellectual property right or other right of any person or entity, threatens the personal safety of users of the Website or the public, or could create liability for the Company.<\\/li>\\r\\n\\t<li>Disclose your identity or other information about you to any third party who claims that material posted by you violates their rights, including their intellectual property rights or their right to privacy.<\\/li>\\r\\n\\t<li>Take appropriate legal action, including without limitation, referral to law enforcement, for any illegal or unauthorized use of the Website.<\\/li>\\r\\n\\t<li>Terminate or suspend your access to all or part of the Website for any or no reason, including without limitation, any violation of these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>Without limiting the foregoing, we have the right to cooperate fully with any law enforcement authorities or court order requesting or directing us to disclose the identity or other information of anyone posting any materials on or through the Website. YOU WAIVE AND HOLD HARMLESS THE COMPANY AND ITS AFFILIATES, LICENSEES, AND SERVICE PROVIDERS FROM ANY CLAIMS RESULTING FROM ANY ACTION TAKEN BY ANY OF THE FOREGOING PARTIES DURING, OR TAKEN AS A CONSEQUENCE OF, INVESTIGATIONS BY EITHER SUCH PARTIES OR LAW ENFORCEMENT AUTHORITIES.<\\/p>\\r\\n\\r\\n<p>However, we do not undertake to review material before it is posted on the Website, and cannot ensure prompt removal of objectionable material after it has been posted. Accordingly, we assume no liability for any action or inaction regarding transmissions, communications, or content provided by any user or third party. We have no liability or responsibility to anyone for performance or nonperformance of the activities described in this section.<\\/p>\\r\\n\\r\\n<h6>Content Standards<\\/h6>\\r\\n\\r\\n<p>These content standards apply to any and all User Contributions and use of Interactive Services. User Contributions must in their entirety comply with all applicable federal, state, local, and international laws and regulations. Without limiting the foregoing, User Contributions must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Contain any material that is defamatory, obscene, indecent, abusive, offensive, harassing, violent, hateful, inflammatory, or otherwise objectionable.<\\/li>\\r\\n\\t<li>Promote sexually explicit or pornographic material, violence, or discrimination based on race, sex, religion, nationality, disability, sexual orientation, or age.<\\/li>\\r\\n\\t<li>Infringe any patent, trademark, trade secret, copyright, or other intellectual property or other rights of any other person.<\\/li>\\r\\n\\t<li>Violate the legal rights (including the rights of publicity and privacy) of others or contain any material that could give rise to any civil or criminal liability under applicable laws or regulations or that otherwise may be in conflict with these Terms of Use and our Privacy Policy.<\\/li>\\r\\n\\t<li>Be likely to deceive any person.<\\/li>\\r\\n\\t<li>Promote any illegal activity, or advocate, promote, or assist any unlawful act.<\\/li>\\r\\n\\t<li>Cause annoyance, inconvenience, or needless anxiety or be likely to upset, embarrass, alarm, or annoy any other person.<\\/li>\\r\\n\\t<li>Impersonate any person, or misrepresent your identity or affiliation with any person or organization.<\\/li>\\r\\n\\t<li>Involve commercial activities or sales, such as contests, sweepstakes, and other sales promotions, barter, or advertising.<\\/li>\\r\\n\\t<li>Give the impression that they emanate from or are endorsed by us or any other person or entity, if this is not the case.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Copyright Infringement<\\/h6>\\r\\n\\r\\n<p>If you believe that any User Contributions violate your copyright, please contact us and send us a notice of copyright infringement. It is the policy of the Company to terminate the user accounts of repeat infringers. In accordance with the Digital Millennium Copyright Act of 1998 (&ldquo;DMCA&rdquo;), the text of which can be found on the U.S. Copyright Office website, we will respond appropriately to claims and reports of copyright infringement taking place on or through the Websites. If you believe that one of our users is, through the use of our Website, unlawfully infringing the copyright(s) in a work, and wish to have the allegedly infringing material removed, the following information in the form of a written notification (pursuant to 17 U.S.C. &sect; 512(c)) must be provided to our designated Copyright Agent:<\\/p>\\r\\n\\r\\n<p>Please note that, pursuant to 17 U.S.C. &sect; 512(f), any misrepresentation of material fact (falsities) in a written notification automatically subjects the complaining party to liability for any damages, costs and attorney&rsquo;s fees incurred by us in connection with the written notification and allegation of copyright infringement.<\\/p>\\r\\n\\r\\n<p>The Designated Copyright Agent for Green Market Exchange is:<\\/p>\\r\\n\\r\\n<p>Copyright Agent<br \\/>\\r\\nChristian Stratka<br \\/>\\r\\nGreen Market Exchange, LLC<br \\/>\\r\\nADDRESS<br \\/>\\r\\nEmail: <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Your physical or electronic signature;<\\/li>\\r\\n\\t<li>Identification of the copyrighted work(s) that you claim to have been infringed;<\\/li>\\r\\n\\t<li>Identification of the material on our services that you claim is infringing and that you request us to remove;<\\/li>\\r\\n\\t<li>Sufficient information to permit us to locate such material;<\\/li>\\r\\n\\t<li>Your address, telephone number, and e-mail address;<\\/li>\\r\\n\\t<li>A statement that you have a good faith belief that use of the objectionable material is not authorized by the copyright owner, its agent, or under the law; and<\\/li>\\r\\n\\t<li>A statement that the information in the notification is accurate, and under penalty of perjury, that you are either the owner of the copyright that has allegedly been infringed or that you are authorized to act on behalf of the copyright owner.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Reliance on Information Posted<\\/h6>\\r\\n\\r\\n<p>The information presented on or through the Website is made available solely for general information purposes. We do not warrant the accuracy, completeness, or usefulness of this information. Any reliance you place on such information is strictly at your own risk. We disclaim all liability and responsibility arising from any reliance placed on such materials by you or any other visitor to the Website, or by anyone who may be informed of any of its contents.<\\/p>\\r\\n\\r\\n<p>We do not offer any medical advice, and any information presented on our Website is not intended to be a substitute for medical advice.<\\/p>\\r\\n\\r\\n<p>This Website may include content provided by third parties, including materials provided by other users, bloggers, and third-party licensors, syndicators, aggregators, and\\/or reporting services. All statements and\\/or opinions expressed in these materials, and all articles and responses to questions and other content, other than the content provided by the Company, are solely the opinions and the responsibility of the person or entity providing those materials. These materials do not necessarily reflect the opinion of the Company. We are not responsible, or liable to you or any third party, for the content or accuracy of any materials provided by any third parties.<\\/p>\\r\\n\\r\\n<h6>Acknowledgment of Federal and State Laws<\\/h6>\\r\\n\\r\\n<p>You expressly acknowledge that this Website is for residents of states and localities with laws regulating medical or the recreational use of cannabis only and that medical cannabis collectives and patients are established pursuant to their respective local laws. Marijuana is included on Schedule 1 under the United States Controlled Substances Act. Under the federal laws of the United States of America, manufacturing, distributing, dispensing or possession of marijuana is illegal, and individuals are subject to arrest and\\/or prosecution for doing so. User further acknowledges that medical use is not recognized as a valid defense under federal laws regarding marijuana. User also acknowledges that the interstate transportation of marijuana is a federal offense.<\\/p>\\r\\n\\r\\n<h6>Changes to the Website<\\/h6>\\r\\n\\r\\n<p>We may update the content on this Website from time to time, but its content is not necessarily complete or up-to-date. Any of the material on the Website may be out of date at any given time, and we are under no obligation to update such material.<\\/p>\\r\\n\\r\\n<h6>Information About You and Your Visits to the Website<\\/h6>\\r\\n\\r\\n<p>All information we collect on this Website is subject to our Privacy Policy. By using the Website, you consent to all actions taken by us with respect to your information in compliance with the Privacy Policy.<\\/p>\\r\\n\\r\\n<p>[Online Purchases All purchases through our site or other transactions formed through the Website, or resulting from visits made by you, are governed by the following terms of sale [Additional terms and conditions may also apply to specific portions, services, or features of the Website. All such additional terms and conditions are hereby incorporated by this reference into these Terms of Use.]]<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Linking to the Website and Social Media Features<\\/h6>\\r\\n\\r\\n<p>You may link to our homepage, provided you do so in a way that is fair and legal and does not damage our reputation or take advantage of it, but you must not establish a link in such a way as to suggest any form of association, approval, or endorsement on our part.<\\/p>\\r\\n\\r\\n<p>This Website may provide certain social media features that enable you to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Link from your own or certain third-party websites to certain content on this Website.<\\/li>\\r\\n\\t<li>Send emails or other communications with certain content, or links to certain content, on this Website.<\\/li>\\r\\n\\t<li>Cause limited portions of content on this Website to be displayed or appear to be displayed on your own or certain third-party websites.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You may use these features solely as they are provided by us, solely with respect to the content they are displayed with, and otherwise in accordance with any additional terms and conditions we provide with respect to such features. Subject to the foregoing, you must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Establish a link from any website that is not owned by you.<\\/li>\\r\\n\\t<li>Cause the Website or portions of it to be displayed on, or appear to be displayed by, any other site, for example, framing, deep linking, or in-line linking.<\\/li>\\r\\n\\t<li>Link to any part of the Website other than the homepage.<\\/li>\\r\\n\\t<li>Otherwise take any action with respect to the materials on this Website that is inconsistent with any other provision of these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You agree to cooperate with us in causing any unauthorized framing or linking immediately to stop. We reserve the right to withdraw linking permission without notice. We may disable all or any social media features and any links at any time without notice in our discretion.<\\/p>\\r\\n\\r\\n<h6>Links from the Website<\\/h6>\\r\\n\\r\\n<p>If the Website contains links to other sites and resources provided by third parties, these links are provided for your convenience only. This includes links contained in advertisements, including banner advertisements and sponsored links. We have no control over the contents of those sites or resources, and accept no responsibility for them or for any loss or damage that may arise from your use of them. If you decide to access any of the third-party websites linked to this Website, you do so entirely at your own risk and subject to the terms and conditions of use for such websites.<\\/p>\\r\\n\\r\\n<h6>Geographic Restrictions<\\/h6>\\r\\n\\r\\n<p>We provide this Website for use only by persons located in the United States. We make no claims that the Website or any of its content is accessible or appropriate outside of the United States. Access to the Website may not be legal by certain persons or in certain geographic areas. If you access the Website from outside the United States, you do so on your own initiative and are responsible for compliance with local laws.<\\/p>\\r\\n\\r\\n<h6>Disclaimer of Warranties<\\/h6>\\r\\n\\r\\n<p>You understand that we cannot and do not guarantee or warrant that files available for downloading from the internet or the Website will be free of viruses or other destructive code. You are responsible for implementing sufficient procedures and checkpoints to satisfy your particular requirements for anti-virus protection and accuracy of data input and output, and for maintaining a means external to our site for any reconstruction of any lost data.<\\/p>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, WE WILL NOT BE LIABLE FOR ANY LOSS OR DAMAGE CAUSED BY A DISTRIBUTED DENIAL-OF-SERVICE ATTACK, VIRUSES, OR OTHER TECHNOLOGICALLY HARMFUL MATERIAL THAT MAY INFECT YOUR COMPUTER EQUIPMENT, COMPUTER PROGRAMS, DATA, OR OTHER PROPRIETARY MATERIAL DUE TO YOUR USE OF THE WEBSITE OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE OR TO YOUR DOWNLOADING OF ANY MATERIAL POSTED ON IT, OR ON ANY WEBSITE LINKED TO IT.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>YOUR USE OF THE WEBSITE, ITS CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE IS AT YOUR OWN RISK. THE WEBSITE, ITS CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE ARE PROVIDED ON AN &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; BASIS, WITHOUT ANY WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. NEITHER THE COMPANY NOR ANY PERSON ASSOCIATED WITH THE COMPANY MAKES ANY WARRANTY OR REPRESENTATION WITH RESPECT TO THE COMPLETENESS, SECURITY, RELIABILITY, QUALITY, ACCURACY, OR AVAILABILITY OF THE WEBSITE. WITHOUT LIMITING THE FOREGOING, NEITHER THE COMPANY NOR ANYONE ASSOCIATED WITH THE COMPANY REPRESENTS OR WARRANTS THAT THE WEBSITE, ITS CONTENT, OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL BE ACCURATE, RELIABLE, ERROR-FREE, OR UNINTERRUPTED, THAT DEFECTS WILL BE CORRECTED, THAT OUR SITE OR THE SERVER THAT MAKES IT AVAILABLE ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE WEBSITE OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL OTHERWISE MEET YOUR NEEDS OR EXPECTATIONS.<\\/p>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, THE COMPANY HEREBY DISCLAIMS ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR PARTICULAR PURPOSE.<\\/p>\\r\\n\\r\\n<p>THE FOREGOING DOES NOT AFFECT ANY WARRANTIES THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.<\\/p>\\r\\n\\r\\n<h6>Limitation on Liability<\\/h6>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, IN NO EVENT WILL THE COMPANY, ITS AFFILIATES, OR THEIR LICENSORS, SERVICE PROVIDERS, EMPLOYEES, AGENTS, OFFICERS, OR DIRECTORS BE LIABLE FOR DAMAGES OF ANY KIND, UNDER ANY LEGAL THEORY, ARISING OUT OF OR IN CONNECTION WITH YOUR USE, OR INABILITY TO USE, THE WEBSITE, ANY WEBSITES LINKED TO IT, ANY CONTENT ON THE WEBSITE OR SUCH OTHER WEBSITES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO, PERSONAL INJURY, PAIN AND SUFFERING, EMOTIONAL DISTRESS, LOSS OF REVENUE, LOSS OF PROFITS, LOSS OF BUSINESS OR ANTICIPATED SAVINGS, LOSS OF USE, LOSS OF GOODWILL, LOSS OF DATA, AND WHETHER CAUSED BY TORT (INCLUDING NEGLIGENCE), BREACH OF CONTRACT, OR OTHERWISE, EVEN IF FORESEEABLE. THE FOREGOING DOES NOT AFFECT ANY LIABILITY THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.<\\/p>\\r\\n\\r\\n<h6>Indemnification<\\/h6>\\r\\n\\r\\n<p>You agree to defend, indemnify, and hold harmless the Company, its affiliates, licensors, and service providers, and its and their respective officers, directors, employees, contractors, agents, licensors, suppliers, successors, and assigns from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable attorneys&#39; fees) arising out of or relating to your violation of these Terms of Use or your use of the Website, including, but not limited to, your User Contributions, any use of the Website&#39;s content, services, and products other than as expressly authorized in these Terms of Use, or your use of any information obtained from the Website.<\\/p>\\r\\n\\r\\n<h6>Governing Law and Jurisdiction<\\/h6>\\r\\n\\r\\n<p>All matters relating to the Website and these Terms of Use, and any dispute or claim arising therefrom or related thereto (in each case, including non-contractual disputes or claims), shall be governed by and construed in accordance with the internal laws of the State of Maine without giving effect to any choice or conflict of law provision or rule (whether of the State of Maine or any other jurisdiction). Any legal suit, action, or proceeding arising out of, or related to, these Terms of Use or the Website shall be instituted exclusively in the federal courts of the United States or the courts of the State of Maine, although we retain the right to bring any suit, action, or proceeding against you for breach of these Terms of Use in your jurisdiction of residence or any other relevant jurisdiction. You waive any and all objections to the exercise of jurisdiction over you by such courts and to venue in such courts.<\\/p>\\r\\n\\r\\n<h6>Arbitration<\\/h6>\\r\\n\\r\\n<p>At Company&#39;s sole discretion, it may require You to submit any disputes arising from these Terms of Use or use of the Website, including disputes arising from or concerning their interpretation, violation, invalidity, non-performance, or termination, to final and binding arbitration under the Rules of Arbitration of the American Arbitration Association applying Maine law.<\\/p>\\r\\n\\r\\n<h6>Waiver and Severability<\\/h6>\\r\\n\\r\\n<p>No waiver by the Company of any term or condition set out in these Terms of Use shall be deemed a further or continuing waiver of such term or condition or a waiver of any other term or condition, and any failure of the Company to assert a right or provision under these Terms of Use shall not constitute a waiver of such right or provision. If any provision of these Terms of Use is held by a court or other tribunal of competent jurisdiction to be invalid, illegal, or unenforceable for any reason, such provision shall be eliminated or limited to the minimum extent such that the remaining provisions of the Terms of Use will continue in full force and effect.<\\/p>\\r\\n\\r\\n<h6>Entire Agreement<\\/h6>\\r\\n\\r\\n<p>The Terms of Use and our Privacy Policy constitute the sole and entire agreement between you and Green Market Exchange, LLC regarding the Website and supersede all prior and contemporaneous understandings, agreements, representations, and warranties, both written and oral, regarding the Website.<\\/p>\\r\\n\\r\\n<h6>Your Comments and Concerns<\\/h6>\\r\\n\\r\\n<p>This website is operated by Green Market Exchange, LLC, a Maine limited liability company. All feedback, comments, requests for technical support, and other communications relating to the Website should be directed to: <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\",\"meta_title\":\"Terms Of Use\",\"meta_keyword\":\"Terms Of Use\",\"meta_description\":\"Terms Of Use\"}', '2022-04-14 04:02:23', '2023-02-24 18:41:00', NULL), (1, 3, 'About us', 'about-us', '{\"section1_main_title\":\"About Us\",\"section1_title\":\"Our Goal\",\"section1_description\":\"Green Market Exchange strives to be the central provider of cannabis wholesale market information and data for the cannabis business ecosystem. We aspire to create and develop a world class platform to connect cannabis based companies from every corner of the globe with the hopes of making the world a greener place.\",\"section1_list_title1\":\"The Future is Green\",\"section1_list_description1\":\"<p>The cannabis indusustry is poised to explode to new hights. At Green Market Exchange, we&#39;re buliding a community and marketplace to be part of your journey into the green frontier.&nbsp;<\\/p>\",\"section1_list_image1\":\"\\/cms\\/1653912907-about-img.jpg\",\"section1_list_title2\":\"Power in Perspective\",\"section1_list_description2\":\"<p>Green Market Exchange values diversity in perspective. As we continue to devlop our platform and grow our product offerings, we ask our users and the community to be transparent with us and offer suggestions to help us create true value for you,&nbsp;the community and the industry.<\\/p>\",\"section1_list_image2\":\"\\/cms\\/1653912907-about-tag-img.jpg\",\"section2_main_title\":\"Our Roots\",\"section2_description\":\"<p>Green Market Exchange was founded in 2020 on the basis of cannabis being a health beneficial product and a positive alternative to other common consumable products. Green Market Exchange&nbsp;believes cannabis is a natural&nbsp;medicine that has the potenial to not only better invidual health but connect society in an optimistic&nbsp;manner as the cannabis community envokes peace.&nbsp;We hope to not only create an awesome product but more importantly a platform that connects, inspires and radiates the values&nbsp;of the cannabis community.<\\/p>\",\"section2_quote\":\"\",\"section2_image\":\"\\/cms\\/1650008538-cart-image-7.png\",\"meta_title\":\"About Us\",\"meta_keyword\":\"About Us\",\"meta_description\":\"About Us\"}', '2022-04-14 04:02:23', '2022-12-07 16:55:39', NULL), (1, 4, 'Contact us', 'contact-us', NULL, '2022-07-11 13:19:52', '2022-07-11 13:19:52', NULL); INSERT INTO `cms` (`isActive`, `id`, `name`, `slug`, `content`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 5, 'Privacy Policy', 'privacy-policy', '{\"main_title\":\"Privacy Policy\",\"main_content\":\"<p>Green Market Exchange Inc. (&quot;Company&quot;, &quot;We&quot;, or &ldquo;Us&rdquo;) respect your privacy and are committed to protecting it through our compliance with this policy. This policy describes the types of information we may collect from you or that you may provide when you visit the website <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\/\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a> (our &quot;Website&quot;) and our practices for collecting, using, maintaining, protecting, and disclosing that information.<\\/p>\\r\\n\\r\\n<p>This policy applies to information we collect on this Website, as well as, any related online services, sales, marketing, or events we conduct (including in any electronic messages between you and us). It does not apply to information collected by us offline or through any other means, including on any other website operated by us or any third party, including through any application or content (including advertising) that may link to or be accessible from or on the Website.<\\/p>\\r\\n\\r\\n<p>Please read this policy carefully to understand our policies and practices regarding your information and how we will treat it. If you do not agree with our policies and practices, your choice is not to use our Website. By accessing or using this Website, you agree to this privacy policy. This policy may change from time to time. Your continued use of this Website after we make changes is deemed to be acceptance of those changes, so please check the policy periodically for updates.<\\/p>\\r\\n\\r\\n<h6>Children Under the Age of 18<\\/h6>\\r\\n\\r\\n<p>Our Website is not intended for anyone under 21 years of age. No one under age 21 may provide any personal information to the Website. We do not knowingly collect personal information from children under 18. If you are under 21, do not use or provide any information on this Website. If we learn we have collected or received personal information from a child under 18 without verification of parental consent, we will delete that information. If you believe we might have any information from or about a child under 18, please contact us at <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a>.<\\/p>\\r\\n\\r\\n<h6>Information We Collect About You and How We Collect It<\\/h6>\\r\\n\\r\\n<p>We collect several types of information from and about users of our Website, including information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>By which you may be personally identified, such as name, postal address (in whole or part), e-mail address, telephone number, job title, professional experience, or any other identifier by which you may be contacted online or offline (&quot;personal information&quot;);<\\/li>\\r\\n <li>Some users may also submit their (i) means of age verification, or (ii) medical marijuana recommendation, including their recommending doctor&rsquo;s name and license number, contact information, verification methodology, and verification number (&ldquo;Medical Marijuana Information&rdquo;).<\\/li>\\r\\n <li>That is about you but individually does not identify you; and\\/or<\\/li>\\r\\n <li>About your IP address, browser, network, device, internet connection, the equipment you use to access our Website, and Website usage details (including, without limitation, clinks, internal links, pages visited, scrolling, searches, and timestamps).<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<p>We collect this information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Directly from you when you voluntarily provide it to us.<\\/li>\\r\\n <li>Automatically as you navigate through the site. Information collected automatically may include usage details, IP addresses, and information collected through cookies, web beacons, and other tracking technologies.<\\/li>\\r\\n <li>From third parties, for example, our business partners.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<h6>Information You Provide to Us<\\/h6>\\r\\n\\r\\n<p>The information we collect on or through our Website may include:<\\/p>\\r\\n<ul>\\r\\n <li>Information that you provide by filling in forms on our Website. This includes information provided at the time of purchasing or using our services or products, subscribing to our newsletter, registering for courses we host, or otherwise registering to use our Website. We may also ask you for information when you report a problem with our Website (When you submit information to this website via webform, we collect the data requested in the webform in order to track and respond to your submissions. We may share this information with our Website hosting provider, so that they can provide website services to us.<\\/li>\\r\\n <li>Records and copies of your correspondence (including email addresses), if you contact us.<\\/li>\\r\\n <li>Details of transactions you carry out through our Website and of the fulfillment of your orders. You may be required to provide financial information before placing an order through our Website.<\\/li>\\r\\n <li>Information you otherwise provide us via our Website.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>You also may provide information to be published or displayed (hereinafter, &quot;posted&quot;) on public areas of the Website, or transmitted to other users of the Website or third parties (collectively, &quot;User Contributions&quot;). Your User Contributions are posted on and transmitted to others at your own risk. Although, please be aware that no security measures are perfect or impenetrable. Additionally, we cannot control the actions of other users of the Website with whom you may choose to share your User Contributions. Therefore, we cannot and do not guarantee that your User Contributions will not be viewed by unauthorized persons.<\\/p>\\r\\n\\r\\n<h6>Information We Collect Through Automatic Data Collection Technologies<\\/h6>\\r\\n\\r\\n<p>As you navigate through and interact with our Website, we may use automatic data collection technologies to collect certain information about your equipment, browsing actions, and patterns, including:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Details of your visits to our Website and other communication data and the resources that you access and use on the Website.<\\/li>\\r\\n <li>Information about your computer and internet connection, including your IP address, operating system, and browser type.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n\\r\\n<p>We also may use these technologies to collect information about your online activities over time and across third-party websites or other online services (behavioral tracking). The information we collect automatically may include personal information or we may maintain it or associate it with personal information we collect in other ways or receive from third parties. It helps us to improve our Website and to deliver a better and more personalized service, including by enabling us to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Estimate our audience size and usage patterns.<\\/li>\\r\\n <li>Store information about your preferences, allowing us to customize our Website according to your individual interests.<\\/li>\\r\\n <li>Speed up your searches.<\\/li>\\r\\n <li>Recognize you when you return to our Website.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<p>The technologies we use for this automatic data collection may include:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Cookies (or browser cookies). A cookie is a small file placed on the hard drive of your computer. You may refuse to accept browser cookies by activating the appropriate setting on your browser. However, if you select this setting you may be unable to access certain parts of our Website. Unless you have adjusted your browser setting so that it will refuse cookies, our system will issue cookies when you direct your browser to our Website. We may share information with our website analytics provider, google analytics, to learn about site traffic and activity. Flash Cookies. Certain features of our Website may use local stored objects (or Flash cookies) to collect and store information about your preferences and navigation to, from, and on our Website.<\\/li>\\r\\n <li>Flash Cookies. Certain features of our Website may use local stored objects (or Flash cookies) to collect and store information about your preferences and navigation to, from, and on our Website. Flash cookies are not managed by the same browser settings as are used for browser cookies. For information about managing your privacy and security settings for Flash cookies, see Choices About How We Use and Disclose Your Information.<\\/li>\\r\\n <li>Web Beacons. Pages of our the Website and our e-mails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of certain website content and verifying system and server integrity).<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<h6>Third-Party Use of Cookies and Other Tracking Technologies<\\/h6>\\r\\n\\r\\n<p>Some content or applications, including advertisements, on the Website are served by third-parties, including advertisers, ad networks and servers, content providers, and application providers. These third parties may use cookies alone or in conjunction with web beacons or other tracking technologies to collect information about you when you use our website. The information they collect may be associated with your personal information or they may collect information, including personal information, about your online activities over time and across different websites and other online services. They may use this information to provide you with interest-based (behavioral) advertising or other targeted content. Our third-party services may include Amazon Web Services, google analytics, and may include others in the future. We do not control these third parties&#39; tracking technologies or how they may be used. If you have any questions about an advertisement or other targeted content, you should contact the responsible provider directly. For information about how you can opt out of receiving targeted advertising from many providers, see Choices About How We Use and Disclose Your Information.<\\/p>\\r\\n\\r\\n<h6>How We Use Your Information<\\/h6>\\r\\n\\r\\n<p>We use information that we collect about you or that you provide to us, including any personal information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To present our Website and its contents to you.<\\/li>\\r\\n <li>To provide you with information, products, or services that you request from us.<\\/li>\\r\\n <li>To fulfill any other purpose for which you provide it.<\\/li>\\r\\n <li>To carry out our obligations and enforce our rights arising from any contracts entered into between you and us, including for billing and collection.<\\/li>\\r\\n <li>To notify you about changes to our Website or any products or services we offer or provide though it.<\\/li>\\r\\n <li>In any other way we may describe when you provide the information.<\\/li>\\r\\n <li>For any other purpose with your consent.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We may also use your information to contact you about our own and third-parties&#39; goods and services and\\/or promotional offers that may be of interest to you, industry news and dates, and other information via email newsletter. If you do not want us to use your information in this way, please click &ldquo;unsubscribe&rdquo; from any email newsletter you may receive from us in the future.<\\/p>\\r\\n\\r\\n<p>We may use the information we have collected from you to enable us to display advertisements to our advertisers&#39; target audiences. Even though we do not disclose your personal information for these purposes without your consent, if you click on or otherwise interact with an advertisement, the advertiser may assume that you meet its target criteria.<\\/p>\\r\\n\\r\\n<h6>Disclosure of Your Information<\\/h6>\\r\\n\\r\\n<p>We may disclose aggregated information about our users, and information that does not identify any individual, without restriction.<\\/p>\\r\\n\\r\\n<p>We may disclose personal information that we collect or you provide as described in this privacy policy:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To our subsidiaries and affiliates.<\\/li>\\r\\n <li>To contractors, service providers, and other third parties we use to support our business[ and who are bound by contractual obligations to keep personal information confidential and use it only for the purposes for which we disclose it to them.<\\/li>\\r\\n <li>To a buyer or other successor in the event of a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which personal information held by us about our Website users is among the assets transferred.<\\/li>\\r\\n <li>To third parties to market their products or services to you if you have not opted out of these disclosures.<\\/li>\\r\\n <li>To fulfill the purpose for which you provide it. For example, if you give us an email address to use the &quot;email a friend&quot; feature of our Website, we will transmit the contents of that email and your email address to the recipients.<\\/li>\\r\\n <li>For any other purpose disclosed by us when you provide the information.<\\/li>\\r\\n <li>With your consent.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We may also disclose your personal information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To comply with any court order, law, or legal process, including to respond to any government or regulatory request.<\\/li>\\r\\n <li>Medical Marijuana Information may need to be disclosed, along with other required information, for the purpose of calculating taxes, ensuring legal compliance.<\\/li>\\r\\n <li>To enforce or apply our terms of use and other agreements, including for billing and collection purposes.<\\/li>\\r\\n <li>If we believe disclosure is necessary or appropriate to protect the rights, property, or safety of us, our customers, or others. This includes exchanging information with other companies and organizations for the purposes of fraud protection and credit risk reduction.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<h6>Choices About How We Use and Disclose Your Information<\\/h6>\\r\\n\\r\\n<p>We strive to provide you with choices regarding the personal information you provide to us. We have created mechanisms to provide you with the following control over your information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Tracking Technologies and Advertising. You can set your browser to refuse all or some browser cookies, or to alert you when cookies are being sent. To learn how you can manage your Flash cookie settings, visit the Flash player settings page on Adobe&#39;s website. If you disable or refuse cookies, please note that some parts of this site may then be inaccessible or not function properly.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We do not control third parties&#39; collection or use of your information to serve interest-based advertising. However these third parties may provide you with ways to choose not to have your information collected or used in this way. You can opt out of receiving targeted ads from members of the Network Advertising Initiative (&quot;NAI&quot;) on the NAI&#39;s website.<\\/p>\\r\\n\\r\\n<h6>Accessing and Correcting Your Information<\\/h6>\\r\\n\\r\\n<p>You may also send us an email at <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a> to request access to, correct or delete any personal information that you have provided to us. We cannot however, guarantee that can delete any such information once it has already been provided to us and\\/or third parties. In certain cases, we cannot delete your personal information except by also deleting your user account. We may not accommodate a request to change information if we believe the change would violate any law or legal requirement or cause the information to be incorrect. If you delete your User Contributions from the Website, copies of your User Contributions may remain viewable in cached and archived pages, or might have been copied or stored by other Website users.<\\/p>\\r\\n\\r\\n<h6>Your California Privacy Rights<\\/h6>\\r\\n\\r\\n<p>California&#39;s &quot;Shine the Light&quot; law (Civil Code Section &sect; 1798.83) permits users who are California residents to request certain information regarding our disclosure of personal information to third parties for their direct marketing purposes. To make such a request, please send an email to <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a>.<\\/p>\\r\\n\\r\\n<p>If you are under 18 years of age, reside in California, and have a registered account with the Website, you have the right to request removal of unwanted data that you publicly post on the Website. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Website, but please be aware that the data may not be completely or comprehensively removed from all our systems (e.g. backups, etc.).<\\/p>\\r\\n\\r\\n<h6>Data Security<\\/h6>\\r\\n\\r\\n<p>We have implemented measures designed to secure your personal information from accidental loss and from unauthorized access, use, alteration, and disclosure. The safety and security of your information also depends on you. Where we have given you (or where you have chosen) a password for access to certain parts of our Website, you are responsible for keeping this password confidential. We ask you not to share your password with anyone. Unfortunately, the transmission of information via the internet is not completely secure. Although we do our best to protect your personal information, we cannot guarantee the security of your personal information transmitted to our Website. Any transmission of personal information is at your own risk. We are not responsible for circumvention of any privacy settings or security measures contained on the Website.<\\/p>\\r\\n\\r\\n<h6>Changes to Our Privacy Policy<\\/h6>\\r\\n\\r\\n<p>It is our policy to post any changes we make to our privacy policy on this page. If we make material changes to how we treat our users&#39; personal information, we will notify you by email to the email address specified in your account and\\/or through a notice on the Website home page. The date the privacy policy was last revised is identified at the top of the page. You are responsible for ensuring we have an up-to-date active and deliverable email address for you, and for periodically visiting our Website and this privacy policy to check for any changes.<\\/p>\\r\\n\\r\\n<h6>Contact Information<\\/h6>\\r\\n\\r\\n<p>To ask questions or comment about this privacy policy and our privacy practices, contact us at:<\\/p>\\r\\n\\r\\n<p><a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\",\"meta_title\":\"Privacy Policy\",\"meta_keyword\":\"Privacy Policy\",\"meta_description\":\"Privacy Policy\"}', '2022-11-11 17:51:01', '2022-11-23 05:34:49', NULL), (1, 6, 'Subscription Policy', 'subscription-policy', '{\"main_title\":\"Subscription Policy\",\"main_content\":\"<div classname=\\\"content-box\\\">\\r\\n<h6>Payment<\\/h6>\\r\\n\\r\\n<p>All subscriptions must be paid in advance on a monthly basis. Payment will be charged to the customer&#39;s credit card or debit card on the day a customer selects a subscription. If the payment is not successful, the subscription will be suspended until payment is received.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Cancellation<\\/h6>\\r\\n\\r\\n<p>Customers may cancel their subscription at any time through their manage subscription settings. Cancellation will be effective at the end of the current billing period. No refunds will be given for partial days, months or years of service.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Changes to subscription plans<\\/h6>\\r\\n\\r\\n<p>Customers may upgrade or downgrade their subscription plan at any time through their manage subscription settings. Any changes to the subscription plan will take effect immediately, customers will be charged for the current billing period for an upgraded plan if they are downgrading their subscription.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Changes to subscription fees<\\/h6>\\r\\n\\r\\n<p>We reserve the right to change the subscription fees at any time. Any changes will be communicated to customers at least 30 days in advance and will take effect at the end of the current billing period.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Termination<\\/h6>\\r\\n\\r\\n<p>We reserve the right to terminate a subscription at any time for any reason, with or without notice. If we terminate a subscription without cause, we will provide a pro-rated refund for the remaining subscription period.<\\/p>\\r\\n\\r\\n<p>By subscribing to Green Market Exchange, you agree to the terms of this subscription policy. If you have any questions or concerns, please do not hesitate to contact us.<\\/p>\\r\\n<\\/div>\",\"meta_title\":\"Subscription Policy\",\"meta_keyword\":\"Subscription Policy\",\"meta_description\":\"Subscription Policy\"}', '2023-02-24 04:02:23', '2023-02-24 18:40:20', NULL); -- -------------------------------------------------------- -- -- Table structure for table `comments` -- DROP TABLE IF EXISTS `comments`; CREATE TABLE IF NOT EXISTS `comments` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `comment` text, `commentUniqueId` varchar(255) DEFAULT NULL, `replyCount` int DEFAULT '0', `likeCount` int DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `commentUniqueId` (`commentUniqueId`), KEY `userId` (`userId`), KEY `postId` (`postId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `comments` -- INSERT INTO `comments` (`isActive`, `id`, `userId`, `postId`, `comment`, `commentUniqueId`, `replyCount`, `likeCount`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 20, 2, 'Hello @hogntopjohn this is test reply', 'ljynp5mg8aimpb6oib', 1, 0, '2023-07-11 18:59:25', '2023-07-11 18:59:49', NULL); -- -------------------------------------------------------- -- -- Table structure for table `comment_like` -- DROP TABLE IF EXISTS `comment_like`; CREATE TABLE IF NOT EXISTS `comment_like` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `commentId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `commentId` (`commentId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `comment_replies` -- DROP TABLE IF EXISTS `comment_replies`; CREATE TABLE IF NOT EXISTS `comment_replies` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `commentId` int DEFAULT NULL, `userId` int DEFAULT NULL, `reply` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `commentId` (`commentId`), KEY `userId` (`userId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `comment_replies` -- INSERT INTO `comment_replies` (`isActive`, `id`, `commentId`, `userId`, `reply`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 20, 'This is sub test @john2', '2023-07-11 18:59:49', '2023-07-11 18:59:49', NULL); -- -------------------------------------------------------- -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; CREATE TABLE IF NOT EXISTS `drivers` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `transporterName` varchar(255) DEFAULT NULL, `driversName` varchar(255) DEFAULT NULL, `transporter` varchar(255) DEFAULT NULL, `cannabisIndustryLicense` varchar(255) DEFAULT NULL, `phoneNumber` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_template` -- DROP TABLE IF EXISTS `email_template`; CREATE TABLE IF NOT EXISTS `email_template` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `headerId` int DEFAULT NULL, `footerId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `body` text, `status` enum('1','2') DEFAULT NULL COMMENT '1 for active, 2 for inactive', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `headerId` (`headerId`), KEY `footerId` (`footerId`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_template` -- INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 1, 'Welcome', 'Welcome to GMX', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 2, 1, 1, 'Reset password | User', 'Reset Password', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Reset Password</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Dear <b>{NAME}</b>, you are receiving this email because you requested to reset your password at GMX.</p>\n\n <p style=\"margin-top: 30px;margin-bottom: 0px;\">Click the button below to reset your password.</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">RESET PASSWORD</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">If you did not request this, please contact <a href=\"{LINK_1}\">support</a> for assistance.</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 3, 1, 1, 'Contact Us | Admin', 'Contact us', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"hero-white-icon-outline0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\"><!--[if mso]>\n <table width=\"584\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\">\n <![endif]-->\n <div data-color=\"Light\" data-max=\"23\" data-min=\"15\" data-size=\"Text MD\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 data-color=\"Dark\" data-max=\"40\" data-min=\"20\" data-size=\"Heading 2\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Contact us</h2>\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td><!--[if mso]>\n <table width=\"800\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td>\n <![endif]-->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">First Name</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{FIRST_NAME}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Last Name</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{LAST_NAME}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Phone Number</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{PHONE_NUMBER}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 100%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Message</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"100\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 100%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{MESSAGE}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n </table>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-06-01 09:44:36', NULL), (1, 4, 1, 1, 'Contact Us | User', 'Contact us', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"hero-white-icon-outline0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\"><!--[if mso]>\n <table width=\"584\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\">\n <![endif]-->\n <div data-color=\"Light\" data-max=\"23\" data-min=\"15\" data-size=\"Text MD\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 data-color=\"Dark\" data-max=\"40\" data-min=\"20\" data-size=\"Heading 2\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Thank you for getting in touch.</h2>\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n </table>\n <!-- ------------------------------------------------ -->\n \n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"button-dark0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\"><!-- -------------------------------------- -->\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">We will review your message and come back to you shortly. Thank you for reaching out to the GMX. We look forward to connecting soon.</p>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n <!-- --------------------------------------- --></td>\n </tr>\n </tbody>\n </table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 5, 1, 1, 'New member arrived. Retailer| Admin', 'New member arrived', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">New Member Arrived</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Name</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{NAME}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Role</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ROLE}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO MEMBERS</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 6, 1, 1, 'New member arrived. Brand | Admin', 'New member arrived', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">New Member Arrived.</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" cstyle=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">(Selected plan : {PLAN})</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{NAME}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Role</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ROLE}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO MEMBERS</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 7, 1, 1, 'Order Placed | Retailer', 'Order Placed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-21 15:03:30', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 8, 1, 1, 'Order Placed | Brand', 'New Order: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE}/{UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:36:15', NULL), (1, 9, 1, 1, 'Order Accepted | Retailer', 'Order Accepted: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:36:40', NULL), (1, 10, 1, 1, 'Order Accepted | Brand', 'Order Accepted: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE}/{UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:37:04', NULL), (1, 11, 1, 1, 'Order Cancelled | Retailer', 'Order Cancelled: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:43:45', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 12, 1, 1, 'Order Cancelled | Brand', 'Order Cancelled: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:44:38', NULL), (1, 13, 1, 1, 'Order Delivered | Retailer', 'Order Delivered: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:45:12', NULL), (1, 14, 1, 1, 'Order Delivered | Brand', 'Order Delivered: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:45:44', NULL), (1, 15, 1, 1, 'Order Received | Retailer', 'Order Received: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:46:09', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 16, 1, 1, 'Order Received | Brand', 'Order Received: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:47:19', NULL), (1, 17, 1, 1, 'Order Completed | Retailer', 'Order Completed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:47:45', NULL), (1, 18, 1, 1, 'Order Completed | Brand', 'Order Completed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:48:22', NULL), (1, 19, 1, 1, 'Profile Approved', 'Your Profile has been approved', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Congratulations! {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Your profile is verified by administrator.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">You can now login <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a></p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 20, 1, 1, 'Quote Cancelled | Retailer', 'Quote Cancelled: {QUOTE_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quote ID</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUOTEID}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO QUOTE</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 21, 1, 1, 'Quote Cancelled | Brand', 'Quote Cancelled: {QUOTE_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quote ID</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUOTEID}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Cutomer Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO QUOTE</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 22, 1, 1, 'Requested Quotes', 'Requested Quotes', '{QUOTE_DETAILS}', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 23, 1, 1, 'Unread Messages', 'Unread Messages', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">{MESSAGE}</div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-11-10 07:52:00', '2022-11-10 07:52:00', NULL), (1, 24, 1, 1, 'Upgraded Subscription | Brand', 'Upgraded Subscription', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 25, 1, 1, 'Downgraded Subscription | Brand', 'Downgraded Subscription', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 26, 1, 1, 'Mention in a post | User', 'Tagged in a Post: Let\'s Check It Out!', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Tagged in a post! Check it out!</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Dear <b>{NAME}</b>, You&#39;ve been tagged in a post! Take a look and see what it&#39;s all about. Don&#39;t miss out on the conversation.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">&nbsp;</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\"><strong>{MESSAGE}</strong></p>\r\n\r\n <p style=\"margin-top: 30px;margin-bottom: 0px;\">Click the button below to join the conversion.</p>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">JOIN CONVERSION</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2023-07-09 00:00:00', '2023-07-09 00:00:00', NULL); -- -------------------------------------------------------- -- -- Table structure for table `email_template_footer` -- DROP TABLE IF EXISTS `email_template_footer`; CREATE TABLE IF NOT EXISTS `email_template_footer` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` text, `status` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_template_footer` -- INSERT INTO `email_template_footer` (`isActive`, `id`, `title`, `description`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Footer 1', '<!--footer-->\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td style=\"font-size: 48px;line-height: 20px;height: 20px;background-color: #ffffff;\">&nbsp;</td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #f2f2f2;padding-left: 16px;padding-right: 16px;padding-bottom: 23px;\">\n <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\">\n <div style=\"font-size: 32px; line-height: 32px; height: 32px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 9px;margin-bottom: 14px;font-size: 14px;line-height: 21px;color:#333;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 8px;width: 100%;\">&copy; {COPYRIGHTYEAR} GMX. All Rights Reserved.</p>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\">\n\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n<!--footer-->', 1, '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL); -- -------------------------------------------------------- -- -- Table structure for table `email_template_header` -- DROP TABLE IF EXISTS `email_template_header`; CREATE TABLE IF NOT EXISTS `email_template_header` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` text, `status` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_template_header` -- INSERT INTO `email_template_header` (`isActive`, `id`, `title`, `description`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Header 1', '<title></title>\r\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans\" rel=\"stylesheet\" type=\"text/css\" />\r\n<style media=\"screen\" type=\"text/css\">[style*=\'Open Sans\'] {\r\n font-family: \'Open Sans\', Arial, sans-serif !important\r\n }\r\n</style>\r\n<div>\r\n<div><!--header-->\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; background-color:#f2f2f2; padding: 8px;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\"><a href=\"{BASE_URL}\" style=\"text-decoration: none;outline: none;color: #ffffff;\"><img alt=\"GMX\" src=\"https://assets.greenmarketexchange.com/settings/main-logo.png\" style=\"max-width:240px;-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%; outline: none;text-decoration: none;\" /></a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>', 1, '2022-05-10 00:00:00', '2022-11-04 12:13:11', NULL); -- -------------------------------------------------------- -- -- Table structure for table `followers` -- DROP TABLE IF EXISTS `followers`; CREATE TABLE IF NOT EXISTS `followers` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `followingId` int DEFAULT NULL, `followerId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `followingId` (`followingId`), KEY `followerId` (`followerId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `followers` -- INSERT INTO `followers` (`isActive`, `id`, `followingId`, `followerId`, `createdAt`, `updatedAt`) VALUES (0, 1, 19, 1, '2023-03-05 17:56:57', '2023-03-05 17:57:18'), (1, 2, 9, 8, '2023-06-19 03:04:33', '2023-06-19 03:04:33'); -- -------------------------------------------------------- -- -- Table structure for table `likes` -- DROP TABLE IF EXISTS `likes`; CREATE TABLE IF NOT EXISTS `likes` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `postId` (`postId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `med_rec` -- DROP TABLE IF EXISTS `med_rec`; CREATE TABLE IF NOT EXISTS `med_rec` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- -- Dumping data for table `med_rec` -- INSERT INTO `med_rec` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Medical', '2023-07-16 12:05:52', '2023-07-16 12:05:52', NULL), (1, 2, 'Recreational', '2023-07-16 12:05:52', '2023-07-16 12:05:52', NULL), (1, 3, 'Medical and Recreational', '2023-07-16 12:07:43', '2023-07-16 12:07:43', '2023-08-03 21:35:50'); -- -------------------------------------------------------- -- -- Table structure for table `messages` -- DROP TABLE IF EXISTS `messages`; CREATE TABLE IF NOT EXISTS `messages` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `fromId` int DEFAULT NULL, `toId` int DEFAULT NULL, `message` text, `attachment` enum('1','2') DEFAULT NULL COMMENT '1 for yes,2 for no', `fileType` varchar(255) DEFAULT NULL, `fileSize` varchar(255) DEFAULT NULL, `readStatus` enum('1','2') DEFAULT NULL COMMENT '1 for read, 2 for unread', `mailSend` enum('1','2') DEFAULT '2' COMMENT '1 for send, 2 for pending', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `fromId` (`fromId`), KEY `toId` (`toId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; CREATE TABLE IF NOT EXISTS `migrations` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; CREATE TABLE IF NOT EXISTS `orders` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `brandId` int DEFAULT NULL, `retailerId` int DEFAULT NULL, `orderId` varchar(255) DEFAULT NULL, `productId` int DEFAULT NULL, `categoryId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `amount` float(10,2) DEFAULT NULL, `total` float(10,2) DEFAULT NULL, `cancelledBy` int DEFAULT NULL, `cancelledAt` datetime DEFAULT NULL, `status` enum('1','2','3','4','5','6') DEFAULT NULL COMMENT '1 for Placed, 2 for Accepted, 3 for Cancelled, 4 for Delivered, 5 for Received, 6 for Completed', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `brandId` (`brandId`), KEY `retailerId` (`retailerId`), KEY `productId` (`productId`), KEY `categoryId` (`categoryId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `plans` -- DROP TABLE IF EXISTS `plans`; CREATE TABLE IF NOT EXISTS `plans` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `price` float DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; -- -- Dumping data for table `plans` -- INSERT INTO `plans` (`isActive`, `id`, `title`, `slug`, `price`, `description`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Standard', 'standard', 0, 'Display and list your Products as a Brand', '2022-05-05 18:21:40', '2022-12-07 16:42:26', NULL), (1, 2, 'Marketplace', 'marketplace', 99, 'Display and list your Products as a Brand', '2022-06-29 12:11:53', '2022-07-04 15:01:36', NULL); -- -------------------------------------------------------- -- -- Table structure for table `posts` -- DROP TABLE IF EXISTS `posts`; CREATE TABLE IF NOT EXISTS `posts` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `type` enum('1','2') DEFAULT '1' COMMENT '1 for post, 2 for repost', `repostId` int DEFAULT NULL, `post` text, `postUniqueId` varchar(255) DEFAULT NULL, `likeCount` int NOT NULL DEFAULT '0', `repostCount` int NOT NULL DEFAULT '0', `commentCount` int NOT NULL DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `postUniqueId` (`postUniqueId`), KEY `userId` (`userId`), KEY `repostId` (`repostId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`isActive`, `id`, `userId`, `type`, `repostId`, `post`, `postUniqueId`, `likeCount`, `repostCount`, `commentCount`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 12, '1', NULL, 'Hello THis is test post', 'ljvduxbb68wh67n4djr', 0, 0, 0, '2023-07-09 12:00:39', '2023-07-09 12:00:39', NULL), (1, 2, 20, '1', NULL, 'Hello @gmxtest this is test post', 'ljynofc1831q6gn9v0n', 0, 0, 1, '2023-07-11 18:58:51', '2023-07-11 18:59:25', NULL); -- -------------------------------------------------------- -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; CREATE TABLE IF NOT EXISTS `products` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `categoryId` int DEFAULT NULL, `subCategoryId` int DEFAULT NULL, `medRecId` int DEFAULT NULL, `unitWeight` float(10,2) DEFAULT NULL, `unitPerPackage` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `packagesInStock` int DEFAULT NULL, `isShowStock` tinyint(1) DEFAULT '0', `strainId` int DEFAULT NULL, `dominant` varchar(255) DEFAULT NULL, `harvested` datetime DEFAULT NULL, `thc` float(10,2) DEFAULT NULL, `flavor` varchar(255) DEFAULT NULL, `description` text, `labResultsPath` varchar(255) DEFAULT NULL, `avgProductRating` float(10,2) DEFAULT '0.00', `reviewsProductCount` int DEFAULT '0', `productVisibility` enum('1','2') DEFAULT '1' COMMENT '1 for show, 2 for hidden', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), KEY `userId` (`userId`), KEY `brandId` (`brandId`), KEY `categoryId` (`categoryId`), KEY `subCategoryId` (`subCategoryId`), KEY `medRecId` (`medRecId`), KEY `strainId` (`strainId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`isActive`, `id`, `userId`, `brandId`, `title`, `slug`, `categoryId`, `subCategoryId`, `medRecId`, `unitWeight`, `unitPerPackage`, `price`, `packagesInStock`, `isShowStock`, `strainId`, `dominant`, `harvested`, `thc`, `flavor`, `description`, `labResultsPath`, `avgProductRating`, `reviewsProductCount`, `productVisibility`, `createdAt`, `updatedAt`) VALUES (1, 1, 12, 2, 'Test 01', 'test-01', 1, 1, 2, 145.00, 555, 545.00, 9999, 1, NULL, '', '0000-00-00 00:00:00', 52.00, '', '', NULL, 0.00, 0, '2', '2023-08-12 15:56:52', '2023-08-14 13:19:13'), (1, 2, 12, 2, 'Test 021', 'test-02', 1, 1, 2, 47.00, 46541, 101.00, 1001, 1, 2, 'ghgh', '2023-08-11 00:00:00', 5.00, 'Apple', 'Test desc', '/products/product-lab-results9422abf6-2964-4621-8c60-7d2e12400ad0.pdf', 0.00, 0, '2', '2023-08-12 15:58:33', '2023-08-14 13:39:27'); -- -------------------------------------------------------- -- -- Table structure for table `product_favourite` -- DROP TABLE IF EXISTS `product_favourite`; CREATE TABLE IF NOT EXISTS `product_favourite` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `productId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `productId` (`productId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `product_images` -- DROP TABLE IF EXISTS `product_images`; CREATE TABLE IF NOT EXISTS `product_images` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `product_images` -- INSERT INTO `product_images` (`isActive`, `id`, `productId`, `image`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 2, '/products/product-73972e7b-a2b4-4ffb-9002-ab321d77c275.jpg', '2023-08-12 15:58:33', '2023-08-12 15:58:33', NULL); -- -------------------------------------------------------- -- -- Table structure for table `product_price_history` -- DROP TABLE IF EXISTS `product_price_history`; CREATE TABLE IF NOT EXISTS `product_price_history` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `product_quotes` -- DROP TABLE IF EXISTS `product_quotes`; CREATE TABLE IF NOT EXISTS `product_quotes` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `quoteId` varchar(255) DEFAULT NULL, `retailerId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `totalQuantity` int DEFAULT NULL, `status` enum('1','2','3') DEFAULT NULL COMMENT '1 for Requested, 2 for Quoted, 3 for Cancelled', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `retailerId` (`retailerId`), KEY `brandId` (`brandId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `product_quote_items` -- DROP TABLE IF EXISTS `product_quote_items`; CREATE TABLE IF NOT EXISTS `product_quote_items` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productQuoteId` int DEFAULT NULL, `productId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productQuoteId` (`productQuoteId`), KEY `productId` (`productId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `reposts` -- DROP TABLE IF EXISTS `reposts`; CREATE TABLE IF NOT EXISTS `reposts` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `repostId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `postId` (`postId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `retailer_details` -- DROP TABLE IF EXISTS `retailer_details`; CREATE TABLE IF NOT EXISTS `retailer_details` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `retailer_details` -- INSERT INTO `retailer_details` (`isActive`, `id`, `userId`, `slug`, `website`, `address`, `createdAt`, `updatedAt`) VALUES (1, 1, 1, 'top-builder', 'https://abc.com', NULL, '2023-02-22 22:00:25', '2023-02-22 16:34:36'), (1, 2, 9, 'gmx-test', 'https://www.greenmarketexchange.com/', NULL, '2023-02-22 22:00:25', '2023-02-22 22:00:25'), (1, 3, 14, 'top-mail', 'https://abctop.com', NULL, '2023-02-22 16:37:56', '2023-02-22 16:37:56'), (1, 4, 15, 'lalit22022023ssdf', NULL, NULL, '2023-02-22 17:02:17', '2023-02-22 17:02:17'), (1, 5, 21, 'louis-retailer', NULL, NULL, '2023-07-11 19:03:59', '2023-07-11 19:03:59'), (1, 6, 27, 'sdsdsd', NULL, NULL, '2023-07-16 17:52:40', '2023-07-16 17:52:40'), (1, 7, 30, 'retailer-top-builder', 'https://topbuilderretailer.com', NULL, '2023-07-24 16:03:08', '2023-07-24 16:03:08'), (1, 8, 31, 'retailer-top-buildersddf', 'https://topbuilddferretailer.com', 'Sun Valley, ID, USA', '2023-07-24 16:09:51', '2023-07-24 16:09:51'), (1, 9, 32, 'dghghj', 'https://absdsdc.com', 'Revival Cafe+Kitchen, Elm Street, Somerville, MA, USA', '2023-07-24 16:22:46', '2023-07-24 16:54:26'), (1, 10, 33, 'sdsdsdjkj', NULL, 'Sunside Trailhead, Center Street East, Warren, OH, USA', '2023-07-24 16:56:22', '2023-07-24 16:56:22'), (1, 11, 35, 'sdfdfdf', NULL, 'Sunset Boulevard, Los Angeles, CA, USA', '2023-08-03 16:20:37', '2023-08-03 16:20:37'); -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- DROP TABLE IF EXISTS `reviews`; CREATE TABLE IF NOT EXISTS `reviews` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `retailerId` int DEFAULT NULL, `type` enum('1','2','3') DEFAULT NULL COMMENT '1 for product, 2 for delivery on time, 3 for general', `ratings` float(10,2) DEFAULT NULL, `description` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`), KEY `brandId` (`brandId`), KEY `retailerId` (`retailerId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; CREATE TABLE IF NOT EXISTS `settings` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`isActive`, `id`, `name`, `description`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'info_email', 'info@greenmarketexchange.com', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 2, 'contact_number', '2076913707', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 3, 'site_address', 'https://greenmarketexchange.com/', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 4, 'facebook_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 5, 'instagram_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 6, 'twitter_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 7, 'linkedin_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 8, 'logo', '/settings/main-logo.png', '2022-04-13 01:44:31', '2022-04-15 11:03:53', NULL), (1, 9, 'footerlogo', '/settings/main-logo.png', '2022-04-13 01:49:30', '2022-04-15 10:23:42', NULL), (1, 10, 'stripe_secret_key', 'sk_test_51M6k0gBMOPRi3AfhyM851Ahh1167JDjXxNmbPNOUSccvUNW2gvR17C5Yg5GirtAKW6fuYP2K3yTxDTootYoMxJwU00qQOTO0Ki', '2022-04-13 01:49:30', '2022-04-15 10:23:42', NULL), (1, 11, 'recaptcha_key', '6LeKEMYZAAAAABD7r-Ps_GU1Rgv625D-ZizmxyRh', '2022-06-02 09:35:32', '2022-06-02 09:35:32', NULL), (1, 12, 'site_name', NULL, '2022-07-08 09:52:41', '2022-12-13 02:52:51', NULL), (1, 13, 'minlogo', '/settings/min-logo.svg', '2022-04-13 01:44:31', '2022-04-15 11:03:53', NULL); -- -------------------------------------------------------- -- -- Table structure for table `state` -- DROP TABLE IF EXISTS `state`; CREATE TABLE IF NOT EXISTS `state` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; -- -- Dumping data for table `state` -- INSERT INTO `state` (`isActive`, `id`, `name`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Alabama', '0000-00-00 00:00:00', '2022-12-07 16:41:20', '2022-12-07 16:41:20'), (1, 2, 'New York', '0000-00-00 00:00:00', '2022-12-07 16:41:24', '2022-12-07 16:41:24'), (1, 3, 'Florida', '0000-00-00 00:00:00', '2022-12-07 16:41:16', '2022-12-07 16:41:16'), (1, 4, 'Maine', '2022-07-24 20:50:39', '2022-12-07 16:41:28', '2022-12-07 16:41:28'), (1, 5, 'Massachusetts', '2022-09-26 21:04:18', '2022-09-26 21:04:35', NULL); -- -------------------------------------------------------- -- -- Table structure for table `strains` -- DROP TABLE IF EXISTS `strains`; CREATE TABLE IF NOT EXISTS `strains` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; -- -- Dumping data for table `strains` -- INSERT INTO `strains` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Indica dominant', '2022-05-02 00:00:00', '2023-03-22 13:02:14', NULL), (1, 2, 'Sativa dominant', '2022-05-04 00:00:00', '2023-03-22 13:02:23', NULL), (1, 3, 'Hybrid', '2022-05-04 00:00:00', '2022-05-04 00:00:00', '1900-01-03 00:00:00'), (1, 4, NULL, '2022-06-24 07:59:24', '2022-06-24 07:59:28', '2022-06-24 07:59:28'), (1, 5, 'Hyrbid', '2022-10-26 23:49:52', '2022-10-26 23:49:52', NULL); -- -------------------------------------------------------- -- -- Table structure for table `sub_categories` -- DROP TABLE IF EXISTS `sub_categories`; CREATE TABLE IF NOT EXISTS `sub_categories` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `categoryId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `sub_categories` -- INSERT INTO `sub_categories` (`isActive`, `id`, `categoryId`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 'Sub Badder/Butter', '2023-07-22 16:15:42', '2023-07-22 16:15:42', NULL), (1, 2, 3, 'sub Crystalline', '2023-07-22 16:16:11', '2023-07-22 16:16:11', NULL), (1, 3, 3, 'sub test', '2023-07-22 16:16:11', '2023-07-22 16:16:11', NULL); -- -------------------------------------------------------- -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `isApproved` enum('1','2') DEFAULT '1' COMMENT '1 for approved, 2 for unapproved', `role` enum('1','2','3') DEFAULT NULL COMMENT '1 for admin, 2 for brand, 3 for retailer', `name` varchar(255) DEFAULT NULL, `businessName` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `stateId` int DEFAULT NULL, `zipCode` int DEFAULT NULL, `phoneNumber` varchar(255) DEFAULT NULL, `licenseNumber` varchar(255) DEFAULT NULL, `medRecId` int DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `profilePath` varchar(255) DEFAULT NULL, `medRecCertificatePath` varchar(255) DEFAULT NULL, `medCertificatePath` varchar(255) DEFAULT NULL, `recCertificatePath` varchar(255) DEFAULT NULL, `planId` int DEFAULT NULL, `planExpiryDate` datetime DEFAULT NULL, `subscriptionId` int DEFAULT NULL, `verification_token` varchar(255) DEFAULT NULL, `followersCount` int NOT NULL DEFAULT '0', `followingsCount` int NOT NULL DEFAULT '0', `orderAmount` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), UNIQUE KEY `email` (`email`), KEY `stateId` (`stateId`), KEY `medRecId` (`medRecId`), KEY `planId` (`planId`) ) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`isActive`, `id`, `isApproved`, `role`, `name`, `businessName`, `slug`, `email`, `password`, `stateId`, `zipCode`, `phoneNumber`, `licenseNumber`, `medRecId`, `expirationDate`, `profilePath`, `medRecCertificatePath`, `medCertificatePath`, `recCertificatePath`, `planId`, `planExpiryDate`, `subscriptionId`, `verification_token`, `followersCount`, `followingsCount`, `orderAmount`, `createdAt`, `updatedAt`) VALUES (1, 1, '1', '3', 'Top Builder', 'Top Builder', 'topbuilder', 'lalit.nyusoft@gmail.com', '$2a$10$auHh3SvUN.Hqp7YTEnjGUuwvLSF/sgtEy0sRj7cfr7tvn/jyuPavq', 5, 47605, '717', '543', 2, '2023-03-29 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-9e9e6d45-1f87-4401-adf7-77216678cacc.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2022-12-19 07:20:47', '2023-05-16 15:57:29'), (1, 8, '1', '2', 'Nectr', 'Nectr', 'gmx', 'straka26@icloud.com', '$2a$10$rymNukpxNqjVxknuBYhp8e0q6RCX921me7BZ7lIIwVThVpYz7CbAm', 5, 40909, '2076913707', 'AMS1242', 2, '2023-02-03 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-f1a74103-7b08-4aa6-a753-aebd71273dbe.png', NULL, NULL, 1, '2023-02-18 00:00:00', 81, NULL, 0, 1, NULL, '2022-12-20 00:54:23', '2023-06-19 03:04:33'), (1, 9, '1', '3', 'GMX test', 'GMX test', 'gmxtest', 'christian.j.straka@gmail.com', '$2a$10$xfl9.tO.fk015oOgYswRNuB5BxrVkatqAUvbQwMolMTDfTLBtK1oi', 5, 40920, '2076913707', '45454', 2, '2022-12-27 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-bc8f1995-7737-47b7-a758-b3032bd11346.png', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, '2022-12-20 01:05:16', '2023-06-19 03:04:33'), (1, 12, '1', '2', 'Smit', 'Smitsd', 'topbuildera', 'smit.nyusoft@gmail.com', '$2a$10$auHh3SvUN.Hqp7YTEnjGUuwvLSF/sgtEy0sRj7cfr7tvn/jyuPavq', 5, 54545, '123456000', '45645456', 2, '2023-06-15 00:00:00', '/profile/profile-336d7d00-e57b-4d2e-a1e7-644560ff44ae.png', '/documents/license-83135f12-d7a6-4c4c-a941-5af26434a940.pdf', '', '', 1, '2023-02-18 00:00:00', 80, '$2a$10$cdep2GGd1foFvsb3wTjUIe9oITGzL7qebjzVXg7MKg4c/FYsOxaPm', 0, 0, NULL, '2022-12-20 07:55:55', '2023-08-12 14:37:31'), (1, 13, '2', '2', 'christian', 'Test 2', 'test2', 'cstraka.gmx@gmail.com', '$2a$10$GJxSZr5q6nGifuBHHAUJvOre1DNK/eLvw7/JKBN7nDtDtH03c4/CO', 5, 4092, '2076913707', '123456', 2, '2022-12-30 00:00:00', NULL, '/documents/license-8b4fca8a-69e4-4f39-bee3-4d07cce39328.png', NULL, NULL, 1, '2023-02-18 00:00:00', 82, NULL, 0, 0, NULL, '2022-12-21 02:53:45', '2023-02-18 12:37:56'), (1, 14, '1', '3', 'Lalit 22022023', 'Top Mail', 'topmail', 'Lalit22022023@mailinator.com', '$2a$10$cxDjH2u.sc0r66d5av1mRe2PP8WETbGeFPNMuK9qcaQOR.mS4T0M6', 5, 54564, '123456789', '545454', 2, '2023-02-22 00:00:00', NULL, '/documents/license-21c07a5d-38f4-4327-924a-3f58d2855dd5.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-02-22 16:37:56', '2023-02-22 16:37:56'), (1, 15, '2', '3', 'Lalit 22022023 ssdf', 'Lalit22022023ssdf', 'lalit22022023ssdf', 'Lalit22022023ssdf@mailinator.com', '$2a$10$SgyrgPtYkSOss08fx/cbRez2Pb3JkFwIYUFoZ9IY5ibhNLz/PS1LS', 5, 56464, '12345600886', '6564545', 2, '2023-02-22 00:00:00', NULL, '/documents/license-9cb5e762-08b7-4f80-98a4-131d7619dd7d.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-02-22 17:02:17', '2023-02-22 17:02:17'), (1, 16, '1', '2', 'John Test', 'Top Builder John', 'topbuilderjohn', 'john@mailinator.com', '$2a$10$ba3XS3RE.boUnLaX3JAzGewBOivyCSd.GjMXw78ky8/4zjAgbxf4e', 5, 12345, '1234567890', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-5496c8e8-4d87-4fd0-b914-71fde46e6853.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, '2023-02-26 16:47:04', '2023-02-26 16:49:26'), (1, 17, '1', '2', 'John Branddsdsd', 'Hogn Top John', 'hogntopjohn', 'john1@mailinator.com', '$2a$10$r6qlrSDegdcBv.X2t4V3TemLtMzxKxv/1oQJ4SohTDmNwG3Nqxl0y', 5, 54455, '1234567890', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-fb740068-3dda-459e-a424-9ffd90f5ee52.pdf', NULL, NULL, 2, '2023-03-26 00:00:00', 87, NULL, 0, 0, NULL, '2023-02-26 16:55:41', '2023-03-26 17:00:13'), (1, 18, '1', '2', 'John Brand', 'John', 'john2', 'john2@mailinator.com', '$2a$10$1Vu0/2WOiQgOs2r7bNtBH.dXp1DPL.ollrOst9JItxL1oJ1Qr.r22', 5, 12345, '124564800', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-4a50ec78-c00b-4a95-8ae1-164a4466608e.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, '2023-02-26 17:02:17', '2023-02-26 17:04:55'), (1, 19, '1', '2', 'PrakashB', 'PrakashB', 'prakashb', 'prakash@vintomaper.com', '$2a$10$4sIZ.x8K/tqLjnbe4Y7wzu7DAKLRoLCipluAHkuk3FVg1xi7StwAm', 5, 38002, '88666844441', '123456', 2, '2023-08-31 00:00:00', '/profile/profile-a2f6600f-0d53-4350-bcb8-e14302a473ab.jpg', '/documents/license-80bf2619-a2c6-4173-8538-e493e4a5b64c.pdf', NULL, NULL, 1, '2023-03-28 00:00:00', 86, NULL, 0, 0, NULL, '2023-02-28 08:18:33', '2023-05-17 16:12:05'), (1, 20, '1', '2', 'Louis Bland', 'Louis Builder', 'louisbuilder', 'louisbland@mailinator.com', '$2a$10$NJmql4oixFM8Ab2eYkMnLu09/pe1srwEGsMH/HBIsF5zHqC67SIii', 5, 54545, '12345648900', '123545654', 2, '2034-09-14 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-2a7b6712-78cc-427b-a0d3-ebcc30f6b115.png', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-11 18:44:46', '2023-07-11 18:52:15'), (1, 21, '1', '3', 'Louis Mailinator', 'Louis Retailer', 'louis-retailer', 'louisretailer@mailinator.com', '$2a$10$aiePEUyNR9bd56gzsyqoTOin/b/qMaR4gs.MdJ.bQXL31jkpJPaPK', 5, 87875, '1234560844', '58454564', 6, '2029-09-27 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-8749e057-b996-48db-bc5b-d9a70eb1a536.png', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-07-11 19:03:59', '2023-07-11 19:09:18'), (1, 22, '2', '2', 'fgdfd', 'ssdsd', 'ssdsd', 'dfdfgdfg@fdf.df', '$2a$10$EshE/rPpBQMolNdPss/i.em3WqlNyxfsR5Ebp5rfCl8cvDrVi3ABS', 5, 54545, '454554', '4545454', 3, '2023-07-28 00:00:00', NULL, '/documents/certificate-b7dd5622-78f4-48a7-bf09-0243a17a0f5d.pdf', '/documents/med-certificate-2be4d39b-0ccf-4063-bed7-f71d4a807f3a.pdf', '/documents/rec-certificate-d81d99b9-1e64-46a4-aef4-41cb902a4db7.pdf', 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-16 17:24:49', '2023-07-16 17:24:49'), (1, 23, '2', '2', 'sdsd', 'sdjkjk', 'sdjkjk', 'sdsdsd@sdsd.sds', '$2a$10$c2R8hEx5PrpFnmeGU8A.5OkepTsTAcI7Rib/bYz4RCJ8H9U3XL.Gy', 5, 54545, '55556565', '6565454545', 3, '2023-07-28 00:00:00', NULL, NULL, '/documents/med-certificate-80808d5a-15ce-4c71-93ad-c09140ab3cfb.pdf', '/documents/rec-certificate-5f20a1b2-9c29-41d7-8428-4c9f31fc5976.pdf', 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-16 17:30:17', '2023-07-16 17:30:17'), (1, 24, '2', '2', 'sdsd', 'sdsdshgjh', 'sdsdshgjh', 'sdsdjkh@sdsd.sd', '$2a$10$UIsdFCsxil1pm6ZViGDBz.9Oddo7.xGPDrJrZRnBrtqsY2VgHnQp6', 5, 54545, '5645445', '455455', 1, '2023-07-26 00:00:00', NULL, '/documents/certificate-85c1486f-b9aa-4462-918a-15fe2ac755dc.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-16 17:32:23', '2023-07-16 17:32:23'), (1, 25, '2', '2', 'sdfsdf', 'sdsd', 'sdsd-2', 'sdfdsdf@sdfdf.dfdf', '$2a$10$I/.RvxhhbtI8FwN26Fa49.ENo8GMc4czq.3nnALSG6K1DztD./R02', 5, 54542, '565656', '656655', 2, '2023-07-25 00:00:00', NULL, '/documents/certificate-9cc518da-24d6-449c-b273-637bffc0d64e.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-16 17:34:04', '2023-07-16 17:34:04'), (1, 26, '2', '2', 'dsfsdfjk', 'sdsdjhg', 'sdsdjhg', 'jhjhgj@hjkjk.sd', '$2a$10$/2ZHx7keZ51IeRUT5fkXreuu2nlSuAsY0vMIAFaS/SSp94CoqEM8.', 5, 56552, '56565656', '6565656', 3, '2023-07-27 00:00:00', NULL, NULL, '/documents/med-certificate-8c8cd3cd-74e6-471b-88f6-7a86e11c4138.pdf', '/documents/rec-certificate-90eb2f28-bc90-4710-b9e5-cbf6623a6473.pdf', 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-16 17:35:46', '2023-07-16 17:35:46'), (1, 27, '2', '3', 'sdsd', 'sdsdsd', 'sdsdsd', 'sdsd@sdsd.sds', '$2a$10$YLgS3c2E0XWK2qW7nLcz6eQLoIAwXR34MPpTTYz7hrTvckjbANlA.', 5, 45453, '5655545', '5454545', 2, '2023-07-25 00:00:00', NULL, '/documents/license-51aeefbb-896f-483e-8578-947199729d2e.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-07-16 17:52:40', '2023-07-16 17:52:40'), (1, 28, '2', '2', 'sdsd', 'BHhjkjk', 'bhhjkjk', 'sdsd@dfdf.dfdf', '$2a$10$/5v7wJP.9MIRTO6YJvdKL.M0UhLKBF8KMgjNb2og1U3IC8ZuPXARm', 5, 55651, NULL, '5685689', 1, NULL, NULL, '/documents/certificate-35ec5ab9-f901-4078-8129-a0ed748e7fa5.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, NULL, '2023-07-23 16:36:23', '2023-07-23 16:36:23'), (1, 29, '1', '2', 'dsdf', 'dfdf', 'dfdf', 'ddsfsdfsd@ddfdf.df', '$2a$10$6Frc3vrVFM3eVYJimm2EWe4NtGQLKIjGVcmP60PXSNbmIOFDcW/.m', 5, 54546, NULL, '566565', 2, NULL, '/profile/profile-16a9b282-5d75-475f-9b5b-404ab3d5f66e.jpg', NULL, '/documents/med-certificate-2510fb43-1154-4fbd-8e4d-f94451d71629.pdf', '/documents/rec-certificate-4d20167e-3eb4-42e9-97c8-f8ee219218d2.pdf', 2, '2023-08-23 00:00:00', 88, NULL, 0, 0, NULL, '2023-07-23 16:39:14', '2023-07-23 16:39:14'), (1, 30, '2', '3', 'Retailer', 'retailer top builder', 'retailer-top-builder', 'retailertopbuilder24@mailinator.com', '$2a$10$EWNxhlYcuarjQw2nHy2XwO.hi2AYfXgFMgVWnx9IQB4Q58pE6pleS', 5, 12345, '1234567890', '566565', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-07-24 16:03:08', '2023-07-24 16:03:08'), (1, 31, '2', '3', 'Retailer sds', 'retailer top buildersddf', 'retailer-top-buildersddf', 'retailertdsdssdopbuilder24@mailinator.com', '$2a$10$AYpt8g0QUlxSK13nlMvbwu.YkLkk3/6YycHmBH8XX6TKFlYwJewiC', 5, 12345, '1234567890', '566565', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-07-24 16:09:51', '2023-07-24 16:09:51'), (1, 32, '1', '3', 'Retailer sds', 'Dghghj', 'dghghj', 'test125retailer@mailinator.com', '$2a$10$XekYg5TnQXqs.mcx.EZM4OdKBgCZj1FiZBo81rVwdFWExE36bEsZi', 5, 12345, '45646465', '455676', 2, '2023-07-25 00:00:00', '/profile/profile-4e9e53a9-68a3-4abc-920e-60ae3fd7d491.jpg', '/documents/certificate-b0b2ff4b-5ff4-405e-a2ca-e6a09843d880.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-07-24 16:22:46', '2023-07-24 16:54:26'), (1, 33, '1', '3', 'aasaas', 'sdsdsdjkj', 'sdsdsdjkj', 'sasasas@sdsd.sdsdff', '$2a$10$pNV29Q2X3H8NGTtWtN.Ct.wpnq4rvJBgzQ3VF2H5sngVowAJNw1q6', 5, 12343, '5545665', '566565', 1, NULL, NULL, '/documents/certificate-3525e385-d6bd-44ea-b255-1428c19eb03f.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-07-24 16:56:22', '2023-07-24 16:56:22'), (1, 34, '1', '2', 'tesdv', 'Sd', 'sd-5', 'jkjhjh@Hjhj.sdsd', '$2a$10$ly7UH96ajjAxnpF8Hv0Piuw.dK1dEQH5/EPVNyapQOB.UKbSF0pHS', 5, 65455, '545544', '566565', 2, '2023-08-31 00:00:00', '/profile/profile-ef4afa14-385b-4c7f-ace7-02e7e7f5391f.jpg', '/documents/certificate-e898e01c-1c36-4a7e-9042-8e6bca0e2da0.pdf', '', '', 1, NULL, NULL, NULL, 0, 0, NULL, '2023-08-03 16:16:07', '2023-08-03 16:58:22'), (1, 35, '1', '3', 'SDSD', 'sdfdfdf', 'sdfdfdf', 'SDSDS@sddf.dfdf', '$2a$10$Knn3vwDoGkb8h9QF8gJnc.AOH4K5RLbPRvKU.JxZN5ABkV.Z69.0W', 5, 12345, '123450000', '1234560', 2, NULL, NULL, '/documents/certificate-ab731f90-a20f-4d62-addd-3a6bbd0e216d.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, '2023-08-03 16:20:37', '2023-08-03 16:20:37'); -- -------------------------------------------------------- -- -- Table structure for table `user_subscription` -- DROP TABLE IF EXISTS `user_subscription`; CREATE TABLE IF NOT EXISTS `user_subscription` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `planId` int DEFAULT NULL, `customerId` varchar(255) DEFAULT NULL, `subscriptionToken` varchar(255) DEFAULT NULL, `subscriptionId` varchar(255) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `amount` varchar(255) DEFAULT NULL, `responseJson` text, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `planCancelDate` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `planId` (`planId`) ) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_subscription` -- INSERT INTO `user_subscription` (`isActive`, `id`, `userId`, `planId`, `customerId`, `subscriptionToken`, `subscriptionId`, `status`, `amount`, `responseJson`, `startDate`, `endDate`, `planCancelDate`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '2000', '{\"id\":\"sub_1MGu65BMOPRi3AfhiiE7qvuk\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671497661,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671497661,\"currency\":\"usd\",\"current_period_end\":1671584061,\"current_period_start\":1671497661,\"customer\":\"cus_N0vyvES8MRSn2n\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N0vyzNstIqUi3o\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671497661,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MGu65BMOPRi3AfhiiE7qvuk\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MGu65BMOPRi3AfhiiE7qvuk\"},\"latest_invoice\":\"in_1MGu65BMOPRi3Afh2ZHgqHwU\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671497661,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-19 00:00:00', '2023-01-19 00:00:00', '', '2022-12-20 00:54:23', '2022-12-20 00:54:23', NULL), (1, 2, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '2000', '{\"id\":\"sub_1MH0g1BMOPRi3AfhI9j6Mjw1\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671522953,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671522953,\"currency\":\"usd\",\"current_period_end\":1671609353,\"current_period_start\":1671522953,\"customer\":\"cus_N12lQRrHIxkkQY\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N12lfmL13lUNKn\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671522954,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MH0g1BMOPRi3AfhI9j6Mjw1\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MH0g1BMOPRi3AfhI9j6Mjw1\"},\"latest_invoice\":\"in_1MH0g1BMOPRi3AfhKQ5DBVe0\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671522953,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-20 00:00:00', '2023-01-20 00:00:00', '', '2022-12-20 07:55:55', '2022-12-20 07:55:55', NULL), (1, 3, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-20 00:00:00', '2022-12-20 00:00:00', NULL, '2022-12-21 00:57:26', '2022-12-21 00:57:26', NULL), (1, 4, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '2000', '{\"id\":\"sub_1MHIR9BMOPRi3AfhuNclK18F\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671591223,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671591223,\"currency\":\"usd\",\"current_period_end\":1671677623,\"current_period_start\":1671591223,\"customer\":\"cus_N1L7P5vtLWoUDD\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N1L7fyOFFcKQs4\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671591223,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MHIR9BMOPRi3AfhuNclK18F\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MHIR9BMOPRi3AfhuNclK18F\"},\"latest_invoice\":\"in_1MHIR9BMOPRi3AfhHwF9WEpI\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671591223,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-20 00:00:00', '2023-01-20 00:00:00', '', '2022-12-21 02:53:45', '2022-12-21 02:53:45', NULL), (1, 5, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-21 00:00:00', '2022-12-21 00:00:00', NULL, '2022-12-21 07:56:29', '2022-12-21 07:56:29', NULL), (1, 6, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-22 05:54:27', '2022-12-22 05:54:27', NULL), (1, 7, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-22 08:02:39', '2022-12-22 08:02:39', NULL), (1, 8, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-23 00:57:27', '2022-12-23 00:57:27', NULL), (1, 9, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-23 02:54:59', '2022-12-23 02:54:59', NULL), (1, 10, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-23 07:56:20', '2022-12-23 07:56:20', NULL), (1, 11, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-24 00:55:38', '2022-12-24 00:55:38', NULL), (1, 12, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-24 02:56:20', '2022-12-24 02:56:20', NULL), (1, 13, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-24 07:57:43', '2022-12-24 07:57:43', NULL), (1, 14, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-25 00:55:30', '2022-12-25 00:55:30', NULL), (1, 15, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-25 02:54:26', '2022-12-25 02:54:26', NULL), (1, 16, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-26 07:57:08', '2022-12-26 07:57:08', NULL), (1, 17, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-27 00:56:26', '2022-12-27 00:56:26', NULL), (1, 18, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-27 02:54:26', '2022-12-27 02:54:26', NULL), (1, 19, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-27 07:58:23', '2022-12-27 07:58:23', NULL), (1, 20, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-28 00:58:33', '2022-12-28 00:58:33', NULL), (1, 21, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-28 02:54:24', '2022-12-28 02:54:24', NULL), (1, 22, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-28 07:58:44', '2022-12-28 07:58:44', NULL), (1, 23, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-29 00:54:33', '2022-12-29 00:54:33', NULL), (1, 24, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-29 02:54:26', '2022-12-29 02:54:26', NULL), (1, 25, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-29 07:56:03', '2022-12-29 07:56:03', NULL), (1, 26, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-30 00:57:31', '2022-12-30 00:57:31', NULL), (1, 27, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-30 02:54:29', '2022-12-30 02:54:29', NULL), (1, 28, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-30 07:58:05', '2022-12-30 07:58:05', NULL), (1, 29, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-31 00:57:14', '2022-12-31 00:57:14', NULL), (1, 30, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-31 02:57:43', '2022-12-31 02:57:43', NULL), (1, 31, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2022-12-31 07:56:18', '2022-12-31 07:56:18', NULL), (1, 32, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2023-01-01 01:02:46', '2023-01-01 01:02:46', NULL), (1, 33, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2023-01-01 03:01:02', '2023-01-01 03:01:02', NULL), (1, 34, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-01 00:00:00', '2023-01-01 00:00:00', NULL, '2023-01-01 07:56:09', '2023-01-01 07:56:09', NULL), (1, 35, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-01 00:00:00', '2023-01-01 00:00:00', NULL, '2023-01-02 03:55:21', '2023-01-02 03:55:21', NULL), (1, 36, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-02 07:57:49', '2023-01-02 07:57:49', NULL), (1, 37, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-03 00:55:44', '2023-01-03 00:55:44', NULL), (1, 38, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-03 03:03:17', '2023-01-03 03:03:17', NULL), (1, 39, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-03 07:56:57', '2023-01-03 07:56:57', NULL), (1, 40, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-04 00:57:31', '2023-01-04 00:57:31', NULL), (1, 41, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-04 02:55:57', '2023-01-04 02:55:57', NULL), (1, 42, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-04 07:57:32', '2023-01-04 07:57:32', NULL), (1, 43, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-05 00:57:46', '2023-01-05 00:57:46', NULL), (1, 44, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-05 03:04:55', '2023-01-05 03:04:55', NULL), (1, 45, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-05 07:58:28', '2023-01-05 07:58:28', NULL), (1, 46, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-06 01:03:42', '2023-01-06 01:03:42', NULL), (1, 47, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-06 02:58:41', '2023-01-06 02:58:41', NULL), (1, 48, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-06 00:00:00', '2023-01-06 00:00:00', NULL, '2023-01-06 07:56:23', '2023-01-06 07:56:23', NULL), (1, 49, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-09 07:56:03', '2023-01-09 07:56:03', NULL), (1, 50, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-10 00:54:29', '2023-01-10 00:54:29', NULL), (1, 51, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-10 02:56:41', '2023-01-10 02:56:41', NULL), (1, 52, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-10 07:56:14', '2023-01-10 07:56:14', NULL), (1, 53, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-11 00:57:19', '2023-01-11 00:57:19', NULL), (1, 54, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-11 02:55:43', '2023-01-11 02:55:43', NULL), (1, 55, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-11 08:06:22', '2023-01-11 08:06:22', NULL), (1, 56, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-12 00:55:57', '2023-01-12 00:55:57', NULL), (1, 57, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-12 03:00:56', '2023-01-12 03:00:56', NULL), (1, 58, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-12 08:02:46', '2023-01-12 08:02:46', NULL), (1, 59, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-13 00:55:33', '2023-01-13 00:55:33', NULL), (1, 60, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-13 02:54:30', '2023-01-13 02:54:30', NULL), (1, 61, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-13 07:59:57', '2023-01-13 07:59:57', NULL), (1, 62, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-14 00:54:50', '2023-01-14 00:54:50', NULL), (1, 63, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-14 03:01:14', '2023-01-14 03:01:14', NULL), (1, 64, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-14 07:57:37', '2023-01-14 07:57:37', NULL), (1, 65, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-15 00:54:37', '2023-01-15 00:54:37', NULL), (1, 66, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-15 02:59:23', '2023-01-15 02:59:23', NULL), (1, 67, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-15 07:57:00', '2023-01-15 07:57:00', NULL), (1, 68, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-16 00:55:49', '2023-01-16 00:55:49', NULL), (1, 69, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-16 02:55:31', '2023-01-16 02:55:31', NULL), (1, 70, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-16 07:59:14', '2023-01-16 07:59:14', NULL), (1, 71, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-17 00:56:32', '2023-01-17 00:56:32', NULL), (1, 72, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-17 02:54:05', '2023-01-17 02:54:05', NULL), (1, 73, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-17 07:56:54', '2023-01-17 07:56:54', NULL), (1, 74, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-18 00:54:40', '2023-01-18 00:54:40', NULL), (1, 75, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-18 03:01:20', '2023-01-18 03:01:20', NULL), (1, 76, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 07:57:57', '2023-01-18 07:57:57', NULL), (1, 77, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:33:23', '2023-01-18 12:33:23', NULL), (1, 78, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:34:25', '2023-01-18 12:34:25', NULL), (1, 79, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:36:22', '2023-01-18 12:36:22', NULL), (1, 80, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:33:57', '2023-02-18 12:33:57', NULL), (1, 81, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:37:31', '2023-02-18 12:37:31', NULL), (1, 82, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:37:56', '2023-02-18 12:37:56', NULL), (1, 83, 17, 2, 'cus_NQepzNiC0HhMvi', 'tok_1MfnVeBMOPRi3AfhOuruppHA', 'sub_1MfnVfBMOPRi3AfhVKophPiG', 'canceled', '99', '{\"id\":\"sub_1MfnVfBMOPRi3AfhVKophPiG\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677430539,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677430669,\"collection_method\":\"charge_automatically\",\"created\":1677430539,\"currency\":\"usd\",\"current_period_end\":1679849739,\"current_period_start\":1677430539,\"customer\":\"cus_NQepzNiC0HhMvi\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677430669,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NQepLp0glTwRsE\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677430540,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MfnVfBMOPRi3AfhVKophPiG\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MfnVfBMOPRi3AfhVKophPiG\"},\"latest_invoice\":\"in_1MfnVfBMOPRi3Afh2xTAEaY1\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677430539,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-26 00:00:00', '2023-03-26 00:00:00', '2023-02-26 11:57:49', '2023-02-26 16:55:41', '2023-02-26 16:57:49', NULL), (1, 84, 17, 2, 'cus_NQesZGYPkLvknD', 'tok_1MfnYJBMOPRi3AfhJQjhhlQu', 'sub_1MfnYKBMOPRi3AfhoMczck2I', 'active', '99', '{\"id\":\"sub_1MfnYKBMOPRi3AfhoMczck2I\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677430704,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1677430704,\"currency\":\"usd\",\"current_period_end\":1679849904,\"current_period_start\":1677430704,\"customer\":\"cus_NQesZGYPkLvknD\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NQesCqM9KN1F6e\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677430704,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MfnYKBMOPRi3AfhoMczck2I\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MfnYKBMOPRi3AfhoMczck2I\"},\"latest_invoice\":\"in_1MfnYKBMOPRi3Afhg2jUyuQV\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677430704,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-26 00:00:00', '2023-03-26 00:00:00', '', '2023-02-26 16:58:26', '2023-02-26 16:58:26', NULL), (1, 85, 19, 2, 'cus_NRHsx3xxIkJJV8', 'tok_1MgPITBMOPRi3AfhlGVi24jj', 'sub_1MgPIUBMOPRi3AfhDrZCKJBc', 'canceled', '99', '{\"id\":\"sub_1MgPIUBMOPRi3AfhDrZCKJBc\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677575794,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677575807,\"collection_method\":\"charge_automatically\",\"created\":1677575794,\"currency\":\"usd\",\"current_period_end\":1679994994,\"current_period_start\":1677575794,\"customer\":\"cus_NRHsx3xxIkJJV8\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677575807,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NRHsHzE1ibmfmE\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677575794,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MgPIUBMOPRi3AfhDrZCKJBc\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MgPIUBMOPRi3AfhDrZCKJBc\"},\"latest_invoice\":\"in_1MgPIUBMOPRi3AfhDdyYgcRZ\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677575794,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-28 00:00:00', '2023-03-28 00:00:00', '2023-02-28 04:16:47', '2023-02-28 09:16:36', '2023-02-28 09:16:47', NULL), (1, 86, 19, 2, 'cus_NRHtIbGWBMo1Ax', 'tok_1MgPJKBMOPRi3AfhWhjrUjwH', 'sub_1MgPJLBMOPRi3Afhea4JUlLt', 'canceled', '99', '{\"id\":\"sub_1MgPJLBMOPRi3Afhea4JUlLt\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677575847,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677575947,\"collection_method\":\"charge_automatically\",\"created\":1677575847,\"currency\":\"usd\",\"current_period_end\":1679995047,\"current_period_start\":1677575847,\"customer\":\"cus_NRHtIbGWBMo1Ax\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677575947,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NRHtnLCCUfozKs\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677575847,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MgPJLBMOPRi3Afhea4JUlLt\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MgPJLBMOPRi3Afhea4JUlLt\"},\"latest_invoice\":\"in_1MgPJLBMOPRi3AfhxZxQSc02\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677575847,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-28 00:00:00', '2023-03-28 00:00:00', '2023-02-28 04:19:07', '2023-02-28 09:17:29', '2023-02-28 09:19:07', NULL), (1, 87, 17, 2, 'cus_NQesZGYPkLvknD', 'tok_1MfnYJBMOPRi3AfhJQjhhlQu', 'sub_1MfnYKBMOPRi3AfhoMczck2I', 'active', '99', NULL, '2023-03-26 00:00:00', '2023-03-26 00:00:00', NULL, '2023-03-26 17:00:13', '2023-03-26 17:00:13', NULL), (1, 88, 29, 2, 'cus_OJikKIvH5aaWNu', 'tok_1NX5JLBMOPRi3AfhxEqtCLUH', 'sub_1NX5JNBMOPRi3AfhlOtyrp1l', 'active', '99', '{\"id\":\"sub_1NX5JNBMOPRi3AfhlOtyrp1l\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1690130353,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"cancellation_details\":{\"comment\":null,\"feedback\":null,\"reason\":null},\"collection_method\":\"charge_automatically\",\"created\":1690130353,\"currency\":\"usd\",\"current_period_end\":1692808753,\"current_period_start\":1690130353,\"customer\":\"cus_OJikKIvH5aaWNu\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_OJikPw8SHaHsu2\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1690130353,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1NX5JNBMOPRi3AfhlOtyrp1l\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1NX5JNBMOPRi3AfhlOtyrp1l\"},\"latest_invoice\":\"in_1NX5JNBMOPRi3AfhrHplXa8u\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1690130353,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-07-23 00:00:00', '2023-08-23 00:00:00', '', '2023-07-23 16:39:14', '2023-07-23 16:39:14', NULL); -- -------------------------------------------------------- -- -- Table structure for table `user_tokens` -- DROP TABLE IF EXISTS `user_tokens`; CREATE TABLE IF NOT EXISTS `user_tokens` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `token` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Constraints for dumped tables -- -- -- Constraints for table `brand_details` -- ALTER TABLE `brand_details` ADD CONSTRAINT `brand_details_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `cart` -- ALTER TABLE `cart` ADD CONSTRAINT `cart_ibfk_1` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `cart_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `cart_ibfk_3` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `comments` -- ALTER TABLE `comments` ADD CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `comment_like` -- ALTER TABLE `comment_like` ADD CONSTRAINT `comment_like_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `comment_like_ibfk_2` FOREIGN KEY (`commentId`) REFERENCES `comments` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `comment_replies` -- ALTER TABLE `comment_replies` ADD CONSTRAINT `comment_replies_ibfk_1` FOREIGN KEY (`commentId`) REFERENCES `comments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `comment_replies_ibfk_2` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `email_template` -- ALTER TABLE `email_template` ADD CONSTRAINT `email_template_ibfk_1` FOREIGN KEY (`headerId`) REFERENCES `email_template_header` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `email_template_ibfk_2` FOREIGN KEY (`footerId`) REFERENCES `email_template_footer` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `followers` -- ALTER TABLE `followers` ADD CONSTRAINT `followers_ibfk_1` FOREIGN KEY (`followingId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `followers_ibfk_2` FOREIGN KEY (`followerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `likes` -- ALTER TABLE `likes` ADD CONSTRAINT `likes_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `likes_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `messages` -- ALTER TABLE `messages` ADD CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`fromId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `messages_ibfk_2` FOREIGN KEY (`toId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `orders` -- ALTER TABLE `orders` ADD CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `orders_ibfk_2` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `orders_ibfk_3` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `orders_ibfk_4` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `posts` -- ALTER TABLE `posts` ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `posts_ibfk_2` FOREIGN KEY (`repostId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `products` -- ALTER TABLE `products` ADD CONSTRAINT `products_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_3` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_4` FOREIGN KEY (`subCategoryId`) REFERENCES `sub_categories` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_5` FOREIGN KEY (`medRecId`) REFERENCES `med_rec` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_6` FOREIGN KEY (`strainId`) REFERENCES `strains` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `product_favourite` -- ALTER TABLE `product_favourite` ADD CONSTRAINT `product_favourite_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `product_favourite_ibfk_2` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `product_images` -- ALTER TABLE `product_images` ADD CONSTRAINT `product_images_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `product_price_history` -- ALTER TABLE `product_price_history` ADD CONSTRAINT `product_price_history_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `product_quotes` -- ALTER TABLE `product_quotes` ADD CONSTRAINT `product_quotes_ibfk_1` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `product_quotes_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `product_quote_items` -- ALTER TABLE `product_quote_items` ADD CONSTRAINT `product_quote_items_ibfk_1` FOREIGN KEY (`productQuoteId`) REFERENCES `product_quotes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `product_quote_items_ibfk_2` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `reposts` -- ALTER TABLE `reposts` ADD CONSTRAINT `reposts_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `reposts_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `retailer_details` -- ALTER TABLE `retailer_details` ADD CONSTRAINT `retailer_details_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `reviews` -- ALTER TABLE `reviews` ADD CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `reviews_ibfk_3` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `users` -- ALTER TABLE `users` ADD CONSTRAINT `users_ibfk_1` FOREIGN KEY (`stateId`) REFERENCES `state` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `users_ibfk_2` FOREIGN KEY (`medRecId`) REFERENCES `med_rec` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `users_ibfk_3` FOREIGN KEY (`planId`) REFERENCES `plans` (`id`) ON DELETE SET NULL ON UPDATE CASCADE; -- -- Constraints for table `user_subscription` -- ALTER TABLE `user_subscription` ADD CONSTRAINT `user_subscription_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_subscription_ibfk_2` FOREIGN KEY (`planId`) REFERENCES `plans` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `user_tokens` -- ALTER TABLE `user_tokens` ADD CONSTRAINT `user_tokens_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/package.json
{ "name": "gmx-nodejs", "version": "0.0.1", "description": "", "author": "", "private": true, "license": "UNLICENSED", "scripts": { "prebuild": "rimraf dist", "build": "nest build", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "start": "nest start", "start:dev": "nest start --watch", "start:debug": "nest start --debug --watch", "start:prod": "node dist/main", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json" }, "dependencies": { "@nestjs-modules/mailer": "^1.6.1", "@nestjs/common": "^8.0.0", "@nestjs/core": "^8.0.0", "@nestjs/jwt": "^8.0.0", "@nestjs/mapped-types": "*", "@nestjs/passport": "^8.2.1", "@nestjs/platform-express": "^8.0.0", "@nestjs/schedule": "^2.1.0", "@nestjs/sequelize": "^8.0.0", "@types/bcryptjs": "^2.4.2", "bcryptjs": "^2.4.3", "class-transformer": "^0.5.1", "class-validator": "^0.13.2", "dotenv": "^16.0.0", "file-size": "^1.0.0", "moment": "^2.29.3", "mysql2": "^2.3.3", "nest-router": "^1.0.9", "passport": "^0.5.2", "passport-jwt": "^4.0.0", "passport-local": "^1.0.0", "pdf-creator-node": "^2.3.4", "react-dropzone-uploader": "^2.11.0", "reflect-metadata": "^0.1.13", "rimraf": "^3.0.2", "rxjs": "^7.2.0", "sequelize": "^6.17.0", "sequelize-typescript": "^2.1.3", "stripe": "^8.222.0" }, "devDependencies": { "@nestjs/cli": "^8.0.0", "@nestjs/schematics": "^8.0.0", "@nestjs/testing": "^8.0.0", "@types/cron": "^2.0.0", "@types/express": "^4.17.13", "@types/jest": "^27.0.1", "@types/multer": "^1.4.7", "@types/node": "^16.0.0", "@types/passport-local": "^1.0.34", "@types/sequelize": "^4.28.11", "@types/supertest": "^2.0.11", "@typescript-eslint/eslint-plugin": "^4.28.2", "@typescript-eslint/parser": "^4.28.2", "eslint": "^7.30.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "jest": "^27.0.6", "prettier": "^2.3.2", "supertest": "^6.1.3", "ts-jest": "^27.0.3", "ts-loader": "^9.2.3", "ts-node": "^10.0.0", "tsconfig-paths": "^3.10.1", "typescript": "^4.3.5" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "../coverage", "testEnvironment": "node" } }
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/gmx-phase-3.1.sql
-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Aug 27, 2023 at 08:13 PM -- Server version: 8.0.31 -- PHP Version: 8.0.26 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `gmx` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- DROP TABLE IF EXISTS `admin`; CREATE TABLE IF NOT EXISTS `admin` ( `id` int UNSIGNED NOT NULL, `name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `rememberToken` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '1 for active, 2 for inactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`id`, `name`, `email`, `password`, `rememberToken`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, ' ', 'cstraka@greenmarketexchange.com', '$2y$10$tGmL3JkjAz0I/QJDs7ad1.KPBpCWoDCaECyEJLh/X6V4RX6hrn6va', '', '1', '2021-06-17 13:00:00', '2022-10-26 19:47:28', NULL), (2, ' ', 'admin@example.com', '$2a$10$3XCTrWFb2UBBeCFsJGZehOJ7Mvr7SdIRfbfCdslfYS2BSReg3/U26', 'dR1ia2D2XAH5M8rrabpZy384y9rc6GCSMNT7zMKzVfstkZPfesAJjUP3K5Pj', '1', '2021-06-17 13:00:00', '2022-11-18 13:43:09', NULL); -- -------------------------------------------------------- -- -- Table structure for table `attachments` -- DROP TABLE IF EXISTS `attachments`; CREATE TABLE IF NOT EXISTS `attachments` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `attachableId` int DEFAULT NULL, `attachableType` varchar(255) DEFAULT NULL COMMENT 'post,comment,commentReply', `attachmentType` enum('1','2') DEFAULT '1' COMMENT '1 for image, 2 for video', `attachment` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `axis_point` -- DROP TABLE IF EXISTS `axis_point`; CREATE TABLE IF NOT EXISTS `axis_point` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `file` blob, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -------------------------------------------------------- -- -- Table structure for table `banner` -- DROP TABLE IF EXISTS `banner`; CREATE TABLE IF NOT EXISTS `banner` ( `id` int NOT NULL AUTO_INCREMENT, `preTitle` varchar(299) NOT NULL, `title` varchar(299) NOT NULL, `description` varchar(299) NOT NULL, `buttonText` varchar(299) NOT NULL, `buttonLink` varchar(299) NOT NULL, `image` varchar(255) DEFAULT NULL, `isActive` tinyint(1) DEFAULT '1', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- -- Dumping data for table `banner` -- INSERT INTO `banner` (`id`, `preTitle`, `title`, `description`, `buttonText`, `buttonLink`, `image`, `isActive`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 'Green Market Exchange', 'The Future of Cannabis Commerce', 'usce eros nulla euismod elementum ante vulputate venenatis ipsum suspendisse vestibulum.', 'Read More', '', '/cms/1653886861-banner-slide1.jpg', 1, '2022-05-30 04:48:50', '2022-07-22 20:59:14', '2022-07-22 20:59:14'), (2, 'Grow Your Stock', 'Green Market Exchange', 'The Future of Cannabis Trading', 'Read More', 'https://www.greenmarketexchange.com/about-us', '/cms/1653886724-banner-slide1.jpg', 1, '2022-05-30 04:48:50', '2022-08-31 12:13:37', '2022-08-31 12:13:37'), (3, 'Curabi est felis', 'Duis Mis Sien Digni', 'usce eros nulla euismod elementum ante vulputate venenatis ipsum suspendisse vestibulum.', 'Read More', '', '/cms/1658136550-stock-original-4k.jpg', 1, '2022-07-18 09:29:10', '2022-07-18 09:29:29', '2022-07-18 09:29:29'), (4, '', 'Green Market Exchange', 'Wholesale Marketplace', 'Get Started', 'https://www.greenmarketexchange.com/sign-up', '/cms/1661947984-1653886724-banner-slide1.jpg', 1, '2022-08-31 12:13:04', '2022-12-07 16:38:06', NULL); -- -------------------------------------------------------- -- -- Table structure for table `brand_details` -- DROP TABLE IF EXISTS `brand_details`; CREATE TABLE IF NOT EXISTS `brand_details` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `brandName` varchar(255) DEFAULT NULL, `contactNumber` varchar(255) DEFAULT NULL, `contactEmail` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `year` varchar(255) DEFAULT NULL, `totalOrdersCompleted` int DEFAULT '0', `address` varchar(255) DEFAULT NULL, `description` text, `avgProductRating` float(10,2) DEFAULT '0.00', `reviewsProductCount` int DEFAULT '0', `avgDOTRating` float(10,2) DEFAULT '0.00', `reviewsDOTCount` int DEFAULT '0', `avgGeneralRating` float(10,2) DEFAULT '0.00', `reviewsGeneralCount` varchar(255) DEFAULT '0', `avgRating` float(10,2) DEFAULT '0.00', `orderAmount` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `brand_details` -- INSERT INTO `brand_details` (`isActive`, `id`, `userId`, `brandName`, `contactNumber`, `contactEmail`, `slug`, `website`, `year`, `totalOrdersCompleted`, `address`, `description`, `avgProductRating`, `reviewsProductCount`, `avgDOTRating`, `reviewsDOTCount`, `avgGeneralRating`, `reviewsGeneralCount`, `avgRating`, `orderAmount`, `createdAt`, `updatedAt`) VALUES (1, 1, 8, 'Nectr', NULL, NULL, 'gmx', NULL, '2020', 0, '112 North Shore Drive, Owls Head, ME, USA', 'Test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, 70.00, '2022-12-20 00:54:23', '2023-06-06 13:43:32'), (1, 2, 12, 'Smitsd', '1234567111', 'toprrbuilder@smit.com', 'topbuildera', NULL, '1991', 0, 'NYU Langone Health, 1st Avenue, New York, NY, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2022-12-20 07:55:55', '2023-08-26 16:47:42'), (1, 3, 13, 'Test 2', NULL, NULL, 'test2', NULL, NULL, 0, '95 lincoln street', 'test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2022-12-21 02:53:45', '2022-12-21 02:53:45'), (1, 4, 16, 'Top Builder John', NULL, NULL, 'topbuilderjohn', NULL, NULL, 0, 'Sunshine Skyway Bridge, Sunshine Skyway Ln S, St. Petersburg, FL, USA', 'test', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, 500.00, '2023-02-26 16:47:04', '2023-08-15 04:48:36'), (1, 5, 17, 'Hogn Top John', NULL, NULL, 'hogntopjohn', NULL, NULL, 0, 'Sunrise, FL, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-02-26 16:55:41', '2023-02-26 16:55:41'), (1, 6, 18, 'John', NULL, NULL, 'john2', NULL, NULL, 0, 'SD, USA', 'ssd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-02-26 17:02:17', '2023-02-26 17:02:17'), (1, 7, 19, 'PrakashB', NULL, NULL, 'prakashb', NULL, NULL, 0, 'NYU School of Professional Studies, East 12th Street, New York, NY, USA', ' Bio / Description', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-02-28 08:18:33', '2023-02-28 08:18:33'), (1, 8, 20, 'Louis Builder', NULL, NULL, 'louisbuilder', 'https://www.louisbland.com', '1994', 0, 'Riverhead, NY, USA', 'Louis bio', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-11 18:44:46', '2023-07-11 18:52:15'), (1, 9, 22, 'ssdsd', '545545454', 'sdsdf@df.df', 'ssdsd', NULL, NULL, 0, 'Sunrise, FL, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-16 17:24:49', '2023-07-16 17:24:49'), (1, 10, 23, 'sdjkjk', '55545854545', 'sdkjjkj@hjhsd.sd', 'sdjkjk', NULL, NULL, 0, 'Sun Valley, ID, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-16 17:30:17', '2023-07-16 17:30:17'), (1, 11, 24, 'sdsdshgjh', '54554', 'hggjkhjkW@ssd.sd', 'sdsdshgjh', NULL, NULL, 0, 'Yampa Valley Regional Airport, RCR 51A, Hayden, CO, USA', 'sd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-16 17:32:23', '2023-07-16 17:32:23'), (1, 12, 25, 'sdsd', '5656565', 'sdssd@ssdweef.dff', 'sdsd-2', NULL, NULL, 0, 'Combat Fitness Training/JKDLI, Crest Road West, Merrick, NY, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-16 17:34:04', '2023-07-16 17:34:04'), (1, 13, 26, 'sdsdjhg', '54454454', 'sdsdgh@ssd.sd', 'sdsdjhg', NULL, NULL, 0, 'SDF airport (SDF), Terminal Drive, Louisville, KY, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-16 17:35:46', '2023-07-16 17:35:46'), (1, 14, 28, 'BHhjkjk', NULL, NULL, 'bhhjkjk', NULL, NULL, 0, 'Sun Valley, ID, USA', NULL, 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-23 16:36:23', '2023-07-23 16:36:23'), (1, 15, 29, 'dfdf', NULL, NULL, 'dfdf', 'https://abc.co', '65656', 0, 'Sunshine Factory Bar & Grill, Vinewood Lane North, Plymouth, MN, USA', NULL, 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-07-23 16:39:14', '2023-07-23 16:39:14'), (1, 16, 34, 'Sd', NULL, NULL, 'sd-5', NULL, '15', 0, 'Sun Valley, ID, USA', 'sdsd', 0.00, 0, 0.00, 0, 0.00, '0', 0.00, NULL, '2023-08-03 16:16:07', '2023-08-03 16:58:22'); -- -------------------------------------------------------- -- -- Table structure for table `cart` -- DROP TABLE IF EXISTS `cart`; CREATE TABLE IF NOT EXISTS `cart` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `retailerId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `productId` int DEFAULT NULL, `quantity` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `retailerId` (`retailerId`), KEY `brandId` (`brandId`), KEY `productId` (`productId`) ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=latin1; -- -- Dumping data for table `cart` -- INSERT INTO `cart` (`isActive`, `id`, `retailerId`, `brandId`, `productId`, `quantity`, `createdAt`, `updatedAt`) VALUES (1, 19, 9, 2, 2, 1, '2023-06-19 02:53:18', '2023-06-19 02:53:18'); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; CREATE TABLE IF NOT EXISTS `categories` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Badder/Butter', '2022-05-04 00:00:00', '2022-10-18 00:31:36', NULL), (1, 2, 'Crumble', '2022-05-10 00:00:00', '2022-11-22 10:58:35', '2022-11-22 10:58:35'), (1, 3, 'Crystalline', '2022-05-10 14:19:48', '2022-10-18 00:34:54', NULL), (1, 4, 'Crystalline', '2022-06-02 09:45:51', '2022-11-22 10:57:54', '2022-11-22 10:57:54'), (1, 5, 'Distillate', '2022-10-18 00:26:23', '2022-10-18 00:34:59', '2022-10-18 00:34:59'), (1, 6, 'Edible', '2022-10-18 00:26:50', '2022-10-18 00:35:02', '2022-10-18 00:35:02'), (1, 7, 'Dry Sift', '2022-10-18 00:27:06', '2022-10-18 00:35:05', '2022-10-18 00:35:05'), (1, 8, 'Bubble Hash', '2022-10-18 00:27:27', '2022-10-18 00:27:27', NULL), (1, 9, 'Crystalline', '2022-10-18 00:27:39', '2022-10-18 00:35:22', '2022-10-18 00:35:22'), (1, 10, 'Sauce', '2022-10-18 00:27:53', '2022-10-18 00:35:25', '2022-10-18 00:35:25'), (1, 11, 'Shatter', '2022-10-18 00:28:03', '2022-10-18 00:35:29', '2022-10-18 00:35:29'), (1, 12, 'Crumble', '2022-10-18 00:35:43', '2022-10-18 00:35:43', NULL), (1, 13, 'Crystalline', '2022-10-18 00:35:54', '2022-11-22 10:58:13', '2022-11-22 10:58:13'), (1, 14, 'Distillate', '2022-10-18 00:36:17', '2022-10-18 00:36:17', NULL), (1, 15, 'Dry Sift', '2022-10-18 00:36:35', '2022-10-18 00:36:35', NULL), (1, 16, 'Edible', '2022-10-18 00:36:47', '2022-10-18 00:36:47', NULL), (1, 17, 'Flower', '2022-10-18 00:36:59', '2022-10-18 00:36:59', NULL), (1, 18, 'Pre Roll', '2022-10-18 00:37:09', '2022-10-18 00:37:09', NULL), (1, 19, 'Sauce', '2022-10-18 00:37:31', '2022-10-18 00:37:31', NULL), (1, 20, 'Shatter', '2022-10-18 00:37:39', '2022-10-18 00:37:39', NULL), (1, 21, 'Tincture', '2022-10-26 21:51:03', '2022-10-26 21:51:03', NULL), (1, 22, 'CBD', '2022-11-10 01:00:17', '2022-11-10 01:00:33', NULL); -- -------------------------------------------------------- -- -- Table structure for table `cms` -- DROP TABLE IF EXISTS `cms`; CREATE TABLE IF NOT EXISTS `cms` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `content` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- -- Dumping data for table `cms` -- INSERT INTO `cms` (`isActive`, `id`, `name`, `slug`, `content`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Home', 'home', '{\"banner_content\":[{\"preTitle\":\"\",\"title\":\"Green Market Exchange\",\"description\":\"Wholesale Marketplace\",\"buttonText\":\"Get Started\",\"buttonLink\":\"https:\\/\\/www.greenmarketexchange.com\\/sign-up\",\"image\":\"\\/cms\\/1661947984-1653886724-banner-slide1.jpg\"}],\"section2_count\":\"01\",\"section2_main_title\":\"Our vision\",\"section2_description\":\"<p>Green Market Exchange strives&nbsp;to be the industry leader in cannabis wholesale marketplace technology and innovation as we invision cannabis will be a globaly traded&nbsp;commodity in the near future.<\\/p>\",\"section2_button_title\":\"About Us\",\"section2_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/about-us\",\"section2_image\":\"\\/cms\\/1653902872-vision-img.jpg\",\"section3_count\":\"\",\"section3_main_title\":\"For Brands\",\"section3_list_icon1\":\"icon-cap\",\"section3_list_title1\":\"Grow your Brand\",\"section3_list_description1\":\"Create brand awareness, Showcase your business credibility, Differentiate your brand\",\"section3_list_icon2\":\"icon-listing\",\"section3_list_title2\":\"Increase Sale orders\",\"section3_list_description2\":\"Receive and Accept orders, Build new partnerships, Manage sales operations\",\"section3_button_title\":\"Sign Up\",\"section3_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/seller\\/sign-up\",\"section3_image\":\"\\/cms\\/1657531043-brand-img.jpg\",\"section4_count\":\"\",\"section4_main_title\":\"For Retailers\",\"section4_description\":\"\",\"section4_list_icon1\":\"icon color-f3772c\",\"section4_list_title1\":\"Discover credible and quality wholesalers\",\"section4_list_description1\":\"\",\"section4_list_icon2\":\"icon color-f3772c\",\"section4_list_title2\":\"Manifest new partnerships and improve old ones\",\"section4_list_description2\":\"\",\"section4_list_icon3\":\"icon color-f3772c\",\"section4_list_title3\":\"Diversify product offerings\",\"section4_list_description3\":\"\",\"section4_button_title\":\"Sign Up\",\"section4_button_link\":\"https:\\/\\/www.greenmarketexchange.com\\/sign-up\",\"section4_image\":\"\\/cms\\/1653902950-retailer-img1.png\",\"section4_small_image\":\"\\/cms\\/1653904493-retailer-img2.png\",\"meta_title\":\"The Future of Cannabis Commerce\",\"meta_keyword\":\"Green Market Exchange The Future of Cannabis Commerce\",\"meta_description\":\"Green Market Exchange The Future of Cannabis Commerce\"}', '2022-04-14 04:02:23', '2022-12-07 17:04:38', NULL), (1, 2, 'Terms Of Use', 'terms-of-use', '{\"main_title\":\"Terms Of Use\",\"main_content\":\"<h6>Acceptance of the Terms of Use<\\/h6>\\r\\n\\r\\n<p>These terms of use are entered into by and between You and Green Market Exchange, Inc. (&quot;<strong>Company<\\/strong>,&quot; &quot;<strong>we<\\/strong>,&quot; or &quot;<strong>us<\\/strong>&quot;). The following terms and conditions, (&quot;<strong>Terms of Use<\\/strong>&quot;), govern your access to and use of <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a>, including any content, functionality, and services offered on or through <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a> (the &quot;<strong>Website<\\/strong>&quot;). If You are accessing or otherwise using this Website on behalf of a company or entity, You hereby represent and warrant that You have the authority to bind such Company to these Terms of Use, and that such company or entity hereby accepts the same.&nbsp;<\\/p>\\r\\n\\r\\n<p>Please read the Terms of Use carefully before you start to use the Website. By using the Website, you accept and agree to be bound and abide by these Terms of Use and our Privacy Policy, found at <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\/privacy-policy\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com\\/privacy-policy<\\/a>, incorporated herein by reference. If you do not want to agree to these Terms of Use or the Privacy Policy, you must not access or use the Website.<\\/p>\\r\\n\\r\\n<p>This Website is offered and available to users who 21 years of age or older within the United States or any of its territories or possessions. By using this Website, you represent and warrant that you meet all of the foregoing eligibility requirements. If you do not meet all of these requirements, you must not access or use the Website.<\\/p>\\r\\n\\r\\n<h6>Changes to the Terms of Use<\\/h6>\\r\\n\\r\\n<p>We may revise and update these Terms of Use from time to time in our sole discretion. All changes are effective immediately when we post them. However, any changes to the dispute resolution provisions set out in Governing Law and Jurisdiction will not apply to any disputes for which the parties have actual notice before the date the change is posted on the Website. Your continued use of the Website following the posting of revised Terms of Use means that you accept and agree to the changes. You are expected to check this page from time to time so you are aware of any changes, as they are binding on you.<\\/p>\\r\\n\\r\\n<h6>Accessing the Website and Account Security<\\/h6>\\r\\n\\r\\n<p>We reserve the right to withdraw or amend this Website, and any service or material we provide on the Website, in our sole discretion without notice. We will not be liable if for any reason all or any part of the Website is unavailable at any time or for any period. From time to time, we may restrict access to some parts of the Website, or the entire Website, to users, including registered users.<\\/p>\\r\\n\\r\\n<p>You are responsible for both:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Making all arrangements necessary for you to have access to the Website.<\\/li>\\r\\n\\t<li>Ensuring that all persons who access the Website through your internet connection are aware of these Terms of Use and comply with them.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>To access the Website or some of the resources it offers, you may be asked to provide certain registration details or other information. It is a condition of your use of the Website that all the information you provide on the Website is correct, current, and complete. You agree that all information you provide to register with this Website or otherwise, including, but not limited to, through the use of any interactive features on the Website, is governed by our Privacy Policy and you consent to all actions we take with respect to your information consistent with our Privacy Policy.<\\/p>\\r\\n\\r\\n<p>If you choose, or are provided with, a user name, password, or any other piece of information as part of our security procedures, you must treat such information as confidential, and you must not disclose it to any other person or entity. You also acknowledge that your account is personal to you and agree not to provide any other person with access to this Website or portions of it using your user name, password, or other security information. You agree to notify us immediately of any unauthorized access to or use of your user name or password or any other breach of security. You also agree to ensure that you exit from your account at the end of each session. You should use particular caution when accessing your account from a public or shared computer so that others are not able to view or record your password or other personal information.<\\/p>\\r\\n\\r\\n<p>We have the right to disable any user name, password, or other identifier, whether chosen by you or provided by us, at any time in our sole discretion for any or no reason, including if, in our opinion, you have violated any provision of these Terms of Use.<\\/p>\\r\\n\\r\\n<h6>Intellectual Property Rights<\\/h6>\\r\\n\\r\\n<p>The Website and its entire contents, features, and functionality (including but not limited to all information, software, text, displays, images, video, and audio, and the design, selection, and arrangement thereof) are owned by the Company, its licensors, or other providers of such material and are protected by United States and international copyright, trademark, patent, trade secret, and other intellectual property or proprietary rights laws.<\\/p>\\r\\n\\r\\n<p>These Terms of Use permit you to use the Website for your personal, non-commercial use only. You must not reproduce, distribute, modify, create derivative works of, publicly display, publicly perform, republish, download, store, or transmit any of the material on our Website, except as follows:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Your computer may temporarily store copies of such materials in RAM incidental to your accessing and viewing those materials.<\\/li>\\r\\n\\t<li>You may store files that are automatically cached by your Web browser for display enhancement purposes.<\\/li>\\r\\n\\t<li>You may print or download one copy of a reasonable number of pages of the Website for your own personal, non-commercial use and not for further reproduction, publication, or distribution.<\\/li>\\r\\n\\t<li>If we provide desktop, mobile, or other applications for download, you may download a single copy to your computer or mobile device solely for your own personal, non-commercial use, provided you agree to be bound by our end user license agreement for such applications.<\\/li>\\r\\n\\t<li>If we provide social media features with certain content, you may take such actions as are enabled by such features.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Modify copies of any materials from this site.<\\/li>\\r\\n\\t<li>Use any illustrations, photographs, video or audio sequences, or any graphics separately from the accompanying text.<\\/li>\\r\\n\\t<li>Delete or alter any copyright, trademark, or other proprietary rights notices from copies of materials from this site.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You must not access or use for any commercial purposes any part of the Website or any services or materials available through the Website.&nbsp;<br \\/>\\r\\nIf you print, copy, modify, download, or otherwise use or provide any other person with access to any part of the Website in breach of the Terms of Use, your right to use the Website will stop immediately and you must, at our option, return or destroy any copies of the materials you have made. No right, title, or interest in or to the Website or any content on the Website is transferred to you, and all rights not expressly granted are reserved by the Company. Any use of the Website not expressly permitted by these Terms of Use is a breach of these Terms of Use and may violate copyright, trademark, and other laws.<\\/p>\\r\\n\\r\\n<h6>Trademarks<\\/h6>\\r\\n\\r\\n<p>The Company name, the terms &ldquo;Green Market Exchange&rdquo;, &ldquo;GMX&rdquo;, all Company logos, and all related names, logos, product and service names, designs, and slogans are trademarks of the Company or its affiliates or licensors. You must not use such marks without the prior written permission of the Company. All other names, logos, product and service names, designs, and slogans on this Website are the trademarks of their respective owners.<\\/p>\\r\\n\\r\\n<h6>Prohibited Uses<\\/h6>\\r\\n\\r\\n<p>You may use the Website only for lawful purposes and in accordance with these Terms of Use. You agree not to use the Website:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>In any way that violates any applicable federal, state, local, or international law or regulation (including, without limitation, any laws regarding the export of data or software to and from the US or other countries).&nbsp;<\\/li>\\r\\n\\t<li>For the purpose of exploiting, harming, or attempting to exploit or harm minors in any way by exposing them to inappropriate content, asking for personally identifiable information, or otherwise.<\\/li>\\r\\n\\t<li>To send, knowingly receive, upload, download, use, or re-use any material that does not comply with the content standards set out in these Terms of Use or elsewhere on this Website.<\\/li>\\r\\n\\t<li>To transmit, or procure the sending of, any advertising or promotional material, including any &quot;junk mail,&quot; &quot;chain letter,&quot; &quot;spam,&quot; or any other similar solicitation.<\\/li>\\r\\n\\t<li>To impersonate or attempt to impersonate the Company, a Company employee, another user, or any other person or entity (including, without limitation, by using email addresses or screen names associated with any of the foregoing).<\\/li>\\r\\n\\t<li>To engage in any other conduct that restricts or inhibits anyone&#39;s use or enjoyment of the Website, or which, as determined by us, may harm the Company or users of the Website, or expose them to liability.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>Additionally, you agree not to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Use the Website in any manner that could disable, overburden, damage, or impair the site or interfere with any other party&#39;s use of the Website, including their ability to engage in real time activities through the Website.<\\/li>\\r\\n\\t<li>Use any robot, spider, or other automatic device, process, or means to access the Website for any purpose, including monitoring or copying any of the material on the Website.<\\/li>\\r\\n\\t<li>Use any manual process to monitor or copy any of the material on the Website, or for any other purpose not expressly authorized in these Terms of Use, without our prior written consent.<\\/li>\\r\\n\\t<li>Use any device, software, or routine that interferes with the proper working of the Website.<\\/li>\\r\\n\\t<li>Introduce any viruses, Trojan horses, worms, logic bombs, or other material that is malicious or technologically harmful.<\\/li>\\r\\n\\t<li>Attempt to gain unauthorized access to, interfere with, damage, or disrupt any parts of the Website, the server on which the Website is stored, or any server, computer, or database connected to the Website.&nbsp;<\\/li>\\r\\n\\t<li>Attack the Website via a denial-of-service attack or a distributed denial-of-service attack.<\\/li>\\r\\n\\t<li>Otherwise attempt to interfere with the proper working of the Website.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>User Contributions<\\/h6>\\r\\n\\r\\n<p>The Website may contain message boards, chat rooms, personal web pages or profiles, forums, bulletin boards, and other interactive features (collectively, &quot;Interactive Services&quot;) that allow users to post, submit, publish, display, or transmit to other users or other persons (hereinafter, &quot;post&quot;) content or materials (collectively, &quot;User Contributions&quot;) on or through the Website. All User Contributions must comply with the Content Standards set out in these Terms of Use.<\\/p>\\r\\n\\r\\n<p>Any User Contribution you post to the site will be considered non-confidential and non-proprietary. By providing any User Contribution on the Website, you grant us and our affiliates and service providers, and each of their respective licensees, successors, and assigns the right to use, reproduce, modify, perform, display, distribute, and otherwise disclose to third parties any such material for any purpose.&nbsp;<\\/p>\\r\\n\\r\\n<p>You represent and warrant that:&nbsp;<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>You own or control all rights in and to the User Contributions and have the right to grant the license granted above to us and our affiliates and service providers, and each of their respective licensees, successors, and assigns.<\\/li>\\r\\n\\t<li>All of your User Contributions do and will comply with these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You understand and acknowledge that you are responsible for any User Contributions you submit or contribute, and you, not the Company, have full responsibility for such content, including its legality, reliability, accuracy, and appropriateness.<\\/p>\\r\\n\\r\\n<p>We are not responsible or liable to any third party for the content or accuracy of any User Contributions posted by you or any other user of the Website.&nbsp;<\\/p>\\r\\n\\r\\n<h6>Monitoring and Enforcement Termination<\\/h6>\\r\\n\\r\\n<p>We have the right to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Remove or refuse to post any User Contributions for any or no reason in our sole discretion.<\\/li>\\r\\n\\t<li>Take any action with respect to any User Contribution that we deem necessary or appropriate in our sole discretion, including if we believe that such User Contribution violates the Terms of Use, including the Content Standards, infringes any intellectual property right or other right of any person or entity, threatens the personal safety of users of the Website or the public, or could create liability for the Company.<\\/li>\\r\\n\\t<li>Disclose your identity or other information about you to any third party who claims that material posted by you violates their rights, including their intellectual property rights or their right to privacy.<\\/li>\\r\\n\\t<li>Take appropriate legal action, including without limitation, referral to law enforcement, for any illegal or unauthorized use of the Website.<\\/li>\\r\\n\\t<li>Terminate or suspend your access to all or part of the Website for any or no reason, including without limitation, any violation of these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>Without limiting the foregoing, we have the right to cooperate fully with any law enforcement authorities or court order requesting or directing us to disclose the identity or other information of anyone posting any materials on or through the Website. YOU WAIVE AND HOLD HARMLESS THE COMPANY AND ITS AFFILIATES, LICENSEES, AND SERVICE PROVIDERS FROM ANY CLAIMS RESULTING FROM ANY ACTION TAKEN BY ANY OF THE FOREGOING PARTIES DURING, OR TAKEN AS A CONSEQUENCE OF, INVESTIGATIONS BY EITHER SUCH PARTIES OR LAW ENFORCEMENT AUTHORITIES.<\\/p>\\r\\n\\r\\n<p>However, we do not undertake to review material before it is posted on the Website, and cannot ensure prompt removal of objectionable material after it has been posted. Accordingly, we assume no liability for any action or inaction regarding transmissions, communications, or content provided by any user or third party. We have no liability or responsibility to anyone for performance or nonperformance of the activities described in this section.<\\/p>\\r\\n\\r\\n<h6>Content Standards<\\/h6>\\r\\n\\r\\n<p>These content standards apply to any and all User Contributions and use of Interactive Services. User Contributions must in their entirety comply with all applicable federal, state, local, and international laws and regulations. Without limiting the foregoing, User Contributions must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Contain any material that is defamatory, obscene, indecent, abusive, offensive, harassing, violent, hateful, inflammatory, or otherwise objectionable.<\\/li>\\r\\n\\t<li>Promote sexually explicit or pornographic material, violence, or discrimination based on race, sex, religion, nationality, disability, sexual orientation, or age.<\\/li>\\r\\n\\t<li>Infringe any patent, trademark, trade secret, copyright, or other intellectual property or other rights of any other person.<\\/li>\\r\\n\\t<li>Violate the legal rights (including the rights of publicity and privacy) of others or contain any material that could give rise to any civil or criminal liability under applicable laws or regulations or that otherwise may be in conflict with these Terms of Use and our Privacy Policy.<\\/li>\\r\\n\\t<li>Be likely to deceive any person.<\\/li>\\r\\n\\t<li>Promote any illegal activity, or advocate, promote, or assist any unlawful act.<\\/li>\\r\\n\\t<li>Cause annoyance, inconvenience, or needless anxiety or be likely to upset, embarrass, alarm, or annoy any other person.<\\/li>\\r\\n\\t<li>Impersonate any person, or misrepresent your identity or affiliation with any person or organization.<\\/li>\\r\\n\\t<li>Involve commercial activities or sales, such as contests, sweepstakes, and other sales promotions, barter, or advertising.<\\/li>\\r\\n\\t<li>Give the impression that they emanate from or are endorsed by us or any other person or entity, if this is not the case.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Copyright Infringement<\\/h6>\\r\\n\\r\\n<p>If you believe that any User Contributions violate your copyright, please contact us and send us a notice of copyright infringement. It is the policy of the Company to terminate the user accounts of repeat infringers. In accordance with the Digital Millennium Copyright Act of 1998 (&ldquo;DMCA&rdquo;), the text of which can be found on the U.S. Copyright Office website, we will respond appropriately to claims and reports of copyright infringement taking place on or through the Websites. If you believe that one of our users is, through the use of our Website, unlawfully infringing the copyright(s) in a work, and wish to have the allegedly infringing material removed, the following information in the form of a written notification (pursuant to 17 U.S.C. &sect; 512(c)) must be provided to our designated Copyright Agent:<\\/p>\\r\\n\\r\\n<p>Please note that, pursuant to 17 U.S.C. &sect; 512(f), any misrepresentation of material fact (falsities) in a written notification automatically subjects the complaining party to liability for any damages, costs and attorney&rsquo;s fees incurred by us in connection with the written notification and allegation of copyright infringement.<\\/p>\\r\\n\\r\\n<p>The Designated Copyright Agent for Green Market Exchange is:<\\/p>\\r\\n\\r\\n<p>Copyright Agent<br \\/>\\r\\nChristian Stratka<br \\/>\\r\\nGreen Market Exchange, LLC<br \\/>\\r\\nADDRESS<br \\/>\\r\\nEmail: <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Your physical or electronic signature;<\\/li>\\r\\n\\t<li>Identification of the copyrighted work(s) that you claim to have been infringed;<\\/li>\\r\\n\\t<li>Identification of the material on our services that you claim is infringing and that you request us to remove;<\\/li>\\r\\n\\t<li>Sufficient information to permit us to locate such material;<\\/li>\\r\\n\\t<li>Your address, telephone number, and e-mail address;<\\/li>\\r\\n\\t<li>A statement that you have a good faith belief that use of the objectionable material is not authorized by the copyright owner, its agent, or under the law; and<\\/li>\\r\\n\\t<li>A statement that the information in the notification is accurate, and under penalty of perjury, that you are either the owner of the copyright that has allegedly been infringed or that you are authorized to act on behalf of the copyright owner.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Reliance on Information Posted<\\/h6>\\r\\n\\r\\n<p>The information presented on or through the Website is made available solely for general information purposes. We do not warrant the accuracy, completeness, or usefulness of this information. Any reliance you place on such information is strictly at your own risk. We disclaim all liability and responsibility arising from any reliance placed on such materials by you or any other visitor to the Website, or by anyone who may be informed of any of its contents.<\\/p>\\r\\n\\r\\n<p>We do not offer any medical advice, and any information presented on our Website is not intended to be a substitute for medical advice.<\\/p>\\r\\n\\r\\n<p>This Website may include content provided by third parties, including materials provided by other users, bloggers, and third-party licensors, syndicators, aggregators, and\\/or reporting services. All statements and\\/or opinions expressed in these materials, and all articles and responses to questions and other content, other than the content provided by the Company, are solely the opinions and the responsibility of the person or entity providing those materials. These materials do not necessarily reflect the opinion of the Company. We are not responsible, or liable to you or any third party, for the content or accuracy of any materials provided by any third parties.<\\/p>\\r\\n\\r\\n<h6>Acknowledgment of Federal and State Laws<\\/h6>\\r\\n\\r\\n<p>You expressly acknowledge that this Website is for residents of states and localities with laws regulating medical or the recreational use of cannabis only and that medical cannabis collectives and patients are established pursuant to their respective local laws. Marijuana is included on Schedule 1 under the United States Controlled Substances Act. Under the federal laws of the United States of America, manufacturing, distributing, dispensing or possession of marijuana is illegal, and individuals are subject to arrest and\\/or prosecution for doing so. User further acknowledges that medical use is not recognized as a valid defense under federal laws regarding marijuana. User also acknowledges that the interstate transportation of marijuana is a federal offense.<\\/p>\\r\\n\\r\\n<h6>Changes to the Website<\\/h6>\\r\\n\\r\\n<p>We may update the content on this Website from time to time, but its content is not necessarily complete or up-to-date. Any of the material on the Website may be out of date at any given time, and we are under no obligation to update such material.<\\/p>\\r\\n\\r\\n<h6>Information About You and Your Visits to the Website<\\/h6>\\r\\n\\r\\n<p>All information we collect on this Website is subject to our Privacy Policy. By using the Website, you consent to all actions taken by us with respect to your information in compliance with the Privacy Policy.<\\/p>\\r\\n\\r\\n<p>[Online Purchases All purchases through our site or other transactions formed through the Website, or resulting from visits made by you, are governed by the following terms of sale [Additional terms and conditions may also apply to specific portions, services, or features of the Website. All such additional terms and conditions are hereby incorporated by this reference into these Terms of Use.]]<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<h6>Linking to the Website and Social Media Features<\\/h6>\\r\\n\\r\\n<p>You may link to our homepage, provided you do so in a way that is fair and legal and does not damage our reputation or take advantage of it, but you must not establish a link in such a way as to suggest any form of association, approval, or endorsement on our part.<\\/p>\\r\\n\\r\\n<p>This Website may provide certain social media features that enable you to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Link from your own or certain third-party websites to certain content on this Website.<\\/li>\\r\\n\\t<li>Send emails or other communications with certain content, or links to certain content, on this Website.<\\/li>\\r\\n\\t<li>Cause limited portions of content on this Website to be displayed or appear to be displayed on your own or certain third-party websites.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You may use these features solely as they are provided by us, solely with respect to the content they are displayed with, and otherwise in accordance with any additional terms and conditions we provide with respect to such features. Subject to the foregoing, you must not:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Establish a link from any website that is not owned by you.<\\/li>\\r\\n\\t<li>Cause the Website or portions of it to be displayed on, or appear to be displayed by, any other site, for example, framing, deep linking, or in-line linking.<\\/li>\\r\\n\\t<li>Link to any part of the Website other than the homepage.<\\/li>\\r\\n\\t<li>Otherwise take any action with respect to the materials on this Website that is inconsistent with any other provision of these Terms of Use.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>You agree to cooperate with us in causing any unauthorized framing or linking immediately to stop. We reserve the right to withdraw linking permission without notice. We may disable all or any social media features and any links at any time without notice in our discretion.<\\/p>\\r\\n\\r\\n<h6>Links from the Website<\\/h6>\\r\\n\\r\\n<p>If the Website contains links to other sites and resources provided by third parties, these links are provided for your convenience only. This includes links contained in advertisements, including banner advertisements and sponsored links. We have no control over the contents of those sites or resources, and accept no responsibility for them or for any loss or damage that may arise from your use of them. If you decide to access any of the third-party websites linked to this Website, you do so entirely at your own risk and subject to the terms and conditions of use for such websites.<\\/p>\\r\\n\\r\\n<h6>Geographic Restrictions<\\/h6>\\r\\n\\r\\n<p>We provide this Website for use only by persons located in the United States. We make no claims that the Website or any of its content is accessible or appropriate outside of the United States. Access to the Website may not be legal by certain persons or in certain geographic areas. If you access the Website from outside the United States, you do so on your own initiative and are responsible for compliance with local laws.<\\/p>\\r\\n\\r\\n<h6>Disclaimer of Warranties<\\/h6>\\r\\n\\r\\n<p>You understand that we cannot and do not guarantee or warrant that files available for downloading from the internet or the Website will be free of viruses or other destructive code. You are responsible for implementing sufficient procedures and checkpoints to satisfy your particular requirements for anti-virus protection and accuracy of data input and output, and for maintaining a means external to our site for any reconstruction of any lost data.<\\/p>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, WE WILL NOT BE LIABLE FOR ANY LOSS OR DAMAGE CAUSED BY A DISTRIBUTED DENIAL-OF-SERVICE ATTACK, VIRUSES, OR OTHER TECHNOLOGICALLY HARMFUL MATERIAL THAT MAY INFECT YOUR COMPUTER EQUIPMENT, COMPUTER PROGRAMS, DATA, OR OTHER PROPRIETARY MATERIAL DUE TO YOUR USE OF THE WEBSITE OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE OR TO YOUR DOWNLOADING OF ANY MATERIAL POSTED ON IT, OR ON ANY WEBSITE LINKED TO IT.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>YOUR USE OF THE WEBSITE, ITS CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE IS AT YOUR OWN RISK. THE WEBSITE, ITS CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE ARE PROVIDED ON AN &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; BASIS, WITHOUT ANY WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. NEITHER THE COMPANY NOR ANY PERSON ASSOCIATED WITH THE COMPANY MAKES ANY WARRANTY OR REPRESENTATION WITH RESPECT TO THE COMPLETENESS, SECURITY, RELIABILITY, QUALITY, ACCURACY, OR AVAILABILITY OF THE WEBSITE. WITHOUT LIMITING THE FOREGOING, NEITHER THE COMPANY NOR ANYONE ASSOCIATED WITH THE COMPANY REPRESENTS OR WARRANTS THAT THE WEBSITE, ITS CONTENT, OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL BE ACCURATE, RELIABLE, ERROR-FREE, OR UNINTERRUPTED, THAT DEFECTS WILL BE CORRECTED, THAT OUR SITE OR THE SERVER THAT MAKES IT AVAILABLE ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE WEBSITE OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL OTHERWISE MEET YOUR NEEDS OR EXPECTATIONS.<\\/p>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, THE COMPANY HEREBY DISCLAIMS ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR PARTICULAR PURPOSE.<\\/p>\\r\\n\\r\\n<p>THE FOREGOING DOES NOT AFFECT ANY WARRANTIES THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.<\\/p>\\r\\n\\r\\n<h6>Limitation on Liability<\\/h6>\\r\\n\\r\\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, IN NO EVENT WILL THE COMPANY, ITS AFFILIATES, OR THEIR LICENSORS, SERVICE PROVIDERS, EMPLOYEES, AGENTS, OFFICERS, OR DIRECTORS BE LIABLE FOR DAMAGES OF ANY KIND, UNDER ANY LEGAL THEORY, ARISING OUT OF OR IN CONNECTION WITH YOUR USE, OR INABILITY TO USE, THE WEBSITE, ANY WEBSITES LINKED TO IT, ANY CONTENT ON THE WEBSITE OR SUCH OTHER WEBSITES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO, PERSONAL INJURY, PAIN AND SUFFERING, EMOTIONAL DISTRESS, LOSS OF REVENUE, LOSS OF PROFITS, LOSS OF BUSINESS OR ANTICIPATED SAVINGS, LOSS OF USE, LOSS OF GOODWILL, LOSS OF DATA, AND WHETHER CAUSED BY TORT (INCLUDING NEGLIGENCE), BREACH OF CONTRACT, OR OTHERWISE, EVEN IF FORESEEABLE. THE FOREGOING DOES NOT AFFECT ANY LIABILITY THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.<\\/p>\\r\\n\\r\\n<h6>Indemnification<\\/h6>\\r\\n\\r\\n<p>You agree to defend, indemnify, and hold harmless the Company, its affiliates, licensors, and service providers, and its and their respective officers, directors, employees, contractors, agents, licensors, suppliers, successors, and assigns from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable attorneys&#39; fees) arising out of or relating to your violation of these Terms of Use or your use of the Website, including, but not limited to, your User Contributions, any use of the Website&#39;s content, services, and products other than as expressly authorized in these Terms of Use, or your use of any information obtained from the Website.<\\/p>\\r\\n\\r\\n<h6>Governing Law and Jurisdiction<\\/h6>\\r\\n\\r\\n<p>All matters relating to the Website and these Terms of Use, and any dispute or claim arising therefrom or related thereto (in each case, including non-contractual disputes or claims), shall be governed by and construed in accordance with the internal laws of the State of Maine without giving effect to any choice or conflict of law provision or rule (whether of the State of Maine or any other jurisdiction). Any legal suit, action, or proceeding arising out of, or related to, these Terms of Use or the Website shall be instituted exclusively in the federal courts of the United States or the courts of the State of Maine, although we retain the right to bring any suit, action, or proceeding against you for breach of these Terms of Use in your jurisdiction of residence or any other relevant jurisdiction. You waive any and all objections to the exercise of jurisdiction over you by such courts and to venue in such courts.<\\/p>\\r\\n\\r\\n<h6>Arbitration<\\/h6>\\r\\n\\r\\n<p>At Company&#39;s sole discretion, it may require You to submit any disputes arising from these Terms of Use or use of the Website, including disputes arising from or concerning their interpretation, violation, invalidity, non-performance, or termination, to final and binding arbitration under the Rules of Arbitration of the American Arbitration Association applying Maine law.<\\/p>\\r\\n\\r\\n<h6>Waiver and Severability<\\/h6>\\r\\n\\r\\n<p>No waiver by the Company of any term or condition set out in these Terms of Use shall be deemed a further or continuing waiver of such term or condition or a waiver of any other term or condition, and any failure of the Company to assert a right or provision under these Terms of Use shall not constitute a waiver of such right or provision. If any provision of these Terms of Use is held by a court or other tribunal of competent jurisdiction to be invalid, illegal, or unenforceable for any reason, such provision shall be eliminated or limited to the minimum extent such that the remaining provisions of the Terms of Use will continue in full force and effect.<\\/p>\\r\\n\\r\\n<h6>Entire Agreement<\\/h6>\\r\\n\\r\\n<p>The Terms of Use and our Privacy Policy constitute the sole and entire agreement between you and Green Market Exchange, LLC regarding the Website and supersede all prior and contemporaneous understandings, agreements, representations, and warranties, both written and oral, regarding the Website.<\\/p>\\r\\n\\r\\n<h6>Your Comments and Concerns<\\/h6>\\r\\n\\r\\n<p>This website is operated by Green Market Exchange, LLC, a Maine limited liability company. All feedback, comments, requests for technical support, and other communications relating to the Website should be directed to: <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\",\"meta_title\":\"Terms Of Use\",\"meta_keyword\":\"Terms Of Use\",\"meta_description\":\"Terms Of Use\"}', '2022-04-14 04:02:23', '2023-02-24 18:41:00', NULL), (1, 3, 'About us', 'about-us', '{\"section1_main_title\":\"About Us\",\"section1_title\":\"Our Goal\",\"section1_description\":\"Green Market Exchange strives to be the central provider of cannabis wholesale market information and data for the cannabis business ecosystem. We aspire to create and develop a world class platform to connect cannabis based companies from every corner of the globe with the hopes of making the world a greener place.\",\"section1_list_title1\":\"The Future is Green\",\"section1_list_description1\":\"<p>The cannabis indusustry is poised to explode to new hights. At Green Market Exchange, we&#39;re buliding a community and marketplace to be part of your journey into the green frontier.&nbsp;<\\/p>\",\"section1_list_image1\":\"\\/cms\\/1653912907-about-img.jpg\",\"section1_list_title2\":\"Power in Perspective\",\"section1_list_description2\":\"<p>Green Market Exchange values diversity in perspective. As we continue to devlop our platform and grow our product offerings, we ask our users and the community to be transparent with us and offer suggestions to help us create true value for you,&nbsp;the community and the industry.<\\/p>\",\"section1_list_image2\":\"\\/cms\\/1653912907-about-tag-img.jpg\",\"section2_main_title\":\"Our Roots\",\"section2_description\":\"<p>Green Market Exchange was founded in 2020 on the basis of cannabis being a health beneficial product and a positive alternative to other common consumable products. Green Market Exchange&nbsp;believes cannabis is a natural&nbsp;medicine that has the potenial to not only better invidual health but connect society in an optimistic&nbsp;manner as the cannabis community envokes peace.&nbsp;We hope to not only create an awesome product but more importantly a platform that connects, inspires and radiates the values&nbsp;of the cannabis community.<\\/p>\",\"section2_quote\":\"\",\"section2_image\":\"\\/cms\\/1650008538-cart-image-7.png\",\"meta_title\":\"About Us\",\"meta_keyword\":\"About Us\",\"meta_description\":\"About Us\"}', '2022-04-14 04:02:23', '2022-12-07 16:55:39', NULL), (1, 4, 'Contact us', 'contact-us', NULL, '2022-07-11 13:19:52', '2022-07-11 13:19:52', NULL); INSERT INTO `cms` (`isActive`, `id`, `name`, `slug`, `content`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 5, 'Privacy Policy', 'privacy-policy', '{\"main_title\":\"Privacy Policy\",\"main_content\":\"<p>Green Market Exchange Inc. (&quot;Company&quot;, &quot;We&quot;, or &ldquo;Us&rdquo;) respect your privacy and are committed to protecting it through our compliance with this policy. This policy describes the types of information we may collect from you or that you may provide when you visit the website <a href=\\\"https:\\/\\/www.greenmarketexchange.com\\/\\\" target=\\\"_blank\\\">https:\\/\\/www.greenmarketexchange.com<\\/a> (our &quot;Website&quot;) and our practices for collecting, using, maintaining, protecting, and disclosing that information.<\\/p>\\r\\n\\r\\n<p>This policy applies to information we collect on this Website, as well as, any related online services, sales, marketing, or events we conduct (including in any electronic messages between you and us). It does not apply to information collected by us offline or through any other means, including on any other website operated by us or any third party, including through any application or content (including advertising) that may link to or be accessible from or on the Website.<\\/p>\\r\\n\\r\\n<p>Please read this policy carefully to understand our policies and practices regarding your information and how we will treat it. If you do not agree with our policies and practices, your choice is not to use our Website. By accessing or using this Website, you agree to this privacy policy. This policy may change from time to time. Your continued use of this Website after we make changes is deemed to be acceptance of those changes, so please check the policy periodically for updates.<\\/p>\\r\\n\\r\\n<h6>Children Under the Age of 18<\\/h6>\\r\\n\\r\\n<p>Our Website is not intended for anyone under 21 years of age. No one under age 21 may provide any personal information to the Website. We do not knowingly collect personal information from children under 18. If you are under 21, do not use or provide any information on this Website. If we learn we have collected or received personal information from a child under 18 without verification of parental consent, we will delete that information. If you believe we might have any information from or about a child under 18, please contact us at <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a>.<\\/p>\\r\\n\\r\\n<h6>Information We Collect About You and How We Collect It<\\/h6>\\r\\n\\r\\n<p>We collect several types of information from and about users of our Website, including information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>By which you may be personally identified, such as name, postal address (in whole or part), e-mail address, telephone number, job title, professional experience, or any other identifier by which you may be contacted online or offline (&quot;personal information&quot;);<\\/li>\\r\\n <li>Some users may also submit their (i) means of age verification, or (ii) medical marijuana recommendation, including their recommending doctor&rsquo;s name and license number, contact information, verification methodology, and verification number (&ldquo;Medical Marijuana Information&rdquo;).<\\/li>\\r\\n <li>That is about you but individually does not identify you; and\\/or<\\/li>\\r\\n <li>About your IP address, browser, network, device, internet connection, the equipment you use to access our Website, and Website usage details (including, without limitation, clinks, internal links, pages visited, scrolling, searches, and timestamps).<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<p>We collect this information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Directly from you when you voluntarily provide it to us.<\\/li>\\r\\n <li>Automatically as you navigate through the site. Information collected automatically may include usage details, IP addresses, and information collected through cookies, web beacons, and other tracking technologies.<\\/li>\\r\\n <li>From third parties, for example, our business partners.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<h6>Information You Provide to Us<\\/h6>\\r\\n\\r\\n<p>The information we collect on or through our Website may include:<\\/p>\\r\\n<ul>\\r\\n <li>Information that you provide by filling in forms on our Website. This includes information provided at the time of purchasing or using our services or products, subscribing to our newsletter, registering for courses we host, or otherwise registering to use our Website. We may also ask you for information when you report a problem with our Website (When you submit information to this website via webform, we collect the data requested in the webform in order to track and respond to your submissions. We may share this information with our Website hosting provider, so that they can provide website services to us.<\\/li>\\r\\n <li>Records and copies of your correspondence (including email addresses), if you contact us.<\\/li>\\r\\n <li>Details of transactions you carry out through our Website and of the fulfillment of your orders. You may be required to provide financial information before placing an order through our Website.<\\/li>\\r\\n <li>Information you otherwise provide us via our Website.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>You also may provide information to be published or displayed (hereinafter, &quot;posted&quot;) on public areas of the Website, or transmitted to other users of the Website or third parties (collectively, &quot;User Contributions&quot;). Your User Contributions are posted on and transmitted to others at your own risk. Although, please be aware that no security measures are perfect or impenetrable. Additionally, we cannot control the actions of other users of the Website with whom you may choose to share your User Contributions. Therefore, we cannot and do not guarantee that your User Contributions will not be viewed by unauthorized persons.<\\/p>\\r\\n\\r\\n<h6>Information We Collect Through Automatic Data Collection Technologies<\\/h6>\\r\\n\\r\\n<p>As you navigate through and interact with our Website, we may use automatic data collection technologies to collect certain information about your equipment, browsing actions, and patterns, including:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Details of your visits to our Website and other communication data and the resources that you access and use on the Website.<\\/li>\\r\\n <li>Information about your computer and internet connection, including your IP address, operating system, and browser type.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n\\r\\n<p>We also may use these technologies to collect information about your online activities over time and across third-party websites or other online services (behavioral tracking). The information we collect automatically may include personal information or we may maintain it or associate it with personal information we collect in other ways or receive from third parties. It helps us to improve our Website and to deliver a better and more personalized service, including by enabling us to:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Estimate our audience size and usage patterns.<\\/li>\\r\\n <li>Store information about your preferences, allowing us to customize our Website according to your individual interests.<\\/li>\\r\\n <li>Speed up your searches.<\\/li>\\r\\n <li>Recognize you when you return to our Website.<\\/li>\\r\\n<\\/ul>\\r\\n<p><\\/p>\\r\\n<p>The technologies we use for this automatic data collection may include:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Cookies (or browser cookies). A cookie is a small file placed on the hard drive of your computer. You may refuse to accept browser cookies by activating the appropriate setting on your browser. However, if you select this setting you may be unable to access certain parts of our Website. Unless you have adjusted your browser setting so that it will refuse cookies, our system will issue cookies when you direct your browser to our Website. We may share information with our website analytics provider, google analytics, to learn about site traffic and activity. Flash Cookies. Certain features of our Website may use local stored objects (or Flash cookies) to collect and store information about your preferences and navigation to, from, and on our Website.<\\/li>\\r\\n <li>Flash Cookies. Certain features of our Website may use local stored objects (or Flash cookies) to collect and store information about your preferences and navigation to, from, and on our Website. Flash cookies are not managed by the same browser settings as are used for browser cookies. For information about managing your privacy and security settings for Flash cookies, see Choices About How We Use and Disclose Your Information.<\\/li>\\r\\n <li>Web Beacons. Pages of our the Website and our e-mails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of certain website content and verifying system and server integrity).<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<h6>Third-Party Use of Cookies and Other Tracking Technologies<\\/h6>\\r\\n\\r\\n<p>Some content or applications, including advertisements, on the Website are served by third-parties, including advertisers, ad networks and servers, content providers, and application providers. These third parties may use cookies alone or in conjunction with web beacons or other tracking technologies to collect information about you when you use our website. The information they collect may be associated with your personal information or they may collect information, including personal information, about your online activities over time and across different websites and other online services. They may use this information to provide you with interest-based (behavioral) advertising or other targeted content. Our third-party services may include Amazon Web Services, google analytics, and may include others in the future. We do not control these third parties&#39; tracking technologies or how they may be used. If you have any questions about an advertisement or other targeted content, you should contact the responsible provider directly. For information about how you can opt out of receiving targeted advertising from many providers, see Choices About How We Use and Disclose Your Information.<\\/p>\\r\\n\\r\\n<h6>How We Use Your Information<\\/h6>\\r\\n\\r\\n<p>We use information that we collect about you or that you provide to us, including any personal information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To present our Website and its contents to you.<\\/li>\\r\\n <li>To provide you with information, products, or services that you request from us.<\\/li>\\r\\n <li>To fulfill any other purpose for which you provide it.<\\/li>\\r\\n <li>To carry out our obligations and enforce our rights arising from any contracts entered into between you and us, including for billing and collection.<\\/li>\\r\\n <li>To notify you about changes to our Website or any products or services we offer or provide though it.<\\/li>\\r\\n <li>In any other way we may describe when you provide the information.<\\/li>\\r\\n <li>For any other purpose with your consent.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We may also use your information to contact you about our own and third-parties&#39; goods and services and\\/or promotional offers that may be of interest to you, industry news and dates, and other information via email newsletter. If you do not want us to use your information in this way, please click &ldquo;unsubscribe&rdquo; from any email newsletter you may receive from us in the future.<\\/p>\\r\\n\\r\\n<p>We may use the information we have collected from you to enable us to display advertisements to our advertisers&#39; target audiences. Even though we do not disclose your personal information for these purposes without your consent, if you click on or otherwise interact with an advertisement, the advertiser may assume that you meet its target criteria.<\\/p>\\r\\n\\r\\n<h6>Disclosure of Your Information<\\/h6>\\r\\n\\r\\n<p>We may disclose aggregated information about our users, and information that does not identify any individual, without restriction.<\\/p>\\r\\n\\r\\n<p>We may disclose personal information that we collect or you provide as described in this privacy policy:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To our subsidiaries and affiliates.<\\/li>\\r\\n <li>To contractors, service providers, and other third parties we use to support our business[ and who are bound by contractual obligations to keep personal information confidential and use it only for the purposes for which we disclose it to them.<\\/li>\\r\\n <li>To a buyer or other successor in the event of a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which personal information held by us about our Website users is among the assets transferred.<\\/li>\\r\\n <li>To third parties to market their products or services to you if you have not opted out of these disclosures.<\\/li>\\r\\n <li>To fulfill the purpose for which you provide it. For example, if you give us an email address to use the &quot;email a friend&quot; feature of our Website, we will transmit the contents of that email and your email address to the recipients.<\\/li>\\r\\n <li>For any other purpose disclosed by us when you provide the information.<\\/li>\\r\\n <li>With your consent.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We may also disclose your personal information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>To comply with any court order, law, or legal process, including to respond to any government or regulatory request.<\\/li>\\r\\n <li>Medical Marijuana Information may need to be disclosed, along with other required information, for the purpose of calculating taxes, ensuring legal compliance.<\\/li>\\r\\n <li>To enforce or apply our terms of use and other agreements, including for billing and collection purposes.<\\/li>\\r\\n <li>If we believe disclosure is necessary or appropriate to protect the rights, property, or safety of us, our customers, or others. This includes exchanging information with other companies and organizations for the purposes of fraud protection and credit risk reduction.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<h6>Choices About How We Use and Disclose Your Information<\\/h6>\\r\\n\\r\\n<p>We strive to provide you with choices regarding the personal information you provide to us. We have created mechanisms to provide you with the following control over your information:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>Tracking Technologies and Advertising. You can set your browser to refuse all or some browser cookies, or to alert you when cookies are being sent. To learn how you can manage your Flash cookie settings, visit the Flash player settings page on Adobe&#39;s website. If you disable or refuse cookies, please note that some parts of this site may then be inaccessible or not function properly.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><\\/p>\\r\\n<p>We do not control third parties&#39; collection or use of your information to serve interest-based advertising. However these third parties may provide you with ways to choose not to have your information collected or used in this way. You can opt out of receiving targeted ads from members of the Network Advertising Initiative (&quot;NAI&quot;) on the NAI&#39;s website.<\\/p>\\r\\n\\r\\n<h6>Accessing and Correcting Your Information<\\/h6>\\r\\n\\r\\n<p>You may also send us an email at <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a> to request access to, correct or delete any personal information that you have provided to us. We cannot however, guarantee that can delete any such information once it has already been provided to us and\\/or third parties. In certain cases, we cannot delete your personal information except by also deleting your user account. We may not accommodate a request to change information if we believe the change would violate any law or legal requirement or cause the information to be incorrect. If you delete your User Contributions from the Website, copies of your User Contributions may remain viewable in cached and archived pages, or might have been copied or stored by other Website users.<\\/p>\\r\\n\\r\\n<h6>Your California Privacy Rights<\\/h6>\\r\\n\\r\\n<p>California&#39;s &quot;Shine the Light&quot; law (Civil Code Section &sect; 1798.83) permits users who are California residents to request certain information regarding our disclosure of personal information to third parties for their direct marketing purposes. To make such a request, please send an email to <a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a>.<\\/p>\\r\\n\\r\\n<p>If you are under 18 years of age, reside in California, and have a registered account with the Website, you have the right to request removal of unwanted data that you publicly post on the Website. To request removal of such data, please contact us using the contact information provided below, and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Website, but please be aware that the data may not be completely or comprehensively removed from all our systems (e.g. backups, etc.).<\\/p>\\r\\n\\r\\n<h6>Data Security<\\/h6>\\r\\n\\r\\n<p>We have implemented measures designed to secure your personal information from accidental loss and from unauthorized access, use, alteration, and disclosure. The safety and security of your information also depends on you. Where we have given you (or where you have chosen) a password for access to certain parts of our Website, you are responsible for keeping this password confidential. We ask you not to share your password with anyone. Unfortunately, the transmission of information via the internet is not completely secure. Although we do our best to protect your personal information, we cannot guarantee the security of your personal information transmitted to our Website. Any transmission of personal information is at your own risk. We are not responsible for circumvention of any privacy settings or security measures contained on the Website.<\\/p>\\r\\n\\r\\n<h6>Changes to Our Privacy Policy<\\/h6>\\r\\n\\r\\n<p>It is our policy to post any changes we make to our privacy policy on this page. If we make material changes to how we treat our users&#39; personal information, we will notify you by email to the email address specified in your account and\\/or through a notice on the Website home page. The date the privacy policy was last revised is identified at the top of the page. You are responsible for ensuring we have an up-to-date active and deliverable email address for you, and for periodically visiting our Website and this privacy policy to check for any changes.<\\/p>\\r\\n\\r\\n<h6>Contact Information<\\/h6>\\r\\n\\r\\n<p>To ask questions or comment about this privacy policy and our privacy practices, contact us at:<\\/p>\\r\\n\\r\\n<p><a href=\\\"mailto:notifications@greenmarketexchange.com\\\">notifications@greenmarketexchange.com<\\/a><\\/p>\",\"meta_title\":\"Privacy Policy\",\"meta_keyword\":\"Privacy Policy\",\"meta_description\":\"Privacy Policy\"}', '2022-11-11 17:51:01', '2022-11-23 05:34:49', NULL), (1, 6, 'Subscription Policy', 'subscription-policy', '{\"main_title\":\"Subscription Policy\",\"main_content\":\"<div classname=\\\"content-box\\\">\\r\\n<h6>Payment<\\/h6>\\r\\n\\r\\n<p>All subscriptions must be paid in advance on a monthly basis. Payment will be charged to the customer&#39;s credit card or debit card on the day a customer selects a subscription. If the payment is not successful, the subscription will be suspended until payment is received.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Cancellation<\\/h6>\\r\\n\\r\\n<p>Customers may cancel their subscription at any time through their manage subscription settings. Cancellation will be effective at the end of the current billing period. No refunds will be given for partial days, months or years of service.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Changes to subscription plans<\\/h6>\\r\\n\\r\\n<p>Customers may upgrade or downgrade their subscription plan at any time through their manage subscription settings. Any changes to the subscription plan will take effect immediately, customers will be charged for the current billing period for an upgraded plan if they are downgrading their subscription.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Changes to subscription fees<\\/h6>\\r\\n\\r\\n<p>We reserve the right to change the subscription fees at any time. Any changes will be communicated to customers at least 30 days in advance and will take effect at the end of the current billing period.<\\/p>\\r\\n<\\/div>\\r\\n\\r\\n<div classname=\\\"content-box\\\">\\r\\n<h6>Termination<\\/h6>\\r\\n\\r\\n<p>We reserve the right to terminate a subscription at any time for any reason, with or without notice. If we terminate a subscription without cause, we will provide a pro-rated refund for the remaining subscription period.<\\/p>\\r\\n\\r\\n<p>By subscribing to Green Market Exchange, you agree to the terms of this subscription policy. If you have any questions or concerns, please do not hesitate to contact us.<\\/p>\\r\\n<\\/div>\",\"meta_title\":\"Subscription Policy\",\"meta_keyword\":\"Subscription Policy\",\"meta_description\":\"Subscription Policy\"}', '2023-02-24 04:02:23', '2023-02-24 18:40:20', NULL); -- -------------------------------------------------------- -- -- Table structure for table `comments` -- DROP TABLE IF EXISTS `comments`; CREATE TABLE IF NOT EXISTS `comments` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `comment` text, `commentUniqueId` varchar(255) DEFAULT NULL, `replyCount` int DEFAULT '0', `likeCount` int DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `commentUniqueId` (`commentUniqueId`), KEY `userId` (`userId`), KEY `postId` (`postId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `comments` -- INSERT INTO `comments` (`isActive`, `id`, `userId`, `postId`, `comment`, `commentUniqueId`, `replyCount`, `likeCount`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 20, 2, 'Hello @hogntopjohn this is test reply', 'ljynp5mg8aimpb6oib', 1, 0, '2023-07-11 18:59:25', '2023-07-11 18:59:49', NULL); -- -------------------------------------------------------- -- -- Table structure for table `comment_like` -- DROP TABLE IF EXISTS `comment_like`; CREATE TABLE IF NOT EXISTS `comment_like` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `commentId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `commentId` (`commentId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `comment_replies` -- DROP TABLE IF EXISTS `comment_replies`; CREATE TABLE IF NOT EXISTS `comment_replies` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `commentId` int DEFAULT NULL, `userId` int DEFAULT NULL, `reply` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `commentId` (`commentId`), KEY `userId` (`userId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `comment_replies` -- INSERT INTO `comment_replies` (`isActive`, `id`, `commentId`, `userId`, `reply`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 20, 'This is sub test @john2', '2023-07-11 18:59:49', '2023-07-11 18:59:49', NULL); -- -------------------------------------------------------- -- -- Table structure for table `drivers` -- DROP TABLE IF EXISTS `drivers`; CREATE TABLE IF NOT EXISTS `drivers` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `transporterName` varchar(255) DEFAULT NULL, `driversName` varchar(255) DEFAULT NULL, `cannabisIndustryLicense` varchar(255) DEFAULT NULL, `phoneNumber` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `drivers` -- INSERT INTO `drivers` (`isActive`, `id`, `userId`, `transporterName`, `driversName`, `cannabisIndustryLicense`, `phoneNumber`, `email`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 12, 'Lily Pande', 'John Deo', '54545', '545444', 'lily@gmail.com', '2023-08-24 16:08:08', '2023-08-24 16:08:08', NULL), (1, 2, 12, 'Lsdsh Pande', 'John1 Deo', '54545', '545444', 'lsdsh@gmail.com', '2023-08-24 16:08:08', '2023-08-24 16:08:08', NULL), (2, 3, 12, 'zdsdf', 'dfdfdf', 'sdfdfdfs', '54545545', 'dhjjhj@kj.sd', '2023-08-27 19:11:24', '2023-08-27 19:53:48', NULL), (1, 4, 12, 'zdsdf', 'dfdfdf', 'sdfdfdfs', '54545545', 'dhjjhj@kj.sd', '2023-08-27 19:12:48', '2023-08-27 19:53:59', NULL), (2, 5, 12, 'zdsdfasasasas', 'dfdfdfsdsdsds', '545456456', '54545545', 'dhjjhssdsj@kj.sd', '2023-08-27 19:16:20', '2023-08-27 19:54:02', NULL), (1, 6, 12, 'ABCXYZ', 'sddf', '4545', '455454', 'lily2@gmail.com', '2023-08-27 19:21:40', '2023-08-27 19:53:55', NULL); -- -------------------------------------------------------- -- -- Table structure for table `email_template` -- DROP TABLE IF EXISTS `email_template`; CREATE TABLE IF NOT EXISTS `email_template` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `headerId` int DEFAULT NULL, `footerId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `body` text, `status` enum('1','2') DEFAULT NULL COMMENT '1 for active, 2 for inactive', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `headerId` (`headerId`), KEY `footerId` (`footerId`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_template` -- INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 1, 'Welcome', 'Welcome to GMX', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 2, 1, 1, 'Reset password | User', 'Reset Password', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Reset Password</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Dear <b>{NAME}</b>, you are receiving this email because you requested to reset your password at GMX.</p>\n\n <p style=\"margin-top: 30px;margin-bottom: 0px;\">Click the button below to reset your password.</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">RESET PASSWORD</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">If you did not request this, please contact <a href=\"{LINK_1}\">support</a> for assistance.</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 3, 1, 1, 'Contact Us | Admin', 'Contact us', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"hero-white-icon-outline0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\"><!--[if mso]>\n <table width=\"584\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\">\n <![endif]-->\n <div data-color=\"Light\" data-max=\"23\" data-min=\"15\" data-size=\"Text MD\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 data-color=\"Dark\" data-max=\"40\" data-min=\"20\" data-size=\"Heading 2\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Contact us</h2>\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td><!--[if mso]>\n <table width=\"800\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td>\n <![endif]-->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">First Name</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{FIRST_NAME}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Last Name</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{LAST_NAME}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 30%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Phone Number</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n <td width=\"100\" align=\"right\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;max-width: 600px;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{PHONE_NUMBER}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"300\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 100%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Light\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 data-color=\"Dark\" data-max=\"26\" data-min=\"10\" data-size=\"Heading 4\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Message</h4>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\"><!--[if mso]>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td width=\"100\" align=\"left\" valign=\"top\" style=\"padding: 0px 8px;\">\n <![endif]-->\n <div style=\"display: inline-block;vertical-align: top;width: 100%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">{MESSAGE}</p>\n </div>\n </div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n </table>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-06-01 09:44:36', NULL), (1, 4, 1, 1, 'Contact Us | User', 'Contact us', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"hero-white-icon-outline0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\"><!--[if mso]>\n <table width=\"584\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\">\n <![endif]-->\n <div data-color=\"Light\" data-max=\"23\" data-min=\"15\" data-size=\"Text MD\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 data-color=\"Dark\" data-max=\"40\" data-min=\"20\" data-size=\"Heading 2\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Thank you for getting in touch.</h2>\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\n <!--[if mso]>\n </td>\n </tr>\n </table>\n <![endif]--></td>\n </tr>\n </tbody>\n </table>\n <!-- ------------------------------------------------ -->\n \n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" data-module=\"button-dark0\" role=\"presentation\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\"><!-- -------------------------------------- -->\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" role=\"presentation\">\n <tbody>\n <tr>\n <td align=\"center\" data-bgcolor=\"Bg White\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 4px;\">We will review your message and come back to you shortly. Thank you for reaching out to the GMX. We look forward to connecting soon.</p>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n <!-- --------------------------------------- --></td>\n </tr>\n </tbody>\n </table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 5, 1, 1, 'New member arrived. Retailer| Admin', 'New member arrived', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">New Member Arrived</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Name</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{NAME}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Role</h4>\n </div>\n </div>\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ROLE}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO MEMBERS</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 6, 1, 1, 'New member arrived. Brand | Admin', 'New member arrived', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">New Member Arrived.</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" cstyle=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-bottom: 16px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">(Selected plan : {PLAN})</p>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{NAME}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Email</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{EMAIL}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Role</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ROLE}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO MEMBERS</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 7, 1, 1, 'Order Placed | Retailer', 'Order Placed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-21 15:03:30', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 8, 1, 1, 'Order Requested | Brand', 'New Order: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDER_ID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2023-08-27 09:56:58', NULL), (1, 9, 1, 1, 'Order Confirmed | Retailer', 'Order Confirmed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDER_ID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Manifest#</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{MANIFEST}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Driver</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{DRIVER_NAME}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Delivery Date</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{DELIVERY_DATE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Payment Due</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PAYMENT_DUE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Payment</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PAYMENT_STATUS}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2023-08-27 16:33:38', NULL), (1, 10, 1, 1, 'Order Accepted | Brand', 'Order Accepted: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE}/{UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:37:04', NULL), (1, 11, 1, 1, 'Order Declined | Retailer', 'Order Declined: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDER_ID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Manifest#</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{MANIFEST}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Driver</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{DRIVER_NAME}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Delivery Date</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{DELIVERY_DATE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Payment Due</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PAYMENT_DUE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Payment</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PAYMENT_STATUS}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Decline Reason</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{MESSAGE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2023-08-27 16:35:20', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 12, 1, 1, 'Order Cancelled | Brand', 'Order Cancelled: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:44:38', NULL), (1, 13, 1, 1, 'Order Delivered | Retailer', 'Order Delivered: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:45:12', NULL), (1, 14, 1, 1, 'Order Delivered | Brand', 'Order Delivered: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:45:44', NULL), (1, 15, 1, 1, 'Order Received | Retailer', 'Order Received: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <p>&nbsp;</p>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:46:09', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 16, 1, 1, 'Order Received | Brand', 'Order Received: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:47:19', NULL), (1, 17, 1, 1, 'Order Completed | Retailer', 'Order Completed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDER_ID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Manifest#</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{MANIFEST}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Driver</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{DRIVER_NAME}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Delivery Date</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{DELIVERY_DATE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Payment Due</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PAYMENT_DUE}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Payment</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PAYMENT_STATUS}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2023-08-27 16:36:58', NULL), (1, 18, 1, 1, 'Order Completed | Brand', 'Order Completed: {ORDER_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Order ID</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{ORDERID}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Product</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{PRODUCT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Category</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CATEGORY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Customer Name</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quantity</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUANTITY}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Price</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">${PRICE} / {UNIT}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\r\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\r\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Total</h4>\r\n </div>\r\n </div>\r\n\r\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\r\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\r\n\r\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\r\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{TOTAL}</p>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO ORDERS</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-05-10 00:00:00', '2022-11-04 11:48:22', NULL), (1, 19, 1, 1, 'Profile Approved', 'Your Profile has been approved', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Congratulations! {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Your profile is verified by administrator.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">You can now login <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a></p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 20, 1, 1, 'Quote Cancelled | Retailer', 'Quote Cancelled: {QUOTE_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quote ID</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUOTEID}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Brand Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{BRAND}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO QUOTE</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 21, 1, 1, 'Quote Cancelled | Brand', 'Quote Cancelled: {QUOTE_ID}', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">{TITLE}</h2>\n </div>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"max-width: 600px;margin: 0 auto;\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Quote ID</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{QUOTEID}</p>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"font-size: 0;vertical-align: top;background-color: #ffffff;\">\n <div style=\"display: inline-block;vertical-align: top;width: 30%;\">\n <div style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #82899a;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <h4 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 18px;line-height: 23px;\">Cutomer Name</h4>\n </div>\n </div>\n\n <div style=\"display: inline-block;vertical-align: top;width: 70%;\">\n <div class=\"o_hide-xs\" style=\"font-size: 16px; line-height: 16px; height: 16px;\">&nbsp;</div>\n\n <div class=\"o_px-xs o_sans o_text o_text-secondary o_right o_xs-center\" data-color=\"Secondary\" data-max=\"20\" data-min=\"12\" data-size=\"Text Default\" style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;color: #424651;text-align: left;padding-left: 8px;padding-right: 8px;\">\n <p class=\"o_mb-xxs\" style=\"margin-top: 0px;margin-bottom: 4px;\">{CUSTOMER}</p>\n </div>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 4px;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">GO TO QUOTE</a></td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 22, 1, 1, 'Requested Quotes', 'Requested Quotes', '{QUOTE_DETAILS}', '1', '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL), (1, 23, 1, 1, 'Unread Messages', 'Unread Messages', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">{MESSAGE}</div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2022-11-10 07:52:00', '2022-11-10 07:52:00', NULL); INSERT INTO `email_template` (`isActive`, `id`, `headerId`, `footerId`, `title`, `subject`, `body`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 24, 1, 1, 'Upgraded Subscription | Brand', 'Upgraded Subscription', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 25, 1, 1, 'Downgraded Subscription | Brand', 'Downgraded Subscription', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\'; font-weight: bold;margin-top: 0px; margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Welcome {NAME}</h2>\r\n <!-- <p style=\"margin-top: 0px;margin-bottom: 0px;\">That thus much less heron other hello</p> --></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; max-width: 584px; color: #424651; text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Thank you for signing up to become a member of our online marketplace. you have one last step to discover amazing brands.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Start <a href=\"{LINK}\" style=\"text-decoration: underline;\">here</a> and sign in!</p>\r\n <!--<p style=\"margin-top: 0px;margin-bottom: 0px;\">We look forward to welcoming you.</p>--></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2021-02-01 01:27:51', '2022-03-10 07:03:58', NULL), (1, 26, 1, 1, 'Mention in a post | User', 'Tagged in a Post: Let\'s Check It Out!', '<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:20px;padding-bottom:0px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 19px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;\">\r\n <h2 style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 4px;color: #242b3d;font-size: 30px;line-height: 39px;\">Tagged in a post! Check it out!</h2>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top: 16px;padding-bottom: 16px;\">\r\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;max-width: 584px;color: #424651;text-align: center;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">Dear <b>{NAME}</b>, You&#39;ve been tagged in a post! Take a look and see what it&#39;s all about. Don&#39;t miss out on the conversation.</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\">&nbsp;</p>\r\n\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\"><strong>{MESSAGE}</strong></p>\r\n\r\n <p style=\"margin-top: 30px;margin-bottom: 0px;\">Click the button below to join the conversion.</p>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"background-color: #ffffff;padding-left: 24px;padding-right: 24px;padding-top:18px;padding-bottom: 8px;\">\r\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;\" width=\"210\"><a href=\"{LINK}\" style=\"text-decoration: none;outline: none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;\">JOIN CONVERSION</a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>', '1', '2023-07-09 00:00:00', '2023-07-09 00:00:00', NULL); -- -------------------------------------------------------- -- -- Table structure for table `email_template_footer` -- DROP TABLE IF EXISTS `email_template_footer`; CREATE TABLE IF NOT EXISTS `email_template_footer` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` text, `status` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_template_footer` -- INSERT INTO `email_template_footer` (`isActive`, `id`, `title`, `description`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Footer 1', '<!--footer-->\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td style=\"font-size: 48px;line-height: 20px;height: 20px;background-color: #ffffff;\">&nbsp;</td>\n </tr>\n </tbody>\n</table>\n\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\" style=\"background-color: #f2f2f2;padding-left: 16px;padding-right: 16px;padding-bottom: 23px;\">\n <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody>\n <tr>\n <td align=\"center\">\n <div style=\"font-size: 32px; line-height: 32px; height: 32px;\">&nbsp;</div>\n\n <div style=\"font-family: Arial, sans-serif, \'Open Sans\';margin-top: 9px;margin-bottom: 14px;font-size: 14px;line-height: 21px;color:#333;padding-left: 8px;padding-right: 8px;\">\n <p style=\"margin-top: 0px;margin-bottom: 8px;width: 100%;\">&copy; {COPYRIGHTYEAR} GMX. All Rights Reserved.</p>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\">\n\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table>\n<!--footer-->', 1, '2022-05-10 00:00:00', '2022-05-10 00:00:00', NULL); -- -------------------------------------------------------- -- -- Table structure for table `email_template_header` -- DROP TABLE IF EXISTS `email_template_header`; CREATE TABLE IF NOT EXISTS `email_template_header` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `description` text, `status` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `email_template_header` -- INSERT INTO `email_template_header` (`isActive`, `id`, `title`, `description`, `status`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Header 1', '<title></title>\r\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans\" rel=\"stylesheet\" type=\"text/css\" />\r\n<style media=\"screen\" type=\"text/css\">[style*=\'Open Sans\'] {\r\n font-family: \'Open Sans\', Arial, sans-serif !important\r\n }\r\n</style>\r\n<div>\r\n<div><!--header-->\r\n<div>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td align=\"center\" style=\"font-family: Arial, sans-serif, \'Open Sans\'; margin-top: 0px; margin-bottom: 0px; font-size: 14px; line-height: 24px; background-color:#f2f2f2; padding: 8px;\">\r\n <p style=\"margin-top: 0px;margin-bottom: 0px;\"><a href=\"{BASE_URL}\" style=\"text-decoration: none;outline: none;color: #ffffff;\"><img alt=\"GMX\" src=\"https://assets.greenmarketexchange.com/settings/main-logo.png\" style=\"max-width:240px;-ms-interpolation-mode: bicubic;vertical-align: middle;border: 0;line-height: 100%; outline: none;text-decoration: none;\" /></a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>', 1, '2022-05-10 00:00:00', '2022-11-04 12:13:11', NULL); -- -------------------------------------------------------- -- -- Table structure for table `followers` -- DROP TABLE IF EXISTS `followers`; CREATE TABLE IF NOT EXISTS `followers` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `followingId` int DEFAULT NULL, `followerId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `followingId` (`followingId`), KEY `followerId` (`followerId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `followers` -- INSERT INTO `followers` (`isActive`, `id`, `followingId`, `followerId`, `createdAt`, `updatedAt`) VALUES (0, 1, 19, 1, '2023-03-05 17:56:57', '2023-03-05 17:57:18'), (1, 2, 9, 8, '2023-06-19 03:04:33', '2023-06-19 03:04:33'); -- -------------------------------------------------------- -- -- Table structure for table `likes` -- DROP TABLE IF EXISTS `likes`; CREATE TABLE IF NOT EXISTS `likes` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `postId` (`postId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `med_rec` -- DROP TABLE IF EXISTS `med_rec`; CREATE TABLE IF NOT EXISTS `med_rec` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- -- Dumping data for table `med_rec` -- INSERT INTO `med_rec` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Medical', '2023-07-16 12:05:52', '2023-07-16 12:05:52', NULL), (1, 2, 'Recreational', '2023-07-16 12:05:52', '2023-07-16 12:05:52', NULL), (1, 3, 'Medical and Recreational', '2023-07-16 12:07:43', '2023-07-16 12:07:43', '2023-08-03 21:35:50'); -- -------------------------------------------------------- -- -- Table structure for table `messages` -- DROP TABLE IF EXISTS `messages`; CREATE TABLE IF NOT EXISTS `messages` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `fromId` int DEFAULT NULL, `toId` int DEFAULT NULL, `message` text, `attachment` enum('1','2') DEFAULT NULL COMMENT '1 for yes,2 for no', `fileType` varchar(255) DEFAULT NULL, `fileSize` varchar(255) DEFAULT NULL, `readStatus` enum('1','2') DEFAULT NULL COMMENT '1 for read, 2 for unread', `mailSend` enum('1','2') DEFAULT '2' COMMENT '1 for send, 2 for pending', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `fromId` (`fromId`), KEY `toId` (`toId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; CREATE TABLE IF NOT EXISTS `migrations` ( `id` int UNSIGNED NOT NULL AUTO_INCREMENT, `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; CREATE TABLE IF NOT EXISTS `orders` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `brandId` int DEFAULT NULL, `retailerId` int DEFAULT NULL, `orderId` varchar(255) DEFAULT NULL, `totalProducts` int DEFAULT NULL, `manifest` varchar(255) DEFAULT NULL, `driverId` int DEFAULT NULL, `deliveryDate` datetime DEFAULT NULL, `paymentDue` datetime DEFAULT NULL, `total` float(10,2) DEFAULT NULL, `declineReason` text, `declinedBy` int DEFAULT NULL, `declinedAt` datetime DEFAULT NULL, `status` enum('1','2','3','4','5') DEFAULT NULL COMMENT '1 for Requested, 2 for Confirmed, 3 for Declined, 4 for Completed, 5 for Reviewed', `paymentStatus` enum('1','2') DEFAULT NULL COMMENT '1 for Paid, 2 for Unpaid', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, `productId` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `brandId` (`brandId`), KEY `retailerId` (`retailerId`), KEY `driverId` (`driverId`), KEY `productId` (`productId`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `orders` -- INSERT INTO `orders` (`isActive`, `id`, `brandId`, `retailerId`, `orderId`, `totalProducts`, `manifest`, `driverId`, `deliveryDate`, `paymentDue`, `total`, `declineReason`, `declinedBy`, `declinedAt`, `status`, `paymentStatus`, `createdAt`, `updatedAt`, `deletedAt`, `productId`) VALUES (1, 1, 2, 1, 'ORD00000001', 2, NULL, NULL, NULL, NULL, 646.00, 'ssdsd', 2, '2023-08-27 05:39:15', '3', '2', '2023-08-27 05:23:21', '2023-08-27 05:39:15', NULL, NULL), (1, 2, 2, 1, 'ORD00000002', 1, NULL, 1, '2023-08-29 00:00:00', '2023-08-31 00:00:00', 101.00, NULL, NULL, NULL, '4', '1', '2023-08-27 05:23:32', '2023-08-27 05:48:37', NULL, NULL), (1, 3, 2, 1, 'ORD00000003', 1, NULL, 1, '2023-08-30 00:00:00', '2023-08-31 00:00:00', 606.00, NULL, NULL, NULL, '4', '1', '2023-08-27 05:47:37', '2023-08-27 05:48:35', NULL, NULL), (1, 4, 2, 1, 'ORD00000004', 1, NULL, NULL, NULL, NULL, 2180.00, 'test', 2, '2023-08-27 05:49:45', '3', '2', '2023-08-27 05:49:28', '2023-08-27 05:49:45', NULL, NULL), (1, 5, 2, 1, 'ORD00000005', 1, NULL, 1, '2023-08-30 00:00:00', '2023-08-31 00:00:00', 101.00, NULL, NULL, NULL, '4', '1', '2023-08-27 06:07:58', '2023-08-27 06:15:27', NULL, NULL), (1, 6, 2, 1, 'ORD00000006', 1, '123456', 2, '2023-08-30 00:00:00', '2023-08-31 00:00:00', 2180.00, NULL, NULL, NULL, '4', '1', '2023-08-27 06:58:52', '2023-08-27 07:02:44', NULL, NULL), (1, 7, 2, 1, 'ORD00000007', 2, '125488', 2, '2023-08-31 00:00:00', '2023-09-28 00:00:00', 646.00, NULL, NULL, NULL, '4', '2', '2023-08-27 10:00:03', '2023-08-27 11:21:25', NULL, NULL), (1, 8, 2, 1, 'ORD00000008', 2, NULL, NULL, NULL, NULL, 646.00, NULL, NULL, NULL, '1', '2', '2023-08-27 12:07:58', '2023-08-27 12:07:58', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `order_items` -- DROP TABLE IF EXISTS `order_items`; CREATE TABLE IF NOT EXISTS `order_items` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `orderId` int DEFAULT NULL, `productId` int DEFAULT NULL, `categoryId` int DEFAULT NULL, `unitPerPackage` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `quantity` int DEFAULT NULL, `total` float(10,2) DEFAULT NULL, `discountId` int DEFAULT NULL, `discountName` varchar(255) DEFAULT NULL, `discountPromoCode` varchar(255) DEFAULT NULL, `discountAmount` float(10,2) DEFAULT NULL, `finalTotal` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `orderId` (`orderId`), KEY `productId` (`productId`), KEY `categoryId` (`categoryId`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `order_items` -- INSERT INTO `order_items` (`isActive`, `id`, `orderId`, `productId`, `categoryId`, `unitPerPackage`, `price`, `quantity`, `total`, `discountId`, `discountName`, `discountPromoCode`, `discountAmount`, `finalTotal`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 2, 1, 46541, 101.00, 1, 101.00, NULL, NULL, NULL, NULL, 101.00, '2023-08-27 05:23:21', '2023-08-27 05:23:21', NULL), (1, 2, 1, 1, 1, 555, 545.00, 1, 545.00, NULL, NULL, NULL, NULL, 545.00, '2023-08-27 05:23:21', '2023-08-27 05:23:21', NULL), (1, 3, 2, 2, 1, 46541, 101.00, 1, 101.00, NULL, NULL, NULL, NULL, 101.00, '2023-08-27 05:23:32', '2023-08-27 05:23:32', NULL), (1, 4, 3, 2, 1, 46541, 101.00, 6, 606.00, NULL, NULL, NULL, NULL, 606.00, '2023-08-27 05:47:37', '2023-08-27 05:47:37', NULL), (1, 5, 4, 1, 1, 555, 545.00, 4, 2180.00, NULL, NULL, NULL, NULL, 2180.00, '2023-08-27 05:49:28', '2023-08-27 05:49:28', NULL), (1, 6, 5, 2, 1, 46541, 101.00, 1, 101.00, NULL, NULL, NULL, NULL, 101.00, '2023-08-27 06:07:58', '2023-08-27 06:07:58', NULL), (1, 7, 6, 1, 1, 555, 545.00, 4, 2180.00, NULL, NULL, NULL, NULL, 2180.00, '2023-08-27 06:58:52', '2023-08-27 06:58:52', NULL), (1, 8, 7, 2, 1, 46541, 101.00, 1, 101.00, NULL, NULL, NULL, NULL, 101.00, '2023-08-27 10:00:03', '2023-08-27 10:00:03', NULL), (1, 9, 7, 1, 1, 555, 545.00, 1, 545.00, NULL, NULL, NULL, NULL, 545.00, '2023-08-27 10:00:03', '2023-08-27 10:00:03', NULL), (1, 10, 8, 1, 1, 555, 545.00, 1, 545.00, NULL, NULL, NULL, NULL, 545.00, '2023-08-27 12:07:58', '2023-08-27 12:07:58', NULL), (1, 11, 8, 2, 1, 46541, 101.00, 1, 101.00, NULL, NULL, NULL, NULL, 101.00, '2023-08-27 12:07:58', '2023-08-27 12:07:58', NULL); -- -------------------------------------------------------- -- -- Table structure for table `plans` -- DROP TABLE IF EXISTS `plans`; CREATE TABLE IF NOT EXISTS `plans` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `price` float DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; -- -- Dumping data for table `plans` -- INSERT INTO `plans` (`isActive`, `id`, `title`, `slug`, `price`, `description`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Standard', 'standard', 0, 'Display and list your Products as a Brand', '2022-05-05 18:21:40', '2022-12-07 16:42:26', NULL), (1, 2, 'Marketplace', 'marketplace', 99, 'Display and list your Products as a Brand', '2022-06-29 12:11:53', '2022-07-04 15:01:36', NULL); -- -------------------------------------------------------- -- -- Table structure for table `posts` -- DROP TABLE IF EXISTS `posts`; CREATE TABLE IF NOT EXISTS `posts` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `type` enum('1','2') DEFAULT '1' COMMENT '1 for post, 2 for repost', `repostId` int DEFAULT NULL, `post` text, `postUniqueId` varchar(255) DEFAULT NULL, `likeCount` int NOT NULL DEFAULT '0', `repostCount` int NOT NULL DEFAULT '0', `commentCount` int NOT NULL DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `postUniqueId` (`postUniqueId`), KEY `userId` (`userId`), KEY `repostId` (`repostId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`isActive`, `id`, `userId`, `type`, `repostId`, `post`, `postUniqueId`, `likeCount`, `repostCount`, `commentCount`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 12, '1', NULL, 'Hello THis is test post', 'ljvduxbb68wh67n4djr', 0, 0, 0, '2023-07-09 12:00:39', '2023-07-09 12:00:39', NULL), (1, 2, 20, '1', NULL, 'Hello @gmxtest this is test post', 'ljynofc1831q6gn9v0n', 0, 0, 1, '2023-07-11 18:58:51', '2023-07-11 18:59:25', NULL); -- -------------------------------------------------------- -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; CREATE TABLE IF NOT EXISTS `products` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `categoryId` int DEFAULT NULL, `subCategoryId` int DEFAULT NULL, `medRecId` int DEFAULT NULL, `unitWeight` float(10,2) DEFAULT NULL, `unitPerPackage` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `packagesInStock` int DEFAULT NULL, `isShowStock` tinyint(1) DEFAULT '0', `strainId` int DEFAULT NULL, `dominant` varchar(255) DEFAULT NULL, `harvested` datetime DEFAULT NULL, `thc` float(10,2) DEFAULT NULL, `flavor` varchar(255) DEFAULT NULL, `description` text, `labResultsPath` varchar(255) DEFAULT NULL, `avgProductRating` float(10,2) DEFAULT '0.00', `reviewsProductCount` int DEFAULT '0', `productVisibility` enum('1','2') DEFAULT '1' COMMENT '1 for show, 2 for hidden', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), KEY `userId` (`userId`), KEY `brandId` (`brandId`), KEY `categoryId` (`categoryId`), KEY `subCategoryId` (`subCategoryId`), KEY `medRecId` (`medRecId`), KEY `strainId` (`strainId`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `products` -- INSERT INTO `products` (`isActive`, `id`, `userId`, `brandId`, `title`, `slug`, `categoryId`, `subCategoryId`, `medRecId`, `unitWeight`, `unitPerPackage`, `price`, `packagesInStock`, `isShowStock`, `strainId`, `dominant`, `harvested`, `thc`, `flavor`, `description`, `labResultsPath`, `avgProductRating`, `reviewsProductCount`, `productVisibility`, `createdAt`, `updatedAt`) VALUES (1, 1, 12, 2, 'Test 01', 'test-01', 1, 1, 2, 145.00, 555, 545.00, 9999, 1, NULL, '', '0000-00-00 00:00:00', 52.00, '', '', NULL, 0.00, 0, '1', '2023-08-12 15:56:52', '2023-08-14 13:19:13'), (1, 2, 12, 2, 'Test 021', 'test-02', 1, 1, 2, 47.00, 46541, 101.00, 1001, 1, 2, 'ghgh', '2023-08-11 00:00:00', 5.00, 'Apple', 'Test desc', '/products/product-lab-results9422abf6-2964-4621-8c60-7d2e12400ad0.pdf', 0.00, 0, '1', '2023-08-12 15:58:33', '2023-08-14 15:44:30'), (1, 3, 16, 4, 'Wookies', 'wookies', 3, 2, 2, 3.50, -2, 50.00, 150, 1, 2, 'ghgh', '2023-08-09 00:00:00', 0.98, 'Apple', 'Cookies is a cannabis strain created through a three-way combination of the potent OG Kush, Durban Poison and Cherry Kush. Don’t mistake this strain for the infamous GSC, as some do. This strain is different. It\'s an Indica-dominant hybrid and its effects can be helpful for a variety of discomforts, according to its reviewers. Some have used Cookies to help increase appetite as well as to reduce stress, anxiety, feelings of depression, nausea, and even chronic pain.\r\n\r\nTHC percentage levels of Cookies often fall around the mid-20’s, give or take, depending on cultivation and curing techniques used. Its cured buds tend to be quite dense and shaped like anchors, with deep violet hues scattered over its flowers and bronze pistils poking out.\r\n\r\nScent and flavor-wise, Cookies can be reminiscent of baked, nutty confections with a hint of cherries. Vanilla and spice tend to be present in its scent but less-so in its flavor.', NULL, 0.00, 0, '1', '2023-08-14 16:27:21', '2023-08-14 16:27:21'); -- -------------------------------------------------------- -- -- Table structure for table `product_favourite` -- DROP TABLE IF EXISTS `product_favourite`; CREATE TABLE IF NOT EXISTS `product_favourite` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `productId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `productId` (`productId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `product_images` -- DROP TABLE IF EXISTS `product_images`; CREATE TABLE IF NOT EXISTS `product_images` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `image` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `product_images` -- INSERT INTO `product_images` (`isActive`, `id`, `productId`, `image`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 2, '/products/product-73972e7b-a2b4-4ffb-9002-ab321d77c275.jpg', '2023-08-12 15:58:33', '2023-08-12 15:58:33', NULL), (1, 2, 3, '/products/product-5cbdc69a-cca4-496f-bb9c-bcc473a2d38c.webp', '2023-08-14 16:27:21', '2023-08-14 16:27:21', NULL); -- -------------------------------------------------------- -- -- Table structure for table `product_price_history` -- DROP TABLE IF EXISTS `product_price_history`; CREATE TABLE IF NOT EXISTS `product_price_history` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `price` float(10,2) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `reposts` -- DROP TABLE IF EXISTS `reposts`; CREATE TABLE IF NOT EXISTS `reposts` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `postId` int DEFAULT NULL, `repostId` int DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `postId` (`postId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `retailer_details` -- DROP TABLE IF EXISTS `retailer_details`; CREATE TABLE IF NOT EXISTS `retailer_details` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `website` varchar(255) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `retailer_details` -- INSERT INTO `retailer_details` (`isActive`, `id`, `userId`, `slug`, `website`, `address`, `createdAt`, `updatedAt`) VALUES (1, 1, 1, 'top-builder', 'https://abc.com', 'Sunshine Skyway Bridge, Sunshine Skyway Ln S, St. Petersburg, FL, USA', '2023-02-22 22:00:25', '2023-08-27 17:23:10'), (1, 2, 9, 'gmx-test', 'https://www.greenmarketexchange.com/', NULL, '2023-02-22 22:00:25', '2023-02-22 22:00:25'), (1, 3, 14, 'top-mail', 'https://abctop.com', NULL, '2023-02-22 16:37:56', '2023-02-22 16:37:56'), (1, 4, 15, 'lalit22022023ssdf', NULL, NULL, '2023-02-22 17:02:17', '2023-02-22 17:02:17'), (1, 5, 21, 'louis-retailer', NULL, NULL, '2023-07-11 19:03:59', '2023-07-11 19:03:59'), (1, 6, 27, 'sdsdsd', NULL, NULL, '2023-07-16 17:52:40', '2023-07-16 17:52:40'), (1, 7, 30, 'retailer-top-builder', 'https://topbuilderretailer.com', NULL, '2023-07-24 16:03:08', '2023-07-24 16:03:08'), (1, 8, 31, 'retailer-top-buildersddf', 'https://topbuilddferretailer.com', 'Sun Valley, ID, USA', '2023-07-24 16:09:51', '2023-07-24 16:09:51'), (1, 9, 32, 'dghghj', 'https://absdsdc.com', 'Revival Cafe+Kitchen, Elm Street, Somerville, MA, USA', '2023-07-24 16:22:46', '2023-07-24 16:54:26'), (1, 10, 33, 'sdsdsdjkj', NULL, 'Sunside Trailhead, Center Street East, Warren, OH, USA', '2023-07-24 16:56:22', '2023-07-24 16:56:22'), (1, 11, 35, 'sdfdfdf', NULL, 'Sunset Boulevard, Los Angeles, CA, USA', '2023-08-03 16:20:37', '2023-08-03 16:20:37'); -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- DROP TABLE IF EXISTS `reviews`; CREATE TABLE IF NOT EXISTS `reviews` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `productId` int DEFAULT NULL, `brandId` int DEFAULT NULL, `retailerId` int DEFAULT NULL, `type` enum('1','2','3') DEFAULT NULL COMMENT '1 for product, 2 for delivery on time, 3 for general', `ratings` float(10,2) DEFAULT NULL, `description` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `productId` (`productId`), KEY `brandId` (`brandId`), KEY `retailerId` (`retailerId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; CREATE TABLE IF NOT EXISTS `settings` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; -- -- Dumping data for table `settings` -- INSERT INTO `settings` (`isActive`, `id`, `name`, `description`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'info_email', 'info@greenmarketexchange.com', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 2, 'contact_number', '2076913707', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 3, 'site_address', 'https://greenmarketexchange.com/', '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 4, 'facebook_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 5, 'instagram_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 6, 'twitter_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 7, 'linkedin_link', NULL, '2022-04-13 01:44:31', '2022-12-13 02:52:51', NULL), (1, 8, 'logo', '/settings/main-logo.png', '2022-04-13 01:44:31', '2022-04-15 11:03:53', NULL), (1, 9, 'footerlogo', '/settings/main-logo.png', '2022-04-13 01:49:30', '2022-04-15 10:23:42', NULL), (1, 10, 'stripe_secret_key', 'sk_test_51M6k0gBMOPRi3AfhyM851Ahh1167JDjXxNmbPNOUSccvUNW2gvR17C5Yg5GirtAKW6fuYP2K3yTxDTootYoMxJwU00qQOTO0Ki', '2022-04-13 01:49:30', '2022-04-15 10:23:42', NULL), (1, 11, 'recaptcha_key', '6LeKEMYZAAAAABD7r-Ps_GU1Rgv625D-ZizmxyRh', '2022-06-02 09:35:32', '2022-06-02 09:35:32', NULL), (1, 12, 'site_name', NULL, '2022-07-08 09:52:41', '2022-12-13 02:52:51', NULL), (1, 13, 'minlogo', '/settings/min-logo.svg', '2022-04-13 01:44:31', '2022-04-15 11:03:53', NULL); -- -------------------------------------------------------- -- -- Table structure for table `state` -- DROP TABLE IF EXISTS `state`; CREATE TABLE IF NOT EXISTS `state` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; -- -- Dumping data for table `state` -- INSERT INTO `state` (`isActive`, `id`, `name`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Alabama', '0000-00-00 00:00:00', '2022-12-07 16:41:20', '2022-12-07 16:41:20'), (1, 2, 'New York', '0000-00-00 00:00:00', '2022-12-07 16:41:24', '2022-12-07 16:41:24'), (1, 3, 'Florida', '0000-00-00 00:00:00', '2022-12-07 16:41:16', '2022-12-07 16:41:16'), (1, 4, 'Maine', '2022-07-24 20:50:39', '2022-12-07 16:41:28', '2022-12-07 16:41:28'), (1, 5, 'Massachusetts', '2022-09-26 21:04:18', '2022-09-26 21:04:35', NULL); -- -------------------------------------------------------- -- -- Table structure for table `strains` -- DROP TABLE IF EXISTS `strains`; CREATE TABLE IF NOT EXISTS `strains` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; -- -- Dumping data for table `strains` -- INSERT INTO `strains` (`isActive`, `id`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 'Indica dominant', '2022-05-02 00:00:00', '2023-03-22 13:02:14', NULL), (1, 2, 'Sativa dominant', '2022-05-04 00:00:00', '2023-03-22 13:02:23', NULL), (1, 3, 'Hybrid', '2022-05-04 00:00:00', '2022-05-04 00:00:00', '1900-01-03 00:00:00'), (1, 4, NULL, '2022-06-24 07:59:24', '2022-06-24 07:59:28', '2022-06-24 07:59:28'), (1, 5, 'Hyrbid', '2022-10-26 23:49:52', '2022-10-26 23:49:52', NULL); -- -------------------------------------------------------- -- -- Table structure for table `sub_categories` -- DROP TABLE IF EXISTS `sub_categories`; CREATE TABLE IF NOT EXISTS `sub_categories` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `categoryId` int DEFAULT NULL, `title` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `sub_categories` -- INSERT INTO `sub_categories` (`isActive`, `id`, `categoryId`, `title`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 1, 'Sub Badder/Butter', '2023-07-22 16:15:42', '2023-07-22 16:15:42', NULL), (1, 2, 3, 'sub Crystalline', '2023-07-22 16:16:11', '2023-07-22 16:16:11', NULL), (1, 3, 3, 'sub test', '2023-07-22 16:16:11', '2023-07-22 16:16:11', NULL); -- -------------------------------------------------------- -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; CREATE TABLE IF NOT EXISTS `users` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `isApproved` enum('1','2') DEFAULT '1' COMMENT '1 for approved, 2 for unapproved', `role` enum('1','2','3') DEFAULT NULL COMMENT '1 for admin, 2 for brand, 3 for retailer', `name` varchar(255) DEFAULT NULL, `businessName` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `stateId` int DEFAULT NULL, `zipCode` int DEFAULT NULL, `phoneNumber` varchar(255) DEFAULT NULL, `licenseNumber` varchar(255) DEFAULT NULL, `medRecId` int DEFAULT NULL, `expirationDate` datetime DEFAULT NULL, `profilePath` varchar(255) DEFAULT NULL, `medRecCertificatePath` varchar(255) DEFAULT NULL, `medCertificatePath` varchar(255) DEFAULT NULL, `recCertificatePath` varchar(255) DEFAULT NULL, `planId` int DEFAULT NULL, `planExpiryDate` datetime DEFAULT NULL, `subscriptionId` int DEFAULT NULL, `verification_token` varchar(255) DEFAULT NULL, `followersCount` int NOT NULL DEFAULT '0', `followingsCount` int NOT NULL DEFAULT '0', `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), UNIQUE KEY `email` (`email`), KEY `stateId` (`stateId`), KEY `medRecId` (`medRecId`), KEY `planId` (`planId`) ) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`isActive`, `id`, `isApproved`, `role`, `name`, `businessName`, `slug`, `email`, `password`, `stateId`, `zipCode`, `phoneNumber`, `licenseNumber`, `medRecId`, `expirationDate`, `profilePath`, `medRecCertificatePath`, `medCertificatePath`, `recCertificatePath`, `planId`, `planExpiryDate`, `subscriptionId`, `verification_token`, `followersCount`, `followingsCount`, `createdAt`, `updatedAt`) VALUES (1, 1, '1', '3', 'Top Builder', 'Top Builder', 'topbuilder', 'lalit@malinator.com', '$2a$10$auHh3SvUN.Hqp7YTEnjGUuwvLSF/sgtEy0sRj7cfr7tvn/jyuPavq', 5, 47605, '717', '543', 2, '2023-03-29 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-9e9e6d45-1f87-4401-adf7-77216678cacc.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2022-12-19 07:20:47', '2023-08-27 17:23:10'), (1, 8, '1', '2', 'Nectr', 'Nectr', 'gmx', 'straka26@icloud.com', '$2a$10$rymNukpxNqjVxknuBYhp8e0q6RCX921me7BZ7lIIwVThVpYz7CbAm', 5, 40909, '2076913707', 'AMS1242', 2, '2023-02-03 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-f1a74103-7b08-4aa6-a753-aebd71273dbe.png', NULL, NULL, 1, '2023-02-18 00:00:00', 81, NULL, 0, 1, '2022-12-20 00:54:23', '2023-06-19 03:04:33'), (1, 9, '1', '3', 'GMX test', 'GMX test', 'gmxtest', 'christian.j.straka@gmail.com', '$2a$10$xfl9.tO.fk015oOgYswRNuB5BxrVkatqAUvbQwMolMTDfTLBtK1oi', 5, 40920, '2076913707', '45454', 2, '2022-12-27 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-bc8f1995-7737-47b7-a758-b3032bd11346.png', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, '2022-12-20 01:05:16', '2023-06-19 03:04:33'), (1, 12, '1', '2', 'Smit', 'Smitsd', 'topbuildera', 'smit@mailinator.com', '$2a$10$auHh3SvUN.Hqp7YTEnjGUuwvLSF/sgtEy0sRj7cfr7tvn/jyuPavq', 5, 54545, '123456000', '45645456', 2, '2023-06-15 00:00:00', '/profile/profile-336d7d00-e57b-4d2e-a1e7-644560ff44ae.png', '/documents/license-83135f12-d7a6-4c4c-a941-5af26434a940.pdf', '', '', 1, '2023-02-18 00:00:00', 80, '$2a$10$cdep2GGd1foFvsb3wTjUIe9oITGzL7qebjzVXg7MKg4c/FYsOxaPm', 0, 0, '2022-12-20 07:55:55', '2023-08-12 14:37:31'), (1, 13, '2', '2', 'christian', 'Test 2', 'test2', 'cstraka.gmx@gmail.com', '$2a$10$GJxSZr5q6nGifuBHHAUJvOre1DNK/eLvw7/JKBN7nDtDtH03c4/CO', 5, 4092, '2076913707', '123456', 2, '2022-12-30 00:00:00', NULL, '/documents/license-8b4fca8a-69e4-4f39-bee3-4d07cce39328.png', NULL, NULL, 1, '2023-02-18 00:00:00', 82, NULL, 0, 0, '2022-12-21 02:53:45', '2023-02-18 12:37:56'), (1, 14, '1', '3', 'Lalit 22022023', 'Top Mail', 'topmail', 'Lalit22022023@mailinator.com', '$2a$10$cxDjH2u.sc0r66d5av1mRe2PP8WETbGeFPNMuK9qcaQOR.mS4T0M6', 5, 54564, '123456789', '545454', 2, '2023-02-22 00:00:00', NULL, '/documents/license-21c07a5d-38f4-4327-924a-3f58d2855dd5.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-02-22 16:37:56', '2023-02-22 16:37:56'), (1, 15, '2', '3', 'Lalit 22022023 ssdf', 'Lalit22022023ssdf', 'lalit22022023ssdf', 'Lalit22022023ssdf@mailinator.com', '$2a$10$SgyrgPtYkSOss08fx/cbRez2Pb3JkFwIYUFoZ9IY5ibhNLz/PS1LS', 5, 56464, '12345600886', '6564545', 2, '2023-02-22 00:00:00', NULL, '/documents/license-9cb5e762-08b7-4f80-98a4-131d7619dd7d.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-02-22 17:02:17', '2023-02-22 17:02:17'), (1, 16, '1', '2', 'John Test', 'Top Builder John', 'topbuilderjohn', 'john@mailinator.com', '$2a$10$ba3XS3RE.boUnLaX3JAzGewBOivyCSd.GjMXw78ky8/4zjAgbxf4e', 5, 12345, '1234567890', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-5496c8e8-4d87-4fd0-b914-71fde46e6853.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, '2023-02-26 16:47:04', '2023-02-26 16:49:26'), (1, 17, '1', '2', 'John Branddsdsd', 'Hogn Top John', 'hogntopjohn', 'john1@mailinator.com', '$2a$10$r6qlrSDegdcBv.X2t4V3TemLtMzxKxv/1oQJ4SohTDmNwG3Nqxl0y', 5, 54455, '1234567890', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-fb740068-3dda-459e-a424-9ffd90f5ee52.pdf', NULL, NULL, 2, '2023-03-26 00:00:00', 87, NULL, 0, 0, '2023-02-26 16:55:41', '2023-03-26 17:00:13'), (1, 18, '1', '2', 'John Brand', 'John', 'john2', 'john2@mailinator.com', '$2a$10$1Vu0/2WOiQgOs2r7bNtBH.dXp1DPL.ollrOst9JItxL1oJ1Qr.r22', 5, 12345, '124564800', '12454554', 2, '2023-02-28 00:00:00', NULL, '/documents/license-4a50ec78-c00b-4a95-8ae1-164a4466608e.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, '2023-02-26 17:02:17', '2023-02-26 17:04:55'), (1, 19, '1', '2', 'PrakashB', 'PrakashB', 'prakashb', 'prakash@vintomaper.com', '$2a$10$4sIZ.x8K/tqLjnbe4Y7wzu7DAKLRoLCipluAHkuk3FVg1xi7StwAm', 5, 38002, '88666844441', '123456', 2, '2023-08-31 00:00:00', '/profile/profile-a2f6600f-0d53-4350-bcb8-e14302a473ab.jpg', '/documents/license-80bf2619-a2c6-4173-8538-e493e4a5b64c.pdf', NULL, NULL, 1, '2023-03-28 00:00:00', 86, NULL, 0, 0, '2023-02-28 08:18:33', '2023-05-17 16:12:05'), (1, 20, '1', '2', 'Louis Bland', 'Louis Builder', 'louisbuilder', 'louisbland@mailinator.com', '$2a$10$NJmql4oixFM8Ab2eYkMnLu09/pe1srwEGsMH/HBIsF5zHqC67SIii', 5, 54545, '12345648900', '123545654', 2, '2034-09-14 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-2a7b6712-78cc-427b-a0d3-ebcc30f6b115.png', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, '2023-07-11 18:44:46', '2023-07-11 18:52:15'), (1, 21, '1', '3', 'Louis Mailinator', 'Louis Retailer', 'louis-retailer', 'louisretailer@mailinator.com', '$2a$10$aiePEUyNR9bd56gzsyqoTOin/b/qMaR4gs.MdJ.bQXL31jkpJPaPK', 5, 87875, '1234560844', '58454564', 6, '2029-09-27 00:00:00', '/profile/no-profile-image.jpg', '/documents/license-8749e057-b996-48db-bc5b-d9a70eb1a536.png', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-07-11 19:03:59', '2023-07-11 19:09:18'), (1, 22, '2', '2', 'fgdfd', 'ssdsd', 'ssdsd', 'dfdfgdfg@fdf.df', '$2a$10$EshE/rPpBQMolNdPss/i.em3WqlNyxfsR5Ebp5rfCl8cvDrVi3ABS', 5, 54545, '454554', '4545454', 3, '2023-07-28 00:00:00', NULL, '/documents/certificate-b7dd5622-78f4-48a7-bf09-0243a17a0f5d.pdf', '/documents/med-certificate-2be4d39b-0ccf-4063-bed7-f71d4a807f3a.pdf', '/documents/rec-certificate-d81d99b9-1e64-46a4-aef4-41cb902a4db7.pdf', 1, NULL, NULL, NULL, 0, 0, '2023-07-16 17:24:49', '2023-07-16 17:24:49'), (1, 23, '2', '2', 'sdsd', 'sdjkjk', 'sdjkjk', 'sdsdsd@sdsd.sds', '$2a$10$c2R8hEx5PrpFnmeGU8A.5OkepTsTAcI7Rib/bYz4RCJ8H9U3XL.Gy', 5, 54545, '55556565', '6565454545', 3, '2023-07-28 00:00:00', NULL, NULL, '/documents/med-certificate-80808d5a-15ce-4c71-93ad-c09140ab3cfb.pdf', '/documents/rec-certificate-5f20a1b2-9c29-41d7-8428-4c9f31fc5976.pdf', 1, NULL, NULL, NULL, 0, 0, '2023-07-16 17:30:17', '2023-07-16 17:30:17'), (1, 24, '2', '2', 'sdsd', 'sdsdshgjh', 'sdsdshgjh', 'sdsdjkh@sdsd.sd', '$2a$10$UIsdFCsxil1pm6ZViGDBz.9Oddo7.xGPDrJrZRnBrtqsY2VgHnQp6', 5, 54545, '5645445', '455455', 1, '2023-07-26 00:00:00', NULL, '/documents/certificate-85c1486f-b9aa-4462-918a-15fe2ac755dc.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, '2023-07-16 17:32:23', '2023-07-16 17:32:23'), (1, 25, '2', '2', 'sdfsdf', 'sdsd', 'sdsd-2', 'sdfdsdf@sdfdf.dfdf', '$2a$10$I/.RvxhhbtI8FwN26Fa49.ENo8GMc4czq.3nnALSG6K1DztD./R02', 5, 54542, '565656', '656655', 2, '2023-07-25 00:00:00', NULL, '/documents/certificate-9cc518da-24d6-449c-b273-637bffc0d64e.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, '2023-07-16 17:34:04', '2023-07-16 17:34:04'), (1, 26, '2', '2', 'dsfsdfjk', 'sdsdjhg', 'sdsdjhg', 'jhjhgj@hjkjk.sd', '$2a$10$/2ZHx7keZ51IeRUT5fkXreuu2nlSuAsY0vMIAFaS/SSp94CoqEM8.', 5, 56552, '56565656', '6565656', 3, '2023-07-27 00:00:00', NULL, NULL, '/documents/med-certificate-8c8cd3cd-74e6-471b-88f6-7a86e11c4138.pdf', '/documents/rec-certificate-90eb2f28-bc90-4710-b9e5-cbf6623a6473.pdf', 1, NULL, NULL, NULL, 0, 0, '2023-07-16 17:35:46', '2023-07-16 17:35:46'), (1, 27, '2', '3', 'sdsd', 'sdsdsd', 'sdsdsd', 'sdsd@sdsd.sds', '$2a$10$YLgS3c2E0XWK2qW7nLcz6eQLoIAwXR34MPpTTYz7hrTvckjbANlA.', 5, 45453, '5655545', '5454545', 2, '2023-07-25 00:00:00', NULL, '/documents/license-51aeefbb-896f-483e-8578-947199729d2e.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-07-16 17:52:40', '2023-07-16 17:52:40'), (1, 28, '2', '2', 'sdsd', 'BHhjkjk', 'bhhjkjk', 'sdsd@dfdf.dfdf', '$2a$10$/5v7wJP.9MIRTO6YJvdKL.M0UhLKBF8KMgjNb2og1U3IC8ZuPXARm', 5, 55651, NULL, '5685689', 1, NULL, NULL, '/documents/certificate-35ec5ab9-f901-4078-8129-a0ed748e7fa5.pdf', NULL, NULL, 1, NULL, NULL, NULL, 0, 0, '2023-07-23 16:36:23', '2023-07-23 16:36:23'), (1, 29, '1', '2', 'dsdf', 'dfdf', 'dfdf', 'ddsfsdfsd@ddfdf.df', '$2a$10$6Frc3vrVFM3eVYJimm2EWe4NtGQLKIjGVcmP60PXSNbmIOFDcW/.m', 5, 54546, NULL, '566565', 2, NULL, '/profile/profile-16a9b282-5d75-475f-9b5b-404ab3d5f66e.jpg', NULL, '/documents/med-certificate-2510fb43-1154-4fbd-8e4d-f94451d71629.pdf', '/documents/rec-certificate-4d20167e-3eb4-42e9-97c8-f8ee219218d2.pdf', 2, '2023-08-23 00:00:00', 88, NULL, 0, 0, '2023-07-23 16:39:14', '2023-07-23 16:39:14'), (1, 30, '2', '3', 'Retailer', 'retailer top builder', 'retailer-top-builder', 'retailertopbuilder24@mailinator.com', '$2a$10$EWNxhlYcuarjQw2nHy2XwO.hi2AYfXgFMgVWnx9IQB4Q58pE6pleS', 5, 12345, '1234567890', '566565', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-07-24 16:03:08', '2023-07-24 16:03:08'), (1, 31, '2', '3', 'Retailer sds', 'retailer top buildersddf', 'retailer-top-buildersddf', 'retailertdsdssdopbuilder24@mailinator.com', '$2a$10$AYpt8g0QUlxSK13nlMvbwu.YkLkk3/6YycHmBH8XX6TKFlYwJewiC', 5, 12345, '1234567890', '566565', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-07-24 16:09:51', '2023-07-24 16:09:51'), (1, 32, '1', '3', 'Retailer sds', 'Dghghj', 'dghghj', 'test125retailer@mailinator.com', '$2a$10$XekYg5TnQXqs.mcx.EZM4OdKBgCZj1FiZBo81rVwdFWExE36bEsZi', 5, 12345, '45646465', '455676', 2, '2023-07-25 00:00:00', '/profile/profile-4e9e53a9-68a3-4abc-920e-60ae3fd7d491.jpg', '/documents/certificate-b0b2ff4b-5ff4-405e-a2ca-e6a09843d880.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-07-24 16:22:46', '2023-07-24 16:54:26'), (1, 33, '1', '3', 'aasaas', 'sdsdsdjkj', 'sdsdsdjkj', 'sasasas@sdsd.sdsdff', '$2a$10$pNV29Q2X3H8NGTtWtN.Ct.wpnq4rvJBgzQ3VF2H5sngVowAJNw1q6', 5, 12343, '5545665', '566565', 1, NULL, NULL, '/documents/certificate-3525e385-d6bd-44ea-b255-1428c19eb03f.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-07-24 16:56:22', '2023-07-24 16:56:22'), (1, 34, '1', '2', 'tesdv', 'Sd', 'sd-5', 'jkjhjh@Hjhj.sdsd', '$2a$10$ly7UH96ajjAxnpF8Hv0Piuw.dK1dEQH5/EPVNyapQOB.UKbSF0pHS', 5, 65455, '545544', '566565', 2, '2023-08-31 00:00:00', '/profile/profile-ef4afa14-385b-4c7f-ace7-02e7e7f5391f.jpg', '/documents/certificate-e898e01c-1c36-4a7e-9042-8e6bca0e2da0.pdf', '', '', 1, NULL, NULL, NULL, 0, 0, '2023-08-03 16:16:07', '2023-08-03 16:58:22'), (1, 35, '1', '3', 'SDSD', 'sdfdfdf', 'sdfdfdf', 'SDSDS@sddf.dfdf', '$2a$10$Knn3vwDoGkb8h9QF8gJnc.AOH4K5RLbPRvKU.JxZN5ABkV.Z69.0W', 5, 12345, '123450000', '1234560', 2, NULL, NULL, '/documents/certificate-ab731f90-a20f-4d62-addd-3a6bbd0e216d.pdf', NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, '2023-08-03 16:20:37', '2023-08-03 16:20:37'); -- -------------------------------------------------------- -- -- Table structure for table `user_subscription` -- DROP TABLE IF EXISTS `user_subscription`; CREATE TABLE IF NOT EXISTS `user_subscription` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `planId` int DEFAULT NULL, `customerId` varchar(255) DEFAULT NULL, `subscriptionToken` varchar(255) DEFAULT NULL, `subscriptionId` varchar(255) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `amount` varchar(255) DEFAULT NULL, `responseJson` text, `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `planCancelDate` varchar(255) DEFAULT NULL, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`), KEY `planId` (`planId`) ) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=latin1; -- -- Dumping data for table `user_subscription` -- INSERT INTO `user_subscription` (`isActive`, `id`, `userId`, `planId`, `customerId`, `subscriptionToken`, `subscriptionId`, `status`, `amount`, `responseJson`, `startDate`, `endDate`, `planCancelDate`, `createdAt`, `updatedAt`, `deletedAt`) VALUES (1, 1, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '2000', '{\"id\":\"sub_1MGu65BMOPRi3AfhiiE7qvuk\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671497661,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671497661,\"currency\":\"usd\",\"current_period_end\":1671584061,\"current_period_start\":1671497661,\"customer\":\"cus_N0vyvES8MRSn2n\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N0vyzNstIqUi3o\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671497661,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MGu65BMOPRi3AfhiiE7qvuk\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MGu65BMOPRi3AfhiiE7qvuk\"},\"latest_invoice\":\"in_1MGu65BMOPRi3Afh2ZHgqHwU\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671497661,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-19 00:00:00', '2023-01-19 00:00:00', '', '2022-12-20 00:54:23', '2022-12-20 00:54:23', NULL), (1, 2, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '2000', '{\"id\":\"sub_1MH0g1BMOPRi3AfhI9j6Mjw1\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671522953,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671522953,\"currency\":\"usd\",\"current_period_end\":1671609353,\"current_period_start\":1671522953,\"customer\":\"cus_N12lQRrHIxkkQY\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N12lfmL13lUNKn\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671522954,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MH0g1BMOPRi3AfhI9j6Mjw1\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MH0g1BMOPRi3AfhI9j6Mjw1\"},\"latest_invoice\":\"in_1MH0g1BMOPRi3AfhKQ5DBVe0\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671522953,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-20 00:00:00', '2023-01-20 00:00:00', '', '2022-12-20 07:55:55', '2022-12-20 07:55:55', NULL), (1, 3, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-20 00:00:00', '2022-12-20 00:00:00', NULL, '2022-12-21 00:57:26', '2022-12-21 00:57:26', NULL), (1, 4, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '2000', '{\"id\":\"sub_1MHIR9BMOPRi3AfhuNclK18F\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1671591223,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1671591223,\"currency\":\"usd\",\"current_period_end\":1671677623,\"current_period_start\":1671591223,\"customer\":\"cus_N1L7P5vtLWoUDD\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_N1L7fyOFFcKQs4\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1671591223,\"metadata\":{},\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"1\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"day\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MHIR9BMOPRi3AfhuNclK18F\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MHIR9BMOPRi3AfhuNclK18F\"},\"latest_invoice\":\"in_1MHIR9BMOPRi3AfhHwF9WEpI\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"1\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1669194408,\"currency\":\"usd\",\"interval\":\"day\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_MqwoGaJkVA0dm1\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1671591223,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_start\":null}', '2022-12-20 00:00:00', '2023-01-20 00:00:00', '', '2022-12-21 02:53:45', '2022-12-21 02:53:45', NULL), (1, 5, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-21 00:00:00', '2022-12-21 00:00:00', NULL, '2022-12-21 07:56:29', '2022-12-21 07:56:29', NULL), (1, 6, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-22 05:54:27', '2022-12-22 05:54:27', NULL), (1, 7, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-22 08:02:39', '2022-12-22 08:02:39', NULL), (1, 8, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-23 00:57:27', '2022-12-23 00:57:27', NULL), (1, 9, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-22 00:00:00', '2022-12-22 00:00:00', NULL, '2022-12-23 02:54:59', '2022-12-23 02:54:59', NULL), (1, 10, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-23 07:56:20', '2022-12-23 07:56:20', NULL), (1, 11, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-24 00:55:38', '2022-12-24 00:55:38', NULL), (1, 12, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-23 00:00:00', '2022-12-23 00:00:00', NULL, '2022-12-24 02:56:20', '2022-12-24 02:56:20', NULL), (1, 13, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-24 07:57:43', '2022-12-24 07:57:43', NULL), (1, 14, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-25 00:55:30', '2022-12-25 00:55:30', NULL), (1, 15, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-24 00:00:00', '2022-12-24 00:00:00', NULL, '2022-12-25 02:54:26', '2022-12-25 02:54:26', NULL), (1, 16, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-26 07:57:08', '2022-12-26 07:57:08', NULL), (1, 17, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-27 00:56:26', '2022-12-27 00:56:26', NULL), (1, 18, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-26 00:00:00', '2022-12-26 00:00:00', NULL, '2022-12-27 02:54:26', '2022-12-27 02:54:26', NULL), (1, 19, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-27 07:58:23', '2022-12-27 07:58:23', NULL), (1, 20, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-28 00:58:33', '2022-12-28 00:58:33', NULL), (1, 21, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-27 00:00:00', '2022-12-27 00:00:00', NULL, '2022-12-28 02:54:24', '2022-12-28 02:54:24', NULL), (1, 22, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-28 07:58:44', '2022-12-28 07:58:44', NULL), (1, 23, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-29 00:54:33', '2022-12-29 00:54:33', NULL), (1, 24, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-28 00:00:00', '2022-12-28 00:00:00', NULL, '2022-12-29 02:54:26', '2022-12-29 02:54:26', NULL), (1, 25, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-29 07:56:03', '2022-12-29 07:56:03', NULL), (1, 26, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-30 00:57:31', '2022-12-30 00:57:31', NULL), (1, 27, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-29 00:00:00', '2022-12-29 00:00:00', NULL, '2022-12-30 02:54:29', '2022-12-30 02:54:29', NULL), (1, 28, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-30 07:58:05', '2022-12-30 07:58:05', NULL), (1, 29, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-31 00:57:14', '2022-12-31 00:57:14', NULL), (1, 30, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-30 00:00:00', '2022-12-30 00:00:00', NULL, '2022-12-31 02:57:43', '2022-12-31 02:57:43', NULL), (1, 31, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2022-12-31 07:56:18', '2022-12-31 07:56:18', NULL), (1, 32, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2023-01-01 01:02:46', '2023-01-01 01:02:46', NULL), (1, 33, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2022-12-31 00:00:00', '2022-12-31 00:00:00', NULL, '2023-01-01 03:01:02', '2023-01-01 03:01:02', NULL), (1, 34, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-01 00:00:00', '2023-01-01 00:00:00', NULL, '2023-01-01 07:56:09', '2023-01-01 07:56:09', NULL), (1, 35, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-01 00:00:00', '2023-01-01 00:00:00', NULL, '2023-01-02 03:55:21', '2023-01-02 03:55:21', NULL), (1, 36, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-02 07:57:49', '2023-01-02 07:57:49', NULL), (1, 37, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-03 00:55:44', '2023-01-03 00:55:44', NULL), (1, 38, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-02 00:00:00', '2023-01-02 00:00:00', NULL, '2023-01-03 03:03:17', '2023-01-03 03:03:17', NULL), (1, 39, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-03 07:56:57', '2023-01-03 07:56:57', NULL), (1, 40, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-04 00:57:31', '2023-01-04 00:57:31', NULL), (1, 41, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-03 00:00:00', '2023-01-03 00:00:00', NULL, '2023-01-04 02:55:57', '2023-01-04 02:55:57', NULL), (1, 42, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-04 07:57:32', '2023-01-04 07:57:32', NULL), (1, 43, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-05 00:57:46', '2023-01-05 00:57:46', NULL), (1, 44, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-04 00:00:00', '2023-01-04 00:00:00', NULL, '2023-01-05 03:04:55', '2023-01-05 03:04:55', NULL), (1, 45, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-05 07:58:28', '2023-01-05 07:58:28', NULL), (1, 46, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-06 01:03:42', '2023-01-06 01:03:42', NULL), (1, 47, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-05 00:00:00', '2023-01-05 00:00:00', NULL, '2023-01-06 02:58:41', '2023-01-06 02:58:41', NULL), (1, 48, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-06 00:00:00', '2023-01-06 00:00:00', NULL, '2023-01-06 07:56:23', '2023-01-06 07:56:23', NULL), (1, 49, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-09 07:56:03', '2023-01-09 07:56:03', NULL), (1, 50, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-10 00:54:29', '2023-01-10 00:54:29', NULL), (1, 51, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-09 00:00:00', '2023-01-09 00:00:00', NULL, '2023-01-10 02:56:41', '2023-01-10 02:56:41', NULL), (1, 52, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-10 07:56:14', '2023-01-10 07:56:14', NULL), (1, 53, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-11 00:57:19', '2023-01-11 00:57:19', NULL), (1, 54, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-10 00:00:00', '2023-01-10 00:00:00', NULL, '2023-01-11 02:55:43', '2023-01-11 02:55:43', NULL), (1, 55, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-11 08:06:22', '2023-01-11 08:06:22', NULL), (1, 56, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-12 00:55:57', '2023-01-12 00:55:57', NULL), (1, 57, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-11 00:00:00', '2023-01-11 00:00:00', NULL, '2023-01-12 03:00:56', '2023-01-12 03:00:56', NULL), (1, 58, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-12 08:02:46', '2023-01-12 08:02:46', NULL), (1, 59, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-13 00:55:33', '2023-01-13 00:55:33', NULL), (1, 60, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-12 00:00:00', '2023-01-12 00:00:00', NULL, '2023-01-13 02:54:30', '2023-01-13 02:54:30', NULL), (1, 61, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-13 07:59:57', '2023-01-13 07:59:57', NULL), (1, 62, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-14 00:54:50', '2023-01-14 00:54:50', NULL), (1, 63, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-13 00:00:00', '2023-01-13 00:00:00', NULL, '2023-01-14 03:01:14', '2023-01-14 03:01:14', NULL), (1, 64, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-14 07:57:37', '2023-01-14 07:57:37', NULL), (1, 65, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-15 00:54:37', '2023-01-15 00:54:37', NULL), (1, 66, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-14 00:00:00', '2023-01-14 00:00:00', NULL, '2023-01-15 02:59:23', '2023-01-15 02:59:23', NULL), (1, 67, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-15 07:57:00', '2023-01-15 07:57:00', NULL), (1, 68, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-16 00:55:49', '2023-01-16 00:55:49', NULL), (1, 69, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-15 00:00:00', '2023-01-15 00:00:00', NULL, '2023-01-16 02:55:31', '2023-01-16 02:55:31', NULL), (1, 70, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-16 07:59:14', '2023-01-16 07:59:14', NULL), (1, 71, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-17 00:56:32', '2023-01-17 00:56:32', NULL), (1, 72, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-16 00:00:00', '2023-01-16 00:00:00', NULL, '2023-01-17 02:54:05', '2023-01-17 02:54:05', NULL), (1, 73, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-17 07:56:54', '2023-01-17 07:56:54', NULL), (1, 74, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-18 00:54:40', '2023-01-18 00:54:40', NULL), (1, 75, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', '99', NULL, '2023-01-17 00:00:00', '2023-01-17 00:00:00', NULL, '2023-01-18 03:01:20', '2023-01-18 03:01:20', NULL), (1, 76, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', '99', NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 07:57:57', '2023-01-18 07:57:57', NULL), (1, 77, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:33:23', '2023-01-18 12:33:23', NULL), (1, 78, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:34:25', '2023-01-18 12:34:25', NULL), (1, 79, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', NULL, NULL, '2023-01-18 00:00:00', '2023-01-18 00:00:00', NULL, '2023-01-18 12:36:22', '2023-01-18 12:36:22', NULL), (1, 80, 12, 1, 'cus_N12lQRrHIxkkQY', 'tok_1MH0g0BMOPRi3AfhpOIjDCf7', 'sub_1MH0g1BMOPRi3AfhI9j6Mjw1', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:33:57', '2023-02-18 12:33:57', NULL), (1, 81, 8, 1, 'cus_N0vyvES8MRSn2n', 'tok_1MGu64BMOPRi3AfhmYQB9Dsy', 'sub_1MGu65BMOPRi3AfhiiE7qvuk', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:37:31', '2023-02-18 12:37:31', NULL), (1, 82, 13, 1, 'cus_N1L7P5vtLWoUDD', 'tok_1MHIR8BMOPRi3AfhIAE1Q1hB', 'sub_1MHIR9BMOPRi3AfhuNclK18F', 'active', NULL, NULL, '2023-02-18 00:00:00', '2023-02-18 00:00:00', NULL, '2023-02-18 12:37:56', '2023-02-18 12:37:56', NULL), (1, 83, 17, 2, 'cus_NQepzNiC0HhMvi', 'tok_1MfnVeBMOPRi3AfhOuruppHA', 'sub_1MfnVfBMOPRi3AfhVKophPiG', 'canceled', '99', '{\"id\":\"sub_1MfnVfBMOPRi3AfhVKophPiG\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677430539,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677430669,\"collection_method\":\"charge_automatically\",\"created\":1677430539,\"currency\":\"usd\",\"current_period_end\":1679849739,\"current_period_start\":1677430539,\"customer\":\"cus_NQepzNiC0HhMvi\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677430669,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NQepLp0glTwRsE\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677430540,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MfnVfBMOPRi3AfhVKophPiG\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MfnVfBMOPRi3AfhVKophPiG\"},\"latest_invoice\":\"in_1MfnVfBMOPRi3Afh2xTAEaY1\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677430539,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-26 00:00:00', '2023-03-26 00:00:00', '2023-02-26 11:57:49', '2023-02-26 16:55:41', '2023-02-26 16:57:49', NULL), (1, 84, 17, 2, 'cus_NQesZGYPkLvknD', 'tok_1MfnYJBMOPRi3AfhJQjhhlQu', 'sub_1MfnYKBMOPRi3AfhoMczck2I', 'active', '99', '{\"id\":\"sub_1MfnYKBMOPRi3AfhoMczck2I\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677430704,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"collection_method\":\"charge_automatically\",\"created\":1677430704,\"currency\":\"usd\",\"current_period_end\":1679849904,\"current_period_start\":1677430704,\"customer\":\"cus_NQesZGYPkLvknD\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NQesCqM9KN1F6e\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677430704,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MfnYKBMOPRi3AfhoMczck2I\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MfnYKBMOPRi3AfhoMczck2I\"},\"latest_invoice\":\"in_1MfnYKBMOPRi3Afhg2jUyuQV\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677430704,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-26 00:00:00', '2023-03-26 00:00:00', '', '2023-02-26 16:58:26', '2023-02-26 16:58:26', NULL), (1, 85, 19, 2, 'cus_NRHsx3xxIkJJV8', 'tok_1MgPITBMOPRi3AfhlGVi24jj', 'sub_1MgPIUBMOPRi3AfhDrZCKJBc', 'canceled', '99', '{\"id\":\"sub_1MgPIUBMOPRi3AfhDrZCKJBc\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677575794,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677575807,\"collection_method\":\"charge_automatically\",\"created\":1677575794,\"currency\":\"usd\",\"current_period_end\":1679994994,\"current_period_start\":1677575794,\"customer\":\"cus_NRHsx3xxIkJJV8\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677575807,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NRHsHzE1ibmfmE\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677575794,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MgPIUBMOPRi3AfhDrZCKJBc\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MgPIUBMOPRi3AfhDrZCKJBc\"},\"latest_invoice\":\"in_1MgPIUBMOPRi3AfhDdyYgcRZ\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677575794,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-28 00:00:00', '2023-03-28 00:00:00', '2023-02-28 04:16:47', '2023-02-28 09:16:36', '2023-02-28 09:16:47', NULL), (1, 86, 19, 2, 'cus_NRHtIbGWBMo1Ax', 'tok_1MgPJKBMOPRi3AfhWhjrUjwH', 'sub_1MgPJLBMOPRi3Afhea4JUlLt', 'canceled', '99', '{\"id\":\"sub_1MgPJLBMOPRi3Afhea4JUlLt\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1677575847,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":1677575947,\"collection_method\":\"charge_automatically\",\"created\":1677575847,\"currency\":\"usd\",\"current_period_end\":1679995047,\"current_period_start\":1677575847,\"customer\":\"cus_NRHtIbGWBMo1Ax\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":1677575947,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_NRHtnLCCUfozKs\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1677575847,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1MgPJLBMOPRi3Afhea4JUlLt\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1MgPJLBMOPRi3Afhea4JUlLt\"},\"latest_invoice\":\"in_1MgPJLBMOPRi3AfhxZxQSc02\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1677575847,\"status\":\"canceled\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-02-28 00:00:00', '2023-03-28 00:00:00', '2023-02-28 04:19:07', '2023-02-28 09:17:29', '2023-02-28 09:19:07', NULL), (1, 87, 17, 2, 'cus_NQesZGYPkLvknD', 'tok_1MfnYJBMOPRi3AfhJQjhhlQu', 'sub_1MfnYKBMOPRi3AfhoMczck2I', 'active', '99', NULL, '2023-03-26 00:00:00', '2023-03-26 00:00:00', NULL, '2023-03-26 17:00:13', '2023-03-26 17:00:13', NULL), (1, 88, 29, 2, 'cus_OJikKIvH5aaWNu', 'tok_1NX5JLBMOPRi3AfhxEqtCLUH', 'sub_1NX5JNBMOPRi3AfhlOtyrp1l', 'active', '99', '{\"id\":\"sub_1NX5JNBMOPRi3AfhlOtyrp1l\",\"object\":\"subscription\",\"application\":null,\"application_fee_percent\":null,\"automatic_tax\":{\"enabled\":false},\"billing_cycle_anchor\":1690130353,\"billing_thresholds\":null,\"cancel_at\":null,\"cancel_at_period_end\":false,\"canceled_at\":null,\"cancellation_details\":{\"comment\":null,\"feedback\":null,\"reason\":null},\"collection_method\":\"charge_automatically\",\"created\":1690130353,\"currency\":\"usd\",\"current_period_end\":1692808753,\"current_period_start\":1690130353,\"customer\":\"cus_OJikKIvH5aaWNu\",\"days_until_due\":null,\"default_payment_method\":null,\"default_source\":null,\"default_tax_rates\":[],\"description\":null,\"discount\":null,\"ended_at\":null,\"items\":{\"object\":\"list\",\"data\":[{\"id\":\"si_OJikPw8SHaHsu2\",\"object\":\"subscription_item\",\"billing_thresholds\":null,\"created\":1690130353,\"metadata\":{},\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"price\":{\"id\":\"2\",\"object\":\"price\",\"active\":true,\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"custom_unit_amount\":null,\"livemode\":false,\"lookup_key\":null,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"recurring\":{\"aggregate_usage\":null,\"interval\":\"month\",\"interval_count\":1,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"tax_behavior\":\"unspecified\",\"tiers_mode\":null,\"transform_quantity\":null,\"type\":\"recurring\",\"unit_amount\":9900,\"unit_amount_decimal\":\"9900\"},\"quantity\":1,\"subscription\":\"sub_1NX5JNBMOPRi3AfhlOtyrp1l\",\"tax_rates\":[]}],\"has_more\":false,\"total_count\":1,\"url\":\"/v1/subscription_items?subscription=sub_1NX5JNBMOPRi3AfhlOtyrp1l\"},\"latest_invoice\":\"in_1NX5JNBMOPRi3AfhrHplXa8u\",\"livemode\":false,\"metadata\":{},\"next_pending_invoice_item_invoice\":null,\"on_behalf_of\":null,\"pause_collection\":null,\"payment_settings\":{\"payment_method_options\":null,\"payment_method_types\":null,\"save_default_payment_method\":\"off\"},\"pending_invoice_item_interval\":null,\"pending_setup_intent\":null,\"pending_update\":null,\"plan\":{\"id\":\"2\",\"object\":\"plan\",\"active\":true,\"aggregate_usage\":null,\"amount\":9900,\"amount_decimal\":\"9900\",\"billing_scheme\":\"per_unit\",\"created\":1677312993,\"currency\":\"usd\",\"interval\":\"month\",\"interval_count\":1,\"livemode\":false,\"metadata\":{},\"nickname\":null,\"product\":\"prod_NQ9EFGuL0R1LLM\",\"tiers_mode\":null,\"transform_usage\":null,\"trial_period_days\":null,\"usage_type\":\"licensed\"},\"quantity\":1,\"schedule\":null,\"start_date\":1690130353,\"status\":\"active\",\"test_clock\":null,\"transfer_data\":null,\"trial_end\":null,\"trial_settings\":{\"end_behavior\":{\"missing_payment_method\":\"create_invoice\"}},\"trial_start\":null}', '2023-07-23 00:00:00', '2023-08-23 00:00:00', '', '2023-07-23 16:39:14', '2023-07-23 16:39:14', NULL); -- -------------------------------------------------------- -- -- Table structure for table `user_tokens` -- DROP TABLE IF EXISTS `user_tokens`; CREATE TABLE IF NOT EXISTS `user_tokens` ( `isActive` tinyint(1) DEFAULT '1', `id` int NOT NULL AUTO_INCREMENT, `userId` int DEFAULT NULL, `token` text, `createdAt` datetime NOT NULL, `updatedAt` datetime NOT NULL, `deletedAt` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `userId` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Constraints for dumped tables -- -- -- Constraints for table `brand_details` -- ALTER TABLE `brand_details` ADD CONSTRAINT `brand_details_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `cart` -- ALTER TABLE `cart` ADD CONSTRAINT `cart_ibfk_1` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `cart_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `cart_ibfk_3` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `comments` -- ALTER TABLE `comments` ADD CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `comment_like` -- ALTER TABLE `comment_like` ADD CONSTRAINT `comment_like_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `comment_like_ibfk_2` FOREIGN KEY (`commentId`) REFERENCES `comments` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `comment_replies` -- ALTER TABLE `comment_replies` ADD CONSTRAINT `comment_replies_ibfk_1` FOREIGN KEY (`commentId`) REFERENCES `comments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `comment_replies_ibfk_2` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `email_template` -- ALTER TABLE `email_template` ADD CONSTRAINT `email_template_ibfk_1` FOREIGN KEY (`headerId`) REFERENCES `email_template_header` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `email_template_ibfk_2` FOREIGN KEY (`footerId`) REFERENCES `email_template_footer` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `followers` -- ALTER TABLE `followers` ADD CONSTRAINT `followers_ibfk_1` FOREIGN KEY (`followingId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `followers_ibfk_2` FOREIGN KEY (`followerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `likes` -- ALTER TABLE `likes` ADD CONSTRAINT `likes_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `likes_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `messages` -- ALTER TABLE `messages` ADD CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`fromId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `messages_ibfk_2` FOREIGN KEY (`toId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `orders` -- ALTER TABLE `orders` ADD CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `orders_ibfk_2` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `orders_ibfk_3` FOREIGN KEY (`driverId`) REFERENCES `drivers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `orders_ibfk_4` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE SET NULL ON UPDATE CASCADE; -- -- Constraints for table `order_items` -- ALTER TABLE `order_items` ADD CONSTRAINT `order_items_ibfk_1` FOREIGN KEY (`orderId`) REFERENCES `orders` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `order_items_ibfk_2` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `order_items_ibfk_3` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `posts` -- ALTER TABLE `posts` ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `posts_ibfk_2` FOREIGN KEY (`repostId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `products` -- ALTER TABLE `products` ADD CONSTRAINT `products_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_3` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_4` FOREIGN KEY (`subCategoryId`) REFERENCES `sub_categories` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_5` FOREIGN KEY (`medRecId`) REFERENCES `med_rec` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `products_ibfk_6` FOREIGN KEY (`strainId`) REFERENCES `strains` (`id`) ON UPDATE CASCADE; -- -- Constraints for table `product_favourite` -- ALTER TABLE `product_favourite` ADD CONSTRAINT `product_favourite_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `product_favourite_ibfk_2` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `product_images` -- ALTER TABLE `product_images` ADD CONSTRAINT `product_images_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `product_price_history` -- ALTER TABLE `product_price_history` ADD CONSTRAINT `product_price_history_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `reposts` -- ALTER TABLE `reposts` ADD CONSTRAINT `reposts_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON UPDATE CASCADE, ADD CONSTRAINT `reposts_ibfk_2` FOREIGN KEY (`postId`) REFERENCES `posts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `retailer_details` -- ALTER TABLE `retailer_details` ADD CONSTRAINT `retailer_details_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `reviews` -- ALTER TABLE `reviews` ADD CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`productId`) REFERENCES `products` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`brandId`) REFERENCES `brand_details` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `reviews_ibfk_3` FOREIGN KEY (`retailerId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `user_subscription` -- ALTER TABLE `user_subscription` ADD CONSTRAINT `user_subscription_ibfk_1` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `user_subscription_ibfk_2` FOREIGN KEY (`planId`) REFERENCES `plans` (`id`) ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
0
/content/gmx-projects/gmx-admin
/content/gmx-projects/gmx-admin/backend/.env.example
DB_HOST=gmx.cwj5akmjnuxp.us-east-2.rds.amazonaws.com DB_PORT=3306 DB_NAME=gmx DB_USERNAME=matrix DB_PASSWORD=d5gasuThldraWre5ow6 RUN_SEED=true API_BASE=/api/v1/ JWT_SECRET=gmx@123$ ENV=dev PORT=3006 CURRENCY = '$ ' FRONEND_BASE_URL=https://www.greenmarketexchange.com ADMIN_BASE_URL=https://admin.greenmarketexchange.com/ ASSETS_URL = 'https://assets.greenmarketexchange.com' SITE_NAME = 'GMX' YEAR = '2022' SMTP_HOST=smtp.sendgrid.net SMTP_PORT=587 SMTP_USERNAME=apikey SMTP_PASSWORD=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 SMTP_FROM_NAME=GMX SMTP_FROM_EMAIL=notifications@greenmarketexchange.com
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/test/app.e2e-spec.ts
import { Test, TestingModule } from '@nestjs/testing'; import { INestApplication } from '@nestjs/common'; import * as request from 'supertest'; import { AppModule } from './../src/app.module'; describe('AppController (e2e)', () => { let app: INestApplication; beforeEach(async () => { const moduleFixture: TestingModule = await Test.createTestingModule({ imports: [AppModule], }).compile(); app = moduleFixture.createNestApplication(); await app.init(); }); it('/ (GET)', () => { return request(app.getHttpServer()) .get('/') .expect(200) .expect('Hello World!'); }); });
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/test/jest-e2e.json
{ "moduleFileExtensions": ["js", "json", "ts"], "rootDir": ".", "testEnvironment": "node", "testRegex": ".e2e-spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" } }
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/src/app.controller.ts
import { Controller, Get } from '@nestjs/common'; import { AppService } from './app.service'; @Controller() export class AppController { constructor(private readonly appService: AppService) {} @Get() getHello(): string { return this.appService.getHello(); } }
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/src/app.routes.ts
import { Routes } from 'nest-router'; const { API_BASE } = process.env; require('dotenv').config(); import { UserModule } from './modules/user/user.module'; import { AuthModule } from './modules/auth/auth.module'; import { ProductsModule } from './modules/products/products.module'; import { BrandModule } from './modules/brand/brand.module'; import { GetFileModule } from './modules/getfile/getFile.module'; import { StatesModule } from './modules/states/states.module'; import { CategoriesModule } from './modules/categories/categories.module'; import { SubCategoriesModule } from './modules/sub-categories/sub-categories.module'; import { MedRecModule } from './modules/medrec/medrec.module'; import { StrainsModule } from './modules/strains/strains.module'; import { PlansModule } from './modules/plans/plans.module'; import { OrdersModule } from './modules/orders/orders.module'; import { FavouritesModule } from './modules/favourite/favourites.module'; import { MessagesModule } from './modules/messages/messages.module'; import { ContactUsModule } from './modules/contact-us/contact-us.module'; import { DashboardModule } from './modules/dashboard/dashboard.module'; import { AxisPointModule } from './modules/axis-point/axispoint.module'; import { CmsModule } from './modules/cms/cms.module'; import { SubscriptionModule } from './modules/subscription/subscription.module'; import { CartModule } from './modules/cart/cart.module'; import { FollowersModule } from './modules/followers/followers.module'; import { PostModule } from './modules/post/post.module'; import { CommentModule } from './modules/comment/comment.module'; import { DriversModule } from './modules/drivers/drivers.module'; import { OffersModule } from './modules/offers/offers.module'; import { StoresModule } from './modules/stores/stores.module'; import { CompaniesModule } from './modules/companies/companies.module'; export const routes: Routes = [ { path: `${API_BASE}/user`, module: UserModule, }, { path: `${API_BASE}/auth`, module: AuthModule, }, , { path: `${API_BASE}/product`, module: ProductsModule, }, { path: `${API_BASE}/brand`, module: BrandModule, }, { path: `${API_BASE}/get/file`, module: GetFileModule, }, { path: `${API_BASE}/states`, module: StatesModule, }, { path: `${API_BASE}/categories`, module: CategoriesModule, }, { path: `${API_BASE}/sub-categories`, module: SubCategoriesModule, }, { path: `${API_BASE}/medrec`, module: MedRecModule, }, { path: `${API_BASE}/strains`, module: StrainsModule, }, { path: `${API_BASE}/plan`, module: PlansModule, }, { path: `${API_BASE}/cms`, module: CmsModule, }, { path: `${API_BASE}/orders`, module: OrdersModule, }, { path: `${API_BASE}/favourites`, module: FavouritesModule, }, { path: `${API_BASE}/messages`, module: MessagesModule, }, { path: `${API_BASE}/contact-us`, module: ContactUsModule, }, { path: `${API_BASE}/dashboard`, module: DashboardModule, }, { path: `${API_BASE}/axis-point`, module: AxisPointModule, }, { path: `${API_BASE}/webhook-expired-plan`, module: SubscriptionModule, }, { path: `${API_BASE}/cart`, module: CartModule, }, { path: `${API_BASE}/offers`, module: OffersModule, }, { path: `${API_BASE}/followers`, module: FollowersModule, }, { path: `${API_BASE}/posts`, module: PostModule, }, { path: `${API_BASE}/comment`, module: CommentModule, }, { path: `${API_BASE}/drivers`, module: DriversModule, }, { path: `${API_BASE}/stores`, module: StoresModule, }, { path: `${API_BASE}/companies`, module: CompaniesModule, } ];
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/src/app.service.ts
import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getHello(): string { return 'Hello World!'; } }
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/src/app.module.ts
import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { AppService } from './app.service'; import { config } from './config/db.config'; import { AuthModule } from './modules/auth/auth.module'; import { BrandModule } from './modules/brand/brand.module'; // database import { SequelizeModule } from '@nestjs/sequelize'; // routes import { RouterModule } from 'nest-router'; import { routes } from './app.routes'; import { GetFileModule } from './modules/getfile/getFile.module'; import { ProductsModule } from './modules/products/products.module'; import { UserModule } from './modules/user/user.module'; // import { MailServiceService } from './mail-service/mail-service.service'; import { ScheduleModule } from '@nestjs/schedule'; import { StoresModule } from './modules/stores/stores.module'; import { CartModule } from './modules/cart/cart.module'; import { CategoriesModule } from './modules/categories/categories.module'; import { CmsModule } from './modules/cms/cms.module'; import { CommentModule } from './modules/comment/comment.module'; import { ContactUsModule } from './modules/contact-us/contact-us.module'; import { DashboardModule } from './modules/dashboard/dashboard.module'; import { DriversModule } from './modules/drivers/drivers.module'; import { FavouritesModule } from './modules/favourite/favourites.module'; import { FollowersModule } from './modules/followers/followers.module'; import { MedRecModule } from './modules/medrec/medrec.module'; import { MessagesModule } from './modules/messages/messages.module'; import { OffersModule } from './modules/offers/offers.module'; import { OrdersModule } from './modules/orders/orders.module'; import { PlansModule } from './modules/plans/plans.module'; import { PostModule } from './modules/post/post.module'; import { StatesModule } from './modules/states/states.module'; import { StrainsModule } from './modules/strains/strains.module'; import { SubCategoriesModule } from './modules/sub-categories/sub-categories.module'; import { SubscriptionModule } from './modules/subscription/subscription.module'; import { CompaniesModule } from './modules/companies/companies.module'; // import { AxisPointModule } from './modules/axis-point/axispoint.module'; @Module({ imports: [ SequelizeModule.forRoot(config), RouterModule.forRoutes(routes), ScheduleModule.forRoot(), UserModule, AuthModule, ProductsModule, BrandModule, GetFileModule, StatesModule, CategoriesModule, SubCategoriesModule, MedRecModule, StrainsModule, PlansModule, OrdersModule, FavouritesModule, MessagesModule, ContactUsModule, DashboardModule, CmsModule, SubscriptionModule, CartModule, OffersModule, FollowersModule, PostModule, CommentModule, // AxisPointModule //MailerModule DriversModule, StoresModule, CompaniesModule, ], controllers: [AppController], providers: [AppService], }) export class AppModule {}
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/src/app.controller.spec.ts
import { Test, TestingModule } from '@nestjs/testing'; import { AppController } from './app.controller'; import { AppService } from './app.service'; describe('AppController', () => { let appController: AppController; beforeEach(async () => { const app: TestingModule = await Test.createTestingModule({ controllers: [AppController], providers: [AppService], }).compile(); appController = app.get<AppController>(AppController); }); describe('root', () => { it('should return "Hello World!"', () => { expect(appController.getHello()).toBe('Hello World!'); }); }); });
0
/content/gmx-projects/gmx-admin/backend
/content/gmx-projects/gmx-admin/backend/src/main.example.ts
import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; import * as fs from 'fs'; // validations import { ValidationPipe } from '@nestjs/common'; const { PORT } = process.env; async function bootstrap() { const httpsOptions = { key: fs.readFileSync('./secrets/key.pem'), cert: fs.readFileSync('./secrets/crt.pem'), }; const app = await NestFactory.create(AppModule, { httpsOptions, }); app.enableCors(); app.useGlobalPipes(new ValidationPipe()); await app.listen(PORT || 3333); } bootstrap();
0
/content/gmx-projects/gmx-admin/backend/src
/content/gmx-projects/gmx-admin/backend/src/services/FileHelper.service.ts
const documentPath = '.'; const uploadsProfilePath = '/profile'; const uploadsDocumentsPath = '/documents'; import path = require('path'); import { v4 as uuidv4 } from 'uuid'; export class FileHelper { static customFileName(req, file, cb) { //const uniqueSuffix = Date.now() + '-' + Math.round(Math.random() * 1e9); //let fileExtension = ""; // if (file.mimetype.indexOf("jpeg") > -1) { // fileExtension = "jpg" // } else if (file.mimetype.indexOf("png") > -1) { // fileExtension = "png"; // } if (file.fieldname === 'profileDocument') { const filename: string = uploadsProfilePath + '/' + path.parse('profile-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } if (file.fieldname === 'medRecCertificatePath') { const filename: string = uploadsDocumentsPath + '/' + path.parse('certificate-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } if (file.fieldname === 'medCertificatePath') { const filename: string = uploadsDocumentsPath + '/' + path.parse('med-certificate-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } if (file.fieldname === 'recCertificatePath') { const filename: string = uploadsDocumentsPath + '/' + path.parse('rec-certificate-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } if (file.fieldname === 'resaleLicensePath') { const filename: string = uploadsDocumentsPath + '/' + path.parse('resale-license-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } } static destinationPath(req, file, cb) { cb(null, '.' + documentPath); } }
0
/content/gmx-projects/gmx-admin/backend/src
/content/gmx-projects/gmx-admin/backend/src/services/Helper.service.ts
import { BadRequestException, Injectable, Request } from '@nestjs/common'; import { BrandCompany } from 'src/models/brandCompany.model'; import { EmailTemplate } from 'src/models/emailTemplate.model'; import { EmailTemplateFooter } from 'src/models/emailTemplateFooter.model'; import { EmailTemplateHeader } from 'src/models/emailTemplateHeader.model'; import { Organizations } from 'src/models/organizations.model'; import { Retailer } from 'src/models/retailer.model'; import { User } from 'src/models/user.model'; const { ASSETS_URL } = process.env; @Injectable() export class HelperService { async checkUnique(model: any, field: any, data: any, fieldName?: any) { const isUnique = await model.findOne({ where: { [field]: data, }, paranoid: false, }); if (isUnique) { throw new BadRequestException(fieldName + ' is already exist.'); } else return true; } async updateCreatedBy(@Request() req) { console.log(req.user); } async getSettings(model: any, name: any) { if (name) { const description = await model.findOne({ where: { name: name, }, attributes: ['description'], }); return description; } else { return false; } } async emailTemplateContent(id: number, userData: any) { // userData['LOGO'] = 'https://gmx.nyusoft.in:6001/api/v1/get/file/uploads/settings/main-logo.png' userData['LOGO'] = ASSETS_URL + '/settings/main-logo.png'; userData['COPYRIGHTYEAR'] = new Date().getFullYear(); const keysArr = [ '{INVOICE_ID}', '{ORDER_ID}', '{UNITS_PER_PACKAGE}', '{PACKAGE_PRICE}', '{PACKAGE}', '{LOGO}', '{COPYRIGHTYEAR}', '{NAME}', '{LINK}', '{LINK_1}', '{EMAIL}', '{ROLE}', '{PLAN}', '{PHONE}', '{MESSAGE}', '{TITLE}', '{ORDERID}', '{PRODUCT}', '{CATEGORY}', '{CUSTOMER}', '{QUANTITY}', '{PRICE}', '{UNIT}', '{TOTAL}', '{BRAND}', '{FIRST_NAME}', '{LAST_NAME}', '{PHONE_NUMBER}', '{RETAILER_NAME}', '{FROM_NAME}', '{TO_NAME}', '{MANIFEST}', '{DRIVER_NAME}', '{DELIVERY_DATE}', '{PAYMENT_DUE}', '{PAYMENT_STATUS}', '{PRODUCTS_CONTENT}', '{DELIVERY_ON_TIME_RATINGS}', '{DELIVERY_ON_TIME_REVIEW}', '{RESPONSE_RATINGS}', '{RESPONSE_REVIEW}', ]; const emailTemplate = await EmailTemplate.findOne({ where: { id, }, include: [ { model: EmailTemplateHeader, }, { model: EmailTemplateFooter, }, ], }); let onlyString = emailTemplate.body; let string = ''; string = emailTemplate?.header?.description; string += emailTemplate?.body; string += emailTemplate?.footer?.description; let subject = emailTemplate?.subject; keysArr.forEach((key) => { let k = key.replace('{', ''); k = k.replace('}', ''); if (userData[k]) { onlyString = onlyString.replace(key, userData[k]); string = string.replace(key, userData[k]); subject = subject.replace(key, userData[k]); } }); return { subject: subject, onlyBody: onlyString, body: string, }; } async getFromUser(id: number) { // from user const fromRetailer = await Retailer.findOne({ where: { userId: id, }, }); const fromBrand = await User.findOne({ include: [{ model: Organizations }], where: { id: id, }, }); const role = fromBrand?.organization?.role; const fromUser = fromBrand?.currentBrandId ?? fromRetailer?.id; return { role, fromUser }; } async getFromUserCompany(id: number) { // from user const fromRetailer = await Retailer.findOne({ where: { userId: id, }, }); const fromBrand = await BrandCompany.findOne({ where: { userId: id, }, }); const medRecId = fromBrand?.medRecId ?? fromRetailer?.medRecId; return { medRecId }; } async commaSeparatedStringWithIncludes(array: any, field: any) { if (array?.length > 0) { const dataArray = array.split(','); return dataArray.includes(field.toString()); } return false; } _userNameFields(role:string) { if (role === "1") { return ['fromRetailer', 'toBrand']; } else if (role === "2") { return ['toBrand', 'fromRetailer']; } else { return []; } }; }
0
/content/gmx-projects/gmx-admin/backend/src
/content/gmx-projects/gmx-admin/backend/src/config/db.config.ts
import { SequelizeModuleOptions } from '@nestjs/sequelize'; require('dotenv').config(); const { DB_HOST, DB_PORT, DB_NAME, DB_USERNAME, DB_PASSWORD } = process.env; export const config: SequelizeModuleOptions = { dialect: 'mysql', username: DB_USERNAME, password: DB_PASSWORD, port: parseInt(DB_PORT), host: DB_HOST, database: DB_NAME, synchronize: false, // alter: true, // models: ['dist/**/**.model{.ts,.js}'], autoLoadModels: true, logging: false, };
0
/content/gmx-projects/gmx-admin/backend/src
/content/gmx-projects/gmx-admin/backend/src/mail-service/mail-service.service.ts
import { Injectable } from '@nestjs/common'; import { MailerService } from '@nestjs-modules/mailer'; require('dotenv').config(); const { SMTP_FROM_EMAIL } = process.env; @Injectable() export class MailServiceService { constructor(private readonly mailerService: MailerService) {} public async sendMail( to: string, subject: string, html: string, ): Promise<any> { //console.log('+++++++++ sendMail to ' + to); try { const sent = await this.mailerService.sendMail({ to, from: `GMX <${SMTP_FROM_EMAIL}>`, // sender address subject, html, // HTML body content }); console.log({ sent }); return true; } catch (error) { console.log({ error }); return false; } } }
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/invoice.html
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet" /> <style type="text/css"> @page { margin: 50px 25px; } body, p { font-weight: normal; font-family: 'Poppins', sans-serif; font-size: 14px; color: #0C0F1E; line-height: 20px; } th, b, strong { font-family: 'Poppins', sans-serif; font-weight: bold; font-style: normal; font-display: swap; } * { box-sizing: border-box; } .color-white { color: white; } .color-2b5da7 { color: #2b5da7; } .color-0791bb { color: #0791bb; } .color-5b9bd5 { color: #5b9bd5; } .color-bb0707 { color: #bb0707; } .color-003E33 { color: #003E33; } .bg-color-2b5da7 { background-color: #2b5da7; } .bg-color-0799c3 { background-color: #0799c3; } .bg-color-5b9bd5 { background-color: #5b9bd5; } img { max-width: 100%; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .mtb-2 { margin: 2px 0 !important; } /************************************ */ .logo-wrap { text-align: center; } table { width: 100%; border-collapse: collapse; vertical-align: top; } table tr th, table tr td { padding: 5px 10px; text-align: left; } .custom-table th { padding: 5px 10px; font-size: 14px; font-family: 'Poppins', sans-serif; } .custom-table tr { border-bottom: 1px solid #dee2e6; } .custom-table tr td { vertical-align: top; } .custom-table h3 { font-size: 14px; font-family: 'Poppins', sans-serif; margin-bottom: 0; line-height: 10px; } .table-bordered { border: 1px solid #dee2e6; } .table-bordered th, .table-bordered td { padding: 3px 10px; border: 1px solid #dee2e6; } .card { position: relative; margin-top: 25px; margin-bottom: 25px; padding: 20px; border-radius: 25px; border: 2px solid #0C0F1E; } ul, li { list-style: none; } ul.custom-list li { display: inline-block; text-align: center; } </style> </head> <body> <div style="display: inline-block; width: 100%;"> <table style="margin-bottom: 0px;"> <tbody> <tr> <th> <p class="text-left mtb-2"> <b>Date: </b>{{date}} </p> </th> </tr> <!-- <tr> <th> <p class="text-left mtb-2"> <b>Invoice No :</b>{{invoiceNo}} </p> </th> </tr> --> </tbody> </table> </div> <div style="display: inline-block; width: 100%;"> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> Bill From: </p> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>{{siteName}}</b> </p> </th> </tr> <!-- <tr> <th> <p class="text-left mtb-2">address</p> </th> </tr> --> </tbody> </table> </div> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> Bill To: </p> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>{{userName}}</b> </p> </th> </tr> <tr> <th> <p class="text-left mtb-2">{{toAddress}}</p> <p class="text-left mtb-2">{{toState}}</p> </th> </tr> <tr> <td> <p class="text-left mtb-2">{{zipCode}}</p> </td> </tr> </tbody> </table> </div> </div> <h3 class="color-003E33" style="font-size: 14px;">** Details Of Purchase Made **</h3> <table class="custom-table" style="margin-bottom: 30px;"> <thead style="background-color: #FFF"> <tr> <th class="color-003E33">Subscriptions</th> <th style="width:300px" class="text-center color-003E33">Price</th> </tr> </thead> <tbody> <tr style="width:350px"> <td class="text-left"> <p>{{productTitle}}</p> </td> <td class="text-center"> <p style="font-size:10px;">{{productPrice}}</p> </td> </tr> </tbody> <tfoot style="border-top:1px solid #dee2e6" style="width:300px"> <tr style="border-bottom:none;" style="width:300px"> <td class="text-right"> <strong>Total</strong> </td> <td class="text-center" style="width:300px"> <p style="font-size:10px;"><strong>{{totalPrice}}</strong></p> </td> </tr> <!-- <tr style="border-bottom:none;"> <td width="100%" style="border-right:none;"> <p class="mtb-2"><b>Payment Method :</b> </p> </td> </tr> --> <tr style="border-bottom:none;"> <td width="100%" style="border-right:none;"> </td> <!-- <td class="text-center" style="border-bottom:1px solid #0C0F1E"> <strong>Grand Total:</strong> </td> --> <!-- <td class="text-center" style="border-bottom:1px solid #0C0F1E"> <strong>grandTotal</strong> </td> --> </tr> </tfoot> </table> <div class="text-center" style="margin-top:100px; text-align : center;"> <p style="font-size:14px;">{{siteName}} Copyright {{year}} ©</p> </div> </body> </html>
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/invoice.mail.ts
export const invoiceTemplate = `<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <style type="text/css"> @page { margin: 50px 25px; } body, p { font-family: 'Poppins', sans-serif; font-style:normal; font-weight: normal; font-display: swap; font-size: 14px; color: #0C0F1E; line-height: 20px; } th, b, strong { font-weight: bold; } * { box-sizing: border-box; font-family: 'Poppins', sans-serif; font-style:normal; font-weight: normal; font-display: swap; } .color-white { color: white; } .color-2b5da7 { color: #2b5da7; } .color-0791bb { color: #0791bb; } .color-5b9bd5 { color: #5b9bd5; } .color-bb0707 { color: #bb0707; } .color-000000 { color: #000000; } .bg-color-2b5da7 { background-color: #2b5da7; } .bg-color-0799c3 { background-color: #0799c3; } .bg-color-5b9bd5 { background-color: #5b9bd5; } img { max-width: 100%; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .mtb-2 { margin: 2px 0 !important; } /************************************ */ .logo-wrap { text-align: center; } table { width: 100%; border-collapse: collapse; vertical-align: top; } table tr th, table tr td { padding: 5px 10px; text-align: left; } .custom-table th { padding: 5px 10px; font-size: 14px; } .custom-table tr { border-bottom: 1px solid #dee2e6; } .custom-table tr td { vertical-align: top; } .custom-table h3 { font-size: 14px; margin-bottom: 0; line-height: 10px; } .table-bordered { border: 1px solid #dee2e6; } .table-bordered th, .table-bordered td { padding: 3px 10px; border: 1px solid #dee2e6; } .card { position: relative; margin-top: 25px; margin-bottom: 25px; padding: 20px; border-radius: 25px; border: 2px solid #0C0F1E; } ul, li { list-style: none; } ul.custom-list li { display: inline-block; text-align: center; } </style> </head> <body> <div style="display: inline-block; width: 100%;"> <table style="margin-bottom: 0px;"> <tbody> <tr> <th class="text-center"> <div class="text-center" style="margin-bottom:30px;"> <img src="https://assets.greenmarketexchange.com/settings/main-logo.png" width="180px"/> </div> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>Date: </b>{{date}} </p> </th> </tr> </tbody> </table> </div> <div style="display: inline-block; width: 100%;"> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> Bill From: </p> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>{{siteName}}</b> </p> </th> </tr> </tbody> </table> </div> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> Bill To: </p> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>{{userName}}</b> </p> </th> </tr> <tr> <th> <p class="text-left mtb-2">{{toAddress}}</p> <p class="text-left mtb-2">{{toState}}</p> <p class="text-left mtb-2">{{zipCode}}</p> </th> </tr> </tbody> </table> </div> </div> <h3 class="color-000000" style="font-size: 14px;">** Details Of Purchase Made **</h3> <table class="custom-table" style="margin-bottom: 30px;"> <thead style="background-color: #FFF"> <tr> <th class="color-000000">Subscriptions</th> <th style="width:180px" class="text-center color-000000">Price</th> </tr> </thead> <tbody> <tr> <td class="text-left"> <p>{{productTitle}}</p> </td> <td class="text-center" style="width:180px"> <p>{{productPrice}}</p> </td> </tr> </tbody> <tfoot style="border-top:1px solid #dee2e6"> <tr style="border-bottom:none;"> <td class="text-right"> <p><strong>Total</strong></p> </td> <td class="text-center" style="width:180px"> <p><strong>{{totalPrice}}</strong></p> </td> </tr> </tfoot> </table> <div class="text-center" style="margin-top:100px; text-align : center;"> <p style="font-size:14px;">Copyright © {{year}} {{siteName}}</p> </div> </body> </html> `;
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/invoice-test.html
<!DOCTYPE html> <html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <head> <style type="text/css"> @page { margin: 50px 25px; } body, p { font-weight: normal; font-family: 'Sharp Grotesk'; font-size: 16px; color: #0C0F1E; line-height: 20px; } th, b, strong { font-family: 'Sharp Grotesk Book'; font-weight: bold; font-style: normal; font-display: swap; } * { box-sizing: border-box; } .color-white { color: white; } .color-2b5da7 { color: #2b5da7; } .color-0791bb { color: #0791bb; } .color-5b9bd5 { color: #5b9bd5; } .color-bb0707 { color: #bb0707; } .color-003E33 { color: #003E33; } .bg-color-2b5da7 { background-color: #2b5da7; } .bg-color-0799c3 { background-color: #0799c3; } .bg-color-5b9bd5 { background-color: #5b9bd5; } img { max-width: 100%; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .mtb-2 { margin: 2px 0 !important; } /************************************ */ .logo-wrap { text-align: center; } table { width: 100%; border-collapse: collapse; vertical-align: top; } table tr th, table tr td { padding: 5px 10px; text-align: left; } .custom-table th { padding: 5px 10px; font-size: 16px; font-family: 'Sharp Grotesk Book'; } .custom-table tr { border-bottom: 1px solid #dee2e6; } .custom-table tr td { vertical-align: top; } .custom-table h3 { font-size: 16px; font-family: 'Sharp Grotesk Book'; margin-bottom: 0; line-height: 10px; } .table-bordered { border: 1px solid #dee2e6; } .table-bordered th, .table-bordered td { padding: 3px 10px; border: 1px solid #dee2e6; } .card { position: relative; margin-top: 25px; margin-bottom: 25px; padding: 20px; border-radius: 25px; border: 2px solid #0C0F1E; } ul, li { list-style: none; } ul.custom-list li { display: inline-block; text-align: center; } </style> </head> <body> <div style="display: inline-block; width: 48%;"> <table style="margin-bottom: 30px;"> <tbody> <tr> <th> <p class="text-left mtb-2"> <b>Date: </b>{{date}} </p> </th> </tr> <!-- <tr> <th> <p class="text-left mtb-2"> <b>Invoice No :</b>{{invoiceNo}} </p> </th> </tr> --> </tbody> </table> </div> <div style="display: inline-block; width: 48%;"> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> Bill From: </p> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>{{siteName}}</b> </p> </th> </tr> <!-- <tr> <th> <p class="text-left mtb-2">address</p> </th> </tr> --> </tbody> </table> </div> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> Bill To: </p> </th> </tr> <tr> <th> <p class="text-left mtb-2"> <b>{{userName}}</b> </p> </th> </tr> <tr> <th> <p class="text-left mtb-2">{{toAddress}}</p> <p class="text-left mtb-2">{{toState}}</p> </th> </tr> <tr> <td> <p class="text-left mtb-2">{{zipCode}}</p> </td> </tr> </tbody> </table> </div> </div> <h3 class="color-003E33" style="font-size: 16px;">** Details Of Purchase Made **</h3> <table class="custom-table" style="margin-bottom: 30px;"> <thead style="background-color: #FFF"> <tr> <th class="color-003E33">Subscriptions</th> <th width="100px" class="text-center color-003E33">Price</th> </tr> </thead> <tbody> <tr> <td class="text-left"> <p>{{productTitle}}</p> </td> <td class="text-center"> <p> {{productPrice}}</p> </td> </tr> </tbody> <tfoot style="border-top:1px solid #dee2e6"> <tr style="border-bottom:none;"> <td width="100%" style="border-right:none;"> </td> <td class="text-center"> <strong>Total</strong> </td> <td class="text-center"> <strong>{{totalPrice}}</strong> </td> </tr> <!-- <tr style="border-bottom:none;"> <td width="100%" style="border-right:none;"> <p class="mtb-2"><b>Payment Method :</b> </p> </td> </tr> --> <tr style="border-bottom:none;"> <td width="100%" style="border-right:none;"> </td> <!-- <td class="text-center" style="border-bottom:1px solid #0C0F1E"> <strong>Grand Total:</strong> </td> --> <!-- <td class="text-center" style="border-bottom:1px solid #0C0F1E"> <strong>grandTotal</strong> </td> --> </tr> </tfoot> </table> <div class="text-center" style="margin-top:100px; text-align : center;"> <p style="font-size:14px;">{{siteName}} Copyright {{year}} ©</p> </div> </body> </html>
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/order.invoice.ts
export const invoiceTemplate = `<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <style type="text/css"> @page { margin: 50px 25px; } body, p { font-family: 'Poppins', sans-serif; font-style: normal; font-weight: normal; font-display: swap; font-size: smaller; color: #0C0F1E; line-height: 20px; margin: 0; } th, b, strong { font-weight: bold; } * { box-sizing: border-box; font-family: 'Poppins', sans-serif; font-style: normal; font-weight: normal; font-display: swap; } .color-white { color: white; } .color-2b5da7 { color: #2b5da7; } .color-0791bb { color: #0791bb; } .color-5b9bd5 { color: #5b9bd5; } .color-bb0707 { color: #bb0707; } .color-000000 { color: #000000; } .bg-color-2b5da7 { background-color: #2b5da7; } .bg-color-0799c3 { background-color: #0799c3; } .bg-color-5b9bd5 { background-color: #5b9bd5; } img { max-width: 100%; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .mtb-2 { margin: 2px 0 !important; } /************************************ */ .logo-wrap { text-align: center; } table { width: 100%; border-collapse: collapse; vertical-align: top; } table tr th, table tr td { padding: 5px 10px; text-align: left; } .custom-table th { padding: 5px 10px; font-size: smaller; font-family: 'Poppins', sans-serif; } .custom-table tr { border-bottom: 1px solid #dee2e6; } .custom-table tr td { vertical-align: top; font-size: smaller; font-family: 'Poppins', sans-serif; } .custom-table h3 { font-family: 'Poppins', sans-serif; font-size: 14px; margin-bottom: 0; line-height: 10px; } .table-bordered { border: 1px solid #dee2e6; } .table-bordered th, .table-bordered td { padding: 3px 10px; font-family: 'Poppins', sans-serif; border: 1px solid #dee2e6; font-size: smaller; } .custom-table td p { margin: 0; } .card { position: relative; margin-top: 25px; margin-bottom: 25px; padding: 20px; border-radius: 25px; border: 2px solid #0C0F1E; } ul, li { list-style: none; } ul.custom-list li { display: inline-block; text-align: center; } </style> </head> <body> <div style="display: inline-block; width: 100%;"> <table style="margin-bottom: 0px;"> <tbody> <tr> <th class="text-center"> <div class="text-center" style="margin-bottom:30px;"> <img src="https://assets.greenmarketexchange.com/settings/main-logo.png" width="180px" /> </div> </th> </tr> </tbody> </table> </div> <div style="display: inline-block; width: 100%;margin-bottom: 20px;"> <div style="display: inline-block; width: 100%; vertical-align: top;"> <table> <tbody> <tr> <td style="padding: 0;"> <p class="text-left mtb-2" style="padding: 5px 10px;"> <b>Invoice#: <span>{{invoiceId}}</span></b> </p> <table style="width:100%;"> <tbody> <tr> <th class="text-left" style="background-color:#dee1e6"> <table> <tr> <td style="padding: 0;"><b style="font-size: smaller;">Buyer:</b></td> <td style="text-align: right;padding: 0;"><b style="font-size: smaller;">License #{{retailerLicenseNumber}}</b></td> </tr> </table> </th> </tr> <tr> <th> <p class="text-left">{{retailerCompanyName}}</p> <p class="text-left">{{retailerAddress}} {{retailerZipCode}}</p> <p class="text-left">Phone Number: {{retailerPhone}}</p> <p class="text-left">Email: {{retailerEmail}}</p> </th> </tr> </tbody> </table> </td> <td style="padding: 0;width: 10%;"></td> <td style="padding: 0;"> <p class="text-left mtb-2" style="padding: 5px 10px;"> <b>Order Date: <span>{{orderDate}}</span></b> </p> <table style="width:100%;"> <tbody> <tr> <th class="text-left" style="background-color:#dee1e6"> <table> <tr> <td style="padding: 0;"><b style="font-size: smaller;">Seller:</b></td> <td style="text-align: right;padding: 0;"><b style="font-size: smaller;">License #{{brandLicenseNumber}}</b></td> </tr> </table> </th> </tr> <tr> <th> <p class="text-left">{{brandCompanyName}}</p> <p class="text-left">{{brandAddress}} {{brandZipCode}}</p> <p class="text-left">Phone Number: {{brandPhone}}</p> <p class="text-left">Email: {{brandEmail}}</p> </th> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </div> <table class="custom-table" style="margin-bottom: 20px;"> <thead style="background-color: #FFF"> <tr> <th class="color-000000">Product</th> <th class="color-000000">Brand</th> <th class="color-000000">Units Per Package</th> <th class="color-000000">Package Price</th> <th class="color-000000">Package</th> <th class="color-000000 text-center">Delivery Date</th> <th class="color-000000 text-center">Status</th> <th class="color-000000">Total</th> </tr> </thead> <tbody> {{#each orderInvoiceItems}} <tr> <td class="text-left"> <p>{{this.productTitle}}</p> <p>({{this.categoryTitle}})</p> </td> <td class="text-left"> {{this.productBrand}} </td> <td class="text-left"> <p>{{this.unitPerPackage}}</p> </td> <td class="text-left"> <p>{{this.displayPrice}}</p> </td> <td class="text-left"> <p>{{this.quantity}}</p> </td> <td class="text-center"> <p>{{this.deliveryDate}}</p> </td> <td class="text-center"> <p>{{this.orderStatus}}</p> </td> <td> {{#ifCond this.offerTotal '>' 0}} <p>{{this.totalPrice}}</p> <p>-{{this.displayOfferTotal}} <small>{{this.offerTitle}}</small></p> <hr /> <p>{{this.displayFinalTotal}}</p> {{/ifCond}} <p>{{this.displayFinalTotal}}</p> </td> </tr> {{/each}} </tbody> <tfoot style="border-top:1px solid #dee2e6"> <tr style="border-bottom:none;"> <td colspan="6"></td> <td class="text-right"> {{#ifCond this.offerTotal '>' 0}} <p><strong>Order Total</strong></p> <p><strong>Discounts</strong></p> <p><strong>Adjusted Total</strong></p> {{/ifCond}} <p><strong>Order Total:</strong></p> </td> <td class="text-left"> {{#ifCond this.offerTotal '>' 0}} <p>{{orderTotal}}</p> <p>-{{displayOfferTotal}} <small>{{offerTitle}}</small></p> <p>{{finalOrderTotal}}</p> {{/ifCond}} <p>{{finalOrderTotal}}</p> </td> </tr> </tfoot> </table> <h3 class="color-000000" style="font-size: smaller;margin-top: 0;padding: 0 10px;"><b>Signatures:</b></h3> <table class="custom-table" style="margin-bottom: 20px;"> <tr> <td style="width: 33.33%;padding: 15px 10px;">Released By:</td> <td style="width: 33.33%;padding: 15px 10px;">Signature:</td> <td style="width: 33.33%;padding: 15px 10px;">Date:</td> </tr> <tr> <td style="width: 33.33%;padding: 15px 10px;">Received By:</td> <td style="width: 33.33%;padding: 15px 10px;">Signature:</td> <td style="width: 33.33%;padding: 15px 10px;">Date:</td> </tr> <tr> <td style="width: 33.33%;padding: 15px 10px;">Payment Collected By:</td> <td style="width: 33.33%;padding: 15px 10px;">Signature:</td> <td style="width: 33.33%;padding: 15px 10px;">Date:</td> </tr> </table> <div class="text-center" style="margin-top:100px; text-align : center;"> <p style="font-size: smaller;">Copyright © {{year}} {{siteName}}</p> </div> </body> </html>`;
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/welcome.mail.ts
require('dotenv').config(); const { FRONEND_BASE } = process.env; export const welcomeMailTemplate = ` <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- So that mobile will display zoomed in --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- enable media queries for windows phone 8 --> <meta name="format-detection" content="telephone=no"> <!-- disable auto telephone linking in iOS --> <title>MERQARY</title> <style type="text/css"> body { margin: 0; padding: 0; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } table { border-spacing: 0; } table td { border-collapse: collapse; } .ExternalClass { width: 100%; } .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { line-height: 100%; } .ReadMsgBody { width: 100%; background-color: #ebebeb; } table { mso-table-lspace: 0pt; mso-table-rspace: 0pt; } img { -ms-interpolation-mode: bicubic; } .yshortcuts a { border-bottom: none !important; } .soc { margin: 0px; padding: 0px; display: block; text-align: center; } .soc ul { margin: 0px; padding: 0px; float: left; } .soc ul li { list-style: none; float: left; margin: 0px 9px 0px 0px; } @media screen and (max-width: 599px) { .force-row, .container { width: 100% !important; max-width: 100% !important; } } @media screen and (max-width: 400px) { .container-padding { padding-left: 12px !important; padding-right: 12px !important; } .col img { width: 100% !important; } } .ios-footer a { color: #aaaaaa !important; text-decoration: underline; } @media screen and (max-width: 599px) { .col { width: 100% !important; border-top: 1px solid #eee; padding-bottom: 0 !important; } .cols-wrapper { padding-top: 18px; } .img-wrapper { float: right; max-width: 40% !important; height: auto !important; margin-left: 12px; } .subtitle { margin-top: 0 !important; } } @media screen and (max-width: 400px) { .cols-wrapper { padding-left: 0 !important; padding-right: 0 !important; } .content-wrapper { padding-left: 12px !important; padding-right: 12px !important; } } </style> </head> <body style="margin:0; padding:0;" bgcolor="#F0F0F0" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <table border="0" width="80%" cellpadding="0" cellspacing="0" bgcolor="#24140e" style="margin: auto;"> <tr> <td align="center" valign="top" bgcolor="#24140e" style="background-color:#fff;"><!-- 600px container (white background) --> <table border="0" cellpadding="0" cellspacing="0" class="container" style="width:100%;border: solid 1px #d6d4d4;"> <tr> <td class="content" align="left" style="padding-top:0px;padding-bottom:12px;background-color:#25231F;"><table border="0" cellpadding="0" cellspacing="0" class="force-row" style="width:100%;"> <tr> <td align="center" valign="middle" class="content-wrapper" style="padding-left:24px;padding-right:24px"><br> <a href="http://merqary.nyusoft.in/"><img width="150px" src="http://merqary.nyusoft.in/assets/images/logo.png"/></a> </tr> </table></td> </tr> <tr> <td class="content" align="left" style="padding-top:0px;background-color:#fff"> <table border="0" cellpadding="0" cellspacing="0" class="force-row" style="width: 100%; border-bottom: solid 1px #ccc;"> <tr> <td class="content-wrapper" style="padding-left:24px;padding-right:24px"><br> <div class="title" style="font-family: Helvetica, Arial, sans-serif; font-size: 14px;color: #000;text-align: left; padding-top: 20px;"> Hi, ***FIRSTNAME***</div></td> </tr> <tr> <td class="cols-wrapper" style="padding-left:12px;padding-right:12px"><!--[if mso]> <table border="0" width="576" cellpadding="0" cellspacing="0" style="width: 576px;"> <tr> <td width="192" style="width: 192px;" valign="top"> <![endif]--> <table border="0" cellpadding="0" cellspacing="0" align="left" class="force-row" style="width: 100%;"> <tr> <td class="row" valign="top" style="padding-left:12px;padding-right:12px;padding-top:18px;padding-bottom:12px"><table border="0" cellpadding="0" cellspacing="0" style="width:100%;"> <tr> <td class="subtitle" style="font-family:Helvetica, Arial, sans-serif;font-size:14px;line-height:22px;font-weight:400;color:#333;padding-bottom:30px; text-align: left;"> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">Welcome to <strong>Your Ultimate Trading Card Universe.</strong></p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">We are beyond excited to have you join our passionate community.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">Now we don’t want to take up your time here, because everything you need is inside MERQARY, but we want you to know this MERQARY was conceived and purpose-built by traders and collectors, for traders and collectors, just like you with the primary goal of making your collecting life QUICKER, CHEAPER and EASIER.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">Our Mission is to help you <strong>Unleash Your Passion For Trading and Collecting!</strong>. And that’s exactly what MERQARY allows you to do.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">There are a wealth of features and benefits on the platform that you will love. And we’re constantly developing and adding to the platform for you.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">And just so we’re clear. You won’t be receiving streams of unnecessary emails (etc) from us, because to be honest we just don’t think that’s cool.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">Anything we do send you from time to time will be focused on making sure you’re getting the most out of MERQARY.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">And as we are still in the Beta phase of launch, we politely ask for your patience if you come across any bugs on the platform.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">Well that’s it. <a target="_blank" rel="noopener noreferrer" href="${FRONEND_BASE}?token=***VERIFICATION_TOKEN***" style="text-decoration: none">Click this link to confirm your email</a>,and get started.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">If you have any issues whatsoever please contact us directly at info@MERQARY.com because we want to know.</p> <p style="font-size:16px;margin:0;padding-bottom:20px;text-align:left;">We’ll see you on the inside and until then, have an absolutely incredible day.</p> </td> </tr> <tr> <td style="font-family: Helvetica, Arial, sans-serif;font-size: 14px;line-height: 22px;font-weight: 400;color: #333; padding-bottom: 30px;text-align: left;"><br>Cheers, </td> <td style="font-family: Helvetica, Arial, sans-serif;font-size: 14px;line-height: 22px;font-weight: 400;color: #333; padding-bottom: 30px;text-align: left;"><br>Brendan and Paul</td> <td style="font-family: Helvetica, Arial, sans-serif;font-size: 14px;line-height: 22px;font-weight: 400;color: #333; padding-bottom: 30px;text-align: left;"><br>MERQARY Founders</td> </table> <br></td> </tr> </table> </td> </tr> </table> </body> </html>`;
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/reset_password.mail.ts
require('dotenv').config(); const { FRONEND_RESET_PASSWORD } = process.env; export const resetPasswordTemplate = ` <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- So that mobile will display zoomed in --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- enable media queries for windows phone 8 --> <meta name="format-detection" content="telephone=no"> <!-- disable auto telephone linking in iOS --> <title>GMX</title> <style type="text/css"> body { margin: 0; padding: 0; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } table { border-spacing: 0; } table td { border-collapse: collapse; } .ExternalClass { width: 100%; } .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { line-height: 100%; } .ReadMsgBody { width: 100%; background-color: #ebebeb; } table { mso-table-lspace: 0pt; mso-table-rspace: 0pt; } img { -ms-interpolation-mode: bicubic; } .yshortcuts a { border-bottom: none !important; } .soc { margin: 0px; padding: 0px; display: block; text-align: center; } .soc ul { margin: 0px; padding: 0px; float: left; } .soc ul li { list-style: none; float: left; margin: 0px 9px 0px 0px; } @media screen and (max-width: 599px) { .force-row, .container { width: 100% !important; max-width: 100% !important; } } @media screen and (max-width: 400px) { .container-padding { padding-left: 12px !important; padding-right: 12px !important; } .col img { width: 100% !important; } } .ios-footer a { color: #aaaaaa !important; text-decoration: underline; } @media screen and (max-width: 599px) { .col { width: 100% !important; border-top: 1px solid #eee; padding-bottom: 0 !important; } .cols-wrapper { padding-top: 18px; } .img-wrapper { float: right; max-width: 40% !important; height: auto !important; margin-left: 12px; } .subtitle { margin-top: 0 !important; } } @media screen and (max-width: 400px) { .cols-wrapper { padding-left: 0 !important; padding-right: 0 !important; } .content-wrapper { padding-left: 12px !important; padding-right: 12px !important; } } </style> </head> <body style="margin:0; padding:0;" bgcolor="#F0F0F0" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <table border="0" width="80%" cellpadding="0" cellspacing="0" bgcolor="#24140e" style="margin: auto;"> <tr> <td align="center" valign="top" bgcolor="#24140e" style="background-color:#fff;"><!-- 600px container (white background) --> <table border="0" cellpadding="0" cellspacing="0" class="container" style="width:100%;border: solid 1px #d6d4d4;"> <tr> <td class="content" align="left" style="padding-top:0px;padding-bottom:12px;background-color:#25231F;"><table border="0" cellpadding="0" cellspacing="0" class="force-row" style="width:100%;"> <tr> <td align="center" valign="middle" class="content-wrapper" style="padding-left:24px;padding-right:24px"><br> <a href="http://gmx.nyusoft.in/"><img width="150px" src="http://gmx.nyusoft.in/assets/images/logo.png"/></a> </tr> </table></td> </tr> <tr> <td class="content" align="left" style="padding-top:0px;background-color:#fff"> <table border="0" cellpadding="0" cellspacing="0" class="force-row" style="width: 100%; border-bottom: solid 1px #ccc;"> <tr> <td class="cols-wrapper" style="padding-left:12px;padding-right:12px"><!--[if mso]> <table border="0" width="576" cellpadding="0" cellspacing="0" style="width: 576px;"> <tr> <td width="192" style="width: 192px;" valign="top"> <![endif]--> <table border="0" cellpadding="0" cellspacing="0" align="left" class="force-row" style="width: 100%;"> <tr> <td class="row" valign="top" style="padding-left:12px;padding-right:12px;padding-top:18px;padding-bottom:12px"><table border="0" cellpadding="0" cellspacing="0" style="width:100%;"> <tr> <td class="subtitle" style="font-family:Helvetica, Arial, sans-serif;font-size:14px;line-height:22px;font-weight:400;color:#333;padding-bottom:30px; text-align: left;"> <p style="font-size:30px;margin:0;max-width:450px;padding-bottom:20px;text-align:left;text-transform:uppercase">Password Reset</p> <p style="font-size:16px;margin:0;max-width:450px;padding-bottom:20px;text-align:left;">Seems like you forgot your password for GMX.</p> <p style="font-size:16px;margin:0;max-width:450px;padding-bottom:20px;text-align:left;">If this is true, click below to reset your password.</p> <p style="font-size:16px;margin:0;max-width:450px;padding-bottom:20px;text-align:left;">If you did not forgot your password you can safely ignore this email.</p> </td> </tr> <tr style="margin:0;text-align:center; padding-top:40px"> <td style="margin:0"> <a target="_blank" rel="noopener noreferrer" href="${FRONEND_RESET_PASSWORD}?token=***VERIFICATION_TOKEN***" style="text-decoration: none"> <div style="border-left-color:transparent;border-top-width:0;box-sizing:border-box;height:0;margin:0;width:80%"></div> <div style="height:16px;margin:0;text-align:center"><span style="color:#fff;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px!important;letter-spacing:1px;line-height:1em;margin:0;text-transform:uppercase;background:linear-gradient(270deg, rgb(61, 67, 145) 0%, rgb(165, 107, 0) 0%, rgb(255, 201, 77) 24%, rgb(255, 201, 77) 55%, rgb(179, 117, 0) 98%);padding:12px 14px;transform:skewX(-12deg);color:#fff;font-weight:bold">Reset My Password</span></div> <div style="border-bottom-width:0;border-right-color:transparent;box-sizing:border-box;height:0;margin:0;width:80%"></div> </a> </td> </tr> <tr> <td style="font-family: Helvetica, Arial, sans-serif;font-size: 14px;line-height: 22px;font-weight: 400;color: #333; padding-bottom: 30px;text-align: left;"><br>Thank You</td> </table> <br></td> </tr> </table> </td> </tr> </table> </body> </html>`;
0
/content/gmx-projects/gmx-admin/backend/src/mail-service
/content/gmx-projects/gmx-admin/backend/src/mail-service/templates/order-invoice.html
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <style type="text/css"> @page { margin: 50px 25px; } body, p { font-family: 'Poppins', sans-serif; font-style: normal; font-weight: normal; font-display: swap; font-size: smaller; color: #0C0F1E; line-height: 20px; margin: 0; } th, b, strong { font-weight: bold; } * { box-sizing: border-box; font-family: 'Poppins', sans-serif; font-style: normal; font-weight: normal; font-display: swap; } .color-white { color: white; } .color-2b5da7 { color: #2b5da7; } .color-0791bb { color: #0791bb; } .color-5b9bd5 { color: #5b9bd5; } .color-bb0707 { color: #bb0707; } .color-000000 { color: #000000; } .bg-color-2b5da7 { background-color: #2b5da7; } .bg-color-0799c3 { background-color: #0799c3; } .bg-color-5b9bd5 { background-color: #5b9bd5; } img { max-width: 100%; } .text-center { text-align: center; } .text-right { text-align: right; } .text-left { text-align: left; } .mtb-2 { margin: 2px 0 !important; } /************************************ */ .logo-wrap { text-align: center; } table { width: 100%; border-collapse: collapse; vertical-align: top; } table tr th, table tr td { padding: 5px 10px; text-align: left; } .custom-table th { padding: 5px 10px; font-size: smaller; font-family: 'Poppins', sans-serif; } .custom-table tr { border-bottom: 1px solid #dee2e6; } .custom-table tr td { vertical-align: top; font-size: smaller; font-family: 'Poppins', sans-serif; } .custom-table h3 { font-family: 'Poppins', sans-serif; font-size: 14px; margin-bottom: 0; line-height: 10px; } .table-bordered { border: 1px solid #dee2e6; } .table-bordered th, .table-bordered td { padding: 3px 10px; font-family: 'Poppins', sans-serif; border: 1px solid #dee2e6; font-size: smaller; } .custom-table td p { margin: 0; } .card { position: relative; margin-top: 25px; margin-bottom: 25px; padding: 20px; border-radius: 25px; border: 2px solid #0C0F1E; } ul, li { list-style: none; } ul.custom-list li { display: inline-block; text-align: center; } </style> </head> <body> <div style="display: inline-block; width: 100%;"> <table style="margin-bottom: 0px;"> <tbody> <tr> <th class="text-center"> <div class="text-center" style="margin-bottom:30px;"> <img src="https://assets.greenmarketexchange.com/settings/main-logo.png" width="180px" /> </div> </th> </tr> </tbody> </table> </div> <div style="display: inline-block; width: 100%;"> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> <b>Invoice#: <span>{{invoiceId}}</span></b> </p> </th> </tr> </tbody> </table> </div> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:100%;"> <tbody> <tr> <th class="text-left"> <p class="text-left mtb-2"> <b>Order Date: <span>{{orderDate}}</span></b> </p> </th> </tr> </tbody> </table> </div> </div> <div style="display: inline-block; width: 100%;margin-bottom: 20px;"> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:80%;"> <tbody> <tr> <th class="text-left" style="background-color:#dee1e6"> <p class="text-left mtb-2"> <b>Buyer: License #{{retailerLicenseNumber}}</b> </p> </th> </tr> <tr> <th> <p class="text-left">{{retailerCompanyName}}</p> <p class="text-left">{{retailerAddress}} {{retailerZipCode}}</p> <p class="text-left">Phone Number: {{retailerPhone}}</p> <p class="text-left">Email: {{retailerEmail}}</p> </th> </tr> </tbody> </table> </div> <div style="display: inline-block; width: 48%; vertical-align: top;"> <table style="width:80%;"> <tbody> <tr> <th class="text-left" style="background-color:#dee1e6"> <p class="text-left mtb-2"> <b>Seller: License #{{brandLicenseNumber}}</b> </p> </th> </tr> <tr> <th> <p class="text-left">{{brandCompanyName}}</p> <p class="text-left">{{brandAddress}} {{brandZipCode}}</p> <p class="text-left">Phone Number: {{brandPhone}}</p> <p class="text-left">Email: {{brandEmail}}</p> </th> </tr> </tbody> </table> </div> </div> <table class="custom-table" style="margin-bottom: 20px;"> <thead style="background-color: #FFF"> <tr> <th class="color-000000">Product</th> <th class="color-000000">Details</th> <th class="color-000000">Units Per Package</th> <th class="color-000000">Package Price</th> <th class="color-000000">Package</th> <th class="color-000000 text-center">Delivery Date</th> <th class="color-000000 text-center">Status</th> <th class="color-000000">Total</th> </tr> </thead> <tbody> {{#each orderInvoiceItems}} <tr> <td class="text-left"> <p>{{this.productTitle}}</p> <p>({{this.categoryTitle}})</p> </td> <td class="text-left"> {{#ifCond this.productThc '!==' ''}} <p>THC%: {{this.productThc}} %</p>{{/ifCond}} {{#ifCond this.productFlavor '!==' ''}} <p>Flavor: {{this.productFlavor}}</p>{{/ifCond}} {{#ifCond this.productDominant '!==' ''}} <p>Dominant terprene: {{this.productDominant}}</p>{{/ifCond}} </td> <td class="text-left"> <p>{{this.unitPerPackage}}</p> </td> <td class="text-left"> <p>{{this.displayPrice}}</p> </td> <td class="text-left"> <p>{{this.quantity}}</p> </td> <td class="text-center"> <p>{{this.deliveryDate}}</p> </td> <td class="text-center"> <p>{{this.orderStatus}}</p> </td> <td> {{#ifCond this.offerTotal '>' 0}} <p>{{this.totalPrice}}</p> <p>-{{this.displayOfferTotal}} <small>{{this.offerTitle}}</small></p> <hr/> <p>{{this.displayFinalTotal}}</p> {{/ifCond}} <p>{{this.displayFinalTotal}}</p> </td> </tr> {{/each}} </tbody> <tfoot style="border-top:1px solid #dee2e6"> <tr style="border-bottom:none;"> <td colspan="6"></td> <td class="text-right"> {{#ifCond this.offerTotal '>' 0}} <p><strong>Order Total</strong></p> <p><strong>Discounts</strong></p> <p><strong>Adjusted Total</strong></p> {{/ifCond}} <p><strong>Order Total:</strong></p> </td> <td class="text-left"> {{#ifCond this.offerTotal '>' 0}} <p>{{orderTotal}}</p> <p>-{{displayOfferTotal}} <small>{{offerTitle}}</small></p> <p>{{finalOrderTotal}}</p> {{/ifCond}} <p>{{finalOrderTotal}}</p> </td> </tr> </tfoot> </table> <h3 class="color-000000" style="font-size: smaller;margin-top: 0;padding: 0 10px;"><b>Signatures:</b></h3> <table class="custom-table" style="margin-bottom: 20px;"> <tr> <td style="width: 33.33%;padding: 15px 10px;">Released By:</td> <td style="width: 33.33%;padding: 15px 10px;">Signature:</td> <td style="width: 33.33%;padding: 15px 10px;">Date:</td> </tr> <tr> <td style="width: 33.33%;padding: 15px 10px;">Received By:</td> <td style="width: 33.33%;padding: 15px 10px;">Signature:</td> <td style="width: 33.33%;padding: 15px 10px;">Date:</td> </tr> <tr> <td style="width: 33.33%;padding: 15px 10px;">Payment Collected By:</td> <td style="width: 33.33%;padding: 15px 10px;">Signature:</td> <td style="width: 33.33%;padding: 15px 10px;">Date:</td> </tr> </table> <div class="text-center" style="margin-top:100px; text-align : center;"> <p style="font-size: smaller;">Copyright © {{year}} {{siteName}}</p> </div> </body> </html>
0
/content/gmx-projects/gmx-admin/backend/src
/content/gmx-projects/gmx-admin/backend/src/constants/app.constant.ts
require('dotenv').config(); const { JWT_SECRET } = process.env; export class AppConstants { static jwtSecret = JWT_SECRET; }
0
/content/gmx-projects/gmx-admin/backend/src/common
/content/gmx-projects/gmx-admin/backend/src/common/dto/response.dto.ts
import { IResponse } from '../interfaces/response.interface'; export class ResponseError implements IResponse { constructor(infoMessage: string, data?: any) { this.status = false; this.message = infoMessage; this.data = data; console.warn( new Date().toString() + ' - [Response]: ' + infoMessage + (data ? ' - ' + JSON.stringify(data) : ''), ); } message: string; data: any[]; status: boolean; } export class ResponseSuccess implements IResponse { constructor(infoMessage: string, data?: any) { this.status = true; this.message = infoMessage; this.data = data; } message: string; data: any[]; success: boolean; status: boolean; }
0
/content/gmx-projects/gmx-admin/backend/src/common
/content/gmx-projects/gmx-admin/backend/src/common/interfaces/response.interface.ts
export interface IResponse { status: boolean; message: string; data: any; }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/axis-point/axispoint.controller.ts
import { Body, Controller, Get, Post } from '@nestjs/common'; import { ResponseSuccess } from 'src/common/dto/response.dto'; import { AxisPointService } from './axispoint.service'; @Controller() export class AxisPointController { constructor(private readonly axisPointService: AxisPointService) {} @Get() async getMedia() { const media = await this.axisPointService.getMedia(); return new ResponseSuccess('media', media); } @Post() async storeMedia(@Body() media: any) { const data = await this.axisPointService.storeMedia(media); return new ResponseSuccess('data', data); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/axis-point/axispoint.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { AxisPoint } from 'src/models/axisPoint.model'; import { AxisPointController } from './axispoint.controller'; import { AxisPointService } from './axispoint.service'; @Module({ imports: [SequelizeModule.forFeature([AxisPoint])], controllers: [AxisPointController], providers: [AxisPointService], }) export class AxisPointModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/axis-point/axispoint.service.ts
import { Injectable } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { AxisPoint } from 'src/models/axisPoint.model'; @Injectable() export class AxisPointService { constructor( @InjectModel(AxisPoint) private axisPointModel: typeof AxisPoint, ) {} async storeMedia(media: any) { console.log(media); } async getMedia() { const axisPointMedia = await this.axisPointModel.findAll({ where: { isActive: '1' }, }); return axisPointMedia; } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/orders/orders.service.ts
import { BadRequestException, Injectable, NotFoundException, } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { Op } from 'sequelize'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Brand } from 'src/models/brand.model'; import { Category } from 'src/models/category.model'; import { Drivers } from 'src/models/drivers.model'; import { Order } from 'src/models/order.model'; import { OrderInvoice } from 'src/models/orderInvoice.model'; import { Product } from 'src/models/product.model'; import { Retailer } from 'src/models/retailer.model'; import { Review } from 'src/models/review.model'; import { User } from 'src/models/user.model'; import { HelperService } from 'src/services/Helper.service'; import { invoiceTemplate } from '../../mail-service/templates/order.invoice'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { OrderInvoiceDto } from './dto/order-invoice-update'; import { ReviewDto } from './dto/review.dto'; import { OrderInvoiceItems } from 'src/models/orderInvoiceItems.model'; import { BrandCompany } from 'src/models/brandCompany.model'; import { OrderInvoiceItemDto } from './dto/order-invoice-item-update'; import { title } from 'process'; import { Stores } from 'src/models/stores.model'; const pdf = require('pdf-creator-node'); const moment = require('moment'); const { FRONEND_BASE_URL, SITE_NAME } = process.env; @Injectable() export class OrdersService { constructor( @InjectModel(Product) private productModel: typeof Product, @InjectModel(User) private userModel: typeof User, @InjectModel(Order) private OrderModel: typeof Order, @InjectModel(OrderInvoice) private orderInvoiceModel: typeof OrderInvoice, @InjectModel(OrderInvoiceItems) private orderInvoiceItemsModel: typeof OrderInvoiceItems, @InjectModel(Drivers) private driverModel: typeof Drivers, @InjectModel(Brand) private brandModel: typeof Brand, @InjectModel(Review) private reviewModel: typeof Review, private mailService?: MailServiceService, ) {} async retailerOrders( jwtUserDTO: JwtUserDTO, category: string, sortBy: string, keyword: string, offset = 0, limit = 10, ) { let optionalFilter = {}; let dynamicSort = 'desc'; if (sortBy && ['asc', 'desc'].includes(sortBy)) { dynamicSort = sortBy; } if (category) { optionalFilter = { ...optionalFilter, categoryId: category }; } const { count, rows: orders } = await this.OrderModel.findAndCountAll({ include: [ { model: OrderInvoice, include: [ { model: OrderInvoiceItems, include: [ { model: Product, include: [ { model: Brand, }, { model: Category, }, ] }, ] }, { model: User, }, { model: BrandCompany, }, { model: Brand, }, ], }, ], where: { retailerId: jwtUserDTO.id, isActive: '1', [Op.and]: [ { [Op.or]: [ { orderId: { [Op.like]: `%${keyword}%` } }, //{'$product.title$': { [Op.like]: `%${keyword}%` }} ], }, ], ...optionalFilter, }, order: [['id', dynamicSort]], offset: offset ? offset * limit : 0, limit: limit, }); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), orders: orders, }; } async sellerOrders( jwtUserDTO: JwtUserDTO, category: string, sortBy: string, keyword: string, offset = 0, limit = 10, ) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new NotFoundException(); let optionalFilter = {}; let dynamicSort = 'desc'; if (sortBy && ['asc', 'desc'].includes(sortBy)) { dynamicSort = sortBy; } if (category) { optionalFilter = { ...optionalFilter, categoryId: category }; } const { count, rows: orders } = await this.orderInvoiceModel.findAndCountAll({ include: [ { model: OrderInvoiceItems, include: [ { model: Product, include: [ { model: Brand, }, { model: Category, }, ] }, ] }, { model: User, include:[ { model: Retailer, } ] }, { model: BrandCompany, }, { model: Brand, }, ], where: { brandCompanyId: user?.currentBrandCompanyId, isActive: '1', [Op.and]: [ { [Op.or]: [ { invoiceId: { [Op.like]: `%${keyword}%` } }, //{'$product.title$': { [Op.like]: `%${keyword}%` }} ], }, ], ...optionalFilter, }, order: [['id', dynamicSort]], offset: offset ? offset * limit : 0, limit: limit, }); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), orders: orders, }; } async updateOrders( jwtUserDTO: JwtUserDTO, invoiceItemId: string, action: string, declineReason: any, ) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new BadRequestException('Something went wrong'); const orderInvoiceItem = await this.orderInvoiceItemsModel.findOne({ include: [ { model: OrderInvoice, attributes: ['id', 'invoiceId', 'paymentDue', 'paymentStatus', 'managerName'] }, { model: Brand, attributes: ['id', 'brandName'], include: [ { model: User, attributes: ['id', 'name', 'email'] }, ] }, { model: User, attributes: ['id', 'name', 'email'] }, { model: Product, attributes: ['id', 'title'] } ], attributes: ['id','unitPerPackage', 'price', 'total', 'finalTotal', 'quantity', 'deliveryDate', 'brandId', 'orderInvoiceId', 'orderId'], where: { id: invoiceItemId }, }); if (!orderInvoiceItem) throw new BadRequestException('Something went wrong'); const retailerTemplateIds = { confirmed: 9, declined: 11, completed: 17, }; const brandTemplateIds = { // placed: 8, // accepted: 10, // cancelled: 12, // delivered: 14, // received: 16, completed: 18, }; let status: string, message: string, retailerMailTitle: string, sellerMailTitle: string; if (action === 'confirmed') { status = '2'; message = 'You Have Confirmed The Order'; retailerMailTitle = 'Your Order Has Been Confirmed'; } else if (action === 'declined') { status = '3'; message = 'You Have Declined The Order'; retailerMailTitle = 'Brand Has Declined The Order'; sellerMailTitle = message; } else if (action === 'completed') { if (orderInvoiceItem.orderInvoice.paymentStatus == 2) { throw new BadRequestException( 'Please change the payment status from unpaid to paid.', ); } status = '4'; message = 'Order status has been updated to completed'; retailerMailTitle = 'Your Order Has Been Completed'; sellerMailTitle = 'You Got an Order Review'; } let responseStatus; let updateObj = { status: status, declineReason: null, declinedBy: null, declinedAt: null, }; if (action === 'declined') { // Update order and order invoice total const order = await this.OrderModel.findOne({ where: { id: orderInvoiceItem?.orderId } }); if(order) { const orderTotal = order.finalTotal - orderInvoiceItem.finalTotal order.update({ total: orderTotal, finalTotal: orderTotal }); } const orderInvoice = await this.orderInvoiceModel.findOne({ where: { id: orderInvoiceItem?.orderInvoiceId, brandId: user?.id } }); if(orderInvoice) { const orderInvoiceTotal = orderInvoice.finalTotal - orderInvoiceItem.finalTotal orderInvoice.update({ total: orderInvoiceTotal, finalTotal: orderInvoiceTotal }); } let declinedById = user.id; updateObj = { ...updateObj, declineReason: declineReason.declineReason, declinedBy: declinedById, declinedAt: new Date(), ...{ total: 0, finalTotal: 0 }, }; } await orderInvoiceItem .update(updateObj) .then(async () => { if (action === 'completed') { // Start update order status completed const { count: countOrderInvoice } = await this.orderInvoiceItemsModel.findAndCountAll({ where: { orderInvoiceId: orderInvoiceItem?.orderInvoiceId, brandId: user?.id, status: { [Op.not]: [3] } }, }); const { count: countOrderInvoiceCompleted } = await this.orderInvoiceItemsModel.findAndCountAll({ where: { orderInvoiceId: orderInvoiceItem?.orderInvoiceId, brandId: user?.id, status: 4 }, }); if(countOrderInvoice === countOrderInvoiceCompleted) { await this.orderInvoiceModel.update({ status: "4" }, { where: { id: orderInvoiceItem?.orderInvoiceId, brandId: orderInvoiceItem?.brandId } }); } // End update order status completed } responseStatus = { message, status: true, }; }) .catch(function (err) { console.log(err); responseStatus = { err, status: false, }; }); if (responseStatus.status) { const helperService = new HelperService(); const retailerData = { INVOICE_ID: orderInvoiceItem?.orderInvoice ? `# ${orderInvoiceItem?.orderInvoice?.invoiceId}` : '-', TITLE: retailerMailTitle, PRODUCT: orderInvoiceItem?.product ? orderInvoiceItem?.product?.title : '-', BRAND: orderInvoiceItem?.brand ? orderInvoiceItem.brand?.brandName : '-', UNITS_PER_PACKAGE: orderInvoiceItem?.unitPerPackage ? orderInvoiceItem?.unitPerPackage : '-', PACKAGE_PRICE: orderInvoiceItem?.displayPrice ? orderInvoiceItem?.displayPrice : '-', PACKAGE: orderInvoiceItem?.quantity ? orderInvoiceItem?.quantity : '-', DELIVERY_DATE: orderInvoiceItem?.deliveryDate ? moment(orderInvoiceItem?.deliveryDate).format("DD MMM 'YY") : '-', PAYMENT_DUE: orderInvoiceItem?.orderInvoice?.paymentDue ? moment(orderInvoiceItem?.orderInvoice?.paymentDue).format("DD MMM 'YY") : '-', PAYMENT_STATUS: orderInvoiceItem?.orderInvoice?.paymentStatus === 1 ? 'Paid' : 'Unpaid', TOTAL: orderInvoiceItem.finalOrderTotal, MESSAGE: declineReason?.declineReason ? declineReason?.declineReason : '-', LINK: FRONEND_BASE_URL + '/my-orders', }; const retailerEmailContent = await helperService.emailTemplateContent( retailerTemplateIds[action], retailerData, ); this.mailService.sendMail( orderInvoiceItem?.retailer?.email, retailerEmailContent.subject, retailerEmailContent.body, ); if (orderInvoiceItem?.status?.toString() === "4") { const brandData = { INVOICE_ID: orderInvoiceItem?.orderInvoice ? `# ${orderInvoiceItem?.orderInvoice?.invoiceId}` : '-', TITLE: sellerMailTitle, CUSTOMER: orderInvoiceItem?.orderInvoice?.managerName ? orderInvoiceItem?.orderInvoice?.managerName : '-', UNITS_PER_PACKAGE: orderInvoiceItem?.unitPerPackage ? orderInvoiceItem?.unitPerPackage : '-', PACKAGE_PRICE: orderInvoiceItem?.displayPrice ? orderInvoiceItem?.displayPrice : '-', PACKAGE: orderInvoiceItem?.quantity ? orderInvoiceItem?.quantity : '-', DELIVERY_DATE: orderInvoiceItem?.deliveryDate ? moment(orderInvoiceItem?.deliveryDate).format("DD MMM 'YY") : '-', PAYMENT_DUE: orderInvoiceItem?.orderInvoice?.paymentDue ? moment(orderInvoiceItem?.orderInvoice?.paymentDue).format("DD MMM 'YY") : '-', PAYMENT_STATUS: orderInvoiceItem?.orderInvoice?.paymentStatus === 1 ? 'Paid' : 'Unpaid', TOTAL: orderInvoiceItem.finalOrderTotal, LINK: FRONEND_BASE_URL + '/orders', }; const brandEmailContent = await helperService.emailTemplateContent( brandTemplateIds[action], brandData, ); this.mailService.sendMail( orderInvoiceItem?.brand?.user?.email, brandEmailContent.subject, brandEmailContent.body, ); } } return responseStatus; } // async updateOrders( // jwtUserDTO: JwtUserDTO, // orderId: string, // action: string, // declineReason: any, // ) { // const user = await this.userModel.findOne({ // include: [Brand], // where: { id: jwtUserDTO.id }, // }); // if (!user) throw new BadRequestException('Something went wrong'); // let columnName: string; // let matchId: number; // if (+user.role === 3) { // matchId = user.id; // columnName = 'retailerId'; // } else { // //matchId = user.brand ? user.brand.id : null; // matchId = null; // columnName = 'brandId'; // } // const order = await this.OrderModel.findOne({ // include: [ // { // model: User, // }, // Brand, // Drivers, // { // //model: OrderItem, // include: [ // { // model: Product, // }, // Category, // ], // }, // ], // where: { orderId, [columnName]: matchId }, // }); // if (!order) throw new BadRequestException('Something went wrong'); // const retailerTemplateIds = { // confirmed: 9, // declined: 11, // completed: 17, // }; // const brandTemplateIds = { // placed: 8, // accepted: 10, // cancelled: 12, // delivered: 14, // received: 16, // completed: 18, // }; // let status: string, // message: string, // retailerMailTitle: string, // sellerMailTitle: string; // if (action === 'confirmed') { // // if(order.driverId === null) { // // throw new BadRequestException('Please select driver, delivery date and payment due.'); // // } else if(order.deliveryDate === null){ // // throw new BadRequestException('Please select delivery date.'); // // } else if(order.paymentDue === null) { // // throw new BadRequestException('Please select payment due.'); // // } // status = '2'; // message = 'You Have Confirmed The Order'; // retailerMailTitle = 'Your Order Has Been Confirmed'; // } else if (action === 'declined') { // status = '3'; // message = 'You Have Declined The Order'; // if (+user.role === 3) { // retailerMailTitle = message; // sellerMailTitle = 'Retailer Has Declined The Order'; // } else { // retailerMailTitle = 'Brand Has Declined The Order'; // sellerMailTitle = message; // } // } else if (action === 'completed') { // if (order.paymentStatus == 2) { // throw new BadRequestException( // 'Please change the payment status from unpaid to paid.', // ); // } // status = '4'; // message = 'Order status has been updated to completed'; // retailerMailTitle = 'Your Order Has Been Completed'; // sellerMailTitle = 'You Got an Order Review'; // } // let responseStatus; // let updateObj = { // status: status, // declineReason: null, // declinedBy: null, // declinedAt: null, // }; // if (action === 'declined') { // if (+user.role === 3) { // var declinedById = user.id; // } else { // // var declinedById = user.brand.id; // var declinedById = user.id; // } // updateObj = { // ...updateObj, // declineReason: declineReason.declineReason, // declinedBy: declinedById, // declinedAt: new Date(), // }; // } // await order // .update(updateObj) // .then(async function () { // responseStatus = { // message, // status: true, // }; // }) // .catch(function (err) { // responseStatus = { // err, // status: false, // }; // }); // if (responseStatus.status) { // const helperService = new HelperService(); // if (order.status === 5) { // const brandData = { // ORDER_ID: '#' + order.orderId, // TITLE: sellerMailTitle, // CUSTOMER: order?.retailer ? order?.retailer?.name : '-', // MANIFEST: order?.manifest ? order?.manifest : '-', // DRIVER_NAME: order?.driver?.driversName // ? order?.driver?.driversName // : '-', // DELIVERY_DATE: order?.deliveryDate // ? moment(order.deliveryDate).format("DD MMM 'YY") // : '-', // PAYMENT_DUE: order.paymentDue // ? moment(order?.paymentDue).format("DD MMM 'YY") // : '-', // PAYMENT_STATUS: order.paymentStatus === 1 ? 'Paid' : 'Unpaid', // TOTAL: order.finalOrderTotal, // LINK: FRONEND_BASE_URL + '/orders', // }; // const brandEmailContent = await helperService.emailTemplateContent( // brandTemplateIds[action], // brandData, // ); // this.mailService.sendMail( // order.brand.user.email, // brandEmailContent.subject, // brandEmailContent.body, // ); // } else { // const retailerData = { // ORDER_ID: '#' + order.orderId, // TITLE: retailerMailTitle, // BRAND: order?.brand ? order.brand?.brandName : '-', // MANIFEST: order?.manifest ? order?.manifest : '-', // DRIVER_NAME: order?.driver?.driversName // ? order?.driver?.driversName // : '-', // DELIVERY_DATE: order?.deliveryDate // ? moment(order?.deliveryDate).format("DD MMM 'YY") // : '-', // PAYMENT_DUE: order.paymentDue // ? moment(order.paymentDue).format("DD MMM 'YY") // : '-', // PAYMENT_STATUS: order.paymentStatus === 1 ? 'Paid' : 'Unpaid', // TOTAL: order.finalOrderTotal, // MESSAGE: declineReason?.declineReason // ? declineReason?.declineReason // : '-', // LINK: FRONEND_BASE_URL + '/my-orders', // }; // const retailerEmailContent = await helperService.emailTemplateContent( // retailerTemplateIds[action], // retailerData, // ); // this.mailService.sendMail( // order.retailer.email, // retailerEmailContent.subject, // retailerEmailContent.body, // ); // } // } // return responseStatus; // } async getOrderInvoice(jwtUserDTO: JwtUserDTO, invoiceId: string) { const orderInvoice = await this.orderInvoiceModel.findOne({ include: [ { model: Brand, }, { model: OrderInvoiceItems, include: [ { model: Product, }, ], where: { status: { [Op.not]: [3] } } }, ], where: { invoiceId, retailerId: jwtUserDTO.id }, }); return orderInvoice; } async notifyRetailer(jwtUserDTO: JwtUserDTO, invoiceItemId: string) { try { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new BadRequestException('Something went wrong'); const orderInvoiceItem = await this.orderInvoiceItemsModel.findOne({ include: [ { model: OrderInvoice, attributes: ['id', 'invoiceId', 'paymentDue', 'paymentStatus'] }, { model: Brand, attributes: ['id', 'brandName'], include: [ { model: User, attributes: ['id', 'name', 'email'] }, ] }, { model: User, attributes: ['id', 'name', 'email'] }, { model: Product, attributes: ['id', 'title'] } ], attributes: ['id','unitPerPackage', 'price', 'finalTotal', 'quantity', 'deliveryDate', 'status'], where: { id: invoiceItemId }, }); if (!orderInvoiceItem) throw new BadRequestException('Something went wrong'); const retailerTemplateIds = { 2: 9, 3: 11, 4: 17, }; let retailerMailTitle: string, sellerMailTitle: string; if (orderInvoiceItem.status == 2) { retailerMailTitle = 'Your Order Has Been Confirmed'; } else if (orderInvoiceItem.status == 3) { retailerMailTitle = 'Brand Has Declined The Order'; } else if (orderInvoiceItem.status == 4) { retailerMailTitle = 'Your Order Has Been Completed'; sellerMailTitle = 'You Got an Order Review'; } if (retailerTemplateIds[orderInvoiceItem.status]) { const helperService = new HelperService(); const retailerData = { INVOICE_ID: orderInvoiceItem?.orderInvoice ? `# ${orderInvoiceItem?.orderInvoice?.invoiceId}` : '-', TITLE: retailerMailTitle, PRODUCT: orderInvoiceItem?.product ? orderInvoiceItem?.product?.title : '-', BRAND: orderInvoiceItem?.brand ? orderInvoiceItem.brand?.brandName : '-', UNITS_PER_PACKAGE: orderInvoiceItem?.unitPerPackage ? orderInvoiceItem?.unitPerPackage : '-', PACKAGE_PRICE: orderInvoiceItem?.displayPrice ? orderInvoiceItem?.displayPrice : '-', PACKAGE: orderInvoiceItem?.quantity ? orderInvoiceItem?.quantity : '-', DELIVERY_DATE: orderInvoiceItem?.deliveryDate ? moment(orderInvoiceItem?.deliveryDate).format("DD MMM 'YY") : '-', PAYMENT_DUE: orderInvoiceItem?.orderInvoice?.paymentDue ? moment(orderInvoiceItem?.orderInvoice?.paymentDue).format("DD MMM 'YY") : '-', PAYMENT_STATUS: orderInvoiceItem?.orderInvoice?.paymentStatus === 1 ? 'Paid' : 'Unpaid', TOTAL: orderInvoiceItem.finalOrderTotal, MESSAGE: orderInvoiceItem.declineReason ? orderInvoiceItem.declineReason : '-', LINK: FRONEND_BASE_URL + '/my-orders', }; const retailerEmailContent = await helperService.emailTemplateContent( retailerTemplateIds[orderInvoiceItem.status], retailerData, ); const subject = `Details for your order have been updated: #${orderInvoiceItem?.orderInvoice?.invoiceId}`; this.mailService.sendMail( orderInvoiceItem?.retailer?.email, subject, retailerEmailContent.body, ); } return true; } catch(e) { console.log(e); } } async postReview( jwtUserDTO: JwtUserDTO, invoiceId: string, reviewDto: ReviewDto, ) { const user = await this.userModel.findOne({ include: [Brand], where: { id: jwtUserDTO.id }, }); if (!user) throw new BadRequestException('Something went wrong'); const orderInvoice = await this.orderInvoiceModel.findOne({ include: [ { model: Brand, }, { model: OrderInvoiceItems, include: [ { model: Product, }, ] }, ], where: { invoiceId, retailerId: jwtUserDTO.id }, }); if (!orderInvoice) throw new BadRequestException('Something went wrong'); if (reviewDto?.products) { reviewDto?.products.map(async (item) => { await this.reviewModel.create({ type: 1, orderId: orderInvoice.orderId, productId: item.id, brandId: orderInvoice.brandId, retailerId: orderInvoice.retailerId, ratings: item.quality_rating, description: item.quality_review, }); // update product review avarge and count const totalProductReviews = await this.reviewModel.count({ where: { productId: item.id, type: 1, }, }); const productRatingsSum = await this.reviewModel.sum('ratings', { where: { productId: item.id, type: 1, }, }); const avgRating = productRatingsSum / totalProductReviews; await this.productModel.update( { avgProductRating: avgRating, reviewsProductCount: totalProductReviews, }, { where: { id: item.id, }, }, ); }); } const reviewData = { dot: { type: 2, ratings: reviewDto.dot_rating, description: reviewDto.dot_review, }, general: { type: 3, ratings: reviewDto.general_rating, description: reviewDto.general_review, }, }; for (const key in reviewData) { if (Object.prototype.hasOwnProperty.call(reviewData, key)) { const element = reviewData[key]; await this.reviewModel.create({ //productId: order.productId, orderId: orderInvoice.orderId, brandId: orderInvoice.brandId, retailerId: orderInvoice.retailerId, ...element, }); } } await this.orderInvoiceItemsModel.update({ status: 5 }, { where: { orderInvoiceId: orderInvoice?.id, retailerId: jwtUserDTO.id } }); // Start update reviewed status const { count: countOrderInvoiceItems } = await this.orderInvoiceItemsModel.findAndCountAll({ where: { orderInvoiceId: orderInvoice?.id, brandId: user?.id, status: { [Op.not]: [4, 5] } }, }); if(countOrderInvoiceItems === 0) { await orderInvoice.update({ status: 5 }); } // End update reviewed status const productQualityReviewsCount = await this.reviewModel.count({ where: { brandId: orderInvoice.brandId, type: 1, }, }); const productQualityReviewsSum = await this.reviewModel.sum('ratings', { where: { brandId: orderInvoice.brandId, type: 1, }, }); const productQualityReviewsAvg = productQualityReviewsSum / productQualityReviewsCount; const dotCount = await this.reviewModel.count({ where: { brandId: orderInvoice.brandId, type: 2, }, }); const dotSum = await this.reviewModel.sum('ratings', { where: { brandId: orderInvoice.brandId, type: 2, }, }); const dotAvg = dotSum / dotCount; const generalCount = await this.reviewModel.count({ where: { brandId: orderInvoice.brandId, type: 3, }, }); const generalSum = await this.reviewModel.sum('ratings', { where: { brandId: orderInvoice.brandId, type: 3, }, }); const { count: countOrders } = await this.orderInvoiceItemsModel.findAndCountAll({ where: { brandId: orderInvoice.brandId, status: { [Op.or]: [4, 5] } }, }); const generalAvg = generalSum / generalCount; await this.brandModel.update( { avgProductRating: productQualityReviewsAvg, reviewsProductCount: productQualityReviewsCount, avgDOTRating: dotAvg, reviewsDOTCount: dotCount, avgGeneralRating: generalAvg, reviewsGeneralCount: generalCount, avgRating: productQualityReviewsAvg + dotAvg + generalAvg, totalOrdersCompleted: countOrders, }, { where: { id: orderInvoice.brandId }, }, ); // Email - Retailer rates to brand const ProductsReviews = await this.reviewModel.findAll({ include: [ { model: Product, }, ], where: { orderId: orderInvoice.orderId, type: 1, }, }); let templateHtml = ''; if (ProductsReviews && ProductsReviews.length > 0) { templateHtml += `<table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding: 10px 0"> <tbody> <tr> <td style="width:100%;"> <div style="font-family: Arial, sans-serif, 'Open Sans';margin-top: 0px;margin-bottom: 0px;font-size: 18px;line-height: 0px;max-width: 584px;color: #82899a;text-align: left; margin-left: 15px;"> <p style="margin: 0;"><strong style="color: #242b3d;">Product Review</strong></p> <hr style="margin: 1rem 0; color: inherit; border: 0; border-top: 1px solid; opacity: .25;"> </div> </td> </tr>`; ProductsReviews.map((item) => { templateHtml += `<tr> <td style="width:100%;"> <div style="font-family: Arial, sans-serif, 'Open Sans';margin-top: 10px;margin-bottom: 0px;font-size: 16px;line-height: 20px;max-width: 584px;color: #82899a;text-align: left; margin-left: 15px;"> <p style="margin: 0;"><strong style="color: #242b3d;">${item?.product?.title}</strong></p> <p style="margin-top: 0; margin-bottom: 0px;"><strong style="color: #242b3d;">Product Quality :</strong> ${item?.ratings}</p> <p style="margin-top: 0; margin-bottom: 0px;"><strong style="color: #242b3d;">Review:</strong> ${item?.description}</p> </div> </td> </tr>`; }); templateHtml += `</tbody></table>`; } const brand = await this.userModel.findOne({ where: { id: orderInvoice?.brand?.userId }, }); const deliveryOnTimeReview = await this.reviewModel.findOne({ where: { orderId: orderInvoice.orderId, type: 2, }, }); const generalReview = await this.reviewModel.findOne({ where: { orderId: orderInvoice.orderId, type: 3, }, }); const helperService = await new HelperService(); const userData = { ORDER_ID: '#' + orderInvoice.invoiceId, PRODUCTS_CONTENT: templateHtml, BRAND: orderInvoice.brand ? orderInvoice.brand.brandName : '-', DELIVERY_ON_TIME_RATINGS: deliveryOnTimeReview?.ratings, DELIVERY_ON_TIME_REVIEW: deliveryOnTimeReview?.description, RESPONSE_RATINGS: generalReview?.ratings, RESPONSE_REVIEW: generalReview?.description, }; const emailContent = await helperService.emailTemplateContent(27, userData); await this.mailService.sendMail( brand?.email, emailContent.subject, emailContent.body, ); return true; } async updateOrderDetail( jwtUserDTO: JwtUserDTO, invoiceId: string, orderInvoiceDto: OrderInvoiceDto, ) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new BadRequestException('Something went wrong'); const orderInvoice = await this.orderInvoiceModel.findOne({ where: { invoiceId }, }); if (!orderInvoice) throw new BadRequestException('Something went wrong'); let responseStatus; await orderInvoice .update(orderInvoiceDto) .then(async function () { responseStatus = { message: 'Order invoice detail updated.', status: true, }; }) .catch(function (err) { responseStatus = { err, status: false, }; }); return responseStatus; } async updateOrderInvoiceItemDetail( jwtUserDTO: JwtUserDTO, invoiceItemId: string, orderInvoiceItemDto: OrderInvoiceItemDto, ) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new BadRequestException('Something went wrong'); const orderInvoiceItem = await this.orderInvoiceItemsModel.findOne({ where: { id: invoiceItemId }, }); if (!orderInvoiceItem) throw new BadRequestException('Something went wrong'); let responseStatus; await orderInvoiceItem .update(orderInvoiceItemDto) .then(async function () { responseStatus = { message: 'Order invoice detail updated.', status: true, }; }) .catch(function (err) { responseStatus = { err, status: false, }; }); return responseStatus; } /* Generate invoice start */ async generateInvoice(jwtUserDTO: JwtUserDTO, invoiceId: string) { const orderInvoiceItem = await this.orderInvoiceModel.findOne({ include: [ { model: OrderInvoiceItems, attributes: ['id','unitPerPackage', 'price', 'total', 'finalTotal', 'quantity', 'deliveryDate', 'status'], include: [ { model: Product, attributes: ['id', 'title', 'thc', 'flavor', 'dominant'], include: [ { model: Brand, attributes: ['id', 'brandName'], }, ] }, { model: Category, attributes: ['id', 'title'] } ], }, { model: Brand, attributes: ['id', 'brandName'], include: [ { model: User, attributes: ['id', 'name', 'email'] }, { model: BrandCompany, attributes: ['id', 'companyName', 'phoneNumber', 'address', 'zipCode', 'licenseNumber'] }, ] }, { model: User, attributes: ['id', 'name', 'email'], include: [ { model: Retailer, attributes: ['id', 'companyName'], include: [ { model: Stores, attributes: ['id', 'managerName'], } ] }, ] }, ], attributes: ['id', 'invoiceId', 'total', 'finalTotal', 'paymentDue', 'paymentStatus', 'createdAt', 'managerName', 'phoneNumber', 'address', 'stateId', 'zipCode', 'licenseNumber' ], where: { invoiceId }, }); if (!orderInvoiceItem) throw new BadRequestException('Something went wrong'); const orderInvoiceItems = []; orderInvoiceItem.orderInvoiceItems.map((item) => { const orderItem = { productTitle: item?.product?.title ?? '', categoryTitle: item?.category?.title ?? '', productBrand: item?.product?.brand?.brandName ?? '', productThc: item?.product?.thc ?? '', productFlavor: item?.product?.flavor ?? '', productDominant: item?.product?.dominant ?? '', unitPerPackage: item.unitPerPackage ?? '', quantity: item.quantity, displayPrice: item.displayPrice, totalPrice: item.totalPrice, deliveryDate: item?.deliveryDate ? moment(item?.deliveryDate).format("DD MMM 'YY") : '', // driverIndustryLicense: orderInvoiceItem?.driver?.cannabisIndustryLicense ?? '', // manifest: orderInvoiceItem?.manifest ?? '', // driverPhone: orderInvoiceItem?.driver?.phoneNumber ?? '', // driverEmail: orderInvoiceItem?.driver?.email ?? '', orderStatus: item?.status == 1 ? 'Requested' : item?.status == 2 ? 'Confirmed' : item?.status == 3 ? 'Declined' : item?.status == 4 ? 'Delivered' : item?.status == 5 ? 'Reviewed' : '', // offerTotal: item?.offerTotal ?? 0, // offerTitle: item?.offerTitle ?? '', // displayOfferTotal: item?.displayOfferTotal ?? 0, finalTotal: item?.finalTotal ?? 0, displayFinalTotal: item.finalOrderTotal, }; orderInvoiceItems.push(orderItem); }); const filename = 'invoice-' + invoiceId + '-' + Math.random() + '.pdf'; const document = { html: invoiceTemplate, data: { invoiceId: orderInvoiceItem?.invoiceId ?? '-', retailerLicenseNumber: orderInvoiceItem?.licenseNumber ?? '-', retailerCompanyName: orderInvoiceItem?.retailer?.retailerCompany?.companyName ?? '-', retailerZipCode: orderInvoiceItem?.zipCode ?? '-', retailerAddress: orderInvoiceItem?.address ?? '-', retailerPhone: orderInvoiceItem?.phoneNumber ?? '-', retailerEmail: orderInvoiceItem?.retailer?.email ?? '-', brandLicenseNumber: orderInvoiceItem?.brand?.brandCompany?.licenseNumber ?? '-', brandCompanyName: orderInvoiceItem?.brand?.brandCompany?.companyName ?? '-', brandZipCode: orderInvoiceItem?.brand?.brandCompany?.zipCode ?? '', brandAddress: orderInvoiceItem?.brand?.brandCompany?.address ?? '', brandPhone: orderInvoiceItem?.brand?.brandCompany?.phoneNumber ?? '', brandEmail: orderInvoiceItem?.brand?.user?.email ?? '', orderDate: orderInvoiceItem?.createdAt ? moment(orderInvoiceItem?.createdAt).format("DD MMM 'YY") : '', orderTotal: orderInvoiceItem?.orderTotal ?? 0, // offerTotal: order?.offerTotal ?? 0, // offerTitle: order?.offerTitle ?? '', // displayOfferTotal: order?.displayOfferTotal ?? 0, // finalTotal: order?.finalTotal ?? 0, finalOrderTotal: orderInvoiceItem?.finalOrderTotal ?? 0, orderPaymentDueDate: orderInvoiceItem?.paymentDue ? moment(orderInvoiceItem?.paymentDue).format("DD MMM 'YY") : '', orderInvoiceItems: orderInvoiceItems, siteName: SITE_NAME ?? '', year: new Date().getFullYear(), }, path: '../assets/invoice/' + filename, }; await pdf .create(document) .then((res) => { // console.log("res", res); }) .catch((error) => { // console.log("error", error); }); // const filepath = 'uploads/invoice/' + filename; return { path: '/invoice/' + filename, filename: filename }; } /* Download invoice end */ }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/orders/orders.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Brand } from 'src/models/brand.model'; import { Drivers } from 'src/models/drivers.model'; import { Order } from 'src/models/order.model'; import { OrderInvoice } from 'src/models/orderInvoice.model'; import { OrderInvoiceItems } from 'src/models/orderInvoiceItems.model'; import { Product } from 'src/models/product.model'; import { Review } from 'src/models/review.model'; import { User } from 'src/models/user.model'; import { OrdersController } from './orders.controller'; import { OrdersService } from './orders.service'; import { BrandCompany } from 'src/models/brandCompany.model'; import { Retailer } from 'src/models/retailer.model'; import { Stores } from 'src/models/stores.model'; @Module({ imports: [ SequelizeModule.forFeature([ Product, User, Stores, Order, OrderInvoice, OrderInvoiceItems, Drivers, Retailer, BrandCompany, Brand, Review, ]), ], controllers: [OrdersController], providers: [OrdersService, MailServiceService], }) export class OrdersModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/orders/orders.controller.ts
import { Body, Controller, Get, Param, Post, Query, Request, UseGuards, } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { ResponseError, ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { OrderInvoiceDto } from './dto/order-invoice-update'; import { ReviewDto } from './dto/review.dto'; import { OrdersService } from './orders.service'; import { OrderInvoiceItemDto } from './dto/order-invoice-item-update'; @UseGuards(AuthGuard('jwt')) @Controller() export class OrdersController { constructor(private readonly ordersService: OrdersService) {} @Get('retailer') async retailerOrders( @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, @Query('category') category: string, @Query('sortBy') sortBy: string, @Query('keyword') keyword: string, ): Promise<IResponse> { const orders = await this.ordersService.retailerOrders( req.user, category, sortBy, keyword, +offset, +limit, ); return new ResponseSuccess('Orders', orders); } @Get('seller') async sellerOrders( @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, @Query('category') category: string, @Query('sortBy') sortBy: string, @Query('keyword') keyword: string, ): Promise<IResponse> { const orders = await this.ordersService.sellerOrders( req.user, category, sortBy, keyword, +offset, +limit, ); return new ResponseSuccess('Orders', orders); } @Get(':invoiceId') async getOrderInvoice(@Param('invoiceId') invoiceId: string, @Request() req) { const review = await this.ordersService.getOrderInvoice(req.user, invoiceId); return new ResponseSuccess('Order', review); } @Post(':invoiceId/review') async postReview( @Param('invoiceId') invoiceId: string, @Body() reviewDto: ReviewDto, @Request() req, ) { const review = await this.ordersService.postReview( req.user, invoiceId, reviewDto, ); return new ResponseSuccess('Review submitted successfully', true); } @Post('update-detail/:invoiceId') async updateOrderDetail( @Param('invoiceId') invoiceId: string, @Body() orderInvoiceDto: OrderInvoiceDto, @Request() req, ) { const orders = await this.ordersService.updateOrderDetail( req.user, invoiceId, orderInvoiceDto, ); if (orders.status) { return new ResponseSuccess(orders.message, orders.status); } else { return new ResponseError('Something went wrong', false); } } @Post('update-invoice-item-detail/:invoiceItemId') async updateOrderInvoiceItemDetail( @Param('invoiceItemId') invoiceItemId: string, @Body() orderInvoiceItemDto: OrderInvoiceItemDto, @Request() req, ) { const orders = await this.ordersService.updateOrderInvoiceItemDetail( req.user, invoiceItemId, orderInvoiceItemDto, ); if (orders.status) { return new ResponseSuccess(orders.message, orders.status); } else { return new ResponseError('Something went wrong', false); } } @Post('notify-retailer/:invoiceItemId') async notifyRetailer(@Param('invoiceItemId') invoiceItemId: string, @Request() req) { const order = await this.ordersService.notifyRetailer(req.user, invoiceItemId); return new ResponseSuccess('Notification sent to the retailer.', order); } @UseGuards(AuthGuard('jwt')) @Get('invoice/:invoiceId') async generateInvoice(@Param('invoiceId') invoiceId: string, @Request() req) { const invoice = await this.ordersService.generateInvoice(req.user, invoiceId); return new ResponseSuccess('Invoice', invoice); } @Post(':invoiceItemId/:action') async updateOrder( @Param('invoiceItemId') invoiceItemId: string, @Param('action') action: string, @Body() declineReason: any, @Request() req, ) { const orders = await this.ordersService.updateOrders( req.user, invoiceItemId, action, declineReason, ); if (orders.status) { return new ResponseSuccess(orders.message, orders.status); } else { return new ResponseError('Something went wrong', false); } } }
0
/content/gmx-projects/gmx-admin/backend/src/modules/orders
/content/gmx-projects/gmx-admin/backend/src/modules/orders/dto/order-invoice-update.ts
import { IsOptional } from 'class-validator'; export class OrderInvoiceDto { @IsOptional() paymentDue: string; @IsOptional() paymentStatus: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/orders
/content/gmx-projects/gmx-admin/backend/src/modules/orders/dto/review.dto.ts
import { IsNotEmpty, IsOptional, IsString } from 'class-validator'; export class ReviewDto { // @IsNotEmpty() // quality_rating: number // @IsNotEmpty() // @IsString() // quality_review: string\ @IsOptional() products: any; @IsNotEmpty() dot_rating: number; @IsNotEmpty() @IsString() dot_review: string; @IsNotEmpty() general_rating: number; @IsNotEmpty() @IsString() general_review: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/orders
/content/gmx-projects/gmx-admin/backend/src/modules/orders/dto/order-invoice-item-update.ts
import { IsOptional } from 'class-validator'; export class OrderInvoiceItemDto { @IsOptional() deliveryDate: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/user/user.service.ts
import { ForbiddenException, Injectable, NotFoundException, UnprocessableEntityException, } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { User } from 'src/models/user.model'; //import { UserRoles } from 'src/models/userRole.model'; import { Op } from 'sequelize'; import { Brand } from 'src/models/brand.model'; import { BrandCompany } from 'src/models/brandCompany.model'; import { Follower } from 'src/models/follower.model'; import { Organizations } from 'src/models/organizations.model'; import { Product } from 'src/models/product.model'; import { Retailer } from 'src/models/retailer.model'; import { State } from 'src/models/state.model'; import { Stores } from 'src/models/stores.model'; import { HelperService } from 'src/services/Helper.service'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { RetailerRegisterDTO } from '../auth/dto/retailerRegister.dto'; import { UserRegisterDTO } from '../auth/dto/userRegister.dto'; import { ChangePasswordDTO } from './dto/ChangePassword.dto'; import { EditProfileDTO } from './dto/EditProfile.dto'; import { MinimumOrderAmount } from './dto/MinimumOrderAmount.dto'; import { UpdateBrandProfileDTO } from './dto/UpdateBrandProfile.dto'; import { UpdateCompanyProfileDTO } from './dto/UpdateCompanyProfile.dto'; import { UpdatePersonalProfileDTO } from './dto/UpdatePersonalProfile.dto'; import { UserAuthenticateInterface } from './interfaces/userAuthenticate.interface'; const bcrypt = require('bcryptjs'); const fs = require('fs'); @Injectable() export class UserService { constructor( @InjectModel(User) private userModel: typeof User, @InjectModel(BrandCompany) private brandCompanyModel: typeof BrandCompany, @InjectModel(Brand) private brandModel: typeof Brand, @InjectModel(Retailer) private retailerModel: typeof Retailer, ) {} async authenticate(userAuthenticateInterface: UserAuthenticateInterface) { const userRepo = this.userModel; const user = await userRepo.findOne({ include: [ { model: Organizations, attributes: ['id', 'role', 'isApproved', 'isActive'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'medRecId', 'profilePath'], }, { model: BrandCompany, attributes: ['id', 'companyName', 'slug', 'medRecId'], }, { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, ], attributes: ['id', 'name', 'slug', 'email', 'password', 'isActive'], where: { email: userAuthenticateInterface.username }, }); if (!user) { return false; } if (+user.isActive !== 1) { throw new ForbiddenException('Your account has been deactivated'); } const isPasswordMatching = await bcrypt.compare( userAuthenticateInterface.password, user.password, ); if (!isPasswordMatching) { return false; } user.password = undefined; return user; } async checkUser(userRegisterDTO: UserRegisterDTO) { const userRepo = this.userModel; const emailExist = await userRepo.findOne({ where: { email: userRegisterDTO.email, }, }); if (emailExist) { throw new UnprocessableEntityException( 'Email already exist, Please try another.', ); } return true; } /* async registerUser(userRegisterDTO: UserRegisterDTO) { const userRepo = this.userModel; const emailExist = await userRepo.findOne({ where: { email: userRegisterDTO.email, }, }); if (emailExist) { throw new UnprocessableEntityException( 'Email already exist, Please try another.', ); } const hash = bcrypt.hashSync(userRegisterDTO.password, 10); const user = await this.userModel.create({ email: userRegisterDTO.email, firstName: userRegisterDTO.firstName, lastName: userRegisterDTO.lastName, password: hash, role: userRegisterDTO.role, state: userRegisterDTO.state, zipCode: userRegisterDTO.zipCode, phoneNumber: userRegisterDTO.phoneNumber, licenseNumber: userRegisterDTO.licenseNumber, licenseType: userRegisterDTO.licenseType, expirationDate: userRegisterDTO.expirationDate, profilePath: userRegisterDTO.profilePath, licensePath: userRegisterDTO.licensePath, //planId: userRegisterDTO.planId, planExpiryDate: userRegisterDTO.planExpiryDate, subscriptionId: userRegisterDTO.subscriptionId, }); return user != null; } */ async getUsers() { const users = await this.userModel.findAll({ order: [['id', 'DESC']], }); return users; } async findAllRetailers() { const retailers = await this.userModel.findAll({ where: { role: 3, isApproved: 1, isActive: 1 }, }); return retailers; } async getUserProfile(jwtUserDTO: JwtUserDTO) { const user = await this.userModel.findOne({ include: [ { model: Organizations, attributes: ['id', 'role', 'isApproved', 'isActive'], }, { model: Retailer, attributes: [ 'id', 'companyName', 'contactNumber', 'contactEmail', 'profilePath', 'website', 'medRecId', ], }, ], where: { id: jwtUserDTO.id }, }); if (!user) throw new NotFoundException(); return user; } async findOne(id: number) { return await this.checkExist(id); } async createUser( jwtUserDto: JwtUserDTO, userRegisterDTO: RetailerRegisterDTO, ) { const helperService = await new HelperService(); await helperService.checkUnique( this.userModel, 'email', userRegisterDTO.email, 'email', ); const hash = bcrypt.hashSync(userRegisterDTO.password, 10); const user = await this.userModel.create({ name: userRegisterDTO.name, email: userRegisterDTO.email, password: hash, role: userRegisterDTO.role, // is_active: true, createdBy: jwtUserDto.id, }); return user != null; } async deleteUser(id: number) { await this.checkExist(id); await this.userModel.destroy({ where: { id: id }, }); return true; } async checkExist(id: number) { const user = await this.userModel.findOne({ where: { id: id }, }); if (!user) throw new NotFoundException(); return user; } async updateProfile( jwtUserDto: JwtUserDTO, updatedUserData: EditProfileDTO, files, ) { const user = await this.checkExist(jwtUserDto.id); const retailerCompany = await this.retailerModel.findOne({ where: { userId: user.id }, }); if (!retailerCompany || !user) throw new NotFoundException(); updatedUserData.currentBrandCompanyId = null; updatedUserData.currentBrandId = null; updatedUserData.planId = null; updatedUserData.website = updatedUserData.website !== '' && updatedUserData.website !== null ? updatedUserData.website : null; updatedUserData.contactNumber = updatedUserData.contactNumber !== '' && updatedUserData.contactNumber !== null ? updatedUserData.contactNumber : null; updatedUserData.contactEmail = updatedUserData.contactEmail !== '' && updatedUserData.contactEmail !== null ? updatedUserData.contactEmail : null; const profileDocumentPath = (await files.profileDocument) ? files.profileDocument[0].filename : updatedUserData.profilePath ? updatedUserData.profilePath : null; updatedUserData.profilePath = profileDocumentPath; if (!user) { return false; } await user.update(updatedUserData); await retailerCompany.update(updatedUserData); return { ...user.toJSON(), ...retailerCompany.toJSON() }; } async changePassword( jwtUserDto: JwtUserDTO, changePasswordData: ChangePasswordDTO, ) { const user = await this.userModel.findOne({ where: { id: jwtUserDto.id, email: jwtUserDto.email }, }); if (!user) { throw new NotFoundException(); } const isPasswordMatching = await bcrypt.compare( changePasswordData.currentPassword, user.password, ); if (!isPasswordMatching) { return { status: false, message: 'Current password does not match.' }; } if ( changePasswordData.newPassword !== changePasswordData.confirmNewPassword ) { return { status: false, message: 'New password and confirm new password does not match.', }; } const hash = bcrypt.hashSync(changePasswordData.newPassword, 10); user.password = hash; user.update({ password: hash }); return { status: true, message: 'Password changed successfully.' }; } async getCompanyProfile(jwtUserDTO: JwtUserDTO) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new NotFoundException(); const company = await this.brandCompanyModel.findOne({ where: { id: user?.currentBrandCompanyId, userId: jwtUserDTO?.id }, }); return company; } async updateCompanyProfile( jwtUserDto: JwtUserDTO, updateCompanyProfileDTO: UpdateCompanyProfileDTO, ) { const user = await this.checkExist(jwtUserDto.id); const brandCompany = await this.brandCompanyModel.findOne({ where: { id: user?.currentBrandCompanyId, userId: jwtUserDto?.id }, }); updateCompanyProfileDTO.contactNumber = updateCompanyProfileDTO.contactNumber !== '' && updateCompanyProfileDTO.contactNumber !== null ? updateCompanyProfileDTO.contactNumber : null; updateCompanyProfileDTO.contactEmail = updateCompanyProfileDTO.contactEmail !== '' && updateCompanyProfileDTO.contactEmail !== null ? updateCompanyProfileDTO.contactEmail : null; await brandCompany.update(updateCompanyProfileDTO); return brandCompany; } async getBrandProfile(jwtUserDTO: JwtUserDTO) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id }, }); if (!user) throw new NotFoundException(); const brand = await this.brandModel.findOne({ where: { id: user?.currentBrandId, userId: jwtUserDTO?.id }, }); return brand; } async updateBrandProfile( jwtUserDto: JwtUserDTO, updateBrandProfileDTO: UpdateBrandProfileDTO, files, ) { const user = await this.checkExist(jwtUserDto.id); const brand = await this.brandModel.findOne({ where: { id: user?.currentBrandId }, }); if (!brand || !user) throw new NotFoundException(); updateBrandProfileDTO.year = updateBrandProfileDTO.year !== '' && updateBrandProfileDTO.year !== null ? updateBrandProfileDTO.year : null; updateBrandProfileDTO.website = updateBrandProfileDTO.website !== '' && updateBrandProfileDTO.website !== null ? updateBrandProfileDTO.website : null; const profileDocumentPath = (await files.profileDocument) ? files.profileDocument[0].filename : updateBrandProfileDTO.profilePath ? updateBrandProfileDTO.profilePath : null; updateBrandProfileDTO.profilePath = profileDocumentPath; if ( files.profileDocument && fs.existsSync('../assets' + brand.profilePath) && brand.profilePath !== '/profile/no-profile-image.jpg' ) { fs.unlink('../assets' + brand.profilePath, (err) => { if (err) { return; } }); } await brand.update(updateBrandProfileDTO); return brand; } async getPersonalProfile(jwtUserDTO: JwtUserDTO) { const user = await this.userModel.findOne({ include: [ { model: Organizations, attributes: ['id', 'role', 'isApproved', 'isActive'], }, ], where: { id: jwtUserDTO.id }, }); if (!user) throw new NotFoundException(); return user; } async updatePersonalProfile( jwtUserDto: JwtUserDTO, updatePersonalProfileDTO: UpdatePersonalProfileDTO, ) { const user = await this.checkExist(jwtUserDto.id); await user.update(updatePersonalProfileDTO); return user; } async updateSellerMinimumOrderAmount( jwtUserDto: JwtUserDTO, updateMinimumOrderAmount: MinimumOrderAmount, ) { const brand = await this.brandModel.findOne({ where: { userId: jwtUserDto.id }, }); if (!brand) throw new NotFoundException(); updateMinimumOrderAmount.orderAmount = parseFloat(updateMinimumOrderAmount.orderAmount) > 0 ? updateMinimumOrderAmount.orderAmount : null; await brand.update(updateMinimumOrderAmount); return { ...brand.toJSON() }; } async getRetailers(jwtUserDto: JwtUserDTO, offset = 0, limit = 10) { let medRecCondition = {}; if (jwtUserDto?.id) { const user = await this.userModel.findOne({ include: [ { model: this.retailerModel, attributes: ['id', 'medRecId'], }, { model: BrandCompany, attributes: ['id', 'medRecId'], }, ], where: { id: jwtUserDto.id }, }); const medRecId = user?.retailerCompany?.medRecId ? user?.retailerCompany?.medRecId : user?.brandCompany?.medRecId; medRecCondition = await { medRecId: medRecId }; } const { count, rows: retailers } = await this.retailerModel.findAndCountAll( { include: [ { model: Stores, attributes: ['id', 'zipCode'], include: [ { model: State, attributes: ['id', 'name'], }, ], }, ], attributes: ['id', 'companyName', 'slug', 'profilePath'], where: { isApproved: 1, isActive: 1, ...medRecCondition }, offset: offset ? offset * limit : 0, limit: limit, }, ); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), retailers: retailers, }; } async getBrands(jwtUserDto: JwtUserDTO, offset = 0, limit = 10) { let medRecCondition = {}; if (jwtUserDto?.id) { const user = await this.userModel.findOne({ include: [ { model: this.retailerModel, attributes: ['id', 'medRecId'], }, { model: BrandCompany, attributes: ['id', 'medRecId'], }, ], where: { id: jwtUserDto.id }, }); const medRecId = user?.retailerCompany?.medRecId ? user?.retailerCompany?.medRecId : user?.brandCompany?.medRecId; medRecCondition = await { medRecId: medRecId }; } const { count, rows: brands } = await this.brandModel.findAndCountAll({ include: [ { model: BrandCompany, attributes: ['id', 'medRecId'], where: { ...medRecCondition }, include: [ { model: State, attributes: ['id', 'name'], where: { deletedAt: null }, }, ], }, { model: Product, attributes: ['id'], as: 'product', where: { isActive: 1 }, required: false, }, ], attributes: [ 'id', 'brandName', 'slug', 'profilePath', 'totalOrdersCompleted', 'avgRating', 'year', ], distinct: true, where: { isApproved: 1, isActive: 1 }, offset: offset ? offset * limit : 0, limit: limit, }); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), brands: brands, }; } async getRetailerDetail(slug: string, jwtUserDTO?: JwtUserDTO) { const user = await this.retailerModel.findOne({ include: [ { model: Stores, attributes: ['id', 'zipCode'], include: [ { model: State, attributes: ['id', 'name'], }, ], }, //{ model: State }, //{ model: Retailer, required: false }, // { // model: Follower, // as: 'followers', // where: { isActive: 1 }, // required: false, // }, // { // model: Follower, // as: 'followings', // where: { isActive: 1 }, // required: false, // }, ], //role: 3, isApproved: 1, where: { slug: slug, isActive: 1 }, }); if (!user) throw new NotFoundException(); const retailerData = user.toJSON(); if (jwtUserDTO.id) { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); retailerData.userFollowed = false; if (user?.id !== fromUser) { const follower = await Follower.findOne({ // where: { // followerId: user?.id, // followingRole: '3', // followingId: fromUser, // }, where: { followingId: user?.id, followingRole: role + "", followerRole: "3", followerId: fromUser, }, }); if (follower) { retailerData.userFollowed = follower.isActive ? true : false; } } } return retailerData; } async deleteUserAccount(jwtUserDto: JwtUserDTO) { const user = await this.userModel.findOne({ where: { id: jwtUserDto.id, }, }); if (!user) throw new NotFoundException(); await this.userModel.destroy({ where: { id: jwtUserDto.id }, }); return true; } async fetchById(jwtUserDto: JwtUserDTO) { const currentUser = await User.findOne({ include: [{ model: Organizations }], where: { id: jwtUserDto.id, }, }); const retailer = await Retailer.findOne({ where: { userId: jwtUserDto.id, }, }); const brand = await Brand.findOne({ where: { id: currentUser?.currentBrandId, }, }); const role = currentUser?.organization?.role; let user = role == 2 ? brand : retailer; return user; } async findUserCompany(limit: number, page: number, jwtUserDto: JwtUserDTO) { const helperService = await new HelperService(); const { fromUser } = await helperService.getFromUser(jwtUserDto.id); const { medRecId } = await helperService.getFromUserCompany(jwtUserDto.id); const user = await this.checkExist(jwtUserDto.id); const offset = page * limit; const id = fromUser; const followedByMe = await Follower.findAndCountAll({ distinct: true, include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], required: false, include: [ { model: Follower, as: 'followers', where: { isActive: 1, followerId: { [Op.eq]: fromUser, }, }, required: false, }, ], }, // { // model: User, // as: 'followerUser', // required: false, // // attributes: ['id', 'slug'], // where: { // slug: 'louis-bland', // }, // }, ], where: { isActive: 1, // followerId: { [Op.col]: 'followerUser.id' }, // followingId: { // [Op.not]: { [Op.col]: 'followerUser.id' }, // }, }, }); const followingIds = await followedByMe.rows.map( (followersData) => followersData.followingId, ); let condition = {}; let userCondition = {}; let medRecCondition = {}; if (jwtUserDto.id) { condition = { id: fromUser }; userCondition = { userId: fromUser }; medRecCondition = await { medRecId: medRecId }; } const brands = await this.brandModel.findAndCountAll({ include: [ { model: this.brandCompanyModel, attributes: ['id', 'medRecId'], where: { ...medRecCondition }, }, { model: Follower, as: 'followers', where: { isActive: 1, followerId: { [Op.eq]: id, }, }, required: false, }, ], where: { //stateId: user.stateId, // role: 2, // ...medRecCondition, [Op.and]: [ { id: { [Op.ne]: fromUser } }, { id: { [Op.notIn]: followingIds } }, ], }, limit, offset, order: [['createdAt', 'DESC']], }); return brands; } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/user/user.controller.spec.ts
import { Test, TestingModule } from '@nestjs/testing'; import { UserController } from './user.controller'; describe('UserController', () => { let controller: UserController; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [UserController], }).compile(); controller = module.get<UserController>(UserController); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/user/user.service.spec.ts
import { Test, TestingModule } from '@nestjs/testing'; import { UserService } from './user.service'; describe('UserService', () => { let service: UserService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ providers: [UserService], }).compile(); service = module.get<UserService>(UserService); }); it('should be defined', () => { expect(service).toBeDefined(); }); });
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/user/user.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { Brand } from 'src/models/brand.model'; import { BrandCompany } from 'src/models/brandCompany.model'; import { Follower } from 'src/models/follower.model'; import { Organizations } from 'src/models/organizations.model'; import { Retailer } from 'src/models/retailer.model'; import { User } from 'src/models/user.model'; import { UserController } from './user.controller'; import { UserService } from './user.service'; // import { MailServiceService } from 'src/mail-service/mail-service.service'; //import { UserRoles } from 'src/models/userRole.model'; @Module({ imports: [SequelizeModule.forFeature([Organizations, User, BrandCompany, Brand, Retailer, Follower])], controllers: [UserController], providers: [UserService], exports: [SequelizeModule, UserService], }) export class UserModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/user/user.controller.ts
import { Body, Controller, Delete, Get, Param, Post, Put, Query, Request, UploadedFiles, UseGuards, UseInterceptors, } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { FileFieldsInterceptor } from '@nestjs/platform-express'; import { diskStorage } from 'multer'; import { ResponseError, ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { v4 as uuidv4 } from 'uuid'; import { RetailerRegisterDTO } from '../auth/dto/retailerRegister.dto'; import { JwtAuthGuard } from '../auth/guards/jwt-auth.guard'; import { ChangePasswordDTO } from './dto/ChangePassword.dto'; import { EditProfileDTO } from './dto/EditProfile.dto'; import { UpdateBrandProfileDTO } from './dto/UpdateBrandProfile.dto'; import { MinimumOrderAmount } from './dto/MinimumOrderAmount.dto'; import { UpdateCompanyProfileDTO } from './dto/UpdateCompanyProfile.dto'; import { UserService } from './user.service'; import path = require('path'); import { UpdatePersonalProfileDTO } from './dto/UpdatePersonalProfile.dto'; const uploadsProfilePath = '/profile'; const uploadsDocumentsPath = '/documents'; //document file upload export const documentStorage = { storage: diskStorage({ // destination: '.', destination: '../assets', filename: (req, file, cb) => { if (file.fieldname === 'profileDocument') { const filename: string = uploadsProfilePath + '/' + path.parse('profile-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } if (file.fieldname === 'licenseDocument') { const filename: string = uploadsDocumentsPath + '/' + path.parse('license-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); } }, }), }; @Controller() export class UserController { constructor(private readonly userService: UserService) {} @UseGuards(AuthGuard('jwt')) @Get() async user(): Promise<IResponse> { const users = await this.userService.getUsers(); return new ResponseSuccess('Users', { users }); } @UseGuards(AuthGuard('jwt')) @Get('find-all-retailers') async findAllRetailers(): Promise<IResponse> { const users = await this.userService.findAllRetailers(); return new ResponseSuccess('Users', users); } @UseGuards(AuthGuard('jwt')) @Get('/profile') async getUserProfile(@Request() req): Promise<IResponse> { const user = await this.userService.getUserProfile(req.user); return new ResponseSuccess('User', user); } @UseGuards(JwtAuthGuard) @Get('retailers') async retailers( @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, ): Promise<IResponse> { const retailers = await this.userService.getRetailers( req.user, +offset, +limit, ); return new ResponseSuccess('retailers', retailers); } @UseGuards(JwtAuthGuard) @Get('brands') async brands( @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, ): Promise<IResponse> { const brands = await this.userService.getBrands(req.user, +offset, +limit); return new ResponseSuccess('brands', brands); } @UseGuards(JwtAuthGuard) @Get(':slug') async getRetailerDetail( @Request() req, @Param('slug') slug: string, ): Promise<IResponse> { return new ResponseSuccess( 'User', await this.userService.getRetailerDetail(slug as string, req?.user), ); } // @UseGuards(AuthGuard('jwt')) // @Get('/roles') // async userRole(): Promise<IResponse> { // const userRoles = await this.userService.getRoles(); // return new ResponseSuccess('User Roles', userRoles); // } @UseGuards(AuthGuard('jwt')) @Get(':id') async findOne(@Param('id') id: number): Promise<IResponse> { return new ResponseSuccess('User', await this.userService.findOne(id)); } @UseGuards(AuthGuard('jwt')) @Post() async createUser( @Body() createUser: RetailerRegisterDTO, @Request() req, ): Promise<IResponse> { const isCreated = await this.userService.createUser(req.user, createUser); return new ResponseSuccess('User added successfully.', { isCreated }); } @UseGuards(AuthGuard('jwt')) @Put('profile') @UseInterceptors( FileFieldsInterceptor( [{ name: 'profileDocument' }, { name: 'licenseDocument' }], documentStorage, ), ) async updateUser( @Body() updateUser: EditProfileDTO, @UploadedFiles() files: { profileDocument?: Express.Multer.File[] }, @Request() req, ): Promise<IResponse> { const { id } = req.user; const updatedUser = await this.userService.updateProfile( req.user, updateUser, files, ); return new ResponseSuccess( 'User details updated successfully.', updatedUser, ); } @UseGuards(AuthGuard('jwt')) @Delete('/:id') async deleteUser(@Param() params): Promise<IResponse> { const userId = params.id; const deletedUser = await this.userService.deleteUser(userId); return new ResponseSuccess('User deleted successfully.', deletedUser); } @UseGuards(AuthGuard('jwt')) @Post('/change-password') async changePassword( @Body() changePasswordData: ChangePasswordDTO, @Request() req, ): Promise<IResponse> { const changedPassword = await this.userService.changePassword( req.user, changePasswordData, ); if (changedPassword.status) { return new ResponseSuccess( changedPassword.message, changedPassword.status, ); } return new ResponseError(changedPassword.message, 'error'); } @UseGuards(AuthGuard('jwt')) @Get('/company/profile') async getCompanyProfile(@Request() req): Promise<IResponse> { const data = await this.userService.getCompanyProfile(req.user); return new ResponseSuccess('Company', data); } @UseGuards(AuthGuard('jwt')) @Put('/company/profile') async updateCompanyProfile( @Body() updateCompanyProfileDTO: UpdateCompanyProfileDTO, @Request() req, ): Promise<IResponse> { const data = await this.userService.updateCompanyProfile( req.user, updateCompanyProfileDTO, ); return new ResponseSuccess('Company details updated successfully.', data); } @UseGuards(AuthGuard('jwt')) @Get('/brand/profile') async getBrandProfile(@Request() req): Promise<IResponse> { const user = await this.userService.getBrandProfile(req.user); return new ResponseSuccess('User', user); } @UseGuards(AuthGuard('jwt')) @Put('/brand/profile') @UseInterceptors( FileFieldsInterceptor([{ name: 'profileDocument' }], documentStorage), ) async updateBrandProfile( @Body() updateBrandProfileDTO: UpdateBrandProfileDTO, @UploadedFiles() files: { profileDocument?: Express.Multer.File[] }, @Request() req, ): Promise<IResponse> { const data = await this.userService.updateBrandProfile( req.user, updateBrandProfileDTO, files, ); return new ResponseSuccess('Brand details updated successfully.', data); } @UseGuards(AuthGuard('jwt')) @Get('/personal/profile') async getPersonalProfile(@Request() req): Promise<IResponse> { const user = await this.userService.getPersonalProfile(req.user); return new ResponseSuccess('User', user); } @UseGuards(AuthGuard('jwt')) @Put('/personal/profile') async updatePersonalProfile( @Body() updatePersonalProfileDTO: UpdatePersonalProfileDTO, @Request() req, ): Promise<IResponse> { const data = await this.userService.updatePersonalProfile( req.user, updatePersonalProfileDTO, ); return new ResponseSuccess('Personal details updated successfully.', data); } @UseGuards(AuthGuard('jwt')) @Post('/seller/set-minimum-order-amount') async updateMinimumOrderAmount( @Body() updateMinimumOrderAmount: MinimumOrderAmount, @Request() req, ): Promise<IResponse> { const updatedUser = await this.userService.updateSellerMinimumOrderAmount( req.user, updateMinimumOrderAmount, ); return new ResponseSuccess( 'Order amount updated successfully.', updatedUser, ); } @UseGuards(AuthGuard('jwt')) @Post('/delete') async deleteUserAccount(@Request() req): Promise<IResponse> { const response = await this.userService.deleteUserAccount(req.user); return new ResponseSuccess( 'Response', 'Your account and all the related has been deleted successfully', ); } @UseGuards(AuthGuard('jwt')) @Get('/social/profile') async fetchById(@Request() req): Promise<IResponse> { return new ResponseSuccess( 'User', await this.userService.fetchById(req.user), ); } @UseGuards(AuthGuard('jwt')) @Post('/company') async fetchUserCompany( @Body('limit') limit: string, @Body('page') page: string, @Request() req, ): Promise<IResponse> { return new ResponseSuccess( 'User', await this.userService.findUserCompany(+limit, +page, req.user), ); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/UpdateBrandProfile.dto.ts
import { IsNotEmpty, IsOptional, IsString, Length } from 'class-validator'; export class UpdateBrandProfileDTO { @IsOptional() profilePath: string; @IsNotEmpty() brandName: string; @IsOptional() year: string; @IsOptional() website: string; @IsOptional() @IsString() description: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/UpdatePersonalProfile.dto.ts
import { IsNotEmpty, IsString, Length } from 'class-validator'; export class UpdatePersonalProfileDTO { @IsNotEmpty() @IsString() @Length(1, 255) name: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/EditProfile.dto.ts
import { IsNotEmpty, IsOptional, IsString, Length } from 'class-validator'; export class EditProfileDTO { @IsNotEmpty() @IsString() @Length(1, 255) companyName: string; @IsOptional() contactNumber: string; @IsOptional() contactEmail: string; // @IsNotEmpty() // phoneNumber: number; @IsOptional() website: string; // @IsNotEmpty() // stateId: number; // @IsOptional() // zipCode: number; // @IsNotEmpty() // licenseNumber: string; @IsNotEmpty() medRecId: number; // @IsNotEmpty() // licenseExpirationDate: Date; @IsOptional() profilePath: string; @IsOptional() currentBrandCompanyId: string; @IsOptional() currentBrandId: string; @IsOptional() planId: string; // @IsOptional() // licensePath: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/ChangePassword.dto.ts
import { IsNotEmpty, IsString, MinLength } from 'class-validator'; export class ChangePasswordDTO { @IsNotEmpty({ message: 'Current password is required' }) @IsString() @MinLength(6, { message: 'Current password must be longer than or equal to 6 characters', }) currentPassword: string; @IsNotEmpty({ message: 'new password is required' }) @IsString() @MinLength(6, { message: 'New password must be longer than or equal to 6 characters', }) newPassword: string; @IsNotEmpty({ message: 'confirm new password is required' }) @IsString() @MinLength(6, { message: 'Confirm new password must be longer than or equal to 6 characters', }) confirmNewPassword: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/EditSellerProfile.dto.ts
import { IsNotEmpty, IsOptional, IsString, Length } from 'class-validator'; export class EditSellerProfile { @IsOptional() profilePath: string; @IsNotEmpty() @IsString() @Length(1, 255) name: string; @IsNotEmpty() phoneNumber: number; @IsNotEmpty() @IsString() @Length(1, 255) companyName: string; @IsOptional() brandName: string; @IsOptional() contactNumber: string; @IsOptional() contactEmail: string; @IsOptional() website: string; @IsNotEmpty() year: number; @IsNotEmpty() licenseNumber: string; @IsNotEmpty() medRecId: number; @IsNotEmpty() licenseExpirationDate: Date; @IsOptional() licensePath: string; @IsNotEmpty() stateId: number; @IsOptional() zipCode: number; @IsNotEmpty() @IsString() address: string; @IsNotEmpty() @IsString() description: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/UpdateCompanyProfile.dto.ts
import { IsNotEmpty, IsOptional, IsString, Length } from 'class-validator'; export class UpdateCompanyProfileDTO { @IsNotEmpty() @IsString() @Length(1, 255) companyName: string; @IsNotEmpty() medRecId: number; @IsNotEmpty() licenseNumber: string; @IsNotEmpty() licenseExpirationDate: Date; @IsOptional() contactNumber: string; @IsOptional() contactEmail: string; @IsNotEmpty() @IsString() address: string; @IsNotEmpty() stateId: number; @IsOptional() zipCode: number; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/dto/MinimumOrderAmount.dto.ts
import { IsOptional } from 'class-validator'; export class MinimumOrderAmount { @IsOptional() orderAmount: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/interfaces/userAuthenticate.interface.ts
export interface UserAuthenticateInterface { username: string; password: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/user
/content/gmx-projects/gmx-admin/backend/src/modules/user/interfaces/userAuthenticate.interface.js
"use strict"; exports.__esModule = true;
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/plans/plans.service.ts
import { Injectable } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { Plans } from 'src/models/plans.model'; import { PlansDto } from './dto/Plans.dto'; @Injectable() export class PlansService { constructor( @InjectModel(Plans) private plansModel: typeof Plans, ) {} async createPlan(plansDto: PlansDto) { const plan = await this.plansModel.create({ title: plansDto.title, slug: plansDto.slug, price: plansDto.price, description: plansDto.description, }); return plan != null; } async getPlans() { const plans = await this.plansModel.findAll({ where: { isActive: 1 }, order: [['id', 'ASC']], }); return plans; } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/plans/plans.service.spec.ts
import { Test, TestingModule } from '@nestjs/testing'; import { PlansService } from './plans.service'; describe('PlansService', () => { let service: PlansService; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ providers: [PlansService], }).compile(); service = module.get<PlansService>(PlansService); }); it('should be defined', () => { expect(service).toBeDefined(); }); });
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/plans/plans.controller.spec.ts
import { Test, TestingModule } from '@nestjs/testing'; import { PlansController } from './plans.controller'; describe('PlansController', () => { let controller: PlansController; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [PlansController], }).compile(); controller = module.get<PlansController>(PlansController); }); it('should be defined', () => { expect(controller).toBeDefined(); }); });
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/plans/plans.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { Plans } from 'src/models/plans.model'; import { PlansController } from './plans.controller'; import { PlansService } from './plans.service'; @Module({ imports: [SequelizeModule.forFeature([Plans])], controllers: [PlansController], providers: [PlansService], }) export class PlansModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/plans/plans.controller.ts
import { Body, Controller, Get, Post, UseGuards } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { PlansDto } from './dto/Plans.dto'; import { PlansService } from './plans.service'; @Controller() export class PlansController { constructor(private readonly plansService: PlansService) {} // @UseGuards(AuthGuard('jwt')) @Get() async getPlans(): Promise<IResponse> { const plans = await this.plansService.getPlans(); return new ResponseSuccess('Plans', plans); } @UseGuards(AuthGuard('jwt')) @Post() async createPlan(@Body() createPlan: PlansDto): Promise<IResponse> { const isCreated = await this.plansService.createPlan(createPlan); return new ResponseSuccess('Plan added successfully.', { isCreated }); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules/plans
/content/gmx-projects/gmx-admin/backend/src/modules/plans/dto/Plans.dto.ts
import { IsNotEmpty, IsOptional, IsString, Length } from 'class-validator'; export class PlansDto { @IsNotEmpty() @IsString() @Length(1, 255) title: string; @IsOptional() slug: string; @IsNotEmpty() price: number; @IsNotEmpty() description: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/messages/messages.service.ts
import { Injectable, Logger, NotFoundException } from '@nestjs/common'; import { Cron } from '@nestjs/schedule'; import { InjectModel } from '@nestjs/sequelize'; import { Op, Sequelize } from 'sequelize'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Brand } from 'src/models/brand.model'; import { Message } from 'src/models/message.model'; import { Retailer } from 'src/models/retailer.model'; import { User } from 'src/models/user.model'; import { HelperService } from 'src/services/Helper.service'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { MessageDto } from './dto/message.dto'; const { FRONEND_BASE_URL, SITE_NAME, ASSETS_URL } = process.env; const filesize = require('file-size'); const fs = require('fs'); const path = require('path'); @Injectable() export class MessagesService { private readonly logger = new Logger(MessagesService.name); constructor( @InjectModel(Message) private messageModel: typeof Message, @InjectModel(User) private userModel: typeof User, @InjectModel(Retailer) private retailerModel: typeof Retailer, @InjectModel(Brand) private brandModel: typeof Brand, private mailService?: MailServiceService, ) {} async createMessage(jwtUserDTO: JwtUserDTO, messageDto: MessageDto, file) { // from user const fromRetailer = await this.retailerModel.findOne({ where: { userId: jwtUserDTO.id, }, }); const fromBrand = await this.userModel.findOne({ where: { id: jwtUserDTO.id, }, }); // to user const retailer = await this.retailerModel.findOne({ where: { slug: messageDto.slug, }, }); const brand = await this.brandModel.findOne({ where: { slug: messageDto.slug, }, }); // if (!retailer ?? !brand) { // throw new NotFoundException(); // } const user = retailer ?? brand; const role = brand ? 1 : 2; const fromUser = fromBrand?.currentBrandId ?? fromRetailer?.id; // const senderUser = await this.userModel.findOne({ // where: { // id: jwtUserDTO.id, // }, // }); // if (!senderUser) throw new NotFoundException(); // const brandCompanyId = receiver?.currentBrandCompanyId ?? senderUser?.currentBrandCompanyId; // const brandId = receiver?.currentBrandId ?? senderUser?.currentBrandId; // if(receiver.stateId !== senderUser.stateId){ // throw new ForbiddenException('You can message seller who is in your state only'); // } if (file !== undefined) { const stats = fs.statSync(file.path); const fileSizeInBytes = stats.size; var fileSize = filesize(fileSizeInBytes, { fixed: 1, spacer: ' ', }).human('si'); var fileType = path.parse(file.originalname).ext.split('.')[1]; } const message = this.messageModel.create({ fromId: fromUser, toId: user?.id, role: role, message: file !== undefined ? file.filename : messageDto.message, attachment: file !== undefined ? 1 : 2, fileType: file !== undefined ? fileType : null, fileSize: file !== undefined ? fileSize : null, readStatus: 2, }); return message; } async getUsersList(jwtUserDTO: JwtUserDTO, searchQuery: string) { const user = await this.userModel.findOne({ where: { id: jwtUserDTO.id, }, }); if (!user) { throw new NotFoundException(); } // from user const fromRetailer = await this.retailerModel.findOne({ where: { userId: jwtUserDTO.id, }, }); const fromBrand = await this.userModel.findOne({ where: { id: jwtUserDTO.id, }, }); const fromUser = fromBrand?.currentBrandId ?? fromRetailer?.id; const userFilter = { [Op.or]: [ { '$fromRetailer.companyName$': { [Op.like]: `%${searchQuery}%` }, }, { '$toBrand.brandName$': { [Op.like]: `%${searchQuery}%` }, }, ], }; const usersList = await this.messageModel.findAll({ include: [ { model: Retailer, as: 'fromRetailer', attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Brand, as: 'toBrand', attributes: ['id', 'brandName', 'slug', 'profilePath'], }, ], attributes: [ [ Sequelize.literal( `(select fromId from messages where id=MAX(Message.id))`, ), 'fromId', ], [ Sequelize.literal( `(select role from messages where id=MAX(Message.id))`, ), 'role', ], [ Sequelize.literal( `(select attachment from messages where id=MAX(Message.id))`, ), 'isAttachment', ], [ Sequelize.literal( `(select message from messages where id=MAX(Message.id))`, ), 'message', ], [ Sequelize.literal( `(select createdAt from messages where id=MAX(Message.id))`, ), 'lastMsgTime', ], [ Sequelize.literal( `CASE fromId WHEN ${fromUser} THEN toId ELSE fromId END`, ), 'conversationId', ], [ Sequelize.literal( `(select count(*) from messages where toId=${ fromUser } and fromId=${`conversationId`} and readStatus=2)`, ), 'unreadCount', ], ], // attributes: { // include: [ // [Sequelize.literal(`(select message from messages where id=MAX(Message.id))`), 'message'], // [Sequelize.literal(`(select createdAt from messages where id=MAX(Message.id))`), 'lastMsgTime'], // [Sequelize.literal(`CASE fromId WHEN ${jwtUserDTO.id} THEN toId ELSE fromId END`), 'conversationId'], // [Sequelize.literal(`(select count(*) from messages where toId=${jwtUserDTO.id} and fromId=${`conversationId`} and readStatus=2)`), 'unreadCount'] // ] // }, where: { [Op.or]: [{ fromId: fromUser }, { toId: fromUser }], [Op.and]: [ { ...userFilter, }, ], }, order: [[Sequelize.literal('lastMsgTime'), 'desc']], group: ['conversationId'], }); return usersList; } async getMessages( jwtUserDTO: JwtUserDTO, slug: string, offset = 0, limit = 50, ) { // from user const fromRetailer = await this.retailerModel.findOne({ where: { userId: jwtUserDTO.id, }, }); const fromBrand = await this.userModel.findOne({ where: { id: jwtUserDTO.id, }, }); // to user const retailer = await this.retailerModel.findOne({ where: { slug: slug, }, }); const brand = await this.brandModel.findOne({ where: { slug: slug, }, }); // if (!retailer ?? !brand) { // throw new NotFoundException(); // } const user = retailer ?? brand; const fromUser = fromBrand?.currentBrandId ?? fromRetailer?.id; const userId = user?.id ? user?.id : 0; // const senderUser = await this.userModel.findOne({ // where: { // id: jwtUserDTO.id, // }, // }); // if (!senderUser) throw new NotFoundException(); // if (senderUser.role === user.role) { // throw new ForbiddenException('Something went wrong'); // } // if(user.stateId !== senderUser.stateId){ // throw new ForbiddenException('You can message seller who is in your state only'); // } const messages = await this.messageModel.findAll({ where: { [Op.or]: [ { [Op.and]: [{ fromId: fromUser }, { toId: userId }], }, { [Op.and]: [{ fromId: userId }, { toId: fromUser }], }, ], }, order: [['id', 'desc']], offset: offset ? offset * limit : 0, limit: limit, }); await Message.update( { readStatus: 1 }, { where: { [Op.or]: [ { [Op.and]: [{ fromId: fromUser }, { toId: userId }], }, { [Op.and]: [{ fromId: userId }, { toId: fromUser }], }, ], }, }, ); messages.sort(function (a, b) { return a.id - b.id; }); return { messages, user, }; } async getUnreadCount(jwtUserDTO: JwtUserDTO) { const data = await this.messageModel.findAndCountAll({ where: { toId: jwtUserDTO.id, readStatus: 2, }, }); return data.count; } async getAllUnreadMessages() { const helperService = await new HelperService(); const unreadMessages = await this.messageModel.findAll({ include: [ // { // model: User, // as: 'sender', // required: true, // attributes: ['id', 'slug', 'email', 'businessName', 'profilePath'], // }, // { // model: User, // as: 'receiver', // required: true, // attributes: ['id', 'slug', 'email', 'businessName', 'profilePath'], // }, { model: Retailer, as: 'fromRetailer', required: true, attributes: ['id', 'companyName', 'slug', 'profilePath'], include: [ { model: User, attributes: ['id', 'name', 'email'], } ] }, { model: Brand, as: 'toBrand', required: true, attributes: ['id', 'brandName', 'slug', 'profilePath'], include: [ { model: User, attributes: ['id', 'name', 'email'], } ] }, ], where: { readStatus: 2, mailSend: 2, }, order: [ ['id', 'ASC'], // [{ model: User, as: 'receiver' }, 'id', 'ASC'], ], }); const results = unreadMessages.reduce((groups, item) => { const group = groups[item.toBrand.id] || []; group.push(item); groups[item.toBrand.id] = group; return groups; }, {}); for (const key in results) { let templateHtml = ''; const senderId = []; const receiverId = (results[key][0]['toBrand']['id']) ? results[key][0]['toBrand']['id'] : null; if (results[key].length > 0) { const receiver = results[key][0]; const receiverRole = helperService._userNameFields(receiver?.role); let receiverUser; if (receiver?.fromId === receiver.fromRetailer.id) { receiverUser = receiverRole[0]; } else { receiverUser = receiverRole[1]; } const email = receiver[receiverUser]?.user?.email;; // let name = results[key][0]['receiver']['businessName']; templateHtml += `<div style="max-width:600px; margin: 0 auto; display:block; width:100%; padding: 20px;background-color: #fff;"> <p style="font-family: Arial, sans-serif, 'Open Sans'; font-size: 32px; line-height:36px; text-align:center;color: #242b3d;">You have <strong>${results[key].length} new mesage</strong></p><p style="font-family: Arial, sans-serif, 'Open Sans';font-size: 20px;line-height: 28px; text-align:center; color: #242b3d;">Get the full messaging experience on ${SITE_NAME}</p><p style="width: 100%; height:3px; background-color: #f5f5f5;ma">&nbsp;</p>`; results[key].forEach((unreadMessag) => { senderId.push(unreadMessag.fromRetailer.id); const userRole = unreadMessag?.role; const messageRole = helperService._userNameFields(userRole); let user; if (unreadMessag?.fromId === unreadMessag.fromRetailer.id) { user = messageRole[1]; } else { user = messageRole[0]; } const username = userRole === '2' ? unreadMessag[user]['companyName'] : unreadMessag[user]['brandName']; const slug = unreadMessag[user]['slug']; const profilePath = unreadMessag[user]['profilePath']; templateHtml += `<table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding: 10px 0"> <tbody> <tr> <td width="150px" style="text-align: center;"> <div style="font-family: Arial, sans-serif, 'Open Sans';margin-top: 0px;margin-bottom: 0px;font-size: 20px;line-height: 28px;max-width: 584px;color: #82899a;text-align: center;"> <div style="width: 80px; height: 80px; margin: 0 auto; display: block; text-align:center; border-radius:100px; overflow: hidden;"><img alt="img" src="${ASSETS_URL}${profilePath}" style="width: 100%; height:100%; object-fit:cover" /></div> </div> </td> <td style="width:100%;"> <div style="font-family: Arial, sans-serif, 'Open Sans';margin-top: 0px;margin-bottom: 0px;font-size: 20px;line-height: 28px;max-width: 584px;color: #82899a;text-align: left; margin-left: 15px;"> <p style="margin: 0;"><strong style="color: #242b3d;">${username}</strong></p> <p style="margin-top: 0; margin-bottom: 10px;">${unreadMessag.message}</p> </div> </td> <td align="center" style="font-family: Arial, sans-serif, 'Open Sans';font-weight: bold;margin-top: 0px;margin-bottom: 0px;font-size: 16px;line-height: 24px;mso-padding-alt: 12px 24px;background-color: #22a612;border-radius: 10px; border :thin solid #22a612;" width="210"> <a href="${FRONEND_BASE_URL}/messages/${slug}" style="text-decoration: none;outline:none;color: #ffffff;display: block;padding: 12px 24px;mso-text-raise: 3px;">View Message</a> </td> </tr> </tbody> </table>`; }); templateHtml += `</div>`; const userData = { MESSAGE: templateHtml, LINK_1: FRONEND_BASE_URL + '/contact-us', }; const emailContent = await helperService.emailTemplateContent( 23, userData, ); const mailSent = await this.mailService.sendMail( email, emailContent.subject, emailContent.body, ); if (mailSent === true) { await Message.update( { mailSend: '1' }, { where: { mailSend: '2', toId: receiverId, fromId: { [Op.in]: senderId, }, }, }, ); } } } } @Cron('0 0 0 * * *') async handleCron() { this.logger.debug('unread message send email'); //await this.getAllUnreadMessages(); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/messages/messages.controller.ts
import { Body, Controller, Get, Post, Query, Request, UploadedFile, UseGuards, UseInterceptors, } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { FileInterceptor } from '@nestjs/platform-express'; import { diskStorage } from 'multer'; import { ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { v4 as uuidv4 } from 'uuid'; import { MessageDto } from './dto/message.dto'; import { MessagesService } from './messages.service'; const path = require('path'); export const documentStorage = { storage: diskStorage({ destination: '../assets', filename: (req, file, cb) => { const filename: string = '/attachments/' + path.parse('attachment-').name.replace(/\s/g, '') + uuidv4(); const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); }, }), }; @Controller() export class MessagesController { constructor(private readonly messagesService: MessagesService) {} @UseGuards(AuthGuard('jwt')) @Post() @UseInterceptors(FileInterceptor('file', documentStorage)) async createMessage( @Request() req, @Body() messageDto: MessageDto, @UploadedFile() file: Express.Multer.File, ): Promise<IResponse> { const message = await this.messagesService.createMessage( req.user, messageDto, file, ); return new ResponseSuccess('Message has been sent', message); } @UseGuards(AuthGuard('jwt')) @Get('users-list') async getUsersList( @Request() req, @Query('searchQuery') searchQuery: string, ) { const usersList = await this.messagesService.getUsersList( req.user, searchQuery, ); return new ResponseSuccess('usersList', usersList); } @UseGuards(AuthGuard('jwt')) @Post('all-messages') async getMessages( @Request() req, @Body('anotherUserSlug') anotherUserSlug: string, @Body('offset') offset: string, ) { const messages = await this.messagesService.getMessages( req.user, anotherUserSlug, +offset, ); return new ResponseSuccess('messages', messages); } @UseGuards(AuthGuard('jwt')) @Get('get/unread/count') async getUnreadCount(@Request() req) { const messages = await this.messagesService.getUnreadCount(req.user); return new ResponseSuccess('messages', messages); } @Get('get/unread-messages/all') async getAllUnreadMessages() { const messages = await this.messagesService.getAllUnreadMessages(); return new ResponseSuccess('messages', messages); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/messages/messages.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Brand } from 'src/models/brand.model'; import { BrandCompany } from 'src/models/brandCompany.model'; import { Message } from 'src/models/message.model'; import { Retailer } from 'src/models/retailer.model'; import { User } from 'src/models/user.model'; import { MessagesController } from './messages.controller'; import { MessagesService } from './messages.service'; @Module({ imports: [SequelizeModule.forFeature([Message, User, Retailer, BrandCompany, Brand])], controllers: [MessagesController], providers: [MessagesService, MailServiceService], }) export class MessagesModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules/messages
/content/gmx-projects/gmx-admin/backend/src/modules/messages/dto/message.dto.ts
import { IsNotEmpty, IsOptional, IsString } from 'class-validator'; export class MessageDto { @IsNotEmpty() slug: string; @IsNotEmpty() @IsOptional() @IsString() message: string; @IsOptional() attachment: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/cms/cms.controller.ts
import { Controller, Get, Param } from '@nestjs/common'; import { ResponseSuccess } from '../../common/dto/response.dto'; import { IResponse } from '../../common/interfaces/response.interface'; import { CmsService } from './cms.service'; import path = require('path'); const cmsImagesPath = '/cms'; // export const cmsImageStorage = { // storage: diskStorage({ // // destination: '.' + cmsImagesPath, // destination: '../assets', // filename: (req, file, cb) => { // let filename: string = // path.parse('product-').name.replace(/\s/g, '') + uuidv4(); // filename = filename; // const extension: string = path.parse(file.originalname).ext; // cb(null, `${filename}${extension}`); // }, // }), // }; @Controller() export class CmsController { constructor(private readonly cmsService: CmsService) {} @Get(':type') async getCms(@Param() params): Promise<IResponse> { const response = await this.cmsService.getCms(params.type); response.content = JSON.parse(response.content); return new ResponseSuccess('Cms', response); } // @Post(':slug') // @UseInterceptors(FileFieldsInterceptor([ // { name: 'main_image_2' }, // { name: 'section2_image' }, // ], cmsImageStorage)) // async postCms( // @UploadedFiles() files: { main_image_2?: Express.Multer.File[], background?: Express.Multer.File[] }, // @Param('slug') slug: string, // @Body() updatedCmsData: any // ): Promise<IResponse> { // const response = await this.cmsService.postCms(slug, updatedCmsData, files); // return new ResponseSuccess('Cms', response); // } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/cms/cms.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { Cms } from '../../models/cms.model'; import { CmsController } from './cms.controller'; import { CmsService } from './cms.service'; @Module({ imports: [SequelizeModule.forFeature([Cms])], controllers: [CmsController], providers: [CmsService], }) export class CmsModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/cms/cms.service.ts
import { Injectable, NotFoundException } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { Cms } from '../../models/cms.model'; @Injectable() export class CmsService { constructor( @InjectModel(Cms) private cmsModel: typeof Cms, ) {} async getCms(slug: string) { const content = this.cmsModel.findOne({ where: { slug: slug }, }); if (!content) throw new NotFoundException(); return content; } // async postCms(slug: string, updatedCmsData: any, files: any) { // const updatedData = await this.cmsModel.findOne({ // where: { slug } // }); // for (const key in files) { // let result = files[key].map(a => a.path); // updatedCmsData[key] = result; // } // const newData = await updatedData.update({ // content: JSON.stringify(updatedCmsData) // }) // return newData // } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/offers/offers.controller.ts
import { Body, Controller, Delete, Get, HttpCode, Param, Post, Put, Query, Request, UseGuards, } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { JwtAuthGuard } from '../auth/guards/jwt-auth.guard'; import { BulkOrderDto } from './bulkOrder.dto'; import { DiscountDto } from './discount.dto'; import { OffersService } from './offers.service'; @UseGuards(JwtAuthGuard) @Controller() export class OffersController { constructor(private readonly offersService: OffersService) {} @UseGuards(AuthGuard('jwt')) @Get() async getAllOffers( @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, ) { const offers = await this.offersService.getAllOffers( req.user, +offset, +limit, ); return new ResponseSuccess('Offers', offers); } @UseGuards(AuthGuard('jwt')) @HttpCode(200) @Post('discount') async addDiscount( @Request() req, @Body() DiscountDto: DiscountDto, ): Promise<IResponse> { const data = await this.offersService.addDiscount(req.user, DiscountDto); return new ResponseSuccess('Discount added successfully.', data); } @UseGuards(AuthGuard('jwt')) @Get('discount/:slug') async findOneDiscount(@Request() req, @Param('slug') slug: string) { const data = await this.offersService.findOneDiscount(req.user, slug); return new ResponseSuccess('Discount.', data); } @UseGuards(AuthGuard('jwt')) @HttpCode(200) @Put('discount/:slug') async updateDiscount( @Param('slug') slug: string, @Request() req, @Body() DiscountDto: DiscountDto, ): Promise<IResponse> { const data = await this.offersService.updateDiscount( req.user, slug, DiscountDto, ); return new ResponseSuccess('Discount updated successfully.', data); } @UseGuards(AuthGuard('jwt')) @HttpCode(200) @Post('bulk-order') async addBulkOrder( @Request() req, @Body() bulkOrderDto: BulkOrderDto, ): Promise<IResponse> { const data = await this.offersService.addBulkOrder(req.user, bulkOrderDto); return new ResponseSuccess('Bulk order added successfully.', data); } @UseGuards(AuthGuard('jwt')) @Get('bulk-order/:slug') async findOneBulkOrder(@Request() req, @Param('slug') slug: string) { const data = await this.offersService.findOneBulkOrder(req.user, slug); return new ResponseSuccess('Bulk Order.', data); } @UseGuards(AuthGuard('jwt')) @HttpCode(200) @Put('bulk-order/:slug') async updateBulkOrder( @Param('slug') slug: string, @Request() req, @Body() bulkOrderDto: BulkOrderDto, ): Promise<IResponse> { const data = await this.offersService.updateBulkOrder( req.user, slug, bulkOrderDto, ); return new ResponseSuccess('Bulk order updated successfully.', data); } @UseGuards(AuthGuard('jwt')) @HttpCode(200) @Delete(':slug') async deleteDiscount( @Param('slug') slug: string, @Request() req, ): Promise<IResponse> { const data = await this.offersService.deleteDiscount(req.user, slug); const offerType = data.offerType == 1 ? 'Discount' : 'Bulk Order'; return new ResponseSuccess(`${offerType} deleted successfully.`, data); } @UseGuards(AuthGuard('jwt')) @Get('categories') async getAllCategories(@Request() req) { const offers = await this.offersService.getAllCategories(req.user); return new ResponseSuccess('Categories', offers); } @UseGuards(AuthGuard('jwt')) @Post('products') async getAllProducts(@Request() req, @Body() body: any) { const product = await this.offersService.getAllProducts(req.user, body); return new ResponseSuccess('Products.', product); } @UseGuards(AuthGuard('jwt')) @Get('retailers') async getAllRetailers(@Request() req) { const retailers = await this.offersService.getAllRetailers(req.user); return new ResponseSuccess('Retailers.', retailers); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/offers/offers.service.ts
import { BadRequestException, Injectable, NotFoundException, } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { Op } from 'sequelize'; import { Brand } from 'src/models/brand.model'; import { Category } from 'src/models/category.model'; import { Offers } from 'src/models/offers.model'; import { Order } from 'src/models/order.model'; import { Product } from 'src/models/product.model'; import { User } from 'src/models/user.model'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { BulkOrderDto } from './bulkOrder.dto'; import { DiscountDto } from './discount.dto'; @Injectable() export class OffersService { constructor( @InjectModel(Offers) private offersModel: typeof Offers, @InjectModel(Brand) private brandModel: typeof Brand, @InjectModel(Product) private productModel: typeof Product, @InjectModel(User) private userModel: typeof User, @InjectModel(Category) private categoryModel: typeof Category, @InjectModel(Order) private OrderModel: typeof Order, ) {} async getAllOffers(jwtUserDTO?: JwtUserDTO, offset = 0, limit = 10) { const { count, rows: offers } = await this.offersModel.findAndCountAll({ where: { userId: jwtUserDTO.id }, order: [['id', 'desc']], offset: offset ? offset * limit : 0, limit: limit, }); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), offers: offers, }; } async addDiscount(jwtUserDTO: JwtUserDTO, DiscountDto: DiscountDto) { const products = await this.findAllProductsByBrandId( jwtUserDTO.id, DiscountDto?.categoryIds, ); const retailers = await this.findAllRetailersByBrandId(jwtUserDTO.id); let slug = DiscountDto?.title ?.toLowerCase() .replace(/ /g, '-') .replace(/[^\w-]+/g, ''); const existeDiscountWithSlug = await this.offersModel.findAndCountAll({ where: { slug: { [Op.like]: `%${slug}%`, }, }, paranoid: false, }); if (existeDiscountWithSlug.count) { slug = slug + '-' + existeDiscountWithSlug.count; } const brand = await this.brandModel.findOne({ where: { userId: jwtUserDTO.id, }, }); if (!brand) throw new BadRequestException('Something went wrong'); const offer = await this.offersModel.create({ userId: jwtUserDTO.id, brandId: brand.id, title: DiscountDto.title, slug: slug, offerType: 1, orderType: DiscountDto.orderType, price: DiscountDto.price, categories: DiscountDto?.categoryIds?.join(','), products: DiscountDto?.productIds.length > 0 ? DiscountDto?.productIds?.join(',') : products?.join(','), originalProducts: DiscountDto?.productIds.length > 0 ? DiscountDto?.productIds?.join(',') : null, retailers: DiscountDto?.retailerIds.length > 0 ? DiscountDto?.retailerIds?.join(',') : retailers?.join(','), originalRetailers: DiscountDto?.retailerIds.length > 0 ? DiscountDto?.retailerIds?.join(',') : null, startDate: DiscountDto.startDate, endDate: DiscountDto.endDate ? DiscountDto.endDate : null, isInfinite: DiscountDto?.isInfinite ? DiscountDto?.isInfinite : null, }); return offer != null; } async findOneDiscount(jwtUserDTO: JwtUserDTO, slug: string) { const offer = await this.offersModel.findOne({ where: { slug: slug, userId: jwtUserDTO.id }, }); if (!offer) throw new NotFoundException(); return offer; } async updateDiscount( jwtUserDTO: JwtUserDTO, slug: string, DiscountDto: DiscountDto, ) { const categoriesIds = DiscountDto.categoryIds.length > 0 ? Array.isArray(DiscountDto.categoryIds) ? DiscountDto.categoryIds : DiscountDto.categoryIds.split(',') : []; const products = await this.findAllProductsByBrandId( jwtUserDTO.id, categoriesIds, ); const retailers = await this.findAllRetailersByBrandId(jwtUserDTO.id); const offer = await this.offersModel.findOne({ where: { slug: slug, userId: jwtUserDTO.id, }, }); if (!offer) throw new BadRequestException('Something went wrong'); offer.update({ title: DiscountDto.title, orderType: DiscountDto.orderType, price: DiscountDto.price, categories: DiscountDto.categoryIds.length > 0 ? Array.isArray(DiscountDto.categoryIds) ? DiscountDto.categoryIds.join(',') : DiscountDto.categoryIds : null, products: DiscountDto?.productIds.length > 0 ? Array.isArray(DiscountDto?.productIds) ? DiscountDto?.productIds?.join(',') : DiscountDto?.productIds : products?.join(','), originalProducts: DiscountDto?.productIds.length > 0 ? Array.isArray(DiscountDto?.productIds) ? DiscountDto?.productIds?.join(',') : DiscountDto?.productIds : null, retailers: DiscountDto?.retailerIds.length > 0 ? Array.isArray(DiscountDto?.retailerIds) ? DiscountDto?.retailerIds?.join(',') : DiscountDto?.retailerIds : retailers?.join(','), originalRetailers: DiscountDto?.retailerIds.length > 0 ? Array.isArray(DiscountDto?.retailerIds) ? DiscountDto?.retailerIds?.join(',') : DiscountDto?.retailerIds : null, startDate: DiscountDto.startDate, endDate: DiscountDto.endDate ? DiscountDto.endDate : null, isInfinite: DiscountDto?.isInfinite ? DiscountDto?.isInfinite : null, }); return offer; } async addBulkOrder(jwtUserDTO: JwtUserDTO, bulkOrderDto: BulkOrderDto) { const products = await this.findAllProductsByBrandId( jwtUserDTO.id, bulkOrderDto?.categoryIds, ); const retailers = await this.findAllRetailersByBrandId(jwtUserDTO.id); let slug = bulkOrderDto?.title ?.toLowerCase() .replace(/ /g, '-') .replace(/[^\w-]+/g, ''); const existeDiscountWithSlug = await this.offersModel.findAndCountAll({ where: { slug: { [Op.like]: `%${slug}%`, }, }, paranoid: false, }); if (existeDiscountWithSlug.count) { slug = slug + '-' + existeDiscountWithSlug.count; } const brand = await this.brandModel.findOne({ where: { userId: jwtUserDTO.id, }, }); if (!brand) throw new BadRequestException('Something went wrong'); const offer = await this.offersModel.create({ userId: jwtUserDTO.id, brandId: brand.id, title: bulkOrderDto.title, slug: slug, offerType: 2, orderType: bulkOrderDto.orderType, minQty: bulkOrderDto.minQty ? bulkOrderDto.minQty : null, maxQty: bulkOrderDto.maxQty ? bulkOrderDto.maxQty : null, price: bulkOrderDto.price, categories: bulkOrderDto.categoryIds.join(','), products: bulkOrderDto?.productIds.length > 0 ? bulkOrderDto?.productIds?.join(',') : products?.join(','), originalProducts: bulkOrderDto?.productIds.length > 0 ? bulkOrderDto?.productIds?.join(',') : null, retailers: bulkOrderDto?.retailerIds.length > 0 ? bulkOrderDto?.retailerIds?.join(',') : retailers?.join(','), originalRetailers: bulkOrderDto?.retailerIds.length > 0 ? bulkOrderDto?.retailerIds?.join(',') : null, startDate: bulkOrderDto.startDate, endDate: bulkOrderDto.endDate ? bulkOrderDto.endDate : null, isInfinite: bulkOrderDto?.isInfinite ? bulkOrderDto?.isInfinite : null, }); return offer != null; } async findOneBulkOrder(jwtUserDTO: JwtUserDTO, slug: string) { const offer = await this.offersModel.findOne({ where: { slug: slug, userId: jwtUserDTO.id }, }); if (!offer) throw new NotFoundException(); return offer; } async updateBulkOrder( jwtUserDTO: JwtUserDTO, slug: string, bulkOrderDto: BulkOrderDto, ) { const categoriesIds = bulkOrderDto.categoryIds.length > 0 ? Array.isArray(bulkOrderDto.categoryIds) ? bulkOrderDto.categoryIds : bulkOrderDto.categoryIds.split(',') : []; const products = await this.findAllProductsByBrandId( jwtUserDTO.id, categoriesIds, ); const retailers = await this.findAllRetailersByBrandId(jwtUserDTO.id); const offer = await this.offersModel.findOne({ where: { slug: slug, userId: jwtUserDTO.id, }, }); if (!offer) throw new BadRequestException('Something went wrong'); offer.update({ title: bulkOrderDto.title, orderType: bulkOrderDto.orderType, minQty: bulkOrderDto.minQty ? bulkOrderDto.minQty : null, maxQty: bulkOrderDto.maxQty ? bulkOrderDto.maxQty : null, price: bulkOrderDto.price, categories: bulkOrderDto.categoryIds.length > 0 ? Array.isArray(bulkOrderDto.categoryIds) ? bulkOrderDto.categoryIds.join(',') : bulkOrderDto.categoryIds : null, products: bulkOrderDto?.productIds.length > 0 ? Array.isArray(bulkOrderDto?.productIds) ? bulkOrderDto?.productIds?.join(',') : bulkOrderDto?.productIds : products?.join(','), originalProducts: bulkOrderDto?.productIds.length > 0 ? Array.isArray(bulkOrderDto?.productIds) ? bulkOrderDto?.productIds?.join(',') : bulkOrderDto?.productIds : null, retailers: bulkOrderDto?.retailerIds.length > 0 ? Array.isArray(bulkOrderDto?.retailerIds) ? bulkOrderDto?.retailerIds?.join(',') : bulkOrderDto?.retailerIds : retailers?.join(','), originalRetailers: bulkOrderDto?.retailerIds.length > 0 ? Array.isArray(bulkOrderDto?.retailerIds) ? bulkOrderDto?.retailerIds?.join(',') : bulkOrderDto?.retailerIds : null, startDate: bulkOrderDto.startDate, endDate: bulkOrderDto.endDate ? bulkOrderDto.endDate : null, isInfinite: bulkOrderDto?.isInfinite ? bulkOrderDto?.isInfinite : null, }); return offer; } async deleteDiscount(jwtUserDTO: JwtUserDTO, slug: string) { const offer = await this.offersModel.findOne({ where: { slug: slug, userId: jwtUserDTO.id, }, }); if (!offer) throw new BadRequestException('Something went wrong'); await offer.destroy(); return offer; } async findAllCategoriesIdsByBrandId(userId: number) { return await this.productModel .findAll({ where: { userId: userId, isActive: '1', productVisibility: '1' }, attributes: ['categoryId'], raw: true, group: ['categoryId'], }) .then((products) => products.map((product) => product.categoryId)); } async getAllCategories(jwtUserDTO?: JwtUserDTO) { const categoriesIds = await this.findAllCategoriesIdsByBrandId( jwtUserDTO.id, ); const categories = await this.categoryModel.findAll({ where: { id: { [Op.in]: categoriesIds }, isActive: '1' }, }); return categories; } async findAllProductsByBrandId(userId: number, categoryIds: any) { return await this.productModel .findAll({ where: { userId: userId, categoryId: { [Op.in]: categoryIds }, isActive: '1', productVisibility: '1', }, attributes: ['id'], raw: true, }) .then((products) => products?.map((product) => product.id)); } async getAllProducts(jwtUserDTO: JwtUserDTO, body: any) { const allProducts = await this.productModel.findAll({ where: { userId: jwtUserDTO.id, categoryId: { [Op.in]: body?.categoryIds }, isActive: '1', productVisibility: '1', }, }); return allProducts; } async findAllRetailersByBrandId(userId: number, type = true) { const brand = await this.brandModel.findOne({ where: { userId: userId }, }); const orders = await this.OrderModel.findAll({ where: { brandId: brand?.id }, attributes: ['retailerId'], raw: true, group: ['retailerId'], }).then((orders) => orders.map((order) => order.retailerId)); if (orders.length <= 0 && type) { return await this.userModel .findAll({ where: { role: 3, isApproved: 1, isActive: 1, }, attributes: ['id'], }) .then((retailers) => retailers?.map((retailer) => retailer.id)); } return orders; } async getAllRetailers(jwtUserDTO: JwtUserDTO) { //const retailerIds = await this.findAllRetailersByBrandId(jwtUserDTO.id, false); const retailers = await this.userModel.findAll({ where: { //id: { [Op.in]: retailerIds}, role: 3, isApproved: 1, isActive: 1, }, }); return retailers; } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/offers/bulkOrder.dto.ts
import { IsNotEmpty, IsOptional } from 'class-validator'; export class BulkOrderDto { @IsNotEmpty() title: string; @IsNotEmpty() price: string; @IsNotEmpty() orderType: string; @IsNotEmpty() minQty: string; @IsNotEmpty() maxQty: string; @IsNotEmpty() categoryIds: any; @IsOptional() productIds: any; @IsOptional() retailerIds: any; @IsNotEmpty() startDate: Date; @IsOptional() endDate: Date; @IsOptional() isInfinite: boolean; }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/offers/offers.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { Brand } from 'src/models/brand.model'; import { Category } from 'src/models/category.model'; import { Offers } from 'src/models/offers.model'; import { Order } from 'src/models/order.model'; import { Product } from 'src/models/product.model'; import { User } from 'src/models/user.model'; import { OffersController } from './offers.controller'; import { OffersService } from './offers.service'; @Module({ imports: [ SequelizeModule.forFeature([Offers, User, Brand, Product, Category, Order]), ], controllers: [OffersController], providers: [OffersService], }) export class OffersModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/offers/discount.dto.ts
import { IsNotEmpty, IsOptional } from 'class-validator'; export class DiscountDto { @IsNotEmpty() title: string; @IsNotEmpty() price: string; @IsNotEmpty() orderType: string; @IsNotEmpty() categoryIds: any; @IsOptional() productIds: any; @IsOptional() retailerIds: any; @IsNotEmpty() startDate: Date; @IsOptional() endDate: Date; @IsOptional() isInfinite: boolean; }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/followers/followers.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { Follower } from 'src/models/follower.model'; import { User } from 'src/models/user.model'; import { FollowersController } from './followers.controlller'; import { FollowersService } from './followers.service'; import { Brand } from 'src/models/brand.model'; import { Retailer } from 'src/models/retailer.model'; @Module({ imports: [SequelizeModule.forFeature([Follower, User, Brand,Retailer])], controllers: [FollowersController], providers: [FollowersService], }) export class FollowersModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/followers/followers.controlller.ts
import { Body, Controller, Get, Param, Post, Query, Request, UseGuards, } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { ResponseError, ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { FollowersService } from './followers.service'; @Controller() export class FollowersController { constructor(private readonly followersService: FollowersService) {} @UseGuards(AuthGuard('jwt')) @Get(':userSlug') async getFollowers( @Param('userSlug') userSlug: string, @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, ): Promise<IResponse> { const followers = await this.followersService.getFollowers( req.user, userSlug, +offset, +limit, ); return new ResponseSuccess('Followers', followers); } @UseGuards(AuthGuard('jwt')) @Post('/follow') async follow(@Request() req, @Body('slug') slug: string) { const toggleFollow = await this.followersService.toggleFollow( req.user, slug, ); if (toggleFollow) { return new ResponseSuccess('ToggleFollow', toggleFollow); } else { return new ResponseError('Something went wrong.', toggleFollow); } } @UseGuards(AuthGuard('jwt')) @Get('/followings/:userSlug') async getFollowings( @Param('userSlug') userSlug: string, @Request() req, @Query('offset') offset: string, @Query('limit') limit: string, ): Promise<IResponse> { const followings = await this.followersService.getFollowings( req.user, userSlug, +offset, +limit, ); return new ResponseSuccess('Followings', followings); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/followers/followers.service.ts
import { Injectable, NotFoundException } from '@nestjs/common'; import { Op } from 'sequelize'; import { Follower } from 'src/models/follower.model'; import { User } from 'src/models/user.model'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { InjectModel } from '@nestjs/sequelize'; import { Brand } from 'src/models/brand.model'; import { HelperService } from 'src/services/Helper.service'; import { Retailer } from 'src/models/retailer.model'; import { Organizations } from 'src/models/organizations.model'; @Injectable() export class FollowersService { constructor( @InjectModel(Brand) private brandModel: typeof Brand, @InjectModel(Retailer) private retailerModel: typeof Retailer, ) {} async getFollowers(jwtUserDto: JwtUserDTO, userSlug, offset = 0, limit = 10) { const helperService = await new HelperService(); const { fromUser } = await helperService.getFromUser(jwtUserDto.id); const retailerData = await Retailer.findOne({ where: { slug: userSlug }, raw: true, }); const brandData = await Brand.findOne({ where: { slug: userSlug }, raw: true, }); const currentUser = retailerData || brandData; const currentRole = retailerData ? 3 : 2; const { count, rows: followers } = await Follower.findAndCountAll({ distinct: true, include: [ { model: Brand, as: 'toBrand', attributes: ['id', 'brandName', 'slug', 'profilePath'], required: false, include: [ { model: Follower, as: 'followers', where: { isActive: 1, followerId: { [Op.eq]: fromUser + "", }, }, required: false, }, ], }, { model: Retailer, as: 'toRetailer', attributes: ['id', 'companyName', 'slug', 'profilePath'], required: false, include: [ { model: Follower, as: 'followers', where: { isActive: 1, followerId: { [Op.eq]: fromUser + "", }, }, required: false, }, ], }, ], where: { followingId: currentUser?.id, followerRole: currentRole + '', isActive: 1, }, offset: offset ? offset * limit : 0, limit: limit, subQuery: false, }); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), followers: followers, }; } async toggleFollow(jwtUserDTO: JwtUserDTO, slug) { const brand = await this.brandModel.findOne({ where: { slug: slug, isActive: 1, }, }); const retailer = await this.retailerModel.findOne({ where: { slug: slug, isActive: 1, }, }); const user = brand ?? retailer; if (!user) throw new NotFoundException('User not found'); const fromRole = await User.findOne({ include: [{ model: Organizations }], where: { id: user?.userId, }, }); try { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); const followerRole = fromRole?.organization?.role; // if (user?.id != fromUser && followerRole !== role) { if (user?.id != fromUser) { const newFollower = { followingRole: role, followingId: user?.id, followerRole: followerRole, followerId: fromUser, isActive: 1, }; const where = { followingRole: role, followingId: user?.id, followerRole: followerRole, followerId: fromUser, }; const follower = await Follower.findOne({ where }); if (!follower) { const follow = await Follower.create(newFollower); return { follow: true }; } else if (follower.isActive) { const unfollow = await Follower.update( { ...newFollower, isActive: 0 }, { where, individualHooks: true }, ); return { follow: false }; } else { const follow = await Follower.update(newFollower, { where, individualHooks: true, }); return { follow: true }; } } } catch (error) { console.log({ error }); } return null; } async getFollowings( jwtUserDto: JwtUserDTO, userSlug, offset: number = 0, limit: number = 10, ) { const retailerData = await Retailer.findOne({ where: { slug: userSlug }, raw: true, }); const brandData = await Brand.findOne({ where: { slug: userSlug }, raw: true, }); const currentUser = retailerData || brandData; const currentRole = retailerData ? 3 : 2; const helperService = await new HelperService(); const { fromUser } = await helperService.getFromUser(jwtUserDto.id); const { count, rows: followings } = await Follower.findAndCountAll({ distinct: true, include: [ { model: Brand, as: 'fromBrand', attributes: ['id', 'brandName', 'slug', 'profilePath'], required: false, include: [ { model: Follower, as: 'followers', where: { isActive: 1, followerId: { [Op.eq]: fromUser, }, }, required: false, }, ], }, { model: Retailer, as: 'fromRetailer', attributes: ['id', 'companyName', 'slug', 'profilePath'], required: false, include: [ { model: Follower, as: 'followers', where: { isActive: 1, followerId: { [Op.eq]:fromUser, }, }, required: false, }, ], }, ], where: { isActive: 1, followerId: currentUser?.id, followingRole: currentRole + '', }, offset: offset ? offset * limit : 0, limit: limit, subQuery: false, }); return { count: count, currentPage: offset ? +offset : 0, totalPages: Math.ceil(count / limit), followings: followings, }; } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/comment/comment.controller.ts
import { Body, Controller, Post, Request, UploadedFiles, UseGuards, UseInterceptors, } from '@nestjs/common'; import { AuthGuard } from '@nestjs/passport'; import { FilesInterceptor } from '@nestjs/platform-express'; import { diskStorage } from 'multer'; import { ResponseSuccess } from 'src/common/dto/response.dto'; import { IResponse } from 'src/common/interfaces/response.interface'; import { CommentService } from './comment.services'; import { CommentReplyDto } from './dto/comment-reply.dto'; import { CreateCommentDto } from './dto/create-comment.dto'; import { GetCommentDto } from './dto/get-comments.dto'; import { GetReplyDto } from './dto/get-reply.dto'; import path = require('path'); export const uploadFiles = { storage: diskStorage({ destination: '../assets/postedMedia', filename: (req, file, cb) => { //console.log(file.originalname); let filename: string = path.parse('file-').name.replace(/\s/g, '') + Date.now() + '-' + Math.round(Math.random() * 1e9); filename = filename; const extension: string = path.parse(file.originalname).ext; cb(null, `${filename}${extension}`); }, }), }; @Controller() export class CommentController { constructor(private readonly commentService: CommentService) {} @UseGuards(AuthGuard('jwt')) @Post() @UseInterceptors(FilesInterceptor('attachment', null, uploadFiles)) async createComment( @Body() createCommentDto: CreateCommentDto, @Request() req, @UploadedFiles() files: Array<Express.Multer.File>, ): Promise<IResponse> { const isCreated = await this.commentService.createComment( createCommentDto, req.user, files, ); return new ResponseSuccess('commented successfully.', isCreated); } @UseGuards(AuthGuard('jwt')) @Post('reply') @UseInterceptors(FilesInterceptor('attachment', null, uploadFiles)) async commentReply( @Body() commentReplyDto: CommentReplyDto, @Request() req, @UploadedFiles() files: Array<Express.Multer.File>, ): Promise<IResponse> { const isCreated = await this.commentService.commentReply( commentReplyDto, req.user, files, ); return new ResponseSuccess('replied successfully.', isCreated); } @Post('/list') async getComment(@Body() getCommentDto: GetCommentDto): Promise<IResponse> { const comments = await this.commentService.getComment(getCommentDto); return new ResponseSuccess('Comments', comments); } @Post('/replyList') async getReplies(@Body() getReplyDto: GetReplyDto): Promise<IResponse> { const reply = await this.commentService.getReplies(getReplyDto); return new ResponseSuccess('reply', reply); } @UseGuards(AuthGuard('jwt')) @Post('/like') async handleCommentLike( @Body('commentId') commentId: string, @Request() req, ): Promise<IResponse> { const like = await this.commentService.handleCommentLike( +commentId, req.user, ); return new ResponseSuccess('comment liked', like); } @Post('/singleCommentReplies') async getSingleCommentReplies( @Body('commentId') commentId: string, @Body('limit') limit: string, @Body('page') page: string, ): Promise<IResponse> { const reply = await this.commentService.getSingleCommentReplies( +commentId, +limit, +page, ); return new ResponseSuccess('replies', reply); } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/comment/comment.services.ts
import { Injectable } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Attachment } from 'src/models/attachment.model'; import { Comment } from 'src/models/comment.model'; import { CommentLike } from 'src/models/commentLike.model'; import { CommentReply } from 'src/models/commentReply.model'; import { User } from 'src/models/user.model'; import { HelperService } from 'src/services/Helper.service'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { CommentReplyDto } from './dto/comment-reply.dto'; import { CreateCommentDto } from './dto/create-comment.dto'; import { GetCommentDto } from './dto/get-comments.dto'; import { GetReplyDto } from './dto/get-reply.dto'; import { Brand } from 'src/models/brand.model'; import { Retailer } from 'src/models/retailer.model'; //import { MailServiceService } from 'src/mail-service/mail-service.service'; const { FRONEND_BASE_URL } = process.env; require('dotenv').config(); @Injectable() export class CommentService { constructor( @InjectModel(Comment) private commentModel: typeof Comment, @InjectModel(CommentReply) private commentReplyModel: typeof CommentReply, @InjectModel(User) private userModel: typeof User, @InjectModel(Attachment) private attachmentModel: typeof Attachment, @InjectModel(CommentLike) private commentLikeModel: typeof CommentLike, private mailService?: MailServiceService, ) {} async addAttachment(createArray: any) { await this.attachmentModel.create(createArray); } async createComment( createCommentDto: CreateCommentDto, jwtUserDTO: JwtUserDTO, attachment: any, ) { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); const comment = await this.commentModel.create({ role: role, userId: fromUser, postId: createCommentDto.postId, comment: createCommentDto.comment, commentUniqueId: Date.now().toString(36) + Math.random().toString(36).substring(2), }); await attachment.map(async (uploadedFile: any) => { await this.addAttachment({ attachableId: comment.id, attachableType: 'comment', attachmentType: uploadedFile.mimetype.substring(0, 5) == 'image' ? 1 : 2, attachment: uploadedFile.path.substring(9), }); }); const ParentPost = await this.commentModel.findOne({ where: { id: comment.id }, }); // const mentions = JSON.parse(createCommentDto.mentions); // if (mentions.length > 0) { // mentions?.map(async (item) => { // const user = await User.findOne({ // where: { slug: item.id }, // }); // if (user) { // const helperService = await new HelperService(); // const userData = { // FROM_NAME: ParentPost?.user?.name || '', // NAME: user?.name || '', // MESSAGE: ParentPost?.comment || '', // LINK: FRONEND_BASE_URL + '/post/' + ParentPost?.commentUniqueId, // }; // const emailContent = await helperService.emailTemplateContent( // 26, // userData, // ); // await this.mailService.sendMail( // user.email, // emailContent.subject, // emailContent.body, // ); // } // }); // } await comment.reload(); return { comment, postCommentCount: (await comment.$get('post')).commentCount, }; } async commentReply( commentReplyDto: CommentReplyDto, jwtUserDTO: JwtUserDTO, attachment: any, ) { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); const reply = await this.commentReplyModel.create({ commentId: commentReplyDto.commentId, role: role, userId: fromUser, reply: commentReplyDto.reply, }); await attachment.map(async (uploadedFile: any) => { await this.addAttachment({ attachableId: reply.id, attachableType: 'commentReply', attachmentType: uploadedFile.mimetype.substring(0, 5) == 'image' ? 1 : 2, attachment: uploadedFile.path.substring(9), }); }); return reply; } async getComment(getCommentDto: GetCommentDto) { let condition = {}; if (getCommentDto.postId) { condition = { postId: getCommentDto.postId }; } const commentList = await this.commentModel.findAndCountAll({ where: condition, attributes: [ 'id', 'role', 'postId', 'comment', 'commentUniqueId', 'replyCount', 'likeCount', ], order: [['id', 'DESC']], include: [ { model: this.commentReplyModel, limit: 3, order: [['id', 'DESC']], include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: this.attachmentModel, }, ], }, { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: this.attachmentModel, }, ], }); return commentList; } async getReplies(getReplyDto: GetReplyDto) { const reply = await this.commentModel.findAll({ where: { commentUniqueId: getReplyDto.commentUniqueId }, attributes: [ 'id', 'role', 'userId', 'postId', 'comment', 'commentUniqueId', 'createdAt', 'replyCount', 'likeCount', ], // order: [ // ['id', 'DESC'] // ], include: [ { model: this.commentReplyModel, order: [['id', 'DESC']], attributes: ['id', 'commentId', 'role', 'userId', 'reply', 'createdAt'], include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: this.attachmentModel, }, ], }, { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: this.attachmentModel, }, ], }); return reply; } async handleCommentLike(commentId, jwtUserDTO: JwtUserDTO) { const comment = await this.commentModel.findOne(commentId); const likeData = { commentId: comment.id, userId: jwtUserDTO.id, }; const existsLikeData = await this.commentLikeModel.findOne({ where: likeData, paranoid: false, }); let hasUserLikedComment = false; if (!existsLikeData) { await this.commentLikeModel.create(likeData); hasUserLikedComment = true; } else if (existsLikeData.deletedAt) { await existsLikeData.restore(); hasUserLikedComment = true; } else { await existsLikeData.destroy(); hasUserLikedComment = false; } const { count: likeCount } = await this.commentLikeModel.findAndCountAll({ where: { commentId: comment.id }, }); return { totalLikesOnComment: likeCount, hasUserLikedComment, }; } async getSingleCommentReplies( commentId: number, limit: number, page: number, ) { const offset = page * limit; const replies = await this.commentReplyModel.findAndCountAll({ where: { commentId: commentId }, attributes: ['id', 'commentId', 'role', 'userId', 'reply', 'createdAt'], limit, offset, order: [['id', 'DESC']], include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: this.attachmentModel, }, ], }); return replies; } }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/comment/comment.module.ts
import { Module } from '@nestjs/common'; import { SequelizeModule } from '@nestjs/sequelize'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Attachment } from 'src/models/attachment.model'; import { Comment } from 'src/models/comment.model'; import { CommentLike } from 'src/models/commentLike.model'; import { CommentReply } from 'src/models/commentReply.model'; import { User } from 'src/models/user.model'; import { CommentController } from './comment.controller'; import { CommentService } from './comment.services'; @Module({ imports: [ SequelizeModule.forFeature([ Comment, CommentReply, User, Attachment, CommentLike, ]), ], controllers: [CommentController], providers: [CommentService, MailServiceService], }) export class CommentModule {}
0
/content/gmx-projects/gmx-admin/backend/src/modules/comment
/content/gmx-projects/gmx-admin/backend/src/modules/comment/dto/comment-reply.dto.ts
import { IsNotEmpty, IsOptional } from 'class-validator'; export class CommentReplyDto { @IsNotEmpty() commentId: string; @IsOptional() reply: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/comment
/content/gmx-projects/gmx-admin/backend/src/modules/comment/dto/get-reply.dto.ts
import { IsNotEmpty } from 'class-validator'; export class GetReplyDto { @IsNotEmpty() commentUniqueId: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/comment
/content/gmx-projects/gmx-admin/backend/src/modules/comment/dto/create-comment.dto.ts
import { IsNotEmpty, IsOptional } from 'class-validator'; export class CreateCommentDto { @IsOptional() comment: string; @IsOptional() mentions: string; @IsNotEmpty() postId: string; }
0
/content/gmx-projects/gmx-admin/backend/src/modules/comment
/content/gmx-projects/gmx-admin/backend/src/modules/comment/dto/get-comments.dto.ts
import { IsOptional } from 'class-validator'; export class GetCommentDto { @IsOptional() postId: number; // @IsNotEmpty() // page: number // @IsNotEmpty() // limit: number }
0
/content/gmx-projects/gmx-admin/backend/src/modules
/content/gmx-projects/gmx-admin/backend/src/modules/post/post.service.ts
import { Injectable, NotFoundException } from '@nestjs/common'; import { InjectModel } from '@nestjs/sequelize'; import { Op } from 'sequelize'; import { Attachment } from 'src/models/attachment.model'; import { Follower } from 'src/models/follower.model'; import { Like } from 'src/models/like.model'; import { Post } from 'src/models/post.model'; import { Repost } from 'src/models/repost.model'; import { User } from 'src/models/user.model'; import { JwtUserDTO } from '../auth/dto/JwtUser.dto'; import { CreatePostDto } from './dto/create-post.dto'; import { CreateRepostDto } from './dto/create-re-post.dto'; import { MailServiceService } from 'src/mail-service/mail-service.service'; import { Brand } from 'src/models/brand.model'; import { HelperService } from 'src/services/Helper.service'; import { GetPostDto } from './dto/get-posts-dto'; import { Retailer } from 'src/models/retailer.model'; import { Organizations } from 'src/models/organizations.model'; const { FRONEND_BASE_URL } = process.env; require('dotenv').config(); @Injectable() export class PostService { constructor( @InjectModel(Post) private postModel: typeof Post, @InjectModel(Attachment) private attachmentModel: typeof Attachment, @InjectModel(Repost) private repostModel: typeof Repost, @InjectModel(Like) private likeModel: typeof Like, @InjectModel(Retailer) private retailerModel: typeof Retailer, @InjectModel(User) private userModel: typeof User, private mailService?: MailServiceService, ) {} async addAttachment(createArray: any) { await this.attachmentModel.create(createArray); } async getPosts(getPostDto: GetPostDto, jwtUserDTO?: JwtUserDTO) { let userId = null; if (getPostDto.type == 'brand') { const brand = await Brand.findOne({ where: { slug: getPostDto.slug }, }); if (!brand) { throw new NotFoundException(); } userId = brand.id; } if (getPostDto.type == 'retailer') { const retailer = await Retailer.findOne({ where: { slug: getPostDto.slug }, }); if (!retailer) { throw new NotFoundException(); } userId = retailer.id; } const limit = +getPostDto.limit; const offset = +getPostDto.page * limit; const posts = await this.postModel.findAndCountAll({ //logging: console.log, distinct: true, include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, { model: Post, as: 'parentPost', include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, ], }, ], where: { userId: userId, isActive: 1 }, limit, offset, order: [['createdAt', 'DESC']], }); const { count, rows } = posts; const resetPosts = await Promise.all( rows.map(async (post) => { let isReposted = null; let isLiked = null; const isCommneted = null; if (post.type == 2) { if (jwtUserDTO?.id) { const helperService = await new HelperService(); const { fromUser} = await helperService.getFromUser(jwtUserDTO.id); isReposted = await post.parentPost.$get('reposts', { where: { userId: fromUser }, }); isLiked = await post.parentPost.$get('likes', { where: { userId: fromUser }, }); } post = post.toJSON(); return { ...post, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, parentPost: { ...post.parentPost, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, }, }; } else { if (jwtUserDTO?.id) { const helperService = await new HelperService(); const { fromUser} = await helperService.getFromUser(jwtUserDTO.id); isReposted = await post.$get('reposts', { where: { userId: fromUser }, }); isLiked = await post.$get('likes', { where: { userId: fromUser }, }); } post = post.toJSON(); return { ...post, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, }; } }), ); return { count, rows: resetPosts }; } async getUserPosts(userId: number) { const posts = await this.postModel.findAndCountAll({ //logging: console.log, include: [ // { // model: User, as: 'fromUser' // }, // { // model: Attachment // }, // { // model: Repost, // attributes: ['id'] // }, // { // model: Comment, // attributes: ['id'] // }, // { // model: Like, // attributes: ['id'] // } ], where: { [Op.and]: [{ isActive: 1 }, { fromId: userId }], }, order: [['id', 'ASC']], }); return posts; } async getPost(postId) { const post = await this.postModel.findOne({ include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, { model: Post, as: 'parentPost', include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, ], }, ], where: { id: postId, isActive: 1, }, }); return post; } async createPost( createPostDto: CreatePostDto, jwtUserDTO: JwtUserDTO, attachment: any, ) { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); const newPost = await this.postModel.create({ role: role, userId: fromUser, type: createPostDto.type, post: createPostDto.post, postUniqueId: Date.now().toString(36) + Math.random().toString(36).substring(2), }); await attachment.map(async (uploadedFile: any) => { await this.addAttachment({ attachableId: newPost.id, attachableType: createPostDto.attachableType, attachmentType: uploadedFile.mimetype.substring(0, 5) == 'image' ? 1 : 2, attachment: uploadedFile.path.substring(9), }); }); await newPost.reload(); await newPost.$get('attachments'); const post = await this.getPost(newPost.id); // const mentions = JSON.parse(createPostDto.mentions); // if (mentions.length > 0) { // mentions?.map(async (item) => { // const user = await User.findOne({ // where: { slug: item.id }, // }); // if (user) { // const helperService = await new HelperService(); // const userData = { // FROM_NAME: post?.user?.name || '', // NAME: user?.name || '', // MESSAGE: post?.post || '', // LINK: FRONEND_BASE_URL + '/post/' + post?.postUniqueId, // }; // const emailContent = await helperService.emailTemplateContent( // 26, // userData, // ); // await this.mailService.sendMail( // user.email, // emailContent.subject, // emailContent.body, // ); // } // }); // } return { ...post.toJSON(), isReposted: false, isLiked: false }; } async createRepost(createRepostDto: CreateRepostDto, jwtUserDTO: JwtUserDTO) { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); const post = await this.findOne(createRepostDto.repostId); const whereData = { role: role, userId: fromUser, type: 2, repostId: createRepostDto.repostId, }; const existsRepostData = await this.postModel.findOne({ where: whereData, paranoid: false, }); let hasUserReposted = false; if (!existsRepostData) { await this.postModel.create({ ...whereData, post: createRepostDto.post, postUniqueId: Date.now().toString(36) + Math.random().toString(36).substring(2), }); hasUserReposted = true; } else if (existsRepostData.deletedAt) { await existsRepostData.restore(); existsRepostData.changed('createdAt', true); existsRepostData.set('createdAt', new Date(), { raw: true }); await existsRepostData.save({ fields: ['createdAt'], }); hasUserReposted = true; } else { await existsRepostData.destroy(); hasUserReposted = false; } const ParentPost = await this.postModel.findOne({ where: { id: post.id }, }); // const mentions = createRepostDto?.mentions // ? JSON.parse(createRepostDto?.mentions) // : []; // if (mentions.length > 0) { // mentions?.map(async (item) => { // const user = await User.findOne({ // where: { slug: item.id }, // }); // if (user) { // const helperService = await new HelperService(); // const userData = { // FROM_NAME: ParentPost?.user?.name || '', // NAME: user?.name || '', // MESSAGE: ParentPost?.post || '', // LINK: FRONEND_BASE_URL + '/post/' + ParentPost?.postUniqueId, // }; // const emailContent = await helperService.emailTemplateContent( // 26, // userData, // ); // await this.mailService.sendMail( // user.email, // emailContent.subject, // emailContent.body, // ); // } // }); // } return { totalRepostOnPost: ParentPost.repostCount, hasUserReposted: hasUserReposted, }; // const repostData = await this.repostModel.create({ // userId: jwtUserDTO.id, // repostId: createRepostDto.repostId, // postId: repost.id // }) } async getReposts(postUniqueId, page, limit, jwtUserDTO: JwtUserDTO) { const helperService = await new HelperService(); const { fromUser } = await helperService.getFromUser(jwtUserDTO.id); const post = await this.findbyUniqueId(postUniqueId); const reposts = await Post.findAndCountAll({ include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], include: [ { model: Follower, as: 'followers', where: { followingId: fromUser, isActive: 1, }, required: false, }, ], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], include: [ { model: Follower, as: 'followers', where: { followingId: fromUser, isActive: 1, }, required: false, }, ], }, ], // include: [ // { // model: User, // include: [ // { // model: Follower, // as: 'followers', // where: { // followerId: jwtUserDTO.id, // isActive: 1, // }, // required: false, // }, // ], // }, // ], where: { repostId: post.id, isActive: 1, }, limit: +limit, offset: +limit * +page, }); return reposts; } async getLikes(postUniqueId, page, limit, jwtUserDTO: JwtUserDTO) { const post = await this.findbyUniqueId(postUniqueId); const helperService = await new HelperService(); const { fromUser} = await helperService.getFromUser(jwtUserDTO.id); const likes = await Like.findAndCountAll({ include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], include: [ { model: Follower, as: 'followers', where: { followerId: fromUser, isActive: 1, }, required: false, }, ], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], include: [ { model: Follower, as: 'followers', where: { followerId: fromUser, isActive: 1, }, required: false, }, ], }, ], where: { postId: post.id, isActive: 1, }, limit: +limit, offset: +limit * +page, }); return likes; } async findbyUniqueId(postUniqueId) { const post = await this.postModel.findOne({ where: { postUniqueId: postUniqueId, isActive: 1, }, }); if (!post) { throw new NotFoundException('Post Not Founded!'); } return post; } async handlePostLike(postId, jwtUserDTO: JwtUserDTO) { const helperService = await new HelperService(); const { fromUser, role } = await helperService.getFromUser(jwtUserDTO.id); const post = await this.findOne(postId); const likeData = { postId: post.id, role: role, userId: fromUser, }; const existsLikeData = await this.likeModel.findOne({ where: likeData, paranoid: false, }); let hasUserLikedPost = false; if (!existsLikeData) { await this.likeModel.create(likeData); hasUserLikedPost = true; } else if (existsLikeData.deletedAt) { await existsLikeData.restore(); hasUserLikedPost = true; } else { await existsLikeData.destroy(); hasUserLikedPost = false; } const { count: likeCount } = await this.likeModel.findAndCountAll({ where: { postId: post.id }, }); return { totalLikesOnPost: likeCount, hasUserLikedPost, }; } async getSingle(postUniqueId, jwtUserDTO?: JwtUserDTO) { const helperService = await new HelperService(); const { fromUser} = await helperService.getFromUser(jwtUserDTO.id); let singlePost = await this.postModel.findOne({ where: { postUniqueId: postUniqueId, isActive: 1, }, include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, { model: Post, as: 'parentPost', include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, ], }, ], }); if (!singlePost) { throw new NotFoundException('Post Not Founded!'); } let isReposted = null; let isLiked = null; const isCommneted = null; if (singlePost.type == 2) { if (jwtUserDTO.id) { isReposted = await singlePost.parentPost.$get('reposts', { where: { userId: fromUser }, }); isLiked = await singlePost.parentPost.$get('likes', { where: { userId: fromUser }, }); } singlePost = singlePost.toJSON(); return { ...singlePost, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, parentPost: { ...singlePost.parentPost, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, }, }; } else { if (jwtUserDTO.id) { isReposted = await singlePost.$get('reposts', { where: { userId: fromUser }, }); isLiked = await singlePost.$get('likes', { where: { userId: fromUser }, }); } singlePost = singlePost.toJSON(); return { ...singlePost, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, }; } } async findOne(postId) { const post = this.postModel.findOne({ where: { id: postId, isActive: 1, }, }); if (!post) { throw new NotFoundException('Post Not Founded!'); } return post; } async getAxisPointPosts(limit, page, jwtUserDTO?: JwtUserDTO) { const helperService = await new HelperService(); const { fromUser} = await helperService.getFromUser(jwtUserDTO.id); let posts; const offset = page * limit; // if (jwtUserDTO.id) { // let userId = jwtUserDTO.id; // posts = await this.postModel.findAndCountAll({ // distinct: true, // include: [ // { // model: User, // required: true, // }, // { // model: Follower, // attributes: [], // required: true, // on: { // [Op.or]: [{ // [Op.and]: [ // { // 'followerId': { // [Op.col]: 'Post.userId' // } // }, // { // 'followingId': userId // } // ] // }, { // '$Post.userId$': userId // }] // }, // subQuery:false, // }, // { // model: Attachment, // }, // { // model: Post, // as: 'parentPost', // include: [ // { // model: User, // }, // { // model: Attachment // }, // ] // }, // ], // where: { isActive: 1 }, // limit, // offset, // order: [['createdAt', 'DESC']], // }); // } else { posts = await this.postFindAndCountAll(limit, offset); //} const { count, rows } = posts; const resetPosts = await Promise.all( rows.map(async (post) => { let isReposted = null; let isLiked = null; const isCommneted = null; if (post.type == 2) { if (jwtUserDTO.id) { isReposted = await post?.parentPost?.$get('reposts', { where: { userId: fromUser }, }); isLiked = await post?.parentPost?.$get('likes', { where: { userId: fromUser }, }); } post = post.toJSON(); return { ...post, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, parentPost: { ...post.parentPost, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, }, }; } else { if (jwtUserDTO.id) { isReposted = await post.$get('reposts', { where: { userId: fromUser }, }); isLiked = await post.$get('likes', { where: { userId: fromUser }, }); } post = post.toJSON(); return { ...post, isReposted: isReposted?.length > 0 ? true : false, isLiked: isLiked?.length > 0 ? true : false, }; } }), ); return { count, rows: resetPosts }; } async deletePost(jwtUserDTO: JwtUserDTO, id: number) { const helperService = await new HelperService(); const { fromUser} = await helperService.getFromUser(jwtUserDTO.id); const post = await this.postModel.findOne({ where: { id: id, userId: fromUser, }, }); if (!post) throw new NotFoundException(); await post.destroy(); return post; } async getUsers(keyword, limit = 10, page = 0) { const offset = page * limit; const { count: brandCount, rows: brand } = await Brand.findAndCountAll({ attributes: [ 'id', 'display', ['brandName', 'name'], 'slug', 'profilePath', ], where: { isActive: 1 }, // limit, // offset, order: [['brandName', 'ASC']], }); const { count: retailerCount, rows: retailer } = await Retailer.findAndCountAll({ attributes: [ 'id', 'display', ['companyName', 'name'], 'slug', 'profilePath', ], where: { isActive: 1 }, // limit, // offset, order: [['companyName', 'ASC']], }); const data = [...brand, ...retailer]; return { rows: data, count: data?.length || 0 }; } async postFindAndCountAll(limit, offset) { const posts = await this.postModel.findAndCountAll({ //logging: console.log, distinct: true, include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, { model: Post, as: 'parentPost', include: [ { model: Brand, attributes: ['id', 'brandName', 'slug', 'profilePath'], }, { model: Retailer, attributes: ['id', 'companyName', 'slug', 'profilePath'], }, { model: Attachment, }, ], }, ], where: { isActive: 1 }, limit, offset, order: [['createdAt', 'DESC']], }); return posts; } }