Snippets Collections
for(List<Lead>) leads : [SELECT Id, LastName FROM Lead] {
    List<Lead> toUpdate = new List<Lead>();
    for(Lead nextLead : leads) {
        nextLead.LastName = 'Test';
        toUpdate.add(nextLead);
    }

    update toUpdate;
}
<table valign="top" border="0" cellpadding="0" cellspacing="0" class="mobile-center" align="left" role="presentation" style="background-color: #ffffff; text-align: left; vertical-align: top;" width="90%">
         
          <tr>
           <td style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 14px; mso-line-height-rule:exactly; line-height:18px; text-align:left;"><ul>
             <li>Genuine Cat parts required per self-service option</li>
              <li>Service instructions to do the work with confidence</li>
              <li>Recommended tooling list</li>
              <li>Expert technical support</li>
             </ul>
            </td></tr></table>
<table border="0" cellpadding="0" cellspacing="0" class="mobile-center" role="presentation" style="background-color: #ffffff;" width="100%">
         
          <tr>
           <td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 6%;" valign="top" width="6%">
            <b>&nbsp;&bull;&nbsp;&nbsp;</b></td><td style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 14px; mso-line-height-rule:exactly; line-height:18px; text-align:left;">
            Genuine Cat parts required per self-service option</td><td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 6%;" valign="top" width="6%">
            &nbsp;</td></tr><tr>
           <td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 0px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 6%;" valign="top" width="6%">
            <b>&nbsp;&bull;&nbsp;&nbsp;</b></td><td style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 0px 0px 0px; font-weight: 400; font-size: 14px; mso-line-height-rule:exactly; line-height:18px; text-align:left;">
            Service instructions to do the work with confidence</td><td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 6%;" valign="top" width="6%">
            &nbsp;</td></tr><tr>
           <td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 0px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: middle; align: right; width: 6%;" valign="top" width="6%">
            <b>&nbsp;&bull;&nbsp;&nbsp;</b></td><td style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 0px 0px 0px; font-weight: 400; font-size: 14px; mso-line-height-rule:exactly; line-height:18px; text-align:left;">
            Recommended tooling list</td><td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 6%;" valign="top" width="6%">
            &nbsp;</td></tr><tr>
           <td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 0px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 10%;" valign="middle" width="10%">
            <b>&nbsp;&bull;&nbsp;&nbsp;</b></td><td style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 0px 0px 10px; font-weight: 400; font-size: 14px; mso-line-height-rule:exactly; line-height:18px; text-align:left;">
            Expert technical support</td><td align="right" style="font-family: Arial, Helvetica, sans-serif; color: rgb(0, 0, 0); padding: 10px 0px 0px; font-weight: 400; font-size: 18px; line-height: 18px; vertical-align: top; align: right; width: 6%;" valign="top" width="6%">
            &nbsp;</td></tr></table>
Frappe-ERPNext-Version-14--in-Ubuntu-22.04-LTS
______________________________________________
______________________________________________

STEP-1 //Install git
	sudo apt-get install git

STEP-2 //install python-dev
	sudo apt-get install python3-dev

STEP-3 //Install setuptools and pip (Python's Package Manager).
	sudo apt-get install python3-setuptools python3-pip

STEP-4 //Install virtualenv
	sudo apt-get install virtualenv
	sudo apt install python3.10-venv

STEP-5 //Install MariaDB	
	sudo apt-get install software-properties-common
	sudo apt install mariadb-server
	sudo mysql_secure_installation

=================================================
  //In order to log into MariaDB to secure it, we'll need the current
  //password for the root user. If you've just installed MariaDB, and
  //haven't set the root password yet, you should just press enter here.

  //Enter current password for root (enter for none): # PRESS ENTER
  //OK, successfully used password, moving on...
  
  //Switch to unix_socket authentication [Y/n] Y
  //Enabled successfully!
  //Reloading privilege tables..
  //... Success!

  //Change the root password? [Y/n] Y
  //New password: 
  //Re-enter new password: 
  //Password updated successfully!
  //Reloading privilege tables..
  //... Success!

  //Remove anonymous users? [Y/n] Y
  // ... Success!

  // Disallow root login remotely? [Y/n] N
  // ... Success!

  // Remove test database and access to it? [Y/n] Y
  // - Dropping test database...
  // ... Success!
  // - Removing privileges on test database...
  // ... Success!

  // Reload privilege tables now? [Y/n] Y
  // ... Success!
=================================================
     
STEP-6 //MySQL database development files
	sudo apt-get install libmysqlclient-dev

STEP-7 //Edit the mariadb configuration ( unicode character encoding )
	sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf

//add this to the 50-server.cnf file
------------------------------------
[server]
user = mysql
pid-file = /run/mysqld/mysqld.pid
socket = /run/mysqld/mysqld.sock
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
bind-address = 127.0.0.1
query_cache_size = 16M
log_error = /var/log/mysql/error.log

[mysqld]
innodb-file-format=barracuda
innodb-file-per-table=1
innodb-large-prefix=1
character-set-client-handshake = FALSE
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci      
 
[mysql]
default-character-set = utf8mb4
-------------------------------------------------
-----------------
Now press (Ctrl-X) to exit
-----------------
STEP-7a //Restart Mysql	
  sudo service mysql restart

STEP-8 //install Redis
	sudo apt-get install redis-server

STEP-9 //install Node
	sudo apt install curl 
	curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
	source ~/.profile
	nvm install 18

STEP-10 //install Yarn
	sudo apt-get install npm
	sudo npm install -g yarn

STEP-11 //install wkhtmltopdf
	sudo apt-get install xvfb libfontconfig wkhtmltopdf

STEP-12 //install frappe-bench
	sudo -H pip3 install frappe-bench
	bench --version

STEP-13 //initilise the frappe bench & install frappe latest version
	bench init frappe-bench --frappe-branch version-14

	cd frappe-bench/
	bench start
 
STEP-14 //create a site in frappe bench
	bench new-site site1.local
	bench use site1.local

STEP-15 //install ERPNext latest version in bench & site
	bench get-app payments

	bench get-app erpnext --branch version-14
----OR----
	bench get-app https://github.com/frappe/erpnext --branch version-14

	bench --site site1.local install-app erpnext
	bench start
----------------------------
 
TO ACCESS or RUN ERPNEXT:

	LOCAL HOST :  0.0.0.0:8000
	IP ADDRESS :  YOUR-IP-ADDRESS:8000

 	USER NAME:   Administrator
 	PASSWORD :   admin
#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main(){
    int n,i;
    
    
 for(int n=42;n>=6;n = n-6){
     cout<<"      "<<setw(n-6)<<setfill(' ')<<' '<<setw(7)<<setfill('*')<<'\n'<<'\n'<<'\n';
 }
    
    
    
    
    
    
    


return 0;
}
please add a second element to this script, name it fhFixedButtonMobile and give it the same values of fhFixedButton, make sure to append both elements
   

*******
<script> 
    var p = parent.window.document;
    fhStyleSheet = p.createElement('link');
    fhStyleSheet.href = 'https://fh-kit.com/buttons/v2/?red=cc0000';
    fhStyleSheet.rel = 'stylesheet';
    fhStyleSheet.type = 'text/css';
    p.head.appendChild(fhStyleSheet); 
    fhFixedButton = p.createElement('a');
    fhFixedButton.href = 'https://fareharbor.com/embeds/book/darkes/?full-items=yes';
    fhFixedButton.className = 'fh-button-true-flat-red fh-shape--square fh-fixed--side';
    fhFixedButton.innerHTML = 'Book Now';
    fhFixedButton.style = 'letter-spacing: 1.5px !important; padding: .3em 2em !important; box-shadow:none !important;';
    p.body.appendChild(fhFixedButton);
</script>
*********** 


<script>
    var p = parent.window.document;
    fhScript = p.createElement('script');
    fhScript.src = "https://fareharbor.com/embeds/api/v1/?autolightframe=yes";
    p.body.appendChild(fhScript);
    fhStyleSheet = p.createElement('link');
    fhStyleSheet.href = 'https://fh-kit.com/buttons/v2/?color=F113B5';
    fhStyleSheet.rel = 'stylesheet';
    fhStyleSheet.type = 'text/css';
    p.body.appendChild(fhStyleSheet);
    var fhFixedButton = p.createElement('a');
    fhFixedButton.href = 'https://fareharbor.com/embeds/book/levelupwarrington/?full-items=yes&flow=1049091';
    fhFixedButton.className = 'fh-button-true-flat-color fh-shape--square fh-icon--cal fh-fixed--bottom fh-hide--mobile';
    fhFixedButton.innerHTML = 'BOOK NOW';
    fhFixedButton.style = 'letter-spacing: 1.5px !important; padding: .3em 2em !important; border: 1px solid #FFFFFF !important; box-shadow:none !important; left: 20px !important; right: inherit !important;';
    fhFixedButton.id = 'fhFixedButton';
    var fhFixedButtonMobile = p.createElement('a');
    fhFixedButtonMobile.href = 'https://fareharbor.com/embeds/book/levelupwarrington/?full-items=yes&flow=1049091';
    fhFixedButtonMobile.className = 'fh-button-true-flat-color fh-shape--square fh-icon--cal fh-fixed--side fh-size--small fh-hide--desktop';
    fhFixedButtonMobile.innerHTML = 'BOOK NOW';
    fhFixedButtonMobile.style = 'letter-spacing: 1.5px !important; padding: .3em 2em !important; border: 1px solid #FFFFFF !important; box-shadow:none !important;';
    if (!p.getElementById('editor') && !p.getElementById('fhFixedButton')) {
        p.querySelector('.widget-html-html-1').style = 'height:0px !important;';
        p.body.appendChild(fhFixedButton);
        p.body.appendChild(fhFixedButtonMobile);
    }
</script>
import numpy as np
import matplotlib.pyplot as plt

# Create a sample dataset
data = np.random.randn(1000)

# Calculate the number of bins
num_bins = 10

# Create a histogram
hist, bins = np.histogram(data, bins=num_bins)

# Plot the histogram
plt.bar(bins[:-1], hist, width=bins[1] - bins[0])
plt.xlabel("Value")
plt.ylabel("Frequency")
plt.title("Histogram of Sample Data")
plt.show()
chrome://flags/#allow-insecure-localhost
Hello, entrepreneurs out there! The online casino game is at its peak in the gambling world where their investments also surging to the next level. In that part, Roulette game development is one of the most-liked games, also known for its profitable investment businesses. 

The notable reason to develop your roulette game is, that you can expect a pocket of profit of slightly more than $50,000 for every $ 1 million that’s bet at the roulette tables at the casino. All you can do is, choose the best roulette game development company for entire services and gaming solutions which will uplift your brand quality just by adding additional features that most of companies can’t afford
openssl req -nodes -new -x509 -keyout server.key -out server.cert


When asked to enter the Common Name, enter localhost. Enter your email address when asked.
bool isEven(Node* head){
            Node* fast = head;
            while(fast && fast->next) fast=fast->next->next;
            if(!fast )
                return true;
            return false;
    }
Understanding how to edit addresses under a customer turned out to be a bit tricky. Here is how I did it.

First, you can add custom fields, but to do that, you need to go to

Customization >> Forms >> Address Forms

Customize the “Standard Address Form.” Assign a country or countries to your form. This is important if you plan to use custom fields in an address. The form is where you add them. Custom fields will then be available to addresses in the assigned countries.

Next, it is important to understand that addresses are a subrecord. The sublist is called “addressbook” and is indexed by “addressbookaddress”. This will make more sense when you review the code below. You read the sublist, and then the associated subrecord under it. Here are the standard fields in the sublist for “addressbook”.

Label – not unique and if omitted becomes Address Line 1
defaultbilling – must be unique to one address
defaultshipping – must be unique to one address
isresidential – can apply to any or all addresses

Under each address is a subrecord that contains these fields:

Attention
Addressee
Address Line 1
Address Line 2
Address Line 3
City
State
Zip
Any custom fields that you’ve created

Here is a code example that demonstrates how to update addresses. The variable “line” corresponds with a zero-based index of the address as it appears in the Address tab under a customer. The variable “customer_id” is the internal ID of the customer and all assigned values are coming from variables which you’d set prior to running this code.

    /**
    * Load the record to gain access to the Address sublist 
    */
    var rec = record.load({
        type: record.Type.CUSTOMER,
        id: customer_id,
        isDynamic: false
    });

    if (/* you need to insert an address, do it here. You decide! */) {
        rec.insertLine({
            sublistId: 'addressbook',
            line: 0
        });
        line = 0;
    }

    /**
    * Modify those fields present in the Address sublist lines
    */
    rec.setSublistValue({
        sublistId: 'addressbook',
        fieldId: 'label',
        value: label,
        line: line
    });

    rec.setSublistValue({
        sublistId: 'addressbook',
        fieldId: 'defaultbilling',
        value: defaultbilling,
        line: line
    });

    rec.setSublistValue({
        sublistId: 'addressbook',
        fieldId: 'defaultshipping',
        value: defaultshipping,
        line: line
    });

    rec.setSublistValue({
        sublistId: 'addressbook',
        fieldId: 'isresidential',
        value: is_residential,
        line: line
    });


    /**
    * Load the sublist record, which holds all the actual address fields
    */
    var subrec2 = rec.getSublistSubrecord({
        sublistId: 'addressbook',
        fieldId: 'addressbookaddress',
        line: line
    });

    /**
        * Modify all subrecord fields
        */
    subrec2.setValue({
        fieldId: 'attention',
        value: attention
    });

    subrec2.setValue({
        fieldId: 'addressee',
        value: addressee
    })

    subrec2.setValue({
        fieldId: 'addr1',
        value: addr1
    });

    subrec2.setValue({
        fieldId: 'addr2',
        value: addr2
    });

    subrec2.setValue({
        fieldId: 'addr3',
        value: addr3
    })

    subrec2.setValue({
        fieldId: 'city',
        value: city
    });

    subrec2.setValue({
        fieldId: 'state',
        value: state
    });

    subrec2.setValue({
        fieldId: 'zip',
        value: zip
    });


    /**
    * Save the record
    */
    rec.save();
 Save
Share this:
// #1 Main Composition

// Offset > Shift Center To
x_offset = effect("Offset")("Shift Center To")[0];
y_offset = effect("Offset")("Shift Center To")[1];
posterizeTime(thisComp.layer("Null 7").effect("posterize adjusment 2, 15")("Slider"));
x = Math.round(random(-10,10));
y = x*240;
[x_offset, y_offset+y];

// Adjustment Layer Position
temp = transform.position[0];
[temp + (240*index)-240, transform.position[1]]

// #2 Inside Each Pre-Composed Row of Squares with Random Opacity

// Each Square Position
offset = 240;
[position[0]+offset*index-120,position[1]];

// Each Square Opacity
posterizeTime(thisComp.layer("Null 5").effect("posterize")("Slider"));
seedRandom(index+thisComp.layer("Null 5").effect("seed")("Slider"));
random(0,100);

// #3 Inside Pre-Composition of Rows

// Each Row Position
offset = 240;
[position[0],position[1]+offset*index-240];
import { request } from 'graphql-request'
 
const fetcher = query => request('/api/graphql', query)
 
function App () {
  const { data, error } = useSWR(
    `{
      Movie(title: "Inception") {
        releaseDate
        actors {
          name
        }
      }
    }`,
    fetcher
  )
  // ...
}
import axios from 'axios'
 
const fetcher = url => axios.get(url).then(res => res.data)
 
function App () {
  const { data, error } = useSWR('/api/data', fetcher)
  // ...
}
import fetch from 'unfetch'
 
const fetcher = url => fetch(url).then(r => r.json())
 
function App () {
  const { data, error } = useSWR('/api/data', fetcher)
  // ...
}
<?php
namespace App\Traits;
use Carbon\Carbon;
use App\Models\User;

trait GlobalDateFormat
{
    public function GlobalDateFormat($date)
    {
        $ipaddress = User::getClientIP();
        $details = User::ip_details($ipaddress);
        $dateFormats = [
            '1' => 'F j, Y h:i A',      // January 15, 2023 03:30 PM
            '2' => 'M j, Y h:i A',      // Jan 15, 2023 03:30 PM
            '3' => 'Y-m-d H:i:s',       // 2023-01-15 15:30:00
            '4' => 'm/d/Y g:i A',       // 01/15/2023 3:30 PM
            '5' => 'D, M j, Y g:i A',   // Sun, Jan 15, 2023 3:30 PM
            '6' => 'd M Y H:i:s',       // 15 Jan 2023 15:30:00
            '7' => 'Y-m-d',             // 2023-01-15 (Date only)
            '8' => 'h:i A',             // 03:30 PM (Time only)
            '9' => 'Y',                 // 2023 (Year only)
            '10' => 'M j',              // Jan 15 (Month and day without year)
            '11' => 'M j, Y'            // Jan 15, 2023
        ];
        
        $formats = [];
        foreach($dateFormats as $key => $value) {
            $formats[$key] = Carbon::parse($date)->timezone($details['timezone'])->format($value);
        }
        return $formats;
    }
    
    public function lastSeenTime($date) {
        $ipaddress = User::getClientIP();
        $details = User::ip_details($ipaddress);
        
        $lastSeenDateTime = Carbon::parse($date);
        $timeDiffInSeconds = $lastSeenDateTime->diffInSeconds(now());
        $timeDiffInMinutes = $lastSeenDateTime->diffInMinutes(now());
        $timeDiffInHours = $lastSeenDateTime->diffInHours(now());
        $timeDiffInDays = $lastSeenDateTime->diffInDays(now());
        $formattedDate = $lastSeenDateTime->timezone($details['timezone'])->format('F j, Y h:i A');
        if ($timeDiffInSeconds < 60) {
            return $timeDiffInSeconds . ' seconds ago';
        } elseif ($timeDiffInMinutes < 60) {
            return $timeDiffInMinutes . ' minutes ago';
        } elseif ($timeDiffInHours < 24) {
            return $timeDiffInHours . ' hours ago';
        } else {
            return $timeDiffInDays . ' days ago';
        }
    }
}
import useSWR, { mutate } from 'swr';

const handleUpdate = () => {
  // Perform a mutation and then update the cache
  mutate('/api/data', updatedData);
}
import { SWRConfig } from 'swr';

const swrConfig = {
  fetcher: customFetcher,
  onError: (error) => {
    // Handle errors globally
  },
};

// Wrap your app with SWRConfig
<SWRConfig value={swrConfig}>
  <App />
</SWRConfig>
import useSWR from 'swr'
 
const HeroSection = () => {
  const { data, error, isLoading } = useSWR('/api/herosection/123', fetcher)
 
  if (error) return <div>failed to load</div>
  if (isLoading) return <div>loading...</div>
 
  // render data
  return <div>hello {data.name}!</div>
}
use admin;
db.grantRolesToUser('staging', [{ role: 'readWrite', db: 'db-name' }]);
pnpm add swr
# or
npm i swr
# or
yarn add swr
/* log all background images on a page to the console */
let bgimg = performance.getEntriesByType('resource')
  .filter(rs => rs.initiatorType == 'css')
  .map(rs => {
  return {
    name: rs.name,
    initiator: rs.initiatorType
  }
}) || [];

(bgimg.length > 0)?
    console.table(bgimg):
    console.log('No background images on this page!');
x = 0;
modulo = thisComp.layer("Null 3").effect("modulo (recomienzo)")("Slider"); // segundos en la timeline

for (x; x <= time; x += 0.5) {
	if ((x - inPoint) % modulo == 0){
		if(time >= x + 0.5){
			transform.opacity = 0;
		} else {
			transform.opacity = 100;
		}
	}
}
//@version=5
indicator('Improved Yuvis Stock prediction system with RSI, MA, and BB', shorttitle='YSPS', overlay=true, format=format.price, precision=2, timeframe='')

// Parameters
coeff = input.float(1.0, 'Multiplier', minval=0.1, maxval=10.0, step=0.1)
AP = input(14, 'Common Period')
src = input(close)
showsignalsk = input.bool(title='Show Signals?', defval=true)
useVolumeData = input.bool(title='Incorporate Volume Data?', defval=false)
stopLossPercent = input.float(1.0, 'Stop Loss %', minval=0.1, maxval=10.0, step=0.1)
maPeriod = input.int(20, 'Moving Average Period')
bbLength = input.int(20, 'Bollinger Bands Length')
bbDeviation = input.int(2, 'Bollinger Bands Deviation')

// Calculation
ATR = ta.sma(ta.tr, AP)
upT = low - ATR * coeff
downT = high + ATR * coeff

YSPS = 0.0
YSPS := (useVolumeData ? ta.rsi(src, AP) >= 50 : ta.mfi(hlc3, AP) >= 50) ? upT < nz(YSPS[1]) ? nz(YSPS[1]) : upT : downT > nz(YSPS[1]) ? nz(YSPS[1]) : downT

// Moving Average Calculation
ma = ta.sma(src, maPeriod)

// Bollinger Bands Calculation
basis = ta.sma(src, bbLength)
dev = ta.stdev(src, bbLength)
upperBB = basis + dev * bbDeviation
lowerBB = basis - dev * bbDeviation

// Signals
buySignal = ta.crossover(YSPS, YSPS[2])
sellSignal = ta.crossunder(YSPS, YSPS[2])
maBuySignal = ta.crossover(src, ma)
maSellSignal = ta.crossunder(src, ma)
bbBuySignal = ta.crossover(src, lowerBB)
bbSellSignal = ta.crossunder(src, upperBB)
K1 = ta.barssince(buySignal)
K2 = ta.barssince(sellSignal)
O1 = ta.barssince(buySignal[1])
O2 = ta.barssince(sellSignal[1])

// Get the last buy price
lastBuyPrice = ta.valuewhen(buySignal, YSPS, 0)

// Stop Loss Calculation
stopLossPrice = lastBuyPrice * (1 - stopLossPercent / 100)

// Calculate shouldSell
shouldSell = close <= stopLossPrice

// Plotting signals with Buy RSI, Sell RSI, Buy MA, Sell MA, Buy BB, and Sell BB
plotshape(buySignal and showsignalsk and O1 > K2 ? YSPS[2] * 0.9999 : na, title='Buy RSI', text='Buy RSI', location=location.absolute, style=shape.labelup, size=size.tiny, color=color.new(#0022FC, 0), textcolor=color.new(color.white, 0))
plotshape(sellSignal and showsignalsk and O2 > K1 and lastBuyPrice <= YSPS[2] ? YSPS[2] * 0.9999 : na, title='Sell RSI', text='Sell RSI', location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.new(color.maroon, 0), textcolor=color.new(color.white, 0))

plotshape(maBuySignal and showsignalsk ? src * 0.9999 : na, title='Buy MA', text='Buy MA', location=location.absolute, style=shape.arrowdown, size=size.tiny, color=color.green, textcolor=color.white)
plotshape(maSellSignal and showsignalsk ? src * 0.9999 : na, title='Sell MA', text='Sell MA', location=location.absolute, style=shape.square, size=size.tiny, color=color.red, textcolor=color.white)

plotshape(bbBuySignal and showsignalsk ? src * 0.9999 : na, title='Buy BB', text='Buy BB', location=location.absolute, style=shape.labelup, size=size.tiny, color=color.yellow, textcolor=color.black)
plotshape(bbSellSignal and showsignalsk ? src * 0.9999 : na, title='Sell BB', text='Sell BB', location=location.absolute, style=shape.square, size=size.tiny, color=color.red, textcolor=color.white)

// Alert Conditions
alertcondition(buySignal[1] and O1[1] > K2, title='Confirmed BUY Alarm (RSI)', message='BUY SIGNAL APPROVED!')
alertcondition(sellSignal[1] and O2[1] > K1 and shouldSell, title='Confirmed SELL Alarm (RSI)', message='SELL SIGNAL APPROVED!')

alertcondition(maBuySignal, title='Buy MA', message='BUY MA SIGNAL APPROVED!')
alertcondition(maSellSignal, title='Sell MA', message='SELL MA SIGNAL APPROVED!')

alertcondition(bbBuySignal, title='Buy BB', message='BUY BB SIGNAL APPROVED!')
alertcondition(bbSellSignal, title='Sell BB', message='SELL BB SIGNAL APPROVED!')
{% if fulfillment.item_count == item_count %} 
  {% capture email_title %}Your order is on the way{% endcapture %}
  {% capture email_body %}Your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
{% elsif fulfillment.item_count > 1 %} 
  {% if fulfillment_status == 'fulfilled' %}
    {% capture email_title %}The last items in your order are on the way{% endcapture %}
    {% capture email_body %}The last items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% else %}
    {% capture email_title %}Some items in your order are on the way{% endcapture %}
    {% capture email_body %}Some items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% endif %}
{% else %} 
  {% if fulfillment_status == 'fulfilled' %}
    {% capture email_title %}The last item in your order is on the way{% endcapture %}
    {% capture email_body %}The last item in your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% else %}
    {% capture email_title %}One item in your order is on the way{% endcapture %}
    {% capture email_body %}One item in your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% endif %}
{% endif %}

{% capture email_emphasis %}Estimated delivery date: <strong>{{fulfillment.estimated_delivery_at | date: format: 'date'}}</strong>{% endcapture %}

<!DOCTYPE html>
<html lang="en">
  <head>
  <title>{{ email_title }}</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css">
  <style>
    .button__cell { background: {{ shop.email_accent_color }}; }
    a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
  </style>
</head>

  <body>

    <table class="body">
      <tr>
        <td>
          <table class="header row">
  <tr>
    <td class="header__cell">
      <center>

        <table class="container">
          <tr>
            <td>

              <table class="row">
                <tr>
                  <td class="shop-name__cell">
                    {%- if shop.email_logo_url %}
                      <img src="{{shop.email_logo_url}}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">
                    {%- else %}
                      <h1 class="shop-name__text">
                        <a href="{{shop.url}}">{{ shop.name }}</a>
                      </h1>
                    {%- endif %}
                  </td>

                    <td>
                      <tr>
                        <td class="order-number__cell">
                          <span class="order-number__text">
                            Order {{ order_name }}
                          </span>
                        </td>
                      </tr>
                      {%- if po_number %}
                          <tr>
                            <td class="po-number__cell">
                              <span class="po-number__text">
                                PO number #{{ po_number }}
                              </span>
                            </td>
                          </tr>
                      {%- endif %}
                    </td>
                </tr>
              </table>

            </td>
          </tr>
        </table>

      </center>
    </td>
  </tr>
</table>

          <table class="row content">
  <tr>
    <td class="content__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              
            <h2>{{ email_title }}</h2>
            <p>{{ email_body }}</p>
            {% if fulfillment.estimated_delivery_at %}
              <p>{{ email_emphasis }}</p>
            {% endif %}
            {% if order_status_url %}
              <table class="row actions">
  <tr>
    <td class="empty-line">&nbsp;</td>
  </tr>
  <tr>
    <td class="actions__cell">
      <table class="button main-action-cell">
        <tr>
          <td class="button__cell"><a href="{{ order_status_url }}" class="button__text">View your order</a></td>
        </tr>
      </table>
      {% if shop.url %}
    <table class="link secondary-action-cell">
      <tr>
        <td class="link__cell">or <a href="{{ shop.url }}">Visit our store</a></td>
      </tr>
    </table>
{% endif %}

    </td>
  </tr>
</table>

            {% else %}
              {% if shop.url %}
    <table class="row actions">
      <tr>
        <td class="actions__cell">
          <table class="button main-action-cell">
            <tr>
              <td class="button__cell"><a href="{{ shop.url }}" class="button__text">Visit our store</a></td>
            </tr>
          </table>
        </td>
      </tr>
    </table>
{% endif %}

            {% endif %}
            {% if fulfillment.tracking_numbers.size > 0 %}
  <p class="disclaimer__subtext">
    <br/>
    {% if fulfillment.tracking_numbers.size == 1 and fulfillment.tracking_company and fulfillment.tracking_url %}
      {{ fulfillment.tracking_company }} tracking number: <a href="{{ fulfillment.tracking_url }}">{{ fulfillment.tracking_numbers.first }}</a>
    {% elsif fulfillment.tracking_numbers.size == 1 %}
      Tracking number: {{ fulfillment.tracking_numbers.first }}
    {% else %}
      {{ fulfillment.tracking_company }} tracking numbers:<br />
      {% for tracking_number in fulfillment.tracking_numbers %}
        {% if fulfillment.tracking_urls[forloop.index0] %}
          <a href="{{ fulfillment.tracking_urls[forloop.index0] }}">
            {{ tracking_number }}
          </a>
        {% else %}
            {{ tracking_number }}
        {% endif %}
        <br/>
      {% endfor %}
    {% endif %}
  </p>
{% endif %}


            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>

          <table class="row section">
  <tr>
    <td class="section__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              <h3>Items in this shipment</h3>
            </td>
          </tr>
        </table>
        <table class="container">
          <tr>
            <td>
              
            
<table class="row">
  {% for line in fulfillment.fulfillment_line_items %}
  <tr class="order-list__item">
    <td class="order-list__item__cell">
      <table>
        <td>
          {% if line.line_item.image %}
            <img src="{{ line.line_item | img_url: 'compact_cropped' }}" align="left" width="60" height="60" class="order-list__product-image"/>
          {% endif %}
        </td>
        <td class="order-list__product-description-cell">
          {% if line.line_item.product.title %}
            {% assign line_title = line.line_item.product.title %}
          {% else %}
            {% assign line_title = line.line_item.title %}
          {% endif %}

          {% if line.quantity < line.line_item.quantity %}
            {% capture line_display %} {{ line.quantity }} of {{ line.line_item.quantity }} {% endcapture %}
          {% else %}
            {% assign line_display = line.line_item.quantity  %}
          {% endif %}

          <span class="order-list__item-title">{{ line_title }}&nbsp;&times;&nbsp;{{ line_display }}</span><br/>

          {% if line.line_item.variant.title != 'Default Title' %}
            <span class="order-list__item-variant">{{ line.line_item.variant.title }}</span><br/>
          {% endif %}

          {% for group in line.line_item.groups %}
            <span class="order-list__item-variant">Part of: {{ group.display_title }}</span><br/>
          {% endfor %}


          {% if line.line_item.selling_plan_allocation %}
            <span class="order-list__item-variant">{{ line.line_item.selling_plan_allocation.selling_plan.name }}</span><br/>
          {% endif %}

          {% if line.line_item.refunded_quantity > 0 %}
            <span class="order-list__item-refunded">Refunded</span>
          {% endif %}

          {% if line.line_item.discount_allocations %}
            {% for discount_allocation in line.line_item.discount_allocations %}
              {% if discount_allocation.discount_application.target_selection != 'all' %}
              <p>
                <span class="order-list__item-discount-allocation">
                  <img src="{{ 'notifications/discounttag.png' | shopify_asset_url }}" width="18" height="18" class="discount-tag-icon" />
                  <span>
                    {{ discount_allocation.discount_application.title | upcase }}
                    (-{{ discount_allocation.amount | money }})
                  </span>
                </span>
              </p>
              {% endif %}
            {% endfor %}
          {% endif %}
        </td>
      </table>
    </td>
  </tr>{% endfor %}
</table>


            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>

          <table class="row footer">
  <tr>
    <td class="footer__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              
              <p class="disclaimer__subtext">If you have any questions, reply to this email or contact us at <a href="mailto:{{ shop.email }}">{{ shop.email }}</a></p>
            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>

<img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1" />

        </td>
      </tr>
    </table>
  </body>
</html>
{% if fulfillment.item_count == item_count %} 
  {% capture email_title %}Your order is on the way{% endcapture %}
  {% capture email_body %}Your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
{% elsif fulfillment.item_count > 1 %} 
  {% if fulfillment_status == 'fulfilled' %}
    {% capture email_title %}The last items in your order are on the way{% endcapture %}
    {% capture email_body %}The last items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% else %}
    {% capture email_title %}Some items in your order are on the way{% endcapture %}
    {% capture email_body %}Some items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% endif %}
{% else %} 
  {% if fulfillment_status == 'fulfilled' %}
    {% capture email_title %}The last item in your order is on the way{% endcapture %}
    {% capture email_body %}The last item in your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% else %}
    {% capture email_title %}One item in your order is on the way{% endcapture %}
    {% capture email_body %}One item in your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% endif %}
{% endif %}

{% capture email_emphasis %}Estimated delivery date: <strong>{{fulfillment.estimated_delivery_at | date: format: 'date'}}</strong>{% endcapture %}

<!DOCTYPE html>
<html lang="en">
  <head>
  <title>{{ email_title }}</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css">
  <style>
    .button__cell { background: {{ shop.email_accent_color }}; }
    a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
  </style>
</head>

  <body>

    <table class="body">
      <tr>
        <td>
          <table class="header row">
  <tr>
    <td class="header__cell">
      <center>

        <table class="container">
          <tr>
            <td>

              <table class="row">
                <tr>
                  <td class="shop-name__cell">
                    {%- if shop.email_logo_url %}
                      <img src="{{shop.email_logo_url}}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">
                    {%- else %}
                      <h1 class="shop-name__text">
                        <a href="{{shop.url}}">{{ shop.name }}</a>
                      </h1>
                    {%- endif %}
                  </td>

                    <td>
                      <tr>
                        <td class="order-number__cell">
                          <span class="order-number__text">
                            Order {{ order_name }}
                          </span>
                        </td>
                      </tr>
                      {%- if po_number %}
                          <tr>
                            <td class="po-number__cell">
                              <span class="po-number__text">
                                PO number #{{ po_number }}
                              </span>
                            </td>
                          </tr>
                      {%- endif %}
                    </td>
                </tr>
              </table>

            </td>
          </tr>
        </table>

      </center>
    </td>
  </tr>
</table>

          <table class="row content">
  <tr>
    <td class="content__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              
            <h2>{{ email_title }}</h2>
            <p>{{ email_body }}</p>
            {% if fulfillment.estimated_delivery_at %}
              <p>{{ email_emphasis }}</p>
            {% endif %}
            {% if order_status_url %}
              <table class="row actions">
  <tr>
    <td class="empty-line">&nbsp;</td>
  </tr>
  <tr>
    <td class="actions__cell">
      <table class="button main-action-cell">
        <tr>
          <td class="button__cell"><a href="{{ order_status_url }}" class="button__text">View your order</a></td>
        </tr>
      </table>
      {% if shop.url %}
    <table class="link secondary-action-cell">
      <tr>
        <td class="link__cell">or <a href="{{ shop.url }}">Visit our store</a></td>
      </tr>
    </table>
{% endif %}

    </td>
  </tr>
</table>

            {% else %}
              {% if shop.url %}
    <table class="row actions">
      <tr>
        <td class="actions__cell">
          <table class="button main-action-cell">
            <tr>
              <td class="button__cell"><a href="{{ shop.url }}" class="button__text">Visit our store</a></td>
            </tr>
          </table>
        </td>
      </tr>
    </table>
{% endif %}

            {% endif %}
            {% if fulfillment.tracking_numbers.size > 0 %}
  <p class="disclaimer__subtext">
    <br/>
    {% if fulfillment.tracking_numbers.size == 1 and fulfillment.tracking_company and fulfillment.tracking_url %}
      {{ fulfillment.tracking_company }} tracking number: <a href="{{ fulfillment.tracking_url }}">{{ fulfillment.tracking_numbers.first }}</a>
    {% elsif fulfillment.tracking_numbers.size == 1 %}
      Tracking number: {{ fulfillment.tracking_numbers.first }}
    {% else %}
      {{ fulfillment.tracking_company }} tracking numbers:<br />
      {% for tracking_number in fulfillment.tracking_numbers %}
        {% if fulfillment.tracking_urls[forloop.index0] %}
          <a href="{{ fulfillment.tracking_urls[forloop.index0] }}">
            {{ tracking_number }}
          </a>
        {% else %}
            {{ tracking_number }}
        {% endif %}
        <br/>
      {% endfor %}
    {% endif %}
  </p>
{% endif %}


            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>

          <table class="row section">
  <tr>
    <td class="section__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              <h3>Items in this shipment</h3>
            </td>
          </tr>
        </table>
        <table class="container">
          <tr>
            <td>
              
            
<table class="row">
  {% for line in fulfillment.fulfillment_line_items %}
  <tr class="order-list__item">
    <td class="order-list__item__cell">
      <table>
        <td>
          {% if line.line_item.image %}
            <img src="{{ line.line_item | img_url: 'compact_cropped' }}" align="left" width="60" height="60" class="order-list__product-image"/>
          {% endif %}
        </td>
        <td class="order-list__product-description-cell">
          {% if line.line_item.product.title %}
            {% assign line_title = line.line_item.product.title %}
          {% else %}
            {% assign line_title = line.line_item.title %}
          {% endif %}

          {% if line.quantity < line.line_item.quantity %}
            {% capture line_display %} {{ line.quantity }} of {{ line.line_item.quantity }} {% endcapture %}
          {% else %}
            {% assign line_display = line.line_item.quantity  %}
          {% endif %}

          <span class="order-list__item-title">{{ line_title }}&nbsp;&times;&nbsp;{{ line_display }}</span><br/>

          {% if line.line_item.variant.title != 'Default Title' %}
            <span class="order-list__item-variant">{{ line.line_item.variant.title }}</span><br/>
          {% endif %}

          {% for group in line.line_item.groups %}
            <span class="order-list__item-variant">Part of: {{ group.display_title }}</span><br/>
          {% endfor %}


          {% if line.line_item.selling_plan_allocation %}
            <span class="order-list__item-variant">{{ line.line_item.selling_plan_allocation.selling_plan.name }}</span><br/>
          {% endif %}

          {% if line.line_item.refunded_quantity > 0 %}
            <span class="order-list__item-refunded">Refunded</span>
          {% endif %}

          {% if line.line_item.discount_allocations %}
            {% for discount_allocation in line.line_item.discount_allocations %}
              {% if discount_allocation.discount_application.target_selection != 'all' %}
              <p>
                <span class="order-list__item-discount-allocation">
                  <img src="{{ 'notifications/discounttag.png' | shopify_asset_url }}" width="18" height="18" class="discount-tag-icon" />
                  <span>
                    {{ discount_allocation.discount_application.title | upcase }}
                    (-{{ discount_allocation.amount | money }})
                  </span>
                </span>
              </p>
              {% endif %}
            {% endfor %}
          {% endif %}
        </td>
      </table>
    </td>
  </tr>{% endfor %}
</table>


            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>

          <table class="row footer">
  <tr>
    <td class="footer__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              
              <p class="disclaimer__subtext">If you have any questions, reply to this email or contact us at <a href="mailto:{{ shop.email }}">{{ shop.email }}</a></p>
            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>

<img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1" />

        </td>
      </tr>
    </table>
  </body>
</html>
{% if fulfillment.item_count == item_count %} 
  {% capture email_title %}Your order is on the way{% endcapture %}
  {% capture email_body %}<p>Good news, we have just shipped out your order You can copy your tracking number below and enter it in the order tracking page to view your delivery status.<br><br>
Tracking number: {{fulfillment.tracking_numbers}}<br><br>
If your tracking number isn't working, please wait 2-3 days and try again. In most cases, your order is on the way, but the system information is delayed.</p>
{% endcapture %}
{% elsif fulfillment.item_count > 1 %} 
  {% if fulfillment_status == 'fulfilled' %}
    {% capture email_title %}The last items in your order are on the way{% endcapture %}
    {% capture email_body %}The last items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% else %}
    {% capture email_title %}Some items in your order are on the way{% endcapture %}
    {% capture email_body %}Some items in your order are on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% endif %}
{% else %} 
  {% if fulfillment_status == 'fulfilled' %}
    {% capture email_title %}The last item in your order is on the way{% endcapture %}
    {% capture email_body %}The last item in your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% else %}
    {% capture email_title %}One item in your order is on the way{% endcapture %}
    {% capture email_body %}One item in your order is on the way. Track your shipment to see the delivery status.{% endcapture %}
  {% endif %}
{% endif %}
 
{% capture email_emphasis %}Estimated delivery date: <strong>{{fulfillment.estimated_delivery_at | date: "%B %-d, %Y"}}</strong>{% endcapture %}
 
<!DOCTYPE html>
<html lang="en">
  <head>
  <title>{{ email_title }}</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css">
  <style>
    .button__cell { background: {{ shop.email_accent_color }}; }
    a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
  </style>
</head>
 
  <body>
 
    <table class="body">
      <tr>
        <td>
          <table class="header row">
  <tr>
    <td class="header__cell">
      <center>
 
        <table class="container">
          <tr>
            <td>
 
              <table class="row">
                <tr>
                  <td class="shop-name__cell">
                    {%- if shop.email_logo_url %}
                      <img src="{{shop.email_logo_url}}" alt="{{ shop.name }}" width="{{ shop.email_logo_width }}">
                    {%- else %}
                      <h1 class="shop-name__text">
                        <a href="{{shop.url}}">{{ shop.name }}</a>
                      </h1>
                    {%- endif %}
                  </td>
 
                    <td class="order-number__cell">
                      <span class="order-number__text">
                        Order {{ order_name }}
                      </span>
                    </td>
                </tr>
              </table>
 
            </td>
          </tr>
        </table>
 
      </center>
    </td>
  </tr>
</table>
 
          <table class="row content">
  <tr>
    <td class="content__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              
            <h2>{{ email_title }}</h2>
            <p>{{ email_body }}</p>
            {% if fulfillment.estimated_delivery_at %}
              <p>{{ email_emphasis }}</p>
            {% endif %}
            {% if order_status_url %}
              <table class="row actions">
  <tr>
    <td class="actions__cell">
      <table class="button main-action-cell">
        <tr>
          <td class="button__cell"><a href="https://yourstorename.com/pages/track" class="button__text">Track your order</a></td>
        </tr>
      </table>
      {% if shop.url %}
    <table class="link secondary-action-cell">
      <tr>
        <td class="link__cell">or <a href="{{ shop.url }}">Visit our store</a></td>
      </tr>
    </table>
{% endif %}
 
    </td>
  </tr>
</table>
 
            {% else %}
              {% if shop.url %}
    <table class="row actions">
      <tr>
        <td class="actions__cell">
          <table class="button main-action-cell">
            <tr>
              <td class="button__cell"><a href="{{ shop.url }}" class="button__text">Visit our store</a></td>
            </tr>
          </table>
        </td>
      </tr>
    </table>
{% endif %}
 
            {% endif %}
 
            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>
 
          <table class="row section">
  <tr>
    <td class="section__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              <h3>Items in this shipment</h3>
            </td>
          </tr>
        </table>
        <table class="container">
          <tr>
            <td>
              
            
<table class="row">
  {% for line in fulfillment.fulfillment_line_items %}
  <tr class="order-list__item">
    <td class="order-list__item__cell">
      <table>
        <td>
          {% if line.line_item.image %}
            <img src="{{ line.line_item | img_url: 'compact_cropped' }}" align="left" width="60" height="60" class="order-list__product-image"/>
          {% endif %}
        </td>
        <td class="order-list__product-description-cell">
          {% if line.line_item.product.title %}
            {% assign line_title = line.line_item.product.title %}
          {% else %}
            {% assign line_title = line.line_item.title %}
          {% endif %}
 
          {% if line.quantity < line.line_item.quantity %}
            {% capture line_display %} {{ line.quantity }} of {{ line.line_item.quantity }} {% endcapture %}
          {% else %}
            {% assign line_display = line.line_item.quantity  %}
          {% endif %}
 
          <span class="order-list__item-title">{{ line_title }} × {{ line_display }}</span><br/>
 
          {% if line.line_item.variant.title != 'Default Title' %}
            <span class="order-list__item-variant">{{ line.line_item.variant.title }}</span><br/>
          {% endif %}
 
          {% if line.line_item.refunded_quantity > 0 %}
            <span class="order-list__item-refunded">Refunded</span>
          {% endif %}
 
          {% if line.line_item.discount_allocations %}
            {% for discount_allocation in line.line_item.discount_allocations %}
              {% if discount_allocation.discount_application.target_selection != 'all' %}
                <span class="order-list__item-discount-allocation">
                  <img src="{{ 'notifications/discounttag.png' | shopify_asset_url }}" width="18" height="18" class="discount-tag-icon" />
                  <span>
                    {{ discount_allocation.discount_application.title | upcase }}
                    (-{{ discount_allocation.amount | money }})
                  </span>
                </span>
              {% endif %}
            {% endfor %}
          {% endif %}
        </td>
      </table>
    </td>
  </tr>{% endfor %}
</table>
 
 
            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>
 
          <table class="row footer">
  <tr>
    <td class="footer__cell">
      <center>
        <table class="container">
          <tr>
            <td>
              
              <p class="disclaimer__subtext">If you have any questions, reply to this email or contact us at <a href="mailto:{{ shop.email }}">{{ shop.email }}</a></p>
            </td>
          </tr>
        </table>
      </center>
    </td>
  </tr>
</table>
 
<img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1" />
 
        </td>
      </tr>
    </table>
  </body>
</html>
<div style="text-align: center;">Enter your tracking number here to see your order status.</div>
<br />
<div style="text-align: center;"><input type="text" id="YQNum" maxlength="50" /> <input type="button" value="TRACK" onclick="doTrack()" /></div>
<div id="YQContainer"></div>
<!--Script code can be put in the bottom of the page, wait until the page is loaded then execute.-->
<script type="text/javascript" src="//www.17track.net/externalcall.js"></script>
<script type="text/javascript">// <![CDATA[
function doTrack() {
    var num = document.getElementById("YQNum").value;
    if(num===""){
        alert("Enter your number."); 
        return;
    }
    YQV5.trackSingle({
        //Required, Specify the container ID of the carrier content.
        YQ_ContainerId:"YQContainer",
        //Optional, specify tracking result height, max height 800px, default is 560px.
        YQ_Height:560,
        //Optional, select carrier, default to auto identify.
        YQ_Fc:"0",
        //Optional, specify UI language, default language is automatically detected based on the browser settings.
        YQ_Lang:"en",
        //Required, specify the number needed to be tracked.
        YQ_Num:num
    });
}
// ]]></script>
<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a href="" style="text-decoration: none;">Team</a>
   </p>
</body>
#include<iostream>  /*this program calculates the Highest                       factor of an entered number*/
#include<iomanip>
using namespace std;
int main(){
    int num;
    int i=2;
    cout<<"enter a number"<<endl;
    cin>>num;
    while(i<num/2){
                  if(num%i==0){
                                    }
                  i=i+1;
                  
        
        
    }
    cout<<"highest factor is "<<i<<endl;
    return 0;
   
    
}
DOCTYPE: html
  html lang="en"
    head
    #text: ⏎␣␣
      title
      #text: Sample page
      #text: ⏎␣
    #text: ⏎␣
    body
    #text: ⏎␣␣
      h1
      #text: Sample page
      #text: ⏎␣␣
      p
        #text: This is a
        a href="demo.html"
      	 #text: simple
      #text: sample.
      #text: ⏎␣␣
      #comment: this is a comment
     #text: ⏎␣⏎
// Online C++ compiler to run C++ program online
#include <iostream>
#include<iomanip>
using namespace std;
int main() {                //Write a C++ program that takes three numbers as input and uses the ternary operator to find and print the maximum of the three numbers.

int n1,n2,n3,n4,max,max2,d;
char invalid;
cout<<"enter four numbers"<<endl;
cin>>n1>>n2>>n3>>n4;
max = (n1>n2)?(n1>n3)?(n1>n4)?n1:n2:((n3>n2)?n3:n2):(n4>n3)?n4:n3;
cout<<"max value is "<<max<<endl;
max2 = (max>n1)?n1:(max>n2)?n2:(max>n3)?n3:(max>n4)?n4:invalid;
cout<<"2nd max value is "<<max2<<endl;
function runTypingEffect() {
    const text = 'I am Chuck Winters.';
    const typingElement = document.getElementById('typing-text');
    const typingDelay = 100;

    typeText(text, typingElement, typingDelay);
}

function typeText(text, typingElement, typingDelay) {
  for (let i = 0; i < text.length; i++) {
    setTimeout(() => {
      typingElement.textContent += text.charAt(i);
    }, typingDelay * i);
  }
}

document.addEventListener('DOMContentLoaded', runTypingEffect)
ZKT Bio-Metric Device Installation On ERPNEXT:
_____________________________________________

+++++++++++++
Open Terminal.
+++++++++++++
  
Cd frappe-bench
sudo apt update
sudo apt install python3

git clone https://github.com/frappe/biometric-attendance-sync-tool.git
cd biometric-attendance-sync-tool
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
_______________________________

++++++++++++++
Configure File
++++++++++++++

local_config.py.template  ---->  Rename To  ---->  local_config.py
Fill the Required Fields.....and Save
File Saved in Folder  [Frappe-bench/ biometric-attendance-sync-tool]

____________________________________________________________________

++++++++++++++++++
To:  RUN This TOOL:
++++++++++++++++++

Cd frappe-bench
Cd biometric-attendance-sync-tool

source venv/bin/activate
python3 erpnext_sync.py
=================================

Taimoor
Whatsapp: +923009808900
FROM centos:stream9
MAINTAINER GMC2 GmbH <support@gmc2.de>

RUN yum -y install libstdc++ libstdc++.i686 motif libXm.so.4 libXtst
RUN yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel

ENV JAVA_HOME="/usr/lib/jvm/jre-1.8.0-openjdk-1.8.0.362.b09-4.el9.x86_64"

# APP
RUN mkdir /app
COPY cognos /app/cognos

# Make sure the script is executable (if it's not already)
RUN chmod +x /app/cognos/tm1_64/bin64/startup_tm1s.sh

ENV TM1_PATH="/app/cognos/tm1_64/bin64"


# Specify the script and its parameter as the final command to run when the container starts
ENTRYPOINT ["sh", "/app/cognos/tm1_64/bin64/startup_tm1s.sh", "/app/cognos/tm1_64/samples/tm1/24Retail"]
import java.util.Scanner;  // Import the Scanner class
public class Main {
  
    public static void main(String[] args) {
        Scanner userInput = new Scanner(System.in);  // Create a Scanner object
        System.out.println("Enter your zip code:");
      
        int zipCode = userInput.nextInt();  // Read user input
        System.out.println("Zip code: " + zipCode);  // Output user input
    }
}
   Salary Payout:                   Payroll:                         
___________________________________________________________________
1- Salary Component        | 1-  Salary Structure Assignment    |
2- Salary Structure        | 2-  Salary Slip                    |
3- Income Tax Slab         | 3-  Payroll Entry                  |
4- Payroll Period          |                                    |
___________________________|____________________________________|__
___________________________|____________________________________|__
                                                           
1-Salary Components:
                                    //Chart of Account//
 =>Earning Components:               ____________________
    1- Basic Pay             --->   //Salary Expenses
    2- Dearness Allowance    --->   //Monthly Allowance 
    3- Other Allowance       --->   //Other Allowance
    4- Bonus                 --->   //Bonus
    5- Leave Encashment      --->   //Leave Encashment
    6- OverTime              --->   //Over Time         //it Auto Add from Project, Timesheet//
    7- House Rent Allowance  --->   //House Rent Allowance
    8- Medical Allownance    --->   //Medical Allownance
    9- Conveyance Allowances --->   //Conveyance Allowances
------------------------------------------------------------
 =>Deduction Components:
    1- EOBI Payable          --->   //EOBI Payable
    2- Tax Payable           --->   //Employee Tax Deducted U/S 149
    3- Absent Deduction      --->   //Salary Expenses
    4- Advance Deduction     --->   //Employee Advances 
    5- Loan Deduction        --->   //Employee Advances
    6- Other Deduction       --->   //Other Account
_______________________________________________________
_______________________________________________________
_____+________Chart of Accounts________+_  --TYPE--
	|  Salary Expenses               |   //Expenses
	|  Dearness Allowance            |   //Expenses 
	|  Other Allowance               |   //Expenses
	|  Bonus                         |   //Expenses
	|  Leave Encashment              |   //Expenses
	|  Over Time                     |   //Expenses
	|  House Rent Allowance          |   //Expenses
	|  Medical Allownance            |   //Expenses
	|  Conveyance Allowances         |   //Expenses
	|  Employee Advances             |   //Current Asset
	|  Employee Tax Deducted U/S 149 |   //Current Liability
	|  EOBI Payable                  |   //Current Liability
	|  Salary Payable                |   //Current Liability
____+________________________________+______________________

________________________
|2- Salary Structure:  |
|======================|
  
=>Earning Components:__________________________________

    1- Basic Pay             --->   // base ---> In Salary Structure Assignment.
                                    // ctc  ---> in Empolyee
                                    //OR Enter Direct Amount.
      
    2- Dearness Allowance    --->   //Amount: empty
                                    //Formula: absent_days <= 0
                                    //Condition: 1000
                                        --OR--
                                    //Amount: 1000
                                    //Formula: absent_days > = 1
                                    //Condition: 0
          
    3- Other Allowance       --->   //Amount:
                                    //Formula:
                                    //Condition:
      
    4- Bonus                 --->   //Amount:
                                    //Formula:
                                    //Condition:
      
    5- Leave Encashment      --->   //Link with Leave Encashment
    6- OverTime              --->   //Link with Timesheet//
    7- House Rent Allowance  --->   //base or ctc * 0.05  (if Fixed then Enter Amount LIKE 1000)
    8- Medical Allownance    --->   //base or ctc * 0.05  (if Fixed then Enter Amount LIKE 500)
    9- Conveyance Allowances --->   //base or ctc * 0.05  (if Fixed then Enter Amount LIKE 1500)
_________________________________________________________
      
=>Deduction Components:
    1- EOBI Payable          --->   //Amount: 250
                                    //Formula: empty
                                    //Condition: employment_type=="Registered"
      
    2- Tax Payable           --->   // Link wiht Income Tax Slab
      
    3- Absent Deduction      --->   //Amount: Empty
                                    //Formula: Empty
                                    //Condition: (base/30)*absent_days
      
    4- Advance Deduction     --->   // Link with Loan/Lending Module
    5- Loan Deduction        --->   // Link with Loan/Lending Module
    6- Other Deduction       --->   // Use for Different purposes like Fine Deduction, etc     
      
import java.util.Scanner;  // Import the Scanner class
public class Main {
 
        public static void main(String[] args) {
            Scanner userInput = new Scanner(System.in);  // Create a Scanner object
        }
    }
import java.util.Scanner;  // Import the Scanner class
public class Main {

        public static void main(String[] args) {
            Scanner userInput = new Scanner(System.in);  // Create a Scanner object
            System.out.println("Enter email:");

            String emailAddress = userInput.nextLine();  // Read user input
            System.out.println("Email is: " + emailAddress);  // Output user input
        }
    }
function home_slider_cpt()
{

    $labels = array(
        'name' => _x('Home Slider', 'Post Type General Name'),
        'singular_name' => _x('Home Slider', 'Post Type Singular Name'),
        'menu_name' => _x('Home Slider', 'Admin Menu text'),
        'name_admin_bar' => _x('Home Slider', 'Add New on Toolbar'),
        'archives' => __('Home Slider' . ' Archives'),
        'attributes' => __('Home Slider' . 'Attributes'),
        'all_items' => __('Home Slider'),
        'add_new_item' => __('Add New ' . 'Home Slider'),
        'add_new' => __('Add New'),
        'new_item' => __('New ' . 'Home Slider'),
        'edit_item' => __('Edit ' . 'Home Slider'),
        'update_item' => __('Update ' . 'Home Slider'),
        'view_item' => __('View ' . 'Home Slider'),
        'view_items' => __('View' . 'Home Slider'),
        'search_items' => __('Search ' . 'Home Slider'),
        'not_found' => __('Not found'),
        'not_found_in_trash' => __('Not found in Trash'),
        'featured_image' => __('Featured Image'),
        'set_featured_image' => __('Set featured image'),
        'remove_featured_image' => __('Remove featured image'),
        'use_featured_image' => __('Use as featured image'),
        'insert_into_item' => __('Insert into' . 'Home Slider'),
        'uploaded_to_this_item' => __('Uploaded to this' . 'Home Slider'),
        'items_list' => __('Sliders list'),
        'items_list_navigation' => __('Home Slider' . ' list navigation'),
        'filter_items_list' => __('Filter ' . 'Home Slider' . ' list'),
    );
    $rewrite = array(
        'slug' => 'home-slider',
        'with_front' => true,
        'pages' => true,
        'feeds' => true,
    );
    $args = array(
        'label' => __('Home Slider'),
        'description' => __(''),
        'labels' => $labels,
        'menu_icon' => $icon,
        'supports' => array('title', 'editor', 'excerpt', 'thumbnail', 'revisions'),
        'taxonomies' => array(),
        'public' => true,
        'show_ui' => true,
        'show_in_menu' => true,
        'menu_position' => 5,
        'show_in_admin_bar' => true,
        'show_in_nav_menus' => true,
        'can_export' => true,
        'has_archive' => true,
        'hierarchical' => true,
        'exclude_from_search' => false,
        'show_in_rest' => true,
        'publicly_queryable' => true,
        'capability_type' => 'post',
        'rewrite' => $rewrite,
    );
    register_post_type('home-slider', $args);
}

add_action('init', 'home_slider_cpt');


function home_slider_loop()
{
    ob_start();
?>

    <div id="homeSlider">
        <?php
        $arg = array(
            'post_type' => 'home-slider',
            'posts_per_page' => -1,
        );
        $result = new WP_Query($arg);
        ?>
        <?php if ($result->have_posts()) : ?>
            <?php while ($result->have_posts()) : ?>
                <?php $result->the_post(); ?>

                <div class="homeSliderWrapper">
                    <div class="homeSliderInner">
                        <div class="homeSliderContent">
                            <h1><?php the_title(); ?></h1>
                            <div class="homeContent">
                                <?php
                                    echo wp_trim_words( get_the_content(), 15, '...' );
                                ?>
                            </div>
                            <a class="elementor-button elementor-button-link elementor-size-sm btnHomeSlider" href="<?php site_url().'/shop'; ?>">
                                <span class="elementor-button-content-wrapper">
                                    <span class="elementor-button-text"><?php _e('Shop Now'); ?></span>
                                </span>
                            </a>
                        </div>
                        <div class="homeSliderInnerImg">
                            <?php the_post_thumbnail('full'); ?>    
                        </div>
                    </div>
                </div>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>

<?php
    wp_reset_postdata();
    return ob_get_clean();
}
add_shortcode('home_slider', 'home_slider_loop');
function product_loop()
{
    ob_start();
?>
    <div class="woocommerceSlider">
        <?php
        $arg = array(
            'post_type' => 'product',
            'posts_per_page' => -1,
        );
        $pro = new WP_Query($arg);
        ?>
        <?php if ($pro->have_posts()) : ?>
            <?php while ($pro->have_posts()) : ?>
                <?php $pro->the_post();
                global $product;
                $eid = get_the_ID();
                ?>

                <div class="woocommerceWrapper">
                    <div class="woocommerceImg">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <?php the_post_thumbnail('full'); ?>
                        </a>
                    </div>
                    <div class="woocommerceContent">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <h2><?php echo $product->get_title(); ?></h2>
                        </a>
                        <?php if ($product->is_type('simple')) { ?>
                            <?php echo $product->get_price_html(); ?>
                        <?php } ?>
                        <?php
                        if ($product->get_type() == 'variable') {
                            $available_variations = $product->get_available_variations();
                            $variation_id = $available_variations[0]['variation_id'];
                            $variable_product1 = new WC_Product_Variation($variation_id);
                            $regular_price = $variable_product1->regular_price;
                            $sales_price = $variable_product1->sale_price;
                            if (empty($sales_price)) {
                                $sales_price = 0;
                            }
                            echo "$" . ($regular_price  + $sales_price);
                        }
                        ?>
                    </div>
                    <a class="addToCartBtn" href="<?php echo get_site_url(); ?>/cart/?add-to-cart=<?php echo $product->get_ID(); ?>">Add To Cart</a>
                </div>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>
<?php
    wp_reset_postdata();
    return ob_get_clean();
}
add_shortcode('product_code', 'product_loop');


function products_loop()
{
    ob_start();
?>
    <div class="woocommerceSliders">
        <?php
        $arg = array(
            'post_type' => 'product',
            'posts_per_page' => -1,
        );
        $pro = new WP_Query($arg);
        ?>
        <?php if ($pro->have_posts()) : ?>
            <?php while ($pro->have_posts()) : ?>
                <?php $pro->the_post();
                global $product;
                $eid = get_the_ID();
                ?>

                <div class="woocommerceWrapper">
                    <div class="woocommerceImg">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <?php the_post_thumbnail('full'); ?>
                        </a>
                    </div>
                    <div class="woocommerceContent">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <h2><?php echo $product->get_title(); ?></h2>
                        </a>
                        <?php if ($product->is_type('simple')) { ?>
                            <?php echo $product->get_price_html(); ?>
                        <?php } ?>
                        <?php
                        if ($product->get_type() == 'variable') {
                            $available_variations = $product->get_available_variations();
                            $variation_id = $available_variations[0]['variation_id'];
                            $variable_product1 = new WC_Product_Variation($variation_id);
                            $regular_price = $variable_product1->regular_price;
                            $sales_price = $variable_product1->sale_price;
                            if (empty($sales_price)) {
                                $sales_price = 0;
                            }
                            echo "$" . ($regular_price  + $sales_price);
                        }
                        ?>
                    </div>
                    <a class="addToCartBtn" href="<?php echo get_site_url(); ?>/cart/?add-to-cart=<?php echo $product->get_ID(); ?>">Add To Cart</a>
                </div>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>
<?php
    wp_reset_postdata();
    return ob_get_clean();
}
add_shortcode('product_codes', 'products_loop');
function product_loop()
{
    ob_start();
?>
    <div class="woocommerceSlider">
        <?php
        $arg = array(
            'post_type' => 'product',
            'posts_per_page' => -1,
        );
        $pro = new WP_Query($arg);
        ?>
        <?php if ($pro->have_posts()) : ?>
            <?php while ($pro->have_posts()) : ?>
                <?php $pro->the_post();
                global $product;
                $eid = get_the_ID();
                ?>

                <div class="woocommerceWrapper">
                    <div class="woocommerceImg">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <?php the_post_thumbnail('full'); ?>
                        </a>
                    </div>
                    <div class="woocommerceContent">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <h2><?php echo $product->get_title(); ?></h2>
                        </a>
                        <?php if ($product->is_type('simple')) { ?>
                            <?php echo $product->get_price_html(); ?>
                        <?php } ?>
                        <?php
                        if ($product->get_type() == 'variable') {
                            $available_variations = $product->get_available_variations();
                            $variation_id = $available_variations[0]['variation_id'];
                            $variable_product1 = new WC_Product_Variation($variation_id);
                            $regular_price = $variable_product1->regular_price;
                            $sales_price = $variable_product1->sale_price;
                            if (empty($sales_price)) {
                                $sales_price = 0;
                            }
                            echo "$" . ($regular_price  + $sales_price);
                        }
                        ?>
                    </div>
                    <a class="addToCartBtn" href="<?php echo get_site_url(); ?>/cart/?add-to-cart=<?php echo $product->get_ID(); ?>">Add To Cart</a>
                </div>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>
<?php
    wp_reset_postdata();
    return ob_get_clean();
}
add_shortcode('product_code', 'product_loop');


function products_loop()
{
    ob_start();
?>
    <div class="woocommerceSliders">
        <?php
        $arg = array(
            'post_type' => 'product',
            'posts_per_page' => -1,
        );
        $pro = new WP_Query($arg);
        ?>
        <?php if ($pro->have_posts()) : ?>
            <?php while ($pro->have_posts()) : ?>
                <?php $pro->the_post();
                global $product;
                $eid = get_the_ID();
                ?>

                <div class="woocommerceWrapper">
                    <div class="woocommerceImg">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <?php the_post_thumbnail('full'); ?>
                        </a>
                    </div>
                    <div class="woocommerceContent">
                        <a href="<?php echo get_permalink($product->get_id()); ?>">
                            <h2><?php echo $product->get_title(); ?></h2>
                        </a>
                        <?php if ($product->is_type('simple')) { ?>
                            <?php echo $product->get_price_html(); ?>
                        <?php } ?>
                        <?php
                        if ($product->get_type() == 'variable') {
                            $available_variations = $product->get_available_variations();
                            $variation_id = $available_variations[0]['variation_id'];
                            $variable_product1 = new WC_Product_Variation($variation_id);
                            $regular_price = $variable_product1->regular_price;
                            $sales_price = $variable_product1->sale_price;
                            if (empty($sales_price)) {
                                $sales_price = 0;
                            }
                            echo "$" . ($regular_price  + $sales_price);
                        }
                        ?>
                    </div>
                    <a class="addToCartBtn" href="<?php echo get_site_url(); ?>/cart/?add-to-cart=<?php echo $product->get_ID(); ?>">Add To Cart</a>
                </div>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>
<?php
    wp_reset_postdata();
    return ob_get_clean();
}
add_shortcode('product_codes', 'products_loop');
const [formErrors, setFormErrors] = useState<Partial<UserRegistrationFormAddressInfoDetails>>({
  address: '',
  countryName: '',
  nationalityName: '',
  cityName: '',
  passportNo: '',
  passportExpiryDate: '',
  // nationality: '',
  resident: '',
  companyAdd: '',
});


handleEmptyField('passportNo', userData.passportNumber || passportNo, 'Passport No is required');


useEffect(() => {
  if (passportNo) {
    setFormErrors((prevErrors) => ({ ...prevErrors, passportNo: '' }));
  }
}, [passportNo]);

<input
      type="text"
      className={`form-control passport-number-input ${formErrors.passportNo ? 'input-error' : ''}`}
      id="passportNumber"
      placeholder="Enter Your Passport Number"
      defaultValue={userData.passportNumber}
      maxLength={12}
      onChange={(e) => {
        setPassportNo(e.target.value);
        if (e.target.value) {
        setFormErrors((prevErrors) => ({ ...prevErrors, passportNo: '' }));
        }
        }}
      onInput={(e) => {
        const input = e.target as HTMLInputElement;
        input.value = input.value.replace(/[^a-zA-Z0-9 ]/g, '');
        setPassportNo(input.value);
        }}
      {...register('passportNo', {
      required: true,
      })}
/>





<div class="myb-SettledBetParticipantRenderer "><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">AC Milan +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName " style="">Borussia Dortmund v AC Milan</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Celtic +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Celtic v Lazio</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.04</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Swansea +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Swansea v Norwich</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Eldense +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Eldense v Valladolid</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.035</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Huesca +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Oviedo v Huesca</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Leganes +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Burgos v Leganes</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.035</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Elche +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Sporting Gijon v Elche</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.04</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Bangkok United +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Bangkok United v Jeonbuk Motors</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.05</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Hartlepool +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Boreham Wood v Hartlepool</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-lost "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Rot-Weiss Essen +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-2 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-2 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-2 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-2 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Unterhaching v Rot-Weiss Essen</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Lumezzane +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Lumezzane v Atalanta U23</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.035</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">AlbinoLeffe +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">AlbinoLeffe v Renate</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.05</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Carrarese +2.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Carrarese v Pontedera</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.055</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">ASD Turris +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">ASD Turris v Audace Cerignola</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Juventus U23 +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Pro Vercelli v Juventus U23</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.05</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">ASD Pineto Calcio +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">U.S. Ancona v ASD Pineto Calcio</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.05</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Brindisi +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Virtus Francavilla v Brindisi</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.045</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Chippa United +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Moroka Swallows v Chippa United</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.04</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-won "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">Polokwane City +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-1 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-1 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-1 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-1 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Richards Bay FC v Polokwane City</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.035</div></div></div><div class="myb-BetParticipant myb-SettledBetParticipant "><div class="myb-BetParticipant_TopContainer "><div class="myb-BetParticipant_LeftContainer "><div class="myb-BetParticipant_HeaderTitle "><div class="myb-WinLossIndicator myb-WinLossIndicator-lost "></div><div class="myb-BetParticipant_HeaderText "><span class="myb-BetParticipant_ParticipantSpan ">TS Galaxy +3.0<div class="myb-HalfAndHalfPill myb-HalfAndHalfPill_Status-2 "><div class="myb-HalfAndHalfPill_TextStatus myb-HalfAndHalfPill_TextStatus-2 "><div class="myb-HalfAndHalfPill_TextStatusLHS myb-HalfAndHalfPill_TextStatusLHS-2 "></div><div class="myb-HalfAndHalfPill_Slash"></div><div class="myb-HalfAndHalfPill_TextStatusRHS myb-HalfAndHalfPill_TextStatusRHS-2 "></div></div></div></span></div></div><div><div class="myb-BetParticipant_MarketDescription ">Alternative Handicap Result</div></div><div class="myb-BetParticipant_FixtureContainer "><div class="myb-BetParticipant_FixtureDescription myb-SettledBetParticipant_FixtureDescription "><div class="myb-BetParticipant_FixtureName ">Stellenbosch FC v TS Galaxy</div></div></div><div><div></div></div></div><div class="myb-BetParticipant_HeaderOdds ">1.04</div></div></div></div>
star

Fri Oct 06 2023 22:09:54 GMT+0000 (Coordinated Universal Time)

@gbritgs #apex

star

Fri Oct 06 2023 21:45:18 GMT+0000 (Coordinated Universal Time)

@shirnunn

star

Fri Oct 06 2023 21:36:47 GMT+0000 (Coordinated Universal Time)

@shirnunn

star

Fri Oct 06 2023 15:13:41 GMT+0000 (Coordinated Universal Time)

@Taimoor

star

Fri Oct 06 2023 15:12:57 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Fri Oct 06 2023 14:26:58 GMT+0000 (Coordinated Universal Time)

@ants

star

Fri Oct 06 2023 13:47:42 GMT+0000 (Coordinated Universal Time)

@Shira

star

Fri Oct 06 2023 13:04:41 GMT+0000 (Coordinated Universal Time)

@stacyjacqueen #python

star

Fri Oct 06 2023 12:47:47 GMT+0000 (Coordinated Universal Time)

@prettyleka

star

Fri Oct 06 2023 12:41:23 GMT+0000 (Coordinated Universal Time) https://maticz.com/roulette-game-development

@Floralucy #roulettegamedevelopment #roulettegamedevelopmentcompany #roulettegamedevelopmentservices

star

Fri Oct 06 2023 12:31:03 GMT+0000 (Coordinated Universal Time)

@prettyleka

star

Fri Oct 06 2023 12:11:23 GMT+0000 (Coordinated Universal Time) https://practice.geeksforgeeks.org/problems/given-a-linked-list-reverse-alternate-nodes-and-append-at-the-end/1

@DxBros #linkedlists #evenlength #o(n) #c++

star

Fri Oct 06 2023 11:40:20 GMT+0000 (Coordinated Universal Time) https://shop.mercury-market.ru/catalog/tovary_dlya_zhivotnykh/pedigri_korm_dlya_sobak_600gr_dlya_vzroslykh_sobak_vsekh_porod_govyadina/

@Archmanerggqq

star

Fri Oct 06 2023 11:37:17 GMT+0000 (Coordinated Universal Time)

@mdfaizi

star

Fri Oct 06 2023 11:26:26 GMT+0000 (Coordinated Universal Time)

@vjg #javascript

star

Fri Oct 06 2023 11:14:24 GMT+0000 (Coordinated Universal Time) https://followingnetsuite.com/2021/06/30/suitescript-modifying-addresses/

@mdfaizi

star

Fri Oct 06 2023 11:09:05 GMT+0000 (Coordinated Universal Time)

@Tphilus #htm

star

Fri Oct 06 2023 11:06:42 GMT+0000 (Coordinated Universal Time)

@Tphilus #htm

star

Fri Oct 06 2023 11:04:29 GMT+0000 (Coordinated Universal Time)

@Tphilus #htm

star

Fri Oct 06 2023 10:59:32 GMT+0000 (Coordinated Universal Time)

@mradul

star

Fri Oct 06 2023 10:34:06 GMT+0000 (Coordinated Universal Time)

@Tphilus #htm

star

Fri Oct 06 2023 10:28:53 GMT+0000 (Coordinated Universal Time)

@Tphilus #htm

star

Fri Oct 06 2023 08:58:45 GMT+0000 (Coordinated Universal Time)

@Tphilus #htm

star

Fri Oct 06 2023 08:22:20 GMT+0000 (Coordinated Universal Time)

@emjumjunov

star

Fri Oct 06 2023 07:49:13 GMT+0000 (Coordinated Universal Time)

@Tphilus #html

star

Fri Oct 06 2023 07:47:51 GMT+0000 (Coordinated Universal Time)

@dpavone #javascript

star

Fri Oct 06 2023 06:51:25 GMT+0000 (Coordinated Universal Time)

@vjg #javascript

star

Fri Oct 06 2023 02:52:05 GMT+0000 (Coordinated Universal Time)

@Tonyfingh

star

Fri Oct 06 2023 00:29:16 GMT+0000 (Coordinated Universal Time)

@bisratekle

star

Fri Oct 06 2023 00:07:58 GMT+0000 (Coordinated Universal Time)

@bisratekle

star

Thu Oct 05 2023 20:52:42 GMT+0000 (Coordinated Universal Time)

@bisratekle

star

Thu Oct 05 2023 20:48:10 GMT+0000 (Coordinated Universal Time)

@bisratekle

star

Thu Oct 05 2023 17:25:45 GMT+0000 (Coordinated Universal Time) https://www.google.com/search?q

@destinyChuck #html #css

star

Thu Oct 05 2023 17:17:53 GMT+0000 (Coordinated Universal Time) https://onlinecourses.nptel.ac.in/noc23_cs108/progassignment?action

@tusharsd #undefined

star

Thu Oct 05 2023 17:11:06 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Thu Oct 05 2023 16:55:36 GMT+0000 (Coordinated Universal Time) https://html.spec.whatwg.org/multipage/introduction.html#abstract

@jrg_300i #php #poo #mvc #jquery #postgresql

star

Thu Oct 05 2023 16:07:48 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Thu Oct 05 2023 16:07:22 GMT+0000 (Coordinated Universal Time)

@destinyChuck #javascript

star

Thu Oct 05 2023 12:24:11 GMT+0000 (Coordinated Universal Time)

@Taimoor

star

Thu Oct 05 2023 12:08:24 GMT+0000 (Coordinated Universal Time) https://gmc2.de/

@agusser #ibm #tm1 #gmc²

star

Thu Oct 05 2023 11:14:51 GMT+0000 (Coordinated Universal Time)

@TestProSupport

star

Thu Oct 05 2023 11:07:16 GMT+0000 (Coordinated Universal Time)

@Taimoor

star

Thu Oct 05 2023 10:58:03 GMT+0000 (Coordinated Universal Time)

@TestProSupport

star

Thu Oct 05 2023 10:56:39 GMT+0000 (Coordinated Universal Time)

@TestProSupport

star

Thu Oct 05 2023 09:29:02 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Thu Oct 05 2023 09:27:59 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Thu Oct 05 2023 09:27:30 GMT+0000 (Coordinated Universal Time)

@hamzakhan123

star

Thu Oct 05 2023 04:50:09 GMT+0000 (Coordinated Universal Time) https://www.youtube.com/

@abdulghaniy

star

Thu Oct 05 2023 02:57:51 GMT+0000 (Coordinated Universal Time)

@anmolvirk #html

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension