Snippets Collections
#include <iostream>
#include <string>
#include <vector>
#include <utility>
#include <iterator>
#include <algorithm>
#include <deque>
#include <cmath>
#include <stack>
#include <queue>
#define endl "\n"
#define ll long long
#define all(v) v.begin(),v.end()
void swap(int arr[] , int pos1, int pos2){
    int temp;
    temp = arr[pos1];
    arr[pos1] = arr[pos2];
    arr[pos2] = temp;
}

int partition(int arr[], int low, int high, int pivot){
    int i = low;
    int j = low;
    while( i <= high){
        if(arr[i] > pivot){
            i++;
        }
        else{
            swap(arr,i,j);
            i++;
            j++;
        }
    }
    return j-1;
}

void quickSort(int arr[], int low, int high){
    if(low < high){
        int pivot = arr[high];
        int pos = partition(arr, low, high, pivot);

        quickSort(arr, low, pos-1);
        quickSort(arr, pos+1, high);
    }
}




using namespace std;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

        ll N ;
        cin>>N ;
        int X[N] ;
        for(ll i=0;i<N;i++){
        cin>>X[i];}
    quickSort(X,0,N-1) ;
    for(ll i=0;i<N;i++){
        cout<<X[i]<<" ";}

}

#include <iostream>
#include <string>
#include <vector>
#include <utility>
#include <iterator>
#include <algorithm>
#include <deque>
#include <cmath>
#include <stack>
#include <queue>
#define endl "\n"
#define ll long long
#define all(v) v.begin(),v.end()
void merge(int array[], int const left,
           int const mid, int const right)
{
    auto const subArrayOne = mid - left + 1;
    auto const subArrayTwo = right - mid;

    // Create temp arrays
    auto *leftArray = new int[subArrayOne],
            *rightArray = new int[subArrayTwo];

    // Copy data to temp arrays leftArray[]
    // and rightArray[]
    for (auto i = 0; i < subArrayOne; i++)
        leftArray[i] = array[left + i];
    for (auto j = 0; j < subArrayTwo; j++)
        rightArray[j] = array[mid + 1 + j];

    // Initial index of first sub-array
    // Initial index of second sub-array
    auto indexOfSubArrayOne = 0,
            indexOfSubArrayTwo = 0;

    // Initial index of merged array
    int indexOfMergedArray = left;

    // Merge the temp arrays back into
    // array[left..right]
    while (indexOfSubArrayOne < subArrayOne &&
           indexOfSubArrayTwo < subArrayTwo)
    {
        if (leftArray[indexOfSubArrayOne] <=
            rightArray[indexOfSubArrayTwo])
        {
            array[indexOfMergedArray] =
                    leftArray[indexOfSubArrayOne];
            indexOfSubArrayOne++;
        }
        else
        {
            array[indexOfMergedArray] =
                    rightArray[indexOfSubArrayTwo];
            indexOfSubArrayTwo++;
        }
        indexOfMergedArray++;
    }

    // Copy the remaining elements of
    // left[], if there are any
    while (indexOfSubArrayOne < subArrayOne)
    {
        array[indexOfMergedArray] =
                leftArray[indexOfSubArrayOne];
        indexOfSubArrayOne++;
        indexOfMergedArray++;
    }

    // Copy the remaining elements of
    // right[], if there are any
    while (indexOfSubArrayTwo < subArrayTwo)
    {
        array[indexOfMergedArray] =
                rightArray[indexOfSubArrayTwo];
        indexOfSubArrayTwo++;
        indexOfMergedArray++;
    }
}

// begin is for left index and end is
// right index of the sub-array
// of arr to be sorted */
void mergeSort(int array[],
               int const begin,
               int const end)
{
    // Returns recursively
    if (begin >= end)
        return;

    auto mid = begin + (end - begin) / 2;
    mergeSort(array, begin, mid);
    mergeSort(array, mid + 1, end);
    merge(array, begin, mid, end);
}




using namespace std;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

        ll N ;
        cin>>N ;
        int X[N] ;
        for(ll i=0;i<N;i++){
        cin>>X[i];}
    mergeSort(X,0,N-1) ;
    for(ll i=0;i<N;i++){
        cout<<X[i]<<" ";}

}

void insertionSort(int arr[], int n)
    {
        int i, key, j;
        for (i = 1; i < n; i++) {
            key = arr[i];
            j = i - 1;

            // Move elements of arr[0..i-1],
            // that are greater than key,
            // to one position ahead of their
            // current position
            while (j >= 0 && arr[j] > key) {
                arr[j + 1] = arr[j];
                j = j - 1;
            }
            arr[j + 1] = key;
        }
    }
yrdy gvterge rgve
import java.util.Scanner;
class Student{
	int rollNumber;
	String name;
}
class StudentInfo{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		Student s1=new Student();
		Student s2=new Student();
		Student s3=new Student();
		System.out.println("Enter roll of 1st Student:");
		s1.rollNumber=sc.nextInt();
		sc.nextLine();
		System.out.println("Enter name of 1st Student:");
		s1.name=sc.nextLine();
		System.out.println("Enter roll of 2nd Student:");
		s2.rollNumber=sc.nextInt();
		sc.nextLine();
		System.out.println("Enter name of 2nd Student:");
		s2.name=sc.nextLine();
		System.out.println("Enter roll of 3rd Student:");
		s3.rollNumber=sc.nextInt();
		sc.nextLine();
		System.out.println("Enter name of 3rd Student:");
		s3.name=sc.nextLine();
		System.out.println("Name of First Student= "+s1.name);
		System.out.println("roll of First Student= "+s1.rollNumber);
		System.out.println("Name of Second Student= "+s2.name);
		System.out.println("roll of Second Student= "+s2.rollNumber);
		System.out.println("Name of Third Student= "+s3.name);
		System.out.println("roll of Second Student= "+s3.rollNumber);
	}
}
import java.util.Scanner;
class Student{
	int rollNumber;
	String name;
}
class StudentInfo{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		Student s1=new Student();
		Student s2=new Student();
		Student s3=new Student();
		System.out.println("Enter roll of 1st Student:");
		s1.rollNumber=sc.nextInt();
		sc.nextLine();
		System.out.println("Enter name of 1st Student:");
		s1.name=sc.nextLine();
		System.out.println("Enter roll of 2nd Student:");
		s2.rollNumber=sc.nextInt();
		sc.nextLine();
		System.out.println("Enter name of 2nd Student:");
		s2.name=sc.nextLine();
		System.out.println("Enter roll of 3rd Student:");
		s3.rollNumber=sc.nextInt();
		sc.nextLine();
		System.out.println("Enter name of 3rd Student:");
		s3.name=sc.nextLine();
		System.out.println("Name of First Student= "+s1.name);
		System.out.println("roll of First Student= "+s1.rollNumber);
		System.out.println("Name of Second Student= "+s2.name);
		System.out.println("roll of Second Student= "+s2.rollNumber);
		System.out.println("Name of Third Student= "+s3.name);
		System.out.println("roll of Second Student= "+s3.rollNumber);
	}
}
// Advanced Builder on CPT
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
  $supported_post_types[] = 'leadership';
      return $supported_post_types;
}
add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
.flatpickr-calendar+.flatpickr-day{
++++max-width:+37px;
++++height:+37px;
++++line-height:+37px;
++++background-color:+green;
++++color:+white;
}
span.flatpickr-day.disabled.disabledUnavailable.disabledTitle{
++++background-color:+red!important;
++++color:+white;
}
<span class="counter-value active" data-count="100">100</span>+
if(SDB.App.exists('.sg-counter-ready')){
					$(document).ready(startCounterReady);
					flag = 1;

					function startCounterReady() {
						if ($('.sg-counter-ready').length > 0) {
							$('.sg-counter-ready').each(function () {
								var _current = $(this);
								var countDuration = 0;
								var toTop = _current.offset().top - window.innerHeight;
								if (countDuration == 0 && $(window).scrollTop() > toTop && _current.find('.counter-value').hasClass('active')) {
									_current.find('.counter-value').each(function () {
										var $this = $(this),
											countTo = $this.attr('data-count');
											countNum: $this.text();
										$({
										}).animate({
											countNum: countTo
										}, {
											duration: 1500,
											easing: 'swing',
											step: function (now) {
												$this.text(Math.ceil(now).toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,"));
											},
											complete: function () {
												$this.stop();
											}
										});

										$this.removeClass('active');
									});
									countDuration = 1;
								}
							});
						}
					}
				}
				if(SDB.App.exists('.sg-counter')){
					$(window).scroll(startCounter);
					flag = 1;

					function startCounter() {
						if ($('.sg-counter').length > 0) {
							$('.sg-counter').each(function () {
								var _current = $(this);
								var countDuration = 0;
								var toTop = _current.offset().top - window.innerHeight;
								if (countDuration == 0 && $(window).scrollTop() > toTop && _current.find('.counter-value').hasClass('active')) {
									_current.find('.counter-value').each(function () {
										var $this = $(this),
											countTo = $this.attr('data-count');
											countNum: $this.text();
										$({
										}).animate({
											countNum: countTo
										}, {
											duration: 3000,
											easing: 'swing',
											step: function (now) {
												$this.text(Math.ceil(now).toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,"));
											},
											complete: function () {
												$this.stop();
											}
										});

										$this.removeClass('active');
									});
									countDuration = 1;
								}
							});
						}
					}
				}
from langchain.embeddings.sentence_transformer import SentenceTransformerEmbeddings
from langchain.text_splitter import CharacterTextSplitter
from langchain.vectorstores import Chroma
from langchain.document_loaders import TextLoader

# load the document and split it into chunks
loader = TextLoader("")
documents = loader.load()
len(documents)
print(documents[0])

# split it into chunks
text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)
docs = text_splitter.split_documents(documents)
len(docs)
print(docs[0])


# create the open-source embedding function
embedding_function = HuggingFaceEmbeddings

# load it into Chroma
db = Chroma.from_documents(docs, embedding_function, persist_directory="./chroma_db")

# query it
#query = "Question"
#docs = db.similarity_search(query)

# print results
print(docs[0].page_content)

docs = db2.similarity_search(query)
const randomID = new Date().getTime().toString().substring(3, 10)
#include <iostream>
#include <string>
#include <vector>
#include <utility>
#include <iterator>
#include <algorithm>
#include <deque>
#include <cmath>
#include <stack>
#include <queue>
#define endl "\n"
#define ll long long
#define all(v) v.begin(),v.end()



using namespace std;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    ll N ;
     cin>>N ;
     ll X[N] ;
     for(ll i=0 ;i<N ;i++){cin>>X[i];
     }
     ll k=N ;
    for(ll J=0 ;J<N ;J++) {
         for (ll i = 0; i < N-1-J; i++) {
             if (X[i] > X[i + 1]) {
                 swap(X[i], X[i +1]);
             }
         }
     }

     for(ll i=0 ;i<N ;i++){
         cout<<X[i]<<" ";
     }







}

#include <iostream>
#include <string>
#include <vector>
#include <utility>
#include <iterator>
#include <algorithm>
#include <deque>
#include <cmath>
#include <stack>
#include <queue>
#define endl "\n"
#define ll long long
#define all(v) v.begin(),v.end()



using namespace std;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    ll N ;
     cin>>N ;
     ll X[N] ;
     for(ll i=0 ;i<N ;i++){cin>>X[i];
     }
     ll Mn=X[0]  ;


     for(ll i=0 ;i<N-1 ;i++){
         for(ll J=i ;J<N ;J++){
          if(X[J]<Mn){
              Mn=X[J] ;
              swap(X[i],X[J]) ;
          }
         }


         Mn=X[i+1] ;
     }
     for(ll i=0 ;i<N ;i++){
         cout<<X[i]<<" ";
     }







}

function App() {
  const [product, setProduct] = useState([]);

  useEffect(() => {
    const apiURL = "https://fakestoreapi.com/products";

    fetch(apiURL)
      .then((response) => {
        if (!response.ok) {
          throw new Error("No Response from the API");
        }
        return response.json();
      })
      .then((data) => {
        setProduct(data);
      })
      .catch((error) => {
        console.error("Not Feteched");
      });
  }, []);

  return (
    <div>
      <ul>
        {product.map((product) => (
          <li>{product.title}</li>
        ))}
      </ul>
    </div>
  );
}

export default App;
For i = 2 To [a65536].End(xlUp).Row
Next i
import java.util.Scanner;
public class AriOp{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		int FirstNumber,SecondNumber,x;
		int sum,sub,multi,div,mod,temp;
		System.out.println("ARITHMETIC OPERATION");
		System.out.println("--------------------");
		System.out.println("1.ADDITION");
		System.out.println("2.SUBTRACTION");
		System.out.println("3.MULTIPLICATION");
		System.out.println("4.DIVISION");
		System.out.println("5.REMAINDER");
		System.out.println("---------------------");
		System.out.println("Enter a number:");
		FirstNumber=sc.nextInt();
		System.out.println("Enter a number:");
		SecondNumber=sc.nextInt();
		System.out.println("Enter your option:");
		x=sc.nextInt();
		if(x>5){
			System.out.println("Enter valid criteria mentioned Above");
		}else{
			if(x==1){
				sum=FirstNumber+SecondNumber;
				System.out.println("Sum= "+sum);
			}else if(x==2){
				if(FirstNumber<SecondNumber){
						temp=FirstNumber;
						FirstNumber=SecondNumber;
						SecondNumber=temp;
				}
				sub=FirstNumber-SecondNumber;
				System.out.println("sub= "+sub);
			}else if(x==3){
				multi=FirstNumber*SecondNumber;
				System.out.println("multi= "+multi);
			}else if(x==4){
				if(FirstNumber<SecondNumber){
						System.out.println("Not Possible");
				}else{
					div=FirstNumber/SecondNumber;
					System.out.println("Div= "+div);
				}
			}else{
				mod=FirstNumber%SecondNumber;
				System.out.println("modulus= "+mod);
			}
		}
	}
}
<iframe src="https://snapcraft.io/pspad/embedded?button=black" frameborder="0" width="100%" height="320px" style="border: 1px solid #CCC; border-radius: 2px;"></iframe>
const func = (x) => x * x;
// expression body syntax, implied "return"

const func2 = (x, y) => {
  return x + y;
};
// with block body, explicit "return" needed
class Solution:
    def fizzBuzz(self, n: int) -> list[str]:
        arr = []
        for i in range(1, n+1):
            if i % 3 == 0 and i % 5 == 0:
                arr.append("FizzBuzz")
            elif i % 3 == 0:
                arr.append("Fizz")
            elif i % 5 == 0:
                arr.append("Buzz")
            else:
               arr.append(str(i)) 
        return arr
        
s=Solution()
print(s.fizzBuzz(15))
[0:01:10.271] Script completed in scope global: script
Script execution history and recovery available here
Time: 0:00:00.165 id: esri_1[glide.20] primary_hash=-1044066828 (connpid=16123892) for: SELECT cmdb0.`sys_id` FROM cmdb cmdb0  WHERE cmdb0.`sys_class_path` LIKE '/!!%' AND cmdb0.`sys_class_name` = 'cmdb_ci_computer' AND cmdb0.`serial_number` IS NOT NULL  AND cmdb0.`asset` IS NULL  /* esri069, gs:71C93306939A7D102D82BF1C5CBA10DC, tx:6ef93f46939a7d102d82bf1c5cba1041, hash:-1044066828 */ 
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.014] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.014] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.014] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
[0:00:00.380] id: esri_1[glide.2 (connpid=16123874)] for: DBQuery#loadResultSet[alm_asset: ci=NULL^serial_numberISNOTEMPTY]
Time: 0:00:00.115 id: esri_1[glide.2] primary_hash=-1351908010 (connpid=16123874) for: SELECT alm_asset0.`sys_id` FROM alm_asset alm_asset0  WHERE alm_asset0.`ci` IS NULL  AND alm_asset0.`serial_number` IS NOT NULL  /* esri069, gs:71C93306939A7D102D82BF1C5CBA10DC, tx:6ef93f46939a7d102d82bf1c5cba1041, hash:-1351908010 */ 
[0:00:00.002] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.012] Compacting large row block (file.write: alm_asset 7492 rows 119872 saveSize)
*** Script: Match found: KVP4DGD29L
*** Script: Match found: C02TF7AMGTFM
*** Script: Match found: M7L4HFRXHD
*** Script: Match found: C02NPB7YG3QD
*** Script: Match found: VWV6XW22X1
*** Script: Match found: A92F011004613
*** Script: Match found: KVHH0QQG2X
*** Script: Match found: 632024000026
*** Script: Match found: A7PU011009006
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C02FN47VMD6R
*** Script: Match found: 12CVBY3
*** Script: Match found: 87
*** Script: Match found: H6GB762
*** Script: Match found: 58CXNH2
*** Script: Match found: CN88EBW0Q6
*** Script: Match found: MMYF.105266..ATI
*** Script: Match found: C02GJ0TXMD6R
*** Script: Match found: MTFYHCDT25
*** Script: Match found: C02DRAZZMD6R
*** Script: Match found: BBEC.502477..ATI
*** Script: Match found: FVFHJ0YVQ05P
*** Script: Match found: MNYF.101492..ATI
*** Script: Match found: FP22PYXQ4Q
*** Script: Match found: 54XXN73
*** Script: Match found: JXPWV6JJW0
*** Script: Match found: CNCCDDN19L
*** Script: Match found: XH9FMFJ7LK
*** Script: Match found: VQGKV4M06K
*** Script: Match found: LX7LD29CJY
*** Script: Match found: C02FN470MD6R
*** Script: Match found: C02FN47UMD6R
*** Script: Match found: X124YW9FNQ
*** Script: Match found: 87
*** Script: Match found: C02FN01MML88
*** Script: Match found: MQ6DY4T3V5
*** Script: Match found: MTF3VKG6LJ
*** Script: Match found: M7L7GH9VP4
*** Script: Match found: GCDJF2PY6N
*** Script: Match found: 81
*** Script: Match found: C44MRXWXW7
*** Script: Match found: XL4L471K9C
*** Script: Match found: YMQWQQKGF2
*** Script: Match found: C02TK2GYHF1R
*** Script: Match found: N2W0CXP2N4
*** Script: Match found: NGF7DW4R2M
*** Script: Match found: C02GJ0TVMD6R
*** Script: Match found: K32QD4J57H
*** Script: Match found: XL6L3906KV
*** Script: Match found: 76L17S2
*** Script: Match found: X7NW6QW291
*** Script: Match found: XL9DFYQHF7
*** Script: Match found: 87YR0S2
*** Script: Match found: H2WH313GQ6P0
*** Script: Match found: TV3V3PJWHL
*** Script: Match found: RV0NL40JLX
*** Script: Match found: FVFGG1C7Q05N
*** Script: Match found: J9H96QQF4X
*** Script: Match found: C02DRAZ6MD6R
*** Script: Match found: N95WP9167Q
*** Script: Match found: 70
*** Script: Match found: 57
*** Script: Match found: 86MWNZ3
*** Script: Match found: C02XK13JJGH6
*** Script: Match found: FTX1639R35M
*** Script: Match found: XWY34GTXM5
*** Script: Match found: C02H325DDV7P
*** Script: Match found: LQJ565TGGN
*** Script: Match found: C02YJ0PCJGH6
*** Script: Match found: 1P5J082
*** Script: Match found: C02DK4JZMD6R
*** Script: Match found: HW59XP92TX
*** Script: Match found: D25LL0J3F8JC
*** Script: Match found: T0WK941VHW
*** Script: Match found: C02G37PEMD6R
*** Script: Match found: C5KPMH3
*** Script: Match found: 64167FB9AD8C
*** Script: Match found: BBEC.509353..ATI
*** Script: Match found: C02X655XJGH6
*** Script: Match found: KVP4DGD29L
*** Script: Match found: 65063D3
*** Script: Match found: T637QHYVGY
*** Script: Match found: C02WL09EHTDF
*** Script: Match found: VVKKXXHHH9
*** Script: Match found: C02FP6P5MD6R
*** Script: Match found: C02G7111MD6R
*** Script: Match found: C02XV34VJHD3
*** Script: Match found: M6XCV9L75C
*** Script: Match found: FTX1607AJH8
*** Script: Match found: P6D4PGXK0J
*** Script: Match found: 80
*** Script: Match found: VK6D96XQLG
*** Script: Match found: FVFHJ2U5Q05P
*** Script: Match found: 80
*** Script: Match found: WDFCWJFQ14
*** Script: Match found: C6TZX23
*** Script: Match found: C02DG12VMD6R
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C02F75NCQ05N
*** Script: Match found: C02G710QMD6R
*** Script: Match found: C07YD0XYJYVY
*** Script: Match found: H2WHR0QUQ6NW
*** Script: Match found: JR36GH2
*** Script: Match found: A61H011005986
*** Script: Match found: FVFHJ0YZQ05P
*** Script: Match found: C02FN5LRMD6R
*** Script: Match found: H4TH20GRPN7C
*** Script: Match found: 9BDJ0T2
*** Script: Match found: G1C2614P7X
*** Script: Match found: VJ92GLW9Y5
*** Script: Match found: C994WR3FXP
*** Script: Match found: 81
*** Script: Match found: JQ0K44MJWH
*** Script: Match found: C02DC2CBPN7C
*** Script: Match found: GLCM7YL6T7
*** Script: Match found: WDCWV26THJ
*** Script: Match found: C07SN1CUG1J1
*** Script: Match found: 442539942
*** Script: Match found: C02FN47DMD6R
*** Script: Match found: C02DRB00MD6R
*** Script: Match found: 10
*** Script: Match found: IUEC.731218.ATI
*** Script: Match found: D7KQX9GQFV
*** Script: Match found: BFHS9Y2
*** Script: Match found: H4TFD0PHPN7C
*** Script: Match found: C02XV43FJGH6
*** Script: Match found: C02G325SQ05R
*** Script: Match found: 51
*** Script: Match found: XGQGTH29LW
*** Script: Match found: C02FN46DMD6R
*** Script: Match found: YD4WQ3LK9V
*** Script: Match found: GVQ397X30G
*** Script: Match found: JPBCG4W12Z
*** Script: Match found: C02FH82GMD6R
*** Script: Match found: C02FN01SML88
*** Script: Match found: C02DM0XRMD6T
*** Script: Match found: C02GC58WQ05N
*** Script: Match found: WVCJC64L54
*** Script: Match found: TK7K21796N
*** Script: Match found: V59V52CWX6
*** Script: Match found: C02FG6DFMD6R
*** Script: Match found: 81
*** Script: Match found: NHXQ7K92T7
*** Script: Match found: X162DL03XV
*** Script: Match found: GL9QVJ2P40
*** Script: Match found: 81
*** Script: Match found: YJJGR4G9DD
*** Script: Match found: XK1FWXDFX7
*** Script: Match found: WW4PLX2X33
*** Script: Match found: FYVP6RL1F2
*** Script: Match found: C02NQ0D5G3QD
*** Script: Match found: 82
*** Script: Match found: G4FXJFJ2DN
*** Script: Match found: C02WJ37XHTDF
*** Script: Match found: 82
*** Script: Match found: A5C4011118436
*** Script: Match found: A93E011006607
*** Script: Match found: PH9RF722M2
*** Script: Match found: 28LLPN3
[0:00:00.002] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: QGPJ7G2V32
*** Script: Match found: PD4NCJJKJ6
*** Script: Match found: H2WFR8DAQ6NV
*** Script: Match found: PW54V3QWKV
*** Script: Match found: 4DZMRQ3
*** Script: Match found: C02FK4MGMD6R
*** Script: Match found: H2WFL0UDPJJ9
*** Script: Match found: Q2KCF2Q3KF
*** Script: Match found: JJ47QD71RH
*** Script: Match found: HTFPKHGCHK
*** Script: Match found: 20
*** Script: Match found: JX0LPN3
*** Script: Match found: PXLC43L30F
*** Script: Match found: RQYC6Q2WC5
*** Script: Match found: C02FL08PMD6R
*** Script: Match found: 792102000543
*** Script: Match found: WNTDT6TFD6
*** Script: Match found: C02DR9KGMD6R
*** Script: Match found: C02FN3XVMD6R
*** Script: Match found: WPKT91FPYF
*** Script: Match found: Q6J5R9NXJP
*** Script: Match found: C07SN0U6G1J2
*** Script: Match found: H4TG815FPN7C
*** Script: Match found: GD700WJPG1
*** Script: Match found: JJ7C3G2
*** Script: Match found: FXF7562
*** Script: Match found: N12HY2VD6P
*** Script: Match found: TKQHK06T4P
*** Script: Match found: H2WHP12QQ6NW
*** Script: Match found: 82
*** Script: Match found: WCAZAA747453
*** Script: Match found: YP6GK0461V
*** Script: Match found: C02G37P6MD6R
*** Script: Match found: W2GTC6JXCF
*** Script: Match found: MJ0G9WFY
*** Script: Match found: 6V4BXG2
*** Script: Match found: C02G711LMD6R
*** Script: Match found: FVFGP4SQQ05N
*** Script: Match found: FYVP6RL1F2
*** Script: Match found: C02FN01JML88
*** Script: Match found: QHX2MP2KTM
*** Script: Match found: A92F011006067
*** Script: Match found: 7B2KNN3
*** Script: Match found: H2WJF0EYQ6P0
*** Script: Match found: C02XV4HFJGH6
*** Script: Match found: R26W1QVKFV
*** Script: Match found: C02F11H2Q05N
*** Script: Match found: 27
*** Script: Match found: C02DF4ECMD6R
*** Script: Match found: LW44M7P73W
*** Script: Match found: G2KXGF3Y3M
*** Script: Match found: KJVNY9097C
*** Script: Match found: P21T2CYLX2
*** Script: Match found: 70
*** Script: Match found: 4NZ31Q2
*** Script: Match found: JJ954J3
*** Script: Match found: Y4475HK333
*** Script: Match found: NDXXPYX276
*** Script: Match found: 46
*** Script: Match found: QY54WWYG9C
*** Script: Match found: XDX44MVKCQ
*** Script: Match found: 06F930G
*** Script: Match found: FVFHJ0ZKQ05P
*** Script: Match found: GG102145
*** Script: Match found: 632016000060
*** Script: Match found: VH242MG2P6
*** Script: Match found: C02DC03NML86
*** Script: Match found: WNTDT6TFD6
*** Script: Match found: WVHT4QKYQ5
*** Script: Match found: Q7H7YJNJ0W
*** Script: Match found: W4TJ3Q13Y1
*** Script: Match found: 29
*** Script: Match found: DTF6WW1
*** Script: Match found: C02RH01JG8WM
*** Script: Match found: XCR9QMM6TV
*** Script: Match found: 27
*** Script: Match found: 9WFL0T2
*** Script: Match found: XH2JQ3C7G2
*** Script: Match found: YC3WDQ03YP
*** Script: Match found: P2PHHY2C9D
*** Script: Match found: WFQGWF9G0V
*** Script: Match found: H2WH312GQ6P0
*** Script: Match found: RXM9XH09QR
*** Script: Match found: JJ47QD71RH
*** Script: Match found: H2WJJ04LQ6P0
*** Script: Match found: 82
*** Script: Match found: C02M61CKFD59
*** Script: Match found: 4P321Q2
*** Script: Match found: C02FN46TMD6R
*** Script: Match found: 721523000029
*** Script: Match found: TJFX1W7Q4X
*** Script: Match found: C02DC02PML86
*** Script: Match found: C02GK0QRMD6T
*** Script: Match found: C07QM0A6G1J1
*** Script: Match found: TQWRWG292J
*** Script: Match found: 1Q5VBY3
*** Script: Match found: H2WJF0H1Q6P0
*** Script: Match found: VDGQ0HFWTY
*** Script: Match found: VDHJ7QK549
*** Script: Match found: 82
*** Script: Match found: FVFHJ0ZPQ05P
*** Script: Match found: WVNQWN66T2
*** Script: Match found: C02Z70KBLVDM
*** Script: Match found: C02DR9KKMD6R
*** Script: Match found: C02NQ0EQG3QD
*** Script: Match found: C02DG12WMD6R
*** Script: Match found: VP7XKW0232
*** Script: Match found: LQJ565TGGN
*** Script: Match found: A5C4011116895
*** Script: Match found: RXYLV6C07P
*** Script: Match found: WP4QYQ9N9D
*** Script: Match found: C02NQ055G3QD
*** Script: Match found: C02G37PAMD6R
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: 27WGLQ2
*** Script: Match found: C07SN0TTG1J2
*** Script: Match found: C02GJ0TTMD6R
*** Script: Match found: C02YJ2JTJGH6
*** Script: Match found: MXF9DK210Q
*** Script: Match found: Q4NNF7L9CF
*** Script: Match found: VNB3Y51823
*** Script: Match found: H2WJF0WVQ6P0
*** Script: Match found: P9L7XWDHVQ
*** Script: Match found: LXMVH6KMH4
*** Script: Match found: C02DT1FEMD6R
*** Script: Match found: C02M60YPFD59
*** Script: Match found: W4R93MH71R
*** Script: Match found: 632024000027
*** Script: Match found: C02DG12NMD6R
*** Script: Match found: C02FN47QMD6R
*** Script: Match found: C02TK249HF1R
*** Script: Match found: X1VQC22GM7
*** Script: Match found: 9ZGPM53
*** Script: Match found: A4Y4011019972
*** Script: Match found: LHXCXQMMPH
*** Script: Match found: V0QPJ6P9HW
*** Script: Match found: QQF9PT94WW
*** Script: Match found: C02G37P7MD6R
*** Script: Match found: C02VL2REHTDF
*** Script: Match found: 51
*** Script: Match found: C02C32EELVDM
*** Script: Match found: XT9KX3XH9X
*** Script: Match found: MXBCMCP0TZ
*** Script: Match found: C02G7119MD6R
*** Script: Match found: FYVP6RL1F2
*** Script: Match found: C07DC09XPJJ9
*** Script: Match found: FVWF9HJ70N
*** Script: Match found: TDLX93TY02
*** Script: Match found: C19KWVY3HK
*** Script: Match found: G17MJP21CP
*** Script: Match found: C02G711AMD6R
*** Script: Match found: C02FN46YMD6R
*** Script: Match found: V4W2T0917F
*** Script: Match found: HTM6NPHT7W
*** Script: Match found: X54WFQLNWM
*** Script: Match found: 6KWL4W3
*** Script: Match found: TMQQH6NV26
*** Script: Match found: XGFWJJ6WM4
*** Script: Match found: NYXVMJ9GH6
*** Script: Match found: JVJC9KQ0QT
*** Script: Match found: C02G7118MD6R
*** Script: Match found: C02FN465MD6R
*** Script: Match found: DYXNHWW73W
*** Script: Match found: C02RH01WG8WM
*** Script: Match found: 66QLRQ2
*** Script: Match found: X19GY2WYLH
*** Script: Match found: NJ6417KLJH
*** Script: Match found: A7AK011001248
[0:00:00.003] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.016] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: FOC1802U1BW
*** Script: Match found: WCAWZ1332959
*** Script: Match found: A7AK011007413
*** Script: Match found: 54
*** Script: Match found: W4M9561L42
*** Script: Match found: FGHPZ33
*** Script: Match found: 3PMLHR2
*** Script: Match found: QK9QXWXCW4
*** Script: Match found: LPY3H9Y5LX
*** Script: Match found: YT6927PPGP
*** Script: Match found: DFJW4WPG2X
*** Script: Match found: Q00HT0CFCG
*** Script: Match found: C02M60YPFD59
*** Script: Match found: A7AK011001244
*** Script: Match found: R7Q4KVKG9J
*** Script: Match found: P14RYY0WTG
*** Script: Match found: D25V60J5J1GP
*** Script: Match found: 48S07S2
*** Script: Match found: C07FT1VQQ6P0
*** Script: Match found: FVFHJ1GTQ05P
*** Script: Match found: HTF6WW1
*** Script: Match found: J31MVM21WH
*** Script: Match found: PNR46WGMXG
*** Script: Match found: VQXXPNX7M9
*** Script: Match found: C02DG132MD6R
*** Script: Match found: FVFHK3D1Q05P
*** Script: Match found: FVFHJ0ZJQ05P
*** Script: Match found: 82
*** Script: Match found: C02Z70L1LVDM
*** Script: Match found: T75527XTF7
*** Script: Match found: LX97LFCQMC
*** Script: Match found: A7PU011009087
*** Script: Match found: H2WFT0T7Q6P0
*** Script: Match found: H4LY921XV3
*** Script: Match found: VNB3B49463
*** Script: Match found: H2WHK0VEQ6NW
*** Script: Match found: 87KWMR2
*** Script: Match found: XCR9HD6YV7
*** Script: Match found: C02YJ20PJGH6
*** Script: Match found: X939JQGJXD
*** Script: Match found: C02FN47GMD6R
*** Script: Match found: 3952GC2
*** Script: Match found: 47MSMV2
*** Script: Match found: CNGXC24539
*** Script: Match found: H2WJ10ZSQ6P0
*** Script: Match found: HWMQLQWN6J
*** Script: Match found: C02FK1QEMD6R
*** Script: Match found: 9X5S4X3
*** Script: Match found: 27
*** Script: Match found: C02FN01FML88
*** Script: Match found: YL0JFV5WR4
*** Script: Match found: TWG70RVYW3
*** Script: Match found: C02DG12RMD6R
*** Script: Match found: C02FN46PMD6R
*** Script: Match found: HNRGJB2
*** Script: Match found: Q0V7TKX0WJ
*** Script: Match found: J09YFC45P9
*** Script: Match found: C02M60YSFD59
*** Script: Match found: D4X7RLXQRX
*** Script: Match found: 82
*** Script: Match found: H2WJF0LVQ6P0
*** Script: Match found: 26LLPN3
*** Script: Match found: VM2T6KX1XY
*** Script: Match found: P34MCYKQJR
*** Script: Match found: YQ27FH3XL4
*** Script: Match found: CND8F2S0KG
*** Script: Match found: J29N02V70X
*** Script: Match found: JP26HC747T
*** Script: Match found: FVFHN2CQQ05P
*** Script: Match found: W25X46R95X
*** Script: Match found: WGQXW0XC92
*** Script: Match found: 85JLZD3
*** Script: Match found: C02DT0BGMD6R
*** Script: Match found: C02DP89MMD6R
*** Script: Match found: BBEC.538181..ATI
*** Script: Match found: N0G19WNPJL
*** Script: Match found: C02DRAZLMD6R
*** Script: Match found: VQV04JX5N6
*** Script: Match found: C02F30BPMD6R
*** Script: Match found: Y6GCXTLJ7K
*** Script: Match found: R9NFP069VC
*** Script: Match found: 8DGTLS1
*** Script: Match found: JFX6XM43VJ
*** Script: Match found: H2WJJ010Q6P0
*** Script: Match found: PJY9V3HX3T
*** Script: Match found: G7DGMFWJKP
*** Script: Match found: CQ1FTP6KF4
*** Script: Match found: Q7V5H7LPWX
*** Script: Match found: HQM217L09T
*** Script: Match found: QMFWQ425XH
*** Script: Match found: C02G37NUMD6R
*** Script: Match found: V9TT6G7QF1
*** Script: Match found: DD136120226006
*** Script: Match found: NNFGP09G6K
*** Script: Match found: C07QM0A7G1J1
*** Script: Match found: WF4219TK76
*** Script: Match found: C1MPJ6MAG944
*** Script: Match found: JJ2444N3X2
*** Script: Match found: L7QD9LFH12
*** Script: Match found: LVL49RCXL2
*** Script: Match found: WMAZA8295008
*** Script: Match found: C02MD323FD59
*** Script: Match found: 81
*** Script: Match found: HTHQLVVNH7
*** Script: Match found: YVP2H639W3
*** Script: Match found: XP4Y2T97K7
*** Script: Match found: H2WJF0L3Q6P0
*** Script: Match found: H2WJF1GBQ6P0
*** Script: Match found: R59T3C2J4X
*** Script: Match found: CNDX247497
*** Script: Match found: YY39QGJ4N4
*** Script: Match found: XFMGVF499W
*** Script: Match found: V43WP9RXHY
*** Script: Match found: C02FN46AMD6R
*** Script: Match found: CJ4RYQ7WCY
*** Script: Match found: XN65G6X3HT
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: 4BJD2Z3
*** Script: Match found: JMJ6DY4W39
*** Script: Match found: C02G7117MD6R
*** Script: Match found: FVFGP4U2Q05N
*** Script: Match found: C02G6132Q05R
*** Script: Match found: 81
*** Script: Match found: YR372XCY39
*** Script: Match found: VJWNVVQM23
*** Script: Match found: M24CQXYTG2
*** Script: Match found: 12D6SN2
*** Script: Match found: C02CK052MD6R
*** Script: Match found: 632015000581
*** Script: Match found: 632016000061
*** Script: Match found: VT090H62D0
*** Script: Match found: M46233YMVP
*** Script: Match found: 80511200093
*** Script: Match found: YDJ2WH97DP
*** Script: Match found: H2WJH0K8Q6P0
*** Script: Match found: R47WH362G6
*** Script: Match found: CN57DF30BP
*** Script: Match found: C02T5195H040
*** Script: Match found: C07QM0A5G1J1
*** Script: Match found: 27
*** Script: Match found: 2DNC3G2
*** Script: Match found: C02KF1D8FFT4
*** Script: Match found: 9TF6WW1
*** Script: Match found: 27
*** Script: Match found: YK9DN2P6HG
*** Script: Match found: CND9D4GB4R
*** Script: Match found: FNHT6M39TH
*** Script: Match found: R4NY0W029P
*** Script: Match found: KT2HCWC091
*** Script: Match found: 4NZ31Q2
*** Script: Match found: 93N1NV2
*** Script: Match found: QV7VQ0K7D1
*** Script: Match found: FOC1802X1J6
*** Script: Match found: XD23RVW7XM
*** Script: Match found: HPD4YXY42J
*** Script: Match found: 82
*** Script: Match found: FV73QGCXMK
*** Script: Match found: H7GYYDHJ70
*** Script: Match found: 54
*** Script: Match found: H00W2XT72L
*** Script: Match found: H2WF113XQ6NV
*** Script: Match found: PMT2FT9MY9
*** Script: Match found: C02G711DMD6R
*** Script: Match found: H2WJF0FBQ6P0
*** Script: Match found: 7FGZ6S2
*** Script: Match found: HYF4W12DX4
*** Script: Match found: GXRR97F205
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C02LL723FD59
*** Script: Match found: XGCH7RTXLL
*** Script: Match found: C02GM16EMD6R
*** Script: Match found: Y96KFLVXKM
*** Script: Match found: C02G710LMD6R
*** Script: Match found: C02Z22GNLVCF
*** Script: Match found: VG6XF2JXH5
*** Script: Match found: C02DRCY3MD6R
[0:00:00.002] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.019] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: M24L7RD2VP
*** Script: Match found: VRCYVYTQKC
*** Script: Match found: TV5VYXNW9P
*** Script: Match found: CNGCQ88043
*** Script: Match found: C02RT2SFG8WM
*** Script: Match found: Q6P1W6TH9P
*** Script: Match found: CW9F2P46Q0
*** Script: Match found: C02G7113MD6R
*** Script: Match found: C07YD0Y1JYVY
*** Script: Match found: K72M7N6H1J
*** Script: Match found: FC7GWCWFTP
*** Script: Match found: C4ZXTQ3
*** Script: Match found: NHYXFKW6WD
*** Script: Match found: C02G37PGMD6R
*** Script: Match found: 88SGN32
*** Script: Match found: TY7DNQ7952
*** Script: Match found: 10C2F8A
*** Script: Match found: C02DT1FGMD6R
*** Script: Match found: C02GD2HCMD6R
*** Script: Match found: QN2PF6V2D0
*** Script: Match found: C02G711JMD6R
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: J4QJGD7K7Q
*** Script: Match found: JX2L3VXPWD
*** Script: Match found: 81
*** Script: Match found: C02DC0YMML86
*** Script: Match found: 70
*** Script: Match found: V73TC7N1XY
*** Script: Match found: X7D91L64DX
*** Script: Match found: FM2NKVCWJ9
*** Script: Match found: A5C4011118467
*** Script: Match found: F79C07LTXN
*** Script: Match found: CN59NFW0VS
*** Script: Match found: QTF43RP0WP
*** Script: Match found: A61D011004605
*** Script: Match found: MXH5XKXVKX
*** Script: Match found: C02FN46ZMD6R
*** Script: Match found: H244GC2
*** Script: Match found: WQP24TW7KK
*** Script: Match found: T90HJCM90P
*** Script: Match found: C07SN0TXG1J2
*** Script: Match found: 55
*** Script: Match found: A5C4011123823
*** Script: Match found: YRCVW0VP36
*** Script: Match found: GCBHMV2
*** Script: Match found: T6JWK057XM
*** Script: Match found: W9HFWNRF2W
*** Script: Match found: CHKP5S3
*** Script: Match found: W0FLMJ70YG
*** Script: Match found: 1
*** Script: Match found: 6X9XFC2
*** Script: Match found: FVFHJ0YYQ05P
*** Script: Match found: WG7DY66G1F
*** Script: Match found: H2WH30QKQ6P0
*** Script: Match found: DD136120224012
*** Script: Match found: C02GK0HDMD6T
*** Script: Match found: FY621R0Q26
*** Script: Match found: 29
*** Script: Match found: CNBH100389
*** Script: Match found: FVFHJ0ZNQ05P
*** Script: Match found: V46VKTVHWL
*** Script: Match found: HPXYVP37RX
*** Script: Match found: 12Q0S22
*** Script: Match found: C02FF0ESMD6R
*** Script: Match found: WC4KVF4F99
*** Script: Match found: QL6F9RM630
*** Script: Match found: H2WJQ03HQ6P0
*** Script: Match found: C02DG139MD6R
*** Script: Match found: 27
*** Script: Match found: X742HYD9MQ
*** Script: Match found: C5TSMH3
*** Script: Match found: FOC1802U1CR
*** Script: Match found: G37RYL9Q0W
*** Script: Match found: RYQ7MFDWY1
*** Script: Match found: QTJNVW67XL
*** Script: Match found: C02FN46WMD6R
*** Script: Match found: A7PU011007186
*** Script: Match found: C02FLAAEMD6R
*** Script: Match found: G4FKJM2
*** Script: Match found: C02G703JML88
*** Script: Match found: FOC1802Y7C4
*** Script: Match found: 6SSKMV2
*** Script: Match found: FVFF699AQ6LR
*** Script: Match found: C77DPY2
*** Script: Match found: A61H011005971
*** Script: Match found: 86
*** Script: Match found: W4Y7H1JFDH
*** Script: Match found: C02G37KQMD6R
*** Script: Match found: 70
*** Script: Match found: YQY6TJ4LYD
*** Script: Match found: 8VTY373
*** Script: Match found: G7DSYD3
*** Script: Match found: C02FN01TML88
*** Script: Match found: C02FN47EMD6R
*** Script: Match found: YQ167QD6RV
*** Script: Match found: D3C2GC2
*** Script: Match found: 87
*** Script: Match found: P4426Y6T4N
*** Script: Match found: H2WJF0L8Q6P0
*** Script: Match found: JLH214PRY9
*** Script: Match found: P9HK3YPL44
*** Script: Match found: C02TK2GYHF1R
*** Script: Match found: C02FN35JQ05N
*** Script: Match found: QL3WNH7Y7Y
*** Script: Match found: WCKPX0Q0QF
*** Script: Match found: 347GQ73
*** Script: Match found: R46Q71F2PW
*** Script: Match found: C02F734PMD6R
*** Script: Match found: C02G132JMD6R
*** Script: Match found: QN6N07CNV9
*** Script: Match found: FG60PFJXH6
*** Script: Match found: H2WH312QQ6P0
*** Script: Match found: C02DG12ZMD6R
*** Script: Match found: LH6N5VKMXX
*** Script: Match found: LVL49RCXL2
*** Script: Match found: R66907XDGQ
*** Script: Match found: WRFPMF7050
*** Script: Match found: Y33V932GY7
*** Script: Match found: A5AY011012590
*** Script: Match found: TWGDGP42HY
*** Script: Match found: CNDCGB8006
*** Script: Match found: YR4D4LFTXN
*** Script: Match found: JMR6RN2
*** Script: Match found: 792108000013
*** Script: Match found: C02DR3BRMD6R
*** Script: Match found: XD2700PH70
*** Script: Match found: VX1X90G6L7
*** Script: Match found: C02DV1L2MD6R
*** Script: Match found: C02DRAYWMD6R
*** Script: Match found: D25QR09YGQ17
*** Script: Match found: XCKQC5707Q
*** Script: Match found: WC435P694R
*** Script: Match found: D25LG2USF8JC
*** Script: Match found: V0VQ95WJNW
*** Script: Match found: HV29PD67TC
*** Script: Match found: DS/NTW-094TKJ-1280
*** Script: Match found: C02D90PYMD6R
*** Script: Match found: C02DT0V4MD6R
*** Script: Match found: W0WXHL79V2
*** Script: Match found: H2WJF1G8Q6P0
*** Script: Match found: X27VXVN77V
*** Script: Match found: Y0H993CQV2
*** Script: Match found: Q1W1Q0QXGC
*** Script: Match found: VWFYCQQJW6
*** Script: Match found: C02DC8B3MD6R
*** Script: Match found: P7HFW2TXGC
*** Script: Match found: MQTXD0YJXP
*** Script: Match found: 81
*** Script: Match found: QVMQQWJKTM
*** Script: Match found: VF5293F41X
*** Script: Match found: C02G711BMD6R
*** Script: Match found: 85
*** Script: Match found: H2WJF04AQ6P0
*** Script: Match found: 18
*** Script: Match found: JH6HF4V264
*** Script: Match found: FX6QK00P6F
*** Script: Match found: PXY29QKJJM
*** Script: Match found: VM9XDH2CX2
*** Script: Match found: WU2Q10076150
*** Script: Match found: 63MSMV2
*** Script: Match found: 7HDKJM2
*** Script: Match found: W1JQCJWFD9
*** Script: Match found: C02DJ0NKMD6R
*** Script: Match found: 70.L1XX.801169..TWCC
*** Script: Match found: 3Y3SVV3
*** Script: Match found: C02RT2PKG8WM
*** Script: Match found: H3KW67P59R
*** Script: Match found: A61H011006924
*** Script: Match found: C07SN0TXG1J2
*** Script: Match found: GQ65900MR6
*** Script: Match found: C02GD0E4ML7M
*** Script: Match found: YV7CYQ5K7M
*** Script: Match found: C02FF1TNMD6T
*** Script: Match found: FVFHJ0ZTQ05P
*** Script: Match found: F5V2MD4G9X
*** Script: Match found: FM5VBY3
*** Script: Match found: C02G7115MD6R
*** Script: Match found: WPWR49QT25
*** Script: Match found: C07YH30BJYW0
[0:00:00.004] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.016] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: YHY77N47HW
*** Script: Match found: C02FN01HML88
*** Script: Match found: A5C4011110994
*** Script: Match found: R6XVJR7740
*** Script: Match found: KPD46NG634
*** Script: Match found: XDDXP21721
*** Script: Match found: C02DG12TMD6R
*** Script: Match found: 20
*** Script: Match found: 632015000580
*** Script: Match found: XL6NHLH2RF
*** Script: Match found: TH92JJ9H2G
*** Script: Match found: WMHW9GWRXT
*** Script: Match found: JCWQFX6WL6
*** Script: Match found: TR4JR2N9RR
*** Script: Match found: C02TG07ZGY6N
*** Script: Match found: 70
*** Script: Match found: CNBCK8Z133
*** Script: Match found: 9FWTBY3
*** Script: Match found: 255H4E317P260729
*** Script: Match found: WGKXJGXNQM
*** Script: Match found: TNVTVKKWMY
*** Script: Match found: C02GJ0TJMD6R
*** Script: Match found: NX7JQMGKN1
*** Script: Match found: D25XV7U1J1GQ
*** Script: Match found: VWXWFCV7WV
*** Script: Match found: C02FN46RMD6R
*** Script: Match found: 85
*** Script: Match found: JJM4H62FDH
*** Script: Match found: PT9DXWXWXP
*** Script: Match found: 012076570857
*** Script: Match found: IUEC.769364.ATI
*** Script: Match found: C02QJ3PHG8WM
*** Script: Match found: K2M5F6HY9G
*** Script: Match found: QM407WGJGV
*** Script: Match found: MT991G6V6D
*** Script: Match found: W76HJMV43P
*** Script: Match found: Y5HYTXR5G9
*** Script: Match found: 1007P12
*** Script: Match found: C02FN5KCMD6R
*** Script: Match found: Y49TGR6VWY
*** Script: Match found: 31KKJ72
*** Script: Match found: QD3YPVF3V7
*** Script: Match found: C07S80KCG1J1
*** Script: Match found: X676T41KGF
*** Script: Match found: C07XKVHBJYVW
*** Script: Match found: C02FD6JDQ05N
*** Script: Match found: R4MD21V7FY
*** Script: Match found: VNB8H3416G
*** Script: Match found: C02G6133Q05R
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C02G711GMD6R
*** Script: Match found: FVFHJ0ZEQ05P
*** Script: Match found: 70
*** Script: Match found: BCPPSQ2
*** Script: Match found: LVVXJ5F6LX
*** Script: Match found: QX7MCYFKQH
*** Script: Match found: 54
*** Script: Match found: DMGMC671F1
*** Script: Match found: X3XX36G2YK
*** Script: Match found: T0WFYX9C7N
*** Script: Match found: NC2X921FGP
*** Script: Match found: W7PW6LC743
*** Script: Match found: C02KJ0MTFFT4
*** Script: Match found: 4RBWJ02
*** Script: Match found: C02G710KMD6R
*** Script: Match found: 95
*** Script: Match found: PJVHL0FR9N
*** Script: Match found: C02DG1LXMD6T
*** Script: Match found: C02G90A8MD6R
*** Script: Match found: H2WJH05CQ6P0
*** Script: Match found: C02FN471MD6R
*** Script: Match found: H2WJF0F7Q6P0
*** Script: Match found: C02FK1D2MD6R
*** Script: Match found: HFF996719T
*** Script: Match found: PYJY09Q43F
*** Script: Match found: AA2M011006164
*** Script: Match found: PVPJHGKJ23
*** Script: Match found: C02G37P2MD6R
*** Script: Match found: WCAV55658037
*** Script: Match found: JF5VBY3
*** Script: Match found: VNB3S06397
*** Script: Match found: 721828000008
*** Script: Match found: G17DP9P9DK
*** Script: Match found: FY6LM64076
*** Script: Match found: WJGW62HCVJ
*** Script: Match found: HHG73PJ47Y
*** Script: Match found: C02FN46CMD6R
*** Script: Match found: XRX27M073L
*** Script: Match found: D764M6C627
*** Script: Match found: C02XK19RJGH6
*** Script: Match found: H02MPWLFPF
*** Script: Match found: 10272DP
*** Script: Match found: C02DF2JFMD6R
*** Script: Match found: A5C2011107365
*** Script: Match found: V6954FMYKR
*** Script: Match found: XKRQX6LL6K
*** Script: Match found: C02GJ0TKMD6R
*** Script: Match found: WRW2N2XR6J
*** Script: Match found: H2WJF0CFQ6P0
*** Script: Match found: A7AK011001334
*** Script: Match found: 1VHT3M3
*** Script: Match found: YDY9P4NPJ1
*** Script: Match found: C1FJJRFNJG
*** Script: Match found: NY731YQPWH
*** Script: Match found: 2SS4PX2
*** Script: Match found: TTM271500AC
*** Script: Match found: Y6Q5CQ03PJ
*** Script: Match found: C02DG12MMD6R
*** Script: Match found: C02G37KPMD6R
*** Script: Match found: GWP0D42
*** Script: Match found: NYQR3GPL6W
*** Script: Match found: FV34GC2
*** Script: Match found: C02ZK3ZNLVDQ
*** Script: Match found: 81
*** Script: Match found: K4GQY007L5
*** Script: Match found: 9MQ5QN2
*** Script: Match found: XL4JY3DJRP
*** Script: Match found: T34T59VR4K
*** Script: Match found: C02G711FMD6R
*** Script: Match found: C02VL20PHTDF
*** Script: Match found: C02DT2V0ML7L
*** Script: Match found: C02G711HMD6R
*** Script: Match found: C02GJ0TQMD6R
*** Script: Match found: N0G9369P6K
*** Script: Match found: FVFGH5DMQ05P
*** Script: Match found: FOC1802Y7BG
*** Script: Match found: G0X9VHXJ07
*** Script: Match found: C02XV441JGH6
*** Script: Match found: FHY29GCQ5P
*** Script: Match found: FHPPSQ2
*** Script: Match found: C02F51SKML85
*** Script: Match found: 0
*** Script: Match found: C02G37M3MD6R
*** Script: Match found: H2WHV0TNQ6P0
*** Script: Match found: 3Y4S0G2
*** Script: Match found: 4QVCP72
*** Script: Match found: C02FN01TML88
*** Script: Match found: NY694GQXKD
*** Script: Match found: C02ZQ7VVMD6R
*** Script: Match found: B3DD7Y2
*** Script: Match found: 1007P12
*** Script: Match found: 6X9XFC2
*** Script: Match found: HLHYNK3
*** Script: Match found: C02G37NPMD6R
*** Script: Match found: Y6DXMFH63K
*** Script: Match found: QQDCPWVWGT
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C07DC00APJJ9
*** Script: Match found: C02G37NXMD6R
*** Script: Match found: C02FL4KMMD6R
*** Script: Match found: KQT4W4XQPK
*** Script: Match found: 4ZS7R53
*** Script: Match found: A4Y4011021594
*** Script: Match found: H2WHV0EFPJJ9
*** Script: Match found: RVQDT4GYYG
*** Script: Match found: C02G7110MD6R
*** Script: Match found: C02G37PCMD6R
*** Script: Match found: XDVHMFJ6RF
*** Script: Match found: C163HQJPGF
*** Script: Match found: C02DG12YMD6R
*** Script: Match found: 81
*** Script: Match found: C07S80L3G1J1
*** Script: Match found: C02FN2HHMD6T
*** Script: Match found: 4H5VBY3
*** Script: Match found: A61F011011875
*** Script: Match found: PGD9MJFCQV
*** Script: Match found: YVHWKG1HXG
*** Script: Match found: C02M60YFFD59
*** Script: Match found: C02DR9HWMD6R
*** Script: Match found: FB0MRL1
*** Script: Match found: CTGDWHFJ0L
*** Script: Match found: NMFWGC76H4
*** Script: Match found: C02GK0QJMD6T
*** Script: Match found: 69B0R72
*** Script: Match found: C02DQ27TMD6R
*** Script: Match found: HK7J33GMVQ
*** Script: Match found: C02XK10XJHD3
*** Script: Match found: M4N4D7X343
[0:00:00.002] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.014] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: HL9XQT2R03
*** Script: Match found: FK2CXYRWV4
*** Script: Match found: CPYR9Y2
*** Script: Match found: H2WJF048Q6P0
*** Script: Match found: GGX5M4XMPP
*** Script: Match found: QWTGY41WGM
*** Script: Match found: BZZTBY3
*** Script: Match found: C02FN47PMD6R
*** Script: Match found: C02DR9WEMD6R
*** Script: Match found: F0VQ0FHCYF
*** Script: Match found: D25NM00EF8J5
*** Script: Match found: C02DRAZ3MD6R
*** Script: Match found: D25WK06RJ1GQ
*** Script: Match found: C02TF7M7GTFM
*** Script: Match found: 82
*** Script: Match found: 80
*** Script: Match found: FOC1752X04X
*** Script: Match found: C02G703AML88
*** Script: Match found: GGK372W647
*** Script: Match found: G4YVW04QDT
*** Script: Match found: 29
*** Script: Match found: WD7V00X2NH
*** Script: Match found: XHLXYTR20X
*** Script: Match found: R77NTP9265
*** Script: Match found: KP4506QRHC
*** Script: Match found: 81
*** Script: Match found: C07FN1QQQ6P0
*** Script: Match found: D25RH01WGQ17
*** Script: Match found: WM6Y4L4V3F
*** Script: Match found: C02FN01QML88
*** Script: Match found: C02M60WPFD59
*** Script: Match found: QQT6KM7PFD
*** Script: Match found: H2WH30U0Q6P0
*** Script: Match found: KXQ37HR4YG
*** Script: Match found: C02F959EMD6R
*** Script: Match found: 20
*** Script: Match found: HD2NQPJ21M
*** Script: Match found: C02G37KRMD6R
*** Script: Match found: C02YH3EUJHD3
*** Script: Match found: C02NQ05HG3QD
*** Script: Match found: C02G710NMD6R
*** Script: Match found: GY75P67WH9
*** Script: Match found: C02MD325FD59
*** Script: Match found: 12YLR22
*** Script: Match found: H57MXH6374
*** Script: Match found: ESRIINC-1
*** Script: Match found: C02FN47RMD6R
*** Script: Match found: DH85VV3
*** Script: Match found: XVFKYCT4K3
*** Script: Match found: GTF6WW1
*** Script: Match found: H2WG30Y0Q6P0
*** Script: Match found: PMJPL2LK71
*** Script: Match found: CNRXJ84620
*** Script: Match found: 2L1WBY3
*** Script: Match found: CNDF112327
*** Script: Match found: C02FJ3T9MD6R
*** Script: Match found: C07YD0YEJYVY
*** Script: Match found: GX5YY4Y17H
*** Script: Match found: 96
*** Script: Match found: C02DG12LMD6R
*** Script: Match found: R3K0G9N2FY
*** Script: Match found: 41Q9LQ2
*** Script: Match found: W6YQ0NJ63P
*** Script: Match found: 84
*** Script: Match found: C02MD3CEFD59
*** Script: Match found: 4P041Q2
*** Script: Match found: Y9J5W3T5W0
*** Script: Match found: RPQCV4QNW4
*** Script: Match found: A5C4011117186
*** Script: Match found: C02F72UEML85
*** Script: Match found: WD9NNXXFQ2
*** Script: Match found: 8J1HK13
*** Script: Match found: H2WJF0LQQ6P0
*** Script: Match found: C02XJ4EBJGH6
*** Script: Match found: C02DRCN8MD6R
*** Script: Match found: A5C4011122489
*** Script: Match found: C02W52WQHTDF
*** Script: Match found: C02M60XGFD59
*** Script: Match found: C02FN5LUMD6R
*** Script: Match found: C07YH30BJYW0
*** Script: Match found: C02GJ0TUMD6R
*** Script: Match found: W63HPX79D2
*** Script: Match found: C239L33
*** Script: Match found: FOC1802U1E3
*** Script: Match found: XCR9HD6YV7
*** Script: Match found: F194C69FM9
*** Script: Match found: FVFGP4ZQQ05N
*** Script: Match found: C02RF1AGG8WM
*** Script: Match found: C02G37KSMD6R
*** Script: Match found: R27CYR9CYP
*** Script: Match found: XX7713KYQ5
*** Script: Match found: VNB3Y52070
*** Script: Match found: DL1WBY3
*** Script: Match found: W7H0FPDW2H
*** Script: Match found: 4P131Q2
*** Script: Match found: C02G711CMD6R
*** Script: Match found: P4K7YF3P34
*** Script: Match found: JD26M4N9N9
*** Script: Match found: PG94CFX2HP
*** Script: Match found: C02RV22CG8WM
*** Script: Match found: C02DG12MMD6R
*** Script: Match found: XFMG6QRYV6
*** Script: Match found: Y57RJ2V7X4
*** Script: Match found: W4TWKHK40W
*** Script: Match found: YDQ1GD9N4R
*** Script: Match found: 90
*** Script: Match found: C02FN46JMD6R
*** Script: Match found: JD7N0QJ2C7
*** Script: Match found: JPW2K2YWYL
*** Script: Match found: KVQ6GLF7G9
*** Script: Match found: JXRRVV3
*** Script: Match found: C07S80JFG1J1
*** Script: Match found: 1420P73
*** Script: Match found: BBYF.103372..ATI
*** Script: Match found: 82
*** Script: Match found: C02DG136MD6R
*** Script: Match found: XC2CW7T32M
*** Script: Match found: L5J3WRRW2H
*** Script: Match found: QNRY4359XM
*** Script: Match found: 3QZ5GH2
*** Script: Match found: 26
*** Script: Match found: VTQ0WGN4LD
*** Script: Match found: 90
*** Script: Match found: 564W8B3
*** Script: Match found: 1-80-119056
*** Script: Match found: FVFHJ0ZFQ05P
*** Script: Match found: DNBLYY2
*** Script: Match found: VNXV9WV0MX
*** Script: Match found: 20
*** Script: Match found: QXX7F023XH
*** Script: Match found: C02FG13XMD6R
*** Script: Match found: TKHYJPFJ2D
*** Script: Match found: VFJ7LN9264
*** Script: Match found: H2WH30M7Q6P0
*** Script: Match found: KX097DJFY3
*** Script: Match found: Y2N32CVM6J
*** Script: Match found: HNV34X5679
*** Script: Match found: H2WJF0LCQ6P0
*** Script: Match found: 4X1YBY3
*** Script: Match found: LL7DL2K4NT
*** Script: Match found: XRH4H2NQ0L
*** Script: Match found: FOC1802U1EJ
*** Script: Match found: P4G639VY94
*** Script: Match found: PKGW671JPG
*** Script: Match found: H2WJF0WKQ6P0
*** Script: Match found: TH95D1T16P
*** Script: Match found: V47L099XK4
*** Script: Match found: C02DQ04HML86
*** Script: Match found: H2WHJ20SQ6NV
*** Script: Match found: VN7W9DF6XM
*** Script: Match found: C02NQ01AG3QD
*** Script: Match found: C02G6131Q05R
*** Script: Match found: N9WY499521
*** Script: Match found: DKKKN32
*** Script: Match found: Y7HCQC4HT4
*** Script: Match found: CXJM60N006
*** Script: Match found: 442043635
*** Script: Match found: T2QQ4MH656
*** Script: Match found: FVFHJ2TSQ05P
*** Script: Match found: GXH94097XM
*** Script: Match found: 06F931G
*** Script: Match found: 48Y7T13
*** Script: Match found: W2MVF673M9
[0:00:00.003] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: KG6DG3J6YQ
*** Script: Match found: AUA343513
*** Script: Match found: X1HJKYF6LD
*** Script: Match found: R5HQ5642RN
*** Script: Match found: 5TF6WW1
*** Script: Match found: C02FN605MD6R
*** Script: Match found: C02CJ075LVDM
*** Script: Match found: D56W2HC4Q2
*** Script: Match found: CXDCQ423TH
*** Script: Match found: NC3W1746P9
*** Script: Match found: C02G7037ML88
*** Script: Match found: 94
*** Script: Match found: C02QW11NG8WM
*** Script: Match found: Y1VX5Y09RG
*** Script: Match found: J7C16RJKWX
*** Script: Match found: 55
*** Script: Match found: 10272DP
*** Script: Match found: C02FL9MQMD6R
*** Script: Match found: 82
*** Script: Match found: CPH7NQF12D
*** Script: Match found: C07FN1GPQ6P0
*** Script: Match found: 5CJD2Z3
*** Script: Match found: C02G711EMD6R
*** Script: Match found: C02FN472MD6R
*** Script: Match found: N1603P440N
*** Script: Match found: C02VL2YBHTDF
*** Script: Match found: C02KJ1QFFFT4
*** Script: Match found: C02FL2USMD6R
*** Script: Match found: HVY22H04RK
*** Script: Match found: RNJM62FHYH
*** Script: Match found: H3HN4X0MWN
*** Script: Match found: C02RG35XG8WM
*** Script: Match found: BBYF.102335..ATI
*** Script: Match found: A5C4011114438
*** Script: Match found: V060HYF2TM
*** Script: Match found: C02FN47TMD6R
*** Script: Match found: NKXQ7XHP3Q
*** Script: Match found: VM294WW4WH
*** Script: Match found: CNGCF8W0M3
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: JL7TJ616XD
*** Script: Match found: A7PU011009096
*** Script: Match found: DJCJJM2
*** Script: Match found: 2UA7062FT3
*** Script: Match found: C02DG134MD6R
*** Script: Match found: V5623T5HJR
*** Script: Match found: C02GH3SHMD6R
*** Script: Match found: 4TF6WW1
*** Script: Match found: PH7G66GYQR
*** Script: Match found: FVFGP4YAQ05N
*** Script: Match found: C02JW0ZDDKQ5
*** Script: Match found: QTYYDJ9VXY
*** Script: Match found: FOC1802U1E0
*** Script: Match found: 7HCKXD3
*** Script: Match found: C02G7116MD6R
*** Script: Match found: N42724D69R
*** Script: Match found: C02YJ0W0JHD3
*** Script: Match found: C02G711MMD6R
*** Script: Match found: D659R4DY7H
*** Script: Match found: A7PU011005282
*** Script: Match found: 7CWXBY3
*** Script: Match found: FXXHGXJ67R
*** Script: Match found: NXWFPRH7F5
*** Script: Match found: G2M0XVFTVH
*** Script: Match found: CXH9V5L9JY
*** Script: Match found: C02YH3ETJHD3
*** Script: Match found: BKBDR73
*** Script: Match found: C02D11U3MD6R
*** Script: Match found: 81
*** Script: Match found: 82
*** Script: Match found: 64167FB9AE07
*** Script: Match found: 33PMQN2
*** Script: Match found: Y13790Q09H
*** Script: Match found: XLLQ4NQWL3
*** Script: Match found: NXPYYHT4JH
*** Script: Match found: AJ101802
*** Script: Match found: 97
*** Script: Match found: 20
*** Script: Match found: C02GJ3B8MD6R
*** Script: Match found: C02FN47CMD6R
*** Script: Match found: 5CZBC42
*** Script: Match found: C02G40JBMD6R
*** Script: Match found: H2WJH0CVQ6P0
*** Script: Match found: 49QYQQ2
*** Script: Match found: CND8F7QB1Z
*** Script: Match found: VWFYCQQJW6
*** Script: Match found: 97
*** Script: Match found: R12XJR3TDW
*** Script: Match found: D8PFHR2
*** Script: Match found: FVFGP4T6Q05N
*** Script: Match found: W4P6X53P3J
*** Script: Match found: GLWXBY3
*** Script: Match found: ACC2011020454
*** Script: Match found: CNBG203206
*** Script: Match found: 29
*** Script: Match found: MXCCF4K193
*** Script: Match found: D359YPKJQX
*** Script: Match found: YFG6N79K0G
*** Script: Match found: H2WJF0CEQ6P0
*** Script: Match found: RTH92662RL
*** Script: Match found: VCT138276
*** Script: Match found: X1KXDD2N9C
*** Script: Match found: 4LSLYY2
*** Script: Match found: BA100562
*** Script: Match found: FVFGP4ZJQ05N
*** Script: Match found: M630NJ1QHQ
*** Script: Match found: XJKXCL25FW
*** Script: Match found: 2JWXBY3
*** Script: Match found: D25XV7TYJ1GQ
*** Script: Match found: H3756MYG65
*** Script: Match found: 2UA75217H6
*** Script: Match found: USQC053754
*** Script: Match found: C02GJ3F3MD6R
*** Script: Match found: WQ699FY3Q3
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C02FD5UJMD6R
*** Script: Match found: HC546Q04X5
*** Script: Match found: 4T9WJ02
*** Script: Match found: C02DRAZ7MD6R
*** Script: Match found: XTXJJR9165
*** Script: Match found: G7QQMCQ6PN
*** Script: Match found: FOC1803U04J
*** Script: Match found: KG0X4Q5XHV
*** Script: Match found: K0G4VG9MVR
*** Script: Match found: A61H011010603
*** Script: Match found: GV254VLH3J
*** Script: Match found: G70R03X6R5
*** Script: Match found: 26
*** Script: Match found: C02C32EGLVDM
*** Script: Match found: LF7016WF45
*** Script: Match found: VMF7607PTQ
*** Script: Match found: YRW99396F1
*** Script: Match found: WRNYPYH6J9
*** Script: Match found: 792209000770
*** Script: Match found: C02CK051MD6R
*** Script: Match found: V43WP9RXHY
*** Script: Match found: C02DRCZ3MD6R
*** Script: Match found: 80
*** Script: Match found: NVGVXFDQGL
*** Script: Match found: W09WHTKHXD
*** Script: Match found: CCSXFC2
*** Script: Match found: C02QW121G8WM
*** Script: Match found: WQ1XY70RR9
*** Script: Match found: C02QG2AXG8WM
*** Script: Match found: 4Z8TRQ2
*** Script: Match found: 20
*** Script: Match found: 69B0R72
*** Script: Match found: JVK99Y3
*** Script: Match found: XP9M6MW5J9
*** Script: Match found: W9Q5K6D22C
*** Script: Match found: Q22G12P96R
*** Script: Match found: H1X8L13
*** Script: Match found: CBT5K13
*** Script: Match found: C02G710MMD6R
*** Script: Match found: FOC1802U19J
*** Script: Match found: R43J26V55X
*** Script: Match found: N9019R59C4
*** Script: Match found: C02ZK46YLVDQ
*** Script: Match found: HM9TF6JWMG
*** Script: Match found: FXH0J7T7JC
*** Script: Match found: X9572P7Q9R
*** Script: Match found: C02G88PPMD6R
*** Script: Match found: C02DG137MD6R
*** Script: Match found: C02ZK46YLVDQ
*** Script: Match found: 70
*** Script: Match found: C6W9PY2
*** Script: Match found: 10272CP
*** Script: Match found: 36
*** Script: Match found: C1F739R1XP
*** Script: Match found: JHLFCGJWL3
*** Script: Match found: C02DRAZBMD6R
*** Script: Match found: N6NXHFVY41
*** Script: Match found: VWY0X7K4HD
*** Script: Match found: C02FN462MD6R
*** Script: Match found: C02NQ00JG3QD
*** Script: Match found: N40J0X44DP
*** Script: Match found: 3X74QN2
*** Script: Match found: PQ3PMGKQXL
*** Script: Match found: C07DC00BPJJ9
*** Script: Match found: A7PU011008244
*** Script: Match found: C02D8620MD6R
*** Script: Match found: RYW09CH00D
*** Script: Match found: 46TMFB2
*** Script: Match found: BG6NDY3
*** Script: Match found: C02FN47FMD6R
*** Script: Match found: C02G37P4MD6R
*** Script: Match found: C02CJ0K3LVDM
*** Script: Match found: HJLFK63
*** Script: Match found: M6GD9D52TV
*** Script: Match found: VQ05Q79DCR
*** Script: Match found: H244GC2
*** Script: Match found: C02FP1HKMD6R
*** Script: Match found: 82
*** Script: Match found: G4QT956KXF
*** Script: Match found: C02DQ17BMD6R
*** Script: Match found: PQ7KVXX6HW
*** Script: Match found: M7744X42GP
*** Script: Match found: CJWWV4G1V9
*** Script: Match found: F222106930
*** Script: Match found: FLMC3G2
*** Script: Match found: H2WJF0MRQ6P0
*** Script: Match found: 7CMW373
*** Script: Match found: W1K3G6MGJ2
[0:00:00.002] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: C02WL0C6HTDF
*** Script: Match found: A5C4011117165
*** Script: Match found: HP26XQC29X
*** Script: Match found: C07SN0TWG1J2
*** Script: Match found: 1NBLYY2
*** Script: Match found: CZC14822SF
*** Script: Match found: YRH647FF6N
*** Script: Match found: 2GHKN7ZQ
*** Script: Match found: MXBPMBC216
*** Script: Match found: A7PU011008933
*** Script: Match found: Q2H76P9RNY
*** Script: Match found: XR2R6DP9M3
*** Script: Match found: YKG21H00WW
*** Script: Match found: S227686X6B35081
*** Script: Match found: C2CVBY3
*** Script: Match found: VLWTJVV6KJ
*** Script: Match found: N335020GQM
*** Script: Match found: A7PY011001404
*** Script: Match found: C6V8PY2
*** Script: Match found: N9KQ0H6XD3
*** Script: Match found: C02GJ0TWMD6R
*** Script: Match found: CGF3FN2P6Q
*** Script: Match found: FY4LMV2
*** Script: Match found: C02FN019ML88
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: C02FN47GMD6R
*** Script: Match found: C02DG135MD6R
*** Script: Match found: XC74Y1J9WJ
*** Script: Match found: 71
*** Script: Match found: 80
*** Script: Match found: FVFHJ0Z9Q05P
*** Script: Match found: 55
*** Script: Match found: C02DV359Q05N
*** Script: Match found: C02DK5GRMD6R
*** Script: Match found: R2FQ9F21N2
*** Script: Match found: GM434WCX9C
*** Script: Match found: XJ2YQ4NQ25
*** Script: Match found: M4T6NP27P0
*** Script: Match found: C02D120BMD6R
*** Script: Match found: G44M79PYTV
*** Script: Match found: C02G3219MD6R
*** Script: Match found: JQD3WV3
*** Script: Match found: XQCQ99P9HP
*** Script: Match found: FVG49R76CR
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: FVFHK09SQ05P
*** Script: Match found: WVFNKH95F4
*** Script: Match found: 6VF6WW1
*** Script: Match found: C02G950DMD6R
*** Script: Match found: NR32LKV22M
*** Script: Match found: C02G7791MD6R
*** Script: Match found: H2WJF0KUQ6P0
*** Script: Match found: CX5PYY1
*** Script: Match found: VWNVF1QJH7
*** Script: Match found: JYR3XWYJ3M
*** Script: Match found: YW06X5XVTY
*** Script: Match found: J48D2J3
*** Script: Match found: Q6Q74F4LLF
*** Script: Match found: NDCWV3CXM7
*** Script: Match found: C02D117CMD6R
*** Script: Match found: H2WJF0B8Q6P0
*** Script: Match found: CND1G31191
*** Script: Match found: Y2V5L93G5W
*** Script: Match found: C02PJ100G3QP
*** Script: Match found: HX95K13
*** Script: Match found: 15PDLQ2
*** Script: Match found: C02QW1D4G8WM
*** Script: Match found: C71DPY2
*** Script: Match found: JPBCC1D22G
*** Script: Match found: 9ZFBG72
*** Script: Match found: FOC1802X1HW
*** Script: Match found: C02DRAYYMD6R
*** Script: Match found: C02FN47JMD6R
*** Script: Match found: HKDFN32
*** Script: Match found: DD136120225010
*** Script: Match found: FD9V6WRXGJ
*** Script: Match found: 7HDKJM2
*** Script: Match found: 5T85GC2
*** Script: Match found: C02C98MDMD6R
*** Script: Match found: 1TF6WW1
*** Script: Match found: A5C4011117775
*** Script: Match found: MJ09A6MA
*** Script: Match found: YKXXVXGWP1
*** Script: Match found: FVFHJ0ZLQ05P
*** Script: Match found: H2WH60C6PJJ9
*** Script: Match found: HYVJKXQW3H
*** Script: Match found: PV623PYTR6
*** Script: Match found: D0Q19D6MPY
*** Script: Match found: 29
*** Script: Match found: C02G7112MD6R
*** Script: Match found: FXXQ421XYW
*** Script: Match found: XLN642N4QJ
*** Script: Match found: 49QYQQ2
*** Script: Match found: C02DG12JMD6R
*** Script: Match found: JTF6WW1
*** Script: Match found: F4JX8Y3
*** Script: Match found: VWR0X99VP9
*** Script: Match found: Y5F97957VY
*** Script: Match found: C02G37P8MD6R
*** Script: Match found: J4XYQ5J3VX
*** Script: Match found: A7PU011004433
*** Script: Match found: D70GXK2
*** Script: Match found: 70
*** Script: Match found: XLPGH6YC7F
*** Script: Match found: CQ9GKW7GY7
*** Script: Match found: HGGF6GWQGJ
*** Script: Match found: YD6R7QXLXM
*** Script: Match found: K596RQLGDM
*** Script: Match found: C02FN01RML88
*** Script: Match found: FOC1803Y0X3
*** Script: Match found: JC4S9Y2
*** Script: Match found: C02ZK40NLVDQ
*** Script: Match found: A7PU011006133
*** Script: Match found: C02Z70D4LVDM
*** Script: Match found: C02G711NMD6R
*** Script: Match found: TYQDKGMGJ0
*** Script: Match found: 81
*** Script: Match found: C02F73UWMD6R
*** Script: Match found: 87
*** Script: Match found: C02DR858MD6R
*** Script: Match found: DNBLYY2
*** Script: Match found: C02QH2PLG8WM
*** Script: Match found: RD2YDWYD72
*** Script: Match found: NXQ70QJD91
*** Script: Match found: C1FJJRFNJG
*** Script: Match found: H2WJF0B3Q6P0
*** Script: Match found: CCZRRF2
*** Script: Match found: FVFGV1YDQ05Q
*** Script: Match found: C02DG131MD6R
*** Script: Match found: W4FQD4L7W7
*** Script: Match found: C02FN01KML88
*** Script: Match found: 51
*** Script: Match found: CNBH111369
*** Script: Match found: C02G711PMD6R
*** Script: Match found: JRLKMV2
*** Script: Match found: H27F3Y4NX3
*** Script: Match found: C1MPJ6MCG944
*** Script: Match found: JAE214104V4
*** Script: Match found: JPRC98Z07Q
*** Script: Match found: 9VF6WW1
*** Script: Match found: T749VW149Y
*** Script: Match found: C02G703HML88
*** Script: Match found: H2WFM16NPJJ9
*** Script: Match found: V0M4D2KXXV
*** Script: Match found: RTHHGX6JH1
*** Script: Match found: 1
*** Script: Match found: YVXJL7V1Q3
*** Script: Match found: LD79VTYYV0
*** Script: Match found: 5QKFZV1
*** Script: Match found: FSF6WW1
*** Script: Match found: GJ6T46W4VM
*** Script: Match found: C02DQ201MD6R
*** Script: Match found: CDWXBY3
*** Script: Match found: C02FN5KFMD6R
*** Script: Match found: C02FN01DML88
*** Script: Match found: WV56YXP0GG
*** Script: Match found: H2WH30MEQ6P0
*** Script: Match found: PC7R1PXJ2N
*** Script: Match found: 346SHM2
*** Script: Match found: C02QG2AXG8WM
*** Script: Match found: C02DRAYXMD6R
*** Script: Match found: P047LKXLG4
*** Script: Match found: NX4V0QWFM2
*** Script: Match found: PC4CQDHJ06
*** Script: Match found: 4RLQJ02
*** Script: Match found: C02G710ZMD6R
*** Script: Match found: T9WC6LGXFJ
*** Script: Match found: C02NPB98G3QD
*** Script: Match found: A7AK011002770
*** Script: Match found: YYXFXG779T
*** Script: Match found: FOC1803U05H
*** Script: Match found: H2WJF0CDQ6P0
*** Script: Match found: C02DQ27SMD6R
*** Script: Match found: H12DHJYZPN7C
*** Script: Match found: 2GFZBY3
*** Script: Match found: JK216FFHL2
*** Script: Match found: B9Q5K13
[0:00:00.003] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: FOC1749Y1E5
*** Script: Match found: R9FR4NMW9L
*** Script: Match found: 85
*** Script: Match found: R6YPF0JWY9
*** Script: Match found: C02G710XMD6R
*** Script: Match found: 1
*** Script: Match found: HY55264KHY
*** Script: Match found: J9D4YXM36F
*** Script: Match found: 4QN6WW1
*** Script: Match found: GK7H9R3
*** Script: Match found: A7PU011009169
*** Script: Match found: HP1VYVYW24
*** Script: Match found: N96J2X9N9X
*** Script: Match found: 7HCKXD3
*** Script: Match found: C02XV42XJGH6
*** Script: Match found: V2HXV09914
*** Script: Match found: C02FN477MD6R
*** Script: Match found: 5V4PL33
*** Script: Match found: 29
*** Script: Match found: C02ZX4WWMD6T
*** Script: Match found: JPBCC520QB
*** Script: Match found: A5C4011121722
*** Script: Match found: C02NQ0DLG3QD
*** Script: Match found: C02KJ1R2FFT4
*** Script: Match found: H2WHP0K8Q6NW
*** Script: Match found: C02XT3ZNJGH5
*** Script: Match found: C02XK11WJHD3
*** Script: Match found: L023TDQ6QF
*** Script: Match found: JM6G9R7MLV
*** Script: Match found: X2C4C02NJK
*** Script: Match found: YJXRL2YGQM
*** Script: Match found: 20
*** Script: Match found: C02G711QMD6R
*** Script: Match found: GQD616HXGK
*** Script: Match found: H2WJF0LXQ6P0
*** Script: Match found: PTPCGGWG62
*** Script: Match found: CND0353DFM
*** Script: Match found: JLC72TJ25D
*** Script: Match found: C02YJ2KZJGH6
*** Script: Match found: P2JWT700DK
*** Script: Match found: 10JN6Y2
*** Script: Match found: C02GD0DUML7M
*** Script: Match found: 5CG0286P3M
*** Script: Match found: YQJLY494RT
*** Script: Match found: VLW6JG6CQQ
*** Script: Match found: H2WJF0LDQ6P0
*** Script: Match found: H2WJF0MZQ6P0
*** Script: Match found: V3W2NX7W5G
*** Script: Match found: C02DT1FTMD6R
*** Script: Match found: 49.HMXX.000863.COXC
*** Script: Match found: FWPVHW532P
*** Script: Match found: GRWSFC2
*** Script: Match found: PMHFW0JR9J
*** Script: Match found: H2WG72SBQ6NY
*** Script: Match found: GW4TV3W494
*** Script: Match found: QTLCFH7WML
*** Script: Match found: C02FN01NML88
*** Script: Match found: C02FN47LMD6R
*** Script: Match found: 64167FB892D8
*** Script: Match found: HXYH4756DN
*** Script: Match found: T5W5C29D4Q
*** Script: Match found: WGLC9CR32W
*** Script: Match found: C02DG133MD6R
*** Script: Match found: CND8F1Q628
*** Script: Match found: FW5C7VC2YF
*** Script: Match found: 5VF6WW1
*** Script: Match found: WWY3Y2KWRL
*** Script: Match found: 3VY03W2
*** Script: Match found: RD6C49F7KF
*** Script: Match found: CNDCGB80TT
*** Script: Match found: P56YM07T6X
*** Script: Match found: 80
*** Script: Match found: QTFCU30210014
*** Script: Match found: XCRHH67XFH
*** Script: Match found: C07J106DPJJ9
*** Script: Match found: 82
*** Script: Match found: FVFHJ0ZMQ05P
*** Script: Match found: XH02X56VD2
*** Script: Match found: C4Q713567
*** Script: Match found: GW2VWWR7J0
*** Script: Match found: C02FC3XPMD6R
*** Script: Match found: 77GCY33
*** Script: Match found: 6KQ2GC2
*** Script: Match found: GK9721N7JW
*** Script: Match found: C02YJ2HPJGH6
*** Script: Match found: 48Y9T13
*** Script: Match found: P9T0H2WQN6
*** Script: Match found: JGGRZD3
*** Script: Match found: FTF6WW1
*** Script: Match found: YHX7F6K7Q0
*** Script: Match found: FOC1803U001
*** Script: Match found: D5737JT72L
*** Script: Match found: K640YX516L
*** Script: Match found: NLFYFVF091
*** Script: Match found: HPN6WW1
*** Script: Match found: C02FN474MD6R
*** Script: Match found: VL99NG0G63
*** Script: Match found: VGPHWQXGTC
*** Script: Match found: C02FN46UMD6R
*** Script: Match found: F141M63
*** Script: Match found: C07D92FPPJJ9
*** Script: Match found: R40KN7M70K
*** Script: Match found: TXF7NKW7QG
*** Script: Match found: X6QNQG6LM9
*** Script: Match found: C02G37NSMD6R
*** Script: Match found: V4H3HJC6QC
*** Script: Match found: FOC1802Y2AE
*** Script: Match found: C02S33EMG8WM
*** Script: Match found: PN2M2CH6XD
*** Script: Match found: WX7R466T2H
*** Script: Match found: H2CG6T07Q2
*** Script: Match found: 5X8DR73
*** Script: Match found: 9BJD2Z3
*** Script: Match found: VT4GK66DQL
*** Script: Match found: C02FN5KVMD6R
*** Script: Match found: C02FN604MD6R
*** Script: Match found: H2WJQ054Q6P0
*** Script: Match found: 000000000000000000000000000000000000000000047
*** Script: Match found: T63044Y1VX
*** Script: Match found: VVVQN4DX4N
*** Script: Match found: FM2M934YX3
*** Script: Match found: Y62CV2KE
*** Script: Match found: C07DC0EMPJJ9
*** Script: Match found: A61H011006926
*** Script: Match found: C02FN5KDMD6R
*** Script: Match found: FOC1748Z56F
*** Script: Match found: BKKBRQ3
*** Script: Match found: XQNWQXD46J
*** Script: Match found: C07YD0YDJYVY
*** Script: Match found: JN6349GCFD
*** Script: Match found: P7X36VYY24
*** Script: Match found: 2GHLZQ3M
*** Script: Match found: C02FN47NMD6R
*** Script: Match found: DD136120226002
*** Script: Match found: H2WFK02APJJ9
*** Script: Match found: QTFCU3021003F
*** Script: Match found: A7R0017013089
*** Script: Match found: 720VBY3
*** Script: Match found: C02G7114MD6R
*** Script: Match found: J363YY3YXM
*** Script: Match found: H2WJH06TQ6P0
*** Script: Match found: JPBFR11456
*** Script: Match found: C02DRCN9MD6R
*** Script: Match found: XRQY29QT54
*** Script: Match found: Y6QQCH4QRX
*** Script: Match found: A61H011011320
*** Script: Match found: 442593696
*** Script: Match found: C02GJ0TSMD6R
*** Script: Match found: C02FN467MD6R
*** Script: Match found: 70
*** Script: Match found: C02DRAZXMD6R
*** Script: Match found: C02JJHKJ77
*** Script: Match found: XGWMHYHGD2
*** Script: Match found: CFVP37GWCJ
*** Script: Match found: P211FQCLY6
*** Script: Match found: K6L61LC6TQ
*** Script: Match found: 0643F4A
*** Script: Match found: HT6D9RLVJV
*** Script: Match found: VX910JC2FR
*** Script: Match found: C02G710TMD6R
*** Script: Match found: 4Z8TRQ2
*** Script: Match found: C02G37PBMD6R
*** Script: Match found: 950A9157
[0:00:00.002] Expanding large row block (file.read: alm_asset, 10000 rows, 160000 dataSize)
[0:00:00.016] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: CNDF112387
*** Script: Match found: H6YV0F927G
*** Script: Match found: HCV2X65GXT
*** Script: Match found: H2WH313QQ6P0
*** Script: Match found: DGVJHJN7FX
*** Script: Match found: 81
*** Script: Match found: V7LYVX1WGM
*** Script: Match found: D43CHQQ3YN
*** Script: Match found: LMHG1HWHX5
*** Script: Match found: 440819944
*** Script: Match found: KMQKN93993
*** Script: Match found: 6BLVZH3
*** Script: Match found: G6MC4J7GFT
*** Script: Match found: 70
*** Script: Match found: C02XN4EGJGH6
*** Script: Match found: 4KKQ0Z2
*** Script: Match found: XYW57CJPX7
*** Script: Match found: H2WJH0EGQ6P0
*** Script: Match found: C02GD0DNML7M
*** Script: Match found: C6TCPY2
*** Script: Match found: FRXYQTJ3J0
*** Script: Match found: 27
*** Script: Match found: H2WJF0M6Q6P0
*** Script: Match found: 4P041Q2
*** Script: Match found: H2WHV0U5Q6P0
*** Script: Match found: 87
*** Script: Match found: H7Y02H75H9
*** Script: Match found: C07D92ZBPJJ9
*** Script: Match found: JZM1NV2
*** Script: Match found: XDL7LL7C30
*** Script: Match found: A4Y4011003708
*** Script: Match found: FW0QLX2
*** Script: Match found: A61H011010566
*** Script: Match found: HD65F0WQMT
*** Script: Match found: G16XXYL77H
*** Script: Match found: J6LPY9775Y
*** Script: Match found: C07QM0A2G1J1
*** Script: Match found: HXTJQ6667K
*** Script: Match found: FOC1803X04N
*** Script: Match found: T9G4YDQDX4
*** Script: Match found: 4KKQ0Z2
*** Script: Match found: H2WH30TFQ6P0
*** Script: Match found: QNH3YD06TM
*** Script: Match found: BCWN3132
*** Script: Match found: C02FN464MD6R
*** Script: Match found: 7HDKJM2
*** Script: Match found: C02DC0YPML86
*** Script: Match found: GN5VBY3
*** Script: Match found: 4SF6WW1
*** Script: Match found: FOC1802X1GY
*** Script: Match found: FVFHJ0Z2Q05P
*** Script: Match found: 35TJMV2
*** Script: Match found: R2QKPWY91J
*** Script: Match found: GMXQPVVQTT
*** Script: Match found: C02G703BML88
*** Script: Match found: 99X1L33
*** Script: Match found: FOC1802U1CZ
*** Script: Match found: R37CR46HJ7
*** Script: Match found: C02GJ0TRMD6R
*** Script: Match found: C02C9AHTMD6R
*** Script: Match found: 20
*** Script: Match found: 80511200121
*** Script: Match found: 2MFR4X3
*** Script: Match found: C02FN01AML88
*** Script: Match found: C02C40NTMD6R
*** Script: Match found: C02NQ0DPG3QD
*** Script: Match found: BSF6WW1
*** Script: Match found: JTFJ7MM93Y
*** Script: Match found: P2Q1H72619
*** Script: Match found: A7PU011006104
*** Script: Match found: PV75FHL2DF
*** Script: Match found: NTQPY4M17J
*** Script: Match found: 81
*** Script: Match found: FOC1802Y79N
*** Script: Match found: JPDCDCQ16W
*** Script: Match found: J17YH16L4H
*** Script: Match found: V9T69KQ3CP
*** Script: Match found: 80
*** Script: Match found: C02F959BMD6R
*** Script: Match found: C02CCDNXMD6M
*** Script: Match found: T7RQP9PVDQ
*** Script: Match found: C02FN01BML88
*** Script: Match found: H2WGN1ZRQ6P0
*** Script: Match found: C07SN0TTG1J2
*** Script: Match found: C02FL4UAMD6R
*** Script: Match found: PDY71F02L0
*** Script: Match found: C02FN473MD6R
*** Script: Match found: 1
*** Script: Match found: GSF6WW1
*** Script: Match found: C02DRAZTMD6R
*** Script: Match found: PP2FV5V6FT
*** Script: Match found: KVKXMT99HK
*** Script: Match found: C02FJ3DUMD6R
*** Script: Match found: VQX626XQ2J
*** Script: Match found: C02G37PDMD6R
*** Script: Match found: V4NVG2RCP7
*** Script: Match found: WFX9921JP4
*** Script: Match found: A5C4011115513
*** Script: Match found: D6K7M72
*** Script: Match found: FOC1802U1DT
*** Script: Match found: MJ05VG98
*** Script: Match found: RQ60PJH6JF
*** Script: Match found: 5WN6H62
*** Script: Match found: C07S80L4G1J1
*** Script: Match found: C02GK0QSMD6T
*** Script: Match found: TQ9VFH93D7
*** Script: Match found: THYF7PVWJ9
*** Script: Match found: C02C9AGAMD6R
*** Script: Match found: 6SJFQ53
*** Script: Match found: C02TF3UFGTFM
*** Script: Match found: C02GG2PTMD6R
*** Script: Match found: Q0V7TKX0WJ
*** Script: Match found: 2WVS9Y2
*** Script: Match found: 10272CP
*** Script: Match found: W3WTGV21N9
*** Script: Match found: C02DG12SMD6R
*** Script: Match found: C02DT1FUMD6R
*** Script: Match found: VDGQ0HFWTY
*** Script: Match found: C02GJ1CJML85
*** Script: Match found: C02FF38JMD6T
*** Script: Match found: VT2D7MGK2J
*** Script: Match found: MQHR9G721V
*** Script: Match found: D67D269T7L
*** Script: Match found: FOC1915R28T
*** Script: Match found: C02GC5GGQ05N
*** Script: Match found: C02FN47AMD6R
*** Script: Match found: A7AK011002096
*** Script: Match found: WL7XKF7L44
*** Script: Match found: 44CJ3F3
*** Script: Match found: 7823D0P
*** Script: Match found: C02GJ0TNMD6R
*** Script: Match found: LQHXHP6D91
*** Script: Match found: C02DG12XMD6R
*** Script: Match found: QRYWKPFCYF
*** Script: Match found: PCWCW9F2VQ
*** Script: Match found: H2WH30TBQ6P0
*** Script: Match found: C02DR8HTMD6T
*** Script: Match found: JQ6CQQHR7Q
*** Script: Match found: A5C4011118439
*** Script: Match found: WGJPLQ6YH1
*** Script: Match found: LDW4Q043F1
*** Script: Match found: 81
*** Script: Match found: CNCCDB30HQ
*** Script: Match found: C02GD1Q3Q05N
*** Script: Match found: C02FN47HMD6R
*** Script: Match found: H4492Y332T
*** Script: Match found: C02CK0DFMD6R
*** Script: Match found: C02FC0UJMD6T
*** Script: Match found: LNQ6DK4QP4
*** Script: Match found: YYH2R14V2Q
*** Script: Match found: H2WHR0TMQ6P0
*** Script: Match found: KN2J4GPWGP
*** Script: Match found: QQN4LFHWKP
*** Script: Match found: WV09TP7P7R
*** Script: Match found: JSF6WW1
*** Script: Match found: MLYF.115768..ATI
*** Script: Match found: FVFHJ0YSQ05P
*** Script: Match found: 5CG8125XTL
*** Script: Match found: H2WJF0K6Q6P0
*** Script: Match found: C02DQ1RRMD6R
*** Script: Match found: GW3N2C2XJJ
*** Script: Match found: C02D90W5MD6R
*** Script: Match found: C02F55REMD6R
*** Script: Match found: C02DT1FFMD6R
*** Script: Match found: GG3L1M2
*** Script: Match found: G17CM619TK
*** Script: Match found: C02DH1DMMD6R
*** Script: Match found: C02DC0YNML86
*** Script: Match found: 8CG83335KL
*** Script: Match found: DNQVD9H44P
*** Script: Match found: C02KJ1Q7FFT4
*** Script: Match found: C02FN466MD6R
[0:00:00.002] Expanding large row block (file.read: alm_asset, 7492 rows, 119872 dataSize)
[0:00:00.015] Compacting large row block (file.write: alm_asset 10000 rows 160000 saveSize)
*** Script: Match found: CN0CS02637
*** Script: Match found: BTF6WW1
*** Script: Match found: C02G711KMD6R
*** Script: Match found: KT25FPPVQ0
*** Script: Match found: VTR2410F23
*** Script: Match found: H1959JYT23
*** Script: Match found: 7MN9KD3
*** Script: Match found: 70
*** Script: Match found: W4PJLF95RY
*** Script: Match found: QQ01QJXY0J
*** Script: Match found: C02FN479MD6R
*** Script: Match found: 87KWMR2
*** Script: Match found: FVFHJ2U6Q05P
*** Script: Match found: C02DRCZ8MD6R
*** Script: Match found: C02CK0FJMD6T
*** Script: Match found: N9CJGDH9NQ
*** Script: Match found: KY9QP5P6P0
*** Script: Match found: C02FN5LSMD6R
*** Script: Match found: MG7329P0RT
*** Script: Match found: CNDF245911
*** Script: Match found: N6XWKLGKVF
*** Script: Match found: 3VPR4X3
*** Script: Match found: 86
*** Script: Match found: C2FD3J3
*** Script: Match found: VJ9KMXXWHK
*** Script: Match found: PWFK72FHYR
*** Script: Match found: J69JFVWXHP
*** Script: Match found: CM86CP2
*** Script: Match found: H4C0D3W7F1
*** Script: Match found: N4CYYP4F33
*** Script: Match found: J36WHWYXJ2
*** Script: Match found: 2GQRYD3
*** Script: Match found: 5GZC0N2
*** Script: Match found: A5C4011118473
*** Script: Match found: H2WJF0MYQ6P0
*** Script: Match found: C02YW35RLVDQ
*** Script: Match found: WTWWXL4W5P
*** Script: Match found: C02G703KML88
*** Script: Match found: C02G37P1MD6R
*** Script: Match found: T9GJD2LTWY
*** Script: Match found: GV206WMYY9
*** Script: Match found: QVV6KP2R63
*** Script: Match found: T0YXR59FJD
*** Script: Match found: L9YVWJ5G6C
*** Script: Match found: 3TF6WW1
*** Script: Match found: C02CH2R6JV40
*** Script: Match found: HJQVQMM61W
*** Script: Match found: 81
*** Script: Match found: C02FN460MD6R
*** Script: Match found: FOC1915R23Z
*** Script: Match found: V2QCTP4X15
*** Script: Match found: RQ2T297GXD
*** Script: Match found: QV9W63XL2R
*** Script: Match found: C02YH3EUJHD3
*** Script: Match found: 792209000878
*** Script: Match found: 627WXY2
*** Script: Match found: FOC1803X057
*** Script: Match found: C02DG138MD6R
*** Script: Match found: C02CJ0JZLVDM
*** Script: Match found: A7PU011007166
*** Script: Match found: C02QN21MG8WL
*** Script: Match found: P03T24L2YM
*** Script: Match found: H4TGV1PGPN7C
*** Script: Match found: XRVQWQVV6N
*** Script: Match found: C02FN46GMD6R
*** Script: Match found: Q7XLFJ9TLX
*** Script: Match found: C02C9AP6MD6R
*** Script: Match found: B14650355
*** Script: Match found: 97
*** Script: Match found: 27
*** Script: Match found: YN3LY72LR6
*** Script: Match found: 55
*** Script: Match found: Y5XK9J5F9C
*** Script: Match found: FOC1802X1GK
*** Script: Match found: C02DG12PMD6R
*** Script: Match found: CQ1FTP6KF4
*** Script: Match found: 18
*** Script: Match found: NIT206949
*** Script: Match found: C02G710SMD6R
*** Script: Match found: C02FN018ML88
*** Script: Match found: A90H041002771
*** Script: Match found: A4Y4011006641
*** Script: Match found: C1MRT459H3QK
*** Script: Match found: H2WFL0W3PJJ9
*** Script: Match found: FOC1803U003
*** Script: Match found: WPX47RM61X
*** Script: Match found: C02FN46VMD6R
*** Script: Match found: J0N9QYMXY7
*** Script: Match found: C02G710PMD6R
*** Script: Match found: 4Q56L33
*** Script: Match found: VD907HJP2G
*** Script: Match found: 6TF6WW1
*** Script: Match found: DD136120224014
*** Script: Match found: C02FN469MD6R
*** Script: Match found: C02G83QKMD6R
*** Script: Match found: H2WF10K7Q6P0
*** Script: Match found: BKPZ6S2
*** Script: Match found: C02K80H0FFT4
*** Script: Match found: 6BJD2Z3
*** Script: Match found: AA2J041009708
*** Script: Match found: FOC1802Y30D
*** Script: Match found: CNDG154057
*** Script: Match found: JAE21400372
*** Script: Match found: HCG6VDJKFF
*** Script: Match found: VQK7QH63JQ
*** Script: Match found: XDQ6902RYM
*** Script: Match found: C34NXV3PQW
*** Script: Match found: C07SN0TWG1J2
*** Script: Match found: XL1F3FQXTR
*** Script: Match found: Y14F96YKFG
*** Script: Match found: 2M5VBY3
*** Script: Match found: C07DC06VPJJ9
*** Script: Match found: C02DR9VUMD6R
*** Script: Match found: A5C4011118462
*** Script: Match found: WJKCFYXG32
*** Script: Match found: 2VF6WW1
*** Script: Match found: PKW49PVT7R
*** Script: Match found: CR3HT9MCF6
*** Script: Match found: FT5N1T3
*** Script: Match found: CZC5062QCZ
*** Script: Match found: 5XLF7Y2
*** Script: Match found: XJ7V4VHFFP
*** Script: Match found: A61H011007824
*** Script: Match found: XYVYM92QXT
*** Script: Match found: C02FN46EMD6R
*** Script: Match found: 55
*** Script: Match found: 37SBCP2
*** Script: Match found: HYY2YTVFQQ
*** Script: Match found: C02FP160Q05N
*** Script: Match found: 29
*** Script: Match found: FOC1803U056
*** Script: Match found: 73
*** Script: Match found: GWPWC42
*** Script: Match found: FXNQ4X3
*** Script: Match found: C07SN0U6G1J2
*** Script: Match found: W2X9HCF477
*** Script: Match found: Y4PJ4M2VFY
*** Script: Match found: A5C4011122198
*** Script: Match found: VTJVXFVXYN
*** Script: Match found: C69V76YQR2
*** Script: Match found: KJF9Q0TW9V
// Create a GlideRecord for the 'cmdb_ci' table
var cmdbCiGr = new GlideRecord('cmdb_ci');
cmdbCiGr.addEncodedQuery('sys_class_name=cmdb_ci_computer^serial_numberISNOTEMPTY^assetISEMPTY');
cmdbCiGr.query();

// Create a GlideRecord for the 'alm_asset' table
var almAssetGr = new GlideRecord('alm_asset');
almAssetGr.addEncodedQuery('ci=NULL^serial_numberISNOTEMPTY');
almAssetGr.query();

// Loop through 'alm_asset' records and check for matching serial numbers in 'cmdb_ci'
while (almAssetGr.next()) {
    var serialNumber = almAssetGr.serial_number;

    // Create a new GlideRecord for 'cmdb_ci' and query based on serial number
    var cmdbCiGrBySerial = new GlideRecord('cmdb_ci');
    cmdbCiGrBySerial.addQuery('serial_number', serialNumber);
    cmdbCiGrBySerial.query();

    if (cmdbCiGrBySerial.next()) {
        // Do something with the matching records
        gs.log('Match found: ' + serialNumber);
    }
}
// bisection false position newton rhapson

#include <bits/stdc++.h>
using namespace std;


double func(double a) {
    return 3 * a - cos(a) - 1;
}

double first_derivative(double a) {
    return 3 + sin(a);
}

void bisection() {
    double a, b, c;
    for (int i = -100; i <= 100; i++) {
        if (func(i)* func(i + 1) < 0) {
            a = i, b = i + 1;
            int n = 100;
            while (n--) {
                c = (a + b) / 2;
                if (func(c) == 0)
                    break;
                if (func(a) * func(c) < 0)
                    b = c;
                else if (func(b) * func(c) < 0)
                    a = c;
            }
            cout << c << endl;
        }
    }
}

void false_position_method() {
    double a, b, c;
    for (int i = -100; i <= 100; i++) {
        if (func(i)* func(i + 1) < 0) {
            a = i, b = i + 1;
            int n = 100;
            while (n--) {
                c = (a * func(b) - b * func(a)) / (func(b) - func(a));
                if (func(c) == 0)
                    break;
                if (func(a) * func(c) < 0)
                    b = c;
                else if (func(b) * func(c) < 0)
                    a = c;
            }
            cout << c << endl;
        }
    }
}

void newton_rapson() {
    double a, b = 0;

    for (int i = -100; i <= 100; i++) {
        a = i;
        int n = 10000, f = 0;
        while (n--) {
            if (first_derivative(a) == 0) {
                f = 1;
                break;
            }
            a = a - (func(a) / first_derivative(a));
        }
        if (a != b && f == 0 && abs(a - b) > 0.1)
            cout << a << endl;
        b = a;

    }
}


int main() {
    //bisection();
    //false_position_method();
    newton_rapson();

}



//euler


#include<bits/stdc++.h>
using namespace std;

int main() {
	double x, y, h, n, X;
	cout << "x0 = ";
	cin >> x;
	cout << "y0 = ";
	cin >> y;
	cout << "N = ";
	cin >> n;
	cout << "x = ";
	cin >> X;
	h = (X - x) / n;
	cout << "h :" << h << endl;
	for (int i = 1; i <= n; i++) {
		y = y + h * (3 * x * x + 1);
		cout << "y" << i << " = " << y << endl;
		x += h;
	}
}




//factorization

#include<bits/stdc++.h>
using namespace std;

void file_write() {
    ofstream outf("equations.txt");
    char s[50];
    for (int i = 0; i < 3; i++)
    {
        cin >> s;
        outf << s << endl;
    }
    outf.close();
}

void file_read() {
    ifstream inf;
    inf.open("equations.txt");
    string s;
    int r = 0;
    double mat[3][4];
    while (inf)
    {
        getline(inf, s);
        //cout<<s<<endl;

        int c = 0;
        for (int i = 0; i < s.size(); i++)
        {
            int num = 0, cou = 0, j = i, b, a = 0;
            while (s[i] >= '0' && s[i] <= '9')
            {
                if (s[i - 1] == '-' && cou == 0)
                {
                    a = -1;
                }
                cou++;
                i++;
            }
            while (cou)
            {
                if (a == -1)
                    b = -1 * (s[j] - '0');
                else
                    b = s[j] - '0';
                num += b * pow(10, cou - 1);
                j++;
                cou--;
            }
            if (num != 0)
            {
                mat[r][c] = num;
                c++;
            }

        }
        r++;
    }
    for (int r = 0; r < 3; r++)
    {
        for (int c = 0; c < 4; c++)
        {
            cout << mat[r][c] << " ";
        }
        cout << endl;
    }
    double L[3][3], U[3][3];
    for (int i = 0; i < 3; i++) {
        for (int j = 0; j < 3; j++) {
            L[i][j] = 0;
            U[i][j] = 0;
        }
    }

    L[0][0] = 1;
    L[1][1] = 1;
    L[2][2] = 1;

    U[0][0] = mat[0][0];
    U[0][1] = mat[0][1];
    U[0][2] = mat[0][2];
    L[1][0] = mat[1][0] / mat[0][0];
    U[1][1] = mat[1][1] - mat[1][0] * mat[0][1] / mat[0][0];
    U[1][2] = mat[1][2] - L[1][0] * U[0][2];
    L[2][0] = mat[2][0] / U[0][0];
    L[2][1] = (mat[2][1] - L[2][0] * U[0][1]) / U[1][1];
    U[2][2] = mat[2][2] - L[2][0] * U[0][2] - L[2][1] * U[1][2];

    cout << "L : " << endl;
    for (int r = 0; r < 3; r++)
    {
        for (int c = 0; c < 3; c++)
        {
            cout << L[r][c] << " ";
        }
        cout << endl;
    }
    cout << "U : " << endl;
    for (int r = 0; r < 3; r++)
    {
        for (int c = 0; c < 3; c++)
        {
            cout << U[r][c] << " ";
        }
        cout << endl;
    }

    double y1, y2, y3;
    y1 = mat[0][3];
    y2 = mat[1][3] - y1 * L[1][0];
    y3 = mat[2][3] - y1 * L[2][0] - y2 * L[2][1];
    cout << "y1 = " << y1 << ", y2 = " << y2 << ", y3 = " << y3 << endl;

    double x, y, z;
    z = y3 / U[2][2];
    y = (y2 - U[1][2] * z) / U[1][1];
    x = (y1 - U[0][1] * y - U[0][2] * z) / U[0][0];
    cout << "x = " << x << ", y = " << y << ", z = " << z << endl;

    inf.close();
}


int main() {
    file_write();
    file_read();


}


//2x+3y+1z=9
//1x+2y+3z=6
//3x+1y+2z=8







//gaus sidel

#include<bits/stdc++.h>
using namespace std;

void file_write()
{
	ofstream outf("equations.txt");
	char s[50];
	for (int i = 0; i < 3; i++)
	{
		cin >> s;
		outf << s << endl;
	}
	outf.close();
}

void file_read()
{
	ifstream inf;
	inf.open("equations.txt");
	string s;
	int r = 0;
	int mat[3][4];
	while (inf)
	{
		getline(inf, s);
		//cout<<s<<endl;

		int c = 0;
		for (int i = 0; i < s.size(); i++)
		{
			int num = 0, cou = 0, j = i, b, a = 0;
			while (s[i] >= '0' && s[i] <= '9')
			{
				if (s[i - 1] == '-' && cou == 0)
				{
					a = -1;
				}
				cou++;
				i++;
			}
			while (cou)
			{
				if (a == -1)
					b = -1 * (s[j] - '0');
				else
					b = s[j] - '0';
				num += b * pow(10, cou - 1);
				j++;
				cou--;
			}

			if (num != 0)
			{
				mat[r][c] = num;
				c++;
			}

		}
		r++;
	}
	for (int r = 0; r < 3; r++)
	{
		for (int c = 0; c < 4; c++)
		{
			cout << mat[r][c] << " ";
		}
		cout << endl;
	}

	int n = 1000;
	float x, y = 0, z = 0;
	while (n--)
	{
		x = (mat[0][3] - mat[0][1] * y - mat[0][2] * z) / mat[0][0];
		y = (mat[1][3] - mat[1][0] * x - mat[1][2] * z) / mat[1][1];
		z = (mat[2][3] - mat[2][0] * x - mat[2][1] * y) / mat[2][2];
	}
	cout << x << " " << y << " " << z << endl;

	inf.close();
}


int main()
{


	file_write();
	file_read();


}




// 27x+6y-1z=85
// 6x+15y+2z=72
// -1x+1y+54z=110




//inverse

#include<bits/stdc++.h>
using namespace std;

int main()
{
	double mat[3][3];
	float d = 0;
	cout << "the elements of matrix : " << endl;

	for (int i = 0; i < 3; i++)
	{
		for (int j = 0; j < 3; j++)
			cin >> mat[i][j];
	}

	for (int i = 0; i < 3; i++)
	{
		d = d + (mat[0][i] * (mat[1][(i + 1) % 3] * mat[2][(i + 2) % 3] - mat[1][(i + 2) % 3] * mat[2][(i + 1) % 3]));
	}
	cout << "Determinent :" << d << endl;
	for (int i = 0; i < 3; i++)
	{
		for (int j = 0; j < 3; j++)
			cout << ((mat[(j + 1) % 3][(i + 1) % 3] * mat[(j + 2) % 3][(i + 2) % 3]) - (mat[(j + 1) % 3][(i + 2) % 3] * mat[(j + 2) % 3][(i + 1) % 3])) / d << "\t";
		cout << "\n";
	}
}



//modified euler

#include<bits/stdc++.h>
using namespace std;

double func(double x, double y, double h) {
	return y + h * (2 * y / x);
}

int main() {
	double x, y, h, n, X;
	cout << "x0 = ";
	cin >> x;
	cout << "y0 = ";
	cin >> y;
	cout << "N = ";
	cin >> n;
	cout << "x = ";
	cin >> X;
	h = (X - x) / n;
	cout << "h = " << h << endl;
	double xx = x, yy;
	for (int j = 0; j < n; j++) {
		xx += h;
		yy = func(x, y, h);
		for (int i = 1; i <= 3; i++) {
			yy = y + h * (func(x, y, h) + func(xx, yy, h)) / 2;
		}
		x += h;
		y = yy;
		cout << yy << endl;
	}
	cout << yy << endl;

}


//Secant Method
#include<bits/stdc++.h>
using namespace std;

#define Er 0.0001

//function f(x) = x^2 - 4x - 10;

double f(double x)
{
	return x * x - 4 * x - 10;
}

int main()
{
	double x1, x2, x;
	int step = 0;

	cout << "Enter two inital value: ";
	cin >> x1 >> x2;

	while (1)
	{

		cout << "x1 = " << x1 << "\n";
		cout << "x2 = " << x2 << "\n";
		cout << "f(x1) = " << f(x1) << "\n";
		cout << "f(x2) = " << f(x2) << "\n";


		x = x2 - ((f(x2) * (x2 - x1)) / (f(x2) - f(x1)));

		cout << "x = " << x << "\n";

		if (abs(((x - x2) / x)) <= Er)break;
		else {
			x1 = x2;
			x2 = x;
		}
		step++;

		cout << endl << endl;

	}

	cout << "Result: " << x << " after no. of " << step << " steps" << endl;


	return 0;
}





//Runge Kutta Method

#include<bits/stdc++.h>
using namespace std;


double given_func(double x, double y) {
	return x * x + y * y;
}

int main() {
	double x, y, h, n, x1, x2;
	cout << "x0 = ";
	cin >> x;
	cout << "y0 = ";
	cin >> y;
	cout << "h = ";
	cin >> h;
	cout << "x1 = ";
	cin >> x1;
	// cout << "x2 = ";
	// cin >> x2;
	// h = (x2 - x1) / (n - 1);
	for (int i = 1; i <= (x1 ) / h; i++) {
		cout << "Step : " << i << endl;
		double k1, k2, k3, k4;
		k1 = h * given_func(x, y);
		k2 = h * given_func(x + h / 2, y + k1 / 2);
		k3 = h * given_func(x + h / 2, y + k2 / 2);
		k4 = h * given_func(x + h, y + k3);

		double del_y = (k1 + 2 * k2 + 2 * k3 + k4) / 6;
		x = x + h;
		y = y + del_y;
		cout << "x = " << x << ", y = " << y << endl;
	}
}



//trapezoidal simpson


#include<bits/stdc++.h>
using namespace std;

float trapezoidal_Rule(float l_limit, float u_limit)
{

	int n;
	cin >> n;
	float h = (u_limit - l_limit) / n;

	float ans = .5 * (log(l_limit) + log(u_limit));


	for (int i = 1; i < n; i++)
	{
		ans += log(l_limit + h * i);
	}
	ans *= h;
	return ans;
}

float simpsons_one_third_rule(float l_limit, float u_limit)
{
	int n;
	cin >> n;
	float h = (u_limit - l_limit) / n;

	float ans = log(l_limit) + log(u_limit);

	for (int i = 1; i <= n - 1; i += 2)
	{
		ans += 4 * log(l_limit + h * i);
	}
	for (int i = 2; i <= n - 2; i += 2)
	{
		ans += 2 * log(l_limit + h * i);
	}
	ans *= h;
	ans /= 3;
	return ans;
}

float simpsons_three_eights_rule(float l_limit, float u_limit)
{
	int n;
	cin >> n;
	float h = (u_limit - l_limit) / n;

	float ans = log(l_limit) + log(u_limit);

	for (int i = 1; i <= n - 1; i++)
	{
		if (i % 3 != 0)
			ans += 3 * log(l_limit + h * i);
	}
	for (int i = 3; i <= n - 3; i++)
	{
		if (i % 3 == 0)
			ans += 2 * log(l_limit + h * i);
	}
	ans *= h * 3;
	ans /= 8;
	return ans;
}


int main()
{


	float l_limit, u_limit, y;
	cin >> l_limit >> u_limit;

	printf("%.10f\n", trapezoidal_Rule(l_limit, u_limit));
	printf("%.10f\n", simpsons_one_third_rule(l_limit, u_limit));
	printf("%.10f\n", simpsons_three_eights_rule(l_limit, u_limit));

}
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;


//Parsing ax+by+cz=d
vector<double> string_to_coefficient(string s)
{
    vector<double> vgs;
    int num = 0;
    int sign = 1;
    int idx = 0;
    if (s[0] == '-')
    {
        sign = -1;
        idx = 1;
    }

    for (; idx < s.length(); idx++)
    {
        if (s[idx] <= '9' && s[idx] >= '0')
        {
            num = num * 10 + (s[idx] - '0');
        }
        else
        {
            if (num == 0)
                num = 1;
            vgs.push_back(sign * num);
            num = 0;
            sign = 1;
            idx++;
            if (s[idx] == '-')
            {
                sign = -1;
            }
        }
    }
    vgs.push_back(sign * num);
    return vgs;
}

void Gauss_Seidel()
{
    string e1, e2, e3;
    cin >> e1 >> e2 >> e3;

    vector<double> v1 = string_to_coefficient(e1);
    vector<double> v2 = string_to_coefficient(e2);
    vector<double> v3 = string_to_coefficient(e3);

    double a1, b1, c1, d1;
    a1 = v1[0];
    b1 = v1[1];
    c1 = v1[2];
    d1 = v1[3];

    cout << a1 << " " << b1 << " " << c1 << " " << d1 << endl;

    double a2, b2, c2, d2;
    a2 = v2[0];
    b2 = v2[1];
    c2 = v2[2];
    d2 = v2[3];

    cout << a2 << " " << b2 << " " << c2 << " " << d2 << endl;

    double a3, b3, c3, d3;
    a3 = v3[0];
    b3 = v3[1];
    c3 = v3[2];
    d3 = v3[3];

    cout << a3 << " " << b3 << " " << c3 << " " << d3 << endl;

    double x, y, z;
    x = y = z = 0;
    double px, py, pz;
    px = py = pz = 9;

    while (abs(px - x) > 0.0001 || abs(py - y) > 0.0001 || abs(pz - z) > 0.0001)
    {
        px = x;
        py = y;
        pz = z;
        x = (d1 - b1 * y - c1 * z) / a1;
        y = (d2 - a2 * x - c2 * z) / b2;
        z = (d3 - a3 * x - b3 * y) / c3;
    }

    cout << fixed << setprecision(5) << x << " " << y << " " << z << endl;
}

vector<double> v;
//Parsing ax^2+bx+c
void parse(string s)
{
    int i = 0;
    int sign = 1;
    int num = 0;
    int var = 0;
    if (s[0] == '-')
    {
        sign = -1;
        i = 1;
    }
    for (; i < s.length(); i++)
    {
        if (s[i] >= '0' && s[i] <= '9')
        {
            num = num * 10 + (s[i] - '0');
        }
        else
        {
            if (num == 0)
                num = 1;
            v.push_back(sign * num);
            num = 0;
            sign = 1;
            if (var == 0)
            {
                var = 1;
                i += 3;
            }
            else
            {
                i++;
            }
            if (s[i] == '-')
            {
                sign = -1;
            }
        }
    }
    v.push_back(sign * num);
}

double derivative(double x)
{
    return 2 * v[0] * x + v[1];
}

double function_x(double x)
{
    return v[0] * x * x + v[1] * x + v[2];
}

void newton_raphson()
{
    string equ;
    cout << "f(x)=";
    cin >> equ;
    parse(equ);

    double x0, x;

    cout << "Enter initial Guess: ";
    cin >> x0;

    int it = 0;
    while (it < 50)
    {
        x = x0 - (function_x(x0) / derivative(x0));
        cout << "Iteration: " << it << " Root = " << x << endl;

        if (fabs(x - x0) < 0.00001)
        {
            cout << "Converged to root after " << it << " iterations." << endl;
            return;
        }

        x0 = x;
        it++;
    }

    cout << "Did not converge within the maximum number of iterations." << endl;
}

void secant()
{
    string equ;
    cout << "f(x)=";
    cin >> equ;
    parse(equ);

    double x1, x2, x3;
    cout << "Enter initial Guess: ";
    cin >> x1 >> x2;
    int it = 0;
    while (it < 50)
    {
        x3 = ((function_x(x2) * x1) - (function_x(x1) * x2)) / (function_x(x2) - function_x(x1));
        cout << "Iteration: " << it << " Root = " << x3 << endl;

        if (fabs(x1 - x2) < 0.00001)
        {
            cout << "Converged to root after " << it << " iterations." << endl;
            return;
        }
        x1 = x2;
        x2 = x3;
        it++;
    }
    cout << "Did not converge within the maximum number of iterations." << endl;
}

void bisection()
{
    string equ;
    cout << "f(x)=";
    cin >> equ;
    parse(equ);

    double x1, x2, x3;
    cout << "Enter initial Guess: ";
    cin >> x1 >> x2;
    int it = 0;
    while (it < 50)
    {
        x3 = (x1 + x2) / 2.0;
        cout << "Iterations: " << it << " Roots= " << x3 << endl;
        if (fabs(function_x(x3)) < 0.00001)
        {
            cout << "Converged to root after " << it << " iterations." << endl;
            return;
        }
        else if ((function_x(x3) * function_x(x1)) < 0)
        {
            x2 = x3;
        }
        else
        {
            x1 = x3;
        }
        it++;
    }
    cout << "Did not converge within the maximum number of iterations." << endl;
}

void false_position()
{
    string equ;
    cout << "f(x)=";
    cin >> equ;
    parse(equ);

    double x1, x2, x3;
    cout << "Enter initial Guess: ";
    cin >> x1 >> x2;
    
    int it = 0;
    while (it < 50)
    {
        //x3 = ((function_x(x2) * x1) - (function_x(x1) * x2)) / (function_x(x2) - function_x(x1));
        x3 = x1 - ((function_x(x1)*(x2-x1)) / (function_x(x2)-function_x(x1)));
        cout << "Iteration: " << it << " Root = " << x3 << endl;

        if (fabs(function_x(x3)) < 0.00001)
        {
            cout << "Converged to root after " << it << " iterations." << endl;
            return;
        }
        
        if ((function_x(x3) * function_x(x1)) < 0)
        {
            x2 = x3;
        }
        else
        {
            x1 = x3;
        }
        it++;
    }
    
    cout << "Did not converge within the maximum number of iterations." << endl;
}

/*
//Parsing ax^3+bx^2+cd+d
vector<double> v;
void parse(string s)
{
    int i = 0;
    int sign = 1;
    double num = 0;
    int var = 0;
    if (s[0] == '-')
    {
        sign = -1;
        i = 1;
    }
    for (; i < s.length(); i++)
    {
        if (s[i] >= '0' && s[i] <= '9')
        {
            num = num * 10 + (s[i] - '0');
        }
        else if (s[i] == 'x')
        {
            if (num == 0)
                num = 1;
            if (i + 1 < s.length() && s[i + 1] == '^')
            {
                int j = i + 2;
                int exp = 0;
                while (j < s.length() && s[j] >= '0' && s[j] <= '9')
                {
                    exp = exp * 10 + (s[j] - '0');
                    j++;
                }
                v.push_back(sign * num * pow(1.0, exp));
                i = j - 1;
            }
            else
            {
                v.push_back(sign * num);
            }
            num = 0;
            sign = 1;
        }
        else if (s[i] == '-')
        {
            sign = -1;
        }
    }
    if (num != 0)
    {
        v.push_back(sign * num);
    }
}

double function_x(double x)
{
    return v[0] * x * x * x + v[1] * x * x + v[2] * x + v[3];
}

double derivative(double x)
{
    return 3 * v[0] * x * x + 2 * v[1] * x + v[2];
}
*/
/*
```
#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;
map<int , int> pw ;
void string_to_coefficient(string s){
    for(int i = 0 ; i < s.length() ; i++){
        int coeff = atol(s.substr(i).c_str());
        i+=log10(abs(coeff))+1;
        int power = 0 ;
        for(int j = i ; j < s.length() ; j++){
            if(s[j] == '^'){
                power = atol(s.substr(j+1).c_str());
                i=j+log10(power)+1 ;
                break;
            }
        }
        pw[power] += coeff;
    }
}
float fx(float x){
    float ans = 0 ;
    for(auto it : pw) ans += it.second*pow(x*1.0,it.first);
    return ans ;
}

float dx(float x){
    float ans = 0 ;
    for(auto it : pw) ans += it.second*it.first*pow(x*1.0,it.first-1);
    return ans ;
}

double initial_guess(int l , int r){
    int min = l ;
    for(int i = l ; i <= r ; i++){
        if(abs(fx(i)) < abs(fx(min))) min = i ;
    }
    return min ;
}

void newton_raphson(){
    double x1 , x;
    cout << "Enter Interval : " ;
    int l , r;
    cin >> l >> r ;
    x1 = initial_guess(min(l,r) , max(l,r));
    cout << "Initial Guess taken : " << x1 << endl ;
    int it = 0 ;
    while(it++ < 100){
        x = x1 - (fx(x1) / dx(x1)) ;
        cout << "it " << it << " : " << x << endl ;
        if(abs(x-x1) < 0.0001){
            cout << "Ans : " << x << endl ;
            return ;
        }
        x1 = x ;
    }
    if(it >= 100) cout << "Not convergent \n" ;
}

int main(){
    cout << "Enter : " ;
    string s ;
    cin >> s ;
    string_to_coefficient(s) ;
    for(auto it : pw) cout << it.second << "\tx^\t" << it.first << " \n" ;
    newton_raphson() ;
}
```
*/


/*
// LU Factorization Dynamic, can work with any variable
2x+3y+z+w=9
1x+2y+3z+4w=6
3x+y+2z=8
y+w=5

#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;

const int N = 11 ;
double A[N][N] , L[N][N] , U[N][N] , X[N] , Y[N];

void string_to_coefficient(string s , int i){
    int num = 0 ;
    int sign = 1 ;
    int idx = 0 ;
    if(s[0] == '-'){
        sign = -1 ;
        idx = 1 ;
    }
    for(int j = idx ; j < s.length() ; j++){
        if(s[j] <= '9' && s[j] >= '0'){
            num = num*10 + (s[j] - '0') ;
        }
        else if(s[j] == 'x'){
            if(num == 0) num = 1 ;
            A[i][1] = sign*num ;
            num = 0 ; sign = 1 ;
        }
        else if(s[j] == 'y'){
            if(num == 0) num = 1 ;
            A[i][2] = sign*num ;
            num = 0 ; sign = 1 ;
        }
        else if(s[j] == 'z'){
            if(num == 0) num = 1 ;
            A[i][3] = sign*num ;
            num = 0 ; sign = 1 ;
        }
        else if(s[j] == 'w'){
            if(num == 0) num = 1 ;
            A[i][4] = sign*num ;
            num = 0 ; sign = 1 ;
        }
        if(s[j] == '-') sign = -1 ;
        else if(s[j] == '+') sign = 1 ;
    }
    X[i] = sign*num ;
}

int main(){
    int n ;
    cout << "Enter the number of variables : " ;
    cin >> n ;
    cout << "Enter the equations : \n" ;
    for(int i = 1 ; i <= n ; i++){
        string s ;
        cin >> s ;
        string_to_coefficient(s , i);
    }

    cout << "\nCoefficient : \n" ;
    for(int i = 1 ; i <= n ; i++){
        for(int j = 1 ; j <= n ; j++){
            cout << A[i][j] << "  " ;
        }
        cout << "\t" << X[i] << endl ;
    }

    
    for (int i = 1; i <= n; i++){
        for (int k = i; k <= n; k++){
            float sum = 0;
            for (int j = 1; j < i; j++) sum += (L[i][j] * U[j][k]);
 
            U[i][k] = A[i][k] - sum;
        }
 
        for (int k = i; k <= n; k++){
            if (i == k) L[i][i] = 1;
            else{
                float sum = 0;
                for (int j = 0; j < i; j++) sum += (L[k][j] * U[j][i]);

                L[k][i] = (A[k][i] - sum) / U[i][i];
            }
        }
    }

    cout << "\nLower Matrix : \n" ;
    for(int i = 1 ; i <= n ; i++){
        for(int j = 1 ; j <= n ; j++){
            cout << setw(10) << L[i][j] << " ";
        }
        cout << endl ;
    }
    cout << "\nUpper Matrix : \n" ;

    for(int i = 1 ; i <= n ; i++){
        for(int j = 1 ; j <= n ; j++){
            cout << setw(10) <<U[i][j] << " ";
        }
        cout << endl ;
    }

    for(int i = 1 ; i <= n ; i++){
        float sum = 0 ;
        for(int j = 1 ; j < i ; j++) sum += L[i][j]*Y[j] ;
        Y[i] = (X[i] - sum)/L[i][i];
    }

    cout << "\nY Matrix : \n" ;
    for(int i = 1 ; i <= n ; i++){
        cout << Y[i] << endl ;
    }

    for(int i = n ; i >= 1 ; i--){
        float sum = 0 ;
        for(int j = n ; j > i ; j--) sum += U[i][j]*X[j] ;
        X[i] = (Y[i] - sum)/U[i][i];
    }

    cout << "\nSolutions : \n" ;
    for(int i = 1 ; i <= n ; i++){
        cout << "x[" << i << "] = " << X[i] << endl ;
    }
}
*/

/*
//RK Method

#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;

map<int , int> xp , yp ;
void string_to_coefficient2(string s){
    char last ;
    for(int i = 0 ; i < s.length() ; i++){
        int coeff = atol(s.substr(i).c_str());
        i+=log10(abs(coeff))+1;
        int power = 0 ;
        for(int j = i ; j < s.length() ; j++){
            if(s[j] == 'x') last = 'x' ;
            else if(s[j] == 'y') last = 'y' ;
            if(s[j] == '^'){
                power = atol(s.substr(j+1).c_str());
                i=j+log10(power)+1 ;
                break;
            }
        }
        if(last == 'x')xp[power] += coeff;
        else if(last == 'y') yp[power] += coeff ;
    }
}

float fxy(float x , float y){
    float ans = 0 ;
    for(auto it : xp) ans += it.second*pow(x*1.0,it.first);
    for(auto it : yp) ans += it.second*pow(y*1.0,it.first);
    return ans ;
}

float fx(float x){
    float ans = 0 ;
    for(auto it : pw) ans += it.second*pow(x*1.0,it.first);
    return ans ;
}

float dx(float x){
    float ans = 0 ;
    for(auto it : pw) ans += it.second*it.first*pow(x*1.0,it.first-1);
    return ans ;
}

float falsep(float x1 , float x2){
    return x1-((fx(x1)*(x2-x1)) / (fx(x2)-fx(x1))) ;
}


int main(){
    string s ;
    cin>>S;
    
        cout << "Enter equation : " ;
        cin >> s ;
        string_to_coefficient2(s);
        for(auto it : xp) cout << it.second << "x^" << it.first << "\t";
        for(auto it : yp) cout << it.second << "y^" << it.first << "\t";
        cout << endl ;

        float x , y , h , nn , x0 , y0 ;
        cout << "x0 = " ;
        cin >> x0 ;
        cout << "y0 = " ;
        cin >> y0 ;
        cout << "h = " ;
        cin >> h ;
        cout << "x = " ;
        cin >> x ;
        nn = (x-x0)/h ;
        y = y0 ;
        for(int i = 1 ; i <= nn ; i++){
            float k1 , k2 , k3 , k4 , k5 ;
            k1 = h*fxy(x0,y) ;
            k2 = h*fxy(x0 + 0.5*h, y + 0.5*k1);
            k3 = h*fxy(x0 + 0.5*h, y + 0.5*k2);
            k4 = h*fxy(x0 + h, y + k3);

            y = y + (1.0/6.0)*(k1 + 2*k2 + 2*k3 + k4);;
            x0 = x0 + h;
        }
        cout << "y("<<x<<") = " << y << endl ;

}

*/


int main()
{
    int ch;
    cout << "1. Gauss Seidel\n2. Newton Raphson\n3. Secant\n4. Bisection\n5. False Position\nEnter choice:";
    cin >> ch;
    if(ch==1)
        Gauss_Seidel();
    else if(ch==2)
        newton_raphson();
    else if(ch==3)
    secant();
    else if(ch==4)
    bisection();
    else if(ch==5)
    false_position();
    
    return 0;
}
/* counters */

body {
 counter-reset: section;
}
.counter p::before {
 counter-increment: 
  section;
 content: counter(section);
}





// remove "Private: " from titles
function remove_private_prefix($title) {
	$title = str_replace('פרטי: ', '', $title);
	return $title;
}
add_filter('the_title', 'remove_private_prefix');
Answer 1:

import java.util.Scanner;

public class Movie {
	
	String title;
	int rating;
	
	public Movie(String newTitle, int newRating) {
		title = newTitle;
		if(newRating >=0 && newRating <= 10) {
			rating = newRating;
		}
	}
	public char getCategory() {
		if(rating ==9 || rating == 10)
			return 'A';
		else if(rating == 7 || rating ==8)
			return 'B';
		else if(rating == 5 || rating == 6)
			return 'C';
		else if(rating == 3 || rating ==4)
			return 'D';
		else 
			return 'F';
		
	}
	public void writeOutput() {
		System.out.println("Title: " + title);
		System.out.println("Rating: " + rating);
	}

	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		System.out.println("Enter Title of Movie: ");
		String name = scanner.next();
		
		System.out.println("Enter Rating a Movie: ");
		int rating = scanner.nextInt();
		
		Movie m1 = new Movie(name, rating);
		
		//getCategory();
		m1.writeOutput();
		System.out.println("Catagory of the movie: " + m1.getCategory());
		
	}
}
//OUTPUT:

Enter Title of Movie: 
Black_List
Enter Rating a Movie: 
10
Title: Black_List
Rating: 10
Catagory of the movie: A

Answer 4:

import java.util.Scanner;

public class Employee {
	
	String name;
	double salary;
	double hours;
	
	Employee(){
		this("",0,0);
	}
	Employee(String name, double salary, double hours){
		this.name = name;
		this.salary = salary;
		this.hours = hours;
	}
	
	public void addBonus() {
		if(salary < 600) {
			salary += 15;
		}
	}
	public void addWork() {
		if(hours > 8) {
			salary += 10;
		}
	}
	public void printSalary() {
		System.out.println("Final Salary Of The Employee = " + salary + "$");
	}

	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		System.out.println("Enter a Name of Employee:");
		String name = scanner.next();
		System.out.println("Enter a Salary of Employee: ");
		double sal = scanner.nextDouble();
		
		System.out.println("Enter a Number of Hours:");
		double hrs = scanner.nextDouble();
		
		Employee emp = new Employee(name,sal,hrs);
		
		emp.addBonus();
		emp.addWork();
		emp.printSalary();

	}
}
//OUTPUT:
Enter a Name of Employee:
mohamed
Enter a Salary of Employee: 
599
Enter a Number of Hours:
10
Final Salary Of The Employee = 624.0$


# Header 1
## Header 2
### Header 3
#### Header 4 ####
##### Header 5 #####
###### Header 6 ######
    #include <iostream>
    #include <SFML/Graphics.hpp>
    #include <SFML/Audio.hpp>
     
    using namespace std;
     
    // Initializing Dimensions.
    // resolutionX and resolutionY determine the rendering resolution.
    // Don't edit unless required. Use functions on lines 43, 44, 45 for resizing the game window.
    const int resolutionX = 960;
    const int resolutionY = 960;
    const int boxPixelsX = 32;
    const int boxPixelsY = 32;
    const int gameRows = resolutionX / boxPixelsX; // Total rows on grid
    const int gameColumns = resolutionY / boxPixelsY; // Total columns on grid
     
    // Initializing GameGrid.
    int gameGrid[gameRows][gameColumns] = {};
     
    // The following exist purely for readability.
    const int x = 0;
    const int y = 1;
    const int exists = 2;                                    //bool exists;//                       
    const int direction = 3;
    /////////////////////////////////////////////////////////////////////////////
    //                                                                         //
    // Write your functions declarations here. Some have been written for you. //
    //                                                                         //
    /////////////////////////////////////////////////////////////////////////////
     
    void drawPlayer(sf::RenderWindow& window, float player[], sf::Sprite& playerSprite);
    void movePlayer(float player[],float bullet[]);
    void moveBullet(float bullet[], sf::Clock& bulletClock);
    void drawBullet(sf::RenderWindow& window, float bullet[], sf::Sprite& bulletSprite);
    void drawShrooms(sf::RenderWindow& window, float shroom[][2], sf::Sprite& shroomSprite,int maxShrooms);
    void initializeShrooms(float shroom[][2],int maxShrooms);
    void initialize_centipede(float centipede[][4],int totalSegments);
    void drawCentipede(sf::RenderWindow& window, float centipede[12][4], sf::Sprite& centipedeSprite,const int totalSegments); 
    void move_centipede(float centipede[][4], sf::Clock& bulletClock);   //remove from sf::render..
    void bullet_shroom(float bullet[],float shroom[][2]);
    //void shroom_centipede 
    int main()
    {
    	srand(time(0));
      /*
      //centipede stuff:
      const int totalSegments = 12;
    float centipede[totalSegments][2]; // 2D array to store x and y positions of each segment
     
    // Initialize centipede positions (for example, starting from the top left)
    const int startX = 100; // Adjust as needed
    const int startY = 100; // Adjust as needed
    const int segmentGap = 20; // Gap between segments
     
    for (int i = 0; i < totalSegments; ++i) {
        centipede[i][0] = startX + i * segmentGap; // x position
        centipede[i][1] = startY; // y position (same for all segments in this example)
        
    }
                         */
     
           
     
     
     
    	// Declaring RenderWindow.
    	sf::RenderWindow window(sf::VideoMode(resolutionX, resolutionY), "Centipede", sf::Style::Close | sf::Style::Titlebar);
     
    	// Used to resize your window if it's too big or too small. Use according to your needs.
    	window.setSize(sf::Vector2u(640, 640)); // Recommended for 1366x768 (768p) displays.
    	//window.setSize(sf::Vector2u(1280, 1280)); // Recommended for 2560x1440 (1440p) displays.
    	// window.setSize(sf::Vector2u(1920, 1920)); // Recommended for 3840x2160 (4k) displays.
    	
    	// Used to position your window on every launch. Use according to your needs.
    	window.setPosition(sf::Vector2i(100, 0));
     
    	// Initializing Background Music.
    	sf::Music bgMusic;
    	bgMusic.openFromFile("Centipede_Skeleton/Music/field_of_hopes.ogg");
    	bgMusic.play();
    	bgMusic.setVolume(50);
     
    	// Initializing Background.
    	sf::Texture backgroundTexture;
    	sf::Sprite backgroundSprite;
    	backgroundTexture.loadFromFile("Centipede_Skeleton/Textures/background.png");
    	backgroundSprite.setTexture(backgroundTexture);
    	backgroundSprite.setColor(sf::Color(255, 255, 255, 200)); // Reduces Opacity to 25%
            
    	// Initializing Player and Player Sprites.
    	float player[2] = {};
    	player[x] = (gameColumns / 2) * boxPixelsX;
    	player[y] = (gameColumns * 3 / 4) * boxPixelsY;
    	sf::Texture playerTexture;
    	sf::Sprite playerSprite;
    	playerTexture.loadFromFile("Centipede_Skeleton/Textures/player.png");
    	playerSprite.setTexture(playerTexture);
    	playerSprite.setTextureRect(sf::IntRect(0, 0, boxPixelsX, boxPixelsY));
    	
    	sf::Clock playerClock;
     
    	// Initializing Bullet and Bullet Sprites.
    	float bullet[3] = {};                              
    	                                  //bool bullet1[3];
    	bool request = false;
    	bullet[x] = player[x];
    	bullet[y] = player[y] - boxPixelsY;
    	bullet[exists] = false;
    	sf::Clock bulletClock;
    	sf::Texture bulletTexture;
    	sf::Sprite bulletSprite;
    	bulletTexture.loadFromFile("Centipede_Skeleton/Textures/bullet.png");
    	bulletSprite.setTexture(bulletTexture);
    	bulletSprite.setTextureRect(sf::IntRect(0, 0, boxPixelsX, boxPixelsY));
    	
    	//initializing centipede
    	const int totalSegments = 12;
    	float centipede[100][4];
    	
    	//centipede[x] = (gameColumns / 2) * boxPixelsX;           //the position from where centipede will start its journey x-co-ordinate//
    	//centipede[y] = (gameColumns * 3 / 4) * boxPixelsY;         //the position from where centipede will start its journey y-co-ordinate//
    	//centipede[1][exists] = false;
    	for(int i=0;i<totalSegments;i++){
     
    	centipede[i][exists] = true;
    	
    	
    	                                 }
    	               
    	sf::Texture centipedeTexture;
    	sf::Sprite centipedeSprite;
    	centipedeTexture.loadFromFile("Centipede_Skeleton/Textures/c_body_left_walk.png");
    	centipedeSprite.setTexture(centipedeTexture);
    	centipedeSprite.setTextureRect(sf::IntRect(0, 0, boxPixelsX, boxPixelsY));
    	
    	sf::Clock centipedeClock;
    	initialize_centipede(centipede,totalSegments);
    	
    	
    	//initializing shrooms:
    	const int maxShrooms = 18;
    	float shroom[25][2] = {};
            
    	sf::Texture shroomTexture;
    	sf::Sprite shroomSprite;
    	shroomTexture.loadFromFile("Centipede_Skeleton/Textures/mushroom.png");
    	shroomSprite.setTexture(shroomTexture);
    	shroomSprite.setTextureRect(sf::IntRect(0, 0, boxPixelsX, boxPixelsY));
          
            initializeShrooms(shroom,maxShrooms);           //calling shroom's function to initialize position;
    	while(window.isOpen()) {
     
    		///////////////////////////////////////////////////////////////
    		//                                                           //
    		// Call Your Functions Here. Some have been written for you. //
    		// Be vary of the order you call them, SFML draws in order.  //
    		//                                                           //
    		///////////////////////////////////////////////////////////////
     
    		window.draw(backgroundSprite);
    		
    		drawPlayer(window, player, playerSprite);
    		movePlayer(player,bullet);
    		/*shootBullet(bullet,request);
    		if(request){
    		bullet[exists] = true;
    		request = false;          
    		    }                       */  
    		
    		if (bullet[exists] == true) {
    			moveBullet(bullet, bulletClock);
    			drawBullet(window, bullet, bulletSprite);
    			
    		}
    		
    		
    		drawShrooms(window,shroom,shroomSprite,maxShrooms);
    		bullet_shroom(bullet,shroom);
    		
    		
    		drawCentipede(window, centipede, centipedeSprite,totalSegments);
    		move_centipede(centipede,centipedeClock);
    		
    		
    		
               sf::Event e;
    		while (window.pollEvent(e)) {
    			if (e.type == sf::Event::Closed) {
    				return 0;
    			}
    		
    		}		
    		window.display();
    		window.clear();
    	}
    	 
    	
    	
     }
     
    ////////////////////////////////////////////////////////////////////////////
    //                                                                        //
    // Write your functions definitions here. Some have been written for you. //
    //                                                                        //
    ////////////////////////////////////////////////////////////////////////////
     
    void drawPlayer(sf::RenderWindow& window, float player[], sf::Sprite& playerSprite) {
    	playerSprite.setPosition(player[x], player[y]); 
    	window.draw(playerSprite);
    }
     
     
     
     
    void drawBullet(sf::RenderWindow& window, float bullet[], sf::Sprite& bulletSprite) {
     
     if(bullet[exists] == true){
    	bulletSprite.setPosition(bullet[x], bullet[y]);
    	window.draw(bulletSprite);
    	
        }
     
     }
     
     
     
                     
                           
     
     
     
    void moveBullet(float bullet[], sf::Clock& bulletClock) {
     float bullet_speed = 10.0f;
            
        
     	if (bulletClock.getElapsedTime().asMilliseconds() < 10)
    		return;
            
    	bulletClock.restart(); 
    	bullet[y] += -32;	 
    	if (bullet[y] < -32)    
           {  bullet[exists] = false; }
    		
                                                   }  
                                                   
     
     
           
                                                   
                                                   
     
     
    void drawShrooms(sf::RenderWindow& window, float shroom[][2], sf::Sprite& shroomSprite,int maxShrooms){
         
         for(int i=0;i<maxShrooms;i++){
             if(shroom[i][exists]){                    
                              
                              
                              shroomSprite.setPosition(shroom[i][x],shroom[i][y]);
                              window.draw(shroomSprite);                            
                                                                                      } 
                                                          }                                 
                      } 
     
    void initializeShrooms(float shroom[][2],int maxShrooms){
                                                                                                    
                                                                                                   
         for(int i=0;i<maxShrooms;i++){
                              shroom[i][x] =     rand()%gameRows * boxPixelsX; 
                              shroom[i][y] =     rand()%gameColumns * boxPixelsY;            
                              shroom[i][exists] = true;                                      }
                                                                            }
                                                                                                                                                                   
    void movePlayer(float player[],float bullet[]) {
        float movementSpeed = 5.0f;
        int bottomLimit = resolutionY - (6 * boxPixelsY); // Calculate the bottom limit
        
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::W) && player[y] > bottomLimit) {
            player[y] -= movementSpeed + 3;
        }
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::S) && player[y] < resolutionY - boxPixelsY) {
            player[y] += movementSpeed + 3;
        }
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::D) && player[x] < resolutionX - boxPixelsX) {
            player[x] += movementSpeed + 3;
        }
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::A) && player[x] > 0) {
            player[x] -= movementSpeed + 3;
        }
        
        if(sf::Keyboard::isKeyPressed(sf::Keyboard::Space) && bullet[exists]==false){
        
        bullet[exists] = true;
        bullet[x] = player[x];
        bullet[y] = player[y] - boxPixelsY;
        
    }
        }
     
    void initialize_centipede(float centipede[][4],int totalSegments){
         
        
             for(int j=0;j<totalSegments;j++){
         centipede[j][x] = boxPixelsX*j;
          centipede[j][y] = boxPixelsY; 
         centipede[j][exists] = true;
         centipede[j][direction] = 1;              //1 for right and 0 for left;
         
         
     
                                                 }
                                              
                 
                                                           }   
     
    void drawCentipede(sf::RenderWindow& window, float centipede[12][4], sf::Sprite& centipedeSprite,const int totalSegments) {
        const int segmentWidth = boxPixelsX; // Width of each centipede segment
        const int segmentHeight = boxPixelsY; // Height of each centipede segment
     
        for (int i = 0; i < totalSegments; ++i) {
            if(centipede[i][exists]){
            centipedeSprite.setPosition(centipede[i][x], centipede[i][y]);
            window.draw(centipedeSprite);
            }
        }
    }
     

 
   void move_centipede(float centipede[][4], sf::Clock& centipedeClock) {
    int totalSegments = 12;
 
    if (centipedeClock.getElapsedTime().asMilliseconds() < 5)
        return;
 
    centipedeClock.restart();
 
    bool reachedBottomRight = true;
 
    for (int j = 0; j < totalSegments; j++) {
        if (centipede[j][direction] == 1) { // Moving right
            if (centipede[j][x] < 928) {
                centipede[j][x] += 32;
                if (centipede[j][y] != 928) {
                    reachedBottomRight = false;
                }
            } else {
                centipede[j][direction] = 0; // Change direction to down
                centipede[j][y] += 32;      // Move down a row
            }
        } else { // Moving left
            if (centipede[j][x] > 0) {
                centipede[j][x] -= 32;
                if (centipede[j][y] != 928) {
                    reachedBottomRight = false;
                }
            } else {
                centipede[j][direction] = 1; // Change direction to down
                centipede[j][y] += 32;      // Move down a row
            }
        }
    }
    
    for (int j = 0; j < totalSegments; j++){
 if (centipede[j][y] == 928 && centipede[j][x] == 928){
 reachedBottomRight = true;}
 else{reachedBottomRight = false;}
    if (reachedBottomRight) {
        // Move to the 6th row above the bottom
         {
            centipede[j][y] = 928 - (6 * boxPixelsY);
        }
    }
}

}

void bullet_shroom(float bullet[], float shroom[][2]) {
    float bulletX = bullet[x];
    float bulletY = bullet[y];
 
    for (int i = 0; i < 18; i++) {
        float shroomX = shroom[i][x];
        float shroomY = shroom[i][y];
 
        // Define a range around the mushroom position for collision detection
        float collisionRange = 16.0f; // Adjust this value as needed
 
        // Check if bullet position is within the range of a mushroom
        if (bulletX >= shroomX - collisionRange && bulletX <= shroomX + collisionRange &&
            bulletY >= shroomY - collisionRange && bulletY <= shroomY + collisionRange) {
            bullet[exists] = false;
            shroom[i][exists] = false;
           // break; // Exit loop after handling collision with one mushroom//
        }
    }
}


/*shroom_centipede collision;
drawShrooms(window,shroom,shroomSprite,maxShrooms);

for(int i=0,j=0;i<maxShrooms && j<totalSegments;i++,j++){

if(shroom[i][x]%centipede[j][x]==0 && shroom[i][y]%centipede[j][y]==0){
centipede[j][y] += 32;}

  
   }   */
 int list[5]={2,4,8,10,-1};
 int nextList[5]={3,-1,0,1,-1};
 int start = 2;
 int Free = 4;
 void magic(int val , int position){
 int start = ::start;
 for(int i = 0 ; i< position - 1 ; i++)
 start=nextList[start];
 list[Free]=val; nextList[Free]=nextList[start];
 nextList[start]=Free++;
 }
 void magic(){
 int start = ::start;
 while(start != -1){
 cout<<list[start]<<"->";
 start=nextList[start];
 }
 cout<<"*"<<endl;
 }
 int main()
 {
 magic();
 magic(5,2);
 magic();
 return 0;
 }
#!/bin/bash

# Check if the 'jamf' command-line tool is available
if ! command -v jamf &> /dev/null; then
    echo "Error: 'jamf' command not found. Please make sure Jamf Pro is installed."
    exit 1
fi

# Trigger the enrollment with Jamf Pro
jamf enroll -invitation your_enrollment_URL

# Check the result
if [ $? -eq 0 ]; then
    echo "Enrollment successful."
else
    echo "Enrollment failed. Please check your enrollment URL and server configuration."
    exit 1
fi
https://github.com/chronark/highstorm

https://github.com/idurar/idurar-erp-crm

https://github.com/nz-m/SocialEcho

//react-google-maps-api documentation LINK
https://web.archive.org/web/20230701010714mp_/https://react-google-maps-api-docs.netlify.app/#googlemap

Overview of Bash shell and command line interface
The terms "shell" and "bash" are used interchangeably. But there is a subtle difference between the two.

The term "shell" refers to a program that provides a command-line interface for interacting with an operating system. Bash (Bourne-Again SHell) is one of the most commonly used Unix/Linux shells and is the default shell in many Linux distributions.
const express = require("express");
const { z } = require("zod");

const app = express();

app.use(express.json());

const LoginSchema = z.object({
  // In this example we will only validate the request body.
  body: z.object({
    // email should be valid and non-empty
    email: z.string().email(),
    // password should be at least 6 characters
    password: z.string().min(6),
  }),
});

const validate = (schema) => (req, res, next) => {
  try {
    schema.parse({
      body: req.body,
      query: req.query,
      params: req.params,
    });

    next();
  } catch (err) {
    return res.status(400).send(err.errors);
  }
};

app.post("/login", validate(LoginSchema), (req, res) => {
  return res.json({ ...req.body });
});

app.listen(1337, () => console.log(`> Ready on http://localhost:${1337}`));
System.util.RectangleJ rect = new System.util.RectangleJ(70, 80, 420, 500);
RenderFilter[] filter = {new RegionTextRenderFilter(rect)};
ITextExtractionStrategy strategy = new FilteredTextRenderListener(
        new LocationTextExtractionStrategy(), filter);
text = PdfTextExtractor.GetTextFromPage(reader, 1, strategy);
/*A mobile phone service provider has three different subscription packages for its 
customers: 
Package A: For $39.99 per month 450 minutes are provided. Additional minutes are 
$0.45 per minute. 
Package B: For $59.99 per month 900 minutes are provided. Additional minutes are 
$0.40 per minute. 
Package C: For $69.99 per month unlimited minutes provided. 
Write a program that calculates a customer’s monthly bill. It should ask which package 
the customer has purchased and how many minutes were used. It should then display 
the total amount due. 
Input Validation: Be sure the user only selects package A, B, or C  */
#include <iostream>
#include<iomanip>
using namespace std;
int main() {
    int num,opt,num1;
   char pakage1,pakage2,pakage3;
   do{
  cout<<"choose a pakage: "<<endl<<"1.pakage 1"<<endl<<"2.pakage 2"<<endl<<"3.pakage 3"<<endl;
   cin>>opt;
   
   switch(opt){
       case 1:
            cout<<"you chose pakage 1: "<<endl;
            break;
        case 2:
            cout<<"you chose  pakage 2: "<<endl;
            break;
       case 3:
             cout<<"you chose pakage 3: "<<endl;
             break;
         default: cout<<"invalid input re-enter the number: "<<endl;
            
           
   }
   } 
   while(opt<1 || opt>4);
      
  cout<<"if u wanna choose more pakages press -1 "<<endl;
    cin>>num1;       
    return 0;
}
curl https://chatgpt-api.shn.hk/v1/ \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "gpt-3.5-turbo",
  "messages": [{"role": "user", "content": "Hello, how are you?"}]
}'
<div class="subscribe-wrapper text-center snipcss-EMUGA">
  <h2 class="title">
    Subscribe to Our 
  </h2>
  <p>
    Follow our newsletter to learn more about peace and building a community connection. Stay up to date on various PLC workshops and events. Programs Available to All. Join Us Today. Located in Eagle Creek. We Can Help. Courses: Peace Learning Center, Creating Change.
  </p>
  <form class="subscribe-form mt-4" action="" method="post" id="subscribe">
    <input type="hidden" name="_token" value="McvBWd5pNNin8Ix9Hy2VHnAtxehRNZ8TRznhSNk2" autocomplete="off">
    <input type="email" required="" name="email" class="form-control email" placeholder="Enter email address" autocomplete="off" id="email">
    <button type="submit" class="subscribe-btn">
      Subscribe Now 
      <i class="far fa-paper-plane ms-2">
      </i>
    </button>
  </form>
</div>

<iframe src="https://www.thiscodeworks.com/embed/654605d94b9db40013d5293f" style="width: 100%; height: 1217px;" frameborder="0"></iframe>
%jdbc(hive)
set tez.queue.name=bullseye;
set hive.execution.engine=tez;

-- EGV PURCHASE SUCCESS BASED ON TXN MONTH
select year, month, COUNT(merchant_transaction_id) AS cnt, SUM(original_balance/100) AS amt
from egv.gift_cards 
where year = 2024 AND month = prevMonthNo
AND program_id = 'PHONEPEGC' AND tenant_id LIKE 'PHONEPE%' AND merchant_id = 'PHONEPEGC'
GROUP BY year, month
ORDER BY year, month
 
-- WALLET TOPUP SUCCESS BASED ON TXN MONTH
SELECT year, month, COUNT(merchant_reference_id) AS cnt, SUM(amount/100) as amt
FROM wallet.transaction_master
WHERE year = 2024 AND month = prevMonthNo 
AND category = 'TOPUP' AND txn_type = 'CREDIT'
AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
GROUP BY year, month
ORDER BY year, month
 
-- EGV PURCHASE FRAUD CNT & AMT BASED ON TXN MONTH
select A.year, A.month, count(eventdata_transactionid) as count, sum(amt) as amount from 
    (select merchant_transaction_id, card_number, original_balance/100 AS amt, year, month
    from egv.gift_cards 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND program_id = 'PHONEPEGC' AND tenant_id LIKE 'PHONEPE%' AND merchant_id = 'PHONEPEGC')A
INNER JOIN
    (select transaction_id, global_payment_id, amount
    from payment.transactions 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    and state='COMPLETED' and error_code='SUCCESS' and backend_error_code='SUCCESS'
    AND flow IN ('CONSUMER_TO_MERCHANT_V2', 'CONSUMER_TO_MERCHANT'))B
on A.merchant_transaction_id = B.global_payment_id
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on B.transaction_id = C.eventdata_transactionid
group by A.year, A.month
order by A.year, A.month
 
-- WALLET TOPUP FRAUD CNT & AMT BASED ON TXN MONTH
select A.year, A.month, count(merchant_reference_id) as count, sum(amt) as amount from 
    (SELECT merchant_reference_id, amount/100 as amt, year, month
    FROM wallet.transaction_master
    WHERE year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND category = 'TOPUP' AND txn_type = 'CREDIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
    GROUP BY merchant_reference_id, amount/100, year, month)A
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on A.merchant_reference_id = C.eventdata_transactionid
group by A.year, A.month
order by A.year, A.month
 
-- EGV PURCHASE FRAUD CNT & AMT BASED ON REPORTED MONTH
select C.year, C.month, count(eventdata_transactionid) as count, sum(amt) as amount from 
    (select merchant_transaction_id, card_number, original_balance/100 AS amt, year, month
    from egv.gift_cards 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND program_id = 'PHONEPEGC' AND tenant_id LIKE 'PHONEPE%' AND merchant_id = 'PHONEPEGC')A
INNER JOIN
    (select transaction_id, global_payment_id, amount
    from payment.transactions 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    and state='COMPLETED' and error_code='SUCCESS' and backend_error_code='SUCCESS'
    AND flow IN ('CONSUMER_TO_MERCHANT_V2', 'CONSUMER_TO_MERCHANT'))B
on A.merchant_transaction_id = B.global_payment_id
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month = prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on B.transaction_id = C.eventdata_transactionid
group by C.year, C.month
order by C.year, C.month
 
-- WALLET TOPUP FRAUD CNT & AMT BASED ON REPORTED MONTH
select C.year, C.month, count(merchant_reference_id) as count, sum(amt) as amount from 
    (SELECT merchant_reference_id, amount/100 as amt
    FROM wallet.transaction_master
    WHERE year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND category = 'TOPUP' AND txn_type = 'CREDIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
    GROUP BY merchant_reference_id, amount/100)A
INNER JOIN
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month = prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)C
on A.merchant_reference_id = C.eventdata_transactionid
group by C.year, C.month
order by C.year, C.month
 
---------------------------------------------
-- EGV REDEMPTION BASE ON TXN MONTH
select year, month, COUNT(DISTINCT substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1)) as transaction_id , sum(amount/100) as amt
from egv.gift_card_histories
where operation like 'REDEEM'
and year = 2024 AND month = prevMonthNo
GROUP BY year, month
ORDER BY year, month
 
-- WALLET REDEMPTION BASED ON TXN MONTH
SELECT year, month, COUNT(txn_id), SUM(amount/100) as amt
FROM wallet.transaction_master
WHERE year = 2024 AND month = prevMonthNo
AND category = 'ORDER' AND txn_type = 'DEBIT'
AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS'
GROUP BY year, month
ORDER BY year, month
 
-- EGV REDEEM FRAUD BASED ON TXN MONTH
SELECT B.year, B.month, COUNT(B.transaction_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (select substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1) as transaction_id , sum(amount/100) as amt, year, month
    from egv.gift_card_histories
    where operation like 'REDEEM'
    and year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    GROUP BY substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1), year, month)B
ON A.eventdata_transactionid = B.transaction_id
GROUP BY B.year, B.month
ORDER BY B.year, B.month
 
-- WALLET REDEEM FRAUD BASED ON TXN MONTH
SELECT B.year, B.month, COUNT(B.txn_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (SELECT txn_id, (amount/100) as amt, year, month
    FROM wallet.transaction_master
    WHERE year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND category = 'ORDER' AND txn_type = 'DEBIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS')B
ON A.eventdata_transactionid = B.txn_id
GROUP BY B.year, B.month
ORDER BY B.year, B.month
 
-- EGV REDEEM FRAUD BASED ON REPORTED MONTH
SELECT A.year, A.month, COUNT(B.transaction_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month = prevMonthNo 
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (select substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1) as transaction_id , sum(amount/100) as amt, year, month
    from egv.gift_card_histories
    where operation like 'REDEEM'
    and year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo 
    GROUP BY substr(merchant_transaction_id, 0, instr(merchant_transaction_id,':')-1), year, month)B
ON A.eventdata_transactionid = B.transaction_id
GROUP BY A.year, A.month
ORDER BY A.year, A.month
 
-- WALLET REDEEM FRAUD BASED ON REPORTED MONTH
SELECT A.year, A.month, COUNT(B.txn_id), SUM(B.amt) as fraud_amt FROM
    (select eventdata_transactionid, year, month
    from foxtrot_stream.cerebro_default 
    where year = 2024 AND month = prevMonthNo
    AND (eventdata_fraudtxn = 1 or eventdata_action = 'FRAUD')
    and eventtype = 'MARK_TRANSACTION'
    GROUP BY eventdata_transactionid, year, month)A
INNER JOIN
    (SELECT txn_id, (amount/100) as amt, year, month
    FROM wallet.transaction_master
    WHERE year = 2024 AND month BETWEEN (prevMonthNo - 3) AND prevMonthNo
    AND category = 'ORDER' AND txn_type = 'DEBIT'
    AND txn_state = 'SUCCESS' AND response_code = 'SUCCESS')B
ON A.eventdata_transactionid = B.txn_id
GROUP BY A.year, A.month
ORDER BY A.year, A.month
# select upstream changes
git checkout --theirs .
# select local changes
git checkout --ours .

git add .
git commit -m "Merged using 'theirs' strategy"
star

Tue Nov 07 2023 14:51:16 GMT+0000 (Coordinated Universal Time) https://www.onlinegdb.com/online_c++_compiler

@70da_vic2002 #c++

star

Tue Nov 07 2023 14:39:00 GMT+0000 (Coordinated Universal Time) https://www.onlinegdb.com/online_c++_compiler

@70da_vic2002 #c++

star

Tue Nov 07 2023 13:45:31 GMT+0000 (Coordinated Universal Time) https://www.onlinegdb.com/online_c++_compiler

@70da_vic2002 #c++

star

Tue Nov 07 2023 12:54:11 GMT+0000 (Coordinated Universal Time) /as

@sepa80

star

Tue Nov 07 2023 11:48:41 GMT+0000 (Coordinated Universal Time)

@Duduyt #java

star

Tue Nov 07 2023 11:47:56 GMT+0000 (Coordinated Universal Time)

@Duduyt #java

star

Tue Nov 07 2023 10:16:54 GMT+0000 (Coordinated Universal Time)

@omnixima #jquery

star

Tue Nov 07 2023 09:33:22 GMT+0000 (Coordinated Universal Time) undefined

@Ash1920

star

Tue Nov 07 2023 07:48:12 GMT+0000 (Coordinated Universal Time)

@dwtut #css #scss

star

Tue Nov 07 2023 05:47:37 GMT+0000 (Coordinated Universal Time)

@wesley7137 #python

star

Tue Nov 07 2023 05:14:46 GMT+0000 (Coordinated Universal Time) https://canererden.com/blog/2023/unlock-medium/

@miskat80

star

Tue Nov 07 2023 00:13:25 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #random #number

star

Mon Nov 06 2023 22:41:07 GMT+0000 (Coordinated Universal Time) https://www.onlinegdb.com/online_c++_compiler

@70da_vic2002 #c++

star

Mon Nov 06 2023 21:39:36 GMT+0000 (Coordinated Universal Time) https://www.onlinegdb.com/online_c++_compiler

@70da_vic2002

star

Mon Nov 06 2023 20:57:00 GMT+0000 (Coordinated Universal Time)

@kalpitsahu

star

Mon Nov 06 2023 19:15:47 GMT+0000 (Coordinated Universal Time)

@john

star

Mon Nov 06 2023 16:57:16 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/4843158/how-to-check-if-a-string-is-a-substring-of-items-in-a-list-of-strings

@diptish #python

star

Mon Nov 06 2023 09:15:32 GMT+0000 (Coordinated Universal Time)

@Duduyt #java

star

Mon Nov 06 2023 06:31:07 GMT+0000 (Coordinated Universal Time) https://byteshiva.medium.com/how-to-make-application-run-at-startup-in-ubuntu-6fca4a459bc8

@hirsch

star

Mon Nov 06 2023 06:21:07 GMT+0000 (Coordinated Universal Time) https://snapcraft.io/pspad

@marcton

star

Mon Nov 06 2023 04:35:03 GMT+0000 (Coordinated Universal Time) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions

@cujaab

star

Mon Nov 06 2023 04:17:57 GMT+0000 (Coordinated Universal Time)

@rashmiv

star

Mon Nov 06 2023 04:00:30 GMT+0000 (Coordinated Universal Time)

@toddadams67 #javascript

star

Mon Nov 06 2023 03:50:12 GMT+0000 (Coordinated Universal Time)

@toddadams67 #javascript

star

Mon Nov 06 2023 01:22:35 GMT+0000 (Coordinated Universal Time)

@jin_mori

star

Mon Nov 06 2023 01:21:50 GMT+0000 (Coordinated Universal Time)

@jin_mori

star

Mon Nov 06 2023 01:07:02 GMT+0000 (Coordinated Universal Time)

@odesign

star

Mon Nov 06 2023 01:05:54 GMT+0000 (Coordinated Universal Time) הקוד שמופיע בסרטון: /* counters */ body { counter-reset: section; } .counter p::before { counter-increment: section; content: counter(section); }

@odesign

star

Sun Nov 05 2023 20:30:21 GMT+0000 (Coordinated Universal Time)

@Mohamedshariif #java

star

Sun Nov 05 2023 18:33:10 GMT+0000 (Coordinated Universal Time) https://www.youtube.com/@ViaLIVE

@alivkakakakal

star

Sun Nov 05 2023 18:14:29 GMT+0000 (Coordinated Universal Time) https://wordpress.com/support/markdown-quick-reference/

@SapphireElite #markdown

star

Sun Nov 05 2023 18:13:49 GMT+0000 (Coordinated Universal Time) https://wordpress.com/support/markdown-quick-reference/

@SapphireElite #markdown

star

Sun Nov 05 2023 18:09:32 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sun Nov 05 2023 18:08:14 GMT+0000 (Coordinated Universal Time) https://wordpress.com/support/markdown-quick-reference/

@SapphireElite ##scripting ##markdown

star

Sun Nov 05 2023 16:51:05 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sun Nov 05 2023 16:44:56 GMT+0000 (Coordinated Universal Time)

@milliedavidson #mac #terminal #commandline

star

Sun Nov 05 2023 15:34:09 GMT+0000 (Coordinated Universal Time) https://chat.openai.com/

@47daniel

star

Sun Nov 05 2023 08:10:15 GMT+0000 (Coordinated Universal Time) https://www.skillsandslots.com/

@alively78

star

Sun Nov 05 2023 07:36:07 GMT+0000 (Coordinated Universal Time)

@StephenThevar #react.js

star

Sun Nov 05 2023 07:03:36 GMT+0000 (Coordinated Universal Time) https://www.freecodecamp.org/news/bash-scripting-tutorial-linux-shell-script-and-command-line-for-beginners/

@hirsch

star

Sun Nov 05 2023 04:28:47 GMT+0000 (Coordinated Universal Time) https://www.imadatyat.me/guides/schema-validation-with-zod-and-expressjs

@sadik #javascript #express #zod #backend

star

Sat Nov 04 2023 23:08:28 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/20606467/get-text-occurrences-contained-in-a-specified-area-with-itextsharp

@javicinhio

star

Sat Nov 04 2023 16:08:16 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sat Nov 04 2023 15:41:02 GMT+0000 (Coordinated Universal Time) https://github.com/piktokenn/ChatGPTAPIFree

@pikto #bash

star

Sat Nov 04 2023 09:42:51 GMT+0000 (Coordinated Universal Time) https://www.beleaftechnologies.com/dapp-development-company

@kevindhruv1 ##dapp ##dapps ##blockchain ##crypto ##app ##javascript ##bitcoin ##dappdevelopment ##web3 ##tron

star

Sat Nov 04 2023 09:09:45 GMT+0000 (Coordinated Universal Time) https://www.blockchainappfactory.com/nft-gaming-platform-development

@evaconner ##nftgamingplatform #nft #nftgaming

star

Sat Nov 04 2023 08:50:33 GMT+0000 (Coordinated Universal Time)

@pikto #html

star

Sat Nov 04 2023 08:44:28 GMT+0000 (Coordinated Universal Time) https://script.viserlab.com/icolab/

@pikto #html

star

Fri Nov 03 2023 14:34:48 GMT+0000 (Coordinated Universal Time)

@shubhangi_burle

star

Fri Nov 03 2023 13:47:17 GMT+0000 (Coordinated Universal Time)

@vs #bash

Save snippets that work with our extensions

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