sql stringlengths 6 1.05M |
|---|
<gh_stars>0
-- drop set_article
drop function if exists i_article_cancel(id integer, author_id integer);
create function i_article_cancel(integer, integer)
returns integer as $$
declare
rt integer = 1;
begin
-- raise notice '% % % %', title, content, state, author_id;
update i_articles set(canceled) = (true) where id = $1;
return rt;
end;
$$ language plpgsql strict;
|
/*
LeetCode 1393. Capital Gain/Loss
https://leetcode.com/problems/capital-gainloss/
*/
SELECT
stock_name,
SUM(
CASE
WHEN operation = 'Sell'
THEN price
ELSE -price
END) as 'capital_gain_loss'
FROM Stocks
GROUP BY stock_name; |
CREATE VIEW [Sales].[vPersonDemographics]
AS
SELECT
p.[BusinessEntityID]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
TotalPurchaseYTD[1]', 'money') AS [TotalPurchaseYTD]
,CONVERT(datetime, REPLACE([IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
DateFirstPurchase[1]', 'nvarchar(20)') ,'Z', ''), 101) AS [DateFirstPurchase]
,CONVERT(datetime, REPLACE([IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
BirthDate[1]', 'nvarchar(20)') ,'Z', ''), 101) AS [BirthDate]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
MaritalStatus[1]', 'nvarchar(1)') AS [MaritalStatus]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
YearlyIncome[1]', 'nvarchar(30)') AS [YearlyIncome]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
Gender[1]', 'nvarchar(1)') AS [Gender]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
TotalChildren[1]', 'integer') AS [TotalChildren]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
NumberChildrenAtHome[1]', 'integer') AS [NumberChildrenAtHome]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
Education[1]', 'nvarchar(30)') AS [Education]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
Occupation[1]', 'nvarchar(30)') AS [Occupation]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
HomeOwnerFlag[1]', 'bit') AS [HomeOwnerFlag]
,[IndividualSurvey].[ref].[value](N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
NumberCarsOwned[1]', 'integer') AS [NumberCarsOwned]
FROM [Person].[Person] p
CROSS APPLY p.[Demographics].nodes(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/IndividualSurvey";
/IndividualSurvey') AS [IndividualSurvey](ref)
WHERE [Demographics] IS NOT NULL;
|
CREATE TABLE onetime_skips
(
id INT AUTO_INCREMENT NOT NULL COMMENT 'ID',
target_id INT NOT NULL COMMENT 'ssid_triggers or time_triggers ID',
target_type ENUM('ssid', 'time') NOT NULL COMMENT 'SSID or 時間',
created_at DATETIME NOT NULL COMMENT '作成日時',
updated_at DATETIME NOT NULL COMMENT '更新日時',
deleted_at DATETIME COMMENT '削除日時',
PRIMARY KEY (id)
) COMMENT '1度だけ実行をスキップする情報管理';
|
INSERT INTO stock_manager.products (name,`type`,in_stock,last_price,created_at,updated_at,deleted_at) VALUES
('Camaron','KG',0.0,0.0,'2020-06-06 01:10:56','2020-06-10 02:23:12','2020-06-10 02:23:12')
,('Camaron','KG',0.0,0.0,'2020-06-06 01:16:36','2020-06-10 02:23:21','2020-06-10 02:23:21')
,('Camaron','KG',0.0,34.0,'2020-06-06 01:16:43','2020-10-16 19:06:49',NULL)
,('Mojarra Limpia','KG',109.0,20.0,'2020-06-06 01:36:16','2020-10-19 17:18:21',NULL)
,('Mojarra','KG',56.77,29.0,'2020-06-06 01:38:36','2020-10-19 17:15:43',NULL)
,('Mojarra','KG',1000.0,20.03,'2020-06-06 01:39:10','2020-06-06 01:39:10',NULL)
,('Jaiba','KG',-1.0,29.0,'2020-06-16 01:04:36','2020-10-15 22:31:48',NULL)
,('<NAME>','KG',-1.0,0.0,'2020-06-16 01:05:21','2020-10-10 18:49:13',NULL)
,('Pulpo','KG',0.0,0.0,'2020-10-03 20:39:34','2020-10-03 20:39:34',NULL)
; |
USE [DBProDash]
GO
/****** Object: View [dbo].[vwPedidoFaturadoDetalhadoE13] Script Date: 12/05/2021 08:25:48 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
CREATE VIEW [dbo].[vwPedidoFaturadoDetalhadoE13]
AS
SELECT
VW_FaturamentoPorProdutoEmp13.Cod_Produto,
Produtos.Secao,
Produtos.Grupo,
Produtos.Subgrupo,
VW_FaturamentoPorProdutoEmp13.Nr_Nota AS NFe,
VW_FaturamentoPorProdutoEmp13.Nosso_Pedido AS Pedido,
VW_FaturamentoPorProdutoEmp13.Cod_Cliente,
Vw_Cliente_Endereco_SPED.Cob_Estado,
ISNULL(SUM(VW_FaturamentoPorProdutoEmp13.Metros),0) AS Metros,
VW_FaturamentoPorProdutoEmp13.Vr_Nota AS ValorTotal,
ISNULL(SUM(VW_FaturamentoPorProdutoEmp13.Vr_Total_Item),0) AS ValorTotalItens,
VW_FaturamentoPorProdutoEmp13.Data_Nota AS DataNFe,
VW_FaturamentoPorProdutoEmp13.Fat_Itens_GrupoNatOP AS GrupoOperacao,
VW_FaturamentoPorProdutoEmp13.Data_Nota,
VW_FaturamentoPorProdutoEmp13.NatOperacao
FROM
VW_FaturamentoPorProdutoEmp13
INNER JOIN DBMicrodata_DGB.dbo.Produtos ON Produtos.Codigo = VW_FaturamentoPorProdutoEmp13.Cod_Produto
INNER JOIN DBMicrodata_DGB.dbo.Vw_Cliente_Endereco_SPED ON Vw_Cliente_Endereco_SPED.Cliente = VW_FaturamentoPorProdutoEmp13.Cod_Cliente
WHERE
VW_FaturamentoPorProdutoEmp13.NatOperacao NOT IN ('5.551-1','5.553-1','5.556-1','5.901-1','5.901-2','5.902-1','5.903-1','5.905-1','5.906-1')
GROUP BY
VW_FaturamentoPorProdutoEmp13.NatOperacao,
VW_FaturamentoPorProdutoEmp13.Nr_Nota,
VW_FaturamentoPorProdutoEmp13.Nosso_Pedido,
VW_FaturamentoPorProdutoEmp13.Cod_Cliente,
Vw_Cliente_Endereco_SPED.Cob_Estado,
VW_FaturamentoPorProdutoEmp13.Cod_Produto,
Produtos.Secao,
Produtos.Grupo,
Produtos.Subgrupo,
VW_FaturamentoPorProdutoEmp13.Vr_Nota,
VW_FaturamentoPorProdutoEmp13.Data_Nota,
VW_FaturamentoPorProdutoEmp13.Fat_Itens_GrupoNatOP,
VW_FaturamentoPorProdutoEmp13.Cod_Produto,
VW_FaturamentoPorProdutoEmp13.Data_Nota;
GO
|
CREATE TABLE country (id VARCHAR(2) NOT NULL, name VARCHAR(64) NOT NULL, PRIMARY KEY(id));
INSERT INTO "country" ("id", "name") VALUES ('AF', 'Afganistan');
INSERT INTO "country" ("id", "name") VALUES ('AX', 'Ahvenanmaa');
INSERT INTO "country" ("id", "name") VALUES ('NL', 'Alankomaat');
INSERT INTO "country" ("id", "name") VALUES ('AN', 'Alankomaiden Antillit');
INSERT INTO "country" ("id", "name") VALUES ('AL', 'Albania');
INSERT INTO "country" ("id", "name") VALUES ('DZ', 'Algeria');
INSERT INTO "country" ("id", "name") VALUES ('AS', 'Amerikan Samoa');
INSERT INTO "country" ("id", "name") VALUES ('AD', 'Andorra');
INSERT INTO "country" ("id", "name") VALUES ('AO', 'Angola');
INSERT INTO "country" ("id", "name") VALUES ('AI', 'Anguilla');
INSERT INTO "country" ("id", "name") VALUES ('AQ', 'Antarktis');
INSERT INTO "country" ("id", "name") VALUES ('AG', 'Antigua ja Barbuda');
INSERT INTO "country" ("id", "name") VALUES ('AE', 'Arabiemiirikunnat');
INSERT INTO "country" ("id", "name") VALUES ('AR', 'Argentiina');
INSERT INTO "country" ("id", "name") VALUES ('AM', 'Armenia');
INSERT INTO "country" ("id", "name") VALUES ('AW', 'Aruba');
INSERT INTO "country" ("id", "name") VALUES ('AU', 'Australia');
INSERT INTO "country" ("id", "name") VALUES ('AZ', 'Azerbaidžan');
INSERT INTO "country" ("id", "name") VALUES ('BS', 'Bahama');
INSERT INTO "country" ("id", "name") VALUES ('BH', 'Bahrain');
INSERT INTO "country" ("id", "name") VALUES ('BD', 'Bangladesh');
INSERT INTO "country" ("id", "name") VALUES ('BB', 'Barbados');
INSERT INTO "country" ("id", "name") VALUES ('BE', 'Belgia');
INSERT INTO "country" ("id", "name") VALUES ('BZ', 'Belize');
INSERT INTO "country" ("id", "name") VALUES ('BJ', 'Benin');
INSERT INTO "country" ("id", "name") VALUES ('BM', 'Bermuda');
INSERT INTO "country" ("id", "name") VALUES ('BT', 'Bhutan');
INSERT INTO "country" ("id", "name") VALUES ('BO', 'Bolivia');
INSERT INTO "country" ("id", "name") VALUES ('BA', 'Bosnia ja Hertsegovina');
INSERT INTO "country" ("id", "name") VALUES ('BW', 'Botswana');
INSERT INTO "country" ("id", "name") VALUES ('BV', 'Bouvet’nsaari');
INSERT INTO "country" ("id", "name") VALUES ('BR', 'Brasilia');
INSERT INTO "country" ("id", "name") VALUES ('GB', 'Britannia');
INSERT INTO "country" ("id", "name") VALUES ('IO', 'Brittiläinen Intian valtameren alue');
INSERT INTO "country" ("id", "name") VALUES ('VG', 'Brittiläiset Neitsytsaaret');
INSERT INTO "country" ("id", "name") VALUES ('BN', 'Brunei');
INSERT INTO "country" ("id", "name") VALUES ('BG', 'Bulgaria');
INSERT INTO "country" ("id", "name") VALUES ('BF', 'Burkina Faso');
INSERT INTO "country" ("id", "name") VALUES ('BI', 'Burundi');
INSERT INTO "country" ("id", "name") VALUES ('KY', 'Caymansaaret');
INSERT INTO "country" ("id", "name") VALUES ('CL', 'Chile');
INSERT INTO "country" ("id", "name") VALUES ('CK', 'Cookinsaaret');
INSERT INTO "country" ("id", "name") VALUES ('CR', 'Costa Rica');
INSERT INTO "country" ("id", "name") VALUES ('DJ', 'Djibouti');
INSERT INTO "country" ("id", "name") VALUES ('DM', 'Dominica');
INSERT INTO "country" ("id", "name") VALUES ('DO', 'Dominikaaninen tasavalta');
INSERT INTO "country" ("id", "name") VALUES ('EC', 'Ecuador');
INSERT INTO "country" ("id", "name") VALUES ('EG', 'Egypti');
INSERT INTO "country" ("id", "name") VALUES ('SV', 'El Salvador');
INSERT INTO "country" ("id", "name") VALUES ('ER', 'Eritrea');
INSERT INTO "country" ("id", "name") VALUES ('ES', 'Espanja');
INSERT INTO "country" ("id", "name") VALUES ('ZA', 'Etelä-Afrikka');
INSERT INTO "country" ("id", "name") VALUES ('GS', 'Etelä-Georgia ja Eteläiset Sandwichsaaret');
INSERT INTO "country" ("id", "name") VALUES ('KR', 'Etelä-Korea');
INSERT INTO "country" ("id", "name") VALUES ('ET', 'Etiopia');
INSERT INTO "country" ("id", "name") VALUES ('FK', 'Falklandinsaaret');
INSERT INTO "country" ("id", "name") VALUES ('FJ', 'Fidži');
INSERT INTO "country" ("id", "name") VALUES ('PH', 'Filippiinit');
INSERT INTO "country" ("id", "name") VALUES ('FO', 'Färsaaret');
INSERT INTO "country" ("id", "name") VALUES ('GA', 'Gabon');
INSERT INTO "country" ("id", "name") VALUES ('GM', 'Gambia');
INSERT INTO "country" ("id", "name") VALUES ('GE', 'Georgia');
INSERT INTO "country" ("id", "name") VALUES ('GH', 'Ghana');
INSERT INTO "country" ("id", "name") VALUES ('GI', 'Gibraltar');
INSERT INTO "country" ("id", "name") VALUES ('GD', 'Grenada');
INSERT INTO "country" ("id", "name") VALUES ('GL', 'Grönlanti');
INSERT INTO "country" ("id", "name") VALUES ('GP', 'Guadeloupe');
INSERT INTO "country" ("id", "name") VALUES ('GU', 'Guam');
INSERT INTO "country" ("id", "name") VALUES ('GT', 'Guatemala');
INSERT INTO "country" ("id", "name") VALUES ('GG', 'Guernsey');
INSERT INTO "country" ("id", "name") VALUES ('GN', 'Guinea');
INSERT INTO "country" ("id", "name") VALUES ('GW', 'Guinea-Bissau');
INSERT INTO "country" ("id", "name") VALUES ('GY', 'Guyana');
INSERT INTO "country" ("id", "name") VALUES ('HT', 'Haiti');
INSERT INTO "country" ("id", "name") VALUES ('HM', 'Heard- ja McDonaldinsaaret');
INSERT INTO "country" ("id", "name") VALUES ('HN', 'Honduras');
INSERT INTO "country" ("id", "name") VALUES ('HK', 'Hongkong – Kiinan erityishallintoalue');
INSERT INTO "country" ("id", "name") VALUES ('SJ', 'Huippuvuoret ja Jan Mayen');
INSERT INTO "country" ("id", "name") VALUES ('ID', 'Indonesia');
INSERT INTO "country" ("id", "name") VALUES ('IN', 'Intia');
INSERT INTO "country" ("id", "name") VALUES ('IQ', 'Irak');
INSERT INTO "country" ("id", "name") VALUES ('IR', 'Iran');
INSERT INTO "country" ("id", "name") VALUES ('IE', 'Irlanti');
INSERT INTO "country" ("id", "name") VALUES ('IS', 'Islanti');
INSERT INTO "country" ("id", "name") VALUES ('IL', 'Israel');
INSERT INTO "country" ("id", "name") VALUES ('IT', 'Italia');
INSERT INTO "country" ("id", "name") VALUES ('TL', 'Itä-Timor');
INSERT INTO "country" ("id", "name") VALUES ('AT', 'Itävalta');
INSERT INTO "country" ("id", "name") VALUES ('JM', 'Jamaika');
INSERT INTO "country" ("id", "name") VALUES ('JP', 'Japani');
INSERT INTO "country" ("id", "name") VALUES ('YE', 'Jemen');
INSERT INTO "country" ("id", "name") VALUES ('JE', 'Jersey');
INSERT INTO "country" ("id", "name") VALUES ('JO', 'Jordania');
INSERT INTO "country" ("id", "name") VALUES ('CX', 'Joulusaari');
INSERT INTO "country" ("id", "name") VALUES ('KH', 'Kambodža');
INSERT INTO "country" ("id", "name") VALUES ('CM', 'Kamerun');
INSERT INTO "country" ("id", "name") VALUES ('CA', 'Kanada');
INSERT INTO "country" ("id", "name") VALUES ('CV', 'Kap Verde');
INSERT INTO "country" ("id", "name") VALUES ('KZ', 'Kazakstan');
INSERT INTO "country" ("id", "name") VALUES ('KE', 'Kenia');
INSERT INTO "country" ("id", "name") VALUES ('CF', 'Keski-Afrikan tasavalta');
INSERT INTO "country" ("id", "name") VALUES ('CN', 'Kiina');
INSERT INTO "country" ("id", "name") VALUES ('KG', 'Kirgisia');
INSERT INTO "country" ("id", "name") VALUES ('KI', 'Kiribati');
INSERT INTO "country" ("id", "name") VALUES ('CO', 'Kolumbia');
INSERT INTO "country" ("id", "name") VALUES ('KM', 'Komorit');
INSERT INTO "country" ("id", "name") VALUES ('CG', 'Kongo-Brazzaville');
INSERT INTO "country" ("id", "name") VALUES ('CD', 'Kongo-Kinshasa');
INSERT INTO "country" ("id", "name") VALUES ('CC', 'Kookossaaret');
INSERT INTO "country" ("id", "name") VALUES ('GR', 'Kreikka');
INSERT INTO "country" ("id", "name") VALUES ('HR', 'Kroatia');
INSERT INTO "country" ("id", "name") VALUES ('CU', 'Kuuba');
INSERT INTO "country" ("id", "name") VALUES ('KW', 'Kuwait');
INSERT INTO "country" ("id", "name") VALUES ('CY', 'Kypros');
INSERT INTO "country" ("id", "name") VALUES ('LA', 'Laos');
INSERT INTO "country" ("id", "name") VALUES ('LV', 'Latvia');
INSERT INTO "country" ("id", "name") VALUES ('LS', 'Lesotho');
INSERT INTO "country" ("id", "name") VALUES ('LB', 'Libanon');
INSERT INTO "country" ("id", "name") VALUES ('LR', 'Liberia');
INSERT INTO "country" ("id", "name") VALUES ('LY', 'Libya');
INSERT INTO "country" ("id", "name") VALUES ('LI', 'Liechtenstein');
INSERT INTO "country" ("id", "name") VALUES ('LT', 'Liettua');
INSERT INTO "country" ("id", "name") VALUES ('LU', 'Luxemburg');
INSERT INTO "country" ("id", "name") VALUES ('EH', 'Länsi-Sahara');
INSERT INTO "country" ("id", "name") VALUES ('MO', 'Macao – Kiinan erityishallintoalue');
INSERT INTO "country" ("id", "name") VALUES ('MG', 'Madagaskar');
INSERT INTO "country" ("id", "name") VALUES ('MK', 'Makedonia');
INSERT INTO "country" ("id", "name") VALUES ('MW', 'Malawi');
INSERT INTO "country" ("id", "name") VALUES ('MV', 'Malediivit');
INSERT INTO "country" ("id", "name") VALUES ('MY', 'Malesia');
INSERT INTO "country" ("id", "name") VALUES ('ML', 'Mali');
INSERT INTO "country" ("id", "name") VALUES ('MT', 'Malta');
INSERT INTO "country" ("id", "name") VALUES ('IM', 'Mansaari');
INSERT INTO "country" ("id", "name") VALUES ('MA', 'Marokko');
INSERT INTO "country" ("id", "name") VALUES ('MH', 'Marshallinsaaret');
INSERT INTO "country" ("id", "name") VALUES ('MQ', 'Martinique');
INSERT INTO "country" ("id", "name") VALUES ('MR', 'Mauritania');
INSERT INTO "country" ("id", "name") VALUES ('MU', 'Mauritius');
INSERT INTO "country" ("id", "name") VALUES ('YT', 'Mayotte');
INSERT INTO "country" ("id", "name") VALUES ('MX', 'Meksiko');
INSERT INTO "country" ("id", "name") VALUES ('FM', 'Mikronesian liittovaltio');
INSERT INTO "country" ("id", "name") VALUES ('MD', 'Moldova');
INSERT INTO "country" ("id", "name") VALUES ('MC', 'Monaco');
INSERT INTO "country" ("id", "name") VALUES ('MN', 'Mongolia');
INSERT INTO "country" ("id", "name") VALUES ('ME', 'Montenegro');
INSERT INTO "country" ("id", "name") VALUES ('MS', 'Montserrat');
INSERT INTO "country" ("id", "name") VALUES ('MZ', 'Mosambik');
INSERT INTO "country" ("id", "name") VALUES ('MM', 'Myanmar');
INSERT INTO "country" ("id", "name") VALUES ('NA', 'Namibia');
INSERT INTO "country" ("id", "name") VALUES ('NR', 'Nauru');
INSERT INTO "country" ("id", "name") VALUES ('NP', 'Nepal');
INSERT INTO "country" ("id", "name") VALUES ('NI', 'Nicaragua');
INSERT INTO "country" ("id", "name") VALUES ('NE', 'Niger');
INSERT INTO "country" ("id", "name") VALUES ('NG', 'Nigeria');
INSERT INTO "country" ("id", "name") VALUES ('NU', 'Niue');
INSERT INTO "country" ("id", "name") VALUES ('NF', 'Norfolkinsaari');
INSERT INTO "country" ("id", "name") VALUES ('NO', 'Norja');
INSERT INTO "country" ("id", "name") VALUES ('CI', 'Norsunluurannikko');
INSERT INTO "country" ("id", "name") VALUES ('OM', 'Oman');
INSERT INTO "country" ("id", "name") VALUES ('PK', 'Pakistan');
INSERT INTO "country" ("id", "name") VALUES ('PW', 'Palau');
INSERT INTO "country" ("id", "name") VALUES ('PS', 'Palestiina');
INSERT INTO "country" ("id", "name") VALUES ('PA', 'Panama');
INSERT INTO "country" ("id", "name") VALUES ('PG', 'Papua-Uusi-Guinea');
INSERT INTO "country" ("id", "name") VALUES ('PY', 'Paraguay');
INSERT INTO "country" ("id", "name") VALUES ('PE', 'Peru');
INSERT INTO "country" ("id", "name") VALUES ('PN', 'Pitcairn');
INSERT INTO "country" ("id", "name") VALUES ('KP', 'Pohjois-Korea');
INSERT INTO "country" ("id", "name") VALUES ('MP', 'Pohjois-Mariaanit');
INSERT INTO "country" ("id", "name") VALUES ('PT', 'Portugali');
INSERT INTO "country" ("id", "name") VALUES ('PR', 'Puerto Rico');
INSERT INTO "country" ("id", "name") VALUES ('PL', 'Puola');
INSERT INTO "country" ("id", "name") VALUES ('GQ', 'Päiväntasaajan Guinea');
INSERT INTO "country" ("id", "name") VALUES ('QA', 'Qatar');
INSERT INTO "country" ("id", "name") VALUES ('FR', 'Ranska');
INSERT INTO "country" ("id", "name") VALUES ('GF', 'Ranskan Guayana');
INSERT INTO "country" ("id", "name") VALUES ('PF', 'Ranskan Polynesia');
INSERT INTO "country" ("id", "name") VALUES ('TF', 'Ranskan ulkopuoliset eteläiset alueet');
INSERT INTO "country" ("id", "name") VALUES ('RO', 'Romania');
INSERT INTO "country" ("id", "name") VALUES ('RW', 'Ruanda');
INSERT INTO "country" ("id", "name") VALUES ('SE', 'Ruotsi');
INSERT INTO "country" ("id", "name") VALUES ('RE', 'Réunion');
INSERT INTO "country" ("id", "name") VALUES ('SH', 'Saint Helena');
INSERT INTO "country" ("id", "name") VALUES ('KN', 'Saint Kitts ja Nevis');
INSERT INTO "country" ("id", "name") VALUES ('LC', 'Saint Lucia');
INSERT INTO "country" ("id", "name") VALUES ('VC', 'Saint Vincent ja Grenadiinit');
INSERT INTO "country" ("id", "name") VALUES ('BL', 'Saint-Barthélemy');
INSERT INTO "country" ("id", "name") VALUES ('MF', 'Saint-Martin');
INSERT INTO "country" ("id", "name") VALUES ('PM', 'Saint-Pierre ja Miquelon');
INSERT INTO "country" ("id", "name") VALUES ('DE', 'Saksa');
INSERT INTO "country" ("id", "name") VALUES ('SB', 'Salomonsaaret');
INSERT INTO "country" ("id", "name") VALUES ('ZM', 'Sambia');
INSERT INTO "country" ("id", "name") VALUES ('WS', 'Samoa');
INSERT INTO "country" ("id", "name") VALUES ('SM', 'San Marino');
INSERT INTO "country" ("id", "name") VALUES ('SA', 'Saudi-Arabia');
INSERT INTO "country" ("id", "name") VALUES ('SN', 'Senegal');
INSERT INTO "country" ("id", "name") VALUES ('RS', 'Serbia');
INSERT INTO "country" ("id", "name") VALUES ('CS', 'Serbia ja Montenegro');
INSERT INTO "country" ("id", "name") VALUES ('SC', 'Seychellit');
INSERT INTO "country" ("id", "name") VALUES ('SL', 'Sierra Leone');
INSERT INTO "country" ("id", "name") VALUES ('SG', 'Singapore');
INSERT INTO "country" ("id", "name") VALUES ('SK', 'Slovakia');
INSERT INTO "country" ("id", "name") VALUES ('SI', 'Slovenia');
INSERT INTO "country" ("id", "name") VALUES ('SO', 'Somalia');
INSERT INTO "country" ("id", "name") VALUES ('LK', 'Sri Lanka');
INSERT INTO "country" ("id", "name") VALUES ('SD', 'Sudan');
INSERT INTO "country" ("id", "name") VALUES ('FI', 'Suomi');
INSERT INTO "country" ("id", "name") VALUES ('SR', 'Surinam');
INSERT INTO "country" ("id", "name") VALUES ('CH', 'Sveitsi');
INSERT INTO "country" ("id", "name") VALUES ('SZ', 'Swazimaa');
INSERT INTO "country" ("id", "name") VALUES ('SY', 'Syyria');
INSERT INTO "country" ("id", "name") VALUES ('ST', 'São Tomé ja Príncipe');
INSERT INTO "country" ("id", "name") VALUES ('TJ', 'Tadžikistan');
INSERT INTO "country" ("id", "name") VALUES ('TW', 'Taiwan');
INSERT INTO "country" ("id", "name") VALUES ('TZ', 'Tansania');
INSERT INTO "country" ("id", "name") VALUES ('DK', 'Tanska');
INSERT INTO "country" ("id", "name") VALUES ('TH', 'Thaimaa');
INSERT INTO "country" ("id", "name") VALUES ('TG', 'Togo');
INSERT INTO "country" ("id", "name") VALUES ('TK', 'Tokelau');
INSERT INTO "country" ("id", "name") VALUES ('TO', 'Tonga');
INSERT INTO "country" ("id", "name") VALUES ('TT', 'Trinidad ja Tobago');
INSERT INTO "country" ("id", "name") VALUES ('TN', 'Tunisia');
INSERT INTO "country" ("id", "name") VALUES ('TR', 'Turkki');
INSERT INTO "country" ("id", "name") VALUES ('TM', 'Turkmenistan');
INSERT INTO "country" ("id", "name") VALUES ('TC', 'Turks- ja Caicossaaret');
INSERT INTO "country" ("id", "name") VALUES ('TV', 'Tuvalu');
INSERT INTO "country" ("id", "name") VALUES ('TD', 'Tšad');
INSERT INTO "country" ("id", "name") VALUES ('CZ', 'Tšekki');
INSERT INTO "country" ("id", "name") VALUES ('UG', 'Uganda');
INSERT INTO "country" ("id", "name") VALUES ('UA', 'Ukraina');
INSERT INTO "country" ("id", "name") VALUES ('HU', 'Unkari');
INSERT INTO "country" ("id", "name") VALUES ('UY', 'Uruguay');
INSERT INTO "country" ("id", "name") VALUES ('NC', 'Uusi-Kaledonia');
INSERT INTO "country" ("id", "name") VALUES ('NZ', 'Uusi-Seelanti');
INSERT INTO "country" ("id", "name") VALUES ('UZ', 'Uzbekistan');
INSERT INTO "country" ("id", "name") VALUES ('BY', 'Valko-Venäjä');
INSERT INTO "country" ("id", "name") VALUES ('VU', 'Vanuatu');
INSERT INTO "country" ("id", "name") VALUES ('VA', 'Vatikaani');
INSERT INTO "country" ("id", "name") VALUES ('VE', 'Venezuela');
INSERT INTO "country" ("id", "name") VALUES ('RU', 'Venäjä');
INSERT INTO "country" ("id", "name") VALUES ('VN', 'Vietnam');
INSERT INTO "country" ("id", "name") VALUES ('EE', 'Viro');
INSERT INTO "country" ("id", "name") VALUES ('WF', 'Wallis ja Futuna');
INSERT INTO "country" ("id", "name") VALUES ('US', 'Yhdysvallat');
INSERT INTO "country" ("id", "name") VALUES ('VI', 'Yhdysvaltain Neitsytsaaret');
INSERT INTO "country" ("id", "name") VALUES ('UM', 'Yhdysvaltain pienet erillissaaret');
INSERT INTO "country" ("id", "name") VALUES ('ZW', 'Zimbabwe');
INSERT INTO "country" ("id", "name") VALUES ('ZZ', 'tuntematon tai virheellinen alue');
|
<filename>VS2013_PROJECT/DNN_DB/dbo/Stored Procedures/dnn_UpdateModuleDefinition.sql
CREATE PROCEDURE [dbo].[dnn_UpdateModuleDefinition]
@ModuleDefId int,
@FriendlyName nvarchar(128),
@DefinitionName nvarchar(128),
@DefaultCacheTime int,
@LastModifiedByUserID int
as
update dbo.dnn_ModuleDefinitions
SET FriendlyName = @FriendlyName,
DefinitionName = @DefinitionName,
DefaultCacheTime = @DefaultCacheTime,
LastModifiedByUserID = @LastModifiedByUserID,
LastModifiedOnDate = getdate()
WHERE ModuleDefId = @ModuleDefId
|
<filename>VS2013_PROJECT/DNN_DB/dbo/Stored Procedures/dnn_Journal_Types_Save.sql
CREATE PROCEDURE [dbo].[dnn_Journal_Types_Save]
@JournalTypeId int,
@JournalType nvarchar(25),
@icon nvarchar(25),
@PortalId int,
@IsEnabled bit,
@AppliesToProfile bit,
@AppliesToGroup bit,
@AppliesToStream bit,
@options nvarchar(max),
@SupportsNotify bit
AS
IF EXISTS(SELECT JournalTypeId from dbo.[dnn_Journal_Types] WHERE JournalTypeId=@JournalTypeId AND PortalId = @PortalId)
BEGIN
UPDATE dbo.[dnn_Journal_Types]
SET
JournalType=@JournalType,
icon=@icon,
IsEnabled = @IsEnabled,
AppliesToProfile = @AppliesToProfile,
AppliesToGroup = @AppliesToGroup,
AppliesToStream = @AppliesToStream,
Options = @options,
SupportsNotify = @SupportsNotify
WHERE
PortalId = @PortalId AND JournalTypeId = @JournalTypeId
END
ELSE
BEGIN
SET @JournalTypeId = (SELECT MAX(JournalTypeId)+1 FROM dbo.[dnn_Journal_Types])
INSERT INTO dbo.[dnn_Journal_Types]
(JournalTypeId, JournalType, icon, PortalId, IsEnabled, AppliesToProfile, AppliesToGroup, AppliesToStream, Options, SupportsNotify)
VALUES
(@JournalTypeId, @JournalType, @icon, @PortalId, @IsEnabled, @AppliesToProfile, @AppliesToGroup, @AppliesToStream, @options, @SupportsNotify)
END
SELECT @JournalTypeId
|
TRUNCATE TABLE fm_region_type_userdef;
COMMIT;
|
<reponame>mikiec84/rodi<filename>data/conference2sigkdd/dump.sql
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
DROP SCHEMA IF EXISTS conference2sigkdd CASCADE;
CREATE SCHEMA conference2sigkdd;
SET search_path = conference2sigkdd, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
CREATE TABLE abstracts (
id integer NOT NULL,
th_part integer,
text character varying(305),
submitted_at integer
);
CREATE TABLE belongs_to_reviewers (
entity integer NOT NULL,
reviewer integer NOT NULL
);
CREATE TABLE committee_co_chair (
cid integer NOT NULL,
pid integer NOT NULL
);
CREATE TABLE committee_person (
cid integer NOT NULL,
pid integer NOT NULL
);
CREATE TABLE committees (
id integer NOT NULL,
name character varying(29),
committee_chair integer,
was_program_committee integer,
type integer DEFAULT 0
);
CREATE TABLE conference_documents (
id integer NOT NULL,
date_issue date,
url character varying(22),
type integer DEFAULT 0
);
CREATE TABLE conference_fees (
id integer NOT NULL,
amount character varying(3)
);
CREATE TABLE conference_proceedings (
id integer NOT NULL,
publisher integer,
volume integer,
name character varying(26),
isbn character varying(13)
);
CREATE TABLE conference_volumes (
id integer NOT NULL,
program_committee integer,
organizing_committ integer,
location character varying(16),
steering_committee integer,
important_dates integer,
name character varying(6)
);
CREATE TABLE emails (
person integer NOT NULL,
value character varying(43) NOT NULL
);
CREATE TABLE important_dates (
id integer NOT NULL,
date_acceptance_a date,
full_paper_submissio date,
date_camera_ready date,
ending_date date,
starting_date date,
abstract_submission date
);
CREATE TABLE invited_talks (
id integer NOT NULL,
given integer,
abstract integer,
submitted_at integer
);
CREATE TABLE organizations (
id integer NOT NULL,
name character varying(199)
);
CREATE TABLE organizers (
id integer NOT NULL
);
CREATE TABLE organizing_committees (
id integer NOT NULL,
was_an_organizing_committ integer
);
CREATE TABLE papers (
id integer NOT NULL,
abstract integer,
paper_title character varying(200),
submitted_at integer,
type integer DEFAULT 0
);
CREATE TABLE person_conference_document (
pid integer NOT NULL,
cid integer NOT NULL
);
CREATE TABLE person_person (
reviewer1 integer NOT NULL,
reviewer2 integer NOT NULL
);
CREATE TABLE persons (
id integer NOT NULL,
first_name character varying(14),
last_name character varying(13),
gender character varying(1),
conference_contributor boolean DEFAULT false,
contribution_co_author boolean DEFAULT false,
committee_member boolean DEFAULT false,
chair boolean DEFAULT false,
contribution_1th_author boolean DEFAULT false,
reviewer boolean DEFAULT false,
type integer DEFAULT 0
);
CREATE TABLE posters (
id integer NOT NULL,
abstract integer,
submitted_at integer
);
CREATE TABLE publishers (
id integer NOT NULL,
name character varying(199)
);
CREATE TABLE review_expertises (
id integer NOT NULL,
expertise character varying(199),
submitted_contribut integer
);
CREATE TABLE review_preferences (
id integer NOT NULL,
belongs_to_review_refer integer,
degree integer,
topic_or_submissi integer
);
CREATE TABLE reviews (
id integer NOT NULL,
reviews integer,
detailed_comments character varying(191)
);
CREATE TABLE steering_committees (
id integer NOT NULL,
was_steering_committee_ integer
);
CREATE TABLE topic_tutorial (
conference_part integer NOT NULL,
topic integer NOT NULL
);
CREATE TABLE topics (
id integer NOT NULL,
name character varying(199)
);
CREATE TABLE tracks (
id integer NOT NULL,
tracks integer,
track_workshop_tuto integer,
part_conference_vol integer,
name character varying(199)
);
CREATE TABLE tutorials (
id integer NOT NULL,
tutorials integer,
part_conference_vol integer,
name character varying(199)
);
CREATE TABLE workshops (
id integer NOT NULL,
track_workshop_tuto integer,
workshops integer,
part_conference_vol integer,
name character varying(199)
);
COPY abstracts (id, th_part, text, submitted_at) FROM stdin;
1125 377 attractive yeller cognizably reminds teratoid coadjutors thuggeries nondestructive maladjustments attractive yeller cognizably reminds teratoid coadjutors thuggeries nondestructive maladjustments attractive yeller cognizably reminds teratoid coadjutors thuggeries nondestructive maladjustments \N
1158 1159 photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts \N
1184 647 plateauing reoccupations embossers cerebrum gloves mohairs admiralties bewigged plateauing reoccupations embossers cerebrum gloves mohairs admiralties bewigged plateauing reoccupations embossers cerebrum gloves mohairs admiralties bewigged \N
1205 1206 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman \N
1212 748 slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens \N
1233 265 summable heliocentricity excretions recelebrating summable heliocentricity excretions recelebrating summable heliocentricity excretions recelebrating \N
1234 512 recollected householder overeducated objurgate treaties preprocessor recollected householder overeducated objurgate treaties preprocessor recollected householder overeducated objurgate treaties preprocessor \N
1241 1242 dumpers bering evasiveness toto dumpers bering evasiveness toto dumpers bering evasiveness toto \N
1244 1245 recalculation safest signiory latchets inflecting trephines hops recalculation safest signiory latchets inflecting trephines hops recalculation safest signiory latchets inflecting trephines hops \N
1249 485 bewitchment cheaters riffled kerneling napoleons rifer bewitchment cheaters riffled kerneling napoleons rifer bewitchment cheaters riffled kerneling napoleons rifer \N
1252 565 pasturage thurifer teazle fringier pasturage thurifer teazle fringier pasturage thurifer teazle fringier \N
1263 873 extradites stollens ponderers conditione loathly cancels debiting extradites stollens ponderers conditione loathly cancels debiting extradites stollens ponderers conditione loathly cancels debiting \N
897 813 cheaters riffled kerneling napoleons cheaters riffled kerneling napoleons cheaters riffled kerneling napoleons \N
1872 495 vagus kinkiest xix recollected householder vagus kinkiest xix recollected householder vagus kinkiest xix recollected householder \N
2182 2108 cerebrum gloves mohairs admiralties cerebrum gloves mohairs admiralties cerebrum gloves mohairs admiralties \N
1279 388 prs bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier prs bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier prs bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier \N
1287 1288 grunts venturers valiantly unremorsefully extradites grunts venturers valiantly unremorsefully extradites grunts venturers valiantly unremorsefully extradites \N
1301 1302 skeins equalled sandwiching bewitchment skeins equalled sandwiching bewitchment skeins equalled sandwiching bewitchment \N
1308 1145 exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing \N
1319 1267 surges preheats loggias reconciliating photocatalyst surges preheats loggias reconciliating photocatalyst surges preheats loggias reconciliating photocatalyst \N
183 179 swiveled polers oinked apnea maxillary swiveled polers oinked apnea maxillary swiveled polers oinked apnea maxillary \N
1351 913 cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill \N
212 208 pirog desexes summable heliocentricity excretions recelebrating pirog desexes summable heliocentricity excretions recelebrating pirog desexes summable heliocentricity excretions recelebrating \N
1365 1366 peeped daydreams permuting immediately canzona interrelated cooked reformers goodwife peeped daydreams permuting immediately canzona interrelated cooked reformers goodwife peeped daydreams permuting immediately canzona interrelated cooked reformers goodwife \N
1367 716 preheats loggias reconciliating photocatalyst lenity tautological jambing sodality preheats loggias reconciliating photocatalyst lenity tautological jambing sodality preheats loggias reconciliating photocatalyst lenity tautological jambing sodality \N
1380 1025 loftily yabber reprovingly blungers dwarflike effulgences coreless tuberculoses environs loftily yabber reprovingly blungers dwarflike effulgences coreless tuberculoses environs loftily yabber reprovingly blungers dwarflike effulgences coreless tuberculoses environs \N
1390 543 exec junketeers isolators reducing exec junketeers isolators reducing exec junketeers isolators reducing \N
1406 319 batting waspishly stilbestrol villainousness miscalling batting waspishly stilbestrol villainousness miscalling batting waspishly stilbestrol villainousness miscalling \N
1412 904 evasiveness toto teashop reaccepts evasiveness toto teashop reaccepts evasiveness toto teashop reaccepts \N
1417 1418 undermentioned outflanking funnyman commuted lachrymation floweret undermentioned outflanking funnyman commuted lachrymation floweret undermentioned outflanking funnyman commuted lachrymation floweret \N
1421 417 plateauing reoccupations embossers cerebrum gloves plateauing reoccupations embossers cerebrum gloves plateauing reoccupations embossers cerebrum gloves \N
1442 156 villainousness miscalling firefanged skeins equalled sandwiching villainousness miscalling firefanged skeins equalled sandwiching villainousness miscalling firefanged skeins equalled sandwiching \N
402 397 toto teashop reaccepts gunneries exorcises pirog desexes toto teashop reaccepts gunneries exorcises pirog desexes toto teashop reaccepts gunneries exorcises pirog desexes \N
445 316 reoccupations embossers cerebrum gloves mohairs admiralties bewigged playgoers reoccupations embossers cerebrum gloves mohairs admiralties bewigged playgoers reoccupations embossers cerebrum gloves mohairs admiralties bewigged playgoers \N
472 469 bering evasiveness toto teashop reaccepts bering evasiveness toto teashop reaccepts bering evasiveness toto teashop reaccepts \N
17 16 dwelling scrapped prat islanded burlily dwelling scrapped prat islanded burlily dwelling scrapped prat islanded burlily \N
1471 835 brill neologic intermuscular fobbed transcribed brill neologic intermuscular fobbed transcribed brill neologic intermuscular fobbed transcribed \N
1474 747 overbites terminals giros podgy vagus kinkiest overbites terminals giros podgy vagus kinkiest overbites terminals giros podgy vagus kinkiest \N
1487 624 reaccepts gunneries exorcises pirog desexes summable reaccepts gunneries exorcises pirog desexes summable reaccepts gunneries exorcises pirog desexes summable \N
1507 612 surges preheats loggias reconciliating photocatalyst lenity tautological surges preheats loggias reconciliating photocatalyst lenity tautological surges preheats loggias reconciliating photocatalyst lenity tautological \N
1419 375 evasiveness toto teashop reaccepts gunneries exorcises evasiveness toto teashop reaccepts gunneries exorcises evasiveness toto teashop reaccepts gunneries exorcises \N
1521 11 summable heliocentricity excretions recelebrating dually plateauing summable heliocentricity excretions recelebrating dually plateauing summable heliocentricity excretions recelebrating dually plateauing \N
1530 1342 playgoers cheques batting waspishly stilbestrol villainousness miscalling playgoers cheques batting waspishly stilbestrol villainousness miscalling playgoers cheques batting waspishly stilbestrol villainousness miscalling \N
1540 1002 riffled kerneling napoleons rifer splinting surmisers satisfying undamped riffled kerneling napoleons rifer splinting surmisers satisfying undamped riffled kerneling napoleons rifer splinting surmisers satisfying undamped \N
661 658 heliocentricity excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves heliocentricity excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves heliocentricity excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves \N
679 674 prat islanded burlily thanklessly swiveled polers prat islanded burlily thanklessly swiveled polers prat islanded burlily thanklessly swiveled polers \N
221 218 decentralizing hogfishes gantleted richer succories dwelling decentralizing hogfishes gantleted richer succories dwelling decentralizing hogfishes gantleted richer succories dwelling \N
706 705 embossers cerebrum gloves mohairs admiralties bewigged playgoers embossers cerebrum gloves mohairs admiralties bewigged playgoers embossers cerebrum gloves mohairs admiralties bewigged playgoers \N
1569 47 extradites stollens ponderers conditione loathly cancels debiting extradites stollens ponderers conditione loathly cancels debiting extradites stollens ponderers conditione loathly cancels debiting \N
733 136 undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted \N
1579 583 plateauing reoccupations embossers cerebrum gloves plateauing reoccupations embossers cerebrum gloves plateauing reoccupations embossers cerebrum gloves \N
1586 622 kerneling napoleons rifer splinting surmisers satisfying undamped sharpers kerneling napoleons rifer splinting surmisers satisfying undamped sharpers kerneling napoleons rifer splinting surmisers satisfying undamped sharpers \N
1601 52 xix recollected householder overeducated objurgate treaties preprocessor despising loftily xix recollected householder overeducated objurgate treaties preprocessor despising loftily xix recollected householder overeducated objurgate treaties preprocessor despising loftily \N
1609 599 nonfiction retrogressions eliminates unknowns nonfiction retrogressions eliminates unknowns nonfiction retrogressions eliminates unknowns \N
1627 1440 skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons rifer skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons rifer skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons rifer \N
1636 1137 sharpers forbearer anesthetization undermentioned sharpers forbearer anesthetization undermentioned sharpers forbearer anesthetization undermentioned \N
1657 900 surges preheats loggias reconciliating photocatalyst surges preheats loggias reconciliating photocatalyst surges preheats loggias reconciliating photocatalyst \N
840 839 exorcises pirog desexes summable heliocentricity excretions recelebrating dually exorcises pirog desexes summable heliocentricity excretions recelebrating dually exorcises pirog desexes summable heliocentricity excretions recelebrating dually \N
856 853 sandwiching bewitchment cheaters riffled kerneling napoleons rifer splinting surmisers sandwiching bewitchment cheaters riffled kerneling napoleons rifer splinting surmisers sandwiching bewitchment cheaters riffled kerneling napoleons rifer splinting surmisers \N
1683 278 xix recollected householder overeducated objurgate treaties preprocessor despising loftily xix recollected householder overeducated objurgate treaties preprocessor despising loftily xix recollected householder overeducated objurgate treaties preprocessor despising loftily \N
881 880 loggias reconciliating photocatalyst lenity loggias reconciliating photocatalyst lenity loggias reconciliating photocatalyst lenity \N
1703 1704 rifer splinting surmisers satisfying undamped sharpers forbearer rifer splinting surmisers satisfying undamped sharpers forbearer rifer splinting surmisers satisfying undamped sharpers forbearer \N
1709 347 grunts venturers valiantly unremorsefully grunts venturers valiantly unremorsefully grunts venturers valiantly unremorsefully \N
1710 175 cancels debiting parrots paraguayans resonates overbites terminals giros cancels debiting parrots paraguayans resonates overbites terminals giros cancels debiting parrots paraguayans resonates overbites terminals giros \N
1723 65 brill neologic intermuscular fobbed transcribed brill neologic intermuscular fobbed transcribed brill neologic intermuscular fobbed transcribed \N
1733 188 malines cliffhanger entailments reindexed bedstraws thoughtless malines cliffhanger entailments reindexed bedstraws thoughtless malines cliffhanger entailments reindexed bedstraws thoughtless \N
1741 610 neurosurgeon innervated hunts barrens emanative blowpipe varies neurosurgeon innervated hunts barrens emanative blowpipe varies neurosurgeon innervated hunts barrens emanative blowpipe varies \N
1743 1537 rifer splinting surmisers satisfying undamped rifer splinting surmisers satisfying undamped rifer splinting surmisers satisfying undamped \N
1748 1344 floweret arcadian acridities unrealistic substituting surges floweret arcadian acridities unrealistic substituting surges floweret arcadian acridities unrealistic substituting surges \N
456 452 bering evasiveness toto teashop reaccepts bering evasiveness toto teashop reaccepts bering evasiveness toto teashop reaccepts \N
1760 1502 sodality outcrop slipcases phenylketonuria grunts venturers valiantly sodality outcrop slipcases phenylketonuria grunts venturers valiantly sodality outcrop slipcases phenylketonuria grunts venturers valiantly \N
1777 1778 playgoers cheques batting waspishly stilbestrol villainousness playgoers cheques batting waspishly stilbestrol villainousness playgoers cheques batting waspishly stilbestrol villainousness \N
1022 937 funnyman commuted lachrymation floweret arcadian funnyman commuted lachrymation floweret arcadian funnyman commuted lachrymation floweret arcadian \N
1786 503 cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins \N
1047 215 ponderers conditione loathly cancels debiting parrots ponderers conditione loathly cancels debiting parrots ponderers conditione loathly cancels debiting parrots \N
24 25 recelebrating dually plateauing reoccupations embossers recelebrating dually plateauing reoccupations embossers recelebrating dually plateauing reoccupations embossers \N
29 30 objurgate treaties preprocessor despising loftily yabber reprovingly objurgate treaties preprocessor despising loftily yabber reprovingly objurgate treaties preprocessor despising loftily yabber reprovingly \N
45 15 latchets inflecting trephines hops exec junketeers isolators reducing latchets inflecting trephines hops exec junketeers isolators reducing latchets inflecting trephines hops exec junketeers isolators reducing \N
49 50 kerneling napoleons rifer splinting surmisers satisfying undamped kerneling napoleons rifer splinting surmisers satisfying undamped kerneling napoleons rifer splinting surmisers satisfying undamped \N
60 61 rhythmical wastebaskets powderer immigrates inserter rhythmical wastebaskets powderer immigrates inserter rhythmical wastebaskets powderer immigrates inserter \N
76 77 conditione loathly cancels debiting parrots paraguayans resonates overbites conditione loathly cancels debiting parrots paraguayans resonates overbites conditione loathly cancels debiting parrots paraguayans resonates overbites \N
114 75 nonsurgical skimpiest outpoured dissociated heartier petitionee brill neologic intermuscular nonsurgical skimpiest outpoured dissociated heartier petitionee brill neologic intermuscular nonsurgical skimpiest outpoured dissociated heartier petitionee brill neologic intermuscular \N
150 151 exorcises pirog desexes summable exorcises pirog desexes summable exorcises pirog desexes summable \N
177 178 sandwiching bewitchment cheaters riffled kerneling sandwiching bewitchment cheaters riffled kerneling sandwiching bewitchment cheaters riffled kerneling \N
192 193 pirog desexes summable heliocentricity pirog desexes summable heliocentricity pirog desexes summable heliocentricity \N
207 139 loggias reconciliating photocatalyst lenity tautological jambing loggias reconciliating photocatalyst lenity tautological jambing loggias reconciliating photocatalyst lenity tautological jambing \N
225 226 apnea maxillary dumpers bering evasiveness toto apnea maxillary dumpers bering evasiveness toto apnea maxillary dumpers bering evasiveness toto \N
241 242 polers oinked apnea maxillary dumpers bering polers oinked apnea maxillary dumpers bering polers oinked apnea maxillary dumpers bering \N
249 250 outpoured dissociated heartier petitionee brill neologic intermuscular fobbed transcribed outpoured dissociated heartier petitionee brill neologic intermuscular fobbed transcribed outpoured dissociated heartier petitionee brill neologic intermuscular fobbed transcribed \N
259 260 desexes summable heliocentricity excretions recelebrating dually plateauing desexes summable heliocentricity excretions recelebrating dually plateauing desexes summable heliocentricity excretions recelebrating dually plateauing \N
280 281 immediately canzona interrelated cooked immediately canzona interrelated cooked immediately canzona interrelated cooked \N
285 286 photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts \N
328 329 blungers dwarflike effulgences coreless blungers dwarflike effulgences coreless blungers dwarflike effulgences coreless \N
361 362 reducing nethermost nonfiction retrogressions eliminates reducing nethermost nonfiction retrogressions eliminates reducing nethermost nonfiction retrogressions eliminates \N
393 394 toto teashop reaccepts gunneries exorcises toto teashop reaccepts gunneries exorcises toto teashop reaccepts gunneries exorcises \N
395 396 funnyman commuted lachrymation floweret arcadian acridities unrealistic funnyman commuted lachrymation floweret arcadian acridities unrealistic funnyman commuted lachrymation floweret arcadian acridities unrealistic \N
418 419 reoccupations embossers cerebrum gloves mohairs admiralties reoccupations embossers cerebrum gloves mohairs admiralties reoccupations embossers cerebrum gloves mohairs admiralties \N
439 440 prat islanded burlily thanklessly swiveled polers oinked prat islanded burlily thanklessly swiveled polers oinked prat islanded burlily thanklessly swiveled polers oinked \N
461 462 teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity \N
500 501 embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting \N
520 521 toto teashop reaccepts gunneries exorcises pirog toto teashop reaccepts gunneries exorcises pirog toto teashop reaccepts gunneries exorcises pirog \N
536 537 scrapped prat islanded burlily thanklessly swiveled scrapped prat islanded burlily thanklessly swiveled scrapped prat islanded burlily thanklessly swiveled \N
540 541 fobbed transcribed swifters redigesting ostinato recalculation fobbed transcribed swifters redigesting ostinato recalculation fobbed transcribed swifters redigesting ostinato recalculation \N
574 404 desexes summable heliocentricity excretions recelebrating dually plateauing desexes summable heliocentricity excretions recelebrating dually plateauing desexes summable heliocentricity excretions recelebrating dually plateauing \N
590 591 photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria \N
646 569 heliocentricity excretions recelebrating dually plateauing reoccupations embossers heliocentricity excretions recelebrating dually plateauing reoccupations embossers heliocentricity excretions recelebrating dually plateauing reoccupations embossers \N
668 467 cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins \N
680 681 kerneling napoleons rifer splinting surmisers satisfying undamped sharpers forbearer kerneling napoleons rifer splinting surmisers satisfying undamped sharpers forbearer kerneling napoleons rifer splinting surmisers satisfying undamped sharpers forbearer \N
693 157 excretions recelebrating dually plateauing excretions recelebrating dually plateauing excretions recelebrating dually plateauing \N
730 731 burlily thanklessly swiveled polers oinked apnea maxillary burlily thanklessly swiveled polers oinked apnea maxillary burlily thanklessly swiveled polers oinked apnea maxillary \N
738 551 hogfishes gantleted richer succories dwelling scrapped prat hogfishes gantleted richer succories dwelling scrapped prat hogfishes gantleted richer succories dwelling scrapped prat \N
744 745 gloves mohairs admiralties bewigged playgoers cheques batting waspishly gloves mohairs admiralties bewigged playgoers cheques batting waspishly gloves mohairs admiralties bewigged playgoers cheques batting waspishly \N
749 750 ponderers conditione loathly cancels debiting parrots paraguayans resonates ponderers conditione loathly cancels debiting parrots paraguayans resonates ponderers conditione loathly cancels debiting parrots paraguayans resonates \N
763 483 perspicuously disjoined nigglings midmonths labium peeped daydreams permuting perspicuously disjoined nigglings midmonths labium peeped daydreams permuting perspicuously disjoined nigglings midmonths labium peeped daydreams permuting \N
767 768 cerebrum gloves mohairs admiralties bewigged playgoers cerebrum gloves mohairs admiralties bewigged playgoers cerebrum gloves mohairs admiralties bewigged playgoers \N
781 609 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman \N
793 603 objurgate treaties preprocessor despising objurgate treaties preprocessor despising objurgate treaties preprocessor despising \N
806 232 mongoloids danker raunchiness perspicuously disjoined mongoloids danker raunchiness perspicuously disjoined mongoloids danker raunchiness perspicuously disjoined \N
807 808 gloves mohairs admiralties bewigged playgoers cheques batting waspishly stilbestrol gloves mohairs admiralties bewigged playgoers cheques batting waspishly stilbestrol gloves mohairs admiralties bewigged playgoers cheques batting waspishly stilbestrol \N
828 43 equalled sandwiching bewitchment cheaters equalled sandwiching bewitchment cheaters equalled sandwiching bewitchment cheaters \N
845 846 forbearer anesthetization undermentioned outflanking funnyman forbearer anesthetization undermentioned outflanking funnyman forbearer anesthetization undermentioned outflanking funnyman \N
865 866 preheats loggias reconciliating photocatalyst lenity tautological preheats loggias reconciliating photocatalyst lenity tautological preheats loggias reconciliating photocatalyst lenity tautological \N
876 877 desexes summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers desexes summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers desexes summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers \N
878 879 sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites \N
898 217 householder overeducated objurgate treaties householder overeducated objurgate treaties householder overeducated objurgate treaties \N
919 346 photocatalyst lenity tautological jambing sodality photocatalyst lenity tautological jambing sodality photocatalyst lenity tautological jambing sodality \N
921 357 satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman \N
945 614 extradites stollens ponderers conditione loathly extradites stollens ponderers conditione loathly extradites stollens ponderers conditione loathly \N
955 349 paraguayans resonates overbites terminals giros podgy vagus kinkiest xix paraguayans resonates overbites terminals giros podgy vagus kinkiest xix paraguayans resonates overbites terminals giros podgy vagus kinkiest xix \N
964 598 transcribed swifters redigesting ostinato recalculation safest transcribed swifters redigesting ostinato recalculation safest transcribed swifters redigesting ostinato recalculation safest \N
985 615 bedstraws thoughtless elation swampland earings circumscribed paralyzingly bedstraws thoughtless elation swampland earings circumscribed paralyzingly bedstraws thoughtless elation swampland earings circumscribed paralyzingly \N
1004 275 splinting surmisers satisfying undamped sharpers forbearer splinting surmisers satisfying undamped sharpers forbearer splinting surmisers satisfying undamped sharpers forbearer \N
1011 1012 arcadian acridities unrealistic substituting surges preheats loggias arcadian acridities unrealistic substituting surges preheats loggias arcadian acridities unrealistic substituting surges preheats loggias \N
1029 170 outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites \N
1036 186 batting waspishly stilbestrol villainousness miscalling batting waspishly stilbestrol villainousness miscalling batting waspishly stilbestrol villainousness miscalling \N
1060 152 lachrymation floweret arcadian acridities unrealistic substituting lachrymation floweret arcadian acridities unrealistic substituting lachrymation floweret arcadian acridities unrealistic substituting \N
1063 91 stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment cheaters stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment cheaters stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment cheaters \N
1085 81 loathly cancels debiting parrots paraguayans resonates overbites loathly cancels debiting parrots paraguayans resonates overbites loathly cancels debiting parrots paraguayans resonates overbites \N
1086 567 outcrop slipcases phenylketonuria grunts outcrop slipcases phenylketonuria grunts outcrop slipcases phenylketonuria grunts \N
1093 1094 batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching \N
1096 1097 environs hulled preexamination oralogy tibetans environs hulled preexamination oralogy tibetans environs hulled preexamination oralogy tibetans \N
1109 618 canzona interrelated cooked reformers goodwife technicolor plenishes nippy canzona interrelated cooked reformers goodwife technicolor plenishes nippy canzona interrelated cooked reformers goodwife technicolor plenishes nippy \N
1118 1119 funnyman commuted lachrymation floweret arcadian funnyman commuted lachrymation floweret arcadian funnyman commuted lachrymation floweret arcadian \N
1428 752 plateauing reoccupations embossers cerebrum gloves mohairs admiralties plateauing reoccupations embossers cerebrum gloves mohairs admiralties plateauing reoccupations embossers cerebrum gloves mohairs admiralties \N
1931 604 recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs \N
1797 1671 tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers valiantly tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers valiantly tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers valiantly \N
1065 322 bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling \N
1801 122 effulgences coreless tuberculoses environs effulgences coreless tuberculoses environs effulgences coreless tuberculoses environs \N
1802 299 peeped daydreams permuting immediately canzona interrelated cooked peeped daydreams permuting immediately canzona interrelated cooked peeped daydreams permuting immediately canzona interrelated cooked \N
1809 1169 nonfiction retrogressions eliminates unknowns mongoloids nonfiction retrogressions eliminates unknowns mongoloids nonfiction retrogressions eliminates unknowns mongoloids \N
1812 113 anesthetization undermentioned outflanking funnyman anesthetization undermentioned outflanking funnyman anesthetization undermentioned outflanking funnyman \N
1814 616 manifestly decaffeinates scalepan folklorists attractive yeller cognizably reminds manifestly decaffeinates scalepan folklorists attractive yeller cognizably reminds manifestly decaffeinates scalepan folklorists attractive yeller cognizably reminds \N
1817 53 giros podgy vagus kinkiest xix giros podgy vagus kinkiest xix giros podgy vagus kinkiest xix \N
1831 1790 reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases \N
1841 1588 recelebrating dually plateauing reoccupations embossers cerebrum gloves recelebrating dually plateauing reoccupations embossers cerebrum gloves recelebrating dually plateauing reoccupations embossers cerebrum gloves \N
1857 460 rifer splinting surmisers satisfying undamped sharpers forbearer anesthetization rifer splinting surmisers satisfying undamped sharpers forbearer anesthetization rifer splinting surmisers satisfying undamped sharpers forbearer anesthetization \N
1172 930 sodality outcrop slipcases phenylketonuria grunts venturers valiantly sodality outcrop slipcases phenylketonuria grunts venturers valiantly sodality outcrop slipcases phenylketonuria grunts venturers valiantly \N
1199 1195 exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing \N
1208 326 maxillary dumpers bering evasiveness toto teashop reaccepts gunneries exorcises maxillary dumpers bering evasiveness toto teashop reaccepts gunneries exorcises maxillary dumpers bering evasiveness toto teashop reaccepts gunneries exorcises \N
1880 640 swifters redigesting ostinato recalculation safest signiory swifters redigesting ostinato recalculation safest signiory swifters redigesting ostinato recalculation safest signiory \N
1881 826 skeins equalled sandwiching bewitchment cheaters skeins equalled sandwiching bewitchment cheaters skeins equalled sandwiching bewitchment cheaters \N
1886 1736 bounden occulters blubberer amenities desecrated tetrachlorides loutish bounden occulters blubberer amenities desecrated tetrachlorides loutish bounden occulters blubberer amenities desecrated tetrachlorides loutish \N
1888 351 venturers valiantly unremorsefully extradites stollens ponderers venturers valiantly unremorsefully extradites stollens ponderers venturers valiantly unremorsefully extradites stollens ponderers \N
4 0 tibetans slavishly hipless prs bluejays cuppier nonsurgical tibetans slavishly hipless prs bluejays cuppier nonsurgical tibetans slavishly hipless prs bluejays cuppier nonsurgical \N
68 67 miscalling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling miscalling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling miscalling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling \N
87 83 gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating \N
107 102 unrealistic substituting surges preheats unrealistic substituting surges preheats unrealistic substituting surges preheats \N
1305 12 thanklessly swiveled polers oinked thanklessly swiveled polers oinked thanklessly swiveled polers oinked \N
1322 534 exorcises pirog desexes summable heliocentricity exorcises pirog desexes summable heliocentricity exorcises pirog desexes summable heliocentricity \N
162 161 nigglings midmonths labium peeped daydreams permuting immediately canzona nigglings midmonths labium peeped daydreams permuting immediately canzona nigglings midmonths labium peeped daydreams permuting immediately canzona \N
1347 907 mohairs admiralties bewigged playgoers cheques batting mohairs admiralties bewigged playgoers cheques batting mohairs admiralties bewigged playgoers cheques batting \N
196 194 treaties preprocessor despising loftily yabber reprovingly blungers dwarflike treaties preprocessor despising loftily yabber reprovingly blungers dwarflike treaties preprocessor despising loftily yabber reprovingly blungers dwarflike \N
234 233 inflecting trephines hops exec junketeers isolators reducing nethermost nonfiction inflecting trephines hops exec junketeers isolators reducing nethermost nonfiction inflecting trephines hops exec junketeers isolators reducing nethermost nonfiction \N
258 253 admiralties bewigged playgoers cheques admiralties bewigged playgoers cheques admiralties bewigged playgoers cheques \N
297 291 zanier corkscrewed promiscuousness clewed zanier corkscrewed promiscuousness clewed zanier corkscrewed promiscuousness clewed \N
311 306 forbearer anesthetization undermentioned outflanking funnyman forbearer anesthetization undermentioned outflanking funnyman forbearer anesthetization undermentioned outflanking funnyman \N
337 335 dually plateauing reoccupations embossers dually plateauing reoccupations embossers dually plateauing reoccupations embossers \N
371 367 stilbestrol villainousness miscalling firefanged skeins stilbestrol villainousness miscalling firefanged skeins stilbestrol villainousness miscalling firefanged skeins \N
1876 791 retrogressions eliminates unknowns mongoloids danker raunchiness retrogressions eliminates unknowns mongoloids danker raunchiness retrogressions eliminates unknowns mongoloids danker raunchiness \N
1885 587 batting waspishly stilbestrol villainousness miscalling firefanged skeins batting waspishly stilbestrol villainousness miscalling firefanged skeins batting waspishly stilbestrol villainousness miscalling firefanged skeins \N
1890 1856 teashop reaccepts gunneries exorcises pirog desexes teashop reaccepts gunneries exorcises pirog desexes teashop reaccepts gunneries exorcises pirog desexes \N
1892 812 lachrymation floweret arcadian acridities unrealistic substituting surges preheats lachrymation floweret arcadian acridities unrealistic substituting surges preheats lachrymation floweret arcadian acridities unrealistic substituting surges preheats \N
1896 969 embossers cerebrum gloves mohairs admiralties bewigged playgoers embossers cerebrum gloves mohairs admiralties bewigged playgoers embossers cerebrum gloves mohairs admiralties bewigged playgoers \N
2178 822 islanded burlily thanklessly swiveled polers oinked apnea maxillary islanded burlily thanklessly swiveled polers oinked apnea maxillary islanded burlily thanklessly swiveled polers oinked apnea maxillary \N
2180 1819 reaccepts gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating reaccepts gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating reaccepts gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating \N
1902 1551 unknowns mongoloids danker raunchiness perspicuously disjoined unknowns mongoloids danker raunchiness perspicuously disjoined unknowns mongoloids danker raunchiness perspicuously disjoined \N
1910 1828 kinkiest xix recollected householder overeducated objurgate kinkiest xix recollected householder overeducated objurgate kinkiest xix recollected householder overeducated objurgate \N
1920 9 redigesting ostinato recalculation safest signiory latchets inflecting redigesting ostinato recalculation safest signiory latchets inflecting redigesting ostinato recalculation safest signiory latchets inflecting \N
1934 626 sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites \N
1936 606 emanative blowpipe varies thickest machinability orbiters tormentor owner emanative blowpipe varies thickest machinability orbiters tormentor owner emanative blowpipe varies thickest machinability orbiters tormentor owner \N
1940 1504 excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves \N
1947 1215 batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching \N
1956 148 napoleons rifer splinting surmisers napoleons rifer splinting surmisers napoleons rifer splinting surmisers \N
2192 1129 recelebrating dually plateauing reoccupations embossers recelebrating dually plateauing reoccupations embossers recelebrating dually plateauing reoccupations embossers \N
2196 933 swiveled polers oinked apnea maxillary dumpers bering evasiveness swiveled polers oinked apnea maxillary dumpers bering evasiveness swiveled polers oinked apnea maxillary dumpers bering evasiveness \N
2163 1155 gantleted richer succories dwelling scrapped prat islanded burlily gantleted richer succories dwelling scrapped prat islanded burlily gantleted richer succories dwelling scrapped prat islanded burlily \N
2201 936 admiralties bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling admiralties bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling admiralties bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling \N
1966 348 loathly cancels debiting parrots paraguayans resonates overbites terminals giros loathly cancels debiting parrots paraguayans resonates overbites terminals giros loathly cancels debiting parrots paraguayans resonates overbites terminals giros \N
1975 1973 midmonths labium peeped daydreams permuting immediately canzona interrelated cooked midmonths labium peeped daydreams permuting immediately canzona interrelated cooked midmonths labium peeped daydreams permuting immediately canzona interrelated cooked \N
1979 1157 admiralties bewigged playgoers cheques batting waspishly stilbestrol admiralties bewigged playgoers cheques batting waspishly stilbestrol admiralties bewigged playgoers cheques batting waspishly stilbestrol \N
1986 607 forbearer anesthetization undermentioned outflanking forbearer anesthetization undermentioned outflanking forbearer anesthetization undermentioned outflanking \N
1995 628 loftily yabber reprovingly blungers dwarflike loftily yabber reprovingly blungers dwarflike loftily yabber reprovingly blungers dwarflike \N
2000 982 mohairs admiralties bewigged playgoers mohairs admiralties bewigged playgoers mohairs admiralties bewigged playgoers \N
2002 1900 sandwiching bewitchment cheaters riffled kerneling sandwiching bewitchment cheaters riffled kerneling sandwiching bewitchment cheaters riffled kerneling \N
492 488 arcadian acridities unrealistic substituting surges preheats arcadian acridities unrealistic substituting surges preheats arcadian acridities unrealistic substituting surges preheats \N
2007 97 anesthetization undermentioned outflanking funnyman commuted lachrymation anesthetization undermentioned outflanking funnyman commuted lachrymation anesthetization undermentioned outflanking funnyman commuted lachrymation \N
2213 1548 admiralties bewigged playgoers cheques batting waspishly stilbestrol admiralties bewigged playgoers cheques batting waspishly stilbestrol admiralties bewigged playgoers cheques batting waspishly stilbestrol \N
2216 703 heliocentricity excretions recelebrating dually heliocentricity excretions recelebrating dually heliocentricity excretions recelebrating dually \N
2012 154 slipcases phenylketonuria grunts venturers slipcases phenylketonuria grunts venturers slipcases phenylketonuria grunts venturers \N
2217 32 kerneling napoleons rifer splinting surmisers kerneling napoleons rifer splinting surmisers kerneling napoleons rifer splinting surmisers \N
2016 957 objurgate treaties preprocessor despising loftily objurgate treaties preprocessor despising loftily objurgate treaties preprocessor despising loftily \N
2220 643 tautological jambing sodality outcrop slipcases phenylketonuria tautological jambing sodality outcrop slipcases phenylketonuria tautological jambing sodality outcrop slipcases phenylketonuria \N
1326 1325 measles decentralizing hogfishes gantleted richer measles decentralizing hogfishes gantleted richer measles decentralizing hogfishes gantleted richer \N
2025 1918 forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian \N
2029 40 loathly cancels debiting parrots paraguayans resonates loathly cancels debiting parrots paraguayans resonates loathly cancels debiting parrots paraguayans resonates \N
2037 36 recalculation safest signiory latchets inflecting trephines hops recalculation safest signiory latchets inflecting trephines hops recalculation safest signiory latchets inflecting trephines hops \N
2046 602 earings circumscribed paralyzingly pouchy surrejoinders chestiest measurage tonsils earings circumscribed paralyzingly pouchy surrejoinders chestiest measurage tonsils earings circumscribed paralyzingly pouchy surrejoinders chestiest measurage tonsils \N
2056 1598 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned surmisers satisfying undamped sharpers forbearer anesthetization undermentioned surmisers satisfying undamped sharpers forbearer anesthetization undermentioned \N
2059 354 acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst \N
2064 1079 slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens ponderers slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens ponderers slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens ponderers \N
2230 925 stilbestrol villainousness miscalling firefanged skeins equalled stilbestrol villainousness miscalling firefanged skeins equalled stilbestrol villainousness miscalling firefanged skeins equalled \N
2235 247 arcadian acridities unrealistic substituting surges preheats loggias arcadian acridities unrealistic substituting surges preheats loggias arcadian acridities unrealistic substituting surges preheats loggias \N
2069 1393 firefanged skeins equalled sandwiching firefanged skeins equalled sandwiching firefanged skeins equalled sandwiching \N
2237 111 debiting parrots paraguayans resonates overbites terminals giros podgy debiting parrots paraguayans resonates overbites terminals giros podgy debiting parrots paraguayans resonates overbites terminals giros podgy \N
2074 133 grunts venturers valiantly unremorsefully extradites grunts venturers valiantly unremorsefully extradites grunts venturers valiantly unremorsefully extradites \N
2080 268 tibetans slavishly hipless prs bluejays cuppier nonsurgical skimpiest tibetans slavishly hipless prs bluejays cuppier nonsurgical skimpiest tibetans slavishly hipless prs bluejays cuppier nonsurgical skimpiest \N
2084 637 oralogy tibetans slavishly hipless prs bluejays oralogy tibetans slavishly hipless prs bluejays oralogy tibetans slavishly hipless prs bluejays \N
2087 613 goodwife technicolor plenishes nippy bounden occulters blubberer amenities desecrated goodwife technicolor plenishes nippy bounden occulters blubberer amenities desecrated goodwife technicolor plenishes nippy bounden occulters blubberer amenities desecrated \N
2092 333 floweret arcadian acridities unrealistic substituting surges floweret arcadian acridities unrealistic substituting surges floweret arcadian acridities unrealistic substituting surges \N
2096 498 teratoid coadjutors thuggeries nondestructive teratoid coadjutors thuggeries nondestructive teratoid coadjutors thuggeries nondestructive \N
2099 59 funnyman commuted lachrymation floweret arcadian acridities unrealistic substituting surges funnyman commuted lachrymation floweret arcadian acridities unrealistic substituting surges funnyman commuted lachrymation floweret arcadian acridities unrealistic substituting surges \N
2103 562 lenity tautological jambing sodality lenity tautological jambing sodality lenity tautological jambing sodality \N
2109 1706 embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting \N
2115 450 undamped sharpers forbearer anesthetization undamped sharpers forbearer anesthetization undamped sharpers forbearer anesthetization \N
2247 464 grunts venturers valiantly unremorsefully extradites stollens ponderers conditione loathly grunts venturers valiantly unremorsefully extradites stollens ponderers conditione loathly grunts venturers valiantly unremorsefully extradites stollens ponderers conditione loathly \N
2119 1660 acridities unrealistic substituting surges preheats loggias acridities unrealistic substituting surges preheats loggias acridities unrealistic substituting surges preheats loggias \N
1452 648 maxillary dumpers bering evasiveness maxillary dumpers bering evasiveness maxillary dumpers bering evasiveness \N
1224 916 succories dwelling scrapped prat succories dwelling scrapped prat succories dwelling scrapped prat \N
428 423 dissociated heartier petitionee brill dissociated heartier petitionee brill dissociated heartier petitionee brill \N
437 432 paraguayans resonates overbites terminals giros paraguayans resonates overbites terminals giros paraguayans resonates overbites terminals giros \N
516 513 environs hulled preexamination oralogy tibetans slavishly hipless environs hulled preexamination oralogy tibetans slavishly hipless environs hulled preexamination oralogy tibetans slavishly hipless \N
526 522 desexes summable heliocentricity excretions recelebrating desexes summable heliocentricity excretions recelebrating desexes summable heliocentricity excretions recelebrating \N
560 554 bewigged playgoers cheques batting waspishly stilbestrol bewigged playgoers cheques batting waspishly stilbestrol bewigged playgoers cheques batting waspishly stilbestrol \N
579 575 cheaters riffled kerneling napoleons rifer splinting surmisers cheaters riffled kerneling napoleons rifer splinting surmisers cheaters riffled kerneling napoleons rifer splinting surmisers \N
595 592 outflanking funnyman commuted lachrymation floweret arcadian acridities unrealistic outflanking funnyman commuted lachrymation floweret arcadian acridities unrealistic outflanking funnyman commuted lachrymation floweret arcadian acridities unrealistic \N
1534 894 dwelling scrapped prat islanded burlily dwelling scrapped prat islanded burlily dwelling scrapped prat islanded burlily \N
1547 932 plateauing reoccupations embossers cerebrum gloves mohairs plateauing reoccupations embossers cerebrum gloves mohairs plateauing reoccupations embossers cerebrum gloves mohairs \N
654 649 valiantly unremorsefully extradites stollens ponderers conditione valiantly unremorsefully extradites stollens ponderers conditione valiantly unremorsefully extradites stollens ponderers conditione \N
1561 935 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned surmisers satisfying undamped sharpers forbearer anesthetization undermentioned surmisers satisfying undamped sharpers forbearer anesthetization undermentioned \N
670 669 excretions recelebrating dually plateauing excretions recelebrating dually plateauing excretions recelebrating dually plateauing \N
683 601 sandwiching bewitchment cheaters riffled kerneling napoleons rifer sandwiching bewitchment cheaters riffled kerneling napoleons rifer sandwiching bewitchment cheaters riffled kerneling napoleons rifer \N
696 694 lachrymation floweret arcadian acridities unrealistic lachrymation floweret arcadian acridities unrealistic lachrymation floweret arcadian acridities unrealistic \N
725 617 giros podgy vagus kinkiest xix recollected householder overeducated giros podgy vagus kinkiest xix recollected householder overeducated giros podgy vagus kinkiest xix recollected householder overeducated \N
741 611 junketeers isolators reducing nethermost nonfiction retrogressions eliminates unknowns mongoloids junketeers isolators reducing nethermost nonfiction retrogressions eliminates unknowns mongoloids junketeers isolators reducing nethermost nonfiction retrogressions eliminates unknowns mongoloids \N
774 769 firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling \N
786 776 undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation \N
802 797 substituting surges preheats loggias substituting surges preheats loggias substituting surges preheats loggias \N
1633 262 reaccepts gunneries exorcises pirog desexes summable heliocentricity reaccepts gunneries exorcises pirog desexes summable heliocentricity reaccepts gunneries exorcises pirog desexes summable heliocentricity \N
1645 926 skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons \N
818 815 vagus kinkiest xix recollected householder overeducated objurgate treaties vagus kinkiest xix recollected householder overeducated objurgate treaties vagus kinkiest xix recollected householder overeducated objurgate treaties \N
1666 928 surges preheats loggias reconciliating photocatalyst lenity tautological jambing sodality surges preheats loggias reconciliating photocatalyst lenity tautological jambing sodality surges preheats loggias reconciliating photocatalyst lenity tautological jambing sodality \N
837 116 riffled kerneling napoleons rifer splinting surmisers riffled kerneling napoleons rifer splinting surmisers riffled kerneling napoleons rifer splinting surmisers \N
1684 943 swiveled polers oinked apnea maxillary swiveled polers oinked apnea maxillary swiveled polers oinked apnea maxillary \N
848 430 ponderers conditione loathly cancels debiting parrots paraguayans ponderers conditione loathly cancels debiting parrots paraguayans ponderers conditione loathly cancels debiting parrots paraguayans \N
871 479 outpoured dissociated heartier petitionee outpoured dissociated heartier petitionee outpoured dissociated heartier petitionee \N
888 621 desecrated tetrachlorides loutish polygony malines desecrated tetrachlorides loutish polygony malines desecrated tetrachlorides loutish polygony malines \N
909 385 alkalin succulently marquise underlaid neurosurgeon innervated alkalin succulently marquise underlaid neurosurgeon innervated alkalin succulently marquise underlaid neurosurgeon innervated \N
954 305 lachrymation floweret arcadian acridities unrealistic lachrymation floweret arcadian acridities unrealistic lachrymation floweret arcadian acridities unrealistic \N
976 971 jambing sodality outcrop slipcases phenylketonuria grunts jambing sodality outcrop slipcases phenylketonuria grunts jambing sodality outcrop slipcases phenylketonuria grunts \N
986 202 admiralties bewigged playgoers cheques batting admiralties bewigged playgoers cheques batting admiralties bewigged playgoers cheques batting \N
1757 924 undermentioned outflanking funnyman commuted undermentioned outflanking funnyman commuted undermentioned outflanking funnyman commuted \N
1766 927 extradites stollens ponderers conditione loathly extradites stollens ponderers conditione loathly extradites stollens ponderers conditione loathly \N
1007 227 reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases \N
1784 119 gloves mohairs admiralties bewigged playgoers cheques batting gloves mohairs admiralties bewigged playgoers cheques batting gloves mohairs admiralties bewigged playgoers cheques batting \N
1961 691 bering evasiveness toto teashop reaccepts bering evasiveness toto teashop reaccepts bering evasiveness toto teashop reaccepts \N
1016 962 reprovingly blungers dwarflike effulgences coreless tuberculoses environs hulled preexamination reprovingly blungers dwarflike effulgences coreless tuberculoses environs hulled preexamination reprovingly blungers dwarflike effulgences coreless tuberculoses environs hulled preexamination \N
1032 608 disjoined nigglings midmonths labium peeped daydreams disjoined nigglings midmonths labium peeped daydreams disjoined nigglings midmonths labium peeped daydreams \N
1042 1037 isolators reducing nethermost nonfiction isolators reducing nethermost nonfiction isolators reducing nethermost nonfiction \N
1051 505 undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation \N
1056 124 irades inadvisability disciplinarians majors manifestly decaffeinates scalepan irades inadvisability disciplinarians majors manifestly decaffeinates scalepan irades inadvisability disciplinarians majors manifestly decaffeinates scalepan \N
1072 1069 resonates overbites terminals giros resonates overbites terminals giros resonates overbites terminals giros \N
1099 529 loggias reconciliating photocatalyst lenity tautological jambing sodality loggias reconciliating photocatalyst lenity tautological jambing sodality loggias reconciliating photocatalyst lenity tautological jambing sodality \N
1117 1113 heliocentricity excretions recelebrating dually plateauing reoccupations heliocentricity excretions recelebrating dually plateauing reoccupations heliocentricity excretions recelebrating dually plateauing reoccupations \N
1134 414 kerneling napoleons rifer splinting surmisers satisfying undamped kerneling napoleons rifer splinting surmisers satisfying undamped kerneling napoleons rifer splinting surmisers satisfying undamped \N
1142 830 tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers \N
1851 1505 teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity \N
1149 1147 terminals giros podgy vagus terminals giros podgy vagus terminals giros podgy vagus \N
1858 721 apnea maxillary dumpers bering evasiveness toto teashop reaccepts apnea maxillary dumpers bering evasiveness toto teashop reaccepts apnea maxillary dumpers bering evasiveness toto teashop reaccepts \N
1163 1161 intermuscular fobbed transcribed swifters redigesting intermuscular fobbed transcribed swifters redigesting intermuscular fobbed transcribed swifters redigesting \N
1174 1124 villainousness miscalling firefanged skeins villainousness miscalling firefanged skeins villainousness miscalling firefanged skeins \N
1193 1188 technicolor plenishes nippy bounden occulters blubberer technicolor plenishes nippy bounden occulters blubberer technicolor plenishes nippy bounden occulters blubberer \N
1202 645 slipcases phenylketonuria grunts venturers valiantly slipcases phenylketonuria grunts venturers valiantly slipcases phenylketonuria grunts venturers valiantly \N
1217 1216 hulled preexamination oralogy tibetans slavishly hipless hulled preexamination oralogy tibetans slavishly hipless hulled preexamination oralogy tibetans slavishly hipless \N
1238 1236 mongoloids danker raunchiness perspicuously disjoined nigglings midmonths mongoloids danker raunchiness perspicuously disjoined nigglings midmonths mongoloids danker raunchiness perspicuously disjoined nigglings midmonths \N
1259 702 stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment \N
1269 538 reaccepts gunneries exorcises pirog desexes summable heliocentricity reaccepts gunneries exorcises pirog desexes summable heliocentricity reaccepts gunneries exorcises pirog desexes summable heliocentricity \N
1275 665 arcadian acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst arcadian acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst arcadian acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst \N
1280 374 cerebrum gloves mohairs admiralties bewigged playgoers cheques batting cerebrum gloves mohairs admiralties bewigged playgoers cheques batting cerebrum gloves mohairs admiralties bewigged playgoers cheques batting \N
1905 476 burlily thanklessly swiveled polers oinked apnea maxillary dumpers bering burlily thanklessly swiveled polers oinked apnea maxillary dumpers bering burlily thanklessly swiveled polers oinked apnea maxillary dumpers bering \N
1912 861 gunneries exorcises pirog desexes gunneries exorcises pirog desexes gunneries exorcises pirog desexes \N
1293 950 raunchiness perspicuously disjoined nigglings midmonths labium peeped raunchiness perspicuously disjoined nigglings midmonths labium peeped raunchiness perspicuously disjoined nigglings midmonths labium peeped \N
1922 689 gloves mohairs admiralties bewigged playgoers gloves mohairs admiralties bewigged playgoers gloves mohairs admiralties bewigged playgoers \N
1313 1309 householder overeducated objurgate treaties preprocessor despising loftily householder overeducated objurgate treaties preprocessor despising loftily householder overeducated objurgate treaties preprocessor despising loftily \N
1336 1334 safest signiory latchets inflecting trephines hops exec junketeers safest signiory latchets inflecting trephines hops exec junketeers safest signiory latchets inflecting trephines hops exec junketeers \N
1356 629 embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting \N
1373 625 machinability orbiters tormentor owner zanier corkscrewed promiscuousness clewed reassemble machinability orbiters tormentor owner zanier corkscrewed promiscuousness clewed reassemble machinability orbiters tormentor owner zanier corkscrewed promiscuousness clewed reassemble \N
1385 408 recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs admiralties recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs admiralties recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs admiralties \N
1398 1228 waspishly stilbestrol villainousness miscalling waspishly stilbestrol villainousness miscalling waspishly stilbestrol villainousness miscalling \N
1971 1018 dually plateauing reoccupations embossers cerebrum gloves dually plateauing reoccupations embossers cerebrum gloves dually plateauing reoccupations embossers cerebrum gloves \N
1981 929 oinked apnea maxillary dumpers bering evasiveness toto teashop reaccepts oinked apnea maxillary dumpers bering evasiveness toto teashop reaccepts oinked apnea maxillary dumpers bering evasiveness toto teashop reaccepts \N
1867 942 richer succories dwelling scrapped prat islanded burlily thanklessly swiveled richer succories dwelling scrapped prat islanded burlily thanklessly swiveled richer succories dwelling scrapped prat islanded burlily thanklessly swiveled \N
1988 457 playgoers cheques batting waspishly playgoers cheques batting waspishly playgoers cheques batting waspishly \N
1424 644 debiting parrots paraguayans resonates debiting parrots paraguayans resonates debiting parrots paraguayans resonates \N
1446 550 oinked apnea maxillary dumpers oinked apnea maxillary dumpers oinked apnea maxillary dumpers \N
1457 605 funnyman commuted lachrymation floweret arcadian funnyman commuted lachrymation floweret arcadian funnyman commuted lachrymation floweret arcadian \N
1465 619 dwarflike effulgences coreless tuberculoses environs hulled dwarflike effulgences coreless tuberculoses environs hulled dwarflike effulgences coreless tuberculoses environs hulled \N
1476 1231 admiralties bewigged playgoers cheques batting admiralties bewigged playgoers cheques batting admiralties bewigged playgoers cheques batting \N
1501 1496 bewitchment cheaters riffled kerneling napoleons rifer bewitchment cheaters riffled kerneling napoleons rifer bewitchment cheaters riffled kerneling napoleons rifer \N
1512 1508 undermentioned outflanking funnyman commuted lachrymation floweret arcadian undermentioned outflanking funnyman commuted lachrymation floweret arcadian undermentioned outflanking funnyman commuted lachrymation floweret arcadian \N
2020 127 richer succories dwelling scrapped richer succories dwelling scrapped richer succories dwelling scrapped \N
1917 360 unmuzzling measles decentralizing hogfishes unmuzzling measles decentralizing hogfishes unmuzzling measles decentralizing hogfishes \N
2026 939 recelebrating dually plateauing reoccupations embossers recelebrating dually plateauing reoccupations embossers recelebrating dually plateauing reoccupations embossers \N
1524 1111 grunts venturers valiantly unremorsefully extradites grunts venturers valiantly unremorsefully extradites grunts venturers valiantly unremorsefully extradites \N
2031 229 rifer splinting surmisers satisfying undamped sharpers rifer splinting surmisers satisfying undamped sharpers rifer splinting surmisers satisfying undamped sharpers \N
1533 110 preprocessor despising loftily yabber reprovingly blungers preprocessor despising loftily yabber reprovingly blungers preprocessor despising loftily yabber reprovingly blungers \N
1541 190 miscalling firefanged skeins equalled sandwiching bewitchment miscalling firefanged skeins equalled sandwiching bewitchment miscalling firefanged skeins equalled sandwiching bewitchment \N
1544 553 outflanking funnyman commuted lachrymation outflanking funnyman commuted lachrymation outflanking funnyman commuted lachrymation \N
1553 627 paraguayans resonates overbites terminals giros podgy vagus paraguayans resonates overbites terminals giros podgy vagus paraguayans resonates overbites terminals giros podgy vagus \N
1566 100 inflecting trephines hops exec junketeers isolators reducing nethermost inflecting trephines hops exec junketeers isolators reducing nethermost inflecting trephines hops exec junketeers isolators reducing nethermost \N
1573 623 surrejoinders chestiest measurage tonsils pasturage thurifer teazle fringier rhythmical surrejoinders chestiest measurage tonsils pasturage thurifer teazle fringier rhythmical surrejoinders chestiest measurage tonsils pasturage thurifer teazle fringier rhythmical \N
1580 27 miscalling firefanged skeins equalled sandwiching bewitchment cheaters miscalling firefanged skeins equalled sandwiching bewitchment cheaters miscalling firefanged skeins equalled sandwiching bewitchment cheaters \N
1595 1590 satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman \N
1606 95 unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity tautological unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity tautological unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity tautological \N
1612 391 phenylketonuria grunts venturers valiantly phenylketonuria grunts venturers valiantly phenylketonuria grunts venturers valiantly \N
2076 938 miscalling firefanged skeins equalled sandwiching bewitchment cheaters miscalling firefanged skeins equalled sandwiching bewitchment cheaters miscalling firefanged skeins equalled sandwiching bewitchment cheaters \N
1620 496 giros podgy vagus kinkiest xix recollected householder giros podgy vagus kinkiest xix recollected householder giros podgy vagus kinkiest xix recollected householder \N
2085 934 unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity \N
1630 1214 sandwiching bewitchment cheaters riffled kerneling sandwiching bewitchment cheaters riffled kerneling sandwiching bewitchment cheaters riffled kerneling \N
2090 302 islanded burlily thanklessly swiveled islanded burlily thanklessly swiveled islanded burlily thanklessly swiveled \N
1640 1637 unremorsefully extradites stollens ponderers conditione loathly unremorsefully extradites stollens ponderers conditione loathly unremorsefully extradites stollens ponderers conditione loathly \N
1652 600 bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill \N
1664 205 hipless prs bluejays cuppier nonsurgical skimpiest outpoured hipless prs bluejays cuppier nonsurgical skimpiest outpoured hipless prs bluejays cuppier nonsurgical skimpiest outpoured \N
1680 343 bounden occulters blubberer amenities bounden occulters blubberer amenities bounden occulters blubberer amenities \N
1690 1689 unrealistic substituting surges preheats loggias reconciliating photocatalyst unrealistic substituting surges preheats loggias reconciliating photocatalyst unrealistic substituting surges preheats loggias reconciliating photocatalyst \N
1700 620 maladjustments subpartnership cordilleras recirculations alkalin maladjustments subpartnership cordilleras recirculations alkalin maladjustments subpartnership cordilleras recirculations alkalin \N
1712 1711 commuted lachrymation floweret arcadian commuted lachrymation floweret arcadian commuted lachrymation floweret arcadian \N
1727 130 tautological jambing sodality outcrop slipcases tautological jambing sodality outcrop slipcases tautological jambing sodality outcrop slipcases \N
1738 633 gloves mohairs admiralties bewigged gloves mohairs admiralties bewigged gloves mohairs admiralties bewigged \N
2122 931 forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian \N
2126 55 valiantly unremorsefully extradites stollens valiantly unremorsefully extradites stollens valiantly unremorsefully extradites stollens \N
1745 896 surges preheats loggias reconciliating photocatalyst lenity tautological surges preheats loggias reconciliating photocatalyst lenity tautological surges preheats loggias reconciliating photocatalyst lenity tautological \N
2133 532 reoccupations embossers cerebrum gloves mohairs admiralties reoccupations embossers cerebrum gloves mohairs admiralties reoccupations embossers cerebrum gloves mohairs admiralties \N
1751 216 despising loftily yabber reprovingly blungers dwarflike effulgences coreless despising loftily yabber reprovingly blungers dwarflike effulgences coreless despising loftily yabber reprovingly blungers dwarflike effulgences coreless \N
1764 411 hops exec junketeers isolators reducing nethermost nonfiction retrogressions eliminates hops exec junketeers isolators reducing nethermost nonfiction retrogressions eliminates hops exec junketeers isolators reducing nethermost nonfiction retrogressions eliminates \N
1770 1635 splinting surmisers satisfying undamped sharpers forbearer anesthetization undermentioned splinting surmisers satisfying undamped sharpers forbearer anesthetization undermentioned splinting surmisers satisfying undamped sharpers forbearer anesthetization undermentioned \N
1776 547 inserter plights corollaries gaudiness irades inadvisability inserter plights corollaries gaudiness irades inadvisability inserter plights corollaries gaudiness irades inadvisability \N
1789 1156 debiting parrots paraguayans resonates overbites terminals giros podgy vagus debiting parrots paraguayans resonates overbites terminals giros podgy vagus debiting parrots paraguayans resonates overbites terminals giros podgy vagus \N
1811 382 desexes summable heliocentricity excretions recelebrating desexes summable heliocentricity excretions recelebrating desexes summable heliocentricity excretions recelebrating \N
1816 796 cheaters riffled kerneling napoleons rifer splinting cheaters riffled kerneling napoleons rifer splinting cheaters riffled kerneling napoleons rifer splinting \N
1823 1806 photocatalyst lenity tautological jambing sodality outcrop slipcases photocatalyst lenity tautological jambing sodality outcrop slipcases photocatalyst lenity tautological jambing sodality outcrop slipcases \N
2154 288 bering evasiveness toto teashop reaccepts gunneries exorcises bering evasiveness toto teashop reaccepts gunneries exorcises bering evasiveness toto teashop reaccepts gunneries exorcises \N
2157 407 oinked apnea maxillary dumpers bering evasiveness toto oinked apnea maxillary dumpers bering evasiveness toto oinked apnea maxillary dumpers bering evasiveness toto \N
1834 1833 petitionee brill neologic intermuscular petitionee brill neologic intermuscular petitionee brill neologic intermuscular \N
2162 572 summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers \N
1848 667 cooked reformers goodwife technicolor plenishes cooked reformers goodwife technicolor plenishes cooked reformers goodwife technicolor plenishes \N
1853 1747 jambing sodality outcrop slipcases jambing sodality outcrop slipcases jambing sodality outcrop slipcases \N
1861 63 coreless tuberculoses environs hulled preexamination coreless tuberculoses environs hulled preexamination coreless tuberculoses environs hulled preexamination \N
\.
COPY belongs_to_reviewers (entity, reviewer) FROM stdin;
\.
COPY committee_co_chair (cid, pid) FROM stdin;
\.
COPY committee_person (cid, pid) FROM stdin;
140 141
140 142
140 143
140 144
160 98
160 158
160 823
160 1120
160 1210
160 1815
160 2185
314 48
314 313
314 403
314 584
314 585
317 48
317 313
317 403
317 584
317 585
510 6
510 300
510 509
510 1454
510 1599
510 1644
510 1673
1000 56
1000 800
1000 998
1000 1396
1000 1800
1489 558
1489 759
1489 1464
1489 1488
1489 2139
\.
COPY committees (id, name, committee_chair, was_program_committee, type) FROM stdin;
314 YSWC 2014 Program Committee \N 470 1
1000 ZSWC 2015 Program Committee \N 163 1
140 XSWC 2014 Program Committee \N 18 1
1489 ZSWC 2014 Program Committee \N 7 1
160 XSWC 2015 Program Committee \N 86 1
510 SIGXYZ 2014 Program Committee \N 256 1
317 YSWC 2015 Program Committee \N 69 1
\.
COPY conference_documents (id, date_issue, url, type) FROM stdin;
319 2014-06-30 \N 0
322 2014-06-09 \N 0
343 2014-06-05 \N 0
348 2015-06-07 \N 0
354 2015-06-16 \N 0
362 2014-06-18 \N 0
374 2015-06-10 \N 0
375 2014-06-22 \N 0
377 2014-06-16 \N 0
382 2015-06-03 \N 0
394 2015-06-25 \N 0
396 2015-06-23 \N 0
404 2014-06-26 \N 0
407 2014-06-17 \N 0
414 2015-06-17 \N 0
423 2014-06-11 \N 0
430 2015-06-08 \N 0
432 2015-06-09 \N 0
450 2015-06-20 \N 0
452 2014-06-24 \N 0
460 2015-06-18 \N 0
462 2014-06-24 \N 0
464 2014-06-23 \N 0
467 2015-06-16 \N 0
485 2014-06-13 \N 0
488 2014-06-07 \N 0
495 2015-06-12 \N 0
498 2014-06-17 \N 0
501 2014-06-07 \N 0
505 2014-06-16 \N 0
512 2015-06-13 \N 0
522 2015-06-01 \N 0
529 2015-06-21 \N 0
532 2014-06-07 \N 0
538 2015-06-27 \N 0
541 2014-06-13 \N 0
551 2014-06-05 \N 0
553 2015-06-29 \N 0
554 2015-06-14 \N 0
565 2014-06-11 \N 0
567 2015-06-05 \N 0
569 2015-06-03 \N 0
572 2014-06-30 \N 0
583 2015-06-18 \N 0
587 2015-06-11 \N 0
599 2014-06-29 \N 0
600 2014-06-22 \N 0
603 2014-06-17 \N 0
605 2014-06-06 \N 0
606 2014-06-21 \N 0
610 2014-06-20 \N 0
611 2014-06-28 \N 0
612 2014-06-08 \N 0
613 2014-06-04 \N 0
614 2014-06-12 \N 0
615 2014-06-08 \N 0
616 2014-06-15 \N 0
617 2014-06-15 \N 0
618 2014-06-03 \N 0
619 2014-06-19 \N 0
620 2014-06-18 \N 0
621 2014-06-06 \N 0
622 2014-06-03 \N 0
625 2014-06-22 \N 0
626 2014-06-10 \N 0
627 2014-06-14 \N 0
628 2014-06-18 \N 0
629 2014-06-28 \N 0
637 2015-06-19 \N 0
644 2015-06-08 \N 0
645 2014-06-24 \N 0
647 2015-06-06 \N 0
649 2015-06-04 \N 0
658 2014-06-01 \N 0
665 2015-06-25 \N 0
667 2015-06-06 \N 0
689 2014-06-09 \N 0
691 2014-06-21 \N 0
705 2014-06-27 \N 0
721 2014-06-18 \N 0
745 2014-06-28 \N 0
747 2015-06-10 \N 0
748 2014-06-22 \N 0
752 2014-06-05 \N 0
0 2014-06-08 \N 0
15 2015-06-27 \N 0
16 2014-06-09 \N 0
25 2014-06-06 \N 0
27 2015-06-21 \N 0
30 2015-06-14 \N 0
32 2014-06-07 \N 0
36 2014-06-26 \N 0
40 2014-06-13 \N 0
59 2015-06-11 \N 0
61 2014-06-12 \N 0
63 2014-06-06 \N 0
65 2014-06-24 \N 0
75 2014-06-10 \N 0
81 2014-06-27 \N 0
91 2015-06-22 \N 0
97 2015-06-08 \N 0
110 2015-06-16 \N 0
122 2015-06-17 \N 0
124 2014-06-14 \N 0
127 2014-06-12 \N 0
130 2015-06-25 \N 0
136 2014-06-10 \N 0
152 2014-06-14 \N 0
154 2015-06-02 \N 0
156 2015-06-20 \N 0
157 2014-06-02 \N 0
161 2015-06-03 \N 0
170 2015-06-28 \N 0
179 2014-06-15 \N 0
188 2014-06-07 \N 0
190 2014-06-01 \N 0
202 2015-06-09 \N 0
205 2015-06-20 \N 0
215 2014-06-26 \N 0
216 2015-06-15 \N 0
217 2015-06-14 \N 0
226 2014-06-01 \N 0
227 2015-06-03 \N 0
232 2014-06-30 \N 0
250 2015-06-22 \N 0
260 2014-06-29 \N 0
262 2014-06-21 \N 0
265 2014-06-05 \N 0
268 2014-06-21 \N 0
278 2015-06-13 \N 0
281 2015-06-05 \N 0
299 2014-06-02 \N 0
302 2014-06-29 \N 0
305 2015-06-13 \N 0
1366 2015-06-04 \N 0
1418 2015-06-22 \N 0
1440 2015-06-23 \N 0
1496 2015-06-26 \N 0
1505 2014-06-03 \N 0
1508 2015-06-09 \N 0
1551 2015-06-01 \N 0
1637 2015-06-07 \N 0
1660 2015-06-01 \N 0
1671 2015-06-04 \N 0
1736 2015-06-08 \N 0
1778 2015-06-10 \N 0
1833 2015-06-23 \N 0
1856 2015-06-26 \N 0
1900 2015-06-25 \N 0
797 2015-06-18 \N 0
813 2014-06-06 \N 0
822 2014-06-12 \N 0
839 2014-06-22 \N 0
846 2015-06-07 \N 0
853 2014-06-05 \N 0
861 2014-06-26 \N 0
866 2015-06-20 \N 0
877 2014-06-23 \N 0
880 2014-06-18 \N 0
904 2015-06-24 \N 0
916 2014-06-08 \N 0
924 2014-06-12 \N 0
925 2014-06-02 \N 0
926 2014-06-04 \N 0
927 2014-06-25 \N 0
932 2014-06-26 \N 0
935 2014-06-09 \N 0
936 2014-06-29 \N 0
939 2014-06-25 \N 0
942 2014-06-07 \N 0
957 2015-06-15 \N 0
962 2015-06-16 \N 0
969 2015-06-09 \N 0
971 2015-06-26 \N 0
1025 2014-06-04 \N 0
1069 2014-06-29 \N 0
1094 2014-06-10 \N 0
1097 2015-06-18 \N 0
1113 2015-06-04 \N 0
1119 2014-06-18 \N 0
1124 2014-06-11 \N 0
1129 2014-06-03 \N 0
1145 2015-06-29 \N 0
1155 2014-06-06 \N 0
1159 2015-06-23 \N 0
1169 2015-06-30 \N 0
1195 2014-06-04 \N 0
1206 2015-06-19 \N 0
1214 2015-06-24 \N 0
1215 2015-06-17 \N 0
1228 2015-06-18 \N 0
1236 2014-06-20 \N 0
1242 2014-06-20 \N 0
1267 2015-06-27 \N 0
1309 2014-06-02 \N 0
1344 2015-06-14 \N 0
696 \N \N 0
1238 \N \N 0
2122 \N \N 0
2230 \N \N 0
1060 \N \N 0
1547 \N \N 0
1834 \N \N 0
1586 \N \N 0
1723 \N \N 0
786 \N \N 0
207 \N \N 0
114 \N \N 0
29 \N \N 0
1241 \N \N 0
1280 \N \N 0
492 \N \N 0
954 \N \N 0
1063 \N \N 0
1872 \N \N 0
1896 \N \N 0
1313 \N \N 0
1042 \N \N 0
1442 \N \N 0
1940 \N \N 0
646 \N \N 0
395 \N \N 0
285 \N \N 0
1534 \N \N 0
225 \N \N 0
1620 \N \N 0
976 \N \N 0
1047 \N \N 0
192 \N \N 0
1867 \N \N 0
1745 \N \N 0
1016 \N \N 0
1117 \N \N 0
1633 \N \N 0
1971 \N \N 0
1474 \N \N 0
1920 \N \N 0
1841 \N \N 0
1917 \N \N 0
654 \N \N 0
67 2015-06-13 \N 0
83 2015-06-28 \N 0
102 2015-06-26 \N 0
194 2014-06-03 \N 0
208 2014-06-28 \N 0
218 2014-06-04 \N 0
233 2014-06-16 \N 0
253 2014-06-29 \N 0
291 2014-06-23 \N 0
306 2015-06-21 \N 0
335 2015-06-06 \N 0
367 2015-06-19 \N 0
397 2014-06-23 \N 0
316 2014-06-06 \N 0
469 2014-06-19 \N 0
513 2014-06-20 \N 0
575 2015-06-27 \N 0
592 2015-06-10 \N 0
669 2015-06-17 \N 0
674 2014-06-14 \N 0
601 2014-06-02 \N 0
694 2015-06-30 \N 0
769 2015-06-22 \N 0
776 2015-06-05 \N 0
815 2015-06-12 \N 0
116 2015-06-25 \N 0
479 2014-06-23 \N 0
385 2014-06-19 \N 0
937 2014-06-13 \N 0
608 2014-06-01 \N 0
1037 2015-06-29 \N 0
830 2015-06-30 \N 0
1147 2015-06-11 \N 0
1161 2015-06-24 \N 0
930 2014-06-21 \N 0
1188 2015-06-07 \N 0
326 2014-06-19 \N 0
1216 2014-06-07 \N 0
702 2015-06-12 \N 0
950 2015-06-02 \N 0
12 2014-06-14 \N 0
534 2014-06-27 \N 0
1325 2014-06-03 \N 0
1334 2014-06-15 \N 0
907 2014-06-10 \N 0
408 2015-06-05 \N 0
550 2014-06-23 \N 0
648 2014-06-18 \N 0
1231 2015-06-13 \N 0
1111 2015-06-03 \N 0
894 2014-06-13 \N 0
100 2014-06-27 \N 0
623 2014-06-10 \N 0
1590 2015-06-04 \N 0
95 2015-06-17 \N 0
391 2015-06-30 \N 0
496 2015-06-11 \N 0
928 2014-06-17 \N 0
943 2014-06-30 \N 0
1689 2014-06-20 \N 0
1711 2015-06-12 \N 0
633 2015-06-08 \N 0
896 2015-06-02 \N 0
411 2015-06-28 \N 0
1635 2014-06-15 \N 0
547 2014-06-13 \N 0
119 2014-06-08 \N 0
1156 2014-06-28 \N 0
796 2015-06-16 \N 0
1806 2015-06-29 \N 0
1747 2014-06-23 \N 0
791 2014-06-19 \N 0
812 2015-06-24 \N 0
476 2014-06-13 \N 0
1828 2014-06-01 \N 0
360 2014-06-02 \N 0
9 2014-06-14 \N 0
604 2014-06-27 \N 0
1504 2015-06-04 \N 0
148 2015-06-30 \N 0
1018 2014-06-04 \N 0
1973 2014-06-22 \N 0
1157 2015-06-20 \N 0
929 2014-06-17 \N 0
607 2014-06-05 \N 0
457 2014-06-30 \N 0
982 2015-06-12 \N 0
1918 2015-06-28 \N 0
229 2014-06-08 \N 0
602 2014-06-09 \N 0
1598 2015-06-03 \N 0
1079 2015-06-29 \N 0
1393 2015-06-23 \N 0
133 2015-06-06 \N 0
938 2014-06-03 \N 0
934 2014-06-16 \N 0
333 2014-06-19 \N 0
562 2015-06-24 \N 0
1706 2015-06-07 \N 0
931 2014-06-11 \N 0
55 2014-06-24 \N 0
50 2014-06-14 \N 0
77 2014-06-27 \N 0
151 2015-06-02 \N 0
178 2015-06-15 \N 0
193 2015-06-30 \N 0
139 2015-06-28 \N 0
288 2014-06-02 \N 0
286 2014-06-22 \N 0
329 2014-06-05 \N 0
419 2015-06-08 \N 0
1819 2014-06-25 \N 0
2108 2014-06-08 \N 0
591 2014-06-09 \N 0
681 2015-06-29 \N 0
750 2015-06-06 \N 0
483 2014-06-21 \N 0
768 2015-06-19 \N 0
933 2014-06-16 \N 0
609 2014-06-04 \N 0
808 2015-06-11 \N 0
43 2015-06-24 \N 0
879 2015-06-01 \N 0
1548 2014-06-11 \N 0
357 2015-06-27 \N 0
703 2014-06-24 \N 0
349 2015-06-10 \N 0
598 2014-06-25 \N 0
643 2014-06-20 \N 0
275 2015-06-02 \N 0
1012 2015-06-15 \N 0
247 2014-06-15 \N 0
111 2014-06-28 \N 0
1245 2015-06-26 \N 0
873 2014-06-26 \N 0
388 2014-06-09 \N 0
537 2014-06-10 \N 0
1288 2015-06-01 \N 0
1302 2015-06-14 \N 0
913 2015-06-21 \N 0
716 2014-06-21 \N 0
242 2014-06-16 \N 0
543 2014-06-17 \N 0
417 2015-06-07 \N 0
440 2014-06-11 \N 0
835 2014-06-12 \N 0
624 2014-06-25 \N 0
521 2014-06-20 \N 0
11 2015-06-02 \N 0
1342 2015-06-15 \N 0
1002 2015-06-28 \N 0
47 2015-06-05 \N 0
731 2014-06-15 \N 0
52 2014-06-16 \N 0
1137 2015-06-06 \N 0
900 2015-06-19 \N 0
1704 2015-06-26 \N 0
347 2014-06-11 \N 0
175 2015-06-09 \N 0
346 2014-06-19 \N 0
1537 2015-06-01 \N 0
1502 2015-06-27 \N 0
503 2015-06-21 \N 0
186 2014-06-01 \N 0
113 2014-06-17 \N 0
53 2014-06-30 \N 0
1790 2015-06-22 \N 0
1588 2015-06-05 \N 0
640 2015-06-25 \N 0
826 2014-06-12 \N 0
351 2014-06-25 \N 0
710 \N \N 0
711 \N \N 0
715 \N \N 0
720 \N \N 0
732 \N \N 0
736 \N \N 0
751 \N \N 0
754 \N \N 0
758 \N \N 0
764 \N \N 0
766 \N \N 0
790 \N \N 0
320 \N \N 0
804 \N \N 0
821 \N \N 0
824 \N \N 0
825 \N \N 0
829 \N \N 0
832 \N \N 0
838 \N \N 0
854 \N \N 0
860 \N \N 0
872 \N \N 0
656 \N \N 0
549 \N \N 0
364 \N \N 0
903 \N \N 0
906 \N \N 0
912 \N \N 0
915 \N \N 0
237 \N \N 0
940 \N \N 0
308 \N \N 0
949 \N \N 0
958 \N \N 0
266 \N \N 0
965 \N \N 0
966 \N \N 0
858 \N \N 0
1001 \N \N 0
660 \N \N 0
1017 \N \N 0
1024 \N \N 0
1031 \N \N 0
1034 \N \N 0
1048 \N \N 0
1050 \N \N 0
1052 \N \N 0
468 \N \N 0
283 \N \N 0
1061 \N \N 0
1076 \N \N 0
1078 \N \N 0
1082 \N \N 0
1089 \N \N 0
1102 \N \N 0
1104 \N \N 0
1110 \N \N 0
153 \N \N 0
370 \N \N 0
1126 \N \N 0
264 \N \N 0
1068 \N \N 0
1123 \N \N 0
902 \N \N 0
539 \N \N 0
1091 \N \N 0
995 \N \N 0
220 \N \N 0
979 \N \N 0
1180 \N \N 0
295 \N \N 0
1185 \N \N 0
1187 \N \N 0
1197 \N \N 0
1213 \N \N 0
1222 \N \N 0
1230 \N \N 0
1235 \N \N 0
511 \N \N 0
323 \N \N 0
1247 \N \N 0
1251 \N \N 0
1255 \N \N 0
577 \N \N 0
1260 \N \N 0
1261 \N \N 0
1268 \N \N 0
1270 \N \N 0
1273 \N \N 0
994 \N \N 0
1284 \N \N 0
1296 \N \N 0
527 \N \N 0
20 \N \N 0
1299 \N \N 0
1306 \N \N 0
1307 \N \N 0
1317 \N \N 0
1329 \N \N 0
814 \N \N 0
1341 \N \N 0
1345 \N \N 0
1348 \N \N 0
1349 \N \N 0
1358 \N \N 0
1360 \N \N 0
1362 \N \N 0
1368 \N \N 0
788 \N \N 0
1375 \N \N 0
1376 \N \N 0
1381 \N \N 0
1384 \N \N 0
1386 \N \N 0
1388 \N \N 0
1389 \N \N 0
1006 \N \N 0
1400 \N \N 0
1402 \N \N 0
843 \N \N 0
911 \N \N 0
984 \N \N 0
1410 \N \N 0
2 \N \N 0
26 \N \N 0
31 \N \N 0
39 \N \N 0
42 \N \N 0
46 \N \N 0
54 \N \N 0
64 \N \N 0
72 \N \N 0
78 \N \N 0
80 \N \N 0
84 \N \N 0
90 \N \N 0
96 \N \N 0
99 \N \N 0
94 \N \N 0
115 \N \N 0
118 \N \N 0
123 \N \N 0
129 \N \N 0
132 \N \N 0
169 \N \N 0
174 \N \N 0
149 \N \N 0
189 \N \N 0
201 \N \N 0
204 \N \N 0
246 \N \N 0
267 \N \N 0
274 \N \N 0
277 \N \N 0
287 \N \N 0
298 \N \N 0
301 \N \N 0
304 \N \N 0
325 \N \N 0
330 \N \N 0
332 \N \N 0
336 \N \N 0
342 \N \N 0
350 \N \N 0
353 \N \N 0
356 \N \N 0
365 \N \N 0
376 \N \N 0
381 \N \N 0
383 \N \N 0
384 \N \N 0
387 \N \N 0
390 \N \N 0
252 \N \N 0
398 \N \N 0
410 \N \N 0
413 \N \N 0
433 \N \N 0
449 \N \N 0
463 \N \N 0
409 \N \N 0
475 \N \N 0
478 \N \N 0
484 \N \N 0
502 \N \N 0
504 \N \N 0
528 \N \N 0
531 \N \N 0
533 \N \N 0
544 \N \N 0
546 \N \N 0
559 \N \N 0
561 \N \N 0
566 \N \N 0
571 \N \N 0
173 \N \N 0
586 \N \N 0
240 \N \N 0
630 \N \N 0
632 \N \N 0
636 \N \N 0
639 \N \N 0
664 \N \N 0
231 \N \N 0
687 \N \N 0
690 \N \N 0
698 \N \N 0
1994 \N \N 0
1946 \N \N 0
593 \N \N 0
448 \N \N 0
2001 \N \N 0
1574 \N \N 0
2004 \N \N 0
1898 \N \N 0
785 \N \N 0
2008 \N \N 0
2009 \N \N 0
2013 \N \N 0
2014 \N \N 0
1431 \N \N 0
2021 \N \N 0
1669 \N \N 0
819 \N \N 0
1272 \N \N 0
2027 \N \N 0
1593 \N \N 0
1200 \N \N 0
2033 \N \N 0
2035 \N \N 0
1740 \N \N 0
1656 \N \N 0
798 \N \N 0
1543 \N \N 0
1825 \N \N 0
1697 \N \N 0
2049 \N \N 0
1014 \N \N 0
2050 \N \N 0
2061 \N \N 0
1623 \N \N 0
1549 \N \N 0
773 \N \N 0
1774 \N \N 0
1491 \N \N 0
1415 \N \N 0
184 \N \N 0
2070 \N \N 0
1713 \N \N 0
1597 \N \N 0
1558 \N \N 0
1616 \N \N 0
2082 \N \N 0
2018 \N \N 0
784 \N \N 0
1066 \N \N 0
2086 \N \N 0
2036 \N \N 0
1073 \N \N 0
972 \N \N 0
1638 \N \N 0
2095 \N \N 0
406 \N \N 0
1166 \N \N 0
981 \N \N 0
244 \N \N 0
1021 \N \N 0
2107 \N \N 0
1383 \N \N 0
1622 \N \N 0
2116 \N \N 0
1923 \N \N 0
2120 \N \N 0
2114 \N \N 0
228 \N \N 0
1339 \N \N 0
1691 \N \N 0
2123 \N \N 0
1405 \N \N 0
1646 \N \N 0
2125 \N \N 0
2128 \N \N 0
1220 \N \N 0
1115 \N \N 0
1749 \N \N 0
1528 \N \N 0
2136 \N \N 0
2137 \N \N 0
2140 \N \N 0
1040 \N \N 0
1171 \N \N 0
2141 \N \N 0
1177 \N \N 0
1303 \N \N 0
2147 \N \N 0
2149 \N \N 0
1455 \N \N 0
1602 \N \N 0
211 \N \N 0
1582 \N \N 0
13 \N \N 0
508 \N \N 0
1335 \N \N 0
2156 \N \N 0
1889 \N \N 0
1839 \N \N 0
582 \N \N 0
2112 \N \N 0
1407 \N \N 0
2165 \N \N 0
1891 \N \N 0
257 \N \N 0
1281 \N \N 0
106 \N \N 0
1190 \N \N 0
2170 \N \N 0
2171 \N \N 0
2172 \N \N 0
195 \N \N 0
1153 \N \N 0
443 \N \N 0
1862 \N \N 0
2028 \N \N 0
1444 \N \N 0
761 \N \N 0
1968 \N \N 0
1136 \N \N 0
1239 \N \N 0
1264 \N \N 0
1871 \N \N 0
2181 \N \N 0
1397 \N \N 0
490 \N \N 0
1969 \N \N 0
2097 \N \N 0
570 \N \N 0
2184 \N \N 0
426 \N \N 0
1371 \N \N 0
678 \N \N 0
2118 \N \N 0
1921 \N \N 0
2190 \N \N 0
167 \N \N 0
2191 \N \N 0
315 \N \N 0
701 \N \N 0
657 \N \N 0
1895 \N \N 0
1563 \N \N 0
2197 \N \N 0
1498 \N \N 0
726 \N \N 0
1965 \N \N 0
1647 \N \N 0
1585 \N \N 0
2079 \N \N 0
2205 \N \N 0
1312 \N \N 0
596 \N \N 0
757 \N \N 0
1974 \N \N 0
1792 \N \N 0
1990 \N \N 0
2200 \N \N 0
2167 \N \N 0
137 \N \N 0
1949 \N \N 0
1420 \N \N 0
1422 \N \N 0
1432 \N \N 0
1437 \N \N 0
1439 \N \N 0
1447 \N \N 0
1450 \N \N 0
868 \N \N 0
970 \N \N 0
1462 \N \N 0
947 \N \N 0
1468 \N \N 0
1469 \N \N 0
1472 \N \N 0
1478 \N \N 0
1480 \N \N 0
1482 \N \N 0
1483 \N \N 0
1484 \N \N 0
1179 \N \N 0
1211 \N \N 0
847 \N \N 0
1514 \N \N 0
1517 \N \N 0
38 \N \N 0
1522 \N \N 0
1529 \N \N 0
1536 \N \N 0
820 \N \N 0
1144 \N \N 0
1546 \N \N 0
1552 \N \N 0
1564 \N \N 0
1201 \N \N 0
795 \N \N 0
1567 \N \N 0
1571 \N \N 0
1575 \N \N 0
1577 \N \N 0
997 \N \N 0
1 \N \N 0
431 \N \N 0
1587 \N \N 0
1015 \N \N 0
1603 \N \N 0
1607 \N \N 0
147 \N \N 0
1613 \N \N 0
1624 \N \N 0
245 \N \N 0
1626 \N \N 0
1140 \N \N 0
1229 \N \N 0
185 \N \N 0
1409 \N \N 0
1634 \N \N 0
778 \N \N 0
1649 \N \N 0
719 \N \N 0
1650 \N \N 0
1661 \N \N 0
422 \N \N 0
1670 \N \N 0
1672 \N \N 0
1074 \N \N 0
1701 \N \N 0
1705 \N \N 0
235 \N \N 0
1167 \N \N 0
1721 \N \N 0
1722 \N \N 0
1332 \N \N 0
1730 \N \N 0
1731 \N \N 0
1735 \N \N 0
1742 \N \N 0
1746 \N \N 0
1754 \N \N 0
1756 \N \N 0
1758 \N \N 0
1676 \N \N 0
1761 \N \N 0
1674 \N \N 0
380 \N \N 0
1767 \N \N 0
58 \N \N 0
864 \N \N 0
1793 \N \N 0
1796 \N \N 0
1798 \N \N 0
581 \N \N 0
1805 \N \N 0
1808 \N \N 0
1175 \N \N 0
369 \N \N 0
1818 \N \N 0
1820 \N \N 0
1827 \N \N 0
1830 \N \N 0
1832 \N \N 0
1643 \N \N 0
292 \N \N 0
1840 \N \N 0
1842 \N \N 0
405 \N \N 0
663 \N \N 0
1292 \N \N 0
1855 \N \N 0
1570 \N \N 0
1864 \N \N 0
1845 \N \N 0
1865 \N \N 0
1477 \N \N 0
255 \N \N 0
263 \N \N 0
735 \N \N 0
1882 \N \N 0
1883 \N \N 0
459 \N \N 0
1423 \N \N 0
990 \N \N 0
1708 \N \N 0
197 \N \N 0
524 \N \N 0
1846 \N \N 0
19 \N \N 0
1443 \N \N 0
1907 \N \N 0
1414 \N \N 0
1913 \N \N 0
1919 \N \N 0
704 \N \N 0
458 \N \N 0
1925 \N \N 0
493 \N \N 0
1395 \N \N 0
884 \N \N 0
1935 \N \N 0
787 \N \N 0
1436 \N \N 0
1941 \N \N 0
1943 \N \N 0
128 \N \N 0
1950 \N \N 0
425 \N \N 0
1932 \N \N 0
1372 \N \N 0
695 \N \N 0
1953 \N \N 0
842 \N \N 0
1227 \N \N 0
1928 \N \N 0
1962 \N \N 0
273 \N \N 0
1972 \N \N 0
1560 \N \N 0
859 \N \N 0
1983 \N \N 0
112 \N \N 0
1497 \N \N 0
1045 \N \N 0
1992 \N \N 0
1682 \N \N 0
653 \N \N 0
1596 \N \N 0
466 \N \N 0
1594 \N \N 0
1648 \N \N 0
2017 \N \N 0
519 \N \N 0
729 \N \N 0
2214 \N \N 0
2209 \N \N 0
1916 \N \N 0
2221 \N \N 0
159 \N \N 0
1542 \N \N 0
2225 \N \N 0
1632 \N \N 0
455 \N \N 0
2144 \N \N 0
771 \N \N 0
1688 \N \N 0
1554 \N \N 0
1677 \N \N 0
1081 \N \N 0
1768 \N \N 0
1714 \N \N 0
2228 \N \N 0
1531 \N \N 0
2229 \N \N 0
742 \N \N 0
2062 \N \N 0
1513 \N \N 0
2159 \N \N 0
2234 \N \N 0
1064 \N \N 0
2048 \N \N 0
851 \N \N 0
975 \N \N 0
1641 \N \N 0
35 \N \N 0
2151 \N \N 0
1559 \N \N 0
1183 \N \N 0
88 \N \N 0
166 \N \N 0
1879 \N \N 0
1355 \N \N 0
1897 \N \N 0
2242 \N \N 0
1276 \N \N 0
1847 \N \N 0
2263 \N \N 0
2106 \N \N 0
1960 \N \N 0
2187 \N \N 0
1311 \N \N 0
1430 \N \N 0
2160 \N \N 0
1927 \N \N 0
1976 \N \N 0
70 \N \N 0
1783 \N \N 0
1929 \N \N 0
471 \N \N 0
1874 \N \N 0
340 \N \N 0
1989 \N \N 0
1924 \N \N 0
1266 \N \N 0
1948 \N \N 0
650 \N \N 0
2052 \N \N 0
318 \N \N 0
1557 \N \N 0
2072 \N \N 0
401 \N \N 0
518 \N \N 0
271 \N \N 0
1535 \N \N 0
1108 \N \N 0
1894 \N \N 0
2155 \N \N 0
2177 \N \N 0
1225 \N \N 0
1416 \N \N 0
453 \N \N 0
307 \N \N 0
2188 \N \N 0
999 \N \N 0
708 \N \N 0
1930 \N \N 0
1340 \N \N 0
557 \N \N 0
2032 \N \N 0
1556 \N \N 0
1739 \N \N 0
2121 \N \N 0
435 \N \N 0
1435 \N \N 0
659 \N \N 0
739 \N \N 0
811 \N \N 0
1600 \N \N 0
714 \N \N 0
2260 \N \N 0
272 \N \N 0
2053 \N \N 0
684 \N \N 0
857 \N \N 0
895 \N \N 0
2019 \N \N 0
1719 \N \N 0
1139 \N \N 0
2055 \N \N 0
2065 \N \N 0
1467 \N \N 0
1955 \N \N 0
671 \N \N 0
1686 \N \N 0
889 \N \N 0
138 \N \N 0
146 \N \N 0
219 \N \N 0
1869 \N \N 0
1520 \N \N 0
682 \N \N 0
1106 \N \N 0
1020 \N \N 0
1621 \N \N 0
2240 \N \N 0
1653 \N \N 0
2054 \N \N 0
1353 \N \N 0
1254 \N \N 0
1687 \N \N 0
2175 \N \N 0
1694 \N \N 0
892 \N \N 0
1605 \N \N 0
1788 \N \N 0
2067 \N \N 0
2101 \N \N 0
1116 \N \N 0
1753 \N \N 0
2249 \N \N 0
1316 \N \N 0
2254 \N \N 0
2238 \N \N 0
991 \N \N 0
1043 \N \N 0
1173 \N \N 0
1970 \N \N 0
284 \N \N 0
1781 \N \N 0
2256 \N \N 0
2127 \N \N 0
1379 \N \N 0
2212 \N \N 0
2044 \N \N 0
1717 \N \N 0
1785 \N \N 0
210 \N \N 0
1681 \N \N 0
1055 \N \N 0
2075 \N \N 0
1726 \N \N 0
1720 \N \N 0
762 \N \N 0
1838 \N \N 0
988 \N \N 0
1663 \N \N 0
1495 \N \N 0
108 \N \N 0
1192 \N \N 0
2261 \N \N 0
1911 \N \N 0
952 \N \N 0
779 \N \N 0
1207 \N \N 0
2093 \N \N 0
2215 \N \N 0
1492 \N \N 0
324 \N \N 0
1150 \N \N 0
2078 \N \N 0
2169 \N \N 0
918 \N \N 0
1810 \N \N 0
887 \N \N 0
1980 \N \N 0
1804 \N \N 0
1240 \N \N 0
447 \N \N 0
1696 \N \N 0
1130 \N \N 0
1490 \N \N 0
2043 \N \N 0
1906 \N \N 0
777 \N \N 0
1098 \N \N 0
1323 \N \N 0
2134 \N \N 0
676 \N \N 0
2180 \N \N 0
311 \N \N 0
2178 \N \N 0
221 \N \N 0
1910 \N \N 0
2090 \N \N 0
828 \N \N 0
1640 \N \N 0
1263 \N \N 0
1802 \N \N 0
1356 \N \N 0
560 \N \N 0
1757 \N \N 0
871 \N \N 0
371 \N \N 0
439 \N \N 0
1606 \N \N 0
1351 \N \N 0
1636 \N \N 0
590 \N \N 0
1217 \N \N 0
1056 \N \N 0
1886 \N \N 0
280 \N \N 0
2192 \N \N 0
1709 \N \N 0
2007 \N \N 0
1385 \N \N 0
837 \N \N 0
2085 \N \N 0
2026 \N \N 0
1703 \N \N 0
1029 \N \N 0
1797 \N \N 0
2119 \N \N 0
1541 \N \N 0
1727 \N \N 0
393 \N \N 0
1690 \N \N 0
1367 \N \N 0
1032 \N \N 0
845 \N \N 0
536 \N \N 0
693 \N \N 0
1760 \N \N 0
1326 \N \N 0
1007 \N \N 0
1764 \N \N 0
1398 \N \N 0
1406 \N \N 0
1524 \N \N 0
1501 \N \N 0
2056 \N \N 0
840 \N \N 0
1163 \N \N 0
361 \N \N 0
1530 \N \N 0
1233 \N \N 0
1373 \N \N 0
516 \N \N 0
898 \N \N 0
1417 \N \N 0
1457 \N \N 0
1561 \N \N 0
500 \N \N 0
1776 \N \N 0
4 \N \N 0
2217 \N \N 0
679 \N \N 0
1465 \N \N 0
909 \N \N 0
177 \N \N 0
1823 \N \N 0
1149 \N \N 0
1249 \N \N 0
1471 \N \N 0
1109 \N \N 0
1096 \N \N 0
1861 \N \N 0
1259 \N \N 0
1947 \N \N 0
1816 \N \N 0
1853 \N \N 0
1573 \N \N 0
733 \N \N 0
520 \N \N 0
1202 \N \N 0
1966 \N \N 0
258 \N \N 0
1452 \N \N 0
1801 \N \N 0
2020 \N \N 0
1817 \N \N 0
1888 \N \N 0
1741 \N \N 0
162 \N \N 0
540 \N \N 0
986 \N \N 0
196 \N \N 0
76 \N \N 0
1700 \N \N 0
683 \N \N 0
781 \N \N 0
1446 \N \N 0
1172 \N \N 0
234 \N \N 0
2162 \N \N 0
1857 \N \N 0
1428 \N \N 0
2096 \N \N 0
1766 \N \N 0
183 \N \N 0
1540 \N \N 0
1630 \N \N 0
2247 \N \N 0
741 \N \N 0
60 \N \N 0
2002 \N \N 0
921 \N \N 0
1848 \N \N 0
2046 \N \N 0
1738 \N \N 0
1301 \N \N 0
1224 \N \N 0
68 \N \N 0
1051 \N \N 0
2237 \N \N 0
461 \N \N 0
1975 \N \N 0
749 \N \N 0
1252 \N \N 0
670 \N \N 0
1521 \N \N 0
2201 \N \N 0
865 \N \N 0
456 \N \N 0
2076 \N \N 0
680 \N \N 0
328 \N \N 0
107 \N \N 0
437 \N \N 0
1609 \N \N 0
744 \N \N 0
1789 \N \N 0
445 \N \N 0
2012 \N \N 0
241 \N \N 0
2157 \N \N 0
888 \N \N 0
1566 \N \N 0
1365 \N \N 0
1905 \N \N 0
1212 \N \N 0
2059 \N \N 0
1683 \N \N 0
2103 \N \N 0
1979 \N \N 0
738 \N \N 0
1988 \N \N 0
1193 \N \N 0
1419 \N \N 0
2031 \N \N 0
595 \N \N 0
1666 \N \N 0
1811 \N \N 0
1936 \N \N 0
1093 \N \N 0
1777 \N \N 0
259 \N \N 0
87 \N \N 0
1710 \N \N 0
1072 \N \N 0
1305 \N \N 0
897 \N \N 0
1931 \N \N 0
2084 \N \N 0
1770 \N \N 0
1412 \N \N 0
668 \N \N 0
1476 \N \N 0
2115 \N \N 0
1831 \N \N 0
1748 \N \N 0
1065 \N \N 0
1851 \N \N 0
1892 \N \N 0
1036 \N \N 0
2087 \N \N 0
1544 \N \N 0
1569 \N \N 0
1134 \N \N 0
1424 \N \N 0
2126 \N \N 0
249 \N \N 0
579 \N \N 0
661 \N \N 0
1390 \N \N 0
1380 \N \N 0
2216 \N \N 0
1876 \N \N 0
1004 \N \N 0
2080 \N \N 0
1912 \N \N 0
2025 \N \N 0
1279 \N \N 0
1961 \N \N 0
818 \N \N 0
2196 \N \N 0
1786 \N \N 0
1125 \N \N 0
919 \N \N 0
1553 \N \N 0
1645 \N \N 0
1579 \N \N 0
428 \N \N 0
1205 \N \N 0
2029 \N \N 0
1269 \N \N 0
526 \N \N 0
1512 \N \N 0
1809 \N \N 0
1733 \N \N 0
1680 \N \N 0
1601 \N \N 0
1347 \N \N 0
2220 \N \N 0
1664 \N \N 0
2074 \N \N 0
1812 \N \N 0
49 \N \N 0
1652 \N \N 0
1814 \N \N 0
1595 \N \N 0
706 \N \N 0
806 \N \N 0
955 \N \N 0
1712 \N \N 0
985 \N \N 0
774 \N \N 0
1934 \N \N 0
1336 \N \N 0
2154 \N \N 0
1986 \N \N 0
807 \N \N 0
1099 \N \N 0
402 \N \N 0
1612 \N \N 0
2213 \N \N 0
848 \N \N 0
1981 \N \N 0
2000 \N \N 0
1885 \N \N 0
2235 \N \N 0
1287 \N \N 0
1657 \N \N 0
2099 \N \N 0
730 \N \N 0
2069 \N \N 0
1022 \N \N 0
1199 \N \N 0
2016 \N \N 0
1627 \N \N 0
1784 \N \N 0
1751 \N \N 0
1086 \N \N 0
1902 \N \N 0
1158 \N \N 0
2109 \N \N 0
150 \N \N 0
212 \N \N 0
1244 \N \N 0
1858 \N \N 0
802 \N \N 0
1922 \N \N 0
1308 \N \N 0
337 \N \N 0
418 \N \N 0
1234 \N \N 0
1142 \N \N 0
472 \N \N 0
2064 \N \N 0
1421 \N \N 0
1880 \N \N 0
2092 \N \N 0
1184 \N \N 0
1533 \N \N 0
1085 \N \N 0
1174 \N \N 0
1743 \N \N 0
1118 \N \N 0
1890 \N \N 0
1293 \N \N 0
2133 \N \N 0
297 \N \N 0
1507 \N \N 0
878 \N \N 0
881 \N \N 0
763 \N \N 0
1580 \N \N 0
1275 \N \N 0
1881 \N \N 0
1319 \N \N 0
1011 \N \N 0
1208 \N \N 0
1995 \N \N 0
17 \N \N 0
574 \N \N 0
45 \N \N 0
2182 \N \N 0
1487 \N \N 0
2163 \N \N 0
1322 \N \N 0
767 \N \N 0
856 \N \N 0
876 \N \N 0
725 \N \N 0
793 \N \N 0
964 \N \N 0
945 \N \N 0
1684 \N \N 0
1956 \N \N 0
24 \N \N 0
2037 \N \N 0
2063 \N http://SIGXYZ-2014.tld 2
2270 \N http://XSWC-2015.tld 2
2274 \N http://ZSWC-2014.tld 2
1991 \N http://YSWC-2015.tld 2
2272 \N http://YSWC-2014.tld 2
2271 \N http://XSWC-2014.tld 2
1998 \N http://ZSWC-2015.tld 2
\.
COPY conference_fees (id, amount) FROM stdin;
809 755
1121 756
1617 751
1813 752
2183 754
2203 757
2267 753
\.
COPY conference_proceedings (id, publisher, volume, name, isbn) FROM stdin;
224 \N \N Proceedings of ZSWC-2015 4815162342007
1084 \N \N Proceedings of YSWC-2014 4815162342002
1333 \N \N Proceedings of ZSWC-2014 4815162342003
1843 \N \N Proceedings of SIGXYZ-2014 4815162342004
1958 \N \N Proceedings of XSWC-2015 4815162342005
2186 \N \N Proceedings of XSWC-2014 4815162342001
2275 \N \N Proceedings of YSWC-2015 4815162342006
\.
COPY conference_volumes (id, program_committee, organizing_committ, location, steering_committee, important_dates, name) FROM stdin;
256 \N \N Pago Pago \N \N SIGXYZ
7 \N \N Annaba \N \N ZSWC
69 \N \N Escaldes \N \N YSWC
470 \N \N Mascara \N \N YSWC
86 \N \N Andorra La Vella \N \N XSWC
163 \N \N Benguela \N \N ZSWC
18 \N \N Tirane \N \N XSWC
\.
COPY emails (person, value) FROM stdin;
688 <EMAIL>
1449 <EMAIL>
723 <EMAIL>
1445 <EMAIL>
523 <EMAIL>
1330 <EMAIL>
1821 <EMAIL>
1933 <EMAIL>
1518 <EMAIL>.tld
1728 <EMAIL>
1592 <EMAIL>
1361 <EMAIL>
1938 <EMAIL>
1939 <EMAIL>
1441 <EMAIL>
1942 <EMAIL>
1315 <EMAIL>
1945 <EMAIL>
1411 <EMAIL>
1849 <EMAIL>
1959 <EMAIL>
1403 <EMAIL>
1964 <EMAIL>
634 <EMAIL>
1963 <EMAIL>
1539 <EMAIL>
1120 <EMAIL>
1338 <EMAIL>
1515 <EMAIL>
1984 <EMAIL>
1985 <EMAIL>
525 <EMAIL>
1996 <EMAIL>
1203 <EMAIL>
1997 <EMAIL>
1993 <EMAIL>
1752 <EMAIL>
312 <EMAIL>
2005 <EMAIL>
1343 <EMAIL>
2010 <EMAIL>
1732 <EMAIL>
2011 <EMAIL>
85 <EMAIL>
1277 <EMAIL>
2015 <EMAIL>
1023 <EMAIL>
1258 <EMAIL>
2023 <EMAIL>
1049 <EMAIL>
1070 <EMAIL>
2024 <EMAIL>
477 <EMAIL>
1538 <EMAIL>
120 <EMAIL>
1392 <EMAIL>
2030 <EMAIL>
1285 <EMAIL>
1568 <EMAIL>
73 <EMAIL>
2039 <EMAIL>
2040 <EMAIL>
2042 <EMAIL>
1604 <EMAIL>
734 Hanka.<EMAIL>
1800 <EMAIL>
1769 <EMAIL>
652 <EMAIL>
1438 <EMAIL>
2058 <EMAIL>
885 <EMAIL>
1807 <EMAIL>
1987 <EMAIL>
2066 <EMAIL>
1850 <EMAIL>
2068 <EMAIL>
2041 <EMAIL>
1887 <EMAIL>
2073 <EMAIL>
436 <EMAIL>
2077 <EMAIL>
836 <EMAIL>
198 <EMAIL>
1327 <EMAIL>
2091 <EMAIL>
1631 <EMAIL>
2098 <EMAIL>
2100 <EMAIL>
2102 <EMAIL>
2105 <EMAIL>
987 <EMAIL>
1654 Saer.Dillen<EMAIL>
164 <EMAIL>
1009 <EMAIL>
759 <EMAIL>
1038 <EMAIL>
89 <EMAIL>
1591 <EMAIL>
1003 <EMAIL>
1500 <EMAIL>
1576 <EMAIL>
2110 <EMAIL>
2111 <EMAIL>
1092 <EMAIL>
1463 <EMAIL>
2113 <EMAIL>
2117 <EMAIL>
1944 <EMAIL>
104 <EMAIL>
1499 <EMAIL>
908 <EMAIL>
1678 <EMAIL>
1044 <EMAIL>
923 <EMAIL>
2131 <EMAIL>
2132 <EMAIL>
2057 <EMAIL>
1191 <EMAIL>
1884 <EMAIL>
1408 <EMAIL>
1133 <EMAIL>
563 <EMAIL>
1829 <EMAIL>
2143 <EMAIL>
2129 <EMAIL>
641 <EMAIL>
2146 <EMAIL>
2148 <EMAIL>
101 <EMAIL>
2045 <EMAIL>
799 <EMAIL>
1762 <EMAIL>
1903 <EMAIL>
677 <EMAIL>
1448 <EMAIL>
1954 <EMAIL>
780 <EMAIL>
2158 <EMAIL>
1481 <EMAIL>
1223 <EMAIL>
473 <EMAIL>
1614 <EMAIL>
597 <EMAIL>
2022 <EMAIL>
386 <EMAIL>
2168 <EMAIL>
368 <EMAIL>
585 <EMAIL>
1427 <EMAIL>
855 <EMAIL>
1473 <EMAIL>
1274 <EMAIL>
2173 <EMAIL>
1755 <EMAIL>
98 <EMAIL>
568 <EMAIL>
823 <EMAIL>
1693 <EMAIL>
1863 <EMAIL>
2038 <EMAIL>
1750 <EMAIL>
959 <EMAIL>
2176 <EMAIL>
1164 <EMAIL>
2179 <EMAIL>
200 <EMAIL>
893 <EMAIL>
1008 <EMAIL>
2083 <EMAIL>
1165 <EMAIL>
1952 <EMAIL>
1062 <EMAIL>
800 <EMAIL>
1506 <EMAIL>
41 <EMAIL>
2138 <EMAIL>.<EMAIL>
594 <EMAIL>
1562 <EMAIL>
1737 <EMAIL>
2166 <EMAIL>
1426 <EMAIL>
2089 <EMAIL>
427 <EMAIL>
1868 <EMAIL>
1589 <EMAIL>
548 <EMAIL>
841 <EMAIL>
2189 <EMAIL>
1298 <EMAIL>
1875 <EMAIL>
2193 <EMAIL>
2194 <EMAIL>
134 <EMAIL>
2199 <EMAIL>
1644 <EMAIL>
914 <EMAIL>
792 <EMAIL>
2202 <EMAIL>
1433 <EMAIL>
1127 <EMAIL>
545 <EMAIL>
699 <EMAIL>
1057 <EMAIL>
3 <EMAIL>
2206 <EMAIL>
1328 <EMAIL>
22 <EMAIL>
2208 <EMAIL>
1937 <EMAIL>
1041 <EMAIL>
1639 <EMAIL>
1101 <EMAIL>
1978 <EMAIL>
2104 <EMAIL>
2210 <EMAIL>
556 <EMAIL>
2153 <EMAIL>
1186 <EMAIL>
352 <EMAIL>
1148 <EMAIL>
213 <EMAIL>
141 <EMAIL>
1387 <EMAIL>
2174 <EMAIL>
2145 <EMAIL>
1466 <EMAIL>
327 <EMAIL>
1572 <EMAIL>
1699 <EMAIL>
1977 <EMAIL>
2003 <EMAIL>
2223 <EMAIL>
1999 <EMAIL>
1815 <EMAIL>
1651 <EMAIL>
517 <EMAIL>
1077 <EMAIL>
2227 <EMAIL>
700 <EMAIL>
941 <EMAIL>
1926 <EMAIL>
1152 <EMAIL>
2204 <EMAIL>
2222 <EMAIL>
399 <EMAIL>
2164 <EMAIL>
1692 <EMAIL>
438 <EMAIL>
692 <EMAIL>
882 <EMAIL>
2081 <EMAIL>
2232 <EMAIL>
2233 <EMAIL>
1702 <EMAIL>
1915 <EMAIL>
143 <EMAIL>
874 <EMAIL>
451 <EMAIL>
358 <EMAIL>ld
2152 <EMAIL>
168 <EMAIL>
2047 <EMAIL>
1771 <EMAIL>
1456 <EMAIL>
817 <EMAIL>
236 <EMAIL>
2239 <EMAIL>
672 <EMAIL>
339 <EMAIL>
833 <EMAIL>
6 <EMAIL>
576 <EMAIL>
2218 <EMAIL>
171 <EMAIL>
910 <EMAIL>
2246 <EMAIL>
1957 <EMAIL>
2248 <EMAIL>
2250 <EMAIL>
2124 <EMAIL>
2251 <EMAIL>
2253 <EMAIL>
867 <EMAIL>
1218 <EMAIL>
1256 <EMAIL>
181 <EMAIL>
801 <EMAIL>
891 <EMAIL>
1619 <EMAIL>
1836 <EMAIL>
973 <EMAIL>
1374 <EMAIL>
489 <EMAIL>
1835 <EMAIL>
206 <EMAIL>
1232 <EMAIL>
310 <EMAIL>
1565 <EMAIL>
1176 <EMAIL>
474 <EMAIL>
1608 <EMAIL>
2224 <EMAIL>
293 <EMAIL>
2051 <EMAIL>
1715 <EMAIL>
2198 <EMAIL>
1090 <EMAIL>
651 <EMAIL>
1860 <EMAIL>
2071 <EMAIL>
1665 <EMAIL>
1799 <EMAIL>
2257 <EMAIL>
372 <EMAIL>
2259 Tsur<EMAIL>
1583 <EMAIL>
1219 <EMAIL>
491 <EMAIL>
2243 <EMAIL>
1346 <EMAIL>
2255 <EMAIL>
772 <EMAIL>
1967 <EMAIL>
1369 <EMAIL>
1629 <EMAIL>
951 <EMAIL>
1105 <EMAIL>
1479 <EMAIL>
1951 <EMAIL>
1982 <EMAIL>
1354 <EMAIL>
514 <EMAIL>
1103 <EMAIL>
1685 <EMAIL>
1679 <EMAIL>
1370 <EMAIL>
1852 <EMAIL>
1160 <EMAIL>
1475 <EMAIL>
584 <EMAIL>
1485 <EMAIL>
2219 <EMAIL>
1391 <EMAIL>
454 <EMAIL>
1909 <EMAIL>
2264 <EMAIL>
254 <EMAIL>
1545 <EMAIL>
28 <EMAIL>
1914 <EMAIL>
2265 <EMAIL>
1083 <EMAIL>
2207 <EMAIL>
2266 <EMAIL>
2262 <EMAIL>
1870 <EMAIL>
1510 <EMAIL>
917 <EMAIL>
2241 <EMAIL>
673 <EMAIL>
2006 <EMAIL>
635 <EMAIL>
1114 <EMAIL>
2150 <EMAIL>
1523 <EMAIL>
1131 <EMAIL>
424 <EMAIL>
1555 <EMAIL>
740 <EMAIL>
2268 <EMAIL>
770 <EMAIL>
2195 <EMAIL>
1181 <EMAIL>
117 <EMAIL>
1058 <EMAIL>
2252 <EMAIL>
1451 <EMAIL>
2185 <EMAIL>
79 <EMAIL>
737 <EMAIL>
2269 <EMAIL>
1866 <EMAIL>
974 <EMAIL>
1297 <EMAIL>
2130 <EMAIL>
638 <EMAIL>
1759 <EMAIL>
1394 <EMAIL>
685 <EMAIL>
2244 <EMAIL>
1363 <EMAIL>
724 <EMAIL>
2060 <EMAIL>
2236 <EMAIL>
2226 <EMAIL>
1908 <EMAIL>
1318 <EMAIL>
1401 <EMAIL>
1763 <EMAIL>
1377 <EMAIL>
334 <EMAIL>
631 <EMAIL>
296 <EMAIL>
1667 <EMAIL>
2142 <EMAIL>
827 <EMAIL>
2139 <EMAIL>
1453 <EMAIL>
248 <EMAIL>
400 <EMAIL>
1775 <EMAIL>
1237 <EMAIL>
2161 <EMAIL>
279 <EMAIL>
2094 <EMAIL>
2273 <EMAIL>
203 <EMAIL>
588 <EMAIL>
1304 <EMAIL>
712 <EMAIL>
2245 <EMAIL>
2034 <EMAIL>
2231 <EMAIL>
2211 <EMAIL>
442 <EMAIL>
238 <EMAIL>
2135 <EMAIL>
890 <EMAIL>
366 <EMAIL>
2088 <EMAIL>
1010 <EMAIL>
1100 <EMAIL>
2258 <EMAIL>
953 <EMAIL>
341 <EMAIL>
2276 <EMAIL>
1071 <EMAIL>
1611 <EMAIL>
8 <EMAIL>
10 <EMAIL>
14 <EMAIL>
34 <EMAIL>
37 <EMAIL>
51 <EMAIL>
57 <EMAIL>
62 <EMAIL>
74 <EMAIL>
93 <EMAIL>
109 <EMAIL>
121 <EMAIL>
5 <EMAIL>
126 <EMAIL>
135 <EMAIL>
145 <EMAIL>
131 <EMAIL>
155 <EMAIL>
158 <EMAIL>
172 <EMAIL>
187 <EMAIL>
214 <EMAIL>
103 <EMAIL>
230 <EMAIL>
239 <EMAIL>
243 <EMAIL>
251 <EMAIL>
261 <EMAIL>
270 <EMAIL>
282 <EMAIL>
290 <EMAIL>
313 <EMAIL>
321 <EMAIL>
345 <EMAIL>
359 <EMAIL>
363 <EMAIL>
373 <EMAIL>
379 <EMAIL>
294 <EMAIL>
403 <EMAIL>
416 <EMAIL>
420 <EMAIL>
421 <EMAIL>
429 <EMAIL>
441 <EMAIL>
446 <EMAIL>
191 <EMAIL>
209 <EMAIL>
481 <EMAIL>
482 <EMAIL>
487 <EMAIL>
494 <EMAIL>
497 <EMAIL>
499 <EMAIL>
507 <EMAIL>
509 <EMAIL>
21 <EMAIL>
542 <EMAIL>
303 <EMAIL>
552 <EMAIL>
564 <EMAIL>
180 <EMAIL>
580 <EMAIL>
589 <EMAIL>
642 <EMAIL>
182 <EMAIL>
655 <EMAIL>
662 <EMAIL>
269 <EMAIL>
578 <EMAIL>
535 <EMAIL>
713 <EMAIL>
718 <EMAIL>
727 <EMAIL>
728 <EMAIL>
743 <EMAIL>
746 <EMAIL>
756 <EMAIL>
760 <EMAIL>
775 <EMAIL>
782 <EMAIL>
783 <EMAIL>
486 <EMAIL>
789 <EMAIL>
794 <EMAIL>
810 <EMAIL>
834 <EMAIL>
844 <EMAIL>
850 <EMAIL>
852 <EMAIL>
753 <EMAIL>
863 <EMAIL>
875 <EMAIL>
886 <EMAIL>
105 <EMAIL>
899 <EMAIL>
901 <EMAIL>
515 <EMAIL>
920 <EMAIL>
922 <EMAIL>
675 <EMAIL>
944 <EMAIL>
946 <EMAIL>
956 <EMAIL>
960 <EMAIL>
961 <EMAIL>
963 <EMAIL>
44 <EMAIL>
968 <EMAIL>
978 <EMAIL>
980 <EMAIL>
92 <EMAIL>
983 <EMAIL>
989 <EMAIL>
992 <EMAIL>
993 <EMAIL>
222 <EMAIL>
996 <EMAIL>
998 <EMAIL>
1013 <EMAIL>
697 <EMAIL>
1027 <EMAIL>
1028 <EMAIL>
1053 <EMAIL>
1054 <EMAIL>
1067 <EMAIL>
717 <EMAIL>
1080 <EMAIL>
1087 <EMAIL>
1088 <EMAIL>
338 <EMAIL>
1095 <EMAIL>
331 <EMAIL>
1107 <EMAIL>
1122 <EMAIL>
1128 <EMAIL>
1135 <EMAIL>
1138 <EMAIL>
1143 <EMAIL>
1146 <EMAIL>
1154 <EMAIL>
1046 <EMAIL>
392 <EMAIL>
1168 <EMAIL>
1170 <EMAIL>
1178 <EMAIL>
1182 <EMAIL>
707 <EMAIL>
1194 <EMAIL>
1204 <EMAIL>
1209 <EMAIL>
1210 <EMAIL>
71 <EMAIL>
1221 <EMAIL>
1030 <EMAIL>
1226 <EMAIL>
1243 <EMAIL>
530 <EMAIL>
1246 <EMAIL>
1250 <EMAIL>
1253 <EMAIL>
1196 <EMAIL>
1265 <EMAIL>
355 <EMAIL>
1271 <EMAIL>
1278 <EMAIL>
1283 <EMAIL>
1286 <EMAIL>
1289 <EMAIL>
1290 <EMAIL>
1291 <EMAIL>
389 <EMAIL>
378 <EMAIL>
56 <EMAIL>
1294 <EMAIL>
870 <EMAIL>
1324 <EMAIL>
1331 <EMAIL>
142 <EMAIL>
506 <EMAIL>
1350 <EMAIL>
1352 <EMAIL>
1357 <EMAIL>
1359 <EMAIL>
1364 <EMAIL>
1378 <EMAIL>
1382 <EMAIL>
862 <EMAIL>
1399 <EMAIL>
1404 <EMAIL>
849 <EMAIL>
66 <EMAIL>
905 <EMAIL>
1282 <EMAIL>
1413 <EMAIL>
1320 <EMAIL>
1019 <EMAIL>
1314 <EMAIL>
82 <EMAIL>
1434 <EMAIL>
573 <EMAIL>
1454 <EMAIL>
1458 <EMAIL>
1459 <EMAIL>
1461 <EMAIL>
1310 <EMAIL>
1151 <EMAIL>
1396 <EMAIL>
1486 <EMAIL>
1488 <EMAIL>
1493 <EMAIL>
1494 <EMAIL>
1503 <EMAIL>
1059 <EMAIL>
1516 <EMAIL>
444 <EMAIL>
1519 <EMAIL>
1526 <EMAIL>
1527 <EMAIL>
1321 <EMAIL>
1532 <EMAIL>
1511 <EMAIL>
686 <EMAIL>
1550 <EMAIL>
1005 <EMAIL>
555 <EMAIL>
1198 <EMAIL>
722 <EMAIL>
1470 <EMAIL>
1257 <EMAIL>
805 <EMAIL>
1581 <EMAIL>
300 <EMAIL>
1584 <EMAIL>
1248 <EMAIL>
480 <EMAIL>
948 <EMAIL>
1599 <EMAIL>
125 <EMAIL>
344 <EMAIL>
1141 <EMAIL>
1189 <EMAIL>
1610 <EMAIL>ld
1039 <EMAIL>
1615 <EMAIL>
1618 <EMAIL>
1425 <EMAIL>
1628 <EMAIL>
1300 <EMAIL>
1642 <EMAIL>
1625 <EMAIL>
1262 <EMAIL>
1655 <EMAIL>
869 <EMAIL>
1658 <EMAIL>
1659 <EMAIL>
1662 <EMAIL>
1026 <EMAIL>
1673 <EMAIL>
1675 <EMAIL>
1460 <EMAIL>
1464 <EMAIL>
1695 <EMAIL>
1707 <EMAIL>
1716 <EMAIL>
1718 <EMAIL>
1724 <EMAIL>
1725 <EMAIL>
1729 <EMAIL>
967 <EMAIL>
1734 <EMAIL>
1075 <EMAIL>
1668 <EMAIL>
977 <EMAIL>
176 <EMAIL>
33 <EMAIL>
1744 <EMAIL>
434 <EMAIL>
666 <EMAIL>
1035 <EMAIL>
1295 <EMAIL>
1765 <EMAIL>
1773 <EMAIL>
1779 <EMAIL>
1780 <EMAIL>
276 <EMAIL>
1782 <EMAIL>
1787 <EMAIL>
831 <EMAIL>
1112 <EMAIL>
1791 <EMAIL>
309 <EMAIL>
1795 <EMAIL>
558 <EMAIL>
1803 <EMAIL>
816 <EMAIL>
165 <EMAIL>
465 <EMAIL>
1698 <EMAIL>
23 <EMAIL>
1824 <EMAIL>
1826 <EMAIL>
755 <EMAIL>
1033 <EMAIL>
1844 <EMAIL>
289 <EMAIL>
709 <EMAIL>
1772 <EMAIL>
1859 <EMAIL>
1822 <EMAIL>
1132 <EMAIL>
1854 <EMAIL>
1873 <EMAIL>
1877 <EMAIL>
1878 <EMAIL>
1429 <EMAIL>
144 <EMAIL>
883 <EMAIL>
412 <EMAIL>
1337 <EMAIL>
223 <EMAIL>
415 <EMAIL>
1893 <EMAIL>
199 <EMAIL>
1525 <EMAIL>
803 <EMAIL>
1837 <EMAIL>
1899 <EMAIL>
1901 <EMAIL>
1794 <EMAIL>
1162 <EMAIL>
1904 <EMAIL>
48 <EMAIL>
1578 <EMAIL>
1509 <EMAIL>
765 <EMAIL>
\.
COPY important_dates (id, date_acceptance_a, full_paper_submissio, date_camera_ready, ending_date, starting_date, abstract_submission) FROM stdin;
\.
COPY invited_talks (id, given, abstract, submitted_at) FROM stdin;
\.
COPY organizations (id, name) FROM stdin;
\.
COPY organizers (id) FROM stdin;
\.
COPY organizing_committees (id, was_an_organizing_committ) FROM stdin;
\.
COPY papers (id, abstract, paper_title, submitted_at, type) FROM stdin;
452 456 bering evasiveness toto teashop reaccepts 256 0
1828 1910 kinkiest xix recollected householder overeducated objurgate 7 0
932 1547 plateauing reoccupations embossers cerebrum gloves mohairs 470 0
450 2115 undamped sharpers forbearer anesthetization 69 0
942 1867 richer succories dwelling scrapped prat islanded burlily thanklessly swiveled 18 0
133 2074 grunts venturers valiantly unremorsefully extradites 163 0
1111 1524 grunts venturers valiantly unremorsefully extradites 69 0
572 2162 summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers 18 0
1155 2163 gantleted richer succories dwelling scrapped prat islanded burlily 18 0
626 1934 sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites 256 0
1236 1238 mongoloids danker raunchiness perspicuously disjoined nigglings midmonths 7 0
637 2084 oralogy tibetans slavishly hipless prs bluejays 163 0
614 945 extradites stollens ponderers conditione loathly 256 0
600 1652 bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill 256 0
302 2090 islanded burlily thanklessly swiveled 7 0
205 1664 hipless prs bluejays cuppier nonsurgical skimpiest outpoured 163 0
208 212 pirog desexes summable heliocentricity excretions recelebrating 18 0
467 668 cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins 86 0
1418 1417 undermentioned outflanking funnyman commuted lachrymation floweret 69 0
916 1224 succories dwelling scrapped prat 18 0
1711 1712 commuted lachrymation floweret arcadian 86 0
606 1936 emanative blowpipe varies thickest machinability orbiters tormentor owner 256 0
299 1802 peeped daydreams permuting immediately canzona interrelated cooked 256 0
479 871 outpoured dissociated heartier petitionee 256 0
1195 1199 exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing 7 0
613 2087 goodwife technicolor plenishes nippy bounden occulters blubberer amenities desecrated 256 0
1245 1244 recalculation safest signiory latchets inflecting trephines hops 163 0
877 876 desexes summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers 470 0
1366 1365 peeped daydreams permuting immediately canzona interrelated cooked reformers goodwife 163 0
1900 2002 sandwiching bewitchment cheaters riffled kerneling 86 0
404 574 desexes summable heliocentricity excretions recelebrating dually plateauing 256 0
971 976 jambing sodality outcrop slipcases phenylketonuria grunts 86 0
488 492 arcadian acridities unrealistic substituting surges preheats 256 0
396 395 funnyman commuted lachrymation floweret arcadian acridities unrealistic 69 0
322 1065 bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling 7 0
152 1060 lachrymation floweret arcadian acridities unrealistic substituting 470 0
924 1757 undermentioned outflanking funnyman commuted 470 0
268 2080 tibetans slavishly hipless prs bluejays cuppier nonsurgical skimpiest 256 0
139 207 loggias reconciliating photocatalyst lenity tautological jambing 69 0
1124 1174 villainousness miscalling firefanged skeins 7 0
27 1580 miscalling firefanged skeins equalled sandwiching bewitchment cheaters 86 0
904 1412 evasiveness toto teashop reaccepts 86 0
495 1872 vagus kinkiest xix recollected householder 163 0
612 1507 surges preheats loggias reconciliating photocatalyst lenity tautological 256 0
367 371 stilbestrol villainousness miscalling firefanged skeins 86 0
61 60 rhythmical wastebaskets powderer immigrates inserter 256 0
1025 1380 loftily yabber reprovingly blungers dwarflike effulgences coreless tuberculoses environs 7 0
170 1029 outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites 86 0
1325 1326 measles decentralizing hogfishes gantleted richer 18 0
649 654 valiantly unremorsefully extradites stollens ponderers conditione 69 0
1159 1158 photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts 86 0
288 2154 bering evasiveness toto teashop reaccepts gunneries exorcises 7 0
242 241 polers oinked apnea maxillary dumpers bering 18 0
602 2046 earings circumscribed paralyzingly pouchy surrejoinders chestiest measurage tonsils 256 0
880 881 loggias reconciliating photocatalyst lenity 470 0
541 540 fobbed transcribed swifters redigesting ostinato recalculation 7 0
1551 1902 unknowns mongoloids danker raunchiness perspicuously disjoined 163 0
731 730 burlily thanklessly swiveled polers oinked apnea maxillary 470 0
464 2247 grunts venturers valiantly unremorsefully extradites stollens ponderers conditione loathly 470 0
1113 1117 heliocentricity excretions recelebrating dually plateauing reoccupations 69 0
969 1896 embossers cerebrum gloves mohairs admiralties bewigged playgoers 86 0
414 1134 kerneling napoleons rifer splinting surmisers satisfying undamped 69 0
354 2059 acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst 86 0
53 1817 giros podgy vagus kinkiest xix 7 0
349 955 paraguayans resonates overbites terminals giros podgy vagus kinkiest xix 163 0
529 1099 loggias reconciliating photocatalyst lenity tautological jambing sodality 86 0
496 1620 giros podgy vagus kinkiest xix recollected householder 69 0
156 1442 villainousness miscalling firefanged skeins equalled sandwiching 86 0
52 1601 xix recollected householder overeducated objurgate treaties preprocessor despising loftily 256 0
63 1861 coreless tuberculoses environs hulled preexamination 7 0
611 741 junketeers isolators reducing nethermost nonfiction retrogressions eliminates unknowns mongoloids 256 0
643 2220 tautological jambing sodality outcrop slipcases phenylketonuria 470 0
179 183 swiveled polers oinked apnea maxillary 18 0
505 1051 undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation 7 0
567 1086 outcrop slipcases phenylketonuria grunts 163 0
1344 1748 floweret arcadian acridities unrealistic substituting surges 86 0
587 1885 batting waspishly stilbestrol villainousness miscalling firefanged skeins 69 0
190 1541 miscalling firefanged skeins equalled sandwiching bewitchment 256 0
619 1465 dwarflike effulgences coreless tuberculoses environs hulled 256 0
419 418 reoccupations embossers cerebrum gloves mohairs admiralties 86 0
326 1208 maxillary dumpers bering evasiveness toto teashop reaccepts gunneries exorcises 18 0
1704 1703 rifer splinting surmisers satisfying undamped sharpers forbearer 163 0
822 2178 islanded burlily thanklessly swiveled polers oinked apnea maxillary 18 0
658 661 heliocentricity excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves 18 0
538 1269 reaccepts gunneries exorcises pirog desexes summable heliocentricity 86 0
1590 1595 satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman 86 0
603 793 objurgate treaties preprocessor despising 256 0
1012 1011 arcadian acridities unrealistic substituting surges preheats loggias 86 0
1215 1947 batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching 86 0
846 845 forbearer anesthetization undermentioned outflanking funnyman 86 0
937 1022 funnyman commuted lachrymation floweret arcadian 470 0
1635 1770 splinting surmisers satisfying undamped sharpers forbearer anesthetization undermentioned 7 0
936 2201 admiralties bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling 470 0
394 393 toto teashop reaccepts gunneries exorcises 86 0
1689 1690 unrealistic substituting surges preheats loggias reconciliating photocatalyst 7 0
423 428 dissociated heartier petitionee brill 7 0
1671 1797 tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers valiantly 163 0
721 1858 apnea maxillary dumpers bering evasiveness toto teashop reaccepts 18 0
645 1202 slipcases phenylketonuria grunts venturers valiantly 7 0
605 1457 funnyman commuted lachrymation floweret arcadian 256 0
569 646 heliocentricity excretions recelebrating dually plateauing reoccupations embossers 86 0
265 1233 summable heliocentricity excretions recelebrating 7 0
547 1776 inserter plights corollaries gaudiness irades inadvisability 256 0
408 1385 recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs admiralties 86 0
391 1612 phenylketonuria grunts venturers valiantly 86 0
894 1534 dwelling scrapped prat islanded burlily 470 0
694 696 lachrymation floweret arcadian acridities unrealistic 163 0
681 680 kerneling napoleons rifer splinting surmisers satisfying undamped sharpers forbearer 86 0
343 1680 bounden occulters blubberer amenities 256 0
705 706 embossers cerebrum gloves mohairs admiralties bewigged playgoers 470 0
622 1586 kerneling napoleons rifer splinting surmisers satisfying undamped sharpers 256 0
607 1986 forbearer anesthetization undermentioned outflanking 256 0
748 1212 slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens 470 0
1188 1193 technicolor plenishes nippy bounden occulters blubberer 163 0
1079 2064 slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens ponderers 86 0
178 177 sandwiching bewitchment cheaters riffled kerneling 69 0
226 225 apnea maxillary dumpers bering evasiveness toto 7 0
215 1047 ponderers conditione loathly cancels debiting parrots 470 0
1214 1630 sandwiching bewitchment cheaters riffled kerneling 163 0
1309 1313 householder overeducated objurgate treaties preprocessor despising loftily 7 0
1129 2192 recelebrating dually plateauing reoccupations embossers 18 0
752 1428 plateauing reoccupations embossers cerebrum gloves mohairs admiralties 18 0
928 1666 surges preheats loggias reconciliating photocatalyst lenity tautological jambing sodality 470 0
512 1234 recollected householder overeducated objurgate treaties preprocessor 163 0
375 1419 evasiveness toto teashop reaccepts gunneries exorcises 18 0
1502 1760 sodality outcrop slipcases phenylketonuria grunts venturers valiantly 86 0
148 1956 napoleons rifer splinting surmisers 86 0
281 280 immediately canzona interrelated cooked 163 0
532 2133 reoccupations embossers cerebrum gloves mohairs admiralties 7 0
618 1109 canzona interrelated cooked reformers goodwife technicolor plenishes nippy 256 0
1157 1979 admiralties bewigged playgoers cheques batting waspishly stilbestrol 163 0
813 897 cheaters riffled kerneling napoleons 470 0
1334 1336 safest signiory latchets inflecting trephines hops exec junketeers 7 0
275 1004 splinting surmisers satisfying undamped sharpers forbearer 86 0
278 1683 xix recollected householder overeducated objurgate treaties preprocessor despising loftily 69 0
407 2157 oinked apnea maxillary dumpers bering evasiveness toto 18 0
1094 1093 batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching 7 0
91 1063 stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment cheaters 163 0
202 986 admiralties bewigged playgoers cheques batting 69 0
665 1275 arcadian acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst 69 0
110 1533 preprocessor despising loftily yabber reprovingly blungers 69 0
15 45 latchets inflecting trephines hops exec junketeers isolators reducing 163 0
501 500 embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting 18 0
866 865 preheats loggias reconciliating photocatalyst lenity tautological 86 0
1018 1971 dually plateauing reoccupations embossers cerebrum gloves 18 0
30 29 objurgate treaties preprocessor despising loftily yabber reprovingly 163 0
689 1922 gloves mohairs admiralties bewigged playgoers 18 0
217 898 householder overeducated objurgate treaties 69 0
930 1172 sodality outcrop slipcases phenylketonuria grunts venturers valiantly 470 0
1778 1777 playgoers cheques batting waspishly stilbestrol villainousness 69 0
161 162 nigglings midmonths labium peeped daydreams permuting immediately canzona 163 0
927 1766 extradites stollens ponderers conditione loathly 470 0
583 1579 plateauing reoccupations embossers cerebrum gloves 163 0
935 1561 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned 470 0
362 361 reducing nethermost nonfiction retrogressions eliminates 7 0
83 87 gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating 86 0
617 725 giros podgy vagus kinkiest xix recollected householder overeducated 256 0
1069 1072 resonates overbites terminals giros 7 0
513 516 environs hulled preexamination oralogy tibetans slavishly hipless 256 0
377 1125 attractive yeller cognizably reminds teratoid coadjutors thuggeries nondestructive maladjustments 256 0
625 1373 machinability orbiters tormentor owner zanier corkscrewed promiscuousness clewed reassemble 256 0
430 848 ponderers conditione loathly cancels debiting parrots paraguayans 163 0
640 1880 swifters redigesting ostinato recalculation safest signiory 163 0
551 738 hogfishes gantleted richer succories dwelling scrapped prat 18 0
615 985 bedstraws thoughtless elation swampland earings circumscribed paralyzingly 256 0
111 2237 debiting parrots paraguayans resonates overbites terminals giros podgy 470 0
591 590 photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria 256 0
691 1961 bering evasiveness toto teashop reaccepts 18 0
627 1553 paraguayans resonates overbites terminals giros podgy vagus 256 0
1588 1841 recelebrating dually plateauing reoccupations embossers cerebrum gloves 69 0
797 802 substituting surges preheats loggias 86 0
382 1811 desexes summable heliocentricity excretions recelebrating 69 0
1505 1851 teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity 7 0
216 1751 despising loftily yabber reprovingly blungers dwarflike effulgences coreless 163 0
620 1700 maladjustments subpartnership cordilleras recirculations alkalin 256 0
411 1764 hops exec junketeers isolators reducing nethermost nonfiction retrogressions eliminates 163 0
100 1566 inflecting trephines hops exec junketeers isolators reducing nethermost 256 0
462 461 teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity 18 0
769 774 firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling 86 0
1288 1287 grunts venturers valiantly unremorsefully extradites 86 0
67 68 miscalling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling 69 0
432 437 paraguayans resonates overbites terminals giros 69 0
0 4 tibetans slavishly hipless prs bluejays cuppier nonsurgical 7 0
1169 1809 nonfiction retrogressions eliminates unknowns mongoloids 163 0
81 1085 loathly cancels debiting parrots paraguayans resonates overbites 470 0
16 17 dwelling scrapped prat islanded burlily 18 0
102 107 unrealistic substituting surges preheats 69 0
194 196 treaties preprocessor despising loftily yabber reprovingly blungers dwarflike 7 0
218 221 decentralizing hogfishes gantleted richer succories dwelling 18 0
233 234 inflecting trephines hops exec junketeers isolators reducing nethermost nonfiction 7 0
253 258 admiralties bewigged playgoers cheques 256 0
291 297 zanier corkscrewed promiscuousness clewed 256 0
306 311 forbearer anesthetization undermentioned outflanking funnyman 69 0
335 337 dually plateauing reoccupations embossers 86 0
397 402 toto teashop reaccepts gunneries exorcises pirog desexes 18 0
316 445 reoccupations embossers cerebrum gloves mohairs admiralties bewigged playgoers 18 0
469 472 bering evasiveness toto teashop reaccepts 470 0
522 526 desexes summable heliocentricity excretions recelebrating 86 0
554 560 bewigged playgoers cheques batting waspishly stilbestrol 86 0
575 579 cheaters riffled kerneling napoleons rifer splinting surmisers 86 0
592 595 outflanking funnyman commuted lachrymation floweret arcadian acridities unrealistic 86 0
669 670 excretions recelebrating dually plateauing 163 0
674 679 prat islanded burlily thanklessly swiveled polers 470 0
601 683 sandwiching bewitchment cheaters riffled kerneling napoleons rifer 256 0
136 733 undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted 470 0
776 786 undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation 86 0
815 818 vagus kinkiest xix recollected householder overeducated objurgate treaties 69 0
116 837 riffled kerneling napoleons rifer splinting surmisers 163 0
839 840 exorcises pirog desexes summable heliocentricity excretions recelebrating dually 470 0
853 856 sandwiching bewitchment cheaters riffled kerneling napoleons rifer splinting surmisers 470 0
621 888 desecrated tetrachlorides loutish polygony malines 256 0
385 909 alkalin succulently marquise underlaid neurosurgeon innervated 256 0
305 954 lachrymation floweret arcadian acridities unrealistic 86 0
227 1007 reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases 163 0
962 1016 reprovingly blungers dwarflike effulgences coreless tuberculoses environs hulled preexamination 163 0
608 1032 disjoined nigglings midmonths labium peeped daydreams 256 0
1037 1042 isolators reducing nethermost nonfiction 163 0
124 1056 irades inadvisability disciplinarians majors manifestly decaffeinates scalepan 256 0
830 1142 tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers 69 0
1147 1149 terminals giros podgy vagus 163 0
1161 1163 intermuscular fobbed transcribed swifters redigesting 163 0
1216 1217 hulled preexamination oralogy tibetans slavishly hipless 7 0
702 1259 stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment 69 0
374 1280 cerebrum gloves mohairs admiralties bewigged playgoers cheques batting 86 0
950 1293 raunchiness perspicuously disjoined nigglings midmonths labium peeped 163 0
12 1305 thanklessly swiveled polers oinked 18 0
534 1322 exorcises pirog desexes summable heliocentricity 18 0
907 1347 mohairs admiralties bewigged playgoers cheques batting 18 0
629 1356 embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting 256 0
1228 1398 waspishly stilbestrol villainousness miscalling 86 0
644 1424 debiting parrots paraguayans resonates 69 0
550 1446 oinked apnea maxillary dumpers 256 0
648 1452 maxillary dumpers bering evasiveness 470 0
1231 1476 admiralties bewigged playgoers cheques batting 86 0
1496 1501 bewitchment cheaters riffled kerneling napoleons rifer 86 0
1508 1512 undermentioned outflanking funnyman commuted lachrymation floweret arcadian 86 0
553 1544 outflanking funnyman commuted lachrymation 163 0
623 1573 surrejoinders chestiest measurage tonsils pasturage thurifer teazle fringier rhythmical 256 0
95 1606 unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity tautological 86 0
262 1633 reaccepts gunneries exorcises pirog desexes summable heliocentricity 470 0
1637 1640 unremorsefully extradites stollens ponderers conditione loathly 163 0
926 1645 skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons 470 0
943 1684 swiveled polers oinked apnea maxillary 7 0
130 1727 tautological jambing sodality outcrop slipcases 86 0
633 1738 gloves mohairs admiralties bewigged 69 0
896 1745 surges preheats loggias reconciliating photocatalyst lenity tautological 163 0
119 1784 gloves mohairs admiralties bewigged playgoers cheques batting 7 0
1156 1789 debiting parrots paraguayans resonates overbites terminals giros podgy vagus 7 0
796 1816 cheaters riffled kerneling napoleons rifer splinting 69 0
1806 1823 photocatalyst lenity tautological jambing sodality outcrop slipcases 69 0
1833 1834 petitionee brill neologic intermuscular 163 0
667 1848 cooked reformers goodwife technicolor plenishes 163 0
1747 1853 jambing sodality outcrop slipcases 7 0
791 1876 retrogressions eliminates unknowns mongoloids danker raunchiness 7 0
1856 1890 teashop reaccepts gunneries exorcises pirog desexes 86 0
812 1892 lachrymation floweret arcadian acridities unrealistic substituting surges preheats 69 0
476 1905 burlily thanklessly swiveled polers oinked apnea maxillary dumpers bering 18 0
861 1912 gunneries exorcises pirog desexes 18 0
360 1917 unmuzzling measles decentralizing hogfishes 18 0
9 1920 redigesting ostinato recalculation safest signiory latchets inflecting 7 0
604 1931 recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs 256 0
1504 1940 excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves 86 0
348 1966 loathly cancels debiting parrots paraguayans resonates overbites terminals giros 69 0
1973 1975 midmonths labium peeped daydreams permuting immediately canzona interrelated cooked 7 0
929 1981 oinked apnea maxillary dumpers bering evasiveness toto teashop reaccepts 470 0
457 1988 playgoers cheques batting waspishly 470 0
628 1995 loftily yabber reprovingly blungers dwarflike 256 0
982 2000 mohairs admiralties bewigged playgoers 86 0
97 2007 anesthetization undermentioned outflanking funnyman commuted lachrymation 86 0
154 2012 slipcases phenylketonuria grunts venturers 69 0
957 2016 objurgate treaties preprocessor despising loftily 69 0
127 2020 richer succories dwelling scrapped 470 0
1918 2025 forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian 163 0
939 2026 recelebrating dually plateauing reoccupations embossers 470 0
40 2029 loathly cancels debiting parrots paraguayans resonates 256 0
229 2031 rifer splinting surmisers satisfying undamped sharpers 470 0
36 2037 recalculation safest signiory latchets inflecting trephines hops 256 0
1598 2056 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned 86 0
1393 2069 firefanged skeins equalled sandwiching 163 0
938 2076 miscalling firefanged skeins equalled sandwiching bewitchment cheaters 470 0
934 2085 unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity 470 0
333 2092 floweret arcadian acridities unrealistic substituting surges 7 0
498 2096 teratoid coadjutors thuggeries nondestructive 256 0
59 2099 funnyman commuted lachrymation floweret arcadian acridities unrealistic substituting surges 86 0
562 2103 lenity tautological jambing sodality 86 0
1706 2109 embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting 69 0
1660 2119 acridities unrealistic substituting surges preheats loggias 163 0
931 2122 forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian 470 0
55 2126 valiantly unremorsefully extradites stollens 470 0
50 49 kerneling napoleons rifer splinting surmisers satisfying undamped 7 0
77 76 conditione loathly cancels debiting parrots paraguayans resonates overbites 7 0
75 114 nonsurgical skimpiest outpoured dissociated heartier petitionee brill neologic intermuscular 7 0
151 150 exorcises pirog desexes summable 69 0
193 192 pirog desexes summable heliocentricity 86 0
250 249 outpoured dissociated heartier petitionee brill neologic intermuscular fobbed transcribed 163 0
286 285 photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts 7 0
329 328 blungers dwarflike effulgences coreless 7 0
1819 2180 reaccepts gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating 18 0
2108 2182 cerebrum gloves mohairs admiralties 18 0
750 749 ponderers conditione loathly cancels debiting parrots paraguayans resonates 69 0
483 763 perspicuously disjoined nigglings midmonths labium peeped daydreams permuting 7 0
768 767 cerebrum gloves mohairs admiralties bewigged playgoers 163 0
933 2196 swiveled polers oinked apnea maxillary dumpers bering evasiveness 470 0
609 781 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman 256 0
232 806 mongoloids danker raunchiness perspicuously disjoined 256 0
808 807 gloves mohairs admiralties bewigged playgoers cheques batting waspishly stilbestrol 86 0
43 828 equalled sandwiching bewitchment cheaters 86 0
879 878 sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites 69 0
1548 2213 admiralties bewigged playgoers cheques batting waspishly stilbestrol 18 0
357 921 satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman 163 0
703 2216 heliocentricity excretions recelebrating dually 470 0
32 2217 kerneling napoleons rifer splinting surmisers 470 0
598 964 transcribed swifters redigesting ostinato recalculation safest 256 0
925 2230 stilbestrol villainousness miscalling firefanged skeins equalled 470 0
1097 1096 environs hulled preexamination oralogy tibetans 163 0
247 2235 arcadian acridities unrealistic substituting surges preheats loggias 470 0
1119 1118 funnyman commuted lachrymation floweret arcadian 7 0
647 1184 plateauing reoccupations embossers cerebrum gloves mohairs admiralties bewigged 69 0
1206 1205 surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman 69 0
485 1249 bewitchment cheaters riffled kerneling napoleons rifer 7 0
565 1252 pasturage thurifer teazle fringier 256 0
25 24 recelebrating dually plateauing reoccupations embossers 7 0
873 1263 extradites stollens ponderers conditione loathly cancels debiting 7 0
388 1279 prs bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier 7 0
537 536 scrapped prat islanded burlily thanklessly swiveled 18 0
1302 1301 skeins equalled sandwiching bewitchment 69 0
1145 1308 exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing 86 0
1267 1319 surges preheats loggias reconciliating photocatalyst 69 0
913 1351 cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill 163 0
716 1367 preheats loggias reconciliating photocatalyst lenity tautological jambing sodality 7 0
260 259 desexes summable heliocentricity excretions recelebrating dually plateauing 18 0
543 1390 exec junketeers isolators reducing 7 0
319 1406 batting waspishly stilbestrol villainousness miscalling 256 0
417 1421 plateauing reoccupations embossers cerebrum gloves 86 0
440 439 prat islanded burlily thanklessly swiveled polers oinked 18 0
835 1471 brill neologic intermuscular fobbed transcribed 7 0
747 1474 overbites terminals giros podgy vagus kinkiest 69 0
624 1487 reaccepts gunneries exorcises pirog desexes summable 256 0
521 520 toto teashop reaccepts gunneries exorcises pirog 470 0
11 1521 summable heliocentricity excretions recelebrating dually plateauing 86 0
1342 1530 playgoers cheques batting waspishly stilbestrol villainousness miscalling 86 0
1002 1540 riffled kerneling napoleons rifer splinting surmisers satisfying undamped 86 0
47 1569 extradites stollens ponderers conditione loathly cancels debiting 69 0
157 693 excretions recelebrating dually plateauing 18 0
745 744 gloves mohairs admiralties bewigged playgoers cheques batting waspishly 470 0
599 1609 nonfiction retrogressions eliminates unknowns 256 0
1440 1627 skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons rifer 86 0
1137 1636 sharpers forbearer anesthetization undermentioned 86 0
900 1657 surges preheats loggias reconciliating photocatalyst 86 0
347 1709 grunts venturers valiantly unremorsefully 256 0
175 1710 cancels debiting parrots paraguayans resonates overbites terminals giros 163 0
65 1723 brill neologic intermuscular fobbed transcribed 256 0
346 919 photocatalyst lenity tautological jambing sodality 470 0
188 1733 malines cliffhanger entailments reindexed bedstraws thoughtless 256 0
610 1741 neurosurgeon innervated hunts barrens emanative blowpipe varies 256 0
1537 1743 rifer splinting surmisers satisfying undamped 86 0
503 1786 cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins 163 0
186 1036 batting waspishly stilbestrol villainousness miscalling 470 0
122 1801 effulgences coreless tuberculoses environs 163 0
113 1812 anesthetization undermentioned outflanking funnyman 7 0
616 1814 manifestly decaffeinates scalepan folklorists attractive yeller cognizably reminds 256 0
1790 1831 reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases 86 0
460 1857 rifer splinting surmisers satisfying undamped sharpers forbearer anesthetization 69 0
826 1881 skeins equalled sandwiching bewitchment cheaters 7 0
1736 1886 bounden occulters blubberer amenities desecrated tetrachlorides loutish 163 0
351 1888 venturers valiantly unremorsefully extradites stollens ponderers 7 0
1242 1241 dumpers bering evasiveness toto 18 0
\.
COPY person_conference_document (pid, cid) FROM stdin;
3 0
3 600
5 0
6 0
6 1653
8 9
10 11
10 12
10 13
14 15
21 16
21 538
21 539
22 16
22 382
22 452
22 538
22 731
23 16
23 381
23 452
23 538
23 671
23 1052
28 26
28 119
28 178
28 705
28 2172
33 31
33 1276
33 1711
33 1740
34 35
34 36
37 38
41 39
41 55
41 815
41 873
44 42
44 443
48 46
48 1669
48 1911
51 52
51 53
56 54
56 766
56 819
57 58
57 59
62 63
66 64
66 423
71 67
71 253
71 260
71 939
71 1214
71 1215
73 67
73 939
73 1948
73 2036
74 75
79 32
79 78
79 665
82 80
82 1431
85 83
85 226
85 537
89 83
89 537
89 1810
89 2106
92 90
92 462
92 604
92 843
92 981
92 982
93 94
93 95
98 96
98 396
98 853
98 1660
98 1919
101 99
103 102
103 227
103 228
103 229
104 102
104 229
104 305
104 505
105 102
105 229
105 304
105 895
105 896
109 110
109 111
109 112
117 27
117 115
117 319
117 710
117 1129
117 2136
120 118
120 156
120 157
120 253
120 1213
120 2028
121 122
125 123
126 127
126 128
131 129
131 133
131 152
131 153
131 154
134 132
134 562
134 1021
134 2013
135 136
135 137
135 138
135 139
141 455
141 933
141 1113
141 2141
141 2212
142 503
142 521
142 633
142 1339
142 1340
143 577
143 1840
144 1397
144 1483
145 146
145 147
145 148
145 149
155 116
155 156
155 157
158 113
158 159
164 161
164 739
165 161
168 161
171 169
171 247
171 716
171 824
171 1111
172 173
176 174
176 884
176 1739
180 179
180 569
180 570
181 179
181 569
181 1450
181 1941
181 2240
182 179
182 569
182 647
182 648
187 188
191 189
191 457
191 458
191 459
191 460
198 194
198 1935
199 194
200 194
203 201
203 502
203 604
203 691
203 969
203 1632
206 204
206 628
209 208
209 466
209 467
209 468
213 208
213 467
213 532
214 215
214 216
214 217
222 218
222 995
223 218
223 302
230 231
230 232
236 233
238 233
238 611
239 240
243 244
243 245
248 170
248 246
248 1522
251 252
254 72
254 253
254 260
254 531
254 1215
254 2027
261 202
261 262
261 263
261 264
261 265
261 266
269 267
270 271
270 272
270 273
276 274
276 450
276 553
276 925
279 277
279 383
279 1767
282 283
282 284
289 11
289 12
289 287
289 1587
289 1846
290 9
293 291
294 291
296 291
300 298
303 301
303 549
303 550
303 551
309 306
309 485
309 938
309 1593
309 1792
310 306
310 826
310 938
310 2055
312 306
312 622
312 938
312 1598
313 43
313 315
313 316
313 318
313 319
313 320
321 322
321 323
321 324
327 325
327 521
327 633
327 1157
327 1222
327 2215
331 330
331 397
331 808
331 842
331 1106
334 332
334 1159
338 335
338 721
338 1091
339 335
339 471
339 721
339 1705
339 1830
341 335
341 721
344 342
345 346
345 347
345 348
345 349
352 350
355 113
355 353
355 935
355 1266
355 1267
358 356
358 575
358 689
358 1989
358 2238
359 360
363 364
366 365
366 605
366 1012
366 1563
366 2107
368 119
368 367
368 658
368 932
368 1302
372 367
372 658
373 265
373 374
373 375
378 376
379 380
386 384
389 387
392 390
399 397
399 808
399 1381
400 91
400 397
400 808
400 839
400 1778
403 404
403 405
403 406
403 407
403 408
403 409
412 65
412 410
415 190
415 413
415 1891
416 326
416 417
420 351
421 133
421 422
424 423
427 423
429 430
429 431
434 432
434 645
434 930
436 432
436 614
436 930
438 351
438 432
438 930
438 1972
441 329
442 43
442 316
442 2234
444 43
444 316
446 265
446 447
446 448
451 275
451 449
451 601
451 1626
451 2229
454 193
454 452
454 822
454 1115
454 2197
454 2263
465 463
465 1622
465 1661
473 404
473 407
473 408
473 469
473 1157
473 1706
474 469
474 1384
474 1706
474 2116
477 475
477 524
477 583
477 929
477 1588
480 478
480 1245
481 195
482 483
486 484
486 776
487 61
489 488
489 1820
489 2123
491 488
491 900
491 931
491 1119
491 1806
494 464
494 495
494 496
497 498
499 483
506 504
506 1344
507 508
509 464
509 496
509 511
509 512
514 513
514 2160
515 513
515 918
517 250
517 513
523 476
523 522
525 288
525 476
525 522
525 624
525 929
525 1588
530 493
530 528
530 830
530 924
530 1119
535 25
535 533
535 701
535 702
535 703
535 704
542 543
545 544
548 546
552 275
552 553
555 554
555 861
555 1557
555 1558
555 1559
556 554
556 861
556 1393
558 554
558 861
558 1649
563 561
563 1808
564 565
568 529
568 566
568 1140
568 1756
573 257
573 571
573 1395
576 575
576 689
576 1389
578 457
578 460
578 575
578 689
580 581
580 582
580 583
584 108
584 2032
585 617
585 1268
585 1749
585 2017
588 586
588 629
588 1187
589 9
594 592
594 1635
597 592
597 965
597 2167
631 630
634 404
634 419
634 632
634 1200
634 1242
634 1968
635 84
635 669
635 1078
638 628
638 636
641 639
642 643
642 644
642 645
651 430
651 649
651 934
651 1079
652 649
652 934
652 2049
652 2052
655 656
655 657
662 663
666 59
666 607
666 664
666 1235
666 1634
672 669
672 916
672 1856
673 151
673 669
673 674
673 1225
673 1855
675 151
675 394
675 674
675 942
675 943
677 151
677 674
677 1443
677 1842
677 2151
685 186
685 601
685 681
685 1206
685 1548
685 1918
686 601
686 681
686 1175
686 1306
686 1548
686 1549
688 440
688 687
688 1116
688 1145
688 1927
692 202
692 262
692 690
692 1897
697 694
697 788
699 396
699 694
699 853
699 1994
700 694
700 776
700 926
700 1418
707 27
707 178
707 319
707 705
707 1129
709 178
709 322
709 705
709 773
709 1017
709 1730
712 711
712 1236
713 299
713 714
717 715
717 1079
718 559
718 719
722 340
722 720
722 1570
723 81
723 617
723 957
724 617
724 1014
724 1375
724 2228
727 613
728 729
734 95
734 136
734 139
734 1671
737 736
740 611
743 388
746 495
746 747
746 748
753 745
753 751
753 796
753 858
753 859
755 754
756 91
756 401
756 757
759 758
760 761
760 762
765 550
765 678
765 764
765 916
765 1686
765 1856
770 708
770 769
770 1018
770 1796
772 322
772 769
772 1018
775 776
775 777
775 778
775 779
780 2
782 295
783 391
783 591
783 653
783 784
783 785
789 166
792 790
794 795
799 797
800 605
800 732
800 797
800 2086
800 2149
801 797
801 1670
803 336
803 1505
803 1552
805 65
805 804
810 50
810 811
810 812
810 813
810 814
816 55
816 815
817 55
817 77
817 815
823 821
823 1721
827 275
827 825
831 829
831 1422
831 1790
833 832
833 2242
834 598
834 835
836 116
836 932
836 1302
836 2078
836 2079
841 398
841 839
841 1778
841 1930
841 2188
844 385
849 47
849 430
849 928
849 1405
850 851
852 329
855 50
855 396
855 609
855 846
855 853
862 557
862 587
862 860
862 877
862 1355
862 1393
863 864
867 479
867 2254
869 479
869 1245
870 479
870 1316
874 872
875 541
882 750
882 880
883 750
883 880
883 1747
885 750
885 880
885 1251
886 887
890 621
891 621
893 621
899 900
901 902
905 302
905 903
905 1407
908 457
908 460
908 906
908 1124
908 2121
910 385
914 912
917 915
917 1889
920 205
922 565
923 237
941 20
941 940
944 628
946 50
946 947
948 308
948 622
948 1543
948 1597
948 1598
951 100
951 949
953 305
956 81
956 957
959 958
959 2175
960 615
961 962
963 170
963 716
967 232
967 966
968 691
968 969
968 970
973 971
973 1691
974 612
974 971
974 1348
974 1529
974 1694
977 971
977 1637
978 979
980 110
980 111
980 962
983 716
983 984
987 202
987 262
987 604
987 691
987 969
989 990
989 991
992 637
993 994
996 997
998 999
1003 357
1003 1001
1003 1345
1005 433
1005 614
1005 1153
1005 1173
1008 227
1008 1344
1009 227
1009 1388
1010 255
1010 369
1010 660
1010 932
1010 1214
1010 1302
1013 913
1019 133
1019 612
1019 879
1019 937
1019 1159
1023 879
1023 937
1023 2018
1026 1024
1027 377
1028 61
1030 608
1033 608
1033 1236
1035 1034
1038 1037
1039 1037
1041 1037
1041 2209
1044 30
1044 215
1044 217
1044 1554
1046 215
1046 217
1046 1156
1049 505
1049 952
1053 281
1054 623
1057 124
1058 124
1059 124
1062 1061
1067 913
1067 1068
1070 1069
1071 1069
1075 81
1075 726
1075 957
1075 1069
1077 242
1077 1076
1077 1504
1077 2156
1080 462
1080 982
1080 1081
1083 1082
1087 913
1088 63
1090 1089
1090 1157
1090 1742
1092 609
1092 854
1092 2112
1095 362
1100 529
1100 830
1100 924
1101 529
1101 1482
1103 1102
1103 1713
1105 210
1105 1104
1105 1393
1107 894
1107 1108
1112 591
1112 1110
1112 1349
1112 1502
1112 1638
1114 440
1114 583
1114 933
1114 1113
1114 1145
1120 119
1120 370
1120 659
1122 1123
1122 1124
1127 347
1127 1126
1127 1746
1127 1965
1128 27
1128 838
1128 1129
1131 414
1131 936
1131 1704
1131 2004
1131 2125
1132 357
1132 414
1132 936
1132 1307
1132 1497
1132 1871
1133 190
1133 414
1133 501
1133 936
1133 1094
1133 1900
1135 100
1135 1136
1138 640
1138 1139
1141 333
1141 830
1141 924
1141 1602
1143 440
1143 1144
1143 1145
1146 606
1148 1147
1151 643
1151 644
1151 1147
1152 1147
1154 904
1154 1155
1160 220
1162 1161
1164 1161
1165 1161
1168 1169
1170 205
1176 907
1176 1002
1176 1124
1178 1179
1181 1180
1182 1183
1186 943
1186 1185
1186 2171
1189 1031
1189 1188
1191 1188
1194 562
1196 1195
1196 1207
1196 1264
1198 326
1198 417
1198 521
1198 633
1198 1195
1203 645
1204 1167
1209 950
1210 1211
1218 1216
1218 1358
1219 1216
1221 543
1223 916
1223 1687
1223 1856
1226 70
1226 572
1226 1227
1226 1228
1226 1229
1232 25
1232 1230
1232 1818
1237 1236
1243 619
1243 1025
1246 411
1248 626
1248 1247
1248 1596
1250 1192
1253 1254
1256 53
1256 1255
1257 534
1257 702
1257 703
1257 1342
1258 211
1258 532
1258 702
1258 703
1258 2019
1262 347
1262 1201
1262 1261
1262 1648
1265 541
1271 1097
1271 1272
1274 1273
1274 1334
1277 32
1277 59
1277 607
1277 665
1277 896
1278 698
1278 1137
1282 374
1282 375
1282 988
1282 1409
1283 547
1285 1284
1286 596
1289 1245
1290 667
1291 1292
1294 950
1295 950
1297 1296
1298 288
1298 527
1298 1906
1300 1299
1304 11
1304 12
1304 768
1310 1309
1314 1309
1315 1309
1318 622
1318 695
1318 1137
1318 1317
1318 2191
1320 534
1320 1260
1320 1342
1320 1415
1320 1416
1321 534
1321 1342
1321 1531
1324 419
1324 1197
1324 1242
1327 1325
1328 1325
1328 1832
1330 127
1330 1325
1331 1332
1337 1334
1338 1334
1343 1323
1343 1341
1346 907
1346 1002
1346 1990
1346 2140
1350 15
1352 407
1352 408
1352 1353
1354 25
1354 587
1354 629
1354 877
1354 1231
1354 1819
1357 846
1359 235
1361 1360
1363 627
1363 1362
1363 1768
1363 2134
1364 623
1369 1368
1370 625
1374 625
1377 551
1377 1376
1378 896
1378 1379
1382 1383
1387 1386
1391 1006
1391 1012
1392 1329
1394 572
1394 1228
1396 572
1396 1228
1396 1468
1399 100
1401 1400
1403 1119
1403 1402
1404 1190
1408 911
1411 1410
1413 1414
1425 643
1425 644
1425 1623
1426 752
1426 1064
1426 1440
1427 745
1427 752
1427 796
1427 1440
1427 1704
1429 752
1429 1066
1429 1440
1429 1603
1429 1879
1433 747
1433 748
1433 1432
1434 1074
1434 1435
1434 1436
1438 1437
1438 2053
1441 1430
1441 1439
1441 1704
1445 550
1445 551
1445 894
1448 40
1448 1447
1448 1621
1449 184
1449 288
1449 647
1449 648
1449 1928
1449 1929
1451 647
1451 648
1451 1505
1451 1907
1451 2170
1453 868
1454 1455
1456 605
1456 935
1456 1012
1456 1267
1458 495
1459 127
1459 219
1459 302
1460 627
1460 1048
1460 1681
1460 1682
1461 1040
1463 1169
1463 1462
1464 106
1464 607
1464 1050
1464 1344
1464 1688
1466 619
1470 260
1470 1215
1470 1469
1473 1472
1475 1231
1475 1819
1479 1478
1481 1480
1481 1496
1481 2108
1485 1484
1486 1372
1488 1490
1488 1491
1488 1492
1493 498
1494 599
1494 1495
1499 357
1499 1496
1499 2108
1500 1130
1500 1496
1500 1864
1500 2001
1500 2108
1503 242
1503 1504
1503 1505
1506 391
1506 847
1509 1508
1509 1722
1509 1923
1509 1924
1510 1508
1510 2120
1511 812
1511 813
1511 1508
1515 1514
1515 1980
1516 193
1516 822
1518 1517
1519 1520
1523 247
1523 591
1523 1111
1523 1502
1525 247
1525 1111
1525 1689
1525 1898
1526 620
1527 1528
1532 343
1538 826
1538 1536
1539 820
1539 1970
1545 553
1545 1594
1550 1551
1555 30
1555 278
1555 627
1555 927
1562 935
1562 1267
1562 2035
1565 1564
1568 1567
1568 1711
1572 1571
1576 1575
1578 676
1578 1577
1581 1582
1583 1
1584 1585
1589 1015
1591 307
1591 1590
1591 2008
1592 485
1592 1590
1599 88
1599 226
1599 382
1599 453
1599 731
1599 1600
1604 95
1604 735
1604 2043
1604 2044
1608 1607
1610 1556
1611 391
1614 1613
1615 866
1615 1616
1618 603
1618 1097
1619 40
1619 464
1619 496
1619 873
1625 614
1625 1624
1625 1646
1625 1647
1628 889
1629 1214
1629 1672
1629 1949
1631 185
1631 2097
1639 152
1639 154
1639 972
1639 1637
1642 1643
1644 787
1644 926
1644 1418
1644 2009
1651 1650
1654 600
1655 1656
1658 122
1659 97
1659 1660
1662 30
1665 205
1667 47
1667 175
1667 928
1667 1882
1668 47
1668 286
1668 626
1668 928
1668 1288
1673 1674
1675 1094
1675 1676
1675 1677
1678 343
1679 343
1685 19
1685 382
1685 731
1685 943
1685 1270
1692 130
1692 152
1692 154
1692 1689
1693 1689
1693 1726
1695 1696
1698 620
1699 620
1702 1701
1707 791
1707 1708
1715 1711
1716 567
1716 1717
1718 650
1718 1079
1718 1719
1718 1720
1724 1574
1725 197
1728 130
1729 292
1732 354
1732 1560
1732 1731
1734 426
1737 1735
1744 1156
1750 216
1752 216
1755 771
1755 1754
1759 1758
1762 286
1762 1761
1763 411
1765 268
1765 1166
1769 278
1769 927
1771 1635
1771 1714
1772 593
1772 812
1772 813
1772 1635
1773 1774
1775 547
1779 606
1780 1781
1782 1783
1787 148
1787 1788
1791 904
1791 1155
1794 599
1794 1793
1795 1150
1799 1798
1800 1838
1803 1804
1807 866
1807 1805
1807 2061
1807 2062
1815 503
1815 1281
1815 1420
1821 931
1821 1806
1821 1932
1822 490
1822 567
1822 931
1822 1806
1822 1869
1824 1825
1826 61
1829 603
1829 1827
1835 1833
1836 1833
1837 1833
1844 1845
1849 667
1850 667
1852 1747
1854 1747
1859 616
1860 1546
1860 2256
1863 63
1866 97
1866 857
1866 1865
1866 2127
1868 394
1868 942
1870 587
1870 877
1870 1477
1870 2147
1873 602
1875 791
1877 1312
1878 498
1884 122
1884 1883
1887 1423
1887 2072
1893 36
1893 1894
1899 1467
1901 419
1901 503
1901 1242
1903 1551
1904 362
1908 1828
1909 1828
1914 360
1915 360
1926 1925
1926 2014
1933 435
1933 1171
1937 606
1938 543
1939 640
1942 1335
1944 1918
1944 1943
1944 2118
1945 1946
1951 1950
1952 425
1954 1444
1954 1953
1954 2155
1957 148
1959 362
1963 1962
1963 1969
1964 1847
1967 346
1967 348
1977 1973
1978 1973
1982 768
1982 929
1982 1303
1982 1588
1982 2190
1982 2260
1984 637
1985 1697
1987 1045
1987 2065
1993 1992
1996 798
1997 1137
1999 462
1999 982
2003 501
2003 1900
2005 1895
2005 1960
2006 97
2006 2128
2010 1239
2011 75
2015 268
2015 1839
2022 450
2022 682
2022 925
2022 2021
2023 299
2023 1976
2024 1974
2030 450
2030 826
2030 925
2030 1537
2034 2033
2038 36
2038 1169
2039 175
2040 742
2041 1913
2042 77
2045 602
2047 602
2051 624
2051 1983
2051 2050
2057 1542
2057 1598
2058 167
2060 113
2060 354
2066 2067
2068 1663
2071 835
2071 2070
2073 1025
2077 377
2081 268
2083 2082
2088 613
2089 1073
2091 618
2094 333
2094 1790
2098 1366
2100 2101
2102 873
2104 562
2104 2075
2105 610
2110 1874
2111 615
2113 2114
2117 1371
2124 15
2129 2095
2130 1220
2131 519
2132 1502
2132 1641
2135 77
2138 2137
2139 1921
2142 681
2142 1177
2142 1548
2143 2144
2145 193
2145 822
2145 2214
2146 975
2148 610
2150 250
2152 281
2153 281
2158 2159
2161 329
2164 904
2164 1155
2164 1535
2166 2165
2168 2169
2173 349
2174 1862
2176 2177
2179 65
2185 186
2185 1206
2185 2184
2185 2187
2189 53
2193 1098
2194 618
2195 483
2198 1498
2198 2181
2199 612
2199 1020
2199 1159
2199 2093
2199 2200
2202 156
2202 157
2202 1785
2204 603
2204 1311
2206 2205
2207 232
2208 299
2208 1736
2210 388
2211 567
2211 866
2218 598
2219 1916
2222 2221
2223 835
2224 615
2226 2225
2227 2048
2231 1513
2232 1288
2233 1097
2236 618
2239 1240
2241 2054
2243 512
2244 892
2245 1605
2245 1671
2246 175
2248 2249
2250 1043
2251 565
2252 1753
2253 52
2255 388
2257 1055
2258 599
2258 1366
2259 610
2262 1736
2262 2261
2264 1736
2265 616
2266 518
2268 616
2269 1537
2273 188
2276 684
2276 1955
\.
COPY person_person (reviewer1, reviewer2) FROM stdin;
\.
COPY persons (id, first_name, last_name, gender, conference_contributor, contribution_co_author, committee_member, chair, contribution_1th_author, reviewer, type) FROM stdin;
62 Fovro Chung f t t f f f f 0
168 Adolfa Leuthauser f t t f f f f 0
199 Marna Crookshanks f t t f f f f 0
214 Hagibis Kihn m t t f f f f 0
290 Yves Hunsucker m t t f f f f 0
294 Benita Hatzenbuehler m t t f f f f 0
296 Avniel Debiase m t t f f f f 0
424 Everardo Yidiaris f t t f f f f 0
434 Vasyklo Netz m t t f f f f 0
441 Clementine Barga m t t f f f f 0
494 Rico Boronat m t t f f f f 0
497 Faqueza Correll f t t f f f f 0
499 Gigi Barfuss m t t f f f f 0
564 Raktavira Danforth m t t f f f f 0
743 Rebeca Aday f t t f f f f 0
817 Gil Holben m t t f f f f 0
852 Giselher Nibler f t t f f f f 0
883 Tango Constable f t t f f f f 0
893 Rosamar Wish m t t f f f f 0
956 Toshimichi Speth m t t f f f f 0
960 Cloelia Shein f t t f f f f 0
1028 Dele Galla m t t f f f f 0
1038 Iulia Morra f t t f f f f 0
1053 Aberthol Wilczak m t t f f f f 0
1059 Liselotte Groleau f t t f f f f 0
1071 Graud Shuker m t t f f f f 0
1087 Herberta Fullenwider m t t f f f f 0
1095 Gerharde Heidtbrink f t t f f f f 0
1146 ra Jansons m t t f f f f 0
1148 Kyledyr Constantino f t t f f f f 0
1151 Cady Schweizer m t t f f f f 0
1154 Sharise Heagy f t t f f f f 0
1164 Maela Chamley f t t f f f f 0
1170 Yakamochi Alonza m t t f f f f 0
1221 Marce Fiscalini f t t f f f f 0
1294 Mirra Tygart m t t f f f f 0
1315 Gabriele Darsey f t t f f f f 0
1327 Amalia Krajcik m t t f f f f 0
1338 Rosalinde Leinbach m t t f f f f 0
1350 Torokanova Kosloski f t t f f f f 0
1532 Pazia Comnick f t t f f f f 0
1658 Jake Bober m t t f f f f 0
1679 Clariee Martucci m t t f f f f 0
1698 Aseel Waddups f t t f f f f 0
1750 Stacie Ciesielski f t t f f f f 0
1779 Feli Trainham f t t f f f f 0
1836 Xuqiu Deller m t t f f f f 0
1837 Zeanes Hinsley m t t f f f f 0
1849 Liebetraud Kiddy m t t f f f f 0
1852 Kobe Guttirez f t t f f f f 0
1859 Detana Trautz f t t f f f f 0
1873 Noburo Charleton m t t f f f f 0
1878 Jada Grech m t t f f f f 0
1915 Adamanta Schlitt m t t f f f f 0
1938 Janah Moryl f t t f f f f 0
2045 Freda Freimuth m t t f f f f 0
2091 Guiseppa Thurstonson m t t f f f f 0
2105 Momus Rivadeneira f t t f f f f 0
2124 Hedda Yoshida f t t f f f f 0
2135 Javier Hausauer f t t f f f f 0
2153 Marisa Roufs m t t f f f f 0
2194 Imelde Ballin f t t f f f f 0
2195 Janny Mccaine f t t f f f f 0
2246 Favio Mutherspaw m t t f f f f 0
2251 Plakida Gothe f t t f f f f 0
2255 Evgnios Feasel m t t f f f f 0
2268 Christelle Garced f t t f f f f 0
187 Pieter Frend m t t f f f f 5
372 Claudios Lemmert m t t f f f f 5
416 Jaen Kerechanko f t t f f f f 5
523 Shaka Enget f t t f f f f 5
875 Xylina Mcnicoll f t t f f f f 5
899 Julien Triveno m t t f f f f 5
2266 Hita Porell f f f f f f t 0
2227 Alon Paulik f f f f f f t 0
2068 Timotheos Cazaree f f f f f f t 0
251 Tasia Ellenburg f f f f f f t 0
172 Bernharda Riese f f f f f f t 0
1565 Emily Mileski f f f f f f t 0
1926 Coireall Shelor f f f f f f t 0
2166 LaReina Iqbal f f f f f f t 0
1844 Parma Borgese f f f f f f t 0
1628 Tamah Misemer f f f f f f t 0
1993 Dandrae Dorne f f f f f f t 0
2129 Melker Kayastha f f f f f f t 0
1877 Goncalo Gahm m f f f f f t 0
993 Shijo Mccullon m f f f f f t 0
996 Rodell Sonnefeld m f f f f f t 0
1382 Aonghas Pashley f f f f f f t 0
125 Vasuki Riech m f f f f f t 0
1518 Cadell Parral f f f f f f t 0
82 Hesperos Schindele m f f f f f t 0
1485 Ariela Harpine m f f f f f t 0
2176 Lamesha Neher f f f f f f t 0
1182 Matro Newell m f f f f f t 0
176 Adriaan Belter m f f f f f t 0
389 Paco Filary f f f f f f t 0
1952 Kotaro Leitheiser f f f f f f t 0
243 Elvera Zito f f f f f f t 0
1773 Ashakiran Bingley f f f f f f t 0
2168 Wolfhild Torros f f f f f f t 0
2257 Apela Brewton f f f f f f t 0
718 Breana Scheffler m f f f f f t 0
2131 Raffaello Herard m f f f f f t 0
1300 Husain Coaxum f f f f f f t 0
392 Gengyo Cumbass m f f f f f t 0
886 Ekantika Bisogno m f f f f f t 0
641 Triesha Carland f f f f f f t 0
794 Faas Chitty f f f f f f t 0
269 Kemina Wyke f f f f f f t 0
1387 Bruno Barthe m f f f f f t 0
863 Lowell Kostka f f f f f f t 0
631 Alala Cilento f f f f f f t 0
722 Loreliese Aspri f f f f f f t 0
1253 Anissa Sciarretta f f f f f f t 0
989 Radosha Ferioli f f f f f f t 0
662 Agamemnon Bouras m f f f f f t 0
1610 Yuka Heikes f f f f f f t 0
1945 Becca Curney m f f f f f t 0
2117 Traci Erazmus f f f f f f t 0
780 Arno Barquera f f f f f f t 0
728 Crysta Mateen f f f f f f t 0
1576 Gerke Ostermeyer m f f f f f t 0
2083 Gerik Ferries f f f f f f t 0
548 Amba Guidos f f f f f f t 0
1583 Wilhelm Juart f f f f f f t 0
1996 Naazil Buchannan m f f f f f t 0
2110 Florentyna Cost f f f f f f t 0
352 Materia Newsum m f f f f f t 0
1734 Garrett Blair f f f f f f t 0
1737 Ingetrud Balezentis f f f f f f t 0
1434 Pascale Skripko f f f f f f t 0
1515 Elan Malloch m f f f f f t 0
1291 Leonarda Imai f f f f f f t 0
1589 Ludovica Diekmann f f f f f f t 0
2100 Ariana Berardinelli f f f f f f t 0
1083 Feofana Knudsen f f f f f f t 0
2231 Sharisha Gebhart m f f f f f t 0
2244 Fjodora Sleger m f f f f f t 0
563 Jokin Hytros m f f f f f t 0
1343 Angel Delcarmen f f f f f f t 0
1527 Jennie Schatzel f f f f f f t 0
101 Asisa Finke f f f f f f t 0
2222 Zytka Skeete m f f f f f t 0
2040 Pete Salada f f f f f f t 0
2250 Ryo Zanders f f f f f f t 0
1780 Berakhiah Province m f f f f f t 0
874 Aracely Kuka m f f f f f t 0
782 Harumi Valenza m f f f f f t 0
2143 Hellmut Tousant f f f f f f t 0
37 Kywrkh Tomaino m f f f f f t 0
1725 Isadoro Bently m f f f f f t 0
1724 Uliaanitsa Samul m f f f f f t 0
2146 Terao Asley f f f f f f t 0
941 Satoru Beaumont f f f f f f t 0
1401 Inayat Deignan m f f f f f t 0
1987 Dores Hugi m f f f f f t 0
2024 Abderus Boston m f f f f f t 0
239 Krystyn Slutsky f f f f f f t 0
850 Severin Buzard m f f f f f t 0
1062 Aishwarya Hallmon f f f f f f t 0
2066 Phoolan Mackie m f f f f f t 0
978 Twain Sannon m f f f f f t 0
1584 Vychan Stotz m f f f f f t 0
545 Kazuhiko Campas f f f f f f t 0
465 Kiuprila Inscore m f f f f f t 0
1860 Masakazu Lisko m f f f f f t 0
2130 Lyron Strawder m f f f f f t 0
386 Abbie Manjarres f f f f f f t 0
1899 Ivonne Elreda f f f f f f t 0
1361 ris Kotter m f f f f f t 0
1581 Teodoro Coyt m f f f f f t 0
1964 Mita Schwering m f f f f f t 0
1887 Aetos Bitar f f f f f f t 0
1963 Kaspar Reierson f f f f f f t 0
2034 Holda Dible f f f f f f t 0
507 Tetsui Zekria f f f f f f t 0
2058 Tekusa Houlberg f f f f f f t 0
1759 Vrata Socks f f f f f f t 0
1479 Newa Sabina f f f f f f t 0
1578 Angha Bievenue m f f f f f t 0
363 Irmgard Accala m f f f f f t 0
1608 Ora Poleyestewa f f f f f f t 0
1486 Zotico Cerrano m f f f f f t 0
1297 Lashaune Lava f f f f f f t 0
282 Sadayoshi Englemann f f f f f f t 0
1795 Sibylla Reas m f f f f f t 0
279 Zarek Laasaga f f f f f f t 0
2089 Teana Stallworth m f f f f f t 0
1519 Leopoldina Alvey m f f f f f t 0
1729 Emmanoul Gianunzio m f f f f f t 0
1392 Ashley Kesselring f f f f f f t 0
901 Hilmiyya Pagon m f f f f f t 0
2174 Sebina Prakoth m f f f f f t 0
1103 Izazkun Suleski f f f f f f t 0
1942 Estrelle Wedgworth m f f f f f t 0
1782 Natascha Neverson f f f f f f t 0
737 Maksimina Pecinousky m f f f f f t 0
1286 Hoitsu Mccahill f f f f f f t 0
2248 Kerstine Finders m f f f f f t 0
44 Hilario Kovats m f f f f f t 0
1250 Clarinda Oberg m f f f f f t 0
2041 Lubachitsa Husch m f f f f f t 0
2239 Korotskovaia Stowell m f f f f f t 0
1181 Swidbert Repka m f f f f f t 0
1824 Dunja Luchenbill m f f f f f t 0
1655 Ieshia Demarrais m f f f f f t 0
2219 Juichi Porep m f f f f f t 0
1985 Otylia Lowdermilk f f f f f f t 0
1035 Salmoneus Duncans f f f f f f t 0
1285 Guiletta Rosek m f f f f f t 0
344 Jafar Abbenante f f f f f f t 0
1411 Thanaa Bustos f f f f f f t 0
917 Shiko Seagroves f f f f f f t 0
2198 Bruna Nervis m f f f f f t 0
1413 Cicely Genna m f f f f f t 0
1933 Ladinka Ehiginator m f f f f f t 0
1369 Alfonso Billen m f f f f f t 0
2226 Yayang Kuczenski m f f f f f t 0
481 Burkhard Hussein m f f f f f t 0
1453 Korotsek Baltzell f f f f f f t 0
1799 Baucis Campese m f f f f f t 0
379 Angelica Maccarter m f f f f f t 0
2252 Ehud Bazzle f f f f f f t 0
2276 Clarine Waynick f f f f f f t 0
1642 Muzammil Mutter f f f f f f t 0
755 Eberhardine Hazim f f f f f f t 0
760 Tashiya Marrable m f f f f f t 0
1178 Hortencia Brenda m f f f f f t 0
959 Lene Vosquez m f f f f f t 0
1539 Benignus Diec f f f f f f t 0
1803 Liebtraud Schorsch m f f f f f t 0
1651 Bernhareda Mcclenny f f f f f f t 0
2113 Gyoergy Rakoci m f f f f f t 0
1204 Enya Coll f f f f f f t 0
2193 Jamie Berrie m f f f f f t 0
2158 Lex Hoven f f f f f f t 0
1404 Adwr Liiv f f f f f f t 0
923 Oscar Formica f f f f f f t 0
1631 Vedetta Pilkins f f f f f f t 0
1572 Nandin Uribazo m f f f f f t 0
1461 Sophronia Peakes m f f f f f t 0
1408 Krispin Macnamee m f f f f f t 0
1695 Alonza Galyan f f f f f f t 0
1438 Sasson Kniffin m f f f f f t 0
792 Seinosuke Grimaldi m f f f f f t 0
833 Kazushige Goeppner m f f f f f t 0
1359 Delmara Mrazek m f f f f f t 0
789 Luithilde Brandolino m f f f f f t 0
2241 Cato Himmelwright f f f f f f t 0
1702 NewyddIlyn Borchers f f f f f f t 0
1614 Virgilio Englander m f f f f f t 0
914 Jamuna Orts f f f f f f t 0
1755 Kantha Lybert f f f f f f t 0
2010 Saahir Muto f f f f f f t 0
1954 Kozue Efthimiou f f f f f f t 0
655 Bailee Chabolla f f f f f f t 0
378 Daya Luhr f f f f f f t 0
1951 Iselle Churches f f f f f f t 0
1026 Elvis Rocasah f f f f f f t 0
2206 Pantyslawa Pemble f f f f f f t 0
573 Sebastiano Lockyer m f f f f f t 0
2005 Faatin Bonn f f f f f f t 0
1331 Bussho Oda m f f f f f t 0
1160 Edmondo Rommelfanger m f f f f f t 0
2138 Sanya Parma f f f f f f t 0
1473 Eijiro Majied f f f f f f t 0
270 Elli Asner m f f f f f t 0
10 Barsha Murrain m t t f f f t 0
21 Melisa Patriarco m t t f f f t 0
28 Kit Storrs m t t f f f t 0
34 Duron Dibella f t t f f f t 0
57 Jonam Steinle f t t f f f t 0
66 Huaning Zwolski f t t f f f t 0
93 Jamaall Rohen f t t f f f t 0
103 Maysak Anetsberger m t t f f f t 0
164 Daris Astley m t t f f f t 0
171 Dondrea Crocco m t t f f f t 0
180 Solange Alson f t t f f f t 0
181 Tydeus Dyckman m t t f f f t 0
198 Zanthe Felarca m t t f f f t 0
203 Angela Hager m t t f f f t 0
206 Che Kess m t t f f f t 0
230 Cyril Croslen f t t f f f t 0
254 Inejiro Javens m t t f f f t 0
261 Loke Tuton m t t f f f t 0
276 Giovanna Douthit m t t f f f t 0
303 Trina Sjerven f t t f f f t 0
6 Hypnos Blank m t t t f f t 0
310 Garon Tischler m t t f f f t 0
321 Richild Brinius f t t f f f t 0
331 Kellie Frenner m t t f f f t 0
334 Edmonda Ditullio m t t f f f t 0
338 Taaliba Debrita f t t f f f t 0
355 Uleia Mineah m t t f f f t 0
358 Gavriella Sasson m t t f f f t 0
399 Makhna Stabile m t t f f f t 0
412 Yoriko Boot f t t f f f t 0
442 Datja Carner m t t f f f t 0
446 Anbessa Gulde f t t f f f t 0
477 Argos Cumings f t t f f f t 0
480 Dayu Vient m t t f f f t 0
486 Sigurd Mahli m t t f f f t 0
506 Takako Nordine m t t f f f t 0
515 Misty Holladay m t t f f f t 0
568 Latoya Lovato f t t f f f t 0
576 Lottchen Pillitteri f t t f f f t 0
635 Vasilista Hamic f t t f f f t 0
666 Deverell Anez f t t f f f t 0
673 Dianmu Aver f t t f f f t 0
688 Octave Diana m t t f f f t 0
692 Tarran Pointer m t t f f f t 0
699 Handy Ratajczak f t t f f f t 0
709 Einian Frascella m t t f f f t 0
712 Ayla Moncrief f t t f f f t 0
717 Solymar Palisbo f t t f f f t 0
724 Silvester Yelvington m t t f f f t 0
775 Hidemichi Tropp f t t f f f t 0
801 Lucile Homola f t t f f f t 0
803 Sander Garriss m t t f f f t 0
827 Kim Colombe f t t f f f t 0
849 Carli Maggert f t t f f f t 0
862 Jenna Ovit m t t f f f t 0
867 Asami Sellek m t t f f f t 0
870 Radoste Hoefling m t t f f f t 0
905 Juriaan Schremp f t t f f f t 0
908 Kristin Sandhu m t t f f f t 0
948 Alyss Wuitschick m t t f f f t 0
951 Gerakna Ryneer m t t f f f t 0
968 Letizia Madaras f t t f f f t 0
973 Luitfriede Westmark f t t f f f t 0
983 Haimo Huesso m t t f f f t 0
1003 Blanca Ursery f t t f f f t 0
1009 Krosa Kuney f t t f f f t 0
1041 Evi Heidebrecht f t t f f f t 0
1067 Muni Mccuiston m t t f f f t 0
1075 Uchdryd Locicero m t t f f f t 0
1080 Taliyah Jafari m t t f f f t 0
1101 Iravati Pizzolato f t t f f f t 0
1105 Miles Manero m t t f f f t 0
1112 Ineng Alkbsh m t t f f f t 0
1122 Calida Starace m t t f f f t 0
1127 Yaineris Francisco m t t f f f t 0
1128 Evamarie Coraham m t t f f f t 0
1131 Patroklus Hertel m t t f f f t 0
1132 Irminwin Milloy f t t f f f t 0
1135 Dewayne Buttermore m t t f f f t 0
1143 Gia Stonesifer m t t f f f t 0
1223 Helene Nik m t t f f f t 0
1256 Miloushka Pezez f t t f f f t 0
1262 Kakuei Blanford f t t f f f t 0
1271 Nessa Thomison m t t f f f t 0
1274 Odysseus Dilthey m t t f f f t 0
1278 Aristomnis Dauber f t t f f f t 0
1320 Cathy Phebus m t t f f f t 0
1321 Erechtheus Muschick f t t f f f t 0
1324 Erminia Damrell f t t f f f t 0
1328 Tatsukichi Gerstenberger m t t f f f t 0
1352 Toku Synowiec f t t f f f t 0
1377 Korechika Mamer f t t f f f t 0
1391 Iasion Kirt f t t f f f t 0
1426 Cassian Cozzy f t t f f f t 0
1429 Socorro Mcsorley m t t f f f t 0
1451 Ieshige Kosinski m t t f f f t 0
1459 Pilib Seu f t t f f f t 0
1460 Graziana Callabrass f t t f f f t 0
1463 Caryn Grudzinski m t t f f f t 0
1470 Lilja Siwiec m t t f f f t 0
1481 Mikolas Sirman m t t f f f t 0
1494 Shesha Humbird m t t f f f t 0
1506 Loris Elder f t t f f f t 0
1509 Koshiro Augusto f t t f f f t 0
1510 Liska Lambourne f t t f f f t 0
1525 Soshu Burress f t t f f f t 0
1545 Aida Appelt f t t f f f t 0
1562 Mawar Camfield m t t f f f t 0
1568 Yae Timblin f t t f f f t 0
1604 Mora Christofferse m t t f f f t 0
1615 Eshita Whitby f t t f f f t 0
1625 Francoise Rioux f t t f f f t 0
1667 Vladlena Tlumacki f t t f f f t 0
1685 Dama Leino m t t f f f t 0
1716 Sam Mattheis m t t f f f t 0
1718 Conchetta Cater f t t f f f t 0
1765 Brenda Varley f t t f f f t 0
1771 JamAan Kine f t t f f f t 0
1772 Gizla Nordmark m t t f f f t 0
1787 Cherry Dolence m t t f f f t 0
1794 Krystal Farria m t t f f f t 0
1821 Lance Fernandes f t t f f f t 0
1822 Jazmine Susman m t t f f f t 0
1829 Este Manon m t t f f f t 0
1870 Aandranee Sakamaki m t t f f f t 0
1884 Katreen Osthoff f t t f f f t 0
2006 Nana Stania f t t f f f t 0
2015 Tera Vigen m t t f f f t 0
2023 Maeko Kontogiannis m t t f f f t 0
2057 Nisus Coby m t t f f f t 0
2071 Immanuel Bugos m t t f f f t 0
2104 Brys Robak m t t f f f t 0
2132 Reiko Castile f t t f f f t 0
2142 Chebi Selking f t t f f f t 0
2145 Shahaama Berum m t t f f f t 0
2202 Madaleno Bercier m t t f f f t 0
2204 Frangiskos Truly m t t f f f t 0
2262 Lili Atoe f t t f f f t 0
1454 Shizu Capener f f f t f f t 0
1800 Xiomara Plowe f f f t f f t 0
2139 Galni Mclarty f f f t f f t 0
1673 Kaveri Zombro f f f t f f t 0
759 Latorray Delawder f f f t f f t 0
300 Patrizio Iliffe f f f t f f t 0
56 Raimund Widdowson f f f t f f t 0
998 Cenon Colon f f f t f f t 0
1210 Libera Ahlborn m f f t f f t 0
1488 Dijana Murfin f f f t f f t 0
144 Emina Yeeloy m f f t f f t 0
48 Sypovaia Wegmann m f f t f f t 0
143 Karita Sukovich f f f t f f t 0
584 Vseslava Szollosi f f f t f f t 0
142 Olzhbeta Hasenberg m t t t f f t 0
158 Eskil Littledave m t t t f f t 0
585 Tekla Gallerani f t t t f f t 0
1815 Riddhi Colesar m t t t f f t 0
823 Raaid Chrispen m f f t t f t 0
558 Casswallawn Scheiblich m t t t t f t 0
1396 Jace Ruotolo m t t t t f t 0
5 Breonia Gierling m t t f f f f 1
8 Amir Conkling f t t f f f f 1
236 Gerald Fieselman m t t f f f f 1
359 Barbi Denery m t t f f f f 1
740 Gisselle Teigen f t t f f f f 1
890 Hortense Ganotisi f t t f f f f 1
961 Jakoba Bueche f t t f f f f 1
1054 Annunziata Ravi f t t f f f f 1
1057 Marlene Dague f t t f f f f 1
1162 Luca Dolbin f t t f f f f 1
1168 Kea Croshaw f t t f f f f 1
1203 Yumiko Ginther m t t f f f f 1
1209 Rhea Platas f t t f f f f 1
1237 Walto Messman f t t f f f f 1
1289 Natasia Sliter m t t f f f f 1
1310 Chesell Vatter m t t f f f f 1
1370 Vonda Jasmine f t t f f f f 1
1458 Toyoaki Richoux f t t f f f f 1
1526 Bozena Tilly m t t f f f f 1
1654 Saer Dillenbeck f t t f f f f 1
1662 Bhavin Primavera m t t f f f f 1
1665 Primavera Huffstickler m t t f f f f 1
1744 Tamiko Docken f t t f f f f 1
1763 Myshka Krishnamurthy m t t f f f f 1
1826 Fajyaz Mutana f t t f f f f 1
1850 Honey Eidinger m t t f f f f 1
1863 Eber Ebinger m t t f f f f 1
1904 Janita Bolieu f t t f f f f 1
1978 Muna Lastovica m t t f f f f 1
2011 Iken Siluis f t t f f f f 1
2073 Janeka Hochhalter f t t f f f f 1
2077 Garca Diers f t t f f f f 1
2088 Sajag Traunfeld f t t f f f f 1
2098 Matashichi Butman f t t f f f f 1
2102 Gerlind Boomershine f t t f f f f 1
2111 Vrotsislava Bouman m t t f f f f 1
2150 Yukako Klingbeil m t t f f f f 1
2173 Oryan Mirles m t t f f f f 1
2189 Urako Staker m t t f f f f 1
2223 Alka Groshek m t t f f f f 1
2233 Bennet Melendes f t t f f f f 1
2253 Clmentine Engellant f t t f f f f 1
2259 Tsuruki Hazelrigg f t t f f f f 1
2264 Sherry Mullennix m t t f f f f 1
23 Booker Spiker f t t f f f t 1
33 Galyn Stobie m t t f f f t 1
41 Athindoros Shurgot m t t f f f t 1
89 Miranda Leinen m t t f f f t 1
92 Lexi Faulk m t t f f f t 1
105 Eileen Heick m t t f f f t 1
73 Demont Escalet m t t f f f t 5
79 Chikafusa Koolman f t t f f f t 5
309 Mikio Brunston m t t f f f t 5
415 Bezubaia Wiece m t t f f f t 5
438 Aspasa Abaunza m t t f f f t 5
474 Oka Prock f t t f f f t 5
489 Bhoomika Secord f t t f f f t 5
836 Davida Rho m t t f f f t 5
1023 Seriozhenka Homen f t t f f f t 5
109 Dirthe Kiewiet m t t f f f t 1
117 Tienne Segraves f t t f f f t 1
120 Eligius Vanwechel f t t f f f t 1
126 Martina Mcclary f t t f f f t 1
131 Tatiiana Sublett m t t f f f t 1
134 Demetria Tramonti f t t f f f t 1
135 Atsumichi Licano m t t f f f t 1
145 Houke Luthe f t t f f f t 1
191 Anthony Row f t t f f f t 1
209 Arcadia Granade f t t f f f t 1
222 Akina Jang m t t f f f t 1
248 Juanisha Seppi m t t f f f t 1
289 Shinji Kapler f t t f f f t 1
327 Ofelia Golde m t t f f f t 1
339 Gorshedna Marone m t t f f f t 1
366 Hasnaa Sietsema f t t f f f t 1
421 Malcolm Voelz f t t f f f t 1
429 Latrice Ghrist m t t f f f t 1
451 Erik Strothmann f t t f f f t 1
454 Alexandros Lagazo f t t f f f t 1
514 Barbie Dubonnet f t t f f f t 1
530 Shontal Sehnert f t t f f f t 1
535 Gustel Pitek m t t f f f t 1
555 Elif Gameros m t t f f f t 1
580 Heidelore Ruschmann f t t f f f t 1
588 Atsumori Bloyer f t t f f f t 1
597 Teriuihi Lachner m t t f f f t 1
634 Fedorav Solich m t t f f f t 1
638 Roseann Ora f t t f f f t 1
652 Tadao Pentaris m t t f f f t 1
677 Motoyasu Calligy m t t f f f t 1
686 Toyoko Colden f t t f f f t 1
697 Oleka Tommasino f t t f f f t 1
713 Kinaana Kodera m t t f f f t 1
753 Gratia Flach m t t f f f t 1
756 Notburg Towber m t t f f f t 1
765 Nik Reposa m t t f f f t 1
770 Warona Pelligrino f t t f f f t 1
783 Lucretia Ferndez m t t f f f t 1
805 Trillare Stukel f t t f f f t 1
810 Tyonna Sturdevant f t t f f f t 1
831 Michizane Krips f t t f f f t 1
841 Caddock Stagowski f t t f f f t 1
885 Mamie Howen f t t f f f t 1
946 Daniel Harriston m t t f f f t 1
967 Fedoritsa Stinner f t t f f f t 1
974 Karina Eggington m t t f f f t 1
1005 Reece Raburn m t t f f f t 1
1010 Alona Lucario f t t f f f t 1
1044 Nonna Laplaunt m t t f f f t 1
1049 Nolan Brownle f t t f f f t 1
1077 Safiyya Letchaw f t t f f f t 1
1090 Igone Rader f t t f f f t 1
1092 Aleydis Virgadamo f t t f f f t 1
1186 Firdaus Casavez f t t f f f t 1
1196 Maureo Benedict f t t f f f t 1
1226 Shaakira Ricklefs f t t f f f t 1
1232 Agpios Bia m t t f f f t 1
1248 Faith Neeld f t t f f f t 1
1282 Hilary Braddy f t t f f f t 1
1298 Torah Giller m t t f f f t 1
1318 Tramaine Scruton m t t f f f t 1
1346 Lloyd Stallsmith m t t f f f t 1
1363 Sanaaa Yoneda f t t f f f t 1
1378 Ernst Bengtson m t t f f f t 1
1403 Shoko Moel m t t f f f t 1
1425 Deelon Sephton m t t f f f t 1
1433 Hannele Kneifl m t t f f f t 1
1441 Wira Majette m t t f f f t 1
1449 Wava Goubeaux f t t f f f t 1
1500 Flaca Sodawasser m t t f f f t 1
1538 Akila Terlizzi m t t f f f t 1
1591 Grite Faddis m t t f f f t 1
1629 Dewi Rappleyea m t t f f f t 1
1675 Dymas Houskeeper m t t f f f t 1
1693 Cleveland Navarez f t t f f f t 1
1732 Inez Meeroff m t t f f f t 1
1762 Flaco Reyome m t t f f f t 1
1807 Deke Mirabelli m t t f f f t 1
1866 Colombe Bermea m t t f f f t 1
1893 Alwin Roewe f t t f f f t 1
1944 Lucrecia Rollings f t t f f f t 1
2022 Effie Menzie m t t f f f t 1
2164 Mya Swilley f t t f f f t 1
2199 Valentina Topia f t t f f f t 1
2245 Leonora Peli m t t f f f t 1
313 Adrien Hoit f t t t f f t 1
800 Llyn Hardge f t t t f f t 1
1120 Charlette Negron m t t t f f t 1
1464 Brittani Gasman f t t t f f t 1
1644 Cindi Ginanni f t t t f f t 1
141 Uqbah Oconnell m t t t t f t 1
403 Ernestine Barkan m t t t t f t 1
910 Waliyya Dandrea f t t f f f f 5
953 Volotkoveia Klees f t t f f f f 5
992 Donald Ludlow f t t f f f f 5
1030 Lacrasha Slavick m t t f f f f 5
1283 Lilly Rissanen m t t f f f f 5
1357 Shoichi Mathey m t t f f f f 5
1466 Danaus Dacanay m t t f f f f 5
1475 Salaah Elio f t t f f f f 5
1550 Majdiyya Bonsall m t t f f f f 5
1728 Amora Ockmond f t t f f f f 5
1769 Kiyoemon Wesby m t t f f f f 5
1868 Lone Pavese f t t f f f f 5
1909 Aurelian Fealy m t t f f f f 5
1967 Dyllan Mairs m t t f f f f 5
2003 Tsumemasa Lloyd f t t f f f f 5
2218 Cellina Schlosser f t t f f f f 5
2232 Aedd Lurye m t t f f f f 5
2269 Saalim Velasquez m t t f f f f 5
3 Flora Aveni f t f f f t f 5
14 Ruwaid Solian f t f f f t f 5
22 Yemena Knebel f t f f f t f 5
51 Casandra Shire m t f f f t f 5
71 Bia Klemme m t f f f t f 5
74 Zeenab Lasane f t f f f t f 5
85 Eupeithes Bevens m t f f f t f 5
104 Cornelius Dolak f t f f f t f 5
121 Leonel Meche m t f f f t f 5
155 Khadija Lagerquist m t f f f t f 5
165 Jeanine Garoner f t f f f t f 5
182 Gulika Alipio f t f f f t f 5
200 Dodie Tedford f t f f f t f 5
213 Joey Yarboro m t f f f t f 5
223 Fahroni Anglea m t f f f t f 5
238 Ajanta Mischel m t f f f t f 5
293 Lauranne Brwon m t f f f t f 5
312 Addison Bovio f t f f f t f 5
341 Dmitreeva Ellsbury m t f f f t f 5
345 Fikriyya Siddiq f t f f f t f 5
368 Gulielma Arce f t f f f t f 5
373 Lecia Baumeister m t f f f t f 5
400 Waatiq Perico f t f f f t f 5
420 Jermaine Mandahl m t f f f t f 5
427 Castalia Ryser m t f f f t f 5
436 Sabina Conde m t f f f t f 5
444 Honami Docherty f t f f f t f 5
473 Timun Silverstein f t f f f t f 5
482 Ayushmati Appelgren f t f f f t f 5
487 Junichi Hagele m t f f f t f 5
491 Strezislava Weingard m t f f f t f 5
517 Tuhfa Pedez f t f f f t f 5
525 Dena Mcentire f t f f f t f 5
542 Jascha Plantier f t f f f t f 5
552 Radha Sloan f t f f f t f 5
556 Coch Foulger m t f f f t f 5
578 Blossom Quero f t f f f t f 5
589 Carevel Tardif m t f f f t f 5
594 Vyshia Waldall m t f f f t f 5
642 Juro Scogin f t f f f t f 5
651 Podolphe Fluitt f t f f f t f 5
672 Araceli Ertel f t f f f t f 5
675 Phaethon Gearon f t f f f t f 5
685 LeVaughan Laity f t f f f t f 5
700 Dorinda Cuchiara m t f f f t f 5
707 Takehide Gauna m t f f f t f 5
723 Pippo Nascimento m t f f f t f 5
727 Evdxios Fageraes m t f f f t f 5
734 Hanka Henness f t f f f t f 5
746 Jedrick Relacion m t f f f t f 5
772 Sozui Jalovel f t f f f t f 5
799 Shaunene Libera f t f f f t f 5
816 Tanja Lockmiller m t f f f t f 5
834 Stopolcha Starowicz f t f f f t f 5
844 AbdulHaadi Castellan m t f f f t f 5
855 Kulthum Liverance f t f f f t f 5
869 Winand Poulton m t f f f t f 5
882 Ran Rubendall f t f f f t f 5
891 Oles Sumaran m t f f f t f 5
920 Llwyr Fagerstrom m t f f f t f 5
922 Mimi Stremmel f t f f f t f 5
944 Khynika Borwig m t f f f t f 5
963 Lippio Llopis f t f f f t f 5
977 Fedyenka Terrasi m t f f f t f 5
980 Maxime Higgs m t f f f t f 5
987 Bibiane Eddens m t f f f t f 5
1008 Masafumi Gipson f t f f f t f 5
1013 Glafira Geng m t f f f t f 5
1019 Kiraanna Scherping m t f f f t f 5
1027 Stolpolcha Shigemi m t f f f t f 5
1033 Namiko Leval m t f f f t f 5
1039 Patrido Sielaff f t f f f t f 5
1046 Paloma Schnall m t f f f t f 5
1058 Apelino Reeber m t f f f t f 5
1070 Gwalchmei Halbert f t f f f t f 5
1088 Nomi Rosato f t f f f t f 5
1100 Nazarova Abundis m t f f f t f 5
1114 Luzia Rahib f t f f f t f 5
1133 Dawn Lauinger f t f f f t f 5
1152 Kerry Navarrate f t f f f t f 5
1165 Nene Rhea f t f f f t f 5
1176 Lisandro Harpst f t f f f t f 5
1191 Ulia Kaines f t f f f t f 5
1194 Tarrant Alsbrooks f t f f f t f 5
1198 Jelawat Balletta m t f f f t f 5
1219 Takuboku Aicklen m t f f f t f 5
1243 Abdul Spicer m t f f f t f 5
1246 Julika Smar f t f f f t f 5
1257 Anzhela Venturelli m t f f f t f 5
1265 Petros Josefy f t f f f t f 5
1277 Mazcho Stringer f t f f f t f 5
1290 Sameera Beazley f t f f f t f 5
1295 Inocente Arntzen m t f f f t f 5
1304 Diana Gulbranson m t f f f t f 5
1314 Ksniatintsa Fuchser f t f f f t f 5
1330 Cecil Kochler f t f f f t f 5
1337 Fanaila Torain m t f f f t f 5
1354 Juri Guzik m t f f f t f 5
1364 Bhadra Whidden m t f f f t f 5
1374 Cipriana Wadzinski m t f f f t f 5
1394 Egor Braue m t f f f t f 5
1399 Okichi Spradlin f t f f f t f 5
1427 Boje Ostrum f t f f f t f 5
1445 Prebrana Kekiwi f t f f f t f 5
1456 Augusto Kempson f t f f f t f 5
1493 Meena Riegel m t f f f t f 5
1499 Isha Quave m t f f f t f 5
1503 Rufio Guitard f t f f f t f 5
1511 Kallie Bednarek f t f f f t f 5
1516 Mitsuo Neff f t f f f t f 5
1523 Jurgisr Arkins m t f f f t f 5
1555 Yoyon Lecroy m t f f f t f 5
1592 Martino Nommay m t f f f t f 5
1611 Marulia Bondura f t f f f t f 5
1618 Constantino Thielen f t f f f t f 5
1619 Fokina Poythress m t f f f t f 5
1659 Mukhtaar Grewe m t f f f t f 5
1668 Adelio Zahner f t f f f t f 5
1678 Madelynn Hoehn m t f f f t f 5
1692 Gota Dorff m t f f f t f 5
1699 Ovidio Bostrom m t f f f t f 5
1715 Salamon Julien m t f f f t f 5
1752 Shandee Finnicum m t f f f t f 5
1775 Mercede Naslund f t f f f t f 5
1791 Caden Failing f t f f f t f 5
1835 Lonce Jiron f t f f f t f 5
1854 YolandaAbigail Insogna m t f f f t f 5
1875 Anwar Katayama m t f f f t f 5
1901 Kuemon Coatie f t f f f t f 5
1903 Sadahige Taglialatela f t f f f t f 5
1908 Tahlia Francisque f t f f f t f 5
1914 Sela Funnye f t f f f t f 5
1937 Ceanna Vangoff m t f f f t f 5
1939 Utathya Kreig f t f f f t f 5
1957 Chantrelle Gruiger m t f f f t f 5
1959 Shontaya Klitzner f t f f f t f 5
1977 Querida Kreatsoulas f t f f f t f 5
1984 AbdulBaasid Chilvers m t f f f t f 5
1997 Nia Drakes m t f f f t f 5
1999 Doppo Kieser m t f f f t f 5
2030 Prokop Limage f t f f f t f 5
2038 Baptist Schubert m t f f f t f 5
2039 Gayle Wingrove m t f f f t f 5
2042 Finn Carboneau m t f f f t f 5
2047 Vilena Orillion f t f f f t f 5
2060 Zumruda Fishman f t f f f t f 5
2081 Emese Abadie m t f f f t f 5
2094 Zufar Pestoni f t f f f t f 5
2148 Ramonda Tripplett f t f f f t f 5
2152 Mudri Gamero m t f f f t f 5
2161 Razan Symons m t f f f t f 5
2179 Dukinea Zmijewski f t f f f t f 5
2207 Yoshida Volo m t f f f t f 5
2208 Aleece Thorn m t f f f t f 5
2210 Avigdor Puglia m t f f f t f 5
2211 Editta Servoss m t f f f t f 5
2224 Matteo Mestre f t f f f t f 5
2236 Ilsegret Akerley m t f f f t f 5
2243 Fabiana Demase m t f f f t f 5
2258 Jared Torgersen f t f f f t f 5
2265 Aeacus Veloz m t f f f t f 5
2273 Analeigh Sebring m t f f f t f 5
1107 Dorel Brandt m t t f f f t 5
1138 Iha Em m t t f f f t 5
1141 Naglaya Tantillo m t t f f f t 5
1189 Argus Bierwirth f t t f f f t 5
1218 Marek Mancino f t t f f f t 5
1258 Chasidy Hoop m t t f f f t 5
1448 Katyushka Gabriele m t t f f f t 5
1639 Lotta Francoise f t t f f f t 5
1707 Iudita Altew m t t f f f t 5
1982 Gennadi Schanck f t t f f f t 5
2051 Guido Genier m t t f f f t 5
98 Coby Smaller m t t t f f t 5
509 Bodil Korinta f t t t f f t 5
2185 Shaqeeqa Levra m t t t f f t 5
1599 Lane Portes f t t t t f t 5
\.
COPY posters (id, abstract, submitted_at) FROM stdin;
\.
COPY publishers (id, name) FROM stdin;
\.
COPY review_expertises (id, expertise, submitted_contribut) FROM stdin;
\.
COPY review_preferences (id, belongs_to_review_refer, degree, topic_or_submissi) FROM stdin;
\.
COPY reviews (id, reviews, detailed_comments) FROM stdin;
710 705 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
711 608 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
715 716 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
720 721 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
732 136 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
736 645 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
751 752 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
754 616 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
758 329 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
764 151 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
766 512 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
790 791 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
320 796 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
804 15 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
821 822 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
824 591 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
825 826 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
829 830 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
832 156 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
838 116 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
854 853 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
860 861 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
872 873 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
656 880 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
549 894 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
364 541 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
903 904 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
906 907 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
912 913 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
915 916 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
237 233 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
940 538 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
308 306 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
949 950 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
958 419 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
266 604 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
965 812 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
966 281 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
858 319 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1001 1002 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
660 658 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1017 1018 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1024 1025 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1031 608 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1034 606 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1048 215 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1050 505 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1052 731 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
468 702 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
283 11 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1061 483 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1076 648 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1078 537 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1082 362 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1089 408 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1102 607 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1104 467 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1110 1111 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
153 612 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
370 367 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1126 346 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
264 375 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1068 619 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1123 148 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
902 1137 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
539 669 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1091 1157 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
995 127 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
220 218 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
979 835 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1180 866 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
295 291 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1185 942 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1187 877 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1197 1195 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1213 932 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1222 404 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1230 1231 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1235 32 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
511 40 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
323 43 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1247 47 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1251 626 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1255 52 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
577 575 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1260 702 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1261 644 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1268 81 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1270 538 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1273 100 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
994 97 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1284 232 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1296 170 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
527 522 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
20 16 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1299 175 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1306 186 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1307 190 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1317 926 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1329 1325 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
814 609 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1341 1342 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1345 907 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1348 154 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1349 247 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1358 268 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1360 275 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1362 278 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1368 628 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
788 776 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1375 110 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1376 302 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1381 265 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1384 408 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1386 343 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1388 354 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1389 357 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1006 227 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1400 615 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1402 900 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
843 839 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
911 385 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
984 391 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1410 122 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2 0 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
26 27 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
31 32 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
39 40 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
42 43 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
46 47 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
54 55 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
64 65 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
72 67 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
78 59 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
80 81 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
84 83 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
90 91 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
96 97 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
99 100 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
94 113 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
115 116 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
118 119 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
123 124 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
129 130 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
132 133 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
169 170 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
174 175 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
149 186 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
189 190 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
201 202 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
204 205 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
246 247 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
267 268 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
274 275 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
277 278 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
287 288 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
298 299 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
301 302 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
304 305 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
325 326 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
330 265 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
332 333 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
336 335 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
342 343 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
350 351 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
353 354 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
356 357 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
365 227 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
376 377 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
381 382 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
383 30 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
384 385 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
387 388 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
390 391 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
252 122 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
398 397 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
410 411 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
413 414 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
433 432 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
449 450 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
463 464 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
409 469 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
475 476 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
478 479 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
484 485 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
502 503 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
504 505 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
528 529 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
531 532 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
533 534 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
544 77 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
546 547 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
559 554 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
561 562 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
566 567 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
571 572 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
173 53 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
586 587 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
240 250 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
630 543 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
632 633 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
636 637 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
639 640 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
664 665 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
231 667 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
687 226 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
690 691 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
698 694 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1994 846 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1946 599 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
593 592 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
448 982 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2001 1094 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1574 623 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
2004 1900 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1898 1502 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
785 430 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2008 938 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
2009 622 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
2013 879 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2014 152 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1431 957 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
2021 1537 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1669 928 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
819 815 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1272 603 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2027 939 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1593 1590 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1200 1195 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2033 613 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
2035 1012 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1740 896 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1656 188 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
798 797 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1543 553 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1825 602 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1697 620 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2049 1079 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1014 962 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2050 1588 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2061 931 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1623 347 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1549 1206 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
773 769 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1774 1169 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1491 748 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1415 1393 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
184 179 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2070 598 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1713 1711 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1597 938 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1558 25 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1616 1119 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2082 61 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2018 1159 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
784 934 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1066 322 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2086 1671 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2036 260 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1073 1069 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
972 971 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1638 1637 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2095 498 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
406 1706 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
380 495 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1166 1161 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
981 1778 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
244 193 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1021 937 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
2107 1267 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1383 1736 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1622 496 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2116 407 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1923 1660 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2120 1660 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2114 618 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
228 1344 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1339 1242 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1691 1689 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2123 931 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1405 1288 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1646 495 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2125 501 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
2128 50 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1220 1216 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1115 1113 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1749 216 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1528 75 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2136 178 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2137 1245 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2140 460 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1040 1037 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1171 930 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
2141 440 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1177 1124 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1303 12 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2147 1819 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
2149 139 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1455 565 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1602 1790 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
211 208 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1582 1156 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
112 617 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
13 288 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
508 286 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1335 1334 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2156 647 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1889 1856 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1839 1833 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
582 1145 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2112 396 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1407 1155 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2165 1366 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1891 936 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
257 253 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1281 374 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
106 102 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1190 1188 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2170 242 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2171 394 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2172 1129 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
195 194 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1153 1147 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
443 316 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1862 63 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2028 1302 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1444 550 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
761 1504 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1968 521 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1136 1551 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1239 1236 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1264 417 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1871 2108 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2181 2108 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1397 1228 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
490 488 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1969 462 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
2097 569 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
570 768 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2184 1548 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
426 423 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1371 625 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
678 674 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
2118 681 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1921 9 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2190 624 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
167 161 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2191 1418 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
315 745 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
701 629 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
657 750 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1895 969 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1563 935 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
2197 933 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1498 1496 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
726 617 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1965 348 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1647 747 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1585 603 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2079 157 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2205 599 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1312 1309 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
596 592 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
757 808 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1974 1973 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1792 622 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1990 457 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
2200 879 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
2167 813 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
137 605 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1949 1215 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1420 375 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1422 924 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1432 614 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1437 450 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1439 1440 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1447 464 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1450 648 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
868 479 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
970 503 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1462 36 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
947 846 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1468 1214 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1469 532 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1472 547 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1478 562 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1480 1094 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1482 567 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1483 572 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1484 623 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1179 53 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1211 1502 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
847 430 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1514 633 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1517 637 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
38 640 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1522 1111 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1529 152 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1536 1537 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
820 815 The paper "YSWC-2015" is mainly about YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1144 226 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1546 932 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1552 721 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1564 613 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1201 645 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
795 1012 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1567 896 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1571 616 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1575 512 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1577 151 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
997 620 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1 0 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
431 1079 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1587 1588 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1015 962 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1603 796 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1607 15 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
147 1206 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1613 1169 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1624 748 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
245 822 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1626 826 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1140 830 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1229 1214 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
185 179 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1409 262 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1634 1635 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
778 926 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1649 25 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
719 861 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1650 61 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1661 873 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
422 1159 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1670 1671 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1672 260 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1074 1069 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1701 913 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1705 1706 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
235 233 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1167 1161 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1721 193 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1722 812 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1332 281 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1730 319 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1731 1267 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1735 1736 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1742 407 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1746 1747 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1754 1018 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1756 924 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1758 1025 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1676 501 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1761 1288 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1674 606 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1767 927 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
58 1635 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
864 1216 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1793 362 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1796 178 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1798 1245 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
581 440 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1805 1806 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1808 612 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1175 1124 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
369 367 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1818 1819 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1820 1806 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1827 1828 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1830 1157 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1832 127 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1643 835 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
292 291 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1840 689 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1842 942 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
405 1505 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
663 1747 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1292 1334 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1855 1856 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1570 404 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1864 936 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1845 1366 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1865 396 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1477 1231 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
255 253 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
263 374 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
735 136 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1882 626 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1883 52 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
459 575 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1423 644 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
990 1129 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1708 232 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
197 194 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
524 522 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1846 929 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
19 16 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1443 550 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1907 1504 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1414 1828 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1913 360 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1919 609 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
704 1342 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
458 689 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1925 154 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
493 488 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1395 1228 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
884 880 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1935 628 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
787 776 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1436 110 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1941 768 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1943 1548 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
128 1325 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1950 615 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
425 423 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1932 900 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1372 625 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
695 694 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1953 1155 The paper "XSWC-2014" is mainly about XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
842 839 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1227 939 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1928 624 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1962 982 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
273 348 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1972 614 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1560 935 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
859 1440 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1983 929 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1497 1496 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1045 215 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1992 36 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1682 217 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
653 649 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1596 928 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
466 703 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1594 1590 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1648 643 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
2017 957 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
519 513 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
729 349 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2214 583 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2209 598 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1916 360 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2221 188 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
159 797 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1542 553 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2225 551 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1632 262 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
455 452 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
2144 347 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
771 769 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1688 229 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1554 627 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1677 1900 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1081 91 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1768 927 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1714 1711 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2228 111 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1531 1393 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2229 925 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
742 611 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2062 1119 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1513 1508 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
2159 1097 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2234 1704 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1064 322 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2048 602 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
851 618 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
975 971 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1641 1637 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
35 9 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2151 394 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1559 587 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1183 250 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
88 83 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
166 161 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1879 745 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1355 629 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1897 969 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2242 157 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1276 665 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1847 667 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2263 583 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2106 731 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1960 691 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
2187 681 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1311 1309 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1430 752 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2160 329 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1927 933 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1976 1973 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
70 67 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1783 1137 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1929 569 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
471 469 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1874 791 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
340 335 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1989 457 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1924 813 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1266 605 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1948 1215 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
650 649 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
2052 591 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
318 1704 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1557 877 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
2072 643 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
401 397 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
518 513 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
271 346 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1535 894 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1108 551 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1894 541 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2155 904 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
2177 610 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1225 916 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1416 703 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
453 452 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
307 306 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
2188 808 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
999 950 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
708 705 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1930 604 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1340 419 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
557 554 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2032 229 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1556 627 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1739 750 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2121 1002 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
435 432 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1435 111 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
659 658 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
739 611 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
811 1508 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1600 537 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
714 483 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2260 11 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
272 349 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2053 925 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
684 601 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
857 853 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
895 607 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2019 467 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1719 934 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1139 600 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
2055 1598 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2065 217 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1467 619 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1955 148 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
671 669 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1686 943 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
889 621 In their paper 'SIGXYZ-2014' the authors discuss SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
138 95 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
146 1918 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
219 218 The paper "XSWC-2014" is mainly about XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1869 866 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1520 1097 In their paper 'ZSWC-2015' the authors discuss ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
682 601 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1106 1778 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1020 937 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
1621 496 The paper "YSWC-2015" is mainly about YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2240 647 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1653 600 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2054 1598 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1353 1505 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1254 1344 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1687 943 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2175 1242 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1694 1689 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
892 621 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
1605 95 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1788 1918 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2067 498 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2101 565 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1116 1113 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1753 216 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2249 610 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1316 75 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2254 388 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
2238 460 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
991 27 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1043 1037 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1173 930 The paper "YSWC-2014" is mainly about YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1970 55 The paper "YSWC-2014" is mainly about YSWC-2014.\nThough apparently a contribution of remarkable novelty, 'YSWC-2014' also has its weaknesses.
284 12 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1781 65 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThough apparently a contribution of remarkable novelty, 'SIGXYZ-2014' also has its weaknesses.
2256 1302 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
2127 50 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1379 59 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2212 1145 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2044 113 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1717 1790 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1785 119 The paper "ZSWC-2014" is mainly about ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
210 208 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1681 1156 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
1055 124 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
2075 133 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1726 130 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
1720 716 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
762 242 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
1838 1833 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
988 202 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1663 205 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1495 543 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
108 102 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1192 1188 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
2261 299 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
1911 286 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
952 305 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
779 1418 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1207 326 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
2093 333 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
2215 417 The paper "XSWC-2015" is mainly about XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1492 351 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
324 316 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1150 1147 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
2078 156 The paper "XSWC-2015" is mainly about XSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2015 in particular
2169 377 The paper "SIGXYZ-2014" is mainly about SIGXYZ-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight SIGXYZ-2014 in particular
918 63 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1810 382 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
887 30 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1980 521 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
1804 1551 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2015' also has its weaknesses.
1240 1236 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
447 462 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
1696 411 The paper "ZSWC-2015" is mainly about ZSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2015 in particular
1130 414 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2015 in particular
1490 747 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
2043 139 In their paper 'YSWC-2015' the authors discuss YSWC-2015.\nThough apparently a contribution of remarkable novelty, 'YSWC-2015' also has its weaknesses.
1906 476 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight XSWC-2014 in particular
777 485 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight ZSWC-2014 in particular
1098 529 In their paper 'XSWC-2015' the authors discuss XSWC-2015.\nThough apparently a contribution of remarkable novelty, 'XSWC-2015' also has its weaknesses.
1323 534 In their paper 'XSWC-2014' the authors discuss XSWC-2014.\nThough apparently a contribution of remarkable novelty, 'XSWC-2014' also has its weaknesses.
2134 77 In their paper 'ZSWC-2014' the authors discuss ZSWC-2014.\nThough apparently a contribution of remarkable novelty, 'ZSWC-2014' also has its weaknesses.
676 674 In their paper 'YSWC-2014' the authors discuss YSWC-2014.\nThis says about all about both its strong and weak suits.\nHowever, the reviewer would like to highlight YSWC-2014 in particular
\.
COPY steering_committees (id, was_steering_committee_) FROM stdin;
\.
COPY topic_tutorial (conference_part, topic) FROM stdin;
\.
COPY topics (id, name) FROM stdin;
\.
COPY tracks (id, tracks, track_workshop_tuto, part_conference_vol, name) FROM stdin;
\.
COPY tutorials (id, tutorials, part_conference_vol, name) FROM stdin;
\.
COPY workshops (id, track_workshop_tuto, workshops, part_conference_vol, name) FROM stdin;
\.
ALTER TABLE ONLY abstracts
ADD CONSTRAINT "AbstractPK" PRIMARY KEY (id);
ALTER TABLE ONLY committees
ADD CONSTRAINT "CommitteePK" PRIMARY KEY (id);
ALTER TABLE ONLY conference_documents
ADD CONSTRAINT "Conference_documentPK" PRIMARY KEY (id);
ALTER TABLE ONLY conference_fees
ADD CONSTRAINT "Conference_feesPK" PRIMARY KEY (id);
ALTER TABLE ONLY conference_proceedings
ADD CONSTRAINT "Conference_proceedingsPK" PRIMARY KEY (id);
ALTER TABLE ONLY conference_volumes
ADD CONSTRAINT "Conference_volumePK" PRIMARY KEY (id);
ALTER TABLE ONLY important_dates
ADD CONSTRAINT "Important_datesPK" PRIMARY KEY (id);
ALTER TABLE ONLY invited_talks
ADD CONSTRAINT "Invited_talkPK" PRIMARY KEY (id);
ALTER TABLE ONLY organizations
ADD CONSTRAINT "OrganizationPK" PRIMARY KEY (id);
ALTER TABLE ONLY organizers
ADD CONSTRAINT "OrganizerPK" PRIMARY KEY (id);
ALTER TABLE ONLY organizing_committees
ADD CONSTRAINT "Organizing_committeePK" PRIMARY KEY (id);
ALTER TABLE ONLY papers
ADD CONSTRAINT "PaperPK" PRIMARY KEY (id);
ALTER TABLE ONLY persons
ADD CONSTRAINT "PersonPK" PRIMARY KEY (id);
ALTER TABLE ONLY posters
ADD CONSTRAINT "PosterPK" PRIMARY KEY (id);
ALTER TABLE ONLY publishers
ADD CONSTRAINT "PublisherPK" PRIMARY KEY (id);
ALTER TABLE ONLY reviews
ADD CONSTRAINT "ReviewPK" PRIMARY KEY (id);
ALTER TABLE ONLY review_expertises
ADD CONSTRAINT "Review_expertisePK" PRIMARY KEY (id);
ALTER TABLE ONLY review_preferences
ADD CONSTRAINT "Review_preferencePK" PRIMARY KEY (id);
ALTER TABLE ONLY steering_committees
ADD CONSTRAINT "Steering_committeePK" PRIMARY KEY (id);
ALTER TABLE ONLY topics
ADD CONSTRAINT "TopicPK" PRIMARY KEY (id);
ALTER TABLE ONLY tracks
ADD CONSTRAINT "TrackPK" PRIMARY KEY (id);
ALTER TABLE ONLY tutorials
ADD CONSTRAINT "TutorialPK" PRIMARY KEY (id);
ALTER TABLE ONLY workshops
ADD CONSTRAINT "WorkshopPK" PRIMARY KEY (id);
ALTER TABLE ONLY belongs_to_reviewers
ADD CONSTRAINT "belongs_to_reviewersPK" PRIMARY KEY (entity, reviewer);
ALTER TABLE ONLY person_conference_document
ADD CONSTRAINT "contributesPK" PRIMARY KEY (pid, cid);
ALTER TABLE ONLY committee_co_chair
ADD CONSTRAINT "has_a_committee_co-chairPK" PRIMARY KEY (cid, pid);
ALTER TABLE ONLY topic_tutorial
ADD CONSTRAINT "has_a_track-workshop-tutoPK" PRIMARY KEY (conference_part, topic);
ALTER TABLE ONLY emails
ADD CONSTRAINT "has_an_emailPK" PRIMARY KEY (person, value);
ALTER TABLE ONLY committee_person
ADD CONSTRAINT "has_membersPK" PRIMARY KEY (cid, pid);
ALTER TABLE ONLY person_person
ADD CONSTRAINT "invited_byPK" PRIMARY KEY (reviewer1, reviewer2);
ALTER TABLE ONLY abstracts
ADD CONSTRAINT "Abstract_ID_fkey" FOREIGN KEY (id) REFERENCES conference_documents(id);
ALTER TABLE ONLY abstracts
ADD CONSTRAINT "Abstract_is_submitted_at_fkey" FOREIGN KEY (submitted_at) REFERENCES conference_volumes(id);
ALTER TABLE ONLY committees
ADD CONSTRAINT "Committee_CHILD_DATA_was_a_program_committee_of_fkey" FOREIGN KEY (was_program_committee) REFERENCES conference_volumes(id);
ALTER TABLE ONLY committees
ADD CONSTRAINT "Committee_has_a_committee_chair_fkey" FOREIGN KEY (committee_chair) REFERENCES persons(id);
ALTER TABLE ONLY conference_volumes
ADD CONSTRAINT "Conference_volume_has_a_program_committee_fkey" FOREIGN KEY (program_committee) REFERENCES committees(id);
ALTER TABLE ONLY conference_volumes
ADD CONSTRAINT "Conference_volumehas_a2FK" FOREIGN KEY (steering_committee) REFERENCES steering_committees(id) ON DELETE CASCADE;
ALTER TABLE ONLY conference_proceedings
ADD CONSTRAINT "FKConference_proceedingsh" FOREIGN KEY (publisher) REFERENCES publishers(id) ON DELETE CASCADE;
ALTER TABLE ONLY conference_volumes
ADD CONSTRAINT "FKConference_volumehas_an" FOREIGN KEY (organizing_committ) REFERENCES organizing_committees(id) ON DELETE CASCADE;
ALTER TABLE ONLY conference_volumes
ADD CONSTRAINT "FKConference_volumehas_im" FOREIGN KEY (important_dates) REFERENCES important_dates(id) ON DELETE CASCADE;
ALTER TABLE ONLY organizing_committees
ADD CONSTRAINT "FKOrganizing_committeeURI" FOREIGN KEY (id) REFERENCES committees(id) ON DELETE CASCADE;
ALTER TABLE ONLY organizing_committees
ADD CONSTRAINT "FKOrganizing_committeewas" FOREIGN KEY (was_an_organizing_committ) REFERENCES conference_volumes(id) ON DELETE CASCADE;
ALTER TABLE ONLY papers
ADD CONSTRAINT "FKPaperhas_an_abstract" FOREIGN KEY (abstract) REFERENCES abstracts(id) ON DELETE CASCADE;
ALTER TABLE ONLY posters
ADD CONSTRAINT "FKPosterhas_an_abstract" FOREIGN KEY (abstract) REFERENCES abstracts(id) ON DELETE CASCADE;
ALTER TABLE ONLY reviews
ADD CONSTRAINT "FKReviewURI" FOREIGN KEY (id) REFERENCES conference_documents(id) ON DELETE CASCADE;
ALTER TABLE ONLY review_preferences
ADD CONSTRAINT "FKReview_preferencebelong" FOREIGN KEY (belongs_to_review_refer) REFERENCES topics(id) ON DELETE CASCADE;
ALTER TABLE ONLY steering_committees
ADD CONSTRAINT "FKSteering_committeeURI" FOREIGN KEY (id) REFERENCES committees(id) ON DELETE CASCADE;
ALTER TABLE ONLY steering_committees
ADD CONSTRAINT "FKSteering_committeewas_a" FOREIGN KEY (was_steering_committee_) REFERENCES conference_volumes(id) ON DELETE CASCADE;
ALTER TABLE ONLY tracks
ADD CONSTRAINT "FKTrackhas_tracks_Inv" FOREIGN KEY (tracks) REFERENCES conference_volumes(id) ON DELETE CASCADE;
ALTER TABLE ONLY tutorials
ADD CONSTRAINT "FKTutorialhas_tutorials_Inv" FOREIGN KEY (tutorials) REFERENCES conference_volumes(id) ON DELETE CASCADE;
ALTER TABLE ONLY workshops
ADD CONSTRAINT "FKWorkshophas_workshops_Inv" FOREIGN KEY (workshops) REFERENCES conference_volumes(id) ON DELETE CASCADE;
ALTER TABLE ONLY person_conference_document
ADD CONSTRAINT "FKcontributesConference_d" FOREIGN KEY (cid) REFERENCES conference_documents(id) ON DELETE CASCADE;
ALTER TABLE ONLY person_conference_document
ADD CONSTRAINT "FKcontributesPerson" FOREIGN KEY (pid) REFERENCES persons(id) ON DELETE CASCADE;
ALTER TABLE ONLY committee_co_chair
ADD CONSTRAINT "FKhas_a_committee_co-chai" FOREIGN KEY (cid) REFERENCES committees(id) ON DELETE CASCADE;
ALTER TABLE ONLY topic_tutorial
ADD CONSTRAINT "FKhas_a_track-workshop-tu" FOREIGN KEY (conference_part) REFERENCES tutorials(id) ON DELETE CASCADE;
ALTER TABLE ONLY emails
ADD CONSTRAINT "FKhas_an_emailPerson" FOREIGN KEY (person) REFERENCES persons(id) ON DELETE CASCADE;
ALTER TABLE ONLY committee_person
ADD CONSTRAINT "FKhas_membersCommittee" FOREIGN KEY (cid) REFERENCES committees(id) ON DELETE CASCADE;
ALTER TABLE ONLY invited_talks
ADD CONSTRAINT "Invited_talk_ID_fkey" FOREIGN KEY (id) REFERENCES conference_documents(id);
ALTER TABLE ONLY invited_talks
ADD CONSTRAINT "Invited_talk_has_an_abstract_fkey" FOREIGN KEY (abstract) REFERENCES abstracts(id);
ALTER TABLE ONLY invited_talks
ADD CONSTRAINT "Invited_talk_is_given_by_fkey" FOREIGN KEY (given) REFERENCES persons(id);
ALTER TABLE ONLY invited_talks
ADD CONSTRAINT "Invited_talk_is_submitted_at_fkey" FOREIGN KEY (submitted_at) REFERENCES conference_volumes(id);
ALTER TABLE ONLY papers
ADD CONSTRAINT "Paper_ID_fkey" FOREIGN KEY (id) REFERENCES conference_documents(id);
ALTER TABLE ONLY papers
ADD CONSTRAINT "Paper_is_submitted_at_fkey" FOREIGN KEY (submitted_at) REFERENCES conference_volumes(id);
ALTER TABLE ONLY posters
ADD CONSTRAINT "Poster_ID_fkey" FOREIGN KEY (id) REFERENCES conference_documents(id);
ALTER TABLE ONLY posters
ADD CONSTRAINT "Poster_is_submitted_at_fkey" FOREIGN KEY (submitted_at) REFERENCES conference_volumes(id);
ALTER TABLE ONLY review_expertises
ADD CONSTRAINT "Review_expertise_has_a_submitted_contribut_fkey" FOREIGN KEY (submitted_contribut) REFERENCES papers(id);
ALTER TABLE ONLY reviews
ADD CONSTRAINT "Review_reviews_fkey" FOREIGN KEY (reviews) REFERENCES papers(id);
ALTER TABLE ONLY tracks
ADD CONSTRAINT "Track_has_a_track-workshop-tuto_fkey" FOREIGN KEY (track_workshop_tuto) REFERENCES persons(id);
ALTER TABLE ONLY tracks
ADD CONSTRAINT "Track_is_part_of_conference_vol_fkey" FOREIGN KEY (part_conference_vol) REFERENCES conference_volumes(id);
ALTER TABLE ONLY tutorials
ADD CONSTRAINT "Tutorial_is_part_of_conference_vol_fkey" FOREIGN KEY (part_conference_vol) REFERENCES conference_volumes(id);
ALTER TABLE ONLY workshops
ADD CONSTRAINT "Workshop_has_a_track-workshop-tuto_fkey" FOREIGN KEY (track_workshop_tuto) REFERENCES persons(id);
ALTER TABLE ONLY workshops
ADD CONSTRAINT "Workshop_is_part_of_conference_vol_fkey" FOREIGN KEY (part_conference_vol) REFERENCES conference_volumes(id);
ALTER TABLE ONLY belongs_to_reviewers
ADD CONSTRAINT "belongs_to_reviewers_Reviewer_fkey" FOREIGN KEY (reviewer) REFERENCES persons(id);
ALTER TABLE ONLY committee_co_chair
ADD CONSTRAINT "has_a_committee_co-chair_Co-chair_fkey" FOREIGN KEY (pid) REFERENCES persons(id);
ALTER TABLE ONLY topic_tutorial
ADD CONSTRAINT "has_a_track-workshop-t2FK" FOREIGN KEY (topic) REFERENCES topics(id) ON DELETE CASCADE;
ALTER TABLE ONLY committee_person
ADD CONSTRAINT "has_members_Committee_member_fkey" FOREIGN KEY (pid) REFERENCES persons(id);
ALTER TABLE ONLY person_person
ADD CONSTRAINT "invited_by_Reviewer1_fkey" FOREIGN KEY (reviewer1) REFERENCES persons(id);
ALTER TABLE ONLY person_person
ADD CONSTRAINT "invited_by_Reviewer2_fkey" FOREIGN KEY (reviewer2) REFERENCES persons(id);
|
CREATE PROCEDURE [stg].[ClearStaging]
AS
Truncate Table stg.workshop |
<filename>data/test/sql/c0573656e580422ac0b040c3cdf1b9865c368624company.sql
/*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50615
Source Host : localhost:3306
Source Database : company
Target Server Type : MYSQL
Target Server Version : 50615
File Encoding : 65001
Date: 2014-06-23 13:33:38
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for admin
-- ----------------------------
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_name` varchar(255) DEFAULT '',
`user_word` varchar(255) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of admin
-- ----------------------------
INSERT INTO `admin` VALUES ('2', 'myadmin', '691c360156c27261b40c974ec0bf8f4a');
-- ----------------------------
-- Table structure for admin_menu
-- ----------------------------
DROP TABLE IF EXISTS `admin_menu`;
CREATE TABLE `admin_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT '0',
`menu_name` varchar(255) DEFAULT '',
`menu_url` varchar(255) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of admin_menu
-- ----------------------------
INSERT INTO `admin_menu` VALUES ('1', '0', '站点设置', '');
INSERT INTO `admin_menu` VALUES ('2', '0', '文章中心', '');
INSERT INTO `admin_menu` VALUES ('3', '0', '产品中心', '');
INSERT INTO `admin_menu` VALUES ('4', '0', '留言中心', '');
INSERT INTO `admin_menu` VALUES ('5', '1', '站点信息', 'index.php?act=site_info');
INSERT INTO `admin_menu` VALUES ('6', '1', '导航管理', 'index.php?act=nav');
INSERT INTO `admin_menu` VALUES ('7', '1', '焦点图设置', 'index.php?act=focus_picture');
INSERT INTO `admin_menu` VALUES ('8', '2', '文章列表', 'index.php?act=article_list');
INSERT INTO `admin_menu` VALUES ('9', '2', '添加文章', 'index.php?act=article_add');
INSERT INTO `admin_menu` VALUES ('10', '2', '文章分类', 'index.php?act=article_type_list');
INSERT INTO `admin_menu` VALUES ('11', '2', '添加分类', 'index.php?act=article_type_add');
INSERT INTO `admin_menu` VALUES ('12', '3', '产品列表', 'index.php?act=product_list');
INSERT INTO `admin_menu` VALUES ('13', '3', '添加产品', 'index.php?act=product_add');
INSERT INTO `admin_menu` VALUES ('14', '3', '产品分类', 'index.php?act=product_type_list');
INSERT INTO `admin_menu` VALUES ('15', '3', '添加分类', 'index.php?act=product_type_add');
INSERT INTO `admin_menu` VALUES ('16', '4', '留言列表', 'index.php?act=message');
INSERT INTO `admin_menu` VALUES ('17', '5', '你好', '1');
INSERT INTO `admin_menu` VALUES ('18', '17', '好吗', '');
INSERT INTO `admin_menu` VALUES ('19', '18', '很好', '');
INSERT INTO `admin_menu` VALUES ('20', '17', '2B', '');
INSERT INTO `admin_menu` VALUES ('21', '17', '3B', '');
INSERT INTO `admin_menu` VALUES ('22', '17', '4b', '');
INSERT INTO `admin_menu` VALUES ('23', '21', 'gggg', '');
-- ----------------------------
-- Table structure for articles
-- ----------------------------
DROP TABLE IF EXISTS `articles`;
CREATE TABLE `articles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type_id` int(11) DEFAULT '0',
`title` varchar(255) DEFAULT '',
`content` text,
`add_time` varchar(255) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of articles
-- ----------------------------
INSERT INTO `articles` VALUES ('3', '3', 'sdczdd', '<p>asdasd</p>\r\n', '1401180014');
-- ----------------------------
-- Table structure for article_type
-- ----------------------------
DROP TABLE IF EXISTS `article_type`;
CREATE TABLE `article_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type_name` varchar(255) DEFAULT '',
`parent_id` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of article_type
-- ----------------------------
INSERT INTO `article_type` VALUES ('1', '牛牛你2', '0');
INSERT INTO `article_type` VALUES ('3', '啊飒沓啊', '0');
-- ----------------------------
-- Table structure for configs
-- ----------------------------
DROP TABLE IF EXISTS `configs`;
CREATE TABLE `configs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cf_name` varchar(255) DEFAULT '',
`cf_value` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of configs
-- ----------------------------
INSERT INTO `configs` VALUES ('1', 'default_template', 'default');
INSERT INTO `configs` VALUES ('2', 'site_name', 'MadCms');
INSERT INTO `configs` VALUES ('3', 'site_dis', 'MadCms是一款对SEO非常友好的企业建站系统。系统内置SEO优化机制,界面简洁、方便操作。十年专注,已然成为企业建站服务的领导品牌。');
INSERT INTO `configs` VALUES ('4', 'keyword', 'MadCms|企业CMS|企业CMS系统|企业建站');
INSERT INTO `configs` VALUES ('5', 'email', '<EMAIL>');
INSERT INTO `configs` VALUES ('6', 'logo', '../images/20140522/140073719309121398.gif');
-- ----------------------------
-- Table structure for focus_picture
-- ----------------------------
DROP TABLE IF EXISTS `focus_picture`;
CREATE TABLE `focus_picture` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pic_url` varchar(255) DEFAULT '',
`click_url` varchar(255) DEFAULT '',
`pic_dis` varchar(255) DEFAULT '',
`pic_index` int(11) DEFAULT '0',
`title` varchar(255) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of focus_picture
-- ----------------------------
-- ----------------------------
-- Table structure for msg
-- ----------------------------
DROP TABLE IF EXISTS `msg`;
CREATE TABLE `msg` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT '',
`email` varchar(255) DEFAULT '',
`title` varchar(255) DEFAULT '',
`msg` varchar(2048) DEFAULT '',
`add_time` varchar(255) DEFAULT '',
`is_recove` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of msg
-- ----------------------------
INSERT INTO `msg` VALUES ('2', '<script>alert<script>alert(\'123\');</script>', '<script>alert(\'123\');</script>', '<script>alert(\'123\');</script>', '<script>alert(\'123\');</script>', '<script>alert(\'123\');</script>', '0');
-- ----------------------------
-- Table structure for nav
-- ----------------------------
DROP TABLE IF EXISTS `nav`;
CREATE TABLE `nav` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nav_name` varchar(255) DEFAULT '',
`nav_url` varchar(255) DEFAULT '',
`is_blank` int(11) DEFAULT '0',
`parent_id` int(11) DEFAULT '0',
`z_index` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of nav
-- ----------------------------
INSERT INTO `nav` VALUES ('2', '撒旦发射', 'http://gggg/c', '0', '0', '22');
INSERT INTO `nav` VALUES ('10', '先行词', '啊', '1', '0', '0');
INSERT INTO `nav` VALUES ('6', '首页', 'http://www.97dfsc.com', '1', '0', '99');
INSERT INTO `nav` VALUES ('9', '阿萨萨达斯的', 'as大苏打', '1', '0', '0');
INSERT INTO `nav` VALUES ('8', '爱心', '123123123', '1', '0', '1');
-- ----------------------------
-- Table structure for product
-- ----------------------------
DROP TABLE IF EXISTS `product`;
CREATE TABLE `product` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type_id` int(11) DEFAULT '0',
`product_name` varchar(255) DEFAULT '',
`product_dis` varchar(255) DEFAULT '',
`product_imgurl` varchar(255) DEFAULT '',
`add_time` varchar(255) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of product
-- ----------------------------
INSERT INTO `product` VALUES ('1', '3', 'asdassd', 'asdasdasdasdad', '../images/20140526/140108827108297119.jpg', '1401089633');
INSERT INTO `product` VALUES ('2', '2', 'guangm<scritp>alert(\"123\");</script>', 'asasdasdasd', '../images/20140526/140108932503855590.jpg', '1401089331');
-- ----------------------------
-- Table structure for product_type
-- ----------------------------
DROP TABLE IF EXISTS `product_type`;
CREATE TABLE `product_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type_name` varchar(255) DEFAULT '',
`parent_id` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of product_type
-- ----------------------------
INSERT INTO `product_type` VALUES ('2', '鸟', '0');
INSERT INTO `product_type` VALUES ('3', '鸟222', '0');
|
-- =============================================
-- Author: <NAME>
-- Create date: 7Dec20
-- Description: Creates Tables table.
-- Change Log:
-- =============================================
USE [ODS]
GO
DROP TABLE IF EXISTS [vol].[Tables]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[vol].[Tables]') AND type in (N'U'))
BEGIN
CREATE TABLE [vol].[Tables](
[TableID] [bigint] IDENTITY(1,1) NOT NULL,
[TableName] [nvarchar](50) NOT NULL,
[DateCreated] [datetime] NOT NULL,
CONSTRAINT [PK_Tables] PRIMARY KEY CLUSTERED
(
[TableID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
END
GO
|
UPDATE process_locks
SET (
in_progress,
start_time,
end_time
) = (
true,
CURRENT_TIMESTAMP,
null
)
WHERE process_name = 'db_lock'
;
|
-- fts3b.test
--
-- db eval {CREATE VIRTUAL TABLE t2 USING fts3(c)}
CREATE VIRTUAL TABLE t2 USING fts3(c) |
<reponame>PythonBiellaGroup/FastCash
select * from appuser
-- drop table producttaglink cascade;
-- drop table product cascade;
-- drop table tag cascade;
-- drop table producttype cascade;
-- drop table appuser cascade;
-- select *
-- from product;
-- select *
-- from product;
-- select *
-- from producttaglink
-- inner join product on product.id = producttaglink.product_id
-- inner join tag on tag.id = producttaglink.tag_id; |
-- file:create_index.sql ln:312 expect:true
EXPLAIN (COSTS OFF)
SELECT * FROM point_tbl WHERE f1 IS NULL
|
-- file:money.sql ln:9 expect:true
SELECT m + '123' FROM money_data
|
create table sequence (
seq_id text not null,
simulation_dataset_id int not null,
metadata jsonb,
created_at timestamptz not null default now(),
updated_at timestamptz not null default now(),
constraint sequence_primary_key
primary key (seq_id, simulation_dataset_id)
);
comment on table sequence is e''
'A sequence product';
comment on column sequence.seq_id is e''
'The FSW sequence specifier';
comment on column sequence.simulation_dataset_id is e''
'The simulation dataset id whose outputs are associated with this sequence';
comment on column sequence.metadata is e''
'The metadata associated with this sequence';
create or replace function sequence_set_updated_at()
returns trigger
security definer
language plpgsql as $$begin
new.updated_at = now();
return new;
end$$;
create or replace function sequence_set_updated_at_external()
returns trigger
security definer
language plpgsql as $$begin
update sequence
set updated_at = now()
where
seq_id = old.seq_id and simulation_dataset_id = old.simulation_dataset_id
or seq_id = new.seq_id and simulation_dataset_id = new.simulation_dataset_id;
return null;
end$$;
create trigger set_timestamp
before update on sequence
for each row
execute procedure sequence_set_updated_at();
|
set pages 100
set lines 160
col product_name format a30
col store_name format a30
col value_of_orders format 9,990.00
col total_value format 999,990.00
col jan_value format 999,990.00
col feb_value format 999,990.00
col mar_value format 999,990.00
col apr_value format 999,990.00
col may_value format 999,990.00
col jun_value format 999,990.00
col jul_value format 999,990.00
col aug_value format 999,990.00
col sep_value format 999,990.00
col oct_value format 999,990.00
col nov_value format 999,990.00
col dec_value format 999,990.00
PROMPT Store sales analysis
/* Highest number of consecutive days with a sale at each store */
with store_orders as (
select store_name, trunc ( order_datetime ) dt, count(*) order#
from orders o
join stores s
on o.store_id = s.store_id
group by store_name, trunc ( order_datetime )
), consecutive_days as (
select store_name, consecutive_days,
max ( consecutive_days ) over ( partition by store_name ) store_mx
from store_orders match_recognize (
partition by store_name
order by dt
measures
first ( dt ) as first_day,
count (*) as consecutive_days
pattern ( init consecutive* )
define
consecutive as dt <= prev ( dt ) + 1
)
)
select distinct *
from consecutive_days
where consecutive_days = store_mx
order by store_mx desc;
PROMPT High value customers
/* This searches for high value customers. These are defined as:
Those whose total order value in a month is greater than 100
for three or more consecutive months
*/
with rws as (
select
o.customer_id, trunc ( o.order_datetime, 'mm' ) order_month,
sum ( oi.quantity * oi.unit_price ) month_total
from products p
join order_items oi
on p.product_id = oi.product_id
join orders o
on oi.order_id = o.order_id
group by o.customer_id, trunc ( o.order_datetime, 'mm' )
)
select * from rws
match_recognize (
partition by customer_id
order by order_month
measures
count(*) as num_months,
sum ( month_total ) as total_value
pattern ( high_value consecutive{2,} )
define
high_value as
month_total >= 100,
consecutive as
order_month = prev ( add_months ( order_month, 1 ) )
and month_total >= 100
);
PROMPT Product rating analysis
/* Find the mean, median, mode, min, & max rating for each product
Along with the overall grand total
Sorts by mean rating descending; with the grand total at the bottom */
with ratings as (
select grouping_id ( product_name ) grp_id,
product_name,
count(*) number_of_reviews,
round ( avg ( rating ), 2 ) product_mean_rating,
median ( rating ) product_median_rating,
stats_mode ( rating ) product_mode_rating,
min ( rating ) product_lowest_rating,
max ( rating ) product_highest_rating
from products, json_table (
product_details, '$.reviews[*]'
columns (
rating int path '$.rating'
)
)
group by rollup ( product_name )
)
select case grp_id
when 0 then product_name
else 'TOTAL'
end product_name,
number_of_reviews,
product_mean_rating,
product_median_rating,
product_mode_rating,
product_lowest_rating,
product_highest_rating
from ratings
order by grp_id, product_mean_rating desc;
PROMPT Most popular products by volume
/* 5 products with the most orders
With their corresponding revenue rank */
select p.product_name,
count(*) number_of_orders,
sum ( oi.quantity * oi.unit_price ) total_value,
rank () over (
order by sum ( oi.quantity * oi.unit_price ) desc
) revenue_rank
from products p
join order_items oi
on p.product_id = oi.product_id
group by p.product_name
order by count(*) desc
fetch first 5 rows only;
PROMPT Most popular products by value
/* 5 products with the highest revenue
With their corresponding order rank */
select p.product_name,
count(*) number_of_orders,
sum ( oi.quantity * oi.unit_price ) total_value,
rank () over (
order by count(*) desc
) order_count_rank
from products p
join order_items oi
on p.product_id = oi.product_id
group by p.product_name
order by sum ( oi.quantity * oi.unit_price ) desc
fetch first 5 rows only;
PROMPT Daily order count and value
/* Daily order count and value */
with dates as (
select date'2018-02-03' + level dt
from dual
connect by level <= 433
), order_totals as (
select trunc ( o.order_datetime ) order_date,
count ( distinct o.order_id ) number_of_orders,
sum ( oi.quantity * oi.unit_price ) value_of_orders
from orders o
join order_items oi
on o.order_id = oi.order_id
group by trunc ( o.order_datetime )
)
select to_char ( dt, 'DD-MON-YYYY' ) sale_date,
nvl ( number_of_orders, 0 ) number_of_orders,
nvl ( value_of_orders, 0 ) value_of_orders
from dates
left join order_totals
on dt = order_date
order by dt;
PROMPT Month and year sales matrix
/* Month and year pivot table of sales
Groups the total sales value by month & year
The uses pivot to get years as rows and months and columns */
with order_totals as (
select extract ( year from o.order_datetime ) order_year,
to_char ( o.order_datetime, 'MON', 'NLS_DATE_LANGUAGE = english' ) order_month,
sum ( oi.quantity * oi.unit_price ) value_of_orders
from orders o
join order_items oi
on o.order_id = oi.order_id
group by extract ( year from o.order_datetime ),
to_char ( o.order_datetime, 'MON', 'NLS_DATE_LANGUAGE = english' )
)
select * from order_totals
pivot (
sum ( value_of_orders ) value
for order_month in (
'JAN' JAN, 'FEB' FEB, 'MAR' MAR, 'APR' APR, 'MAY' MAY, 'JUN' JUN,
'JUL' JUL, 'AUG' AUG, 'SEP' SEP, 'OCT' OCT, 'NOV' NOV, 'DEC' DEC
)
)
order by order_year; |
INSERT INTO stock_price VALUES ('frm1r',0,7,0.0,3.23,0.0,0.0,3.23,3.23,3.2,3.7,0,0,0.0),('frm1r',1,1,0.0,3.23,0.0,0.0,3.23,3.23,3.2,3.7,0,0,0.0),('frm1r',2,2,0.0,3.23,0.0,0.0,3.23,3.23,3.2,3.7,0,0,0.0),('frm1r',3,3,0.0,3.23,0.0,0.0,3.23,3.23,3.13,3.27,0,0,0.0),('frm1r',4,4,3.13,3.13,3.13,3.13,3.23,3.13,0.0,3.26,1,11,34.43),('frm1r',5,7,0.0,3.13,0.0,0.0,3.13,3.13,3.16,3.26,0,0,0.0),('frm1r',6,1,0.0,3.13,0.0,0.0,3.13,3.13,3.16,3.26,0,0,0.0),('frm1r',7,2,0.0,3.13,0.0,0.0,3.13,3.13,3.17,3.26,0,0,0.0),('frm1r',8,3,0.0,3.13,0.0,0.0,3.13,3.13,3.17,3.27,0,0,0.0),('frm1r',9,4,3.27,3.27,3.27,3.27,3.13,3.27,3.27,3.29,1,26,85.09),('frm1r',10,4,3.29,3.29,3.29,3.29,3.27,3.29,3.29,3.56,2,39,128.19),('frm1r',11,5,0.0,3.29,0.0,0.0,3.29,3.29,0.0,0.0,0,0,0.0),('frm1r',12,6,3.15,3.19,3.19,3.13,3.29,3.13,3.1,3.19,6,130,409.79),('frm1r',13,7,0.0,3.13,0.0,0.0,3.13,3.13,3.12,3.16,0,0,0.0),('frm1r',14,1,0.0,3.13,0.0,0.0,3.13,3.13,3.14,3.16,0,0,0.0),('frm1r',15,4,3.14,3.14,3.14,3.14,3.13,3.14,2.99,3.13,1,10,31.45),('frm1r',16,5,3.11,3.12,3.12,3.1,3.14,3.1,3.06,3.12,3,60,186.68),('frm1r',17,6,0.0,3.1,0.0,0.0,3.1,3.1,3.07,3.12,0,0,0.0),('frm1r',18,7,0.0,3.1,0.0,0.0,3.1,3.1,3.07,3.12,0,0,0.0),('frm1r',19,1,0.0,3.1,0.0,0.0,3.1,3.1,2.9,3.1,0,0,0.0),('frm1r',20,4,0.0,3.1,0.0,0.0,3.1,3.1,3.07,3.1,0,0,0.0),('frm1r',21,5,0.0,3.1,0.0,0.0,3.1,3.1,3.07,3.1,0,0,0.0),('frm1r',22,6,3.1,3.1,3.1,3.1,3.1,3.1,3.09,3.12,1,40,124.07),('frm1r',23,7,0.0,3.1,0.0,0.0,3.1,3.1,3.1,3.13,0,0,0.0),('frm1r',24,1,0.0,3.1,0.0,0.0,3.1,3.1,3.09,3.13,0,0,0.0),('frm1r',25,6,3.16,3.13,3.19,3.13,3.1,3.19,3.12,3.19,7,206,651.87),('frm1r',26,7,3.15,3.16,3.16,3.14,3.19,3.14,3.14,3.16,3,54,170.23),('frm1r',27,1,3.17,3.16,3.17,3.16,3.14,3.17,3.14,3.17,4,58,183.98),('frm1r',28,4,3.19,3.17,3.22,3.17,3.17,3.17,3.16,3.2,9,229,731.3),('frm1r',29,3,0.0,3.17,0.0,0.0,3.17,3.17,3.16,3.2,0,0,0.0),('frm1r',30,4,3.16,3.16,3.16,3.16,3.17,3.16,3.16,3.2,1,20,63.18),('frm1r',31,5,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.54,0,0,0.0),('frm1r',32,6,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',33,2,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',34,3,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',35,4,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',36,5,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',37,6,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',38,2,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',39,3,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.51,0,0,0.0),('frm1r',40,4,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',41,5,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.54,0,0,0.0),('frm1r',42,6,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',43,2,0.0,3.16,0.0,0.0,3.16,3.16,3.16,3.56,0,0,0.0),('frm1r',44,3,3.15,3.16,3.16,3.14,3.16,3.14,0.0,3.56,2,50,157.51),('frm1r',45,4,3.27,3.27,3.27,3.27,3.14,3.27,3.16,3.26,1,30,98.18),('frm1r',46,5,3.26,3.26,3.26,3.26,3.27,3.26,3.14,3.26,1,10,32.58),('frm1r',47,6,3.24,3.24,3.24,3.24,3.26,3.24,3.14,3.26,1,10,32.44),('frm1r',48,2,0.0,3.24,0.0,0.0,3.24,3.24,3.16,3.23,0,0,0.0),('frm1r',49,3,0.0,3.24,0.0,0.0,3.24,3.24,3.14,3.24,0,0,0.0),('frm1r',50,4,0.0,3.24,0.0,0.0,3.24,3.24,3.14,3.24,0,0,0.0),('frm1r',51,5,0.0,3.24,0.0,0.0,3.24,3.24,3.14,3.24,0,0,0.0),('frm1r',52,3,0.0,3.24,0.0,0.0,3.24,3.24,3.17,3.24,0,0,0.0),('frm1r',53,6,0.0,3.24,0.0,0.0,3.24,3.24,3.14,3.24,0,0,0.0),('frm1r',54,7,3.14,3.14,3.14,3.14,3.24,3.14,3.14,3.22,1,13,40.88),('frm1r',55,1,0.0,3.14,0.0,0.0,3.14,3.14,3.13,3.2,0,0,0.0),('frm1r',56,2,0.0,3.14,0.0,0.0,3.14,3.14,3.13,3.22,0,0,0.0),('frm1r',57,3,3.13,3.13,3.13,3.13,3.14,3.13,3.13,3.22,7,134,419.46),('frm1r',58,6,0.0,3.13,0.0,0.0,3.13,3.13,3.13,3.24,0,0,0.0),('frm1r',59,7,0.0,3.13,0.0,0.0,3.13,3.13,3.13,3.24,0,0,0.0),('frm1r',60,1,0.0,3.13,0.0,0.0,3.13,3.13,3.13,3.19,0,0,0.0),('frm1r',61,2,0.0,3.13,0.0,0.0,3.13,3.13,3.13,3.2,0,0,0.0),('frm1r',62,3,0.0,3.13,0.0,0.0,3.13,3.13,3.13,3.22,0,0,0.0),('frm1r',63,6,3.13,3.13,3.13,3.13,3.13,3.13,3.12,3.13,1,10,31.3),('frm1r',64,7,0.0,3.13,0.0,0.0,3.13,3.13,3.12,3.22,0,0,0.0),('frm1r',65,1,0.0,3.13,0.0,0.0,3.13,3.13,3.12,3.23,0,0,0.0),('frm1r',66,2,0.0,3.13,0.0,0.0,3.13,3.13,3.12,3.19,0,0,0.0),('frm1r',67,3,3.13,3.14,3.14,3.12,3.13,3.12,3.0,3.14,3,40,125.21),('frm1r',68,6,3.15,3.16,3.17,3.12,3.12,3.12,3.04,3.14,7,90,283.15),('frm1r',69,7,0.0,3.12,0.0,0.0,3.12,3.12,3.07,3.14,0,0,0.0),('frm1r',70,1,0.0,3.12,0.0,0.0,3.12,3.12,3.07,3.14,0,0,0.0),('frm1r',71,2,0.0,3.12,0.0,0.0,3.12,3.12,3.1,3.14,0,0,0.0),('frm1r',72,3,0.0,3.12,0.0,0.0,3.12,3.12,3.09,3.14,0,0,0.0),('frm1r',73,3,0.0,3.12,0.0,0.0,3.12,3.12,3.1,3.14,0,0,0.0),('frm1r',74,4,0.0,3.12,0.0,0.0,3.12,3.12,3.06,3.13,0,0,0.0),('frm1r',75,5,0.0,3.12,0.0,0.0,3.12,3.12,3.09,3.13,0,0,0.0),('frm1r',76,6,0.0,3.12,0.0,0.0,3.12,3.12,3.06,3.13,0,0,0.0),('frm1r',77,7,0.0,3.12,0.0,0.0,3.12,3.12,3.07,3.13,0,0,0.0),('frm1r',78,3,0.0,3.12,0.0,0.0,3.12,3.12,3.07,3.13,0,0,0.0),('frm1r',79,4,0.0,3.12,0.0,0.0,3.12,3.12,3.06,3.13,0,0,0.0),('frm1r',80,5,3.06,3.06,3.06,3.06,3.12,3.06,3.06,3.13,1,7,21.41),('frm1r',81,6,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',82,7,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',83,3,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',84,4,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',85,5,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',86,6,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',87,7,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',88,3,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.13,0,0,0.0),('frm1r',89,4,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.13,0,0,0.0),('frm1r',90,5,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',91,6,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.12,0,0,0.0),('frm1r',92,7,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.1,0,0,0.0),('frm1r',93,3,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.09,0,0,0.0),('frm1r',94,4,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.1,0,0,0.0),('frm1r',95,3,0.0,3.06,0.0,0.0,3.06,3.06,3.06,3.14,0,0,0.0),('frm1r',96,4,3.06,3.06,3.06,3.06,3.06,3.06,2.85,3.09,1,3,9.18),('frm1r',97,5,0.0,3.06,0.0,0.0,3.06,3.06,3.04,3.07,0,0,0.0),('frm1r',98,1,0.0,3.06,0.0,0.0,3.06,3.06,3.04,3.09,0,0,0.0),('frm1r',99,2,2.65,3.04,3.04,2.6,3.06,2.6,0.0,2.6,4,133,352.47),('frm1r',100,3,0.0,2.6,0.0,0.0,2.6,2.6,0.0,2.6,0,0,0.0),('frm1r',101,4,0.0,2.6,0.0,0.0,2.6,2.6,0.0,2.6,0,0,0.0),('frm1r',102,5,0.0,2.6,0.0,0.0,2.6,2.6,0.0,2.6,0,0,0.0),('frm1r',103,1,0.0,2.6,0.0,0.0,2.6,2.6,2.29,2.62,0,0,0.0),('frm1r',104,2,2.62,2.62,2.62,2.62,2.6,2.62,2.23,2.63,1,10,26.18),('frm1r',105,3,0.0,2.62,0.0,0.0,2.62,2.62,2.23,2.62,0,0,0.0),('frm1r',106,4,0.0,2.62,0.0,0.0,2.62,2.62,2.23,2.62,0,0,0.0),('frm1r',107,5,0.0,2.62,0.0,0.0,2.62,2.62,2.23,2.62,0,0,0.0),('frm1r',108,1,0.0,2.62,0.0,0.0,2.62,2.62,2.25,2.62,0,0,0.0),('frm1r',109,2,0.0,2.62,0.0,0.0,2.62,2.62,2.23,2.62,0,0,0.0),('frm1r',110,3,0.0,2.62,0.0,0.0,2.62,2.62,2.23,2.62,0,0,0.0),('frm1r',111,4,2.24,2.23,2.25,2.23,2.62,2.23,2.23,2.26,4,310,692.94),('frm1r',112,5,0.0,2.23,0.0,0.0,2.23,2.23,2.02,2.25,0,0,0.0),('frm1r',113,1,0.0,2.23,0.0,0.0,2.23,2.23,2.02,2.25,0,0,0.0),('frm1r',114,2,0.0,2.23,0.0,0.0,2.23,2.23,1.95,2.25,0,0,0.0),('frm1r',115,3,0.0,2.23,0.0,0.0,2.23,2.23,2.02,2.25,0,0,0.0),('frm1r',116,4,0.0,2.23,0.0,0.0,2.23,2.23,1.94,2.23,0,0,0.0),('frm1r',117,5,0.0,2.23,0.0,0.0,2.23,2.23,1.91,2.23,0,0,0.0),('frm1r',118,5,0.0,2.23,0.0,0.0,2.23,2.23,1.92,2.22,0,0,0.0),('frm1r',119,6,0.0,2.23,0.0,0.0,2.23,2.23,1.89,2.23,0,0,0.0),('frm1r',120,7,1.94,1.92,1.99,1.92,2.23,1.99,1.89,1.98,2,36,69.86),('frm1r',121,1,0.0,1.99,0.0,0.0,1.99,1.99,1.74,1.96,0,0,0.0),('frm1r',122,2,1.89,1.89,1.89,1.89,1.99,1.89,1.74,1.91,1,10,18.92),('frm1r',123,5,0.0,1.89,0.0,0.0,1.89,1.89,1.64,1.89,0,0,0.0),('frm1r',124,6,1.85,1.85,1.85,1.85,1.89,1.85,1.64,1.98,1,180,332.95),('frm1r',125,7,1.64,1.64,1.64,1.64,1.85,1.64,1.64,1.92,1,45,73.63),('frm1r',126,1,0.0,1.64,0.0,0.0,1.64,1.64,1.49,1.81,0,0,0.0),('frm1r',127,2,1.86,1.84,1.88,1.84,1.64,1.88,1.49,0.0,4,105,195.29),('frm1r',128,5,0.0,1.88,0.0,0.0,1.88,1.88,0.0,0.0,0,0,0.0),('frm1r',129,6,0.0,1.88,0.0,0.0,1.88,1.88,0.0,0.0,0,0,0.0),('frm1r',130,7,0.0,1.88,0.0,0.0,1.88,1.88,1.61,1.92,0,0,0.0) |
<gh_stars>1000+
drop function if exists "de.metas.handlingunits".addMissingHUAttribute(varchar);
CREATE OR REPLACE FUNCTION "de.metas.handlingunits".addMissingHUAttribute(p_AttributeName varchar)
RETURNS void
AS
$BODY$
/*
* Function is adding M_HU_Attribute, specified by attribute code (M_Attribute.Value)
* to all M_HUs which don't have it.
*/
DECLARE
rowsInserted integer;
BEGIN
INSERT INTO M_HU_Attribute
(
m_hu_attribute_id -- ID
, m_attribute_id
, m_hu_id
--
, value
, valueInitial
--
, valueNumber
, valueNumberInitial
--
, m_hu_pi_attribute_id
, ad_client_id
, ad_org_id
, created
, createdby
, updated
, updatedby
, isactive
)
SELECT
nextval('adempiere.m_hu_attribute_seq') as m_hu_attribute_id
, pia.m_attribute_id
, hu.m_hu_id
--
, null as value
, null as valueInitial
--
, null as valueNumber
, null as valueNumberInitial
--
, pia.m_hu_pi_attribute_id
, hu.ad_client_id
, hu.ad_org_id
, now() as created
, 0 as createdby
, now() as updated
, 0 as updatedby
, 'Y' as isactive
FROM M_HU hu
inner join "de.metas.handlingunits".M_HU_PI_Attribute_Actual_v pia ON (pia.M_HU_PI_Version_ID=hu.M_HU_PI_Version_ID)
where
-- M_HU_Attribute Does not already exist
not exists (select 1 from M_HU_Attribute hua where hua.M_HU_ID=hu.M_HU_ID and hua.M_HU_PI_Attribute_ID=pia.M_HU_PI_Attribute_ID)
-- Only for given M_Attribute
and pia.M_Attribute_ValueName=p_AttributeName
-- order by hu.M_HU_ID
;
-- Log how many rows we inserted
GET DIAGNOSTICS rowsInserted = ROW_COUNT;
raise notice 'Created % M_HU_Attribute(s) for M_Attribute.Value=%', rowsInserted, p_AttributeName;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;
|
<filename>coeus-db/coeus-db-sql/src/main/resources/org/kuali/coeus/coeus-sql/current/5.0/tables/KC_TBL_IACUC_PROTOCOL_OLR_DOCUMENT.sql
CREATE TABLE IACUC_PROTOCOL_OLR_DOCUMENT (
DOCUMENT_NUMBER VARCHAR2(40) NOT NULL,
VER_NBR NUMBER(8,0) DEFAULT 1 NOT NULL,
OBJ_ID VARCHAR2(36) NOT NULL,
UPDATE_TIMESTAMP DATE NOT NULL,
UPDATE_USER VARCHAR2(60) NOT NULL)
/
ALTER TABLE IACUC_PROTOCOL_OLR_DOCUMENT
ADD CONSTRAINT PK_IACUC_PROTOCOL_OLR_DOCUMENT
PRIMARY KEY (DOCUMENT_NUMBER)
/
|
<reponame>qianfei11/zstack
CREATE TABLE `zstack`.`FusionstorBackupStorageVO` (
`uuid` varchar(32) NOT NULL UNIQUE,
`fsid` varchar(64) DEFAULT NULL,
`poolName` varchar(255) NOT NULL,
PRIMARY KEY (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zstack`.`FusionstorBackupStorageMonVO` (
`uuid` varchar(32) NOT NULL UNIQUE,
`sshUsername` varchar(64) NOT NULL,
`sshPassword` varchar(255) NOT NULL,
`hostname` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL,
`sshPort` int unsigned NOT NULL,
`monPort` int unsigned NOT NULL,
`backupStorageUuid` varchar(32) NOT NULL,
`lastOpDate` timestamp ON UPDATE CURRENT_TIMESTAMP,
`createDate` timestamp,
PRIMARY KEY (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zstack`.`FusionstorPrimaryStorageVO` (
`uuid` varchar(32) NOT NULL UNIQUE,
`fsid` varchar(64) DEFAULT NULL,
`rootVolumePoolName` varchar(255) NOT NULL,
`dataVolumePoolName` varchar(255) NOT NULL,
`imageCachePoolName` varchar(255) NOT NULL,
`userKey` varchar(255) DEFAULT NULL,
PRIMARY KEY (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zstack`.`FusionstorPrimaryStorageMonVO` (
`uuid` varchar(32) NOT NULL UNIQUE,
`sshUsername` varchar(64) NOT NULL,
`sshPassword` varchar(255) NOT NULL,
`hostname` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL,
`sshPort` int unsigned NOT NULL,
`monPort` int unsigned NOT NULL,
`primaryStorageUuid` varchar(32) NOT NULL,
`lastOpDate` timestamp ON UPDATE CURRENT_TIMESTAMP,
`createDate` timestamp,
PRIMARY KEY (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `zstack`.`FusionstorCapacityVO` (
`fsid` varchar(64) NOT NULL UNIQUE,
`totalCapacity` bigint unsigned DEFAULT 0,
`availableCapacity` bigint unsigned DEFAULT 0,
`lastOpDate` timestamp ON UPDATE CURRENT_TIMESTAMP,
`createDate` timestamp,
PRIMARY KEY (`fsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Foreign keys for table FusionstorBackupStorageMonVO
ALTER TABLE FusionstorBackupStorageMonVO ADD CONSTRAINT fkFusionstorBackupStorageMonVOBackupStorageEO FOREIGN KEY (backupStorageUuid) REFERENCES BackupStorageEO (uuid) ON DELETE CASCADE;
# Foreign keys for table FusionstorBackupStorageVO
ALTER TABLE FusionstorBackupStorageVO ADD CONSTRAINT fkFusionstorBackupStorageVOBackupStorageEO FOREIGN KEY (uuid) REFERENCES BackupStorageEO (uuid) ON UPDATE RESTRICT ON DELETE CASCADE;
# Foreign keys for table FusionstorPrimaryStorageMonVO
ALTER TABLE FusionstorPrimaryStorageMonVO ADD CONSTRAINT fkFusionstorPrimaryStorageMonVOPrimaryStorageEO FOREIGN KEY (primaryStorageUuid) REFERENCES PrimaryStorageEO (uuid) ON DELETE CASCADE;
# Foreign keys for table FusionstorPrimaryStorageVO
ALTER TABLE FusionstorPrimaryStorageVO ADD CONSTRAINT fkFusionstorPrimaryStorageVOPrimaryStorageEO FOREIGN KEY (uuid) REFERENCES PrimaryStorageEO (uuid) ON UPDATE RESTRICT ON DELETE CASCADE;
ALTER TABLE ImageEO ADD actualSize bigint unsigned DEFAULT NULL;
DROP VIEW IF EXISTS `zstack`.`ImageVO`;
CREATE VIEW `zstack`.`ImageVO` AS SELECT uuid, name, description, status, state, size, actualSize, md5Sum, platform, type, format, url, system, mediaType, createDate, lastOpDate, guestOsType FROM `zstack`.`ImageEO` WHERE deleted IS NULL;
UPDATE ImageEO set actualSize = size;
ALTER TABLE VolumeEO ADD actualSize bigint unsigned DEFAULT NULL;
DROP VIEW IF EXISTS `zstack`.`VolumeVO`;
CREATE VIEW `zstack`.`VolumeVO` AS SELECT uuid, name, description, primaryStorageUuid, vmInstanceUuid, diskOfferingUuid, rootImageUuid, installPath, type, status, size, actualSize, deviceId, format, state, createDate, lastOpDate FROM `zstack`.`VolumeEO` WHERE deleted IS NULL;
ALTER TABLE KVMHostVO ADD port int unsigned DEFAULT 22;
ALTER TABLE SftpBackupStorageVO ADD port int unsigned DEFAULT 22;
ALTER TABLE HostCapacityVO ADD cpuNum int unsigned NOT NULL DEFAULT 0;
# Index for table HostCapacityVO
CREATE INDEX idxHostCapacityVOcpuNum ON HostCapacityVO (cpuNum);
|
<gh_stars>0
SET NUMERIC_ROUNDABORT OFF;
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON;
SET XACT_ABORT ON;
DECLARE @new_version nvarchar(100) = N'01.00.09',
@old_version nvarchar(100) = N'01.00.08',
@script nvarchar(100) = N'audit version',
@ext_version nvarchar(100);
IF NOT EXISTS(SELECT 1 FROM sys.fn_listextendedproperty(NULL,NULL,NULL,NULL,NULL,NULL,NULL) WHERE [name] = @script)
BEGIN
RAISERROR(N'This is an upgrade script. Run framework install script first',20,1) WITH LOG;
END
ELSE
BEGIN
SELECT @ext_version = CONVERT(nvarchar(100),value) FROM sys.fn_listextendedproperty(NULL,NULL,NULL,NULL,NULL,NULL,NULL) WHERE [name] = @script;
IF @ext_version <> @old_version
BEGIN
RAISERROR(N'This is the wrong upgrade script.',20,1) WITH LOG;
END
ELSE
BEGIN
EXEC sys.sp_updateextendedproperty @name = @script, @value = @new_version;
END
END
PRINT 'Upgrading from version ' + @old_version + ' to ' + @new_version;
GO
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
IF OBJECT_ID('dba.s_DropObject','P') IS NOT NULL
BEGIN
DROP PROCEDURE dba.s_DropObject;
END
GO
PRINT 'creating dba.s_DropObject procedure';
GO
/*************************************************************************************************
<returns>
<return value="0" description="Success"/>
</returns>
<samples>
<sample>
<description>Drop a table named Table1</description>
<code>EXEC [DBA].[s_DropObject] 'Table1'</code>
</sample>
<sample>
<description>Drop a temp table named #t</description>
<code>EXEC [DBA].[s_DropObject] '#t','TEMP TABLE', 'dbo'</code>
</sample>
<sample>
<description>Drop a view named v_MyView in a schema named Reporting</description>
<code>EXEC [DBA].[s_DropObject] 'v_MyView','VIEW', ,'Reporting'</code>
</sample>
<sample>
<description>Drop a stored procedure named s_MyProc without specifying the schema</description>
<code>EXEC [DBA].[s_DropObject] 's_MyProc','PROCEDURE'</code>
</sample>
<sample>
<description>Drop a user defined function named f_MyFunction</description>
<code>EXEC [DBA].[s_DropObject] 'f_MyFunction','FUNCTION'</code>
</sample>
<sample>
<description>Drop an index named ix_Index1 and Table1</description>
<code>EXEC [DBA].[s_DropObject] 'ix_Index1','INDEX', 'dbo', 'database', 'Table1'</code>
</sample>
<sample>
<description>Drop a table named Table1 in a different database</description>
<code>EXEC [DBA].[s_DropObject] 'Table1','TABLE', 'dbo', 'OtherDatabase', NULL</code>
</sample>
<sample>
<description>Drop a primary key on a table</description>
<code>EXEC [DBA].[s_DropObject] 'PK_Table','CONSTRAINT', 'dbo', 'Database', 'Table', NULL</code>
</sample>
</samples>
<historylog>
<log revision="1.0" date="06/18/2010" modifier="<NAME>">Created</log>
<log revision="1.1" date="06/24/2010" modifier="<NAME>">Corrected DROP VIEW section</log>
<log revision="1.2" date="06/24/2010" modifier="<NAME>">Corrected DROP PROCEDURE section</log>
<log revision="1.3" date="06/29/2010" modifier="<NAME>">Corrected DROP TRIGGER section</log>
<log revision="1.4" date="07/01/2010" modifier="<NAME>">Changed s_AddSQLErrorLog call to use named parameters</log>
<log revision="1.5" date="07/06/2010" modifier="<NAME>">Added @debug parameter</log>
<log revision="1.6" date="07/06/2010" modifier="<NAME>">Forced declaraction of @db_name unless TEMP TABLE</log>
<log revision="1.7" date="07/13/2010" modifier="<NAME>">Corrected DROP FUNCTION section</log>
<log revision="1.8" date="07/21/2010" modifier="<NAME>">Expanded BEGIN TRY section and added ISNULL function to @params call</log>
<log revision="1.9" date="09/27/2010" modifier="<NAME>">Corrected DROP LOGIN functionality to allow NULL @db_name parameter</log>
<log revision="2.0" date="10/04/2010" modifier="<NAME>">Corrected DROP INDEX functionality to remove square brackets in EXISTS search</log>
<log revision="2.1" date="10/04/2010" modifier="<NAME>">Added ability to DROP SQL Agent Job</log>
<log revision="2.2" date="03/02/2011" modifier="<NAME>">Changed SET settings</log>
<log revision="2.3" date="03/08/2011" modifier="<NAME>">Added DROP CONSTRAINT section</log>
<log revision="2.4" date="06/09/2011" modifier="<NAME>">Fixed DROP CONSTRAINT section. It wasnt looking for constraint name in check. Also added logging.</log>
<log revision="2.5" date="06/20/2011" modifier="<NAME>">Fixed DROP CONSTRAINT section. It was looking for constraint name with square brackets.</log>
<log revision="2.6" date="05/01/2012" modifier="<NAME>">Fixed DROP INDEX section to handle duplicate index names</log>
<log revision="2.7" date="08/14/2012" modifier="<NAME>">Added @log_id parameter for logging purposes</log>
<log revision="2.8" date="12/11/2012" modifier="<NAME>">Fixed DROP TRIGGER section</log>
<log revision="2.9" date="10/25/2014" modifier="<NAME>">Removed custom error code and just put in text message</log>
<log revision="3.0" date="04/06/2015" modifier="<NAME>">Changed to use datetimeoffset for logging date/times, and added @app_nm parameter</log>
<log revision="3.1" date="07/09/2015" modifier="<NAME>">Changed to use KV for error handling and logging</log>
<log revision="3.2" date="07/20/2015" modifier="<NAME>">Changed @version to use different GUID for KV key</log>
</historylog>
**************************************************************************************************/
CREATE PROCEDURE [dba].[s_DropObject]
(
@object_name sysname,
@object_type sysname = 'TABLE',
@schema_name sysname = 'dbo',
@db_name sysname = NULL,
@qualifier_name sysname = NULL,
@debug bit = 0,
@log_id uniqueidentifier = NULL,
@app_nm varchar(128) = NULL
)
AS
SET NOCOUNT ON
SET XACT_ABORT ON
-- Auditing variables
DECLARE @err_sec varchar(128) = NULL,
@exec_start datetimeoffset(7) = SYSDATETIMEOFFSET(),
@sec_exec_start datetimeoffset(7) = SYSDATETIMEOFFSET(),
@exec_end datetimeoffset(7) = SYSDATETIMEOFFSET(),
@params nvarchar(2000) = NULL,
@rows int = 0,
@version uniqueidentifier = NEWID(),
@db_id int = DB_ID();
-- Common variables
DECLARE @ret_val int,
@sql nvarchar(MAX) = N'',
@crlf nvarchar(1) = NCHAR(13),
@tab nvarchar(1) = NCHAR(9);
-- local variables
DECLARE @full_object_name nvarchar(1000),
@schema_object_name nvarchar(1000),
@schema_qualifier_name nvarchar(1000)
SET @err_sec = 'log parameters';
SET @params = N'@object_name = ' + COALESCE('''' + CAST(@object_name AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@object_type = ' + COALESCE('''' + CAST(@object_type AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@schema_name = ' + COALESCE('''' + CAST(@schema_name AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@db_name = ' + COALESCE('''' + CAST(@db_name AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@qualifier_name = ' + COALESCE('''' + CAST(@qualifier_name AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@log_id = ' + COALESCE('''' + CAST(@log_id AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@app_nm = ' + COALESCE('''' + CAST(@app_nm AS nvarchar(128)) + '''',N'NULL') + N' , ' +
N'@debug = ' + COALESCE(CAST(@debug AS nvarchar(4)),N'NULL');
BEGIN TRY
SET @err_sec = 'Validate parameters'
SET @log_id = COALESCE(@log_id,NEWID());
SET @debug = COALESCE(@debug,0);
SET @err_sec = 'begin logging'
EXEC audit.s_KVAdd @version, 'evt_type', 'proc exec';
EXEC audit.s_KVAdd @version, 'evt_status', 'info';
EXEC audit.s_KVAdd @version, 'uid', @log_id;
EXEC audit.s_KVAdd @version, 'sec_nm', @err_sec;
EXEC audit.s_KVAdd @version, 'bgn_dt', @exec_start;
EXEC audit.s_KVAdd @version, 'end_dt', @exec_end;
EXEC audit.s_KVAdd @version, 'evt_info', @params;
EXEC audit.s_KVAdd @version, 'obj_id', @@PROCID;
EXEC audit.s_KVAdd @version, 'db_id', @db_id;
EXEC audit.s_KVAdd @version, 'app_nm', @app_nm;
EXEC audit.s_KVLog @version, 0;
SET @sec_exec_start = SYSDATETIMEOFFSET();
-- Raise an error if @object_name is null or blank
IF @object_name IS NULL OR @object_name = ''
RAISERROR('@object_name parameter must be supplied',15,1)
-- If object_type is NULL default it to TABLE
IF @object_type IS NULL OR @object_type = ''
SET @object_type = 'TABLE'
-- If the @db_name is NULL, assume it is tempdb, otherwise raise an error
IF (@db_name IS NULL OR @db_name = '') AND @object_type <> 'LOGIN'
BEGIN
IF @object_type = 'TEMP TABLE'
SELECT @db_name = 'tempdb'
ELSE
RAISERROR('@db_name parameter must be supplied',15,1)
END
-- If the @schema is NULL, assume it is dbo
IF @schema_name IS NULL OR @schema_name = ''
SELECT @schema_name = 'dbo'
-- If the @object_type is INDEX or CONSTRAINT, verify @qualifier_name is not null
IF (@object_type = 'INDEX' OR @object_type = 'CONSTRAINT') AND @qualifier_name IS NULL
RAISERROR('@qualifier_name parameter must be supplied',15,1)
-- Create a full object name for easier code readability
SET @full_object_name = '[' + @db_name + '].[' + @schema_name + '].[' + @object_name + ']'
-- Create a schema and object name for those commands where we cant specify database
SET @schema_object_name = '[' + @schema_name + '].[' + @object_name + ']'
-- Create a schema and qualifier name for those commands where needed
SET @schema_qualifier_name = '[' + @schema_name + '].[' + @qualifier_name + ']'
SET @err_sec = 'drop ' + @object_type
-- TABLE
IF @object_type = 'TABLE' OR @object_type = 'TEMP TABLE'
BEGIN
SET @err_sec = 'DROP TABLE'
SELECT @sql = N'IF OBJECT_ID(''' + @full_object_name + ''', ''U'') IS NOT NULL '
SELECT @sql = @sql + N'DROP TABLE ' + @full_object_name
END
-- TABLE
IF @object_type = 'TEMP TABLE'
BEGIN
SET @err_sec = 'DROP TEMP TABLE'
SELECT @sql = N'IF OBJECT_ID(''' + @full_object_name + ''', ''U'') IS NOT NULL '
SELECT @sql = @sql + N'BEGIN USE tempdb DROP TABLE [' + @object_name + '] END'
END
-- VIEW
IF @object_type = 'VIEW'
BEGIN
SET @err_sec = 'DROP VIEW'
SELECT @sql = N'IF OBJECT_ID(''' + @full_object_name + ''', ''V'') IS NOT NULL '
SELECT @sql = @sql + N'BEGIN USE ' + @db_name + ' DROP VIEW ' + @schema_object_name + ' END'
END
-- Stored Procedure (allow a little flexibility)
IF @object_type = 'PROC' OR @object_type = 'PROCEDURE' OR @object_type = 'STORED PROC' OR @object_type = 'STORED PROCEDURE'
BEGIN
SET @err_sec = 'DROP PROCEDURE'
SELECT @sql = N'IF OBJECT_ID(''' + @full_object_name + ''', ''P'') IS NOT NULL '
SELECT @sql = @sql + N'BEGIN USE ' + @db_name + ' DROP PROCEDURE ' + @schema_object_name + ' END'
END
-- User Defined Function
IF @object_type = 'FUNCTION'
BEGIN
SET @err_sec = 'DROP FUNCTION'
SELECT @sql = N'IF OBJECT_ID(''' + @full_object_name + ''', ''FN'') IS NOT NULL '
SELECT @sql = @sql + N'OR OBJECT_ID(''' + @full_object_name + ''', ''IF'') IS NOT NULL '
SELECT @sql = @sql + N'OR OBJECT_ID(''' + @full_object_name + ''', ''TF'') IS NOT NULL '
SELECT @sql = @sql + N'BEGIN USE ' + @db_name + ' DROP FUNCTION ' + @schema_object_name + ' END'
END
-- Trigger
IF @object_type = 'TRIGGER'
BEGIN
SET @err_sec = 'DROP TRIGGER'
SELECT @sql = N'IF EXISTS(SELECT [name] FROM [' + @db_name + '].sys.triggers where [name] = ''' + @object_name + ''') '
SELECT @sql = @sql + N'BEGIN USE ' + @db_name + ' DROP TRIGGER ' + @schema_object_name + ' END'
END
-- Index
IF @object_type = 'INDEX'
BEGIN
SET @err_sec = 'DROP INDEX'
SELECT @sql = N'IF EXISTS(SELECT i.[name] FROM [' + @db_name + '].sys.indexes i INNER JOIN [' + @db_name + '].sys.objects o ON i.object_id = o.object_id WHERE o.[name] = ''' + @qualifier_name + ''' AND i.[name] = ''' + @object_name + ''') '
SELECT @sql = @sql + N'DROP INDEX ' + @object_name + ' ON [' + @db_name + '].[' + @schema_name + '].[' + @qualifier_name + '] '
END
-- Constraint
IF @object_type = 'CONSTRAINT'
BEGIN
SET @err_sec = 'DROP CONSTRAINT'
SELECT @sql = N'IF EXISTS(SELECT name FROM [' + @db_name + '].sys.objects WHERE [name] = ''' + @object_name + ''' AND parent_object_id = (OBJECT_ID(''' + @db_name + '.' + @schema_qualifier_name + ''')) AND type_desc IN (''UNIQUE_CONSTRAINT'',''PRIMARY_KEY_CONSTRAINT'',''FOREIGN_KEY_CONSTRAINT'',''CHECK_CONSTRAINT'',''DEFAULT_CONSTRAINT'')) '
SELECT @sql = @sql + N'BEGIN USE ' + @db_name + ' ALTER TABLE ' + @schema_qualifier_name + ' DROP CONSTRAINT ' + @object_name + ' END '
END
-- Schema
IF @object_type = 'SCHEMA'
BEGIN
SET @err_sec = 'DROP SCHEMA'
SELECT @sql = N'IF EXISTS(SELECT [name] FROM [' + @db_name + '].sys.schemas WHERE [name] = ''[' + @object_name + ']'') '
SELECT @sql = @sql + N'DROP SCHEMA [' + @object_name + ']'
END
-- User
IF @object_type = 'USER'
BEGIN
SET @err_sec = 'DROP USER'
SELECT @sql = N'IF EXISTS(SELECT [name] FROM [' + @db_name + '].sys.database_principals WHERE [type] IN (''U'',''S'',''G'',''C'',''K'') AND [name] = ''' + @object_name + ''' AND (CAST(CASE WHEN principal_id < 5 OR principal_id = 16382 OR principal_id = 16383 THEN 1 ELSE 0 END AS bit) = 0)) '
SELECT @sql = @sql + N'BEGIN USE ' + @db_name + ' DROP USER [' + @object_name + '] END'
END
-- Role
IF @object_type = 'ROLE'
BEGIN
SET @err_sec = 'DROP ROLE'
-- Just to control things a little tighter, we're not going to drop a role if it still has members attached to it
-- Put in error handling here
SELECT @sql = N'IF EXISTS(SELECT [name] FROM [' + @db_name + '] sys.database_principals WHERE [type] IN (''A'',''R'') AND [name] = ''' + @object_name + ''' AND is_fixed_role = 0 AND owning_principal_id <> 1) '
SELECT @sql = @sql + N'DROP ROLE [' + @object_name + ']'
END
-- Login
IF @object_type = 'LOGIN'
BEGIN
SET @err_sec = 'DROP LOGIN'
SELECT @sql = N'IF EXISTS(SELECT name FROM master.sys.server_principals WHERE name = ''' + @object_name + ''') '
SELECT @sql = @sql + N'DROP LOGIN ' + @object_name + ''
END
-- Job
IF @object_type = 'JOB'
BEGIN
SET @err_sec = 'DROP JOB'
SELECT @sql = N'IF EXISTS(SELECT job_id FROM msdb.dbo.sysjobs_view WHERE name = N''' + @object_name + ''') '
SELECT @sql = @sql + N'EXEC msdb.dbo.sp_deletejob @job_name = '''+ @object_name + ''', @delete_unused_schedule = 1 '
END
-- If we have a sql statement, let's execute it
IF @sql <> '' AND @err_sec <> ''
BEGIN
IF @debug = 1
PRINT @sql
ELSE
EXEC sp_executesql @sql
END
ELSE
BEGIN
-- We'll assume they sent in a wrong @object_type
RAISERROR(50013,15,1, '@object_type')
END
SET @rows = @@ROWCOUNT;
SET @err_sec = 'end logging';
SET @exec_end = SYSDATETIMEOFFSET();
EXEC audit.s_KVAdd @version, 'sec_nm', @err_sec;
EXEC audit.s_KVAdd @version, 'rows', @rows;
EXEC audit.s_KVAdd @version, 'bgn_dt', @exec_start;
EXEC audit.s_KVAdd @version, 'end_dt', @exec_end;
EXEC audit.s_KVAdd @version, 'app_nm', @app_nm;
EXEC audit.s_KVLog @version, 1;
RETURN (0)
END TRY
BEGIN CATCH
DECLARE @err_dt datetime2(7) = SYSUTCDATETIME(),
@err_proc_nm sysname = ERROR_PROCEDURE(),
@err_line int = ERROR_LINE(),
@err_num int = ERROR_NUMBER(),
@err_msg nvarchar(4000) = ERROR_MESSAGE(),
@err_lvl int = ERROR_SEVERITY(),
@err_state int = ERROR_STATE(),
@log_db_nm sysname = DB_NAME(),
@cmd varchar(1000),
@event_info nvarchar(4000);
-- use this table to hold the info from DBCC INPUTBUFFER
DECLARE @err_tbl table
(
[EventType] nvarchar(30) NULL,
[Parameters] int NULL,
[EventInfo] nvarchar(4000) NULL
)
-- We're calling this to get the code that was originally executing
SET @cmd = 'DBCC INPUTBUFFER( ' + CAST(@@spid as varchar) + ') WITH NO_INFOMSGS'
INSERT INTO @err_tbl
EXEC(@cmd)
SELECT
@event_info = [EventInfo]
FROM @err_tbl;
-- This will forcibly rollback a transaction that is marked as uncommitable
IF (XACT_STATE()) = -1 AND @@TRANCOUNT > 0
ROLLBACK TRANSACTION
-- log the error
EXEC audit.s_KVAdd @version, 'evt_type', 'error';
EXEC audit.s_KVAdd @version, 'evt_status', 'alert';
EXEC audit.s_KVAdd @version, 'err_dt', @err_dt;
EXEC audit.s_KVAdd @version, 'err_announce', 1;
EXEC audit.s_KVAdd @version, 'err_spid', @@SPID;
EXEC audit.s_KVAdd @version, 'err_proc_nm', @err_proc_nm;
EXEC audit.s_KVAdd @version, 'err_line', @err_line;
EXEC audit.s_KVAdd @version, 'err_num', @err_num;
EXEC audit.s_KVAdd @version, 'err_msg', @err_msg;
EXEC audit.s_KVAdd @version, 'err_lvl', @err_lvl;
EXEC audit.s_KVAdd @version, 'err_state', @err_state;
EXEC audit.s_KVAdd @version, 'srv_nm', @@SERVERNAME;
EXEC audit.s_KVAdd @version, 'db_nm', @log_db_nm;
EXEC audit.s_KVAdd @version, 'uid', @log_id;
EXEC audit.s_KVAdd @version, 'sec_nm', @err_sec;
EXEC audit.s_KVAdd @version, 'app_nm', @app_nm;
EXEC audit.s_KVAdd @version, 'evt_txt', @event_info;
EXEC audit.s_KVAdd @version, 'evt_info', @params;
EXEC audit.s_KVLog @version, 1;
-- Return error message to calling code via @@ERROR and error number via return code
RAISERROR (@err_msg, @err_lvl, 1)
RETURN(ERROR_NUMBER())
END CATCH
GO
|
<reponame>Victor-Y-Fadeev/Learning
CREATE TRIGGER InsertPatient
ON Patients
INSTEAD OF INSERT AS
BEGIN
DECLARE @PatientID INT
, @Passport INT
SELECT @PatientID = inserted.PatientID FROM inserted
SELECT @Passport = inserted.Passport FROM inserted
IF (SELECT People.Number
FROM People
WHERE PersonID = @PatientID
) LIKE '%[^0-9]%' OR (
@Passport LIKE '%[^0-9]%'
)
PRINT 'Incorrect numbers!'
END
|
<reponame>liqiang-1994/switches
create table t_goods (
id bigint primary key,
name varchar(100) comment '物品名称',
type bigint comment '物品分类',
description varchar(300) comment '描述',
price double(6,2),
seller_id bigint comment '卖方ID',
create_dt datetime,
create_uid bigint,
modify_dt datetime,
modify_uid bigint,
index goods_uid_index(seller_id)
);
|
CREATE TABLE product
(
id INTEGER,
code CHARACTER VARYING(255),
name CHARACTER VARYING(500),
PRIMARY KEY (id)
); |
<gh_stars>0
CREATE TABLE planet (
id bigint(20) NOT NULL AUTO_INCREMENT,
swid varchar(255) DEFAULT NULL,
name varchar(255) DEFAULT NULL,
climate varchar(255) DEFAULT NULL,
terrain varchar(255) DEFAULT NULL,
films int(11) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=312 DEFAULT CHARSET=latin1 |
-- This file and its contents are licensed under the Timescale License.
-- Please see the included NOTICE for copyright information and
-- LICENSE-TIMESCALE for a copy of the license.
-- TEST SETUP --
\set ON_ERROR_STOP 0
SET client_min_messages TO LOG;
-- START OF USAGE TEST --
--First create your hypertable
CREATE TABLE device_readings (
observation_time TIMESTAMPTZ NOT NULL,
device_id TEXT NOT NULL,
metric DOUBLE PRECISION NOT NULL,
PRIMARY KEY(observation_time, device_id)
);
SELECT table_name FROM create_hypertable('device_readings', 'observation_time');
--Next, create your continuous aggregate view
CREATE MATERIALIZED VIEW device_summary
WITH (timescaledb.continuous, timescaledb.materialized_only=true) --This flag is what makes the view continuous
AS
SELECT
time_bucket('1 hour', observation_time) as bucket, --time_bucket is required
device_id,
avg(metric) as metric_avg, --We can use regular aggregates
max(metric)-min(metric) as metric_spread --We can also use expressions on aggregates and constants
FROM
device_readings
GROUP BY bucket, device_id WITH NO DATA; --We have to group by the bucket column, but can also add other group-by columns
SELECT add_continuous_aggregate_policy('device_summary', NULL, '2 h'::interval, '2 h'::interval);
--Next, insert some data into the raw hypertable
INSERT INTO device_readings
SELECT ts, 'device_1', (EXTRACT(EPOCH FROM ts)) from generate_series('2018-12-01 00:00'::timestamp, '2018-12-31 00:00'::timestamp, '30 minutes') ts;
INSERT INTO device_readings
SELECT ts, 'device_2', (EXTRACT(EPOCH FROM ts)) from generate_series('2018-12-01 00:00'::timestamp, '2018-12-31 00:00'::timestamp, '30 minutes') ts;
--Initially, it will be empty.
SELECT * FROM device_summary;
-- Simulate a policy that refreshes with lag, i.e., it doesn't refresh
-- the entire data set. In this case up to the given date.
CALL refresh_continuous_aggregate('device_summary', NULL, '2018-12-30 22:00');
--Now you can run selects over your view as normal
SELECT * FROM device_summary WHERE metric_spread = 1800 ORDER BY bucket DESC, device_id LIMIT 10;
--You can view informaton about your continuous aggregates. The meaning of these fields will be explained further down.
\x
SELECT * FROM timescaledb_information.continuous_aggregates;
\x
-- Refresh interval
--
-- The refresh interval determines how often the background worker
-- for automatic materialization will run. The default is (2 x bucket_width)
SELECT schedule_interval FROM _timescaledb_config.bgw_job WHERE id = 1000;
-- You can change this setting with ALTER VIEW (equivalently, specify in WITH clause of CREATE VIEW)
SELECT alter_job(1000, schedule_interval := '1h');
SELECT schedule_interval FROM _timescaledb_config.bgw_job WHERE id = 1000;
--
-- Refresh with lag
--
-- It is possible to use a policy or manual refresh with a lag, which
-- means the materialization will not contain the most up-to-date
-- data.
SELECT max(observation_time) FROM device_readings;
SELECT max(bucket) FROM device_summary;
CALL refresh_continuous_aggregate('device_summary', NULL, '2018-12-31 01:00');
SELECT max(observation_time) FROM device_readings;
SELECT max(bucket) FROM device_summary;
--
-- Invalidations
--
--Changes to the raw table, for values that have already been materialized are propagated asynchronously, after the materialization next runs.
--Before update:
SELECT * FROM device_summary WHERE device_id = 'device_1' and bucket = 'Sun Dec 30 13:00:00 2018 PST';
INSERT INTO device_readings VALUES ('Sun Dec 30 13:01:00 2018 PST', 'device_1', 1.0);
--Change not reflected before materializer runs.
SELECT * FROM device_summary WHERE device_id = 'device_1' and bucket = 'Sun Dec 30 13:00:00 2018 PST';
CALL refresh_continuous_aggregate('device_summary', NULL, NULL);
--But is reflected after.
SELECT * FROM device_summary WHERE device_id = 'device_1' and bucket = 'Sun Dec 30 13:00:00 2018 PST';
--
-- Dealing with timezones
--
-- You cannot use any functions that depend on the local timezone setting inside a continuous aggregate.
-- For example you cannot cast to the local time. This is because
-- a timezone setting can alter from user-to-user and thus
-- cannot be materialized.
DROP MATERIALIZED VIEW device_summary;
CREATE MATERIALIZED VIEW device_summary
WITH (timescaledb.continuous, timescaledb.materialized_only=true)
AS
SELECT
time_bucket('1 hour', observation_time) as bucket,
min(observation_time::timestamp) as min_time, --note the cast to localtime
device_id,
avg(metric) as metric_avg,
max(metric)-min(metric) as metric_spread
FROM
device_readings
GROUP BY bucket, device_id WITH NO DATA;
--note the error.
-- You have two options:
-- Option 1: be explicit in your timezone:
DROP MATERIALIZED VIEW device_summary;
CREATE MATERIALIZED VIEW device_summary
WITH (timescaledb.continuous, timescaledb.materialized_only=true)
AS
SELECT
time_bucket('1 hour', observation_time) as bucket,
min(observation_time AT TIME ZONE 'EST') as min_time, --note the explict timezone
device_id,
avg(metric) as metric_avg,
max(metric)-min(metric) as metric_spread
FROM
device_readings
GROUP BY bucket, device_id WITH NO DATA;
DROP MATERIALIZED VIEW device_summary;
-- Option 2: Keep things as TIMESTAMPTZ in the view and convert to local time when
-- querying from the view
DROP MATERIALIZED VIEW device_summary;
CREATE MATERIALIZED VIEW device_summary
WITH (timescaledb.continuous, timescaledb.materialized_only=true)
AS
SELECT
time_bucket('1 hour', observation_time) as bucket,
min(observation_time) as min_time, --this is a TIMESTAMPTZ
device_id,
avg(metric) as metric_avg,
max(metric)-min(metric) as metric_spread
FROM
device_readings
GROUP BY bucket, device_id WITH DATA;
SELECT min(min_time)::timestamp FROM device_summary;
--
-- test just in time aggregate / materialization only view
--
-- hardcoding now to 50 will lead to 30 watermark
CREATE OR REPLACE FUNCTION device_readings_int_now()
RETURNS INT LANGUAGE SQL STABLE AS
$BODY$
SELECT 50;
$BODY$;
CREATE TABLE device_readings_int(time int, value float);
SELECT create_hypertable('device_readings_int','time',chunk_time_interval:=10);
SELECT set_integer_now_func('device_readings_int','device_readings_int_now');
CREATE MATERIALIZED VIEW device_readings_mat_only
WITH (timescaledb.continuous, timescaledb.materialized_only=true)
AS
SELECT time_bucket(10,time), avg(value) FROM device_readings_int GROUP BY 1 WITH NO DATA;
CREATE MATERIALIZED VIEW device_readings_jit
WITH (timescaledb.continuous, timescaledb.materialized_only=false)
AS
SELECT time_bucket(10,time), avg(value) FROM device_readings_int GROUP BY 1 WITH NO DATA;
INSERT INTO device_readings_int SELECT i, i*10 FROM generate_series(10,40,10) AS g(i);
-- materialization only should have 0 rows
SELECT * FROM device_readings_mat_only ORDER BY time_bucket;
-- jit aggregate should have 4 rows
SELECT * FROM device_readings_jit ORDER BY time_bucket;
-- simulate a refresh policy with lag, i.e., one that doesn't refresh
-- up to the latest data. Max value is 40.
CALL refresh_continuous_aggregate('device_readings_mat_only', NULL, 30);
CALL refresh_continuous_aggregate('device_readings_jit', NULL, 30);
-- materialization only should have 2 rows
SELECT * FROM device_readings_mat_only ORDER BY time_bucket;
-- jit aggregate should have 4 rows
SELECT * FROM device_readings_jit ORDER BY time_bucket;
-- add 2 more rows
INSERT INTO device_readings_int SELECT i, i*10 FROM generate_series(50,60,10) AS g(i);
-- materialization only should have 2 rows
SELECT * FROM device_readings_mat_only ORDER BY time_bucket;
-- jit aggregate should have 6 rows
SELECT * FROM device_readings_jit ORDER BY time_bucket;
-- hardcoding now to 100 will lead to 80 watermark
CREATE OR REPLACE FUNCTION device_readings_int_now()
RETURNS INT LANGUAGE SQL STABLE AS
$BODY$
SELECT 100;
$BODY$;
-- refresh should materialize all now
CALL refresh_continuous_aggregate('device_readings_mat_only', NULL, NULL);
CALL refresh_continuous_aggregate('device_readings_jit', NULL, NULL);
-- materialization only should have 6 rows
SELECT * FROM device_readings_mat_only ORDER BY time_bucket;
-- jit aggregate should have 6 rows
SELECT * FROM device_readings_jit ORDER BY time_bucket;
-- START OF BASIC USAGE TESTS --
-- Check that continuous aggregate and materialized table is dropped
-- together.
CREATE TABLE whatever(time TIMESTAMPTZ NOT NULL, metric INTEGER);
SELECT * FROM create_hypertable('whatever', 'time');
CREATE MATERIALIZED VIEW whatever_summary WITH (timescaledb.continuous) AS
SELECT time_bucket('1 hour', time) AS bucket, avg(metric)
FROM whatever GROUP BY bucket WITH NO DATA;
SELECT (SELECT format('%1$I.%2$I', schema_name, table_name)::regclass::oid
FROM _timescaledb_catalog.hypertable
WHERE id = raw_hypertable_id) AS raw_table
, (SELECT format('%1$I.%2$I', schema_name, table_name)::regclass::oid
FROM _timescaledb_catalog.hypertable
WHERE id = mat_hypertable_id) AS mat_table
FROM _timescaledb_catalog.continuous_agg
WHERE user_view_name = 'whatever_summary' \gset
SELECT relname FROM pg_class WHERE oid = :mat_table;
----------------------------------------------------------------
-- Should generate an error since the cagg is dependent on the table.
DROP TABLE whatever;
----------------------------------------------------------------
-- Checking that a cagg cannot be dropped if there is a dependent
-- object on it.
CREATE VIEW whatever_summary_dependency AS SELECT * FROM whatever_summary;
-- Should generate an error
DROP MATERIALIZED VIEW whatever_summary;
-- Dropping the dependent view so that we can do a proper drop below.
DROP VIEW whatever_summary_dependency;
----------------------------------------------------------------
-- Dropping the cagg should also remove the materialized table
DROP MATERIALIZED VIEW whatever_summary;
SELECT relname FROM pg_class WHERE oid = :mat_table;
----------------------------------------------------------------
-- Cleanup
DROP TABLE whatever;
-- END OF BASIC USAGE TESTS --
|
/*
Script to create a text file with mail addresses of all users in peopledb
which have not assigned the employee.extended role.
Call this script with "db2 -tvf selectNoExtendedRole.sql", it will generate a
result file named mail.txt
You can copy this result file to DMGR/bin and use it like:
wsadmin.sh -lang jython -c 'ProfilesService.setBatchRole(EMPLOYEE_EXTENDED, "mail.txt")'
Then all users get the role EMPLOYEE_EXTENDED
--
Author: <NAME>
E-Mail: <EMAIL>
Date: 2016-01-20
(c)2016 by <NAME>
Licence: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)
*/
connect to peopledb;
EXPORT TO mail.txt OF DEL MODIFIED by NOCHARDEL
select e.PROF_MAIL FROM EMPINST.EMPLOYEE e
inner join EMPINST.EMP_ROLE_MAP r
on r.PROF_KEY=e.PROF_KEY
where r.ROLE_ID!='employee.extended';
connect reset;
|
/* Copyright (c) 2006-2013 Regents of the University of Minnesota
For licensing terms, see the file LICENSE. */
/* This scripts drop constraints and indexes columns so that the next few
scripts run efficiently. */
/* Tell schema-update to run this script as -U Postgres, since only sudo can
new make schemas:
@run-as-superuser
*/
\qecho
\qecho This script drops constraints and indexes columns so that the next
\qecho few scripts run efficiently.
\qecho
--\qecho [EXEC. TIME: 2011.04.25/Huffy: ~ x mins (incl. mn. and co.).]
\qecho [EXEC. TIME: 2013.02.12: 0.01 mins. [runic]]
\qecho
BEGIN TRANSACTION;
SET CONSTRAINTS ALL DEFERRED;
--SET search_path TO @@@instance@@@, public;
/* ==================================================================== */
/* Step (1) -- Drop constraints and index columns */
/* ==================================================================== */
DROP INDEX IF EXISTS user__dont_study;
CREATE INDEX user__dont_study ON user_ (dont_study);
DROP INDEX IF EXISTS user__username;
CREATE INDEX user__username ON user_ (username);
DROP INDEX IF EXISTS auth_fail_event_username;
CREATE INDEX auth_fail_event_username ON auth_fail_event (username);
DROP INDEX IF EXISTS ban_username;
CREATE INDEX ban_username ON ban (username);
DROP INDEX IF EXISTS user_preference_event_username;
CREATE INDEX user_preference_event_username
ON user_preference_event (username);
/* ==================================================================== */
/* Step (n) -- All done! */
/* ==================================================================== */
\qecho
\qecho Done!
\qecho
COMMIT;
|
<gh_stars>1-10
CREATE TABLE v3_0_ballots (id INTEGER PRIMARY KEY,
referendum_id INTEGER,
custom_ballot_id INTEGER,
write_in BOOLEAN CHECK (write_in IN (0,1)),
image_url TEXT);
|
--TEST: test with numeric data types and normal syntax
create table var_samp_numeric(
col1 int,
col2 short,
col3 bigint,
col4 numeric(10, 5),
col5 float,
col6 double,
col7 monetary
);
insert into var_samp_numeric values(10000, 100, 10000000, 12345.06789, 111.11, 11111.130, 1000);
insert into var_samp_numeric values(10000, 200, 20000000, 12345.06789, 111.12, 11111.129, 1000);
insert into var_samp_numeric values(10000, 100, 30000000, 12345.16789, 111.13, 11111.128, 1000);
insert into var_samp_numeric values(10000, 200, 40000000, 12345.06789, 111.14, 11111.127, 1000);
insert into var_samp_numeric values(10000, 100, 50000000, 12345.16789, 111.15, 11111.126, 1000);
insert into var_samp_numeric values(20000, 200, 70000000, 12345.06789, 111.16, 11111.125, 1000);
insert into var_samp_numeric values(20000, 100, 80000000, 12345.06789, 111.17, 11111.124, 1000);
insert into var_samp_numeric values(20000, 100, 10000000, 12345.26789, 111.18, 11111.123, 1000);
insert into var_samp_numeric values(20000, 300, 20000000, 12345.06789, 111.19, 11111.122, 1000);
insert into var_samp_numeric values(30000, 100, 30000000, 12345.06789, 111.20, 11111.121, 1000);
insert into var_samp_numeric values(30000, 100, 40000000, 12345.16789, 111.21, 11111.120, 1000);
insert into var_samp_numeric values(30000, 300, 50000000, 12345.06789, 111.23, 11111.119, 1000);
insert into var_samp_numeric values(40000, 100, 10000000, 12345.06789, 111.24, 11111.118, 1000);
insert into var_samp_numeric values(50000, 100, 20000000, 12345.06789, 111.25, 11111.117, 1000);
insert into var_samp_numeric values(50000, 200, 30000000, 12345.06789, 111.26, 11111.116, 1000);
insert into var_samp_numeric values(50000, 100, 40000000, 12345.56789, 111.27, 11111.115, 1000);
insert into var_samp_numeric values(50000, 100, 50000000, 12345.06789, 111.28, 11111.114, 1000);
insert into var_samp_numeric values(50000, 300, 60000000, 12345.56789, 111.29, 11111.113, 1000);
insert into var_samp_numeric values(50000, 100, 70000000, 12345.06789, 111.30, 11111.112, 1000);
insert into var_samp_numeric values(50000, 100, 80000000, 12345.56789, 111.31, 11111.111, 1000);
--TEST: OVER() clause
--TEST: int
select trunc(var_samp, 2) from (select col1, col2, var_samp(col1) over() var_samp from var_samp_numeric) order by 1;
--TEST: short, with alias
select trunc(var_samp, 2) from (select col2, col3, var_samp(col2) over() var_samp from var_samp_numeric) order by 1;
--TEST: bigint, with where clause
select trunc(var_samp, 2) from (select col3, col4, var_samp(col3) over() var_samp from var_samp_numeric where col1 > 10000) order by 1;
--TEST: numeric, distinct
select trunc(var_samp, 2) from (select col4, col5, var_samp(distinct col4) over() var_samp from var_samp_numeric) order by 1;
--TEST: float, all
select trunc(var_samp, 2) from (select col5, col6, col7, var_samp(all col5) over() var_samp from var_samp_numeric) order by 1;
--TEST: double, all
select trunc(var_samp, 2) from (select col6, col1, col2, col5, var_samp(all col6) over() var_samp from var_samp_numeric where length(col3)=8 and round(col5)=111) order by 1;
--TEST: monetary, distinct
select trunc(var_samp, 2) from (select col7, col3, col5, var_samp(distinct col7) over() var_samp from var_samp_numeric) order by 1;
--TEST: no matched rows
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(col1) over() var_samp from var_samp_numeric where trunc(col6)=111) order by 1;
select trunc(var_samp, 2) from (select *, var_samp(col2) over() var_samp from var_samp_numeric);
--TEST: syntax error
select trunc(var_samp, 2) from (select col1, col3, col5, var_samp(col2) over var_samp from var_samp_numeric;
select trunc(var_samp, 2) from (select col1, col3, col5, var_samp(col2) over(1) var_samp from var_samp_numeric;
--TEST: OVER(PARTITION BY) clause
--TEST: partition by int
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(unique col3) over(partition by col1) var_samp from var_samp_numeric) order by 1;
--TEST: partition by smallint
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(distinct col4) over(partition by col2) var_samp from var_samp_numeric) order by 1;
--TEST: partition by bigint
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(col4) over(partition by col3) var_samp from var_samp_numeric) order by 1;
--TEST: partition by numeric
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(all col2) over(partition by col4) var_samp from var_samp_numeric) order by 1;
--TEST: partition by float
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(distinctrow col5) over(partition by col5) var_samp from var_samp_numeric) order by 1;
--TEST: partition by double
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(all col4) over(partition by col6) var_samp from var_samp_numeric) order by 1;
--TEST: partition by monetary
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(distinct col7) over(partition by col7) var_samp from var_samp_numeric) order by 1;
--TEST: OVER(ORDER BY) clause
--TEST: order by 1 column name
select trunc(var_samp1, 2) from (select col1, var_samp(col2) over(order by col1) var_samp1, var_samp(col2) over() var_samp2 from var_samp_numeric) order by 1;
--TEST: order by 2 column names
select trunc(var_samp, 2) from (select col2, col3, var_samp(all col4) over(order by col2, col3 asc) var_samp from var_samp_numeric) order by 1;
--TEST: order by more than 2 column names
select trunc(var_samp1, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(col6) over(order by col1, col2 desc, col3, col4 asc, col5, col6 desc) var_samp1, var_samp(col6) over() var_samp2 from var_samp_numeric) order by 1;
--TEST: order by columns not select trunc(var_samp, 2) from (selected
select trunc(var_samp1, 2) from (select col3, var_samp(distinct col2) over(order by col4, col6 desc, col2, col1 asc) var_samp1, var_samp(distinct col2) over() var_samp from var_samp_numeric) order by 1;
--TEST: order by 1 position
select trunc(var_samp, 2) from (select col5, var_samp(all col2) over(order by 1) var_samp from var_samp_numeric) order by 1;
--TEST: order by 3 positions
select trunc(var_samp, 2) from (select col3, col5, var_samp(col7) over(order by 1, 2 desc, 3 asc) var_samp from var_samp_numeric) order by 1;
--TEST: order by more than 3 positions
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(col6) over(order by 5, 3, 7, 2 asc, 1 desc, 6 desc, 4) var_samp from var_samp_numeric) order by 1;
--TEST: order by positions not existed
select trunc(var_samp, 2) from (select col5, var_samp(distinct col1) over(order by 2) var_samp from var_samp_numeric) order by 1;
select trunc(var_samp, 2) from (select col1, var_samp(all col3) over(order by 3, 4, 1 desc) var_samp, col5, col7 from var_samp_numeric) order by 1;
select trunc(var_samp, 2) from (select col3, col5, var_samp(col3) over(order by 5) var_samp from var_samp_numeric) order by 1;
select trunc(var_samp, 2) from (select col3, col5, var_samp(col5) over(order by 100) var_samp from var_samp_numeric) order by 1;
--TEST: order by column names and positions
select trunc(var_samp, 2) from (select col1, col2, col3, col4, col5, col6, col7, var_samp(col1) over(order by 1, col2 desc, 3, col4 asc, 5, col6 desc, 7) var_samp from var_samp_numeric) order by 1;
--TEST: OVER(PARTITION BY ORDER BY) clause
--TEST: partition by int
select trunc(var_samp, 2) from (select col1, col2, col3, var_samp(distinct col4) over(partition by col1 order by col2, col3) var_samp from var_samp_numeric) order by 1;
--TEST: partition by smallint
select trunc(var_samp, 2) from (select col2, col4, col5, var_samp(col5) over(partition by col2 order by col2, col4, col5 desc) var_samp from var_samp_numeric) order by 1;
--TEST: partition by bigint
select trunc(var_samp, 2) from (select col3, var_samp(all col7) over(partition by col3 order by col1, col2) var_samp, col5 from var_samp_numeric) order by 1;
--TEST: partition by numeric
select trunc(var_samp, 2) from (select col4, col1, var_samp(col4) over(partition by col4 order by col1, col2 desc) var_samp from var_samp_numeric) order by 1;
--TEST: partition by float
select trunc(var_samp, 2) from (select col5, col6, var_samp(distinct col2) over(partition by col5 asc order by col6 asc) var_samp from var_samp_numeric) order by 1;
--TEST: partition by double
select trunc(var_samp, 2) from (select col6, col1, col2, col3, var_samp(all col7) over(partition by col6 order by 5,4,3 desc,2,1) var_samp from var_samp_numeric) order by 1;
--TEST: partition by monetary
select trunc(var_samp, 2) from (select col7, col1, col2, col3, col4, col5, col6, col7, var_samp(distinct col7) over(partition by col7 order by 1 desc, col1, col2, col3 asc, 5, 6, col7 desc) var_samp from var_samp_numeric) order by 1;
--TEST: syntax error
select trunc(var_samp, 2) from (select col1, col2, var_samp(distinct col3) over(order by col1, col2 partition by col2) var_samp from var_samp_numeric;
drop table var_samp_numeric;
|
/*
Warnings:
- You are about to drop the column `archiveID` on the `Link` table. All the data in the column will be lost.
- You are about to drop the `Archive` table. If the table is not empty, all the data it contains will be lost.
- Added the required column `projectID` to the `Link` table without a default value. This is not possible if the table is not empty.
*/
-- DropForeignKey
ALTER TABLE "Link" DROP CONSTRAINT "Link_archiveID_fkey";
-- AlterTable
ALTER TABLE "Link" DROP COLUMN "archiveID",
ADD COLUMN "projectID" TEXT NOT NULL;
-- DropTable
DROP TABLE "Archive";
-- CreateTable
CREATE TABLE "Project" (
"id" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"name" TEXT NOT NULL,
"year" TEXT NOT NULL,
"madeAt" TEXT,
"builtWith" TEXT[],
"isArchive" BOOLEAN NOT NULL,
"isFeatured" BOOLEAN NOT NULL,
"description" TEXT NOT NULL,
"achievements" TEXT[],
"isOnGoing" BOOLEAN NOT NULL,
PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "ImageProject" (
"id" TEXT NOT NULL,
"url" TEXT NOT NULL,
"alt" TEXT,
"projectID" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
"isPrimary" BOOLEAN NOT NULL,
PRIMARY KEY ("id")
);
-- AddForeignKey
ALTER TABLE "ImageProject" ADD FOREIGN KEY ("projectID") REFERENCES "Project"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Link" ADD FOREIGN KEY ("projectID") REFERENCES "Project"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
/* leave this
l:see LICENSE file
g:utility
k:dir,list,command,parse,name,date,size,directory
v:140110\s.zaglio: bug near eng dt (solved but maybe not completelly)
v:131016.1030\s.zaglio: support and simplify sp__dir
t:sp__dir '%temp%\*.*',@dbg=2
*/
CREATE function fn__dir_parse_list(@line nvarchar(4000),@opt sysname)
returns @t table(
sdt sysname,
sfsize sysname null,
name nvarchar(446)
)
as
begin
declare @max_file_name_size int select @max_file_name_size=446
if @opt='I'
-- 10 20 30 40 50 60 70 80
-- 123456789.123456789.123456789.123456789.123456789.123456789.123456789.123456789.
-- 14/09/2010 15.34 1.106.500 FILENAME
-- 25/01/2010 12.27 <DIR> ADFS
-- select convert(datetime,'09/01/14 03:30:00PM')
insert @t(sdt,sfsize,name)
select
substring(@line,7,4)+'-'+substring(@line,4,2)+'-'+substring(@line,1,2)
+'T'
+substring(@line,13,2)+':'+substring(@line,16,2)+':00.000'
as sat,
ltrim(rtrim(replace(replace(substring(@line,20,16),'.',''),',','')))
as sfsize,
substring(@line,37,@max_file_name_size) [key]
else if @opt='E'
-- 10 20 30 40 50 60 70 80
-- 123456789.123456789.123456789.123456789.123456789.123456789.123456789.123456789.
-- 10/06/2011 04:39 PM <DIR> 1040
-- 12/31/2013 02:00 AM 137 tmp_3A2D662D_C46C_425F_8EBA_91635D98C83B
-- set language english
-- set language italian
-- Hijri: dd/mm/yyyy hh:mi:ss:mmmAM: this return a bad year
-- select convert(sysname,convert(datetime,'04:43:00PM'),8)
-- xp_cmdshell 'dir %temp%\*.*'
-- select convert(datetime,'12/24/13 04:43:00PM')
insert @t(sdt,sfsize,name)
select
/* substring(@line,4,2)+'/'+substring(@line,1,2)+'/'+substring(@line,9,2)
+' '
+convert(sysname,
convert(datetime,
substring(@line,13,2)+':'+
substring(@line,16,2)+':00'+
substring(@line,19,2)
)
)
*/
substring(@line,1,20) -- 140110\s.zaglio
as sdt, -- gg/mm/aa hh:mi:ss:mmmAM
ltrim(rtrim(replace(replace(substring(@line,21,18),'.',''),',',''))) sfsize,
substring(@line,40,@max_file_name_size) [key]
return
end -- fn__dir_parse_list |
LOAD TABLE "tpcds_sf1000"."reason" FROM ('tpcds-sf1000/reason/') EXTERNAL LOCATION "tpcds_sf1000"."sample_tpcds_qa_el";
|
<reponame>imajaydwivedi/Problem-Task---SQL-Server-Slowness<filename>Space Issues/Ola Log Backup.sql
EXECUTE DBA.[dbo].[DatabaseBackup]
@Databases = 'USER_DATABASES',
@Directory = 'E:\Backups',
@DirectoryStructure = '{DatabaseName}{DirectorySeparator}{BackupType}',
@AvailabilityGroupDirectoryStructure = '{DatabaseName}{DirectorySeparator}{BackupType}',
@FileName = '{DatabaseName}_{BackupType}_{Partial}_{CopyOnly}_{Year}{Month}{Day}_{Hour}{Minute}{Second}_{FileNumber}.{FileExtension}',
@AvailabilityGroupFileName = '{DatabaseName}_{BackupType}_{Partial}_{CopyOnly}_{Year}{Month}{Day}_{Hour}{Minute}{Second}_{FileNumber}.{FileExtension}',
@OverrideBackupPreference = 'Y',
@BackupType = 'LOG',
@ChangeBackupType = 'Y',
--@Verify = 'Y',
@CleanupTime = 24,
--@CheckSum = 'Y',
@Compress = 'Y',
@LogToTable = 'Y' |
# Problem Statement: https://www.hackerrank.com/challenges/revising-aggregations-the-count-function/problem
# Difficulty: Easy
# Score: 10
- MySQL query:
SELECT COUNT(NAME) FROM CITY
WHERE POPULATION > 100000;
|
<filename>HoaAccounting/HoaAccountingDb/Tables/Estoppels.sql
CREATE TABLE [dbo].[Estoppels]
(
[EstoppelId] [EstoppelId] identity(1,1) PRIMARY KEY,
[HouseNumber] [HouseNumber],
Amount money not null,
DepositedOn date NOT NULL,
TitleCompany varchar(130) NOT NULL,
[GLTransactionId] [GLTransactionId] null,
CONSTRAINT [FK_Estoppels_Lots] FOREIGN KEY ([HouseNumber]) REFERENCES Lots([HouseNumber])
)
|
-- 用户表.
CREATE TABLE users
(
id INTEGER PRIMARY KEY NOT NULL, -- 主键ID
name TEXT NOT NULL, -- 用户姓名
gender TEXT NOT NULL, -- 用户性别
birthday TEXT NOT NULL -- 用户生日
);
-- 用户血糖指标配置表.
CREATE TABLE user_blood_sugar_config
(
userId INTEGER PRIMARY KEY NOT NULL, -- 用户关联id, 主键
fpgMin REAL NOT NULL, -- 空腹血糖指标下限,低于该值为低血糖
fpgMax REAL NOT NULL, -- 空腹须糖指标上限,高于该值为高血糖
hpg2Min REAL NOT NULL, -- 餐后两小时血糖指标下限,低于该值为低血糖
hpg2Max REAL NOT NULL -- 餐后两小时血糖指标上限, 高于该值为高血糖
);
-- 用户药物配置表
CREATE TABLE user_medicine_config
(
id INTEGER PRIMARY KEY NOT NULL, -- 主键ID
userId INTEGER NOT NULL, -- 用户关联id, 主键
type TEXT NOT NULL, -- 药物类型,INS:胰岛素,PILL:降血糖药
name TEXT NOT NULL, -- 药物名称
color TEXT NOT NULL, -- 显示颜色
unit TEXT NOT NULL, -- 单位名称
deleted BOOLEAN NOT NULL -- 删除标志位.
);
-- 创建用户ID索引
CREATE INDEX medicine_config_user_id_index ON user_medicine_config (userId);
-- 创建删除标志位索引
CREATE INDEX medicine_config_deleted_index ON user_medicine_config (deleted);
-- 血糖检测周期记录表,基本以(1.注射胰岛素或药物干预, 2:进食, 3:2小时后或第二天空腹测试血糖为一个周期)
-- 周期开始与结束由用户决定
CREATE TABLE cycle_record
(
id INTEGER PRIMARY KEY NOT NULL, -- 主键id
userId INTEGER NOT NULL, -- 关联用户id
datetime TEXT, -- 周期所在时间,以周期内最后一次血糖记录时间为准
closed BOOLEAN NOT NULL, -- 该周期是否关闭,0:false, 1:true
comment TEXT -- 周期备注
);
-- 创建周期表用户id索引
CREATE INDEX cycle_record_user_id_index ON cycle_record (userId);
-- 用户id索引
-- 创建周期表周期时间索引
CREATE INDEX cycle_record_date_index ON cycle_record (datetime);
-- 时间索引
-- 创建药物干预记录表.
CREATE TABLE medicine_record_item
(
id INTEGER PRIMARY KEY NOT NULL, -- 主键ID
userId INTEGER NOT NULL, -- 冗余用户ID
cycleRecordId INTEGER NOT NULL, -- 关联周期ID
medicineId INTEGER NOT NULL, -- 药物ID
`usage` REAL NOT NULL, -- 药物用量
recordTime TEXT NOT NULL, -- 记录时间
extra BOOLEAN NOT NULL -- 是否进行额外药物补充
);
-- 创建周期id索引
CREATE INDEX medicine_record_item_cycle_record_id_index on medicine_record_item (cycleRecordId);
-- 创建记录时间索引
CREATE INDEX medicine_record_item_record_time_index on medicine_record_item (recordTime);
-- 创建额外药物补充索引
CREATE INDEX extra_index on medicine_record_item (extra);
-- 创建用户id索引
CREATE index medicine_record_item_user_id_index on medicine_record_item (userId);
-- 创建进食记录表.
CREATE TABLE food_record_item
(
id INTEGER PRIMARY KEY NOT NULL, -- 主键ID
userId INTEGER NOT NULL, -- 冗余用户ID
cycleRecordId INTEGER NOT NULL, -- 关联周期ID
foodInfo TEXT, -- 食物清单
comment TEXT, -- 进食备注
recordTime TEXT NOT NULL -- 记录时间
);
-- 创建周期id索引
CREATE INDEX food_record_item_cycle_record_id_index on food_record_item (cycleRecordId);
-- 创建记录时间索引
CREATE INDEX food_record_item_record_time_index on food_record_item (recordTime);
-- 创建用户id索引
CREATE index food_record_item_user_id_index on food_record_item (userId);
-- 创建血糖测试记录表
CREATE TABLE blood_sugar_record_item
(
id INTEGER PRIMARY KEY NOT NULL, -- 主键ID
userId INTEGER NOT NULL, -- 冗余用户ID
cycleRecordId INTEGER NOT NULL, -- 关联周期ID
bloodSugar REAL NOT NULL, -- 血糖
recordTime TEXT NOT NULL, -- 记录时间
fpg BOOLEAN NOT NULL -- 是否为空腹0:否,1:是
);
-- 创建周期id索引
CREATE INDEX blood_sugar_record_item_cycle_record_id_index on blood_sugar_record_item (cycleRecordId);
-- 创建记录时间索引
CREATE INDEX blood_sugar_record_item_record_time_index on blood_sugar_record_item (recordTime);
-- 创建空腹血糖标记索引
CREATE INDEX blood_sugar_record_item_record_FPG_index on blood_sugar_record_item (FPG);
-- 创建用户id索引
CREATE index blood_sugar_record_item_user_id_index on blood_sugar_record_item (userId); |
<filename>src/test/resources/tkt2767.test_4.sql
-- tkt2767.test
--
-- execsql {
-- INSERT INTO t1 SELECT x+32 FROM t1;
-- SELECT count(*), sum(x) FROM t1;
-- }
INSERT INTO t1 SELECT x+32 FROM t1;
SELECT count(*), sum(x) FROM t1; |
-- file:rangefuncs.sql ln:612 expect:true
select x from int8_tbl, extractq2(int8_tbl) f(x)
|
-- file:json.sql ln:432 expect:true
SELECT ia FROM json_populate_record(NULL::jsrec, '{"ia": 123}') q
|
<reponame>Shuttl-Tech/antlr_psql
-- file:inherit.sql ln:497 expect:true
select min(1-id) from matest0
|
-- Sync menutype for admin menu and set client_id correct
-- Note: This change had to be modified with Joomla 3.7.3 because the
-- original version made site menus disappear if there were menu types
-- "main" or "menu" defined for the site.
-- Step 1: If there is any user-defined menu and menu type "main" for the site
-- (client_id = 0), then change the menu type for the menu, any module and the
-- menu type to something very likely not being used yet and just within the
-- max. length of 24 characters.
UPDATE [#__menu]
SET [menutype] = 'main_is_reserved_133C585'
WHERE [client_id] = 0
AND [menutype] = 'main'
AND (SELECT COUNT([id]) FROM [#__menu_types] WHERE [client_id] = 0 AND [menutype] = 'main') > 0;
UPDATE [#__modules]
SET [params] = REPLACE([params],'"menutype":"main"','"menutype":"main_is_reserved_133C585"')
WHERE [client_id] = 0
AND (SELECT COUNT([id]) FROM [#__menu_types] WHERE [client_id] = 0 AND [menutype] = 'main') > 0;
UPDATE [#__menu_types]
SET [menutype] = 'main_is_reserved_133C585'
WHERE [client_id] = 0
AND [menutype] = 'main';
-- Step 2: What remains now are the main menu items, possibly with wrong
-- client_id if there was nothing hit by step 1 because there was no record in
-- the menu types table with client_id = 0.
UPDATE [#__menu]
SET [client_id] = 1
WHERE [menutype] = 'main';
-- Step 3: If we have menu items for the admin using menutype = "menu" and
-- having correct client_id = 1, we can be sure they belong to the admin menu
-- and so rename the menutype.
UPDATE [#__menu]
SET [menutype] = 'main'
WHERE [client_id] = 1
AND [menutype] = 'menu';
-- Step 4: If there is no user-defined menu type "menu" for the site, we can
-- assume that any menu items for that menu type belong to the admin.
-- Fix the client_id for those as it was done with the original version of this
-- schema update script here.
UPDATE [#__menu]
SET [menutype] = 'main',
[client_id] = 1
WHERE [menutype] = 'menu'
AND (SELECT COUNT([id]) FROM [#__menu_types] WHERE [client_id] = 0 AND [menutype] = 'menu') > 0;
-- Step 5: For the standard admin menu items of menutype "main" there is no record
-- in the menutype table on a clean Joomla installation. If there is one, it is a
-- mistake and it should be deleted. This is also the case with menu type "menu"
-- for the admin, for which we changed the menutype of the menu items in step 3.
DELETE FROM [#__menu_types]
WHERE [client_id] = 1
AND [menutype] IN ('main', 'menu');
-- End sync menutype for admin menu and set client_id correct
SET IDENTITY_INSERT #__extensions ON;
INSERT INTO [#__extensions] ([extension_id], [name], [type], [element], [folder], [client_id], [enabled], [access], [protected], [manifest_cache], [params], [custom_data], [system_data], [checked_out], [checked_out_time], [ordering], [state])
SELECT 462, 'plg_fields_calendar', 'plugin', 'calendar', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 463, 'plg_fields_checkboxes', 'plugin', 'checkboxes', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 464, 'plg_fields_color', 'plugin', 'color', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 465, 'plg_fields_editor', 'plugin', 'editor', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 466, 'plg_fields_imagelist', 'plugin', 'imagelist', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 467, 'plg_fields_integer', 'plugin', 'integer', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 468, 'plg_fields_list', 'plugin', 'list', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 469, 'plg_fields_media', 'plugin', 'media', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 470, 'plg_fields_radio', 'plugin', 'radio', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 471, 'plg_fields_sql', 'plugin', 'sql', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 472, 'plg_fields_text', 'plugin', 'text', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 473, 'plg_fields_textarea', 'plugin', 'textarea', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 474, 'plg_fields_url', 'plugin', 'url', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 475, 'plg_fields_user', 'plugin', 'user', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0
UNION ALL
SELECT 476, 'plg_fields_usergrouplist', 'plugin', 'usergrouplist', 'fields', 0, 1, 1, 0, '', '', '', '', 0, '1900-01-01 00:00:00', 0, 0;
SET IDENTITY_INSERT #__extensions OFF;
|
DROP MATERIALIZED VIEW IF EXISTS summary_award_view_old;
DROP MATERIALIZED VIEW IF EXISTS summary_transaction_geo_view_old;
DROP MATERIALIZED VIEW IF EXISTS summary_transaction_month_view_old;
DROP MATERIALIZED VIEW IF EXISTS summary_transaction_view_old;
DROP MATERIALIZED VIEW IF EXISTS summary_view_old;
DROP MATERIALIZED VIEW IF EXISTS summary_view_cfda_number_old;
DROP MATERIALIZED VIEW IF EXISTS summary_view_naics_codes_old;
DROP MATERIALIZED VIEW IF EXISTS summary_view_psc_codes_old;
DROP MATERIALIZED VIEW IF EXISTS universal_award_matview_old;
DROP MATERIALIZED VIEW IF EXISTS universal_transaction_matview_old; |
<reponame>smith750/kc
CREATE SEQUENCE NEGOTIATION_ACTIVITY_TYPE_S INCREMENT BY 1 START WITH 1 NOCACHE
/
|
<reponame>Marcfernic/Neptuno
CREATE DATABASE IF NOT EXISTS `facturas` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `facturas`;
-- MySQL dump 10.13 Distrib 5.5.16, for Win32 (x86)
--
-- Host: localhost Database: facturas
-- ------------------------------------------------------
-- Server version 5.5.20-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `detallesfacturas`
--
DROP TABLE IF EXISTS `detallesfacturas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `detallesfacturas` (
`IdPedido` int(11) NOT NULL,
`IdProducto` int(11) NOT NULL,
`PrecioUnidad` float DEFAULT NULL,
`Cantidad` int(11) DEFAULT NULL,
PRIMARY KEY (`IdPedido`,`IdProducto`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `detallesfacturas`
--
LOCK TABLES `detallesfacturas` WRITE;
/*!40000 ALTER TABLE `detallesfacturas` DISABLE KEYS */;
INSERT INTO `detallesfacturas` VALUES (10257,27,35.1,25),(10257,39,14.4,6),(10257,77,10.4,15),(10258,2,15.2,50),(10258,5,17,65),(10258,32,25.6,6),(10262,5,17,12),(10262,7,24,15),(10262,56,30.4,2),(10263,16,13.9,60),(10263,24,3.6,28),(10263,30,20.7,60),(10263,74,8,36),(10264,2,15.2,35),(10264,41,7.7,25),(10266,12,30.4,12),(10267,40,14.7,50),(10267,59,44,70),(10267,76,14.4,15),(10269,33,2,60),(10269,72,27.8,20),(10270,36,15.2,30),(10270,43,36.8,25),(10272,20,64.8,6),(10272,31,10,40),(10272,72,27.8,24),(10273,10,24.8,24),(10273,31,10,15),(10273,33,2,20),(10273,40,14.7,60),(10273,76,14.4,33),(10278,44,15.5,16),(10278,59,44,15),(10278,63,35.1,8),(10278,73,12,25),(10279,17,31.2,15),(10280,24,3.6,12),(10280,55,19.2,20),(10280,75,6.2,30),(10284,27,35.1,15),(10284,44,15.5,21),(10284,60,27.2,20),(10284,67,11.2,5),(10285,1,14.4,45),(10285,40,14.7,40),(10285,53,26.2,36),(10286,35,14.4,100),(10286,62,39.4,40),(10294,1,14.4,18),(10294,17,31.2,15),(10294,43,36.8,15),(10294,60,27.2,21),(10294,75,6.2,6),(10298,2,15.2,40),(10298,36,15.2,40),(10298,59,44,30),(10298,62,39.4,15),(10309,4,17.6,20),(10309,6,20,30),(10309,42,11.2,2),(10309,43,36.8,20),(10309,71,17.2,3),(10313,36,15.2,12),(10314,32,25.6,40),(10314,58,10.6,30),(10314,62,39.4,25),(10316,41,7.7,10),(10316,62,39.4,70),(10320,71,17.2,30),(10324,16,13.9,21),(10324,35,14.4,70),(10324,46,9.6,30),(10324,59,44,40),(10324,63,35.1,80),(10327,2,15.2,25),(10327,11,16.8,50),(10327,30,20.7,35),(10327,58,10.6,30),(10331,54,5.9,15),(10333,14,18.6,10),(10333,21,8,10),(10333,71,17.2,40),(10335,2,15.2,7),(10335,31,10,25),(10335,32,25.6,6),(10335,51,42.4,48),(10337,23,7.2,40),(10337,26,24.9,24),(10337,36,15.2,20),(10337,37,20.8,28),(10337,72,27.8,25),(10340,18,50,20),(10340,41,7.7,12),(10340,43,36.8,40),(10342,2,15.2,24),(10342,31,10,56),(10342,36,15.2,40),(10342,55,19.2,40),(10343,64,26.6,50),(10343,68,10,4),(10343,76,14.4,15),(10344,4,17.6,35),(10344,8,32,70),(10345,8,32,70),(10345,19,7.3,80),(10345,42,11.2,9),(10346,17,31.2,36),(10346,56,30.4,20),(10351,38,210.8,20),(10351,41,7.7,13),(10351,44,15.5,77),(10351,65,16.8,10),(10361,39,14.4,54),(10361,60,27.2,55),(10362,25,11.2,50),(10362,51,42.4,20),(10362,54,5.9,24),(10368,21,8,5),(10368,28,36.4,13),(10368,57,15.6,25),(10368,64,26.6,35),(10373,58,10.6,80),(10373,71,17.2,50),(10378,71,17.2,6),(10380,30,20.7,18),(10380,53,26.2,20),(10380,60,27.2,6),(10380,70,12,30),(10382,5,17,32),(10382,18,50,9),(10382,29,99,14),(10382,33,2,60),(10382,74,8,50),(10384,20,64.8,28),(10384,60,27.2,15),(10390,31,10,60),(10390,35,14.4,40),(10390,46,9.6,45),(10390,72,27.8,24),(10393,2,15.2,25),(10393,14,18.6,42),(10393,25,11.2,7),(10393,26,24.9,70),(10393,31,10,32),(10395,46,9.6,28),(10395,53,26.2,70),(10395,69,28.8,8),(10396,23,7.2,40),(10396,71,17.2,60),(10396,72,27.8,21),(10398,35,14.4,30),(10398,55,19.2,120),(10401,30,20.7,18),(10401,56,30.4,70),(10401,65,16.8,20),(10401,71,17.2,60),(10402,23,7.2,60),(10402,63,35.1,65),(10403,16,13.9,21),(10403,48,10.2,70),(10412,14,18.6,20),(10416,19,7.3,20),(10416,53,26.2,10),(10416,57,15.6,20),(10418,2,15.2,60),(10418,47,7.6,55),(10418,61,22.8,16),(10418,74,8,15),(10429,50,13,40),(10429,63,35.1,35),(10430,17,31.2,45),(10430,21,8,50),(10430,56,30.4,30),(10430,59,44,70),(10434,11,16.8,6),(10434,76,14.4,18),(10437,53,26.2,15),(10440,2,15.2,45),(10440,16,13.9,49),(10440,29,99,24),(10440,61,22.8,90),(10442,11,16.8,30),(10442,54,5.9,80),(10442,66,13.6,60),(10444,17,31.2,10),(10444,26,24.9,15),(10444,35,14.4,8),(10444,41,7.7,30),(10445,39,14.4,6),(10445,54,5.9,15),(10451,55,19.2,120),(10451,64,26.6,35),(10451,65,16.8,28),(10451,77,10.4,55),(10452,28,36.4,15),(10452,44,15.5,100),(10455,39,14.4,20),(10455,53,26.2,50),(10455,61,22.8,25),(10455,71,17.2,30),(10460,68,10,21),(10460,75,6.2,4),(10469,2,15.2,40),(10469,16,13.9,35),(10469,44,15.5,2),(10470,18,50,30),(10470,23,7.2,15),(10470,64,26.6,8),(10476,55,19.2,2),(10476,70,12,12),(10479,38,210.8,30),(10479,53,26.2,28),(10479,59,44,60),(10479,64,26.6,30),(10483,34,11.2,35),(10483,77,10.4,30),(10486,11,16.8,5),(10486,51,42.4,25),(10486,74,8,16),(10488,59,44,30),(10488,73,12,20),(10490,59,44,60),(10490,68,10,30),(10490,75,6.2,36),(10497,56,30.4,14),(10497,72,27.8,25),(10497,77,10.4,25),(10498,24,4.5,14),(10498,40,18.4,5),(10498,42,14,30),(10503,14,23.25,70),(10503,65,21.05,20),(10504,2,19,12),(10504,21,10,12),(10504,53,32.8,10),(10504,61,28.5,25),(10510,29,123.79,36),(10510,75,7.75,36),(10511,4,22,50),(10511,7,30,50),(10511,8,40,10),(10514,20,81,39),(10514,28,45.6,35),(10514,56,38,70),(10514,65,21.05,39),(10514,75,7.75,50),(10515,9,97,16),(10515,16,17.45,50),(10515,27,43.9,120),(10515,33,2.5,16),(10515,60,34,84),(10516,18,62.5,25),(10516,41,9.65,80),(10516,42,14,20),(10522,1,18,40),(10522,8,40,24),(10522,30,25.89,20),(10522,40,18.4,25),(10524,10,31,2),(10524,30,25.89,10),(10524,43,46,60),(10524,54,7.45,15),(10525,36,19,30),(10525,40,18.4,15),(10526,1,18,8),(10526,13,6,10),(10526,56,38,30),(10527,4,22,50),(10527,36,19,30),(10533,4,22,50),(10533,72,34.8,24),(10533,73,15,24),(10534,30,25.89,10),(10534,40,18.4,10),(10534,54,7.45,10),(10536,12,38,15),(10536,31,12.5,20),(10536,33,2.5,30),(10536,60,34,35),(10540,3,10,60),(10540,26,31.23,40),(10540,38,263.5,30),(10540,68,12.5,35),(10549,31,12.5,55),(10549,45,9.5,100),(10549,51,53,48),(10552,69,36,18),(10552,75,7.75,30),(10553,11,21,15),(10553,16,17.45,14),(10553,22,21,24),(10553,31,12.5,30),(10553,35,18,6),(10555,14,23.25,30),(10555,19,9.2,35),(10555,24,4.5,18),(10555,51,53,20),(10555,56,38,40),(10557,64,33.25,30),(10557,75,7.75,20),(10560,30,25.89,20),(10560,62,49.3,15),(10561,44,19.45,10),(10561,51,53,50),(10564,17,39,16),(10564,31,12.5,6),(10564,55,24,25),(10567,31,12.5,60),(10567,51,53,3),(10567,59,55,40),(10569,31,12.5,35),(10569,76,18,30),(10571,14,23.25,11),(10571,42,14,28),(10572,16,17.45,12),(10572,32,32,10),(10572,40,18.4,50),(10572,75,7.75,15),(10583,29,123.79,10),(10583,60,34,24),(10583,69,36,10),(10588,18,62.5,40),(10588,42,14,100),(10592,15,15.5,25),(10592,26,31.23,5),(10593,20,81,21),(10593,69,36,20),(10593,76,18,4),(10595,35,18,30),(10595,61,28.5,120),(10595,69,36,65),(10596,56,38,5),(10596,63,43.9,24),(10596,75,7.75,30),(10598,27,43.9,50),(10598,71,21.5,9),(10601,13,6,60),(10601,59,55,35),(10603,22,21,48),(10603,49,20,25),(10607,7,30,45),(10607,17,39,100),(10607,33,2.5,14),(10607,40,18.4,42),(10607,72,34.8,12),(10612,10,31,70),(10612,36,19,55),(10612,49,20,18),(10612,60,34,40),(10612,76,18,80),(10613,13,6,8),(10613,75,7.75,40),(10623,14,23.25,21),(10623,19,9.2,15),(10623,21,10,25),(10623,24,4.5,3),(10623,35,18,30),(10626,53,32.8,12),(10626,60,34,20),(10626,71,21.5,20),(10627,62,49.3,15),(10627,73,15,35),(10633,12,38,36),(10633,13,6,13),(10633,26,31.23,35),(10633,62,49.3,80),(10636,4,22,25),(10636,58,13.25,6),(10641,2,19,50),(10641,40,18.4,60),(10646,1,18,15),(10646,10,31,18),(10646,71,21.5,30),(10646,77,13,35),(10653,16,17.45,30),(10653,60,34,20),(10654,4,22,12),(10654,39,18,20),(10654,54,7.45,6),(10657,15,15.5,50),(10657,41,9.65,24),(10657,46,12,45),(10657,47,9.5,10),(10657,56,38,45),(10657,60,34,30),(10658,21,10,60),(10658,40,18.4,70),(10658,60,34,55),(10658,77,13,70),(10661,39,18,3),(10661,58,13.25,49),(10663,40,18.4,30),(10663,42,14,30),(10663,51,53,20),(10667,69,36,45),(10667,71,21.5,14),(10670,23,9,32),(10670,46,12,60),(10670,67,14,25),(10670,73,15,50),(10670,75,7.75,25),(10672,38,263.5,15),(10672,71,21.5,12),(10675,14,23.25,30),(10675,53,32.8,10),(10675,58,13.25,30),(10678,12,38,100),(10678,33,2.5,30),(10678,41,9.65,120),(10678,54,7.45,30),(10687,9,97,50),(10687,29,123.79,10),(10687,36,19,6),(10689,1,18,35),(10691,1,18,30),(10691,29,123.79,40),(10691,43,46,40),(10691,44,19.45,24),(10691,62,49.3,48),(10693,9,97,6),(10693,54,7.45,60),(10693,69,36,30),(10693,73,15,15),(10694,7,30,90),(10694,59,55,25),(10694,70,15,50),(10696,17,39,20),(10696,46,12,18),(10698,11,21,15),(10698,17,39,8),(10698,29,123.79,12),(10698,65,21.05,65),(10698,70,15,8),(10700,1,18,5),(10700,34,14,12),(10700,68,12.5,40),(10700,71,21.5,60),(10701,59,55,42),(10701,71,21.5,20),(10701,76,18,35),(10703,2,19,5),(10703,59,55,35),(10703,73,15,35),(10705,31,12.5,20),(10705,32,32,4),(10711,19,9.2,12),(10711,41,9.65,42),(10711,53,32.8,120),(10712,53,32.8,3),(10712,56,38,30),(10713,10,31,18),(10713,26,31.23,30),(10713,45,9.5,110),(10713,46,12,24),(10714,2,19,30),(10714,17,39,27),(10714,47,9.5,50),(10714,56,38,18),(10714,58,13.25,12),(10715,10,31,21),(10715,71,21.5,30),(10717,21,10,32),(10717,54,7.45,15),(10717,69,36,25),(10721,44,19.45,50),(10722,2,19,3),(10722,31,12.5,50),(10722,68,12.5,45),(10722,75,7.75,42),(10723,26,31.23,15),(10730,16,17.45,15),(10730,31,12.5,3),(10730,65,21.05,10),(10732,76,18,20),(10733,14,23.25,16),(10733,28,45.6,20),(10733,52,7,25),(10736,65,21.05,40),(10736,75,7.75,20),(10740,28,45.6,5),(10740,35,18,35),(10740,45,9.5,40),(10740,56,38,14),(10741,2,19,15),(10745,18,62.5,24),(10745,44,19.45,16),(10745,59,55,45),(10745,72,34.8,7),(10748,23,9,44),(10748,40,18.4,40),(10748,56,38,28),(10750,14,23.25,5),(10750,45,9.5,40),(10750,59,55,25),(10755,47,9.5,30),(10755,56,38,30),(10755,57,19.5,14),(10755,69,36,25),(10757,34,14,30),(10757,59,55,7),(10757,62,49.3,30),(10757,64,33.25,24),(10761,25,14,35),(10761,75,7.75,18),(10762,39,18,16),(10762,47,9.5,30),(10762,51,53,28),(10762,56,38,60),(10764,3,10,20),(10764,39,18,130),(10765,65,21.05,80),(10771,71,21.5,16),(10772,29,123.79,18),(10772,59,55,25),(10773,17,39,33),(10773,31,12.5,70),(10773,75,7.75,7),(10774,31,12.5,2),(10774,66,17,50),(10776,31,12.5,16),(10776,42,14,12),(10776,45,9.5,27),(10776,51,53,120),(10778,41,9.65,10),(10781,54,7.45,3),(10781,56,38,20),(10781,74,10,35),(10788,19,9.2,50),(10788,75,7.75,40),(10791,29,123.79,14),(10791,41,9.65,20),(10795,16,17.45,65),(10795,17,39,35),(10796,26,31.23,21),(10796,44,19.45,10),(10796,64,33.25,35),(10796,69,36,24),(10815,33,2.5,16),(10820,56,38,30),(10824,41,9.65,12),(10824,70,15,9),(10827,10,31,15),(10827,39,18,21),(10836,22,21,52),(10836,35,18,6),(10836,57,19.5,24),(10836,60,34,60),(10836,64,33.25,30),(10837,13,6,6),(10837,40,18.4,25),(10837,47,9.5,40),(10837,76,18,21),(10845,23,9,70),(10845,35,18,25),(10845,42,14,42),(10845,58,13.25,60),(10845,64,33.25,48),(10847,1,18,80),(10847,19,9.2,12),(10847,37,26,60),(10847,45,9.5,36),(10847,60,34,45),(10847,71,21.5,55),(10852,2,19,15),(10852,17,39,6),(10852,62,49.3,50),(10854,10,31,100),(10854,13,6,65),(10857,3,10,30),(10857,26,31.23,35),(10857,29,123.79,10),(10859,24,4.5,40),(10859,54,7.45,35),(10859,64,33.25,30),(10861,17,39,42),(10861,18,62.5,20),(10861,21,10,40),(10861,33,2.5,35),(10861,62,49.3,3),(10862,11,21,25),(10862,52,7,8),(10863,1,18,20),(10863,58,13.25,12),(10865,38,263.5,60),(10865,39,18,80),(10866,2,19,21),(10866,24,4.5,6),(10866,30,25.89,40),(10870,35,18,3),(10870,51,53,2),(10871,6,25,50),(10871,16,17.45,12),(10871,17,39,16),(10875,19,9.2,25),(10875,47,9.5,21),(10875,49,20,15),(10876,46,12,21),(10876,64,33.25,20),(10878,20,81,20),(10880,23,9,30),(10880,61,28.5,30),(10880,70,15,50),(10882,42,14,25),(10882,49,20,20),(10882,54,7.45,32),(10889,11,21,40),(10889,38,263.5,40),(10891,30,25.89,15),(10894,13,6,28),(10894,69,36,50),(10894,75,7.75,120),(10895,24,4.5,110),(10895,39,18,45),(10895,40,18.4,91),(10895,60,34,100),(10897,29,123.79,80),(10897,30,25.89,36),(10901,41,9.65,30),(10901,71,21.5,30),(10902,55,24,30),(10902,62,49.3,6),(10904,58,13.25,15),(10904,62,49.3,35),(10912,11,21,40),(10912,29,123.79,60),(10924,10,31,20),(10924,28,45.6,30),(10924,75,7.75,6),(10929,21,10,60),(10929,75,7.75,49),(10929,77,13,15),(10932,16,17.45,30),(10932,62,49.3,14),(10932,72,34.8,16),(10932,75,7.75,20),(10934,6,25,20),(10938,13,6,20),(10938,43,46,24),(10938,60,34,49),(10938,71,21.5,35),(10940,7,30,8),(10940,13,6,20),(10941,31,12.5,44),(10941,62,49.3,30),(10941,68,12.5,80),(10941,72,34.8,50),(10955,75,7.75,12),(10957,30,25.89,30),(10957,35,18,40),(10957,64,33.25,8),(10960,24,4.5,10),(10960,41,9.65,24),(10962,7,30,45),(10962,13,6,77),(10962,53,32.8,20),(10962,69,36,9),(10962,76,18,44),(10968,12,38,30),(10968,24,4.5,30),(10968,64,33.25,4),(10976,28,45.6,20),(10977,39,18,30),(10977,47,9.5,30),(10977,51,53,10),(10977,63,43.9,20),(10979,7,30,18),(10979,12,38,20),(10979,24,4.5,80),(10979,27,43.9,30),(10979,31,12.5,24),(10979,63,43.9,35),(10980,75,7.75,40),(10983,13,6,84),(10983,57,19.5,15),(10984,16,17.45,55),(10984,24,4.5,20),(10984,36,19,40),(10985,16,17.45,36),(10985,18,62.5,8),(10985,32,32,35),(10988,7,30,60),(10988,62,49.3,40),(10990,21,10,65),(10990,34,14,60),(10990,55,24,65),(10990,61,28.5,66),(10991,2,19,50),(10991,70,15,20),(10991,76,18,90),(10993,29,123.79,50),(10993,41,9.65,35),(10996,42,14,40),(11000,4,22,25),(11000,24,4.5,30),(11000,77,13,30),(11001,7,30,60),(11001,22,21,25),(11001,46,12,25),(11001,55,24,6),(11002,13,6,56),(11002,35,18,15),(11002,42,14,24),(11002,55,24,40),(11008,28,45.6,70),(11008,34,14,90),(11008,71,21.5,21),(11012,19,9.2,50),(11012,60,34,36),(11012,71,21.5,60),(11017,3,10,25),(11017,59,55,110),(11017,70,15,30),(11021,2,19,11),(11021,20,81,15),(11021,26,31.23,63),(11021,51,53,44),(11021,72,34.8,35),(11025,1,18,10),(11025,13,6,20),(11030,2,19,100),(11030,5,21.35,70),(11030,29,123.79,60),(11030,59,55,100),(11031,1,18,45),(11031,13,6,80),(11031,24,4.5,21),(11031,64,33.25,20),(11031,71,21.5,16),(11032,36,19,35),(11032,38,263.5,25),(11032,59,55,30),(11050,76,18,50),(11055,24,4.5,15),(11055,25,14,15),(11055,51,53,20),(11055,57,19.5,20),(11063,34,14,30),(11063,40,18.4,40),(11063,41,9.65,30),(11064,17,39,77),(11064,41,9.65,12),(11064,53,32.8,25),(11064,55,24,4),(11064,68,12.5,55),(11066,16,17.45,3),(11066,19,9.2,42),(11066,34,14,35),(11070,1,18,40),(11070,2,19,20),(11070,16,17.45,30),(11070,31,12.5,20),(11072,2,19,8),(11072,41,9.65,40),(11072,50,16.25,22),(11072,64,33.25,130),(10273,1,20,10),(11076,6,25,20),(11076,14,23.25,20),(11076,19,9.2,10),(11077,2,19,24),(11077,3,10,4),(11077,4,22,1),(11077,6,25,1),(11077,7,30,1),(11077,8,40,2),(11077,10,31,1),(11077,12,38,2),(11077,13,6,4),(11077,14,23.25,1),(11077,16,17.45,2),(11077,20,81,1),(11077,23,9,2),(11077,32,32,1),(11077,39,18,2),(11077,41,9.65,3),(11077,46,12,3),(11077,52,7,2),(11077,55,24,2),(11077,60,34,2),(11077,64,33.25,2),(11077,66,17,1),(11077,73,15,2),(11077,75,7.75,4),(11077,77,13,2);
/*!40000 ALTER TABLE `detallesfacturas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `facturas`
--
DROP TABLE IF EXISTS `facturas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `facturas` (
`IdPedido` int(11) NOT NULL,
`FechaPedido` date DEFAULT NULL,
`Cliente` varchar(80) DEFAULT NULL,
`DireccionCliente` varchar(120) DEFAULT NULL,
`CiudadCliente` varchar(30) DEFAULT NULL,
`RegionCliente` varchar(30) DEFAULT NULL,
`CodPostalCliente` varchar(20) DEFAULT NULL,
`PaisCliente` varchar(30) DEFAULT NULL,
PRIMARY KEY (`IdPedido`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `facturas`
--
LOCK TABLES `facturas` WRITE;
/*!40000 ALTER TABLE `facturas` DISABLE KEYS */;
INSERT INTO `facturas` VALUES (10257,'2010-03-16','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10258,'2010-03-17','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10262,'2010-03-22','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10263,'2010-03-23','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10264,'2010-03-24','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10266,'2010-03-26','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10267,'2010-03-29','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10269,'2010-03-31','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10270,'2010-04-01','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10272,'2010-04-02','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10273,'2010-04-05','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10278,'2010-04-12','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10279,'2010-04-13','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10280,'2010-04-14','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10284,'2010-04-19','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10285,'2010-04-20','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10286,'2010-04-21','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10294,'2010-04-30','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10298,'2010-05-05','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10309,'2010-05-19','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10313,'2010-05-24','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10314,'2010-05-25','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10316,'2010-05-27','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10320,'2010-06-03','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10324,'2010-06-08','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10327,'2010-06-11','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10331,'2010-06-16','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10333,'2010-06-18','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10335,'2010-06-22','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10337,'2010-06-24','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10340,'2010-06-29','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10342,'2010-06-30','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10343,'2010-06-30','<NAME>','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10344,'2010-07-01','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10345,'2010-07-04','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10346,'2010-07-05','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10351,'2010-07-11','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10361,'2010-07-22','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10362,'2010-07-25','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10368,'2010-07-29','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10373,'2010-08-05','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10378,'2010-08-10','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10380,'2010-08-12','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10382,'2010-08-13','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10384,'2010-08-16','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10390,'2010-08-23','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10393,'2010-08-25','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10395,'2010-08-26','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10396,'2010-08-27','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10398,'2010-08-30','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10401,'2010-09-01','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10402,'2010-09-02','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10403,'2010-09-03','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10412,'2010-09-13','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10416,'2010-09-16','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10418,'2010-09-17','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10429,'2010-09-29','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10430,'2010-09-30','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10434,'2010-10-03','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10437,'2010-10-05','<NAME>kku','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10440,'2010-10-10','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10442,'2010-10-11','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10444,'2010-10-12','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10445,'2010-10-13','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10451,'2010-10-19','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10452,'2010-10-20','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10455,'2010-10-24','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10460,'2010-10-28','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10469,'2010-11-10','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10470,'2010-11-11','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10476,'2010-11-17','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10479,'2010-11-19','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10483,'2010-11-24','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10486,'2010-11-26','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10488,'2010-11-27','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10490,'2010-11-30','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10497,'2010-12-04','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10498,'2010-12-07','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10503,'2010-12-11','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10504,'2010-12-11','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10510,'2010-12-18','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10511,'2010-12-18','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10514,'2010-12-22','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10515,'2010-12-23','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10516,'2010-12-24','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10522,'2010-12-30','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10524,'2011-01-01','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10525,'2011-01-02','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10526,'2011-01-05','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10527,'2011-01-05','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10533,'2011-01-12','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10534,'2011-01-12','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10536,'2011-01-14','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10540,'2011-01-19','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10549,'2011-01-27','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10552,'2011-01-29','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10553,'2011-01-30','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10555,'2011-02-02','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10557,'2011-02-03','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10560,'2011-02-06','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10561,'2011-02-06','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10564,'2011-02-10','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10567,'2011-02-12','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10569,'2011-02-16','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10571,'2011-02-17','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10572,'2011-02-18','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10583,'2011-02-28','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10588,'2011-03-03','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10592,'2011-03-08','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10593,'2011-03-09','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10595,'2011-03-10','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10596,'2011-03-11','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10598,'2011-03-14','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10601,'2011-03-16','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10603,'2011-03-18','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10607,'2011-03-22','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10612,'2011-03-28','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10613,'2011-03-29','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10623,'2011-04-07','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10626,'2011-04-11','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10627,'2011-04-11','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10633,'2011-04-15','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10636,'2011-04-19','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10641,'2011-04-22','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10646,'2011-04-27','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10653,'2011-05-02','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10654,'2011-05-02','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10657,'2011-05-04','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10658,'2011-05-05','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10661,'2011-05-09','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10663,'2011-05-10','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10667,'2011-05-12','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10670,'2011-05-16','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10672,'2011-05-17','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10675,'2011-05-19','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10678,'2011-05-23','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10687,'2011-05-30','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10689,'2011-06-01','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10691,'2011-06-03','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10693,'2011-06-06','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10694,'2011-06-06','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10696,'2011-06-08','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10698,'2011-06-09','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10700,'2011-06-10','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10701,'2011-06-13','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10703,'2011-06-14','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10705,'2011-06-15','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10711,'2011-06-21','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10712,'2011-06-21','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10713,'2011-06-22','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10714,'2011-06-22','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10715,'2011-06-23','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10717,'2011-06-24','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10721,'2011-06-29','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10722,'2011-06-29','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10723,'2011-06-30','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10730,'2011-07-05','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10732,'2011-07-06','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10733,'2011-07-07','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10736,'2011-07-11','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10740,'2011-07-13','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10741,'2011-07-14','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10745,'2011-07-18','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10748,'2011-07-20','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10750,'2011-07-21','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10755,'2011-07-26','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10757,'2011-07-27','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10761,'2011-08-02','Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10762,'2011-08-02','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10764,'2011-08-03','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10765,'2011-08-04','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10771,'2011-08-10','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10772,'2011-08-10','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10773,'2011-08-11','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10774,'2011-08-11','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10776,'2011-08-15','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10778,'2011-08-16','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10781,'2011-08-17','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(10788,'2011-08-22','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10791,'2011-08-23','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10795,'2011-08-24','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10796,'2011-08-25','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10815,'2011-09-05','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10820,'2011-09-07','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10824,'2011-09-09','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10827,'2011-09-12','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10836,'2011-09-16','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10837,'2011-09-16','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10845,'2011-09-21','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10847,'2011-09-22','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10852,'2011-09-26','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10854,'2011-09-27','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10857,'2011-09-28','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10859,'2011-09-29','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10861,'2011-09-30','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10862,'2011-09-30','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10863,'2011-10-02','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10865,'2011-10-02','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10866,'2011-10-03','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10870,'2011-10-04','White Clover Markets','305 - 14th Ave. S.\r\nSuite 3B','Seattle','WA','98128','Estados Unidos'),(10871,'2011-10-05','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10875,'2011-10-06','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10876,'2011-10-09','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10878,'2011-10-10','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10880,'2011-10-10','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10882,'2011-10-11','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10889,'2011-10-16','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10891,'2011-10-17','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10894,'2011-10-18','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10895,'2011-10-18','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10897,'2011-10-19','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10901,'2011-10-23','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10902,'2011-10-23','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10904,'2011-10-24','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(10912,'2011-10-26','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10924,'2011-11-04','Berglunds snabbköp','Berguvsvägen 8','Luleå',NULL,'S-958 22','Suecia'),(10929,'2011-11-05','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(10932,'2011-11-06','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10934,'2011-11-09','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(10938,'2011-11-10','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10940,'2011-11-11','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(10941,'2011-11-11','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10955,'2011-11-17','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10957,'2011-11-18','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10960,'2011-11-19','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10962,'2011-11-19','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10968,'2011-11-23','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10976,'2011-11-25','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(10977,'2011-11-26','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10979,'2011-11-26','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10980,'2011-11-27','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10983,'2011-11-27','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10984,'2011-11-30','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(10985,'2011-11-30','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(10988,'2011-11-30','Rattlesnake Canyon Grocery','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(10990,'2011-12-01','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(10991,'2011-12-01','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(10993,'2011-12-01','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(10996,'2011-12-02','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(11000,'2011-12-06','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(11001,'2011-12-06','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(11002,'2011-12-06','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(11008,'2011-12-08','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(11012,'2011-12-09','Frankenversand','Berliner Platz 43','München',NULL,'80805','Alemania'),(11017,'2011-12-13','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(11021,'2011-12-14','QUICK-Stop','Taucherstraße 10','Cunewalde',NULL,'01307','Alemania'),(11025,'2011-12-15','<NAME>','Torikatu 38','Oulu',NULL,'90110','Finlandia'),(11030,'2011-12-17','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(11031,'2011-12-17','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(11032,'2011-12-17','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(11050,'2011-12-27','Folk och fä HB','Åkergatan 24','Bräcke',NULL,'S-844 67','Suecia'),(11055,'2011-12-28','HILARIoN-Abastos','Carrera 22 con Ave. Carlos Soublette #8-35','San Cristobal','Tachira','5022','Venezuela'),(11063,'2011-12-30','Hungry Owl All-Night Grocers','8 Johnstown Road','Cork','Co. Cork',NULL,'Irlanda'),(11064,'2012-01-01','Save-a-lot Markets','187 Suffolk Ln.','Boise','ID','83720','Estados Unidos'),(11066,'2012-01-01','White Clover Markets','1029 - 12th Ave. S.','Seattle','WA','98124','Estados Unidos'),(11070,'2012-01-05','Lehmanns Marktstand','Magazinweg 7','Frankfurt a.M. ',NULL,'60528','Alemania'),(11072,'2012-01-05','<NAME>','Kirchgasse 6','Graz',NULL,'8010','Austria'),(11076,'2012-01-06','Bon app\'','12, rue des Bouchers','Marseille',NULL,'13008','Francia'),(11077,'2012-01-06','<NAME>','2817 Milton Dr.','Albuquerque','NM','87110','Estados Unidos'),(11078,'2013-01-05','Bon app\'','',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `facturas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `productos`
--
DROP TABLE IF EXISTS `productos`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `productos` (
`IdProducto` int(11) NOT NULL,
`NombreProducto` varchar(80) DEFAULT NULL,
`PrecioUnidad` float DEFAULT NULL,
`Suspendido` char(1) DEFAULT NULL,
PRIMARY KEY (`IdProducto`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `productos`
--
LOCK TABLES `productos` WRITE;
/*!40000 ALTER TABLE `productos` DISABLE KEYS */;
INSERT INTO `productos` VALUES (1,'<NAME>',18,'0'),(2,'<NAME>',19,'0'),(3,'Sirope de regaliz',10,'0'),(4,'<NAME> del chef Anton',22,'0'),(5,'Me<NAME> del chef Anton',21.35,'1'),(6,'Mermelada de grosellas de la abuela',25,'0'),(7,'Peras secas organicas del tio Bob',30,'0'),(8,'Salsa de arandanos Northwoods',40,'0'),(9,'<NAME>',97,'1'),(10,'Pez espada',31,'0'),(11,'Ques<NAME>',21,'0'),(12,'Queso Man<NAME>',38,'0'),(13,'<NAME>',6,'0'),(14,'Cuajada de judias',23.25,'0'),(15,'Salsa de soja baja en sodio',15.5,'0'),(16,'Postre de merengue Pavlova',17.45,'0'),(17,'Cordero <NAME>',39,'1'),(18,'Langostinos tigre Carnarvon',62.5,'0'),(19,'Pastas de te de chocolate',9.2,'0'),(20,'Mer<NAME>',81,'0'),(21,'B<NAME>',10,'0'),(22,'Pan de centeno crujiente estilo Gustaf\'s',21,'0'),(23,'Pan fino',9,'0'),(24,'Refresco Guarana Fantastica',4.5,'1'),(25,'Crema de chocolate y nueces NuNuCa',14,'0'),(26,'Ositos de goma Gumbär',31.23,'0'),(27,'Chocolate Schoggi',43.9,'0'),(28,'Col fermentada Rössle',45.6,'1'),(29,'<NAME>¼ringer',123.79,'1'),(30,'Arenque blanco del noroeste',25.89,'0'),(31,'Queso <NAME>',12.5,'0'),(32,'Queso <NAME>',32,'0'),(33,'Queso de cabra',2.5,'0'),(34,'Cerveza Sasquatch',14,'0'),(35,'Cerveza negra Steeleye',18,'0'),(36,'Escabeche de arenque',19,'0'),(37,'Salmon ahumado Gravad',26,'0'),(38,'Vino Côte de Blaye',263.5,'0'),(39,'Licor verde Chartreuse',18,'0'),(40,'Carne de cangrejo de Boston',18.4,'0'),(41,'Crema de almejas estilo Nueva Inglaterra',9.65,'0'),(42,'Tallarines de Singapur',14,'1'),(43,'Cafe de Malasia',46,'0'),(44,'Azucar negra Malacca',19.45,'0'),(45,'Arenque ahumado',9.5,'0'),(46,'Arenque salado',12,'0'),(47,'Galletas Zaanse',9.5,'0'),(48,'Chocolate holandes',12.75,'0'),(49,'Regaliz',20,'0'),(50,'Chocolate blanco',16.25,'0'),(51,'Manzanas secas Manjimup',53,'0'),(52,'Cereales para Filo',7,'0'),(53,'Empanada de carne',32.8,'1'),(54,'Empanada de cerdo',7.45,'0'),(55,'Pate chino',24,'0'),(56,'Gnocchi de la abuela Alicia',38,'0'),(57,'R<NAME>',19.5,'0'),(58,'Caracoles de Borgoña',13.25,'0'),(59,'Raclet de queso Courdavault',55,'0'),(60,'<NAME>',34,'0'),(61,'Sirope de arce',28.5,'0'),(62,'Tarta de azucar',49.3,'0'),(63,'Sandwich de vegetales',43.9,'0'),(64,'Bollos de pan de Wimmer',33.25,'0'),(65,'Salsa de pimiento picante de Luisiana',21.05,'0'),(66,'Espec<NAME>',17,'0'),(67,'Cerveza Laughing Lumberjack',14,'0'),(68,'Barras de pan de Escocia',12.5,'0'),(69,'<NAME>',36,'0'),(70,'Cerveza Outback',15,'0'),(71,'Crema de queso Fløtemys',21.5,'0'),(72,'<NAME>',34.8,'0'),(73,'Caviar rojo',15,'0'),(74,'Queso de soja Longlife',10,'0'),(75,'<NAME>',7.75,'0'),(76,'Licor Cloudberry',18,'0'),(77,'Salsa verde original Frankfurter',13,'0');
/*!40000 ALTER TABLE `productos` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2013-06-05 13:39:14
|
# --- !Ups
DROP FUNCTION IF EXISTS social.login(TEXT, TEXT);
CREATE OR REPLACE FUNCTION social.login(IN _identity TEXT, IN _password TEXT, OUT _user_id INTEGER, OUT _access_token TEXT, OUT _gender TEXT, OUT _fb_user_id TEXT, OUT _fb_username TEXT)
AS $$
BEGIN
UPDATE social.m8_users
SET authorized_at = current_timestamp
WHERE (lower(email) = lower(_identity) OR lower(username) = lower(_identity)) AND "password" = <PASSWORD> AND NOT deleted;;
UPDATE social.m8_users
SET access_token = uuid_generate_v4()
WHERE (lower(email) = lower(_identity) OR lower(username) = lower(_identity)) AND "password" = _password AND (age(current_timestamp, authorized_at) >= '7 days' OR access_token IS NULL) AND NOT deleted;;
SELECT user_id, access_token, gender::TEXT, fb_user_id, fb_username INTO _user_id, _access_token, _gender, _fb_user_id, _fb_username
FROM social.m8_users
WHERE (lower(email) = lower(_identity) OR lower(username) = lower(_identity)) AND "password" = <PASSWORD> AND NOT deleted;;
END;;
$$
LANGUAGE 'plpgsql' VOLATILE;
DROP FUNCTION IF EXISTS social.list_users_nearby(INTEGER, INTEGER, INTEGER);
CREATE OR REPLACE FUNCTION social.list_users_nearby(IN _current_user_id INTEGER, IN _page INTEGER, IN _page_size INTEGER)
RETURNS TABLE (_user_id INTEGER, _first_picture TEXT, _first_name TEXT, _distance INTEGER, _gender TEXT, _is_friend BOOLEAN, _fb_user_id TEXT, _fb_username TEXT) AS $$
DECLARE
_page_offset INTEGER := _page * _page_size;;
BEGIN
RETURN QUERY
WITH m8_current_user AS (
SELECT
user_id,
byed_users,
"position",
gender,
prefer_gender,
friends
FROM social.m8_users AS cu
WHERE cu.user_id = _current_user_id
)
SELECT u.user_id AS _user_id, u.pictures[1] AS _first_picture, u.first_name::TEXT AS _first_name, ceil(ST_Distance(u.position, cu.position)/1000.0)::INTEGER AS _distance, u.gender::Text AS _gender, (ARRAY[u.user_id] <@ cu.friends) AS _is_friend, u.fb_user_id AS _fb_user_id, u.fb_username AS _fb_username
FROM social.m8_users AS u, m8_current_user AS cu
WHERE u.user_id != _current_user_id AND NOT u.deleted AND u.blocked_times < 7 AND NOT (ARRAY[u.user_id] <@ cu.byed_users) AND NOT (ARRAY[cu.user_id] <@ u.byed_users) AND cu.position IS NOT NULL AND u.position IS NOT NULL AND authorized_at IS NOT NULL AND age(current_timestamp, authorized_at) <= '28 days' AND ceil(ST_Distance(u.position, cu.position)/1000.0)::INTEGER <= 30 AND ((cu.prefer_gender = 'Both'::gender OR cu.prefer_gender = u.gender) AND (u.prefer_gender = 'Both'::gender OR u.prefer_gender = cu.gender))
ORDER BY _distance ASC, _first_name ASC
OFFSET _page_offset
LIMIT _page_size;;
END;;
$$
LANGUAGE 'plpgsql' STABLE;
DROP FUNCTION IF EXISTS social.search_users(INTEGER, TEXT, INTEGER, INTEGER);
CREATE OR REPLACE FUNCTION social.search_users(IN _current_user_id INTEGER, IN _criteria TEXT, IN _page INTEGER, IN _page_size INTEGER)
RETURNS TABLE (_user_id INTEGER, _first_picture TEXT, _first_name TEXT, _distance INTEGER, _gender TEXT, _is_friend BOOLEAN, _fb_user_id TEXT, _fb_username TEXT) AS $$
DECLARE
_page_offset INTEGER := _page * _page_size;;
BEGIN
RETURN QUERY
WITH m8_current_user AS (
SELECT
user_id,
byed_users,
"position",
gender,
prefer_gender,
friends
FROM social.m8_users AS cu
WHERE cu.user_id = _current_user_id
)
SELECT u.user_id AS _user_id, u.pictures[1] AS _first_picture, u.first_name::TEXT AS _first_name, ceil(ST_Distance(u.position, cu.position)/1000.0)::INTEGER AS _distance, u.gender::Text AS _gender, (ARRAY[u.user_id] <@ cu.friends) AS _is_friend, u.fb_user_id AS _fb_user_id, u.fb_username AS _fb_username
FROM social.m8_users AS u, m8_current_user AS cu
WHERE u.user_id != _current_user_id AND NOT u.deleted AND u.blocked_times < 7 AND NOT (ARRAY[u.user_id] <@ cu.byed_users) AND NOT (ARRAY[cu.user_id] <@ u.byed_users) AND cu.position IS NOT NULL AND u.position IS NOT NULL AND authorized_at IS NOT NULL AND age(current_timestamp, authorized_at) <= '28 days' AND (lower(u.username) LIKE lower(_criteria) || '%' OR lower(u.first_name) LIKE lower(_criteria) || '%' OR lower(u.email) LIKE lower(_criteria))
ORDER BY _distance ASC, _first_name ASC
OFFSET _page_offset
LIMIT _page_size;;
END;;
$$
LANGUAGE 'plpgsql' STABLE;
DROP FUNCTION IF EXISTS social.get_other_user_profile(INTEGER, INTEGER);
CREATE OR REPLACE FUNCTION social.get_other_user_profile(IN _current_user_id INTEGER, IN _target_user_id INTEGER)
RETURNS TABLE (_other_user_id INTEGER, _pictures TEXT ARRAY, _username TEXT, _first_name TEXT, _gender TEXT, _distance INTEGER, _interests TEXT ARRAY, _description TEXT, _authorized_at TIMESTAMPTZ, _is_friend BOOLEAN, _fb_user_id TEXT, _fb_username TEXT) AS $$
BEGIN
RETURN QUERY
WITH m8_current_user AS (
SELECT
"position",
friends,
interests
FROM social.m8_users AS cu
WHERE cu.user_id = _current_user_id
)
SELECT u.user_id AS _other_user_id, u.pictures[1:6] AS _pictures, u.username::TEXT AS _username, u.first_name::TEXT AS _first_name, u.gender::TEXT AS _gender, ceil(ST_Distance(u.position, cu.position)/1000.0)::INTEGER AS _distance, COALESCE(u.interests, '{}') AS _interests, u.description AS _description, u.authorized_at AS _authorized_at, (ARRAY[u.user_id] <@ cu.friends) AS _is_friend, u.fb_user_id AS _fb_user_id, u.fb_username AS _fb_username
FROM social.m8_users AS u, m8_current_user AS cu
WHERE u.user_id = _target_user_id;;
END;;
$$
LANGUAGE 'plpgsql' STABLE;
DROP FUNCTION IF EXISTS social.get_chat_messages(INTEGER, INTEGER, INTEGER);
CREATE OR REPLACE FUNCTION social.get_chat_messages(IN _current_user_id INTEGER, IN _chat_id INTEGER, IN _limit INTEGER)
RETURNS TABLE (_sender_id INTEGER, _first_picture TEXT, _fb_user_id TEXT, _fb_username TEXT, _first_name TEXT, _gender TEXT, _message TEXT, _sent_at TIMESTAMPTZ) AS $$
BEGIN
UPDATE social.chats
SET last_read_by = (last_read_by || hstore(_current_user_id::TEXT, current_timestamp::TEXT))
WHERE chat_id = _chat_id;;
UPDATE social.messages
SET read_by = read_by | _current_user_id
WHERE chat_id = _chat_id AND NOT ARRAY[_current_user_id] <@ read_by;;
RETURN QUERY
SELECT m.sender_id, u.pictures[1], u.fb_user_id, u.fb_username, u.first_name::TEXT, u.gender::TEXT, m.message, m.sent_at
FROM social.chats AS ch INNER JOIN social.messages AS m ON (m.chat_id = ch.chat_id) INNER JOIN social.m8_users u ON (((ch.participants @@ _current_user_id::TEXT::query_int) OR m.sender_id = _current_user_id) AND m.sender_id = u.user_id)
WHERE ch.chat_id = _chat_id
ORDER BY m.sent_at DESC
LIMIT _limit;;
END;;
$$
LANGUAGE 'plpgsql' VOLATILE;
DROP FUNCTION IF EXISTS social.get_friends(INTEGER);
CREATE OR REPLACE FUNCTION social.get_friends(IN _current_user_id INTEGER)
RETURNS TABLE (_friend_id INTEGER, _first_picture TEXT, _username TEXT, _first_name TEXT, _fb_user_id TEXT, _fb_username TEXT) AS $$
BEGIN
RETURN QUERY
WITH m8_current_user AS (
SELECT
friends
FROM social.m8_users AS cu
WHERE cu.user_id = _current_user_id
)
SELECT u.user_id AS _friend_id, u.pictures[1] AS _first_picture, u.username::TEXT AS _username, u.first_name::TEXT AS _first_name, u.fb_user_id AS _fb_user_id, u.fb_username AS _fb_username
FROM social.m8_users AS u INNER JOIN m8_current_user AS cu ON (ARRAY[u.user_id] <@ cu.friends AND u.user_id <> _current_user_id AND NOT u.deleted AND u.blocked_times < 7)
ORDER BY u.username;;
END;;
$$
LANGUAGE 'plpgsql' STABLE;
DROP FUNCTION IF EXISTS social.get_profile(INTEGER);
CREATE OR REPLACE FUNCTION social.get_profile(IN _user_id INTEGER)
RETURNS TABLE (_email TEXT, _username TEXT, _first_name TEXT, _gender TEXT, _prefer_gender TEXT, _description TEXT, _pictures TEXT ARRAY, _interests TEXT ARRAY, _fb_user_id TEXT, _fb_username TEXT) AS $$
BEGIN
RETURN QUERY
SELECT email, username, first_name, gender::TEXT, prefer_gender::TEXT, description, pictures, COALESCE(interests, '{}'), fb_user_id, fb_username
FROM social.m8_users
WHERE user_id = _user_id;;
END;;
$$
LANGUAGE 'plpgsql' STABLE;
|
select printf('%.2f', double_6) as double_6 from nulls where double_6 >= 49.5
99.00
49.50
|
Primera version de trabajo
autor: <NAME>
--correccion de cancelacion en produccion
create table tp_cliente(
nombre varchar2(3),
fecha date)
|
<gh_stars>0
ALTER TABLE PUBLIC.ACT_FO_FORM_INSTANCE ADD SCOPE_ID_ varchar(191);
ALTER TABLE PUBLIC.ACT_FO_FORM_INSTANCE ADD SCOPE_TYPE_ varchar(191);
ALTER TABLE PUBLIC.ACT_FO_FORM_INSTANCE ADD SCOPE_DEFINITION_ID_ varchar(191);
INSERT INTO PUBLIC.ACT_DMN_DATABASECHANGELOG (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, CONTEXTS, LABELS, LIQUIBASE, DEPLOYMENT_ID) VALUES ('2', 'flowable', 'changelog-xml/form/6200.xml', NOW(), 3, '7:4850f9311e7503d7ea30a372e79b4ea2', 'addColumn tableName=ACT_FO_FORM_INSTANCE', '', 'EXECUTED', NULL, NULL, '3.5.3', '7878886944');
|
<reponame>tianyiYoung/ClickHouse
SET send_logs_level = 'fatal';
DROP DATABASE IF EXISTS database_for_dict_01018;
CREATE DATABASE database_for_dict_01018;
DROP TABLE IF EXISTS database_for_dict_01018.table_for_dict;
CREATE TABLE database_for_dict_01018.table_for_dict
(
key_column UInt64,
second_column UInt8,
third_column String
)
ENGINE = MergeTree()
ORDER BY key_column;
INSERT INTO database_for_dict_01018.table_for_dict VALUES (1, 100, 'Hello world');
DROP DATABASE IF EXISTS db_01018;
CREATE DATABASE db_01018;
SELECT '=DICTIONARY in Ordinary DB';
DROP DICTIONARY IF EXISTS db_01018.dict1;
CREATE DICTIONARY db_01018.dict1
(
key_column UInt64 DEFAULT 0,
second_column UInt8 DEFAULT 1,
third_column String DEFAULT 'qqq'
)
PRIMARY KEY key_column
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'table_for_dict' PASSWORD '' DB 'database_for_dict_01018'))
LIFETIME(MIN 1 MAX 10)
LAYOUT(FLAT());
SHOW CREATE DICTIONARY db_01018.dict1;
SHOW DICTIONARIES FROM db_01018 LIKE 'dict1';
EXISTS DICTIONARY db_01018.dict1;
SELECT database, name FROM system.dictionaries WHERE name LIKE 'dict1';
SELECT '==DETACH DICTIONARY';
DETACH DICTIONARY db_01018.dict1;
SHOW DICTIONARIES FROM db_01018 LIKE 'dict1';
EXISTS DICTIONARY db_01018.dict1;
SELECT database, name FROM system.dictionaries WHERE name LIKE 'dict1';
SELECT '==ATTACH DICTIONARY';
ATTACH DICTIONARY db_01018.dict1;
SHOW DICTIONARIES FROM db_01018 LIKE 'dict1';
EXISTS DICTIONARY db_01018.dict1;
SELECT database, name FROM system.dictionaries WHERE name LIKE 'dict1';
SELECT '==DROP DICTIONARY';
DROP DICTIONARY IF EXISTS db_01018.dict1;
SHOW DICTIONARIES FROM db_01018 LIKE 'dict1';
EXISTS DICTIONARY db_01018.dict1;
SELECT database, name FROM system.dictionaries WHERE name LIKE 'dict1';
DROP DATABASE IF EXISTS db_01018;
DROP DATABASE IF EXISTS memory_db;
CREATE DATABASE memory_db ENGINE = Memory;
SELECT '=DICTIONARY in Memory DB';
CREATE DICTIONARY memory_db.dict2
(
key_column UInt64 DEFAULT 0 INJECTIVE,
second_column UInt8 DEFAULT 1 EXPRESSION rand() % 222,
third_column String DEFAULT 'qqq'
)
PRIMARY KEY key_column
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'table_for_dict' PASSWORD '' DB 'database_for_dict_01018'))
LIFETIME(MIN 1 MAX 10)
LAYOUT(FLAT());
SHOW CREATE DICTIONARY memory_db.dict2;
SHOW DICTIONARIES FROM memory_db LIKE 'dict2';
EXISTS DICTIONARY memory_db.dict2;
SELECT database, name FROM system.dictionaries WHERE name LIKE 'dict2';
SELECT '=DICTIONARY in Lazy DB';
DROP DATABASE IF EXISTS lazy_db;
CREATE DATABASE lazy_db ENGINE = Lazy(1);
CREATE DICTIONARY lazy_db.dict3
(
key_column UInt64 DEFAULT 0 INJECTIVE,
second_column UInt8 DEFAULT 1 EXPRESSION rand() % 222,
third_column String DEFAULT 'qqq'
)
PRIMARY KEY key_column, second_column
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'table_for_dict' PASSWORD '' DB 'database_for_dict_01018'))
LIFETIME(MIN 1 MAX 10)
LAYOUT(COMPLEX_KEY_HASHED()); --{serverError 1}
DROP DATABASE IF EXISTS lazy_db;
SELECT '=DROP DATABASE WITH DICTIONARY';
DROP DATABASE IF EXISTS db_01018;
CREATE DATABASE db_01018;
CREATE DICTIONARY db_01018.dict4
(
key_column UInt64 DEFAULT 0,
second_column UInt8 DEFAULT 1,
third_column String DEFAULT 'qqq'
)
PRIMARY KEY key_column
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'table_for_dict' PASSWORD '' DB 'database_for_dict_01018'))
LIFETIME(MIN 1 MAX 10)
LAYOUT(FLAT());
SHOW DICTIONARIES FROM db_01018;
DROP DATABASE IF EXISTS db_01018;
CREATE DATABASE db_01018;
SHOW DICTIONARIES FROM db_01018;
CREATE DICTIONARY db_01018.dict4
(
key_column UInt64 DEFAULT 0,
second_column UInt8 DEFAULT 1,
third_column String DEFAULT 'qqq'
)
PRIMARY KEY key_column
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'table_for_dict' PASSWORD '' DB 'database_for_dict_01018'))
LIFETIME(MIN 1 MAX 10)
LAYOUT(FLAT());
SHOW DICTIONARIES FROM db_01018;
DROP DATABASE IF EXISTS db_01018;
DROP TABLE IF EXISTS database_for_dict_01018.table_for_dict;
DROP DATABASE IF EXISTS database_for_dict_01018;
DROP DATABASE IF EXISTS memory_db;
|
<reponame>samply/blaze
CREATE KEYSPACE blaze WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor' : 3};
CREATE TABLE blaze.resources (hash text PRIMARY KEY, content blob);
CREATE TABLE blaze.clauses ("token" text PRIMARY KEY, content blob);
|
<reponame>pdv-ru/ClickHouse<gh_stars>1000+
SELECT count()
FROM numbers(4) AS n1, numbers(3) AS n2
WHERE n1.number > (select avg(n.number) from numbers(3) n);
SELECT count()
FROM numbers(4) AS n1, numbers(3) AS n2, numbers(6) AS n3
WHERE n1.number > (select avg(n.number) from numbers(3) n);
|
SET FOREIGN_KEY_CHECKS=0;
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
INSERT IGNORE INTO `translation` (`message`, `translation`, `language`, `category`) VALUES
('About', 'Acerca', 'es', 'yum'),
('About', 'Über', 'de', 'yum'),
('Access control', 'Control de acceso', 'es', 'yum'),
('Access control', 'Zugangskontrolle', 'de', 'yum'),
('Action', 'Acción', 'es', 'yum'),
('Action', 'Aktion', 'de', 'yum'),
('Actions', 'Acciones', 'es', 'yum'),
('Actions', 'Aktionen', 'de', 'yum'),
('Activated', 'Activado', 'es', 'yum'),
('Activated', 'erstmalig Aktiviert', 'de', 'yum'),
('activation key', 'Aktivierungsschlüssel', 'de', 'yum'),
('activation key', 'clave de activación', 'es', 'yum'),
('Active', 'Activo', 'es', 'yum'),
('Active', 'Aktiv', 'de', 'yum'),
('Active - First visit', 'Activo - Primera visita', 'es', 'yum'),
('Active - First visit', 'Aktiv - erster Besuch', 'de', 'yum'),
('Active users', 'Aktive Benutzer', 'de', 'yum'),
('Active users', 'Usuarios activos', 'es', 'yum'),
('Activities', 'Actividades', 'es', 'yum'),
('Activities', 'Aktivitäten', 'de', 'yum'),
('Add as a friend', 'Agregar como amigo', 'es', 'yum'),
('Add as a friend', 'Zur Kontaktliste hinzufügen', 'de', 'yum'),
('Admin inbox', 'Administratorposteingang', 'de', 'yum'),
('Admin inbox', 'Bandéjà de entrada de Admin', 'es', 'yum'),
('Admin sent messages', 'Gesendete Nachrichten des Administrators', 'de', 'yum'),
('Admin sent messages', 'Mensajes enviados de Admin', 'es', 'yum'),
('Admin users', 'Administratoren', 'de', 'yum'),
('Registration successful', 'Registrierung erfolgreich', 'de', 'yum'),
('Admin users can not be deleted!', 'Administratoren können nicht gelöscht werden', 'de', 'yum'),
('Admin users can not be deleted!', '¡No se pueden eliminar los usuarios Administradores!', 'es', 'yum'),
('Admin users', 'Usuarios administradores', 'es', 'yum'),
('All', 'Alle', 'de', 'yum'),
('Allowed are lowercase letters and digits.', 'Erlaubt sind Kleinbuchstaben und Ziffern.', 'de', 'yum'),
('Allowed are lowercase letters and digits.', 'Se permiten letras minúsculas y dígitos', 'es', 'yum'),
('Allowed roles', 'Erlaubte Rollen', 'de', 'yum'),
('Allowed roles', 'Roles permitidos', 'es', 'yum'),
('Allowed users', 'Erlaubte Benutzer', 'de', 'yum'),
('Allowed users', 'Usuarios permitidos', 'es', 'yum'),
('Allow profile comments', 'Permitir comentarios en perfiles', 'es', 'yum'),
('Allow profile comments', 'Profilkommentare erlauben', 'de', 'yum'),
('All', 'Todos', 'es', 'yum'),
('Already exists.', 'Existiert bereits.', 'de', 'yum'),
('Already exists.', 'Ya existe.', 'es', 'yum'),
('An error occured while saving your changes', 'Es ist ein Fehler aufgetreten.', 'de', 'yum'),
('An error occured while saving your changes', 'Ocurrió un error al guardar los cambios', 'es', 'yum'),
('An error occured while uploading your avatar image', 'Ein Fehler ist beim hochladen ihres Profilbildes aufgetreten', 'de', 'yum'),
('An error occured while uploading your avatar image', 'Ha ocurrido un error al cargar una imagen de tu avatar', 'es', 'yum'),
('Answer', 'Antworten', 'de', 'yum'),
('Answer', 'Respuesta ', 'es', 'yum'),
('Appear in search', 'Aparecen en la b', 'es', 'yum'),
('Appear in search', 'In der Suche erscheinen', 'de', 'yum'),
('Are you really sure you want to delete your Account?', '¿Seguro que desea eliminar su cuenta?', 'es', 'yum'),
('Are you really sure you want to delete your Account?', 'Sind Sie Sicher, dass Sie Ihren Zugang löschen wollen?', 'de', 'yum'),
('Are you sure to delete this item?', '¿Seguro desea eliminar este elemento?', 'es', 'yum'),
('Are you sure to delete this item?', 'Sind Sie sicher, dass Sie dieses Element wirklich löschen wollen? ', 'de', 'yum'),
('Are you sure to remove this comment from your profile?', '¿Estás seguro que deseas borrar este comentario?', 'es', 'yum'),
('Are you sure to remove this comment from your profile?', 'Sind Sie sicher, dass sie diesen Kommentar entfernen wollen?', 'de', 'yum'),
('Are you sure you want to remove this friend?', '', 'es', 'yum'),
('Are you sure you want to remove this friend?', 'Sind Sie sicher, dass Sie diesen Kontakt aus ihrer Liste entfernen wollen?', 'de', 'yum'),
('Assign this role to new users automatically', 'Asignar esta funci', 'es', 'yum'),
('Assign this role to new users automatically', 'Rolle automatisch an neue Benutzer zuweisen', 'de', 'yum'),
('{attribute} is too long (max. {num} characters).', '{attribute} es muy larga (max. {num} caracteres).', 'es', 'yum'),
('{attribute} is too long (max. {num} characters).', '{attribute} ist zu lang (max. {num} Zeichen).', 'de', 'yum'),
('{attribute} is too short (min. {num} characters).', '{attribute} es muy corta (min. {num} caracteres).', 'es', 'yum'),
('{attribute} is too short (min. {num} characters).', '{attribute} ist zu kurz (min. {num} Zeichen).', 'de', 'yum'),
('{attribute} must include at least {num} digits.', '{attribute} debe tener al menos {num} dígitos.', 'es', 'yum'),
('{attribute} must include at least {num} lower case letters.', '{attribute} debe tener al menos {num} caracteres en minúscula.', 'es', 'yum'),
('{attribute} must include at least {num} symbols.', '{attribute} debe tener al menos {num} símbolos.', 'es', 'yum'),
('{attribute} must include at least {num} upper case letters.', '{attribute} debe tener al menos {num} caracteres en mayúscula.', 'es', 'yum'),
('{attribute} must not contain more than {num} sequentially repeated characters.', '{attribute} no debe tener más de {num} caracteres repetidos secuencialmente.', 'es', 'yum'),
('{attribute} must not contain whitespace.', '{attribute} no debe contener espacios.', 'es', 'yum'),
('Avatar image', 'Profilbild', 'de', 'yum'),
('Avatar image', 'Tu Avatar', 'es', 'yum'),
('Back to inbox', 'Volver a la bandéjà de entrada', 'es', 'yum'),
('Back to inbox', 'Zurück zum Posteingang', 'de', 'yum'),
('Back to my Profile', 'Volver a mi Perfil', 'es', 'yum'),
('Back to my Profile', 'Zurück zu meinem Profil', 'de', 'yum'),
('Back to profile', 'Volver a perfil', 'es', 'yum'),
('Back to profile', 'Zurück zum Profil', 'de', 'yum'),
('Back', 'Volver', 'es', 'yum'),
('Back', 'Zurück', 'de', 'yum'),
('Banned', 'Excluido', 'es', 'yum'),
('Banned users', '<NAME>', 'de', 'yum'),
('Banned users', 'Usuarios excluidos', 'es', 'yum'),
('Banned', 'Verbannt', 'de', 'yum'),
('birthdate', 'fecha de nacimiento', 'es', 'yum'),
('birthdate', 'Geburtstag', 'de', 'yum'),
('birthday', 'cumplea', 'es', 'yum'),
('birthday', 'Geburtstag', 'de', 'yum'),
('Browse', 'Durchsuchen', 'de', 'yum'),
('Browse groups', 'Buscar grupos', 'es', 'yum'),
('Browse logged user activities', 'Benutzeraktivitäten', 'de', 'yum'),
('Browse logged user activities', 'Consultar bitácora de actividades del usuario', 'es', 'yum'),
('Browse memberships', 'Mitgliedschaften kaufen', 'de', 'yum'),
('Browse memberships', 'Ver membres', 'es', 'yum'),
('Browse', 'Navegar', 'es', 'yum'),
('Browse user activities', 'Examinar las actividades del usuario', 'es', 'yum'),
('Browse user activities', 'Tätigkeitenhistorie', 'de', 'yum'),
('Browse user groups', 'Benutzergruppen durchsuchen', 'de', 'yum'),
('Browse user groups', 'Buscar grupos de usuarios', 'es', 'yum'),
('Browse usergroups', 'Gruppen durchsuchen', 'de', 'yum'),
('Browse usergroups', 'Ver Grupos de Usuarios', 'es', 'yum'),
('Browse users', 'Benutzer durchsuchen', 'de', 'yum'),
('Browse users', 'Buscar usuarios', 'es', 'yum'),
('Cancel', 'Abbrechen', 'de', 'yum'),
('Cancel', 'Cancelar', 'es', 'yum'),
('Cancel deletion', 'Cancelar eliminación', 'es', 'yum'),
('Cancel deletion', 'Löschvorgang abbrechen', 'de', 'yum'),
('Cancel request', 'Anfrage zurückziehen', 'de', 'yum'),
('Cancel request', 'Cancelar pedido', 'es', 'yum'),
('Cannot set password. Try again.', 'No pudimos guardar tu contraseña. Inténtalo otra vez', 'es', 'yum'),
('Category', 'Categor', 'es', 'yum'),
('Category', 'Kategorie', 'de', 'yum'),
('Change admin Password', '<PASSWORD>', 'de', 'yum'),
('Change admin Password', 'Cambiar contraseña de Admin', 'es', 'yum'),
('Password strength', '<PASSWORD>', 'de', 'yum'),
('change password', 'cambiar contraseña', 'es', 'yum'),
('change Password', 'cambiar Contraseña', 'es', 'yum'),
('Change password', 'Cambiar contraseña', 'es', 'yum'),
('change password', 'Passwort ändern', 'de', 'yum'),
('change Password', '<PASSWORD>', 'de', 'yum'),
('Change password', 'Passwort <PASSWORD>', 'de', 'yum'),
('Changes', 'Änderungen', 'de', 'yum'),
('Changes are saved', 'Änderungen wurden gespeichert.', 'de', 'yum'),
('Changes are saved', 'Cambios guardados', 'es', 'yum'),
('Changes', 'Cambios', 'es', 'yum'),
('Changes is saved.', 'Änderungen wurde gespeichert.', 'de', 'yum'),
('Changes is saved.', 'Cambio guardado', 'es', 'yum'),
('Choose All', 'Alle auswählen', 'de', 'yum'),
('Choose All', 'Seleccionar todos', 'es', 'yum'),
('City', 'Ciudad', 'es', 'yum'),
('City', 'Stadt', 'de', 'yum'),
('Column Field type in the database.', 'Columna tipo de Campo en la base de datos', 'es', 'yum'),
('Column Field type in the database.', 'Spaltentyp in der Datenbank', 'de', 'yum'),
('Comment', 'Comentario', 'es', 'yum'),
('Comment', 'Kommentar', 'de', 'yum'),
('Compose', 'Componer', 'es', 'yum'),
('Compose', 'Nachricht schreiben', 'de', 'yum'),
('Compose new message', 'Crear mensaje nuevo', 'es', 'yum'),
('Compose new message', 'Nachricht schreiben', 'de', 'yum'),
('Composing new message', 'Creando mensaje nuevo', 'es', 'yum'),
('Composing new message', 'Nachricht schreiben', 'de', 'yum'),
('Confirmation pending', 'Bestätigung ausstehend', 'de', 'yum'),
('Confirmation pending', 'Esperando confirmación', 'es', 'yum'),
('Confirm', 'Bestätigen', 'de', 'yum'),
('Confirm', 'Confirmar', 'es', 'yum'),
('Confirm deletion', 'Confirmar eliminación', 'es', 'yum'),
('Confirm deletion', 'Löschvorgang bestätigen', 'de', 'yum'),
('Content', 'Contenido', 'es', 'yum'),
('Content', 'Inhalt', 'de', 'yum'),
('Create', 'Anlegen', 'de', 'yum'),
('Create', 'Crear', 'es', 'yum'),
('Create my profile', 'Crear mi perfil', 'es', 'yum'),
('Create my profile', 'Mein Profil anlegen', 'de', 'yum'),
('Create new action', 'Crear acción nueva', 'es', 'yum'),
('Create new action', 'Neue Aktion', 'de', 'yum'),
('Create new field group', 'Crear campo de grupo nuevo', 'es', 'yum'),
('Create new field group', 'Neue Feldgruppe erstellen', 'de', 'yum'),
('Create new payment type', 'Crear nueva forma de pago', 'es', 'yum'),
('Create new payment type', 'Neue Zahlungsart hinzufügen', 'de', 'yum'),
('Create new role', 'Crear rol nuevo', 'es', 'yum'),
('Create new role', 'Neue Rolle anlegen', 'de', 'yum'),
('Create new settings profile', 'Crear ajuste de perfil nuevo', 'es', 'yum'),
('Create new settings profile', 'Neues Einstellungsprofil erstellen', 'de', 'yum'),
('Create new translation', 'Crear nueva traducción', 'es', 'yum'),
('Create new translation', 'Neue Übersetzung erstellen', 'de', 'yum'),
('Create new User', 'Crear nuevo usuario', 'es', 'yum'),
('Create new user', 'Crear usuario nuevo', 'es', 'yum'),
('Create new Usergroup', 'Crear nuevo grupo de usuarios', 'es', 'yum'),
('Create new usergroup', 'Crear un nuevo grupo de usuarios', 'es', 'yum'),
('Create new usergroup', 'Neue Gruppe erstellen', 'de', 'yum'),
('Create new Usergroup', 'Neue Gruppe erstellen', 'de', 'yum'),
('Create new User', 'Neuen Benutzer anlegen', 'de', 'yum'),
('Create payment type', 'Crear el tipo de pago', 'es', 'yum'),
('Create payment type', 'Zahlungsart anlegen', 'de', 'yum'),
('Create profile field', 'Crear campo de perfil', 'es', 'yum'),
('Create Profile Field', 'Crear Campo de Perfil', 'es', 'yum'),
('Create profile field', 'Ein neues Profilfeld erstellen', 'de', 'yum'),
('Create Profile Field', 'Profilfeld anlegen', 'de', 'yum'),
('Create profile fields group', 'Crear grupo de campos de perfil', 'es', 'yum'),
('Create role', 'Crear rol', 'es', 'yum'),
('Create Role', 'Crear Rol', 'es', 'yum'),
('Create role', 'Neue Rolle anlegen', 'de', 'yum'),
('Create Role', 'Rolle anlegen', 'de', 'yum'),
('Create user', 'Benutzer anlegen', 'de', 'yum'),
('Create User', 'Benutzer anlegen', 'de', 'yum'),
('Create user', 'Crear usuario', 'es', 'yum'),
('Create User', 'Crear Usuario', 'es', 'yum'),
('Create Usergroup', 'Crear un grupo de usuarios', 'es', 'yum'),
('Create Usergroup', 'Neue Gruppe erstellen', 'de', 'yum'),
('User can not be found', 'Benutzer kann nicht gefunden werden', 'de', 'yum'),
('User is not active', 'Benutzer ist nicht aktiv', 'de', 'yum'),
('Date', 'Datum', 'de', 'yum'),
('Date', 'Fecha', 'es', 'yum'),
('Default', 'Default', 'de', 'yum'),
('Default', 'Predeterminado', 'es', 'yum'),
('Delete account', 'Eliminar cuenta', 'es', 'yum'),
('Delete Account', 'Eliminar Cuenta', 'es', 'yum'),
('Delete account', 'Zugang löschen', 'de', 'yum'),
('Delete Account', 'Zugang löschen', 'de', 'yum'),
('Deleted', 'Eliminado', 'es', 'yum'),
('Deleted', 'Gelöscht', 'de', 'yum'),
('Delete message', 'Eliminar mensaje', 'es', 'yum'),
('Delete message', 'Nachricht löschen', 'de', 'yum'),
('Delete User', 'Benutzer löschen', 'de', 'yum'),
('Delete User', 'Eliminar Usuario', 'es', 'yum'),
('Deny', 'Ablehnen', 'de', 'yum'),
('Deny', 'Negar', 'es', 'yum'),
('Description', 'Beschreibung', 'de', 'yum'),
('Description', 'Descripción', 'es', 'yum'),
('Different users logged in today', 'Anzahl der heute angemeldeten Benutzer', 'de', 'yum'),
('Different users logged in today', 'Diferentes usuarios iniciaron sesión hoy', 'es', 'yum'),
('Different viewn Profiles', 'Insgesamt betrachtete Profile', 'de', 'yum'),
('Different viewn Profiles', 'Perfiles diferentes vistos', 'es', 'yum'),
('Display order of fields.', 'Mostrar orden de los campos', 'es', 'yum'),
('Display order of fields.', 'Reihenfolgenposition, in der das Feld angezeigt wird', 'de', 'yum'),
('Display order of group.', 'Anzeigereihenfolge der Gruppe.', 'de', 'yum'),
('Display order of group.', 'Mostrar orden del grupo', 'es', 'yum'),
('Do not appear in search', 'Nicht in der Suche erscheinen', 'de', 'yum'),
('Do not appear in search', 'No aparecer en la b', 'es', 'yum'),
('do not make my friends public', 'Meine Kontakte nicht veröffentlichen', 'de', 'yum'),
('do not make my friends public', 'no hacer mis amigos p', 'es', 'yum'),
('Do not show my online status', 'No mostrar mi estado de conexi', 'es', 'yum'),
('Do not show my online status', 'Status verstecken', 'de', 'yum'),
('Do not show the owner of a profile when i visit him', 'Niemandem zeigen, wen ich besucht habe', 'de', 'yum'),
('Do not show the owner of a profile when i visit him', 'No se repite el due', 'es', 'yum'),
('Duration in days', 'Duraci', 'es', 'yum'),
('Duration in days', 'Gültigkeitsdauer in Tagen', 'de', 'yum'),
('Edit', 'Bearbeiten', 'de', 'yum'),
('Edit', 'Editar', 'es', 'yum'),
('Edit personal data', 'Editar datos personales', 'es', 'yum'),
('Edit personal data', 'Persönliche Daten bearbeiten', 'de', 'yum'),
('Edit profile', 'Editar perfil', 'es', 'yum'),
('Edit profile field', 'Editar campo del perfil', 'es', 'yum'),
('Edit profile field', 'Profilfeld bearbeiten', 'de', 'yum'),
('Edit profile', 'Profil bearbeiten', 'de', 'yum'),
('Edit this role', 'Diese Rolle bearbeiten', 'de', 'yum'),
('Edit this role', 'Editar este rol', 'es', 'yum'),
('email address', 'correo electrónico', 'es', 'yum'),
('E-Mail address', 'Correo electrónico', 'es', 'yum'),
('E-Mail address', 'E-Mail Adresse', 'de', 'yum'),
('E-Mail already in use. If you have not registered before, please contact our System administrator.', 'Este correo ya está siendo usado por alguien. Si no te habías registrado antes entonces contáctanos', 'es', 'yum'),
('E-mail', 'Correo electrónico', 'es', 'yum'),
('email', 'correo', 'es', 'yum'),
('email', 'E-Mail', 'de', 'yum'),
('E-mail', 'E-mail', 'de', 'yum'),
('Email is incorrect.', 'Email incorrecto', 'es', 'yum'),
('Email is incorrect.', 'E-Mail ist nicht korrekt.', 'de', 'yum'),
('Email is not set when trying to send Registration Email', 'Debes colocar el correo electrónico para enviar el correo de registro', 'es', 'yum'),
('Enable Captcha', 'Captcha Überprüfung aktivieren', 'de', 'yum'),
('Enable Captcha', 'Habilitar Captcha', 'es', 'yum'),
('Enable Email Activation', 'Aktivierung per E-Mail einschalten', 'de', 'yum'),
('Enable Email Activation', 'Habilitar Activación por Email', 'es', 'yum'),
('Enable Profile History', 'Habilitar Historial de Perfil', 'es', 'yum'),
('Enable Profile History', 'Profilhistorie einschalten', 'de', 'yum'),
('Enable Recovery', 'Habilitar Recuperación', 'es', 'yum'),
('Enable Recovery', 'Wiederherstellung einschalten', 'de', 'yum'),
('Enable Registration', 'Habilitar Registro', 'es', 'yum'),
('Enable Registration', 'Registrierung einschalten', 'de', 'yum'),
('End date', 'Enddatum', 'de', 'yum'),
('End date', 'Fecha final', 'es', 'yum'),
('Ends at', 'Endet am', 'de', 'yum'),
('Ends at', 'Termina en', 'es', 'yum'),
('Error Message', 'Fehlermeldung', 'de', 'yum'),
('Error Message', 'Mensaje de Error', 'es', 'yum'),
('Error message when Validation fails.', 'Fehlermeldung falls die Validierung fehlschlägt', 'de', 'yum'),
('Error message when Validation fails.', 'Mensaje de error cuando la Validación falla', 'es', 'yum'),
('Error while processing new avatar image : {error_message}; File was uploaded without resizing', 'Das Bild konnte nicht richtig skaliert werden: {error_message}. Es wurde trotzdem erfolgreich hochgeladen und in ihrem Profil aktiviert.', 'de', 'yum'),
('Error while processing new avatar image : {error_message}; File was uploaded without resizing', 'Error al procesar la imagen nuevo avatar: {mensaje_error}; El archivo se ha subido sin cambiar el tama', 'es', 'yum'),
('Expired', 'Abgelaufen', 'de', 'yum'),
('Expired', 'Caducado', 'es', 'yum'),
('Field', 'Campo', 'es', 'yum'),
('Field', 'Feld', 'de', 'yum'),
('Field group', 'Feldgruppe', 'de', 'yum'),
('Field group', 'Grupo de Campos', 'es', 'yum'),
('Field name on the language of "sourceLanguage".', 'Feldname in der Ursprungssprache', 'de', 'yum'),
('Field name on the language of "sourceLanguage".', 'Nombre del campo en el idioma "sourceLanguage".', 'es', 'yum'),
('Field size', 'Feldgröße', 'de', 'yum'),
('Field Size', 'Feldgröße', 'de', 'yum'),
('Field size in the database.', 'Feldgröße in der Datenbank', 'de', 'yum'),
('Field size in the database.', 'Tamaño del campo en la base de datos', 'es', 'yum'),
('Field Size min', 'min Feldgröße', 'de', 'yum'),
('Field Size min', 'Tamaño mínimo del campo', 'es', 'yum'),
('Field size', 'Tamaño del campo', 'es', 'yum'),
('Field Size', 'Tamaño del Campo', 'es', 'yum'),
('Fields with <span class=\"required\">*</span> are required.', 'Les champs avec <span class=\"required\">*</span> sont obligatoires.', 'fr', 'yum'),
('Fields with * are required.', 'Los campos con * son obligatorios', 'es', 'yum'),
('Fields with <span class=\"required\">*</span> are required.', 'Felder mit <span class=\"required\">*</span> sind Pflichtfelder.', 'de', 'yum'),
('Field type', 'Feldtyp', 'de', 'yum'),
('Field Type', 'Feldtyp', 'de', 'yum'),
('Field type', 'Tipo de campo', 'es', 'yum'),
('Field Type', 'Tipo de Campo', 'es', 'yum'),
('First name', 'Nombre', 'es', 'yum'),
('firstname', 'primer nombre', 'es', 'yum'),
('firstname', 'Vorname', 'de', 'yum'),
('First name', 'Vorname', 'de', 'yum'),
('For all', 'Für alle', 'de', 'yum'),
('For all', 'Para todos', 'es', 'yum'),
('Form validation error', 'Error en la validación del formulario', 'es', 'yum'),
('Friends', 'Amigos', 'es', 'yum'),
('Friendship', 'Amistades', 'es', 'yum'),
('Friendship confirmed', 'Amistad confirmada', 'es', 'yum'),
('Friendship confirmed', 'Freundschaft bestätigt', 'de', 'yum'),
('Friendship', 'Kontakt', 'de', 'yum'),
('Friendship rejected', 'Kontaktanfrage abgelehnt', 'de', 'yum'),
('Friendship rejected', 'La amistad rechazada', 'es', 'yum'),
('Friendship request already sent', 'Kontaktbestätigung ausstehend', 'de', 'yum'),
('Friendship request already sent', 'Ya se envió la solicitud de amistad', 'es', 'yum'),
('Friendship request for {username} has been sent', 'Kontaktanfrage an {username} gesendet', 'de', 'yum'),
('Friendship request for {username} has been sent', 'La solicitud de amistad a {username} ha sido enviada', 'es', 'yum'),
('Friendship request has been rejected', 'Kontaktanfrage zurückgewiesen', 'de', 'yum'),
('Friendship request has been rejected', 'Solicitud de amistad rechazada', 'es', 'yum'),
('Friends', 'Kontakte', 'de', 'yum'),
('Friends of {username}', '<NAME> {username}', 'es', 'yum'),
('Friends of {username}', 'Kontakte von {username}', 'de', 'yum'),
('friends only', '<NAME>', 'de', 'yum'),
('friends only', '<NAME>', 'es', 'yum'),
('From', 'Desde', 'es', 'yum'),
('From', 'Von', 'de', 'yum'),
('General', 'Allgemein', 'de', 'yum'),
('General', ' General ', 'es', 'yum'),
('Generate Demo Data', 'Genera datos de prueba', 'es', 'yum'),
('Generate Demo Data', 'Zufallsbenutzer erzeugen', 'de', 'yum'),
('Go to profile of {username}', 'Ir al perfil de {username}', 'es', 'yum'),
('Go to profile of {username}', 'Zum Profil von {username}', 'de', 'yum'),
('Grant permission', 'Berechtigung zuweisen', 'de', 'yum'),
('Grant permission', 'Otorgar permiso', 'es', 'yum'),
('Leave group', 'Gruppe verlassen', 'de', 'yum'),
('You can also login by', 'Anmeldung auch möglich über', 'de', 'yum'),
('You have left this group', 'Du hast diese Gruppe verlassen', 'de', 'yum'),
('Group Name', 'Gruppenname', 'de', 'yum'),
('Group Name', 'Nombre de grupo', 'es', 'yum'),
('Group name on the language of "sourceLanguage".', 'Gruppenname in der Basissprache.', 'de', 'yum'),
('Group name on the language of "sourceLanguage".', 'Nombre del grupo en el idioma "sourceLanguage".', 'es', 'yum'),
('Group owner', 'Dueño del grupo', 'es', 'yum'),
('Group owner', 'Gruppeneigentümer', 'de', 'yum'),
('Group title', 'Titel der Gruppe', 'de', 'yum'),
('Group title', 'Título del grupo', 'es', 'yum'),
('Having', 'Anzeigen', 'de', 'yum'),
('Having', 'Teniendo', 'es', 'yum'),
('Hidden', 'Escondido', 'es', 'yum'),
('Hidden', 'Verstecken', 'de', 'yum'),
('How expensive is a membership?', '', 'es', 'yum'),
('How expensive is a membership?', 'Preis der Mitgliedschaft', 'de', 'yum'),
('How many days will the membership be valid after payment?', '', 'es', 'yum'),
('How many days will the membership be valid after payment?', 'Wie viele Tage ist die Mitgliedschaft nach Zahlungseingang gültig?', 'de', 'yum'),
('Ignored users', 'Ignorierliste', 'de', 'yum'),
('Ignored users', 'Usuarios ignorados', 'es', 'yum'),
('Ignore', 'Ignorar', 'es', 'yum'),
('Ignore', 'Ignorieren', 'de', 'yum'),
('Registration by external provider failed', 'Fehler bei der Registrierung durch den externen Anbieter', 'de', 'yum'),
('Login by external provider failed', 'Fehler bei der Anmeldung durch den externen Anbieter', 'de', 'yum'),
('Inactive users', 'Inaktive Benutzer', 'de', 'yum'),
('Inactive users', 'Usuarios inactivos', 'es', 'yum'),
('Incorrect activation URL', 'El enlace de activación que usaste es incorrecto', 'es', 'yum'),
('Incorrect activation URL.', 'Falsche Aktivierungs URL.', 'de', 'yum'),
('Incorrect activation URL.', 'URL de activación incorrecta.', 'es', 'yum'),
('Incorrect password (minimal length 4 symbols).', 'Contraseña incorrecta (debe tener mínimo 4 caracteres).', 'es', 'yum'),
('Incorrect password (minimal length 4 symbols).', 'Falsches Passwort (minimale Länge 4 Zeichen).', 'de', 'yum'),
('Incorrect recovery link.', 'Enlace de recuperación que usaste es incorrecto', 'es', 'yum'),
('Incorrect recovery link.', 'Recovery link ist falsch.', 'de', 'yum'),
("Incorrect symbol's. (A-z0-9)", 'Caracteres incorrectos. (A-z0-9)', 'es', 'yum'),
('Incorrect symbol''s. (A-z0-9)', 'Im Benutzernamen sind nur Buchstaben und Zahlen erlaubt.', 'de', 'yum'),
('Incorrect username (length between 3 and 20 characters).', 'Falscher Benutzername (Länge zwischen 3 und 20 Zeichen).', 'de', 'yum'),
('Incorrect username (length between 3 and 20 characters).', 'Nombre de usuario incorrecto (debe tener longitud entre 3 y 20 caracteres)', 'es', 'yum'),
('Instructions have been sent to you. Please check your email.', 'Se enviarion instrucciones a tu correo. Por favor, ve tu cuenta de correo.', 'es', 'yum'),
('Instructions have been sent to you. Please check your email.', 'Weitere Anweisungen wurden an ihr E-Mail Postfach geschickt. Bitte prüfen Sie ihre E-Mails', 'de', 'yum'),
('Invalid recovery key', 'Clave de recuperaci', 'es', 'yum'),
('Invalid recovery key', 'Fehlerhafter Wiederherstellungsschlüssel', 'de', 'yum'),
('Invitation', 'Einladung', 'de', 'yum'),
('Invitation', 'Invitaciones', 'es', 'yum'),
('Is membership possible', '', 'es', 'yum'),
('Is membership possible', 'Mitgliedschaft möglich?', 'de', 'yum'),
('Join group', 'Beitreten', 'de', 'yum'),
('Join group', 'Unirse al grupo', 'es', 'yum'),
('Jump to profile', 'Ir al perfil', 'es', 'yum'),
('Jump to profile', 'Zum Profil', 'de', 'yum'),
('Language', 'Idioma', 'es', 'yum'),
('Language', 'Sprache', 'de', 'yum'),
('lastname', 'apellido', 'es', 'yum'),
('Last name', 'Apellido', 'es', 'yum'),
('lastname', 'Nachname', 'de', 'yum'),
('Last name', 'Nachname', 'de', 'yum'),
('Last visit', '<NAME>', 'de', 'yum'),
('Last visit', 'òltima visita', 'es', 'yum'),
('Let me appear in the search', 'Ich möchte in der Suche erscheinen', 'de', 'yum'),
('Let me appear in the search', 'Perm', 'es', 'yum'),
('Letters are not case-sensitive.', 'Las letras nos son sensibles a mayúsculas y minúsculas.', 'es', 'yum'),
('Letters are not case-sensitive.', 'Zwischen Groß-und Kleinschreibung wird nicht unterschieden.', 'de', 'yum'),
('Let the user choose in privacy settings', 'Den Benutzer entscheiden lassen', 'de', 'yum'),
('Let the user choose in privacy settings', 'Permita que el usuario elija en la configuraci', 'es', 'yum'),
('List roles', 'Listar roles', 'es', 'yum'),
('List roles', 'Rollen anzeigen', 'de', 'yum'),
('List user', 'Benutzer auflisten', 'de', 'yum'),
('List user', 'Listar usuario', 'es', 'yum'),
('List users', 'Benutzer anzeigen', 'de', 'yum'),
('List users', 'Listar usuarios', 'es', 'yum'),
('Logged in as', 'Angemeldet als', 'de', 'yum'),
('Logged in as', 'Conectado como', 'es', 'yum'),
('Login allowed by Email and Username', 'Anmeldung per Benutzername oder E-Mail adresse', 'de', 'yum'),
('Login allowed by Email and Username', 'Inicio de sesión por Email y Nombre de usuario', 'es', 'yum'),
('Login allowed only by Email', 'Anmeldung nur per E-Mail adresse', 'de', 'yum'),
('Login allowed only by Email', 'Inicio de sesión sólo por Email', 'es', 'yum'),
('Login allowed only by Username', 'Anmeldung nur per Benutzername', 'de', 'yum'),
('Login allowed only by Username', 'Inicio de sesión sólo por Nombre de usuario', 'es', 'yum'),
('Login', 'Anmeldung', 'de', 'yum'),
('Login', 'Iniciar sesión', 'es', 'yum'),
('Login is not possible with the given credentials', 'Anmeldung mit den angegebenen Werten nicht möglich', 'de', 'yum'),
('Login is not possible with the given credentials', 'Inicio de sesi', 'es', 'yum'),
('Login Type', 'Anmeldungsart', 'de', 'yum'),
('Login Type', 'Tipo de inicio de sesión', 'es', 'yum'),
('Logout', 'Abmelden', 'de', 'yum'),
('Logout', 'Cerrar sesión', 'es', 'yum'),
('Log profile visits', 'Meine Profilbesuche anzeigen', 'de', 'yum'),
('Log profile visits', 'Registrarse visitas al perfil', 'es', 'yum'),
('Lost password?', '¿Olvidó la contraseña?', 'es', 'yum'),
('Lost password?', 'Passwort vergessen?', 'de', 'yum'),
('Mail send method', 'Método de envío de correo', 'es', 'yum'),
('Mail send method', 'Nachrichtenversandmethode', 'de', 'yum'),
('Make {field} public available', 'Das Feld {field} öffentlich machen', 'de', 'yum'),
('Make {field} public available', 'Haga {field} disponible al p', 'es', 'yum'),
('make my friends public', 'hacer mi amigos p', 'es', 'yum'),
('make my friends public', 'Meine Kontakte veröffentlichen', 'de', 'yum'),
('Manage', 'Administrar', 'es', 'yum'),
('Manage field groups', 'Administrar grupos de campos', 'es', 'yum'),
('Manage field groups', 'Feldgruppen verwalten', 'de', 'yum'),
('Manage friends', 'Administrar amigos', 'es', 'yum'),
('Manage friends', 'Freundschaftsverwaltung', 'de', 'yum'),
('Manage my users', 'Administrar mis usuarios', 'es', 'yum'),
('Manage my users', 'Meine Benutzer verwalten', 'de', 'yum'),
('Manage payments', 'Gesti', 'es', 'yum'),
('Manage payments', 'Zahlungsarten verwalten', 'de', 'yum'),
('Manage permissions', 'Administrar los permisos', 'es', 'yum'),
('Manage permissions', 'Berechtigungen verwalten', 'de', 'yum'),
('Manage Profile Field', 'Administrar Campos de Perfil', 'es', 'yum'),
('Manage profile field groups', 'Administrar grupos de campos de perfiles', 'es', 'yum'),
('Manage Profile Field', 'Profilfeld verwalten', 'de', 'yum'),
('Manage profile Fields', 'Administrar Campos de Perfil', 'es', 'yum'),
('Manage Profile Fields', 'Administrar Campos de Perfil', 'es', 'yum'),
('Manage profile fields', 'Gesti', 'es', 'yum'),
('Manage profile fields', 'Profilfelder verwalten', 'de', 'yum'),
('Manage profile Fields', 'Profilfelder verwalten', 'de', 'yum'),
('Manage Profile Fields', 'Profilfelder verwalten', 'de', 'yum'),
('Manage profiles', 'Administrar perfiles', 'es', 'yum'),
('Manage Profiles', 'Administrar Perfiles', 'es', 'yum'),
('Manage profiles', 'Profile verwalten', 'de', 'yum'),
('Manage Profiles', 'Profile verwalten', 'de', 'yum'),
('Manage Roles', 'Administrar Roles', 'es', 'yum'),
('Manage roles', 'Adminsitrar roles', 'es', 'yum'),
('Manage roles', 'Rollen verwalten', 'de', 'yum'),
('Manage Roles', 'Rollenverwaltung', 'de', 'yum'),
('Manage text settings', 'Administrar configuración de texto', 'es', 'yum'),
('Manage text settings', 'Texteinstellungen', 'de', 'yum'),
('Manage this profile', 'Administrar este perfil', 'es', 'yum'),
('Manage this profile', 'dieses Profil bearbeiten', 'de', 'yum'),
('Manage User', 'Administrar Usuario', 'es', 'yum'),
('Manage User', 'Benutzerverwaltung', 'de', 'yum'),
('Manage user Groups', 'Administrar Grupos de usuario', 'es', 'yum'),
('Manage user Groups', 'Benutzergruppen verwalten', 'de', 'yum'),
('Manage users', 'Administrar usuarios', 'es', 'yum'),
('Manage Users', 'Administrar Usuarios', 'es', 'yum'),
('Manage users', 'Benutzer verwalten', 'de', 'yum'),
('Manage Users', 'Benutzerverwaltung', 'de', 'yum'),
('Manage', 'Verwalten', 'de', 'yum'),
('Mange Profile Field', 'Administrar Campo del Perfil', 'es', 'yum'),
('Mange Profile Field', 'Mange Profil Field', 'de', 'yum'),
('Mark as read', 'Als gelesen markieren', 'de', 'yum'),
('Mark as read', 'Marcar como le', 'es', 'yum'),
('Match', 'Combinar', 'es', 'yum'),
('Match', 'Treffer', 'de', 'yum'),
('Membership ends at: {date}', 'Membres', 'es', 'yum'),
('Membership ends at: {date}', 'Mitgliedschaft endet am: {date}', 'de', 'yum'),
('Membership has not been payed yet', 'La membres', 'es', 'yum'),
('Membership has not been payed yet', 'Zahlungseingang noch nicht erfolgt', 'de', 'yum'),
('Membership', 'Membres', 'es', 'yum'),
('Membership', 'Mitgliedschaft', 'de', 'yum'),
('Membership payed at: {date}', 'Membres', 'es', 'yum'),
('Membership payed at: {date}', 'Zahlungseingang erfolgt am: {date}', 'de', 'yum'),
('Memberships', 'Membres', 'es', 'yum'),
('Memberships', 'Mitgliedschaften', 'de', 'yum'),
('Message count', 'Anzahl Nachrichten', 'de', 'yum'),
('Message count', 'Recuento de mensajes', 'es', 'yum'),
('Message from ', 'Mensaje de', 'es', 'yum'),
('Message from', 'Mensaje del', 'es', 'yum'),
('Message from ', 'Nachricht von ', 'de', 'yum'),
('Message from', 'Nachricht von', 'de', 'yum'),
('Message', 'Mensaje', 'es', 'yum'),
('Message "{message}" has been sent to {to}', 'Mensaje "{message}" ha sido enviada a {to}', 'es', 'yum'),
('Message "{message}" has been sent to {to}', 'Nachricht "{message}" wurde an {to} gesendet', 'de', 'yum'),
('Message "{message}" was marked as read', 'Mensaje "{message}" se ha marcado como le', 'es', 'yum'),
('Message "{message}" was marked as read', 'Nachricht "{message}" wurde als gelesen markiert.', 'de', 'yum'),
('Message', 'Nachricht', 'de', 'yum'),
('Messages', 'Mensajes', 'es', 'yum'),
('Messages', 'Nachrichten', 'de', 'yum'),
('Messaging system', 'Nachrichtensystem', 'de', 'yum'),
('Messaging system', 'Sistema de mensajes', 'es', 'yum'),
('Minimal password length 4 symbols.', 'Minimale Länge des Passworts 4 Zeichen.', 'de', 'yum'),
('Minimal password length 4 symbols.', 'Mínimo 4 caracteres para la contraseña', 'es', 'yum'),
('Module settings', 'Ajustes del módulo', 'es', 'yum'),
('Module settings', 'Moduleinstellungen', 'de', 'yum'),
('Module text settings', 'Ajustes de texto del módulo', 'es', 'yum'),
('My friends', 'Meine Kontakte', 'de', 'yum'),
('My friends', 'Mis amigos', 'es', 'yum'),
('My groups', 'Meine Gruppen', 'de', 'yum'),
('My groups', 'Mis grupos', 'es', 'yum'),
('My inbox', 'Mein Posteingang', 'de', 'yum'),
('My inbox', 'Mi bandéjà de entrada', 'es', 'yum'),
('My Inbox', 'Mi bandéjà de entrada', 'es', 'yum'),
('My Inbox', 'Posteingang', 'de', 'yum'),
('My memberships', 'Meine Mitgliedschaften', 'de', 'yum'),
('My memberships', 'Mis membres', 'es', 'yum'),
('My profile', 'Mein Profil', 'de', 'yum'),
('My profile', 'Mi perfil', 'es', 'yum'),
('New friendship request from {username}', 'neue Kontaktanfrage von {username}', 'de', 'yum'),
('New friendship request from {username}', 'Nueva solicitud de amistad de {username}', 'es', 'yum'),
('New friendship request', 'nueva solicitud de amistad', 'es', 'yum'),
('New friendship requests', 'Neue Freundschaftsanfragen', 'de', 'yum'),
('New friendship requests', 'Nueva solicitud de amistad', 'es', 'yum'),
('New messages', 'Neue Nachrichten', 'de', 'yum'),
('New messages', 'Nuevos mensajes', 'es', 'yum'),
('New password is saved.', 'La contraseña nueva ha sido guardada', 'es', 'yum'),
('New password is saved.', 'Neues Passwort wird gespeichert.', 'de', 'yum'),
('New password', '<PASSWORD>wort', 'de', 'yum'),
('New password', 'Nueva contrase', 'es', 'yum'),
('New profile comment from {username}', 'Comentario nuevo tu perfil de {username}', 'es', 'yum'),
('New profile comment from {username}', 'Neuer Profilkommentar von {username}', 'de', 'yum'),
('New profile comment', 'Nuevo comentario de perfil', 'es', 'yum'),
('New settings profile', 'Neues Einstellungsprofil', 'de', 'yum'),
('New settings profile', 'Nuevos ajustes de perfil', 'es', 'yum'),
('New translation', 'Neue Übersetzung', 'de', 'yum'),
('New translation', 'Nueva traducción', 'es', 'yum'),
('New value', 'Neuer Wert', 'de', 'yum'),
('New value', 'Valor nuevo', 'es', 'yum'),
('Nobody has commented your profile yet', 'Bisher hat niemand mein Profil kommentiert', 'de', 'yum'),
('Nobody has commented your profile yet', 'Nadie ha comentado el perfil a', 'es', 'yum'),
('Nobody has visited your profile yet', 'Bisher hat noch niemand ihr Profil angesehen', 'de', 'yum'),
('Nobody has visited your profile yet', 'Nadie ha visitado tu perfil todavía', 'es', 'yum'),
('No, but show on registration form', 'Ja, und auf Registrierungsseite anzeigen', 'de', 'yum'),
('No, but show on registration form', 'No, pero mostrar en formulario de registro', 'es', 'yum'),
('No friendship requested', 'Keine Freundschaft angefragt', 'de', 'yum'),
('No friendship requested', 'No hay solicitud de amistad', 'es', 'yum'),
('no', 'Nein', 'de', 'yum'),
('No', 'Nein', 'de', 'yum'),
('None', 'Keine', 'de', 'yum'),
('None', 'Ninguno', 'es', 'yum'),
('No new messages', 'Keine neuen Nachrichten', 'de', 'yum'),
('No new messages', 'No hay mensajes nuevos', 'es', 'yum'),
('no', 'no', 'es', 'yum'),
('No', 'No', 'es', 'yum'),
('No profile changes were made', 'Keine Profiländerungen stattgefunden', 'de', 'yum'),
('No profile changes were made', 'No se hicieron cambios en el perfil', 'es', 'yum'),
('Not active', 'Innactivo', 'es', 'yum'),
('Not active', 'Nicht aktiv', 'de', 'yum'),
('Not assigned', 'Nicht zugewiesen', 'de', 'yum'),
('Not assigned', 'No asignado', 'es', 'yum'),
('Not yet payed', 'Noch nicht bezahlt', 'de', 'yum'),
('Not yet payed', 'Todav', 'es', 'yum'),
('of user', 'de usuario', 'es', 'yum'),
('of user', 'von Benutzer', 'de', 'yum'),
('Ok', 'Aceptar', 'es', 'yum'),
('Ok', 'Ok', 'de', 'yum'),
('Old value', 'Alter Wert', 'de', 'yum'),
('Old value', 'Valor antiguo', 'es', 'yum'),
('One of the recipients ({username}) has ignored you. Message will not be sent!', 'Einer der gewählten Benutzer ({username}) hat Sie auf seiner Ignorier-Liste. Die Nachricht wird nicht gesendet!', 'de', 'yum'),
('One of the recipients ({username}) has ignored you. Message will not be sent!', 'Uno de los destinatarios ({username}) te ha ignorado. ¡No se enviará el mensaje!', 'es', 'yum'),
('Only owner', '<NAME>', 'de', 'yum'),
('Only owner', 'Sólo el dueño', 'es', 'yum'),
('only to my friends', 'Nur an meine Freunde veröffentlichen', 'de', 'yum'),
('only to my friends', 's', 'es', 'yum'),
('Only your friends are shown here', 'Nur ihre Kontakte werden hier angezeigt', 'de', 'yum'),
('Only your friends are shown here', 'S', 'es', 'yum'),
('Order confirmed', 'Bestellbestätigung', 'de', 'yum'),
('Order confirmed', 'Orden confirmada', 'es', 'yum'),
('Order date', 'Bestelldatum', 'de', 'yum'),
('Order date', 'Fecha de pedido', 'es', 'yum'),
('Ordered at', 'Bestellt am', 'de', 'yum'),
('Ordered at', 'Pedido en', 'es', 'yum'),
('Ordered memberships', 'Bestellte Mitgliedschaften', 'de', 'yum'),
('Ordered memberships', 'Pedido de membres', 'es', 'yum'),
('Order membership', 'Mitgliedschaft bestellen', 'de', 'yum'),
('Order membership', 'Pedido de miembro', 'es', 'yum'),
('Order number', 'Bestellnummer', 'de', 'yum'),
('Order number', 'N', 'es', 'yum'),
('Other', 'Otro', 'es', 'yum'),
('Other Validator', 'Otro validador', 'es', 'yum'),
('Other', 'Verschiedenes', 'de', 'yum'),
('Participant count', 'Anzahl Teilnehmer', 'de', 'yum'),
('Participant count', 'N', 'es', 'yum'),
('Participants', 'Participantes', 'es', 'yum'),
('Participants', 'Teilnehmer', 'de', 'yum'),
('password', '<PASSWORD>', 'es', 'yum'),
('Password', '<PASSWORD>', 'es', 'yum'),
('Password Expiration Time', 'Ablaufzeit von Passwörtern', 'de', 'yum'),
('Password Expiration Time', 'Tiempo de expiración de la contraseña', 'es', 'yum'),
('Password is incorrect.', 'Contraseña incorrecta', 'es', 'yum'),
('Password is incorrect.', 'Passwort ist falsch.', 'de', 'yum'),
('password', '<PASSWORD>', 'de', 'yum'),
('Password', '<PASSWORD>', 'de', 'yum'),
('Password recovery', 'Passwort wiederherstellen', 'de', 'yum'),
('Password recovery', 'Recuperación de contraseña', 'es', 'yum'),
('Passwords do not match', 'Las contraseñas no coinciden', 'es', 'yum'),
('Payment arrived', 'El pago lleg', 'es', 'yum'),
('Payment arrived', 'Zahlungseingang bestätigt', 'de', 'yum'),
('Payment date', 'Bezahlt am', 'de', 'yum'),
('Payment date', 'Fecha de pago', 'es', 'yum'),
('Payment', 'Pago', 'es', 'yum'),
('Payments', 'Pagos', 'es', 'yum'),
('Payments', 'Zahlungsarten', 'de', 'yum'),
('Payment types', 'Formas de pago', 'es', 'yum'),
('Payment types', 'Zahlungsarten', 'de', 'yum'),
('Payment', 'Zahlungsmethode', 'de', 'yum'),
('Permissions', 'Berechtigungen', 'de', 'yum'),
('Permissions', 'Permisos', 'es', 'yum'),
('Please check your email. An instructions was sent to your email address.', 'Bitte überprüfen Sie Ihre E-Mails. Eine Anleitung wurde an Ihre E-Mail-Adresse geschickt.', 'de', 'yum'),
('Please check your email. An instructions was sent to your email address.', 'Por favor verifica tu e-mail a donde se han enviado más instrucciones.', 'es', 'yum'),
('Please check your email. Instructions have been sent to your email address.', 'Bitte schauen Sie in Ihr Postfach. Weitere Anweisungen wurden per E-Mail geschickt.', 'de', 'yum'),
('Please check your email. Instructions have been sent to your email address.', 'Por favor revisa tu e-mail. Hemos enviado intrusiones a tu dirección de e-mail.', 'es', 'yum'),
('Please enter a request Message up to 255 characters', 'Bitte geben Sie eine Nachricht bis zu 255 Zeichen an, die dem Benutzer bei der Kontaktanfrage mitgegeben wird', 'de', 'yum'),
('Please enter a request Message up to 255 characters', 'Por favor escribe un mensaje no mayor a 255 caracteres', 'es', 'yum'),
('Please enter the letters as they are shown in the image above.', 'Bitte geben Sie die, oben im Bild angezeigten, Buchstaben ein.', 'de', 'yum'),
('Please enter the letters as they are shown in the image above.', 'Por favor escribe las letras que se muestran en la imagen.', 'es', 'yum'),
('Please enter your login or email address.', 'Bitte geben Sie Ihren Benutzernamen oder E-Mail-Adresse ein.', 'de', 'yum'),
('Please enter your login or email address.', 'Por favor escribe tu nombre de usuario o dirección de e-mail.', 'es', 'yum'),
('Please enter your password to confirm deletion:', 'Bitte geben Sie Ihr Passwort ein, um den Löschvorgang zu bestätigen:', 'de', 'yum'),
('Please enter your password to confirm deletion:', 'Por favor escribe tu contraseña para confirmar la eliminación:', 'es', 'yum'),
('Please enter your user name or email address.', 'Bitte geben Sie Ihren Benutzernamen oder E-mail Adresse ein', 'de', 'yum'),
('Please enter your user name or email address.', 'Por favor, ingrese su nombre de usuario o direcci', 'es', 'yum'),
('Please fill out the following form with your login credentials:', 'Bitte geben Sie ihre Login-Daten ein:', 'de', 'yum'),
('Please fill out the following form with your login credentials:', 'Por favor llena el formulario con tu información de inicio de sesión:', 'es', 'yum'),
('Please log in into the application.', 'Por favor, entra a la aplicación', 'es', 'yum'),
('Please verify your E-Mail address', 'Por favor verifica tu dirección de correo', 'es', 'yum'),
('Position', 'Posición', 'es', 'yum'),
('Position', 'Position', 'de', 'yum'),
('Predefined values (example: 1, 2, 3, 4, 5;).', 'Valores predefinidos (ejemplo: 1,2,3,4,5;).', 'es', 'yum'),
('Predefined values (example: 1, 2, 3, 4, 5;).', 'Vordefinierter Bereich (z.B. 1, 2, 3, 4, 5),', 'de', 'yum'),
('Preseve Profiles', 'Preservar Perfiles', 'es', 'yum'),
('Preseve Profiles', 'Profile aufbewahren', 'de', 'yum'),
('Price', 'Precio', 'es', 'yum'),
('Price', 'Preis', 'de', 'yum'),
('Privacy', 'Privacidad', 'es', 'yum'),
('Privacy', 'Privatsphäre', 'de', 'yum'),
('Privacy settings', 'Configuración de Privacidad', 'es', 'yum'),
('Privacysettings', 'Configuración de Privacidad', 'es', 'yum'),
('Privacy settings for {username}', 'Configuración de Privacidad para {username}', 'es', 'yum'),
('Privacy settings for {username}', 'Privatsphäreneinstellungen für {username}', 'de', 'yum'),
('Privacy settings', 'Privatsphäre', 'de', 'yum'),
('Privacysettings', 'Privatsphäre', 'de', 'yum'),
('private', 'privado', 'es', 'yum'),
('private', 'Privat', 'de', 'yum'),
('Profile Comments', 'COmentarios de perfil', 'es', 'yum'),
('Profile Comments', 'Pinnwand', 'de', 'yum'),
('Profile field {fieldname}', 'Campo de perfil {fieldname}', 'es', 'yum'),
('Profile field {fieldname}', 'Profilfeld {fieldname}', 'de', 'yum'),
('Profile field groups', 'Grupos de campos de perfil', 'es', 'yum'),
('Profile field groups', 'Profilfeldgruppen', 'de', 'yum'),
('Profile field public options', 'Einstellungen der Profilfelder', 'de', 'yum'),
('Profile field public options', 'Opciones de campo de perfil p', 'es', 'yum'),
('Profile fields', 'Campos de perfil', 'es', 'yum'),
('Profile Fields', 'Campos de Perfil', 'es', 'yum'),
('Profile fields groups', 'Grupos de campos de perfil', 'es', 'yum'),
('Profile fields groups', 'Profilfeldgruppen', 'de', 'yum'),
('Profile Fields', 'Profilfelder', 'de', 'yum'),
('Profile fields', 'Profilfeldverwaltung', 'de', 'yum'),
('Profile history', 'Historial del perfil', 'es', 'yum'),
('Profile history', 'Profilverlauf', 'de', 'yum'),
('Profile number', 'Número de perfil', 'es', 'yum'),
('Profile number', 'Profilnummer: ', 'de', 'yum'),
('Profile of ', 'Perfil de', 'es', 'yum'),
('Profile of ', 'Profil von ', 'de', 'yum'),
('Profile', 'Perfil', 'es', 'yum'),
('Profile', 'Profil', 'de', 'yum'),
('Profiles', 'Perfiles', 'es', 'yum'),
('Profiles', 'Profile', 'de', 'yum'),
('Profile visits', 'Profilbesuche', 'de', 'yum'),
('Profile visits', 'Visitas del perfil', 'es', 'yum'),
('protected', 'Geschützt', 'de', 'yum'),
('protected', 'protegido', 'es', 'yum'),
('public', 'Öffentlich', 'de', 'yum'),
('public', 'público', 'es', 'yum'),
('Range', 'Bereich', 'de', 'yum'),
('Range', 'Rango', 'es', 'yum'),
('Read Only Profiles', 'Nur-Lese Profile', 'de', 'yum'),
('Read Only Profiles', 'Perfiles de Sólo Lectura', 'es', 'yum'),
('Receive a Email for new Friendship request', 'E-Mail Benachrichtigung bei neuer Kontaktanfrage', 'de', 'yum'),
('Receive a Email for new Friendship request', 'Recibir un correo cuando recibas una nueva solicitud de amistad', 'es', 'yum'),
('Receive a Email when a new profile comment was made', 'E-Mail Benachrichtigung bei Profilkommentar', 'de', 'yum'),
('Receive a Email when a new profile comment was made', 'Recibir un correo cuando comenten en tu perfil', 'es', 'yum'),
('Receive a Email when new Message arrives', 'E-Mail Benachrichtigung bei neuer interner Nachricht', 'de', 'yum'),
('Receive a Email when new Message arrives', 'Recibir un correo cuanto te llegue un nuevo mensaje', 'es', 'yum'),
('Registered users', 'Registrierte Benutzer', 'de', 'yum'),
('Registered users', 'Usuarios registrados', 'es', 'yum'),
('Registration date', 'Anmeldedatum', 'de', 'yum'),
('Registration date', 'Fecha de registro', 'es', 'yum'),
('Registration', 'Registrierung', 'de', 'yum'),
('Registration', 'Registro', 'es', 'yum'),
('Regular expression (example: "/^[A-Za-z0-9s,]+$/u").', 'Expresión regular (ejemplo: "/^[A-Za-z0-9s,]+$/u")', 'es', 'yum'),
('Regular expression (example: ''/^[A-Za-z0-9s,]+$/u'').', 'Regulärer Ausdruck (z. B.: ''/^[A-Za-z0-9s,]+$/u'')', 'de', 'yum'),
('Remember me next time', 'Angemeldet bleiben', 'de', 'yum'),
('Remember me next time', 'Recordarme la próxima vez', 'es', 'yum'),
('Remove Avatar', 'Borrar este Avatar', 'es', 'yum'),
('Remove Avatar', 'Profilbild entfernen', 'de', 'yum'),
('Remove comment', 'Borrar comentario', 'es', 'yum'),
('Remove comment', 'Kommentar entfernen', 'de', 'yum'),
('Remove', 'Entfernen', 'de', 'yum'),
('Remove friend', 'Borrar amigo', 'es', 'yum'),
('Remove friend', 'Freundschaft kündigen', 'de', 'yum'),
('Remove', 'Quitar', 'es', 'yum'),
('Reply', 'Antwort', 'de', 'yum'),
('Reply', 'Responder', 'es', 'yum'),
('Reply to Message', 'auf diese Nachricht antworten', 'de', 'yum'),
('Reply to message', 'Responder al mensaje', 'es', 'yum'),
('Reply to Message', 'Responder al Mensaje', 'es', 'yum'),
('Request friendship for user {username}', 'Kontaktanfrage für {username}', 'de', 'yum'),
('Request friendship for user {username}', 'Solicitar amistar al usuario {username}', 'es', 'yum'),
('Required', 'Benötigt', 'de', 'yum'),
('Required', 'Requerido', 'es', 'yum'),
('Restore', 'Recuperar', 'es', 'yum'),
('Restore', 'Wiederherstellen', 'de', 'yum'),
('Retyped password is incorrect', 'La contrase', 'es', 'yum'),
('Retyped password is incorrect', 'Wiederholtes Passwort ist nicht identisch', 'de', 'yum'),
('Retype password is incorrect.', 'Contraseña repetida incorrecta', 'es', 'yum'),
('Retype password is incorrect.', 'Wiederholtes Passwort ist falsch.', 'de', 'yum'),
('Retype password', 'Passwort wiederholen', 'de', 'yum'),
('Retype password', 'Repite la contraseña', 'es', 'yum'),
('Retype your new password', 'Vuelva a escribir su nueva contrase', 'es', 'yum'),
('Retype your new password', 'Wiederholen Sie Ihr neues Passwort', 'de', 'yum'),
('Role Administration', 'Administración de rol', 'es', 'yum'),
('Role Administration', 'Rollenverwaltung', 'de', 'yum'),
('Roles / Access control', 'Funciones y de control de acceso', 'es', 'yum'),
('Roles / Access control', 'Rollen / Zugangskontrolle', 'de', 'yum'),
('Roles', 'Roles', 'es', 'yum'),
('Roles', 'Rollen', 'de', 'yum'),
('Save', 'Guardar', 'es', 'yum'),
('Save payment type', 'Guardar el tipo de pago', 'es', 'yum'),
('Save payment type', 'Zahlungsart speichern', 'de', 'yum'),
('Save profile changes', 'Guardar los cambios de perfil', 'es', 'yum'),
('Save profile changes', 'Profiländerungen speichern', 'de', 'yum'),
('Save role', 'Guardar funci', 'es', 'yum'),
('Save role', 'Rolle speichern', 'de', 'yum'),
('Save', 'Sichern', 'de', 'yum'),
('Searchable', 'Investigable', 'es', 'yum'),
('Searchable', 'Suchbar', 'de', 'yum'),
('Search for username', 'B', 'es', 'yum'),
('Search for username', 'Suche nach Benutzer', 'de', 'yum'),
('Selectable on registration', 'Seleccionable en el registro', 'es', 'yum'),
('Selectable on registration', 'Während der Registrierung wählbar', 'de', 'yum'),
('Select a month', 'Monatsauswahl', 'de', 'yum'),
('Select a month', 'Seleccione un mes', 'es', 'yum'),
('Select multiple recipients by holding the CTRL key', 'Selecciona varios destinatarios manteniendo presionada la tecla CTRL', 'es', 'yum'),
('Select multiple recipients by holding the CTRL key', 'Wählen Sie mehrere Empfänger mit der STRG-Taste aus', 'de', 'yum'),
('Select the fields that should be public', 'Diese Felder sind öffentlich einsehbar', 'de', 'yum'),
('Select the fields that should be public', 'Seleccione los campos que deben ser p', 'es', 'yum'),
('Send a message to this User', 'Diesem Benutzer eine Nachricht senden', 'de', 'yum'),
('Send a message to this User', 'Enviar un mensaje a este Usuario', 'es', 'yum'),
('Send', 'Enviar', 'es', 'yum'),
('Send invitation', 'Enviar invitación', 'es', 'yum'),
('Send invitation', 'Kontaktanfrage senden', 'de', 'yum'),
('Send message notifier emails', 'Benachrichtigungen schicken', 'de', 'yum'),
('Send message notifier emails', 'Enviar mensaje de e-mail de notificación', 'es', 'yum'),
('Send', 'Senden', 'de', 'yum'),
('Sent at', 'Enviado al', 'es', 'yum'),
('Sent at', 'Gesendet am', 'de', 'yum'),
('Sent messages', 'Gesendete Nachrichten', 'de', 'yum'),
('Sent messages', 'Mensajes enviados', 'es', 'yum'),
('Separate usernames with comma to ignore specified users', 'Benutzernamen mit Komma trennen, um sie zu ignorieren', 'de', 'yum'),
('Separate usernames with comma to ignore specified users', 'Separa con coma los nombres de los usuarios que deseas ignorar', 'es', 'yum'),
('Set payment date to today', 'Establecer fecha de pago el d', 'es', 'yum'),
('Set payment date to today', 'Zahlungseingang bestätigen', 'de', 'yum'),
('Settings', 'Ajustes', 'es', 'yum'),
('Settings', 'Einstellungen', 'de', 'yum'),
('Settings profiles', 'Ajustes de perfiles', 'es', 'yum'),
('Settings profiles', 'Einstellungsprofile', 'de', 'yum'),
('Show activities', 'Mostrar las actividades', 'es', 'yum'),
('Show activities', 'Zeige Aktivitäten', 'de', 'yum'),
('Show administration Hierarchy', 'Hierarchie', 'de', 'yum'),
('Show administration Hierarchy', 'Mostrar jerarquía de administración', 'es', 'yum'),
('Show friends', 'Kontaktliste veröffentlichen', 'de', 'yum'),
('Show friends', 'Mostrar amigos', 'es', 'yum'),
('Show my online status to everyone', 'Meinen Online-Status veröffentlichen', 'de', 'yum'),
('Show my online status to everyone', 'Mostrar mi estado de conexi', 'es', 'yum'),
('Show online status', 'Mostrar estado de conexi', 'es', 'yum'),
('Show online status', 'Online-Status anzeigen', 'de', 'yum'),
('Show permissions', 'Berechtigungen anzeigen', 'de', 'yum'),
('Show permissions', 'Mostrar permisos', 'es', 'yum'),
('Show profile visits', 'Mostrar perfil de visitas', 'es', 'yum'),
('Show profile visits', 'Profilbesuche anzeigen', 'de', 'yum'),
('Show roles', 'Mostrar roles', 'es', 'yum'),
('Show roles', 'Rollen anzeigen', 'de', 'yum'),
('Show the owner when i visit his profile', 'Dem Profileigentümer erkenntlich machen, wenn ich sein Profil besuche', 'de', 'yum'),
('Show the owner when i visit his profile', 'Mostrar el due', 'es', 'yum'),
('Show users', 'Benutzer anzeigen', 'de', 'yum'),
('Show users', 'Mostrar usuarios', 'es', 'yum'),
('Statistics', 'Benutzerstatistik', 'de', 'yum'),
('Statistics', 'Estadísticas', 'es', 'yum'),
('Status', 'Estado', 'es', 'yum'),
('Status', 'Status', 'de', 'yum'),
('Street', 'Calle', 'es', 'yum'),
('Street', 'Straße', 'de', 'yum'),
('Subject', 'Tema', 'es', 'yum'),
('Subject', 'Titel', 'de', 'yum'),
('Success', 'Erfolgreich', 'de', 'yum'),
('Success', 'Exitoso', 'es', 'yum'),
('Superuser', 'Superuser', 'de', 'yum'),
('Superuser', 'Superusuario', 'es', 'yum'),
('Text Email Activation', 'Text Email Konto-Aktivierung', 'de', 'yum'),
('Text Email Activation', 'Texto de activación por correo', 'es', 'yum'),
('Text Email Recovery', 'Text E-Mail Passwort wiederherstellen', 'de', 'yum'),
('Text Email Recovery', 'Texto de recuperación de contraseña por correo', 'es', 'yum'),
('Text Email Registration', 'Text E-Mail Registrierung', 'de', 'yum'),
('Text Email Registration', 'Texto de registro por correo', 'es', 'yum'),
('Text for new friendship request', 'Text für eine neue Kontaktanfrage', 'de', 'yum'),
('Text for new friendship request', 'Text für eine neue Kontaktanfrage', 'es', 'yum'),
('Text for new profile comment', 'Text für neuen Profilkommentar', 'de', 'yum'),
('Text for new profile comment', 'Text für neuen Profilkommentar', 'es', 'yum'),
('Text Login Footer', 'Text im Login-footer', 'de', 'yum'),
('Text Login Footer', 'Text im Login-footer', 'es', 'yum'),
('Text Login Header', 'Text im Login-header', 'de', 'yum'),
('Text Login Header', 'Text im Login-header', 'es', 'yum'),
('Text Registration Footer', 'Text im Registrierung-footer', 'de', 'yum'),
('Text Registration Footer', 'Text im Registrierung-footer', 'es', 'yum'),
('Text Registration Header', 'Text im Registrierung-header', 'de', 'yum'),
('Text Registration Header', 'Text im Registrierung-header', 'es', 'yum'),
('Text translations', 'Traducciones de texto', 'es', 'yum'),
('Text translations', 'Übersetzungstexte', 'de', 'yum'),
('Text translations', 'Traduction des textes', 'fr', 'yum'),
('Thank you for your registration. Please check your email.', 'Gracias por su registro. Por favor revise su email.', 'es', 'yum'),
('Thank you for your registration. Please check your email or login.', 'Gracias por su registro. Por favor, compruebe su correo electr', 'es', 'yum'),
('Thank you for your registration. Please check your email or login.', 'Vielen Dank für Ihre Anmeldung. Bitte überprüfen Sie Ihre E-Mails oder loggen Sie sich ein.', 'de', 'yum'),
('Thank you for your registration. Please check your email.', 'Vielen Dank für Ihre Anmeldung. Bitte überprüfen Sie Ihre E-Mails.', 'de', 'yum'),
('The comment has been saved', 'Der Kommentar wurde gespeichert', 'de', 'yum'),
('The comment has been saved', 'Der Kommentar wurde gespeichert', 'es', 'yum'),
('The file "{file}" is not an image.', 'Die Datei {file} ist kein Bild.', 'de', 'yum'),
('The file "{file}" is not an image.', 'Este archivo {file} no es una imagen.', 'es', 'yum'),
('The friendship request has been sent', 'Die Kontaktanfrage wurde gesendet', 'de', 'yum'),
('The friendship request has been sent', 'La solicitud de amistad ha sido enviado', 'es', 'yum'),
('The image "{file}" height should be "{height}px".', 'Die Datei {file} muss genau {height}px hoch sein.', 'de', 'yum'),
('The image "{file}" height should be "{height}px".', 'La imagen {file} debe tener {height}px de largo.', 'es', 'yum'),
('The image "{file}" width should be "{width}px".', 'Die Datei {file} muss genau {width}px breit sein.', 'de', 'yum'),
('The image "{file}" width should be "{width}px".', 'La imagen {file} debe tener {width}px de ancho.', 'es', 'yum'),
('The image has been resized to {max_pixel}px width successfully', 'Das Bild wurde beim hochladen automatisch auf eine Breite von {max_pixel} skaliert', 'de', 'yum'),
('The image has been resized to {max_pixel}px width successfully', 'La imagen ha sido redimensionada a {max_pixel} px de ancho con ', 'es', 'yum'),
('The image should have at least 50px and a maximum of 200px in width and height. Supported filetypes are .jpg, .gif and .png', 'das Bild sollte mindestens 50px und maximal 200px in der Höhe und Breite betragen. Mögliche Dateitypen sind .jpg, .gif und .png', 'de', 'yum'),
('The image should have at least 50px and a maximum of 200px in width and height. Supported filetypes are .jpg, .gif and .png', 'La imagen debe tener un mínimo de 50px y un máximo de 200px de ancho y largo. Los tipos de archivo soportados son .jpg, .gif y .png', 'es', 'yum'),
('The image was uploaded successfully', 'Das Bild wurde erfolgreich hochgeladen', 'de', 'yum'),
('The image was uploaded successfully', 'La imagen se ha carregado correctamente', 'es', 'yum'),
('The messages for your application language are not defined.', 'Los mensajes para el idioma de tu aplicación no están definidos', 'es', 'yum'),
('The minimum value of the field (form validator).', 'El valor mínimo del campo (validador de formulario)', 'es', 'yum'),
('The minimum value of the field (form validator).', 'Minimalwert des Feldes (Form-Validierung', 'de', 'yum'),
('The new password has been saved', 'Das neue Passwort wurde gespeichert.', 'de', 'yum'),
('The new password has been saved', 'La nueva contrase', 'es', 'yum'),
('The new password has been saved.', 'La nueva contraseña ha sido guardada', 'es', 'yum'),
('There are {active_users} active and {inactive_users} inactive users in your System, from which {admin_users} are Administrators.', ' Es gibt {active_users} aktive und {inactive_users} inaktive Benutzer in ihrem System, von denen {admin_users} Benutzer Administratoren sind.', 'de', 'yum'),
('There are {active_users} active and {inactive_users} inactive users in your System, from which {admin_users} are Administrators.', 'Hay {active_users} usuarios activos y {inactive_users} usuarios inactivos en su sistema, de los cuales {admin_users} son Administradores.', 'es', 'yum'),
('There are a total of {messages} messages in your System.', 'Es gibt in ihrem System insgesamt {messages} Nachrichten.', 'de', 'yum'),
('There are a total of {messages} messages in your System.', 'Hay un total de {messages} mensajes en su sistema.', 'es', 'yum'),
('There are {profiles} profiles in your System. These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups', 'Es gibt {profiles} Profile in ihren System. Diese bestehen aus {profile_fields} Profilfeldern, die sich in {profile_field_groups} Profilfeldgruppen aufteilen.', 'de', 'yum'),
('There are {profiles} profiles in your System. These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups', 'Hay {profiles} perfiles en su sistema. Estos consisten de {profile_fields} campos de perfiles en {profile_field_groups} grupos de campos de perfiles', 'es', 'yum'),
('There are {roles} roles in your System.', 'Es gibt {roles} Rollen in ihrem System', 'de', 'yum'),
('There are {roles} roles in your System.', 'Hay {roles} roles en su sistema.', 'es', 'yum'),
('There was an error saving the password', 'Fehler beim speichern des Passwortes', 'de', 'yum'),
('There was an error saving the password', 'Hubo un error al guardar la contrase', 'es', 'yum'),
('These users have a ordered memberships of this role', 'Diese Benutzer haben eine Mitgliedschaft in dieser Rolle', 'de', 'yum'),
('These users have been assigned to this Role', 'Diese Nutzer gehören dieser Rolle an: ', 'de', 'yum'),
('These users have been assigned to this role', 'Dieser Rolle gehören diese Benutzer an', 'de', 'yum'),
('These users have commented your profile recently', 'Diese Benutzer haben mein Profil kürzlich kommentiert', 'de', 'yum'),
('These users have visited my profile', 'Diese Benutzer haben mein Profil besucht', 'de', 'yum'),
('These users have visited your profile recently', 'Diese Benutzer haben kürzlich mein Profil besucht', 'de', 'yum'),
('The value of the default field (database).', 'El valor predeterminado del campo (base de datos).', 'es', 'yum'),
('The value of the default field (database).', 'Standard-Wert für die Datenbank', 'de', 'yum'),
('This account is blocked.', 'Esta cuenta está bloqueada.', 'es', 'yum'),
('This account is blocked.', 'Ihr Konto wurde blockiert.', 'de', 'yum'),
('This account is not activated.', 'Esta cuenta no está activada.', 'es', 'yum'),
('This account is not activated.', 'Ihr Konto wurde nicht aktiviert.', 'de', 'yum'),
('This membership is still active {days} days', 'Die Mitgliedschaft ist noch {days} Tage aktiv', 'de', 'yum'),
('This membership is still {days} days active', 'Esta membres', 'es', 'yum'),
('This message will be sent to {username}', 'Diese Nachricht wird an {username} versandt', 'de', 'yum'),
('This message will be sent to {username}', 'Este mensaje será enviado a {username}', 'es', 'yum'),
('This role can administer users of this roles', 'Este rol puede administrar usuarios de estos roles', 'es', 'yum'),
('This user belongs to these roles:', 'Benutzer gehört diesen Rollen an:', 'de', 'yum'),
('This user belongs to these roles:', 'Este usuario pertenece a estos roles:', 'es', 'yum'),
('This user can administer this users:', 'Benutzer kann diese Benutzer verwalten:', 'de', 'yum'),
('This user can administer this users', 'Dieser Benutzer kann diese Nutzer administrieren', 'de', 'yum'),
('This user can administer this users:', 'Este usuario puede administrar estos usuarios:', 'es', 'yum'),
('This user can administer this users', 'Este usuario puede administrar estos usuarios', 'es', 'yum'),
('This user''s email adress already exists.', 'Der Benutzer E-Mail-Adresse existiert bereits.', 'de', 'yum'),
("This user's email adress already exists.", 'La dirección de e-mail de este usuario ya existe.', 'es', 'yum'),
('This users have a ordered memberships of this role', 'Estos usuarios tienen una membres', 'es', 'yum'),
('This users have been assigned to this role', 'Este usuario ha sido asignado a este rol', 'es', 'yum'),
('This users have been assigned to this Role', 'Este usuario ha sido asignado a este Rol', 'es', 'yum'),
('This users have commented your profile recently', 'Estos usuarios han comentado su perfil recientemente', 'es', 'yum'),
('This users have visited my profile', 'Estos usuarios han visitado mi perfil', 'es', 'yum'),
('This users have visited your profile recently', 'Estos usuarios han visitado tu perfil recientemente', 'es', 'yum'),
('This user''s name already exists.', 'Der Benutzer Name existiert bereits.', 'de', 'yum'),
("This user's name already exists.", 'Este nombre de usuario ya existe.', 'es', 'yum'),
('Time left', 'Tiempo restante', 'es', 'yum'),
('Time left', 'Zeit übrig', 'de', 'yum'),
('Time sent', 'Gesendet am', 'de', 'yum'),
('Time sent', 'Hora de envío', 'es', 'yum'),
('timestamp', 'marca de tiempo', 'es', 'yum'),
('timestamp', 'Zeitstempel', 'de', 'yum'),
('Title', 'Titel', 'de', 'yum'),
('Title', 'Título', 'es', 'yum'),
('To', 'An', 'de', 'yum'),
('To', 'Para', 'es', 'yum'),
('translations have been saved', 'Die Übersetzungen wurden gespeichert', 'de', 'yum'),
('translations have been saved', 'Las traducciones han sido salvadas', 'es', 'yum'),
('translation', 'Traducción', 'es', 'yum'),
('translation', 'Übersetzung', 'de', 'yum'),
('Try again', 'Erneut versuchen', 'de', 'yum'),
('Try again', 'Intenta de nuevo', 'es', 'yum'),
('Update', 'Actualizar', 'es', 'yum'),
('Update', 'Bearbeiten', 'de', 'yum'),
('Update my profile', 'Actualizar mi perfil', 'es', 'yum'),
('Update my profile', 'Mein Profil bearbeiten', 'de', 'yum'),
('Update payment', 'Actualizar el pago', 'es', 'yum'),
('Update payment', 'Zahlungsart bearbeiten', 'de', 'yum'),
('Update Profile Field', 'Actualizar Campo del Perfil', 'es', 'yum'),
('Update Profile Field', 'Profilfeld bearbeiten', 'de', 'yum'),
('Update role', 'Actualizar rol', 'es', 'yum'),
('Update role', 'Rolle bearbeiten', 'de', 'yum'),
('Update user', 'Actualizar usuario', 'es', 'yum'),
('Update User', 'Actualizar Usuario', 'es', 'yum'),
('Update user', 'Benutzer bearbeiten', 'de', 'yum'),
('Update User', 'Benutzer bearbeiten', 'de', 'yum'),
('Upload avatar image', 'Cargar imagen de perfil', 'es', 'yum'),
('Upload avatar image', 'Profilbild hochladen', 'de', 'yum'),
('Upload avatar', 'Profilbild hochladen', 'de', 'yum'),
('Upload avatar', 'Subir un avatar', 'es', 'yum'),
('Upload Avatar', 'Subir un Avatar', 'es', 'yum'),
('Use my Gravatar', 'Meinen Gravatar benutzen', 'de', 'yum'),
('Use my Gravatar', 'Usar mi Gravatar', 'es', 'yum'),
('User activation', 'Activación de usuario', 'es', 'yum'),
('User activation', 'User-Aktivierung', 'de', 'yum'),
('User Administration', 'Administración de usuario', 'es', 'yum'),
('User Administration', 'Benutzerverwaltung', 'de', 'yum'),
('User administration Panel', 'Benutzerkontrollzentrum', 'de', 'yum'),
('User administration panel', 'Kontrollzentrum', 'de', 'yum'),
('User administration panel', 'Panel de administración de usuario', 'es', 'yum'),
('User administration Panel', 'Panel de administración de usuario', 'es', 'yum'),
('User belongs to Roles', 'Benutzer gehört diesen Rollen an', 'de', 'yum'),
('User belongs to Roles', 'El usuario pertenece al los Roles', 'es', 'yum'),
('User belongs to these roles', 'Benutzer gehört diesen Rollen an', 'de', 'yum'),
('User belongs to these roles', 'El usuario pertenece a estos roles', 'es', 'yum'),
('User', 'Benutzer', 'de', 'yum'),
('User can not administer any users', 'El usuario no puede administrar ningún usuario', 'es', 'yum'),
('User can not administer any users', 'Kann keine Benutzer verwalten', 'de', 'yum'),
('User can not administer any users of any role', 'El usuario no puede administrar ningún usuario o ningún rol', 'es', 'yum'),
('User can not administer any users of any role', 'Kann keine Rollen verwalten', 'de', 'yum'),
('Usergroups', 'Benutzergruppen', 'de', 'yum'),
('Usergroups', 'Grupos del usuario', 'es', 'yum'),
('User is Online!', 'Benutzer ist Online!', 'de', 'yum'),
('User is Online!', 'El usuario est', 'es', 'yum'),
('User Management Home', 'Administración de usuario', 'es', 'yum'),
('User Management Home', 'Benutzerverwaltung Startseite', 'de', 'yum'),
('User Management settings configuration', 'Ajustes de configuración de la Administración de usuarios', 'es', 'yum'),
('User Management settings configuration', 'Einstellungen', 'de', 'yum'),
('User module settings', 'Ajustes del módulo de usuario', 'es', 'yum'),
('User module settings', 'Moduleinstellungen', 'de', 'yum'),
('username', 'Benutzername', 'de', 'yum'),
('Username', 'Benutzername', 'de', 'yum'),
('Username is incorrect.', 'Benutzername ist falsch.', 'de', 'yum'),
('Username is incorrect.', 'Nombre de usuario incorrecto', 'es', 'yum'),
('username or email', 'Benutzername oder E-Mail Adresse', 'de', 'yum'),
('Username or email', 'Benutzername oder E-Mail', 'de', 'yum'),
('Username or Email', 'Benutzername oder E-mail', 'de', 'yum'),
('Username or email', 'Nombre de usuario o correo electr', 'es', 'yum'),
('username or email', 'nombre de usuario o email', 'es', 'yum'),
('Username or Email', 'Nombre de usuario o Email', 'es', 'yum'),
('Username or Password is incorrect', 'Benutzername oder Passwort ist falsch', 'de', 'yum'),
('Username or Password is incorrect', 'Usuario o contraseña incorrectos', 'es', 'yum'),
('username', 'usuario', 'es', 'yum'),
('Username', 'Usuario', 'es', 'yum'),
('User Operations', 'Benutzeraktionen', 'de', 'yum'),
('User Operations', 'Operaciones de usuario', 'es', 'yum'),
('Users: ', 'Benutzer: ', 'de', 'yum'),
('Users: ', 'Usuarios:', 'es', 'yum'),
('Users', 'Usuarios', 'es', 'yum'),
('User', 'Usuario', 'es', 'yum'),
('Variable name', 'Nombre de variable', 'es', 'yum'),
('Variable name', 'Variablen name', 'de', 'yum'),
('Verification code', 'Código de verificación', 'es', 'yum'),
('Verification code', 'Verifizierung', 'de', 'yum'),
('verifyPassword', '<PASSWORD>', 'de', 'yum'),
('verifyPassword', 'verifique su contrase', 'es', 'yum'),
('View admin messages', 'Administratornachrichten anzeigen', 'de', 'yum'),
('View admin messages', 'Ver mensajes de admin', 'es', 'yum'),
('View', 'Anzeigen', 'de', 'yum'),
('View Details', 'Ver detalles', 'es', 'yum'),
('View Details', 'Zur Gruppe', 'de', 'yum'),
('View my messages', 'Meine Nachrichten ansehen', 'de', 'yum'),
('View my messages', 'Ver mis mensajes', 'es', 'yum'),
('View User', 'Benutzer anzeigen', 'de', 'yum'),
('View users', 'Benutzer anzeigen', 'de', 'yum'),
('View users', 'Ver usuarios', 'es', 'yum'),
('View user "{username}"', 'Benutzer "{username}"', 'de', 'yum'),
('View user "{username}"', 'Ver usuario "{username}"', 'es', 'yum'),
('View User', 'Ver Usuario', 'es', 'yum'),
('View', 'Ver', 'es', 'yum'),
('Visible', 'Sichtbar', 'de', 'yum'),
('Visible', 'Visible', 'es', 'yum'),
('Visit profile', 'Profil besuchen', 'de', 'yum'),
('Visit profile', 'Ver el perfil', 'es', 'yum'),
('When selecting searchable, users of this role can be searched in the "user Browse" function', 'Al seleccionar b', 'es', 'yum'),
('When selecting searchable, users of this role can be searched in the "user Browse" function', 'Wenn "suchbar" ausgewählt wird, kann man Nutzer dieser Rolle in der "Benutzer durchsuchen"-Funktion suchen', 'de', 'yum'),
('Write a comment', 'Escribir un comentario', 'es', 'yum'),
('Write a comment', 'Kommentar hinterlassen', 'de', 'yum'),
('Write a message', 'Escribir un mensaje', 'es', 'yum'),
('Write a message', 'Nachricht schreiben', 'de', 'yum'),
('Write a message to this User', 'Diesem Benutzer eine Nachricht schreiben', 'de', 'yum'),
('Write a message to this User', 'Escribir un mensaje a este Usuario', 'es', 'yum'),
('Write a message to {username}', 'Escribir un mensaje a {username}', 'es', 'yum'),
('Write a message to {username}', 'Nachricht an {username} schreiben', 'de', 'yum'),
('Write another message', 'Eine weitere Nachricht schreiben', 'de', 'yum'),
('Write another message', 'Escribir otro mensaje', 'es', 'yum'),
('Write comment', 'Escribir comentario', 'es', 'yum'),
('Write comment', 'Kommentar schreiben', 'de', 'yum'),
('Write message', 'Escribir un mensaje', 'es', 'yum'),
('Write message', 'Nachricht schreiben', 'de', 'yum'),
('Written at', 'Escrito el', 'es', 'yum'),
('Written at', 'Geschrieben am', 'de', 'yum'),
('Written from', 'Escrito por', 'es', 'yum'),
('Written from', 'Geschrieben von', 'de', 'yum'),
('Wrong password confirmation! Account was not deleted', '¡Contraseña para confirmación incorrecta! Lacuenta no ha sido eliminada', 'es', 'yum'),
('Wrong password confirmation! Account was not deleted', 'Falsches Bestätigugspasswort! Zugang wurde nicht gelöscht', 'de', 'yum'),
('Yes and show on registration form', 'Ja, und auf Registrierungsseite anzeigen', 'de', 'yum'),
('Yes and show on registration form', 'Si y mostrar en formulario de registro', 'es', 'yum'),
('Yes', 'Ja', 'de', 'yum'),
('yes', 'Ja, diese Daten veröffentlichen', 'de', 'yum'),
('yes', 's', 'es', 'yum'),
('Yes', 'Sí', 'es', 'yum'),
('You account is activated.', 'Ihr Konto wurde aktiviert.', 'de', 'yum'),
('You account is activated.', 'Su cuenta está activada.', 'es', 'yum'),
('You account is active.', 'Ihr Konto ist aktiv.', 'de', 'yum'),
('You account is active.', 'Su cuenta está activa.', 'es', 'yum'),
('You already are friends', 'Ihr seid bereits Freunde', 'de', 'yum'),
('You already are friends', 'Ya son amigos', 'es', 'yum'),
('You are not allowed to view this profile.', 'No tiene permiso para ver este perfil.', 'es', 'yum'),
('You are not allowed to view this profile.', 'Sie dürfen dieses Profil nicht ansehen.', 'de', 'yum'),
('You are running the Yii User Management Module {version} in Debug Mode!', 'Dies ist das Yii-User-Management Modul in Version {version} im Debug Modus!', 'de', 'yum'),
('You are running the Yii User Management Module {version} in Debug Mode!', '¡Está ejecutando el Módulo de Administración de Usuarios Yii {version} en modo de depuración!', 'es', 'yum'),
('You do not have any friends yet', 'Ihre Kontaktliste ist leer', 'de', 'yum'),
('You do not have any friends yet', 'No tienes ningún amigo todavía', 'es', 'yum'),
('You do not have set an avatar image yet', 'Aún no has subido tu imágen de Avatar', 'es', 'yum'),
('You do not have set an avatar image yet', 'Es wurde noch kein Profilbild hochgeladen', 'de', 'yum'),
('You have {count} new Messages !', 'Sie haben {count} neue Nachricht(en)!', 'de', 'yum'),
('You have {count} new Messages !', '¡Tienes {count} mensajes nuevos!', 'es', 'yum'),
('You have joined this group', 'Sie sind dieser Gruppe beigetreten', 'de', 'yum'),
('You have joined this group', 'Te has unido a este grupo', 'es', 'yum'),
('You have new messages!', 'Sie haben neue Nachrichten!', 'de', 'yum'),
('You have new Messages !', 'Sie haben neue Nachrichten !', 'de', 'yum'),
('You have new messages!', '¡Tienes mensajes nuevos!', 'es', 'yum'),
('You have new Messages !', '¡Tienes Mensajes nuevos!', 'es', 'yum'),
('You have no messages yet', 'Sie haben bisher noch keine Nachrichten', 'de', 'yum'),
('You have no messages yet', 'Usted no tiene mensajes a', 'es', 'yum'),
('Your Account has been activated. Thank you for your registration', 'Ihr Zugang wurde aktiviert. Danke für die Registierung', 'de', 'yum'),
('Your account has been activated. Thank you for your registration', 'Ihr Zugang wurde aktiviert. Danke für ihre Registrierung', 'de', 'yum'),
('Your account has been activated. Thank you for your registration', 'Su cuenta ha sido activada. Gracias por su inscripci', 'es', 'yum'),
('Your Account has been activated. Thank you for your registration', 'Su cuenta ha sido activada. Gracias por su inscripci', 'es', 'yum'),
('Your account has been activated. Thank you for your registration.', 'Tu cuenta ha sido activada. Gracias por registrarte.', 'es', 'yum'),
('Your account has been activated.', 'Tu cuenta ha sido activada.', 'es', 'yum'),
('Your account has been deleted.', 'Ihr Zugang wurde gelöscht', 'de', 'yum'),
('Your account has been deleted.', ' Su cuenta ha sido borrada.', 'es', 'yum'),
('Your activation succeeded', '', 'es', 'yum'),
('Your activation succeeded', 'Ihre Aktivierung war erfolgreich', 'de', 'yum'),
('Your Avatar image', 'Ihr Avatar-Bild', 'de', 'yum'),
('Your Avatar image', 'Tu imagen de Avatar', 'es', 'yum'),
('Your changes have been saved', 'Ihre Änderungen wurden gespeichert', 'de', 'yum'),
('Your changes have been saved', 'Los cambios han sido guardados', 'es', 'yum'),
('Your current password', 'Ihr aktuelles Passwort', 'de', 'yum'),
('Your current password is not correct', 'Ihr aktuelles Passwort ist nicht korrekt', 'de', 'yum'),
('Your current password is not correct', 'Ihr aktuelles Passwort ist nicht korrekt', 'de', 'yum'),
('Your current password is not correct', 'Su contrase', 'es', 'yum'),
('Your current password', 'Su contrase', 'es', 'yum'),
('Your friendship request has been accepted', 'Ihre Freundschaftsanfrage wurde akzeptiert', 'de', 'yum'),
('Your friendship request has been accepted', 'Su solicitud de amistad ha sido aceptada', 'es', 'yum'),
('Your message has been sent', 'El mensaje ha sido enviado', 'es', 'yum'),
('Your Message has been sent.', 'El Mensaje ha sido enviado.', 'es', 'yum'),
('Your message has been sent', 'Ihre Nachricht wurde gesendet', 'de', 'yum'),
('Your new password has been saved.', 'Ihr Passwort wurde gespeichert.', 'de', 'yum'),
('Your new password has been saved.', 'La nueva contraseña ha sido guardada.', 'es', 'yum'),
('Your password has expired. Please enter your new Password below:', 'Ihr Passwort ist abgelaufen. Bitte geben Sie ein neues Passwort an:', 'de', 'yum'),
('Your password has expired. Please enter your new Password below:', 'La contraseña ha expirado. Por favor escribe una contraseña nueva abajo:', 'es', 'yum'),
('Your privacy settings have been saved', 'Ihre Privatsphären-einstellungen wurden gespeichert', 'de', 'yum'),
('Your privacy settings have been saved', 'Sus opciones de privacidad se han salvado', 'es', 'yum'),
('Your profile', 'Ihr Profil', 'de', 'yum'),
('Your profile', 'Tu perfil', 'es', 'yum'),
("Your registration didn't work. Please try another E-Mail address. If this problem persists, please contact our System Administrator. ", 'Tu proceso de registro falló. Por favor intenta con otra cuenta de correo. Si el problema persiste por favor contáctanos.', 'es', 'yum'),
('Your request succeeded. Please enter below your new password:', 'Tu solicitud fué exitosa. Por favor, escribe a continuación tu nueva contraseña:', 'es', 'yum'),
('zipcode', 'c', 'es', 'yum'),
('Yii-user-management is already installed. Please remove it manually to continue', 'Yii-user-management ist bereits installiert. Bitte löschen Sie es manuell, um fortzufahren', 'de', 'yum'),
('Automatically extend subscription', 'Mitgliedschaft automatisch verlängern', 'de', 'yum'),
('Cancel subscription', 'Mitgliedschaft beenden', 'de', 'yum'),
('When the membership expires', 'Wenn die Mitgliedschaft abläuft', 'de', 'yum'),
('Payment type', 'Zahlungstyp', 'de', 'yum'),
('Upgrade to {role}', 'Wechsle auf {role}', 'de', 'yum'),
('Downgrade to {role}', 'Wechsle auf {role}', 'de', 'yum'),
('Your subscription setting has been saved', 'Ihre Einstellungen wurden gespeichert', 'de', 'yum'),
('New message from {from}: {subject}', 'Neue Nachricht von {from}: {subject}', 'de', 'yum'),
('Click here to respond to {username}', 'Klicke hier, um {username} zu antworten', 'de', 'yum'),
('zipcode', 'Postleitzahl', 'de', 'yum'),
('About','A propos','fr','yum'),
('About','Info','it','yum'),
('About','Info','pl','yum'),
('Access control','Controle d\'accès','fr','yum'),
('Access control','Controllo accesso','it','yum'),
('Action','Action','fr','yum'),
('Action','Azione','it','yum'),
('Actions','Actions','fr','yum'),
('Actions','Azioni','it','yum'),
('Activated','Première activation de votre compte','fr','yum'),
('Activated','Attivato','it','yum'),
('Active','Actif','fr','yum'),
('Active','Attiv','it','yum'),
('Active','Aktiv','pl','yum'),
('Active','Активирован','ru','yum'),
('Active - First visit','Actif - Première visite','fr','yum'),
('Active - First visit','Attivo - Priva visita','it','yum'),
('Active users','Utiliateurs actifs','fr','yum'),
('Active users','Utenti attivi','it','yum'),
('Active users','Aktywni uzytkownicy','pl','yum'),
('Activities','Activités','fr','yum'),
('Activities','Attivita','it','yum'),
('Add as a friend','Ajouter à ma liste de contact','fr','yum'),
('Add as a friend','Aggiungi un contatto','it','yum'),
('Admin inbox','Boîte aux lettres de l\'administrateur','fr','yum'),
('Admin inbox','Admin - Posta in arrivo','it','yum'),
('Admin inbox','Zarzadzaj skrzynka odbiorcza','pl','yum'),
('Admin sent messages','E-mail Envoyé par l administrateur','fr','yum'),
('Admin sent messages','Admin - Messaggi inviati','it','yum'),
('Admin sent messages','Wiadomosci wyslane przez administratora','pl','yum'),
('Admin users','Administrateur','fr','yum'),
('Admin users','Utenti admin','it','yum'),
('Admin users','Administratorzy','pl','yum'),
('Admin users can not be deleted!','Un compte administrateur ne peut pas etre supprimé','fr','yum'),
('Admin users can not be deleted!','Utente admin non cancellabile!','it','yum'),
('Admin users can not be deleted!','Nie mozna usunac konta administratora','pl','yum'),
('All','Tous','fr','yum'),
('All','Tutto','it','yum'),
('Allow profile comments','Autoriser les commentaires de profil','fr','yum'),
('Allow profile comments','Consenti commenti profili','it','yum'),
('Allowed are lowercase letters and digits.','Seules les minuscule et les chiffres sont autorisés.','fr','yum'),
('Allowed are lowercase letters and digits.','Sono consentiti lettere minuscole e numeri.','it','yum'),
('Allowed are lowercase letters and digits.','Erlaubt sind Kleinbuchstaben und Ziffern.','pl','yum'),
('Allowed lowercase letters and digits.','Consenti lettere minuscole e numeri.','it','yum'),
('Allowed lowercase letters and digits.','Допускаются строчные буквы и цифры.','ru','yum'),
('Allowed roles','Rôles autorisés','fr','yum'),
('Allowed roles','Ruoli autorizzati','it','yum'),
('Allowed roles','Dostepne role','pl','yum'),
('Allowed users','Utilisateurs autorisés','fr','yum'),
('Allowed users','Utenti autorizzati','it','yum'),
('Allowed users','Dostepni uzytkownicy','pl','yum'),
('Already exists.','Existe déjà.','fr','yum'),
('Already exists.','Gia esistente','it','yum'),
('Already exists.','Existiert bereits.','pl','yum'),
('Already exists.','Уже существует.','ru','yum'),
('An error occured while saving your changes','Une erreur est survenue durant la sauvegarde.','fr','yum'),
('An error occured while saving your changes','Si e verificato un errore durante il salvataggio delle modifiche.','it','yum'),
('An error occured while saving your changes','Wystapil blad podczas zapisywania Twoich zmian.','pl','yum'),
('An error occured while uploading your avatar image','Une erreur est survenue lors du chargement de votre photo de profil','fr','yum'),
('An error occured while uploading your avatar image','Si e verificato un errore durante il caricamento dell''immagine','it','yum'),
('Appear in search','Je souhaite apparaitre dans les resultats de recherche','fr','yum'),
('Appear in search','Mostra nelle ricerche','it','yum'),
('Are you really sure you want to delete your Account?','Etes vous sur de vouloir supprimer votre compte?','fr','yum'),
('Are you really sure you want to delete your Account?','Sicuro di voler cancellare il tuo account?','it','yum'),
('Are you really sure you want to delete your Account?','Czy jestes pewien, ze chcesz usunac konto?','pl','yum'),
('Are you sure to delete this item?','Etes vous sur de supprimer cet element?','fr','yum'),
('Are you sure to delete this item?','Sicuro di cancellare questo elemento?','it','yum'),
('Are you sure to delete this item?','Вы действительно хотите удалить пользователя?','ru','yum'),
('Are you sure to remove this comment from your profile?','Etes vous sur de vouloir supprimer ce commentaire?','fr','yum'),
('Are you sure to remove this comment from your profile?','Sicuro di voler eliminare il commento dal tuo profilo?','it','yum'),
('Are you sure you want to remove this friend?','Etes vous sur de vouloir suprimer ce membre de votre liste de contact?','fr','yum'),
('Are you sure you want to remove this friend?','Sicuro di voler rimuovere questo contatto?','it','yum'),
('Assign this role to new users automatically','Role automatique pour un nouveau membre','fr','yum'),
('Assign this role to new users automatically','Assegna questo ruolo automaticamente ai nuovi utenti','it','yum'),
('Avatar image','Image de profil','fr','yum'),
('Avatar image','Avatar','it','yum'),
('Back','Retour','fr','yum'),
('Back','Indietro','it','yum'),
('Back to inbox','Retour à la boite mail','fr','yum'),
('Back to inbox','Torna alla posta in arrivo','it','yum'),
('Back to my Profile','Retour à mon profil','fr','yum'),
('Back to my Profile','Torna al mio profilo','it','yum'),
('Back to profile','Retour au profil','fr','yum'),
('Back to profile','Torna al mio profilo','it','yum'),
('Back to profile','Zuruck zum Profil','pl','yum'),
('Banned','Membre banni','fr','yum'),
('Banned','Bannato','it','yum'),
('Banned','Verbannt','pl','yum'),
('Banned','Заблокирован','ru','yum'),
('Banned users','Utilisateurs bannis','fr','yum'),
('Banned users','Utenti bannati','it','yum'),
('Banned users','Zbanowani uzytkownicy','pl','yum'),
('Browse logged user activities','Activités des membres','fr','yum'),
('Browse logged user activities','Naviga attivita utenti loggati','it','yum'),
('Browse memberships','Voir les adhésions','fr','yum'),
('Browse memberships','Naviga iscrizioni','it','yum'),
('Browse user activities','Activités de mon compte','fr','yum'),
('Browse user activities','Naviga attivita utenti','it','yum'),
('Browse user groups','Rechercher dans un groupe d\'utilisateurs','fr','yum'),
('Browse user groups','Naviga gruppi utenti','it','yum'),
('Browse usergroups','Rechercher dans les groupes','fr','yum'),
('Browse usergroups','Naviga gruppi utenti','it','yum'),
('Browse users','Rechercher dans la liste des membres','fr','yum'),
('Browse users','Naviga utenti','it','yum'),
('Cancel','Annuler','fr','yum'),
('Cancel','Cancella','it','yum'),
('Cancel deletion','Stopper la suppression','fr','yum'),
('Cancel deletion','Annulla cancellazione','it','yum'),
('Cancel deletion','Anuluj usuwanie','pl','yum'),
('Cancel request','Annuler la demande de contact','fr','yum'),
('Cancel request','Cancella richiesta','it','yum'),
('Change Password','Изменить пароль','ru','yum'),
('Change admin Password','Changer le mot de passe de l\'administrateur','fr','yum'),
('Change admin Password','Modifica password admin','it','yum'),
('Change admin Password','<PASSWORD>','pl','yum'),
('Change password','Modification du mot de passe','fr','yum'),
('Change password','Cambia password','it','yum'),
('Change password','<PASSWORD> and<PASSWORD>','pl','yum'),
('Changes','Modification','fr','yum'),
('Changes','Modifiche','it','yum'),
('Changes','Zmiany','pl','yum'),
('Changes are saved','Les modifications ont bien été enregistrées.','fr','yum'),
('Changes are saved','Modifiche salvate.','it','yum'),
('Changes are saved','Zmiany zostaly zapisane.','pl','yum'),
('Changes is saved.','Modifications enregistrées.','fr','yum'),
('Changes is saved.','Modifiche salvate','it','yum'),
('Changes is saved.','Изменения сохранены.','ru','yum'),
('Choose All','Selectionner tout','fr','yum'),
('Choose All','Scegli tutti','it','yum'),
('Choose All','Wybierz wszystkie','pl','yum'),
('City','Ville','fr','yum'),
('city','Ville','fr','yum'),
('City','Citta','it','yum'),
('City','Miasto','pl','yum'),
('Column Field type in the database.','Type de la colone dans la base de données','fr','yum'),
('Column Field type in the database.','Tipo di colonna nel database','it','yum'),
('Column Field type in the database.','Spaltentyp in der Datenbank','pl','yum'),
('Comment','Commentaire','fr','yum'),
('Comment','Commento','it','yum'),
('Compose','Ecrire un message','fr','yum'),
('Compose','Scrivi','it','yum'),
('Compose new message','Ecrire un nouveau message','fr','yum'),
('Compose new message','Scrivi nuovo messaggio','it','yum'),
('Composing new message','Ecrire un nouveau message','fr','yum'),
('Composing new message','Scrittura nuovo messaggio','it','yum'),
('Confirm','Confirmer','fr','yum'),
('Confirm','Conferma','it','yum'),
('Confirm deletion','Confirmation de suppression','fr','yum'),
('Confirm deletion','Conferma cancellazione','it','yum'),
('Confirm deletion','Potwierdz usuwanie','pl','yum'),
('Confirmation pending','Confirmation en attente','fr','yum'),
('Confirmation pending','In attesa di conferma','it','yum'),
('Content','Texte du message','fr','yum'),
('Content','Contenuto','it','yum'),
('Create','Créer','fr','yum'),
('Create','Aggiungi','it','yum'),
('Create','Dodaj','pl','yum'),
('Create','Новый','ru','yum'),
('Create Action','Crea azione','it','yum'),
('Create Profile Field','Nouveau champ de profil','fr','yum'),
('Create Profile Field','Aggiungi campo Profilo','it','yum'),
('Create Profile Field','Dodaj pole profilu','pl','yum'),
('Create Profile Field','Добавить','ru','yum'),
('Create Role','Créer un rôle','fr','yum'),
('Create Role','Crea ruolo','it','yum'),
('Create Role','Dodaj role','pl','yum'),
('Create User','Créer un nouvel utilisateur','fr','yum'),
('Create User','Nuovo utente','it','yum'),
('Create User','Новый','ru','yum'),
('Create Usergroup','Crea gruppo utenti','it','yum'),
('Create my profile','Crea profilo','it','yum'),
('Create new action','Nouvelle action','fr','yum'),
('Create new action','Nuova azione','it','yum'),
('Create new field group','Créer un nouveau champs dans le groupe','fr','yum'),
('Create new field group','Nuovo campo gruppo','it','yum'),
('Create new field group','Dodaj nowa grupe pol','pl','yum'),
('Create new payment type','Créer un nouveau mode de paiement','fr','yum'),
('Create new payment type','Nuovo tipo pagamento','it','yum'),
('Create new role','Créer un nouveau rôle','fr','yum'),
('Create new role','Nuovo ruolo','it','yum'),
('Create new role','Dodaj nowa role','pl','yum'),
('Create new settings profile','créer une nouvelle configuration de profil.','fr','yum'),
('Create new settings profile','Nuova opzion profilo','it','yum'),
('Create new settings profile','Dodaj nowe ustawienia profilu','pl','yum'),
('Create new user','Créer un nouvel utilisateur','fr','yum'),
('Create new User', 'Créer un nouvel utilisateur', 'fr', 'yum'),
('Create new user','Nuovo utente','it','yum'),
('Create new user','Dodaj nowego uzytkownika','pl','yum'),
('Create new usergroup','Créer un nouveau groupe','fr','yum'),
('Create new usergroup','Nuovo usergroup','it','yum'),
('Create payment type','Crea tipo pagamento','it','yum'),
('Create profile field','Créer un nouveau champ de profil','fr','yum'),
('Create profile field','Crea campo profilo','it','yum'),
('Create profile field','Dodaj pole do profilu','pl','yum'),
('Create profile fields group','Nuovo gruppo di campi profilo','it','yum'),
('Create profile fields group','Dodaj grupe pol do profilu','pl','yum'),
('Create role','Créer un nouveau rôle','fr','yum'),
('Create role','Crea ruolo','it','yum'),
('Create role','Dodaj role','pl','yum'),
('Create user','Créer un membre','fr','yum'),
('Create user','Crea utente','it','yum'),
('Create user','Dodaj uzytkownika','pl','yum'),
('Date','Date','fr','yum'),
('Date','Data','it','yum'),
('Date','Data','pl','yum'),
('Default','Défaut','fr','yum'),
('Default','Predefinito','it','yum'),
('Default','По умолчанию','ru','yum'),
('Delete Account','Supprimer le compte','fr','yum'),
('Delete Account','Cancella account','it','yum'),
('Delete Profile Field','Cancella campo Profilo','it','yum'),
('Delete Profile Field','Удалить','ru','yum'),
('Delete User','Supprimer le membre','fr','yum'),
('Delete User','Cancella utente','it','yum'),
('Delete User','Удалить','ru','yum'),
('Delete account','Supprimer ce compte','fr','yum'),
('Delete account','Cancella account','it','yum'),
('Delete account','Usun konto','pl','yum'),
('Delete file','Cancella file','it','yum'),
('Delete message','Supprimer le message','fr','yum'),
('Delete message','Cancella messaggio','it','yum'),
('Deleted','Supprimé','fr','yum'),
('Deleted','Cancella','it','yum'),
('Deny','Refuser','fr','yum'),
('Deny','Vietao','it','yum'),
('Description','Description','fr','yum'),
('Description','Descrizione','it','yum'),
('Description','Opis','pl','yum'),
('Different users logged in today','Nombre d\'utilisateurs inscrits/connectés aujourd\'hui.','fr','yum'),
('Different users logged in today','Numero di utenti connessi oggi','it','yum'),
('Different users logged in today','Liczba dzisiejszych unikalnych logowan','pl','yum'),
('Different viewn Profiles','Total des profils consultés','fr','yum'),
('Different viewn Profiles','Visualizzazioni profilo','it','yum'),
('Display order of fields.','Ordre d\'affichage des champs','fr','yum'),
('Display order of fields.','Mostra ordine dei campi.','it','yum'),
('Display order of fields.','Kolejnosc wyswietlania pol.','pl','yum'),
('Display order of fields.','Порядок отображения полей.','ru','yum'),
('Display order of group.','Ordre d\'affichage des groupes.','fr','yum'),
('Display order of group.','Ordine di visualizzazione del gruppo.','it','yum'),
('Display order of group.','Wyswietl kolejnosc grup.','pl','yum'),
('Do not appear in search','Ne pas paraitre dans les resultats de recherche','fr','yum'),
('Do not appear in search','Non mostrare nelle ricerche','it','yum'),
('Do not show my online status','Ne pas rendre mon profil visible lorsque je suis en ligne','fr','yum'),
('Do not show my online status','Non mostrare il mio stato online','it','yum'),
('Do not show the owner of a profile when i visit him','Ne pas montrer les profils que j\'ai visité','fr','yum'),
('Do not show the owner of a profile when i visit him','Non mostrare al proprietario quando visito il suo profilo','it','yum'),
('Duration in days','Durée en jours','fr','yum'),
('Duration in days','Durata in giorni','it','yum'),
('E-Mail address','Adresse e-mail','fr','yum'),
('E-Mail address','Indirizzo email','it','yum'),
('E-mail','E-mail','fr','yum'),
('E-mail','E-mail','it','yum'),
('E-mail','Mejl','pl','yum'),
('E-mail','Электронная почта','ru','yum'),
('Edit','Editer','fr','yum'),
('Edit','Modifica','it','yum'),
('Edit','Bearbeiten','pl','yum'),
('Edit','Редактировать','ru','yum'),
('Edit personal data','Modifier mes données personnelles','fr','yum'),
('Edit personal data','Modifica dati personali','it','yum'),
('Edit profile','Editer le profil','fr','yum'),
('Edit profile','Modifica profilo','it','yum'),
('Edit profile','Meine Profildaten bearbeiten','pl','yum'),
('Edit profile','Редактирование профиля','ru','yum'),
('Edit profile field','Editer les champs du profil','fr','yum'),
('Edit profile field','Modifica campi profilo','it','yum'),
('Edit profile field','Profilfeld bearbeiten','pl','yum'),
('Edit text','Modifica testo','it','yum'),
('Edit this role','Modifier ce rôle','fr','yum'),
('Edit this role','Modifica questo ruolo','it','yum'),
('Edit this role','Zmien te role','pl','yum'),
('Email is incorrect.','L\'adresse e-mail est incorrecte.','fr','yum'),
('Email is incorrect.','Email non corretta.','it','yum'),
('Email is incorrect.','Mejl jest niepoprawny.','pl','yum'),
('Email is incorrect.','Пользователь с таким электроным адресом не зарегистрирован.','ru','yum'),
('Enable Captcha','Activer le contrôle par Captcha','fr','yum'),
('Enable Captcha','Attiva Captcha','it','yum'),
('Enable Captcha','Wlacz Captcha','pl','yum'),
('Enable Email Activation','Activer l\'activation par e-mail','fr','yum'),
('Enable Email Activation','Attiva attivazione via Email','it','yum'),
('Enable Email Activation','Wlacz aktywacje mejlem','pl','yum'),
('Enable Profile History','Activer le protocole des profils','fr','yum'),
('Enable Profile History','Attiva storico Profilo','it','yum'),
('Enable Profile History','Wlacz historie profilow','pl','yum'),
('Enable Recovery','Activer la restauration','fr','yum'),
('Enable Recovery','Attiva rispristino','it','yum'),
('Enable Recovery','Wlacz odzyskiwanie hasel','pl','yum'),
('Enable Registration','Activer l\'enregistrement','fr','yum'),
('Enable Registration','Attiva registrazione','it','yum'),
('Enable Registration','Wlacz rejestracje','pl','yum'),
('End date','Data scadenza','it','yum'),
('Ends at','Scade il','it','yum'),
('Error Message','Message d\'erreur','fr','yum'),
('Error Message','Messaggio d''errore','it','yum'),
('Error Message','Сообщение об ошибке','ru','yum'),
('Error message when Validation fails.','Message d\'erreur pour le cas où la validation échoue','fr','yum'),
('Error message when Validation fails.','Messaggio d''errore se fallisce la validazione','it','yum'),
('Error message when you validate the form.','Messaggio d''errore durante la validazione del form.','it','yum'),
('Error message when you validate the form.','Сообщение об ошибке при проверке формы.','ru','yum'),
('Error while processing new avatar image : {error_message}; File was uploaded without resizing','L\'image n a pas pu être retaillée automatiquement lors du chargement. : {error_message}. Elle a cependant été chargée avec succès et activée dans votre profil','fr','yum'),
('Error while processing new avatar image : {error_message}; File was uploaded without resizing','Errore processando il nuovo avatar: {error_message}. File caricato senza ridimensionamento.','it','yum'),
('Field','Champ','fr','yum'),
('Field','Campo','it','yum'),
('Field','Pole','pl','yum'),
('Field Size','Longueur du champ','fr','yum'),
('Field Size','Dimensione campo','it','yum'),
('Field Size','Размер поля','ru','yum'),
('Field Size min','Taille minimum du champ','fr','yum'),
('Field Size min','Dimesione minima campo','it','yum'),
('Field Size min','Минимальное значение','ru','yum'),
('Field Type','Type du champ','fr','yum'),
('Field Type','Tipo campo','it','yum'),
('Field Type','Тип поля','ru','yum'),
('Field group','Champ des groupes','fr','yum'),
('Field group','Campi gruppo','it','yum'),
('Field group','Grupa pol','pl','yum'),
('Field name on the language of "sourceLanguage".','Non du champ dans la langue standard','fr','yum'),
('Field name on the language of "sourceLanguage".','Nome campo per il linguaggio di "sourceLanguage".','it','yum'),
('Field name on the language of "sourceLanguage".','Feldname in der Ursprungssprache','pl','yum'),
('Field name on the language of "sourceLanguage".','Название поля на языке "sourceLanguage".','ru','yum'),
('Field size','Longueur du champ','fr','yum'),
('Field size','Dimensione campo','it','yum'),
('Field size','Feldgro?e','pl','yum'),
('Field size column in the database.','Dimensione campo nel database','it','yum'),
('Field size column in the database.','Размер поля колонки в базе данных','ru','yum'),
('Field size in the database.','Longueur du champ dans la base de données','fr','yum'),
('Field size in the database.','Dimensione campo nel database','it','yum'),
('Field size in the database.','Feldgro?e in der Datenbank','pl','yum'),
('Field type','Type de champ','fr','yum'),
('Field type','Tipo campo','it','yum'),
('Field type','Feldtyp','pl','yum'),
('Field type column in the database.','Tipo campo nel database.','it','yum'),
('Field type column in the database.','Тип поля колонки в базе данных.','ru','yum'),
('First Name','Nome','it','yum'),
('First Name','Имя','ru','yum'),
('First name','Prénom','fr','yum'),
('First name','Cognome','it','yum'),
('First name','Vorname','pl','yum'),
('For all','Pour tous','fr','yum'),
('For all','Per tutti','it','yum'),
('For all','Для всех','ru','yum'),
('Friends','Mes contacts','fr','yum'),
('Friends','Contatti','it','yum'),
('Friends of {username}','Contact de {username}','fr','yum'),
('Friends of {username}','Contatti di {username}','it','yum'),
('Friendship','Contact','fr','yum'),
('Friendship','Contatto','it','yum'),
('Friendship confirmed','Demande de contact confirmée','fr','yum'),
('Friendship confirmed','Contatto confermato','it','yum'),
('Friendship rejected','Demande de contact refusée','fr','yum'),
('Friendship rejected','Amizicia rigettata','it','yum'),
('Friendship request already sent','En attente de confirmation','fr','yum'),
('Friendship request already sent','Richiesta di contatto gia inviata','it','yum'),
('Friendship request for {username} has been sent','Demande de contact envoyée a {username}','fr','yum'),
('Friendship request for {username} has been sent','Inviata richiesta di contatto a {username}','it','yum'),
('Friendship request has been rejected','Votre demande de contact a été rejetée','fr','yum'),
('Friendship request has been rejected','Richiesta di contatto respinta','it','yum'),
('From','De','fr','yum'),
('From','Da','it','yum'),
('From','Od','pl','yum'),
('General','Generale','it','yum'),
('Generate Demo Data','Générer un compte membre-demo','fr','yum'),
('Generate Demo Data','Genera dati demo','it','yum'),
('Go to profile of {username}','Voir le profil de {username}','fr','yum'),
('Go to profile of {username}','Vai al profilo di {username}','it','yum'),
('Grant permission','Attribuer une permission','fr','yum'),
('Grant permission','Assegna permesso','it','yum'),
('Group Name','Nom du groupe','fr','yum'),
('Group Name','Nome gruppo','it','yum'),
('Group Name','Nazwa grupy','pl','yum'),
('Group name on the language of "sourceLanguage".','Nom du groupe dans la langue principale.','fr','yum'),
('Group name on the language of "sourceLanguage".','Il nome del gruppo nella lingua di base.','it','yum'),
('Group name on the language of "sourceLanguage".','Nazwa grupy w jezyku uzytkownika.','pl','yum'),
('Group owner','Propriétaire du groupe','fr','yum'),
('Group owner','Proprietario gruppo','it','yum'),
('Group title','Titre du groupe','fr','yum'),
('Group title','Titolo gruppo','it','yum'),
('Having','Annonce','fr','yum'),
('Having','Visualizza','it','yum'),
('Hidden','Cache','fr','yum'),
('Hidden','Nascosto','it','yum'),
('Hidden','Скрыт','ru','yum'),
('How expensive is a membership?','Prix de l\'abonnement','fr','yum'),
('How expensive is a membership?','Quanto costa l''iscrizione?','it','yum'),
('How many days will the membership be valid after payment?','Nombre de jours de validité d\'un abonnement après paiement?','fr','yum'),
('How many days will the membership be valid after payment?','Quanti giorni e valida l''iscrizione dopo il pagamento?','it','yum'),
('Ignore','Ignorer','fr','yum'),
('Ignore','Ignora','it','yum'),
('Ignored users','Liste noire','fr','yum'),
('Ignored users','Utenti ignorati','it','yum'),
('Inactive users','Utilisateurs inactifs','fr','yum'),
('Inactive users','Utenti inattivi','it','yum'),
('Inactive users','Nieaktywni uzytkownicy','pl','yum'),
('Incorrect activation URL.','Le lien d\'activation de votre compte est incorrect ou périmé.','fr','yum'),
('Incorrect activation URL.','URL di attivazione incorretto','it','yum'),
('Incorrect activation URL.','Falsche Aktivierungs URL.','pl','yum'),
('Incorrect activation URL.','Неправильная ссылка активации учетной записи.','ru','yum'),
('Incorrect password (minimal length 4 symbols).','Mot de passe incorrect (longueur minimale de 4 caractères).','fr','yum'),
('Incorrect password (minimal length 4 symbols).','Password sbagliata (lunga almeno 4 caratteri).','it','yum'),
('Incorrect password (minimal length 4 symbols).','Falsches Passwort (minimale Lange 4 Zeichen).','pl','yum'),
('Incorrect password (minimal length 4 symbols).','Минимальная длина пароля 4 символа.','ru','yum'),
('Incorrect recovery link.','Le lien de restauration est incorrect ou perimé.','fr','yum'),
('Incorrect recovery link.','Link ripristino incorretto.','it','yum'),
('Incorrect recovery link.','Recovery link ist falsch.','pl','yum'),
('Incorrect recovery link.','Неправильная ссылка востановления пароля.','ru','yum'),
('Incorrect symbol''s. (A-z0-9)','Pour le choix de votre nom d\'utilisateur seules les lettres de l alphabet et les chiffres sont acceptes .','fr','yum'),
('Incorrect symbol''s. (A-z0-9)','Sono consentiti solo lettere e numeri','it','yum'),
('Incorrect symbol''s. (A-z0-9)','Im Benutzernamen sind nur Buchstaben und Zahlen erlaubt.','pl','yum'),
('Incorrect symbol''s. (A-z0-9)','В имени пользователя допускаются только латинские буквы и цифры.','ru','yum'),
('Incorrect username (length between 3 and 20 characters).','Nom d\'utilisateur incorrect (Longueur comprise entre 3 et 20 caractères).','fr','yum'),
('Incorrect username (length between 3 and 20 characters).','Username errato (lunghezza tra i 3 e i 20 caratteri).','it','yum'),
('Incorrect username (length between 3 and 20 characters).','Falscher Benutzername (Lange zwischen 3 und 20 Zeichen).','pl','yum'),
('Incorrect username (length between 3 and 20 characters).','Длина имени пользователя от 3 до 20 символов.','ru','yum'),
('Instructions have been sent to you. Please check your email.','Controlez votre boite e-mail : le code d\'activation de votre compte vient de vous être envoyé.','fr','yum'),
('Instructions have been sent to you. Please check your email.','Istruzioni inviate per email. Controlla la tua casella di posta elettronica.','it','yum'),
('Invitation','Invitation','fr','yum'),
('Invitation','Invito','it','yum'),
('Is membership possible','Inscription possible?','fr','yum'),
('Is membership possible','Iscrizione possibile?','it','yum'),
('Join group','Collega al gruppo','it','yum'),
('Jump to profile','Consulter le profil','fr','yum'),
('Jump to profile','Vai al profilo','it','yum'),
('Language','Langue','fr','yum'),
('Language','Lingua','it','yum'),
('Last Name','Cognome','it','yum'),
('Last Name','Фамилия','ru','yum'),
('Last name','Nom de famille','fr','yum'),
('Last name','Nome','it','yum'),
('Last name','Nachname','pl','yum'),
('Last visit','Dernière visite','fr','yum'),
('Last visit','Ultima visita','it','yum'),
('Last visit','Letzter Besuch','pl','yum'),
('Last visit','Последний визит','ru','yum'),
('Let me appear in the search','Je ne souhaite pas apparaitre dans les resultats des moteurs de recherche','fr','yum'),
('Let me appear in the search','Mostrami nei risultati','it','yum'),
('Let the user choose in privacy settings','Laisser l\'utilisateur choisir dans ses paramètres de confidentialité','fr','yum'),
('Let the user choose in privacy settings','Consentire all''utente di scegliere le impostazioni della privacy','it','yum'),
('Letters are not case-sensitive.','Les lettres ne sont pas sensibles à la casse.','fr','yum'),
('Letters are not case-sensitive.','La ricerca non e case sensitive.','it','yum'),
('Letters are not case-sensitive.','Zwischen Gro?-und Kleinschreibung wird nicht unterschieden.','pl','yum'),
('Letters are not case-sensitive.','Регистр значение не имеет.','ru','yum'),
('List Profile Field','Lista campi Profilo','it','yum'),
('List Profile Field','Список','ru','yum'),
('List User','Lista utenti','it','yum'),
('List User','Список пользователей','ru','yum'),
('List roles','liste des rôles','fr','yum'),
('List roles','Lista ruoli','it','yum'),
('List roles','Lista rol','pl','yum'),
('List user','Liste complètes des membres','fr','yum'),
('List user','Lista utenti','it','yum'),
('List user','Benutzer auflisten','pl','yum'),
('List users','Liste des membres','fr','yum'),
('List users','Lista utenti','it','yum'),
('List users','Lista uzytkownikow','pl','yum'),
('Log profile visits','Voir les statistiques des visiteurs de mon profil','fr','yum'),
('Log profile visits','Log visite profilo','it','yum'),
('Logged in as','Connecté en tant que','fr','yum'),
('Logged in as','Loggato come','it','yum'),
('Login','Connexion','fr','yum'),
('Login','Entra','it','yum'),
('Login','Logowanie','pl','yum'),
('Login','Вход','ru','yum'),
('Login Type','Mode de connexion','fr','yum'),
('Login Type','Tipo login','it','yum'),
('Login Type','Rodzaj logowania','pl','yum'),
('Login allowed by Email and Username','Connexion autorisée par nom d\'utilisateur et e-mail.','fr','yum'),
('Login allowed by Email and Username','Login con il nome utente o l''indirizzo e-mail','it','yum'),
('Login allowed by Email and Username','Logowanie przez nazwe lub mejl','pl','yum'),
('Login allowed only by Email','Connexion uniquement autorisée par e-mail','fr','yum'),
('Login allowed only by Email','Login solo tramite email','it','yum'),
('Login allowed only by Email','Logowanie poprzez mejl','pl','yum'),
('Login allowed only by Username','Connexion uniquement autorisée par nom d\'utilisateur','fr','yum'),
('Login allowed only by Username','Login solo tramite username','it','yum'),
('Login allowed only by Username','Logowanie poprzez nazwe','pl','yum'),
('Logout','Déconnexion','fr','yum'),
('Logout','Esci','it','yum'),
('Logout','Wyloguj','pl','yum'),
('Logout','Выйти','ru','yum'),
('Lost Password?','Password dimenticata?','it','yum'),
('Lost Password?','Забыли пароль?','ru','yum'),
('Lost password?','Mot de passe oublié?','fr','yum'),
('Lost password?','Password dimenticata?','it','yum'),
('Lost password?','Passwort vergessen?','pl','yum'),
('Mail send method','Mode d\'envoie des messages','fr','yum'),
('Mail send method','Metodo invio mail','it','yum'),
('Mail send method','Metoda wysylania mejli','pl','yum'),
('Make {field} public available','Rendre publique le champ {field}','fr','yum'),
('Make {field} public available','Rendi pubblico il campo {field}','it','yum'),
('Manage','Gestion','fr','yum'),
('Manage','Gestione','it','yum'),
('Manage','Управление','ru','yum'),
('Manage Actions','Gestione azioni','it','yum'),
('Manage Profile Field','Gérer le champ de profil','fr','yum'),
('Manage Profile Field','Gestione campi profilo','it','yum'),
('Manage Profile Field','Zarzadzaj polem profilu','pl','yum'),
('Manage Profile Field','Настройка полей','ru','yum'),
('Manage Profile Fields','Gérer les champs de profils','fr','yum'),
('Manage Profile Fields','Gestione campi Profilo','it','yum'),
('Manage Profile Fields','Zarzadzaj polami profilu','pl','yum'),
('Manage Profile Fields','Настройка полей','ru','yum'),
('Manage Profiles','Gérer les profils','fr','yum'),
('Manage Profiles','Gestione profili','it','yum'),
('Manage Roles','Gestion des rôles','fr','yum'),
('Manage Roles','Gestione Ruoli','it','yum'),
('Manage Roles','Zarzadzaj rolami','pl','yum'),
('Manage User','Gestion utilisateur','fr','yum'),
('Manage User','Gestione utente','it','yum'),
('Manage User','Benutzerverwaltung','pl','yum'),
('Manage User','Управление пользователями','ru','yum'),
('Manage Users','Gestion des membres','fr','yum'),
('Manage Users','Gestione utenti','it','yum'),
('Manage field groups','Gérer les champs des groupes','fr','yum'),
('Manage field groups','Gestione campo gruppi','it','yum'),
('Manage field groups','Zarzadzaj grupami pol','pl','yum'),
('Manage friends','Gestion des contacts','fr','yum'),
('Manage friends','Gestione contatti','it','yum'),
('Manage my users','Gérer mes membres','fr','yum'),
('Manage my users','Gestione utenti','it','yum'),
('Manage my users','Zarzadzaj moimi uzytkownikami','pl','yum'),
('Manage payments','Gestione pagamenti','it','yum'),
('Manage permissions','Gestione permessi','it','yum'),
('Manage profile Fields','Gérer les champs du profil','fr','yum'),
('Manage profile Fields','Gestione campi profilo','it','yum'),
('Manage profile Fields','Profilfelder verwalten','pl','yum'),
('Manage profile field groups','Gérer les champs des profils de groupes','fr','yum'),
('Manage profile field groups','Gestione campo profilo gruppi','it','yum'),
('Manage profile field groups','Zarzadzaj grupami pol w profilu','pl','yum'),
('Manage profile fields','Gérer les champs de profil','fr','yum'),
('Manage profile fields','Gestione campi profilo','it','yum'),
('Manage profile fields','Zarzadzaj polami profilu','pl','yum'),
('Manage profile fields groups','Gestione campi profilo gruppi','it','yum'),
('Manage profile fields groups','Zarzadzaj grupami pol w profilu','pl','yum'),
('Manage profiles','Gérer les profils','fr','yum'),
('Manage profiles','Gestione profili','it','yum'),
('Manage profiles','Zarzadzaj profilem','pl','yum'),
('Manage roles','Gérer les roles','fr','yum'),
('Manage roles','Gestione Ruoli','it','yum'),
('Manage roles','Zarzadzaj rolami','pl','yum'),
('Manage text settings','Option de texte','fr','yum'),
('Manage text settings','Impostazioni di testo','it','yum'),
('Manage this profile','Modifier ce profil','fr','yum'),
('Manage this profile','Modifica profilo','it','yum'),
('Manage this profile','Zarzadzaj tym profilem','pl','yum'),
('Manage user Groups','Gérer les utilisateurs des groupes','fr','yum'),
('Manage user Groups','Gestine gruppi','it','yum'),
('Manage users','Gérer les membres','fr','yum'),
('Manage users','Gestione utenti','it','yum'),
('Manage users','Zarzadzaj uzytkownikaki','pl','yum'),
('Mange Profile Field','Gestione campo profilo','it','yum'),
('Mark as read','Marquer comme lu','fr','yum'),
('Mark as read','Segna come letto','it','yum'),
('Match','Correspondance (RegExp)','fr','yum'),
('Match','Corrispondenza (RegExp)','it','yum'),
('Match','Совпадение (RegExp)','ru','yum'),
('Membership','Devenir membre','fr','yum'),
('Membership','Iscrizione','it','yum'),
('Membership ends at: {date}','Iscrizione termina il: {date}','it','yum'),
('Membership has not been payed yet','Iscrizione non pagata','it','yum'),
('Membership payed at: {date}','Iscrizione pagata il: {date}','it','yum'),
('Memberships','Iscrizioni','it','yum'),
('Message','Message','fr','yum'),
('Message','Messaggio','it','yum'),
('Message "{message}" has been sent to {to}','Message "{message}" a été envoyé {to}','fr','yum'),
('Message "{message}" has been sent to {to}','Messaggio "{message}" e stato inviato a {to}','it','yum'),
('Message "{message}" was marked as read','Message "{message}" marqué comme lu.','fr','yum'),
('Message "{message}" was marked as read','Messaggio "{message}" e stato contrassegnato come letto.','it','yum'),
('Message from','Message de','fr','yum'),
('Message from','Messaggio da','it','yum'),
('Message from','Message de','fr','yum'),
('Message from','Messaggio da','it','yum'),
('Message from','Nachricht von','pl','yum'),
('Messages','Messages','fr','yum'),
('Messages','Messagi','it','yum'),
('Messages','Wiadomosci','pl','yum'),
('Messaging system','Message-Board','fr','yum'),
('Messaging system','Sistema messaggistica','it','yum'),
('Messaging system','System wiadomosci','pl','yum'),
('Minimal password length 4 symbols.','Votre mot de passe doit comporter au moins quatre caractères.','fr','yum'),
('Minimal password length 4 symbols.','Lunghezza minima password di 4 caratteri.','it','yum'),
('Minimal password length 4 symbols.','Minimale Lange des Passworts 4 Zeichen.','pl','yum'),
('Minimal password length 4 symbols.','Минимальная длина пароля 4 символа.','ru','yum'),
('Module settings','Reglage des modules','fr','yum'),
('Module settings','Opzioni modulo','it','yum'),
('Module settings','Ustawienia modulu','pl','yum'),
('Module text settings','Opzioni testo modulo','it','yum'),
('Module text settings','Ustawienia tekstow modulu','pl','yum'),
('My Inbox','Boite e-mail','fr','yum'),
('My Inbox','Moja skrzynka odbiorcza','pl','yum'),
('My friends','Mes amis','fr','yum'),
('My friends','Contatti','it','yum'),
('My groups','Mes groupes','fr','yum'),
('My groups','Gruppi','it','yum'),
('My inbox','Ma boîte aux lettres','fr','yum'),
('My inbox','Posta in arrivo','it','yum'),
('My memberships','Options de mon compte','fr','yum'),
('My memberships','Iscrizioni','it','yum'),
('My profile','Mon profil','fr','yum'),
('My profile','Profilo','it','yum'),
('New friendship request from {username}','Nouvelle demande en ami de {username}','fr','yum'),
('New friendship request from {username}','Nuova richiesta di contatto da {username}','it','yum'),
('New friendship requests','Nouvelles demandes en ami','fr','yum'),
('New friendship requests','Nuova richiesta contatto','it','yum'),
('New messages','Nouveaux messages','fr','yum'),
('New messages','Nuovo messaggio','it','yum'),
('New password','Nouveau mot de passe','fr','yum'),
('New password','<PASSWORD> Password','it','yum'),
('New password is saved.','Votre nouveau mot de passe a bien été enregistré.','fr','yum'),
('New password is saved.','Nuova passowrd sal<PASSWORD>','it','yum'),
('New password is saved.','Neues Passwort wird gespeichert.','pl','yum'),
('New password is saved.','Новый пароль сохранен.','ru','yum'),
('New profile comment from {username}','Nouveau commentaire pour le profil de {username}','fr','yum'),
('New profile comment from {username}','Nuovo commento per il profilo {username}','it','yum'),
('New settings profile','Nouvelle configuration de profil','fr','yum'),
('New settings profile','Nuova preferenze profilo','it','yum'),
('New settings profile','Nowe ustawienia profilu','pl','yum'),
('New value','Nouvelle valeur','fr','yum'),
('New value','Nuovo valore','it','yum'),
('New value','Nowa wartosc','pl','yum'),
('No','Non','fr','yum'),
('No','No','it','yum'),
('No','Nein','pl','yum'),
('No','Нет','ru','yum'),
('No friendship requested','Pas de demande d\'amitié','fr','yum'),
('No friendship requested','Contatto non richiesto','it','yum'),
('No new messages','Pas de nouveaux messages','fr','yum'),
('No new messages','Nessun nuovo messaggio','it','yum'),
('No profile changes were made','Pas de modifications des profils','fr','yum'),
('No profile changes were made','Nessun cambiamento al profilo','it','yum'),
('No profile changes were made','Nie dokonano zmian w profilu','pl','yum'),
('No, but show on registration form','Non, mais afficher sur le formulaire d\'inscription','fr','yum'),
('No, but show on registration form','No, ma mostra nel form di registrazione','it','yum'),
('No, but show on registration form','Nie, ale pokaz w formularzu rejestracji','pl','yum'),
('No, but show on registration form','Нет, но показать при регистрации','ru','yum'),
('Nobody has commented your profile yet','Aucun commentaire de votre profil','fr','yum'),
('Nobody has commented your profile yet','Nessuno ha commentato il tuo profilo','it','yum'),
('Nobody has visited your profile yet','Aucune visite récente de votre profil.','fr','yum'),
('Nobody has visited your profile yet','Fino ad ora nessuno ha visto il tuo profilo','it','yum'),
('None','Aucun','fr','yum'),
('None','Nessuno','it','yum'),
('None','Zaden','pl','yum'),
('Not active','Non actif','fr','yum'),
('Not active','Non attivo','it','yum'),
('Not active','Nicht aktiv','pl','yum'),
('Not active','Не активирован','ru','yum'),
('Not assigned','Non assigné','fr','yum'),
('Not assigned','Non assegnato','it','yum'),
('Not assigned','Nie przypisano','pl','yum'),
('Not visited','Non visitato','it','yum'),
('Ok','Ok','fr','yum'),
('Ok','Ok','it','yum'),
('Ok','Ok','pl','yum'),
('Ok','Ok','ru','yum'),
('Old value','Ancienne valeur','fr','yum'),
('Old value','Vecchio valore','it','yum'),
('Old value','Stara wartosc','pl','yum'),
('One of the recipients ({username}) has ignored you. Message will not be sent!','Un des destinataires ({username}) vous a ignoré (liste noire). Ce message ne sera pas envoyé!','fr','yum'),
('One of the recipients ({username}) has ignored you. Message will not be sent!','Un destinatario ({username}) ti ha inserito nella lista degli ignorati. Messaggio non inviato!','it','yum'),
('Only owner','Propriétaire seulement','fr','yum'),
('Only owner','Solo proprietario','it','yum'),
('Only owner','Только владелец','ru','yum'),
('Only your friends are shown here','Seuls vos amis seront visibles ici','fr','yum'),
('Only your friends are shown here','Solo i tuoi contatti verranno visualizzati','it','yum'),
('Order confirmed','Ordini confermati','it','yum'),
('Order date','Data ordine','it','yum'),
('Order membership','Ordine iscrizione','it','yum'),
('Order number','Numero ordine','it','yum'),
('Ordered at','Ordinato il','it','yum'),
('Ordered memberships','Options complementaires','fr','yum'),
('Ordered memberships','Iscrizioni ordinate','it','yum'),
('Other','Divers','fr','yum'),
('Other','Altro','it','yum'),
('Other','Pozostale','pl','yum'),
('Other Validator','Autre validation','fr','yum'),
('Other Validator','Altro validatore','it','yum'),
('Other Validator','Другой валидатор','ru','yum'),
('Participants','Partecipanti','it','yum'),
('Password','Mot de passe','fr','yum'),
('Password','Password','it','yum'),
('Password','<PASSWORD>','pl','yum'),
('Password Expiration Time','Durée de vie des mots de passe','fr','yum'),
('Password Expiration Time','Scadenza password','it','yum'),
('Password Expiration Time','<PASSWORD>','pl','yum'),
('Password is incorrect.','Le mot de passe est incorrect.','fr','yum'),
('Password is incorrect.','Password incorretta','it','yum'),
('Password is incorrect.','<PASSWORD>.','pl','yum'),
('Password is incorrect.','Неверный пароль.','ru','yum'),
('Payment','Pagamento','it','yum'),
('Payment arrived','Pagamento arrivato','it','yum'),
('Payment date','Data pagamento','it','yum'),
('Payment types','Options de paiement','fr','yum'),
('Payment types','Tipi pagamento','it','yum'),
('Payments','Pagamenti','it','yum'),
('Permissions','Permissions','fr','yum'),
('Permissions','Autorizzazioni','it','yum'),
('Please activate you account go to {activation_url}','Perfavore attiva il tuo accounto all''indirizzo {activation_url}','it','yum'),
('Please check your email. An instructions was sent to your email address.','Controlez vos e-mails. D\'autres instructions vous ont été envoyées.','fr','yum'),
('Please check your email. An instructions was sent to your email address.','Perfavore controlla la tua email con le istruzioni che ti abbiamo inviato','it','yum'),
('Please check your email. An instructions was sent to your email address.','Bitte uberprufen Sie Ihre E-Mails. Eine Anleitung wurde an Ihre E-Mail-Adresse geschickt.','pl','yum'),
('Please check your email. An instructions was sent to your email address.','На Ваш адрес электронной почты было отправлено письмо с инструкциями.','ru','yum'),
('Please check your email. Instructions have been sent to your email address.','Controlez vos e-mails. D\'autres instructions vous ont été envoyées.','fr','yum'),
('Please check your email. Instructions have been sent to your email address.','Si prega di controllare la casella di posta. Ulteriori istruzioni sono state inviate via e-mail.','it','yum'),
('Please check your email. Instructions have been sent to your email address.','Prosze sprawdz Twoj mejl. Instrukcje zostaly wyslane na Twoj adres mejlowy.','pl','yum'),
('Please enter a request Message up to 255 characters','Vous pouvez ajouter un message personnalisé de 255 caractères à votre demande','fr','yum'),
('Please enter a request Message up to 255 characters','Perfavore inserisci un messaggio di richiesta di massimo 255 caratteri','it','yum'),
('Please enter the letters as they are shown in the image above.','Recopiez les caractères apparaissant dans l\'image ci-dessus.','fr','yum'),
('Please enter the letters as they are shown in the image above.','Perfavore inserire le lettere mostrate nella seguente immagine.','it','yum'),
('Please enter the letters as they are shown in the image above.','Bitte geben Sie die, oben im Bild angezeigten, Buchstaben ein.','pl','yum'),
('Please enter the letters as they are shown in the image above.','Пожалуйста, введите буквы, показанные на картинке выше.','ru','yum'),
('Please enter your login or email addres.','Perfavore inserisci il tuo username o l''indirizzo mail.','it','yum'),
('Please enter your login or email addres.','Пожалуйста, введите Ваш логин или адрес электронной почты.','ru','yum'),
('Please enter your login or email address.','Indiquez dans ce champ, votre nom d\'utilisateur ou votre adresse e-mail.','fr','yum'),
('Please enter your login or email address.','Inserisci il tuo nome utente o indirizzo e-mail.','it','yum'),
('Please enter your login or email address.','Bitte geben Sie Ihren Benutzernamen oder E-Mail-Adresse ein.','pl','yum'),
('Please enter your password to confirm deletion:','Renseignez votre mot de passe pour confirmer la suppression:','fr','yum'),
('Please enter your password to confirm deletion:','Si prega di inserire la password per confermare l''eliminazione:','it','yum'),
('Please enter your password to confirm deletion:','Prosze wprowadz swoje haslo w celu potwierdzenia usuwania:','pl','yum'),
('Please enter your user name or email address.','Renseignez votre nom d\'utilisateur ou votre adresse e-mail','fr','yum'),
('Please enter your user name or email address.','Inserisci il tuo nome utente o indirizzo e-mail','it','yum'),
('Please fill out the following form with your login credentials:','Remplissez le formulaire avec vos données de connexion:','fr','yum'),
('Please fill out the following form with your login credentials:','Perfavore inserisci le tue credenziali d''accesso:','it','yum'),
('Please fill out the following form with your login credentials:','Bitte geben Sie ihre Login-Daten ein:','pl','yum'),
('Please fill out the following form with your login credentials:','Пожалуйста, заполните следующую форму с вашими Логин и паролем:','ru','yum'),
('Position','Position','fr','yum'),
('Position','Posizioe','it','yum'),
('Position','Позиция','ru','yum'),
('Predefined values (example: 1, 2, 3, 4, 5;).','Valeurs prédéfinies (ex: 1, 2, 3, 4, 5),','fr','yum'),
('Predefined values (example: 1, 2, 3, 4, 5;).','Valori predefiniti (es. 1, 2, 3, 4, 5),','it','yum'),
('Predefined values (example: 1, 2, 3, 4, 5;).','Предопределенные значения (пример: 1;2;3;4;5;).','ru','yum'),
('Preseve Profiles','Conserver les profils','fr','yum'),
('Preseve Profiles','Mantieni profili','it','yum'),
('Preseve Profiles','Zachowaj profil','pl','yum'),
('Price','Prix','fr','yum'),
('Price','Prezzo','it','yum'),
('Privacy','Confidentialité','fr','yum'),
('Privacy','Privacy','it','yum'),
('Privacy','Privatsphare','pl','yum'),
('Privacy settings','Paramètres de confidentialité','fr','yum'),
('Privacy settings','Privacy','it','yum'),
('Privacy settings for {username}','Configuration des données privées pour {username}','fr','yum'),
('Privacy settings for {username}','Opzioni Privacy per {username}','it','yum'),
('Privacysettings','Paramètres de confidentialité','fr','yum'),
('Privacysettings','Opzioni privacy','it','yum'),
('Profile','Profil','fr','yum'),
('Profile','Profilo','it','yum'),
('Profile','Profil','pl','yum'),
('Profile','Профиль','ru','yum'),
('Profile Comments','Commentaires de profil','fr','yum'),
('Profile Comments','Commenti profilo','it','yum'),
('Profile Fields','Champs des profils','fr','yum'),
('Profile Fields','Campi profilo','it','yum'),
('Profile Fields','Pola profilu','pl','yum'),
('Profile Fields','Поля профиля','ru','yum'),
('Profile field groups','Champs des profils de groupes.','fr','yum'),
('Profile field groups','Campo profilo gruppi','it','yum'),
('Profile field public options','Configuration des champs publiques du profil','fr','yum'),
('Profile field public options','Opzioni pubbliche campi profilo','it','yum'),
('Profile field {fieldname}','Champ de profil {fieldname}','fr','yum'),
('Profile field {fieldname}','{fieldname} campo profilo','it','yum'),
('Profile field {fieldname}','Pole profilu {fieldname}','pl','yum'),
('Profile fields','Gestion des champs de profil','fr','yum'),
('Profile fields','Campi profilo','it','yum'),
('Profile fields','Pole profilu','pl','yum'),
('Profile fields groups','Champ des profils de groupes','fr','yum'),
('Profile fields groups','Campi profilo gruppi','it','yum'),
('Profile fields groups','Grupy pol w profilu','pl','yum'),
('Profile history','Historique du profil','fr','yum'),
('Profile history','Storico profilo','it','yum'),
('Profile history','Historia profilu','pl','yum'),
('Profile number','Numéro du profil:','fr','yum'),
('Profile number','Numero profilo:','it','yum'),
('Profile number','Numer profilu:','pl','yum'),
('Profile of','Profil de','fr','yum'),
('Profile of','Profilo di','it','yum'),
('Profile visits','Visites de mon profil','fr','yum'),
('Profile visits','Visite profilo','it','yum'),
('Profiles','Profils','fr','yum'),
('Profiles','Profili','it','yum'),
('Profiles','Profile','pl','yum'),
('Range','Intervallo','it','yum'),
('Range','Ряд значений','ru','yum'),
('Read Only Profiles','Profils en lecture seule','fr','yum'),
('Read Only Profiles','Profilo sola lettura','it','yum'),
('Read Only Profiles','Profile tylko do odczytu','pl','yum'),
('Receive a Email for new Friendship request','Informez moi par e-mail pour les nouvelles demandes d\'ami.','fr','yum'),
('Receive a Email for new Friendship request','Email di notifica per nuovo contatto','it','yum'),
('Receive a Email when a new profile comment was made','Informez moi par e-mail pour les nouveaux commentaires sur mon profil','fr','yum'),
('Receive a Email when a new profile comment was made','Email di notifica per nuovo commento al profilo','it','yum'),
('Receive a Email when new Message arrives','Informez moi par e-mail pour les nouveaux messages.','fr','yum'),
('Receive a Email when new Message arrives','Email di notifica per i nuovi messaggi','it','yum'),
('Registered users','Utilisateurs enregistrés','fr','yum'),
('Registered users','Utenti registrati','it','yum'),
('Registered users','Зарегистрированные пользователи','ru','yum'),
('Registration','Inscription','fr','yum'),
('Registration','Reistrazione','it','yum'),
('Registration','Rejestracja','pl','yum'),
('Registration','Регистрация','ru','yum'),
('Registration date','Date d\'inscription','fr','yum'),
('Registration date','Data registrazione','it','yum'),
('Registration date','Anmeldedatum','pl','yum'),
('Registration date','Дата регистрации','ru','yum'),
('Regular expression (example:''/^[A-Za-z0-9s,]+$/u'').','Expression regulière (exemple.:''/^[A-Za-z0-9s,]+$/u'')','fr','yum'),
('Regular expression (example:''/^[A-Za-z0-9s,]+$/u'').','Espressione regolare (esempio:''/^[A-Za-z0-9s,]+$/u'')','it','yum'),
('Regular expression (example:''/^[A-Za-z0-9s,]+$/u'').','Регулярные выражения (пример:''/^[A-Za-z0-9s,]+$/u'')','ru','yum'),
('Remember me net time','Zapamietaj mnie nastepnym razem','pl','yum'),
('Remember me next time','Se souvenir de moi','fr','yum'),
('Remember me next time','Ricordami','it','yum'),
('Remember me next time','Запомнить меня','ru','yum'),
('Remove','Supprimer','fr','yum'),
('Remove','Rimuovi','it','yum'),
('Remove Avatar','Supprimer l\'avatar','fr','yum'),
('Remove Avatar','Rimuovi avatar','it','yum'),
('Remove comment','Supprimer ce commentaire','fr','yum'),
('Remove comment','Rimuovi commento','it','yum'),
('Remove friend','Supprimer cet ami','fr','yum'),
('Remove friend','Rimuovi contatto','it','yum'),
('Reply','Repondre','fr','yum'),
('Reply','Rispondi','it','yum'),
('Reply','Odpowiedz','pl','yum'),
('Reply to Message','Répondre à ce message','fr','yum'),
('Reply to Message','Rispondi al messaggio','it','yum'),
('Reply to Message','Odpowiedz','pl','yum'),
('Reply to message','Rispondi al messaggio','it','yum'),
('Request friendship for user {username}','Demande en ami pour {username}','fr','yum'),
('Request friendship for user {username}','Richiesta contatto per {username}','it','yum'),
('Required','Requis','fr','yum'),
('Required','Obbligatorio','it','yum'),
('Required','Обязательность','ru','yum'),
('Required field (form validator).','Campo obbligatorio (validazione form).','it','yum'),
('Required field (form validator).','Обязательное поле (проверка формы).','ru','yum'),
('Restore','Restaurer','fr','yum'),
('Restore','Ripristino','it','yum'),
('Restore','Wiederherstellen','pl','yum'),
('Restore','Восстановить','ru','yum'),
('Retype Password','<PASSWORD>оль','ru','yum'),
('Retype Password is incorrect.','Пароли не совпадают.','ru','yum'),
('Retype password','Confirmez votre mot de passe','fr','yum'),
('Retype password','Conferma password','it','yum'),
('Retype password','<PASSWORD>wort <PASSWORD>','pl','yum'),
('Retype password is incorrect.','Le mot de passe est à nouveau incorrect.','fr','yum'),
('Retype password is incorrect.','Conferma password e errata.','it','yum'),
('Retype password is incorrect.','Wiederholtes Passwort ist falsch.','pl','yum'),
('Retype your new password','Confirmez votre nouveau mot de passe','fr','yum'),
('Retype your new password','Confer<PASSWORD> la nuova password','it','yum'),
('Retyped password is incorrect','Le mot de passe renseigné n\'est pas identique au précédent','fr','yum'),
('Retyped password is incorrect','Password di conferma non identica','it','yum'),
('Role Administration','Gestion des rôles','fr','yum'),
('Role Administration','Gestione dei ruoli','it','yum'),
('Role Administration','Zarzadzanie rolami','pl','yum'),
('Roles','Rôles','fr','yum'),
('Roles','Ruoli','it','yum'),
('Roles','Role','pl','yum'),
('Save','Enregistrez','fr','yum'),
('Save','Salva','it','yum'),
('Save','Sichern','pl','yum'),
('Save','Сохранить','ru','yum'),
('Save payment type','Salva tipo pagamento','it','yum'),
('Save profile changes','Salva modifiche profilo','it','yum'),
('Save role','Enregistrez ce rôle','fr','yum'),
('Save role','Salva ruolo','it','yum'),
('Search for username','Recherche par nom d\'utilisateur','fr','yum'),
('Search for username','Cerca per username','it','yum'),
('Searchable','Visible par le moteur de recherche','fr','yum'),
('Searchable','Ricercabile','it','yum'),
('Select a month','Seleziona un mese','it','yum'),
('Select multiple recipients by holding the CTRL key','Choix multiple en laissant la touche CTRL de votre clavier enfoncée','fr','yum'),
('Select multiple recipients by holding the CTRL key','Seleziona destinatari multipli con il tasto CTRL','it','yum'),
('Select the fields that should be public','Selectionnez les champs qui seront publiques','fr','yum'),
('Select the fields that should be public','Scegli i campi da rendere publici','it','yum'),
('Selectable on registration','Option à selectionner au moment de l\'inscription','fr','yum'),
('Selectable on registration','Selezionabile durante la registrazione','it','yum'),
('Send','Envoyer','fr','yum'),
('Send','Invia','it','yum'),
('Send','Senden','pl','yum'),
('Send a message to this User','Envoyér un message à ce membre','fr','yum'),
('Send a message to this User','Invia messaggio all''utente','it','yum'),
('Send invitation','Envoyér une invitation','fr','yum'),
('Send invitation','Kontaktanfrage senden','it','yum'),
('Send message notifier emails','Envoi d\'une notification par e-mail','fr','yum'),
('Send message notifier emails','Notifiche e-mail','it','yum'),
('Sent at','Envoyé le','fr','yum'),
('Sent at','Pubblicato il','it','yum'),
('Sent at','Wyslano','pl','yum'),
('Sent messages','Messages envoyés','fr','yum'),
('Sent messages','Messaggi inviati','it','yum'),
('Sent messages','Wyslane wiadomosci','pl','yum'),
('Separate usernames with comma to ignore specified users','Séparer les noms d\'utilisateur avec une virgule pour ignorer les membres correspondants','fr','yum'),
('Separate usernames with comma to ignore specified users','Separa gli username con una virgola, per ignorare gli utenti specificati','it','yum'),
('Set payment date to today','Imposta data pagamento ad oggi','it','yum'),
('Settings','Configuration','fr','yum'),
('Settings','Impostazioni','it','yum'),
('Settings','Ustawienia','pl','yum'),
('Settings profiles','Configuration des profiles','fr','yum'),
('Settings profiles','Impostazioni profili','it','yum'),
('Settings profiles','Ustawienia profili','pl','yum'),
('Show activities','Montrer l\'activité','fr','yum'),
('Show activities','Mostra attivita','it','yum'),
('Show administration Hierarchy','Montrer la configuration hiérarchique','fr','yum'),
('Show administration Hierarchy','Gerarchia','it','yum'),
('Show administration Hierarchy','Pokaz hierarchie administrowania','pl','yum'),
('Show all','Mostra tutti','it','yum'),
('Show friends','Montrer les amis','fr','yum'),
('Show friends','Mostra contatti','it','yum'),
('Show my online status to everyone','Montrer lorsque je suis en ligne','fr','yum'),
('Show my online status to everyone','Mostra il mio stato a tutti','it','yum'),
('Show online status','Status en ligne visible','fr','yum'),
('Show online status','Mostra lo stato online','it','yum'),
('Show permissions','Montrer les permissions','fr','yum'),
('Show permissions','Mostra autorizzazioni','it','yum'),
('Show profile visits','Montrer les visites de profils','fr','yum'),
('Show profile visits','Visualizza visite profilo','it','yum'),
('Show roles','Montrer les rôles','fr','yum'),
('Show roles','Mostra ruoli','it','yum'),
('Show roles','Pokaz role','pl','yum'),
('Show the owner when i visit his profile','Indiquer aux propriétaires des profils lorsque je consulte leur profil','fr','yum'),
('Show the owner when i visit his profile','Mostra al proprietario quando visito il suo profilo','it','yum'),
('Show users','Voir les membres','fr','yum'),
('Show users','Mostra utenti','it','yum'),
('Show users','Pokaz uzytkownikow','pl','yum'),
('Statistics','Statistiques des membres','fr','yum'),
('Statistics','Statistiche','it','yum'),
('Statistics','Statystyki','pl','yum'),
('Status','Status','fr','yum'),
('Status','Stato','it','yum'),
('Status','Status','pl','yum'),
('Status','Статус','ru','yum'),
('Street','Rue','fr','yum'),
('Street','Indirizzo','it','yum'),
('Street','Ulica','pl','yum'),
('Subject','Sujet','fr','yum'),
('Subject','Oggetto','it','yum'),
('Success','Reussi','fr','yum'),
('Success','Successo','it','yum'),
('Superuser','Superuser','fr','yum'),
('Superuser','Superuser','it','yum'),
('Superuser','Superuser','pl','yum'),
('Superuser','Супер пользователь','ru','yum'),
('Text Email Activation','Texte de l\'e-mail d\'activation de compte','fr','yum'),
('Text Email Activation','Testo email d''attivazione account','it','yum'),
('Text Email Recovery','Texte de l\'e-mail de récupération de mot de passe','fr','yum'),
('Text Email Recovery','Testo email recupero password','it','yum'),
('Text Email Registration','Texte de l\'e-mail d\'enregistrement','fr','yum'),
('Text Email Registration','Testo email di registrazione','it','yum'),
('Text Login Footer','Texte du pied de page de connexion','fr','yum'),
('Text Login Footer','Testo nel piepagina del login','it','yum'),
('Text Login Header','Texte de l\'entête de connexion','fr','yum'),
('Text Login Header','Testo nell''intestazione del login','it','yum'),
('Text Registration Footer','Texte du pied de page de l\'inscription','fr','yum'),
('Text Registration Footer','Testo nel piepagina della registrazione','it','yum'),
('Text Registration Header','Texte de l\'entête de l\'inscription','fr','yum'),
('Text Registration Header','Testo nell''intestazione della registrazione','it','yum'),
('Text for new friendship request','Texte pour une nouvelle demande d\'ami','fr','yum'),
('Text for new friendship request','Testo per una nuova richiesta di contatto','it','yum'),
('Text for new profile comment','Texte pour un nouveau commentaire dans un profil','fr','yum'),
('Text for new profile comment','Testo per un nuovo commento al profilo','it','yum'),
('Thank you for your registration. Contact Admin to activate your account.','Grazie per la tua registrazione. Contatta l''ammnistratore per attivare l''account','it','yum'),
('Thank you for your registration. Please check your email or login.','Merci pour votre inscription. Controlez votre boite e-mail, le code d\'activation de votre compte y a été envoyé.','fr','yum'),
('Thank you for your registration. Please check your email or login.','Grazie per la tua registrazione, controlla la tua email o effettua il login,','it','yum'),
('Thank you for your registration. Please check your email or login.','Vielen Dank fur Ihre Anmeldung. Bitte uberprufen Sie Ihre E-Mails oder loggen Sie sich ein.','pl','yum'),
('Thank you for your registration. Please check your email or login.','Регистрация завершена. Пожалуйста проверьте свой электронный ящик или выполните вход.','ru','yum'),
('Thank you for your registration. Please check your email.','Merci pour votre inscription. Controlez votre boite e-mail, le code d\'activation de votre compte y a été envoyé.','fr','yum'),
('Thank you for your registration. Please check your email.','Grazie per la tua registrazione, controlla la tua email,','it','yum'),
('Thank you for your registration. Please check your email.','Vielen Dank fur Ihre Anmeldung. Bitte uberprufen Sie Ihre E-Mails.','pl','yum'),
('Thank you for your registration. Please check your email.','Регистрация завершена. Пожалуйста проверьте свой электронный ящик.','ru','yum'),
('Thank you for your registration. Please {{login}}.','Grazie per la tua registrazone. Effettua il {{login}}.','it','yum'),
('The comment has been saved','Le commentaire a bien été enregistré','fr','yum'),
('The comment has been saved','Il commento e stato salvato','it','yum'),
('The file "{file}" is not an image.','Le fichier {file} n\'est pas une image.','fr','yum'),
('The file "{file}" is not an image.','Il file {file} non e un''immagine.','it','yum'),
('The friendship request has been sent','Votre demande de contact a bien été envoyée','fr','yum'),
('The friendship request has been sent','La richiesta di contatto e stata inviata','it','yum'),
('The image "{file}" height should be "{height}px".','L\'image {file} doit avoir une hauteur maximum de {height}px .','fr','yum'),
('The image "{file}" height should be "{height}px".','L''immagine {file} deve essere {height}px.','it','yum'),
('The image "{file}" width should be "{width}px".','L\'image {file} doit avoir une largeur maximum de {width}px .','fr','yum'),
('The image "{file}" width should be "{width}px".','L''immagine {file} deve essere larga {width}px.','it','yum'),
('The image has been resized to {max_pixel}px width successfully','L\'image a été retaillée automatiquement à une taille de {max_pixel}','fr','yum'),
('The image has been resized to {max_pixel}px width successfully','Immagine ridimensionata a {max_pixel}px con successo.','it','yum'),
('The image should have at least 50px and a maximum of 200px in width and height. Supported filetypes are .jpg, .gif and .png','L\'image chargée doit avoir une largeur maximum de 50px et une hauteur maximale de 200px. Les fichiers acceptés sont: .jpg, .gif et .png','fr','yum'),
('The image should have at least 50px and a maximum of 200px in width and height. Supported filetypes are .jpg, .gif and .png','L''immagine deve essere almeno 50px e massimo 200px in larghezza e altezza. Tipi di file supportati .jpg, .gif e .png','it','yum'),
('The image was uploaded successfully','L\'image a été chargée avec succès','fr','yum'),
('The image was uploaded successfully','Immagine caricata con successo','it','yum'),
('The minimum value of the field (form validator).','Valeur minimum du champ (Validation du formulaire)','fr','yum'),
('The minimum value of the field (form validator).','Valore minimo del campo (validazione form).','it','yum'),
('The minimum value of the field (form validator).','Минимальное значение поля (проверка формы).','ru','yum'),
('The new password has been saved','Votre nouveau mot de passe a bien été enregistré.','fr','yum'),
('The new password has been saved','La nuova password e stata salvata.','it','yum'),
('The value of the default field (database).','Valeur par défaut (base de données)','fr','yum'),
('The value of the default field (database).','Valore del campo predefnito (database).','it','yum'),
('The value of the default field (database).','Domyslna wartosc pola (bazodanowego).','pl','yum'),
('The value of the default field (database).','Значение поля по умолчанию (база данных).','ru','yum'),
('There are a total of {messages} messages in your System.','Il existe {messages} messages dans votre système.','fr','yum'),
('There are a total of {messages} messages in your System.','Ci sno un totale di {messages} messaggi nel Sistema.','it','yum'),
('There are a total of {messages} messages in your System.','Istnieje {messages} wiadomosci w Twoim systemie.','pl','yum'),
('There are {active_users} active and {inactive_users} inactive users in your System, from which {admin_users} are Administrators.','Il existe {active_users} membres actifs et {inactive_users} membres inactifs dans votre système, pour lesquels {admin_users} sont des administrateurs.','fr','yum'),
('There are {active_users} active and {inactive_users} inactive users in your System, from which {admin_users} are Administrators.','Ci sono {active_users} utenti attivi e {inactive_users} utenti inattivi nel Sistema, di cui {admin_users} sono amministratori.','it','yum'),
('There are {active_users} active and {inactive_users} inactive users in your System, from which {admin_users} are Administrators.','Istnieja {active_users} aktywni i {inactive_users} nieaktywni uzytkownicy w Twoim systemie, w tym {admin_users} administratorzy.','pl','yum'),
('There are {profiles} profiles in your System. These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups','Il existe {profiles} profils dans votre systeme. Ils se composent de {profile_fields} champs de profils, qui se décomposent en {profile_field_groups} groupe de champs de profils.','fr','yum'),
('There are {profiles} profiles in your System. These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups','Ci sono {profiles} profili nel Sistema. sono costituiti da {profile_fields} campi profili, in {profile_field_groups} campo profili gruppi.','it','yum'),
('There are {profiles} profiles in your System. These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups','Istnieja {profiles} profile w Twoim systemie, ktore zawieraja pola {profile_fields} w grupach {profile_field_groups}','pl','yum'),
('There are {roles} roles in your System.','Il existe {roles} rôles dans votre systeme','fr','yum'),
('There are {roles} roles in your System.','Ci sono {roles} ruoli nel Sistema','it','yum'),
('There are {roles} roles in your System.','Istnieje {roles} rol w Twoim systemie','pl','yum'),
('There was an error saving the password','Erreur rencontrée lors de la sauvegarde de votre mot de passe','fr','yum'),
('There was an error saving the password','Impossibile salvare la password','it','yum'),
('These users have a ordered memberships of this role','Ces membres sont assignés à ce rôle','fr','yum'),
('These users have a ordered memberships of this role','Questi utenti hanno ordinato l''iscrizione a questo ruolo','it','yum'),
('These users have been assigned to this Role','Ce rôle a bien été attribué à ces membres','fr','yum'),
('These users have been assigned to this Role','Questi utenti sono assegnati al ruolo:','it','yum'),
('These users have been assigned to this Role','Uzytkownik zostal przypisany do rol:','pl','yum'),
('These users have been assigned to this role','Ce rôle a bien été attribué à ces membres','fr','yum'),
('These users have been assigned to this role','Questo ruolo e assegnato a questo utente','it','yum'),
('These users have been assigned to this role','Uzytkownik zostal przypisany do rol','pl','yum'),
('These users have commented your profile recently','Ces utilisateurs ont commenté récemment votre profil','fr','yum'),
('These users have commented your profile recently','Questo utente ha recentemente commentato sul tuo profilo','it','yum'),
('These users have visited my profile','Ces utilisateurs ont visité mon profil.','fr','yum'),
('These users have visited my profile','Questi utenti hanno visitato il tuo profilo','it','yum'),
('These users have visited your profile recently','Ces utilisateurs ont visité votre profil récemment','fr','yum'),
('These users have visited your profile recently','Questi utenti hanno recentemente visitato il tuo profilo','it','yum'),
('This account is blocked.','Votre compte est bloqué.','fr','yum'),
('This account is blocked.','Il tuo account e stato bloccato.','it','yum'),
('This account is blocked.','To konto jest zablokowane.','pl','yum'),
('This account is not activated.','Votre compte n\'a pas été activé.','fr','yum'),
('This account is not activated.','Il tuo account non e attivato.','it','yum'),
('This account is not activated.','To konto nie zostalo jeszcze aktywowane.','pl','yum'),
('This membership is still {days} days active','L''iscrizione e ancora attiva per {days} giorni','it','yum'),
('This message will be sent to {username}','Ce message sera envoyé à {username}','fr','yum'),
('This message will be sent to {username}','Questo messaggio verra inviato a {username}','it','yum'),
('This role can administer users of this roles','Ce rôle permet d\'administrer les utilisateurs ayant ce rôle','fr','yum'),
('This role can administer users of this roles','Questo ruolo puo amministrare utenti di questo ruolo','it','yum'),
('This user belongs to these roles:','Cet utilisateur possède les rôles suivant:','fr','yum'),
('This user belongs to these roles:','L''Utente appartiene a questi ruoli:','it','yum'),
('This user belongs to these roles:','Uzytkownik posiada role:','pl','yum'),
('This user can administer this users','Ce membre peut Gérer ces utilisateurs.','fr','yum'),
('This user can administer this users','Gli utenti possono gestire questi utenti','it','yum'),
('This user can administer this users:','Cet utilisateur peut administrer ces membres:','fr','yum'),
('This user can administer this users:','Gli utenti possono gestire questi utenti:','it','yum'),
('This user can administer this users:','Uzytkownik moze zarzadzaj nastepujacymi uzytkownikami:','pl','yum'),
('This user can administrate this users','Uzytkownik moze administrowac podanymi uzytkownikami','pl','yum'),
('This user''s email address already exists.','Indirizzo email esistente.','it','yum'),
('This user''s email adress already exists.','Cette adresse e-mail existe déjà dans notre base de données.','fr','yum'),
('This user''s email adress already exists.','Indirizzo e-mail gia esistente.','it','yum'),
('This user''s email adress already exists.','Podany adres melopwy jest w uzyciu','pl','yum'),
('This user''s email adress already exists.','Пользователь с таким электронным адресом уже существует.','ru','yum'),
('This user''s name already exists.','Ce nom d\'utilisateur existe déjà dans notre base de données.','fr','yum'),
('This user''s name already exists.','Nome esistenze','it','yum'),
('This user''s name already exists.','Podana nazwa uzytkownika jest w uzyciu.','pl','yum'),
('This user''s name already exists.','Пользователь с таким именем уже существует.','ru','yum'),
('Time sent','Envoyé le','fr','yum'),
('Time sent','Pubblicato su','it','yum'),
('Time sent','Wyslano','pl','yum'),
('Title','Titre','fr','yum'),
('Title','Titolo','it','yum'),
('Title','Название','ru','yum'),
('To','A','fr','yum'),
('To','A','it','yum'),
('Try again','Essayer à nouveau','fr','yum'),
('Try again','Prova di nuovo','it','yum'),
('Try again','Sprobuj jeszcze raz','pl','yum'),
('Update','Modifier','fr','yum'),
('Update','Aggiorna','it','yum'),
('Update','Zmien','pl','yum'),
('Update Profile Field','Modifier le champ du profil','fr','yum'),
('Update Profile Field','Aggiorna campo Profilo','it','yum'),
('Update Profile Field','Zmien pole w profilu','pl','yum'),
('Update Profile Field','Править','ru','yum'),
('Update User','Modifier un utilisateur','fr','yum'),
('Update User','Aggiorna utenti','it','yum'),
('Update User','Править','ru','yum'),
('Update my profile','Aggiorna profilo','it','yum'),
('Update payment','Aggiorna pagamento','it','yum'),
('Update role','Modifier les roles','fr','yum'),
('Update role','Aggiorna ruolo','it','yum'),
('Update role','Edytuj role','pl','yum'),
('Update user','Modifier un utilisateur','fr','yum'),
('Update user','Aggiorna utente','it','yum'),
('Update user','Zmien uzytkownika','pl','yum'),
('Upload Avatar','Charger un avatar','fr','yum'),
('Upload Avatar','Carica avatar','it','yum'),
('Upload avatar','Charger une image de profil maintenant','fr','yum'),
('Upload avatar','Carica avatar','it','yum'),
('Upload avatar Image','Carica avatar','it','yum'),
('Upload avatar image','Charger un avatar','fr','yum'),
('Upload avatar image','Carica immagine avatar','it','yum'),
('Avatar administration','Gestion des avatars', 'fr', 'yum'),
('User','Utilisateur','fr','yum'),
('User','Utente','it','yum'),
('User Administration','Gestion des utilisateurs','fr','yum'),
('User Administration','Gestione utente','it','yum'),
('User Administration','Zarzadzanie uzytkownikami','pl','yum'),
('User Management Home','Accueil gestion des utilisateurs','fr','yum'),
('User Management Home','Home gestione utente','it','yum'),
('User Management Home','Strona startowa profilu','pl','yum'),
('User Management settings configuration','Options de configuration des utilisateurs','fr','yum'),
('User Management settings configuration','Configurazione impostazioni gestione utente','it','yum'),
('User Operations','Actions de l\'utilisateur','fr','yum'),
('User Operations','Azioni utente','it','yum'),
('User Operations','Czynnosci uzytkownika','pl','yum'),
('User activation','Activation du compte utilisateur','fr','yum'),
('User activation','Attivazione utente','it','yum'),
('User activation','User-Aktivierung','pl','yum'),
('User activation','Активация пользователя','ru','yum'),
('User administration Panel','Centre de contrôle des utilisateurs','fr','yum'),
('User administration Panel','Pannello di controllo','it','yum'),
('User administration Panel','Panel zarzadzania uzytkownika','pl','yum'),
('User administration panel','Centre de contrôle des utilisateurs','fr','yum'),
('User administration panel','Pannello di controllo','it','yum'),
('User administration panel','Panel zarzadzania uzytkownikiem','pl','yum'),
('User belongs to Roles','L\'utilisateur possède les rôles','fr','yum'),
('User belongs to Roles','Utente appartiene a questi ruoli','it','yum'),
('User belongs to Roles','Uzytkownik posiada role','pl','yum'),
('User belongs to these roles','L\'utilisateur possède ces rôles','fr','yum'),
('User belongs to these roles','Utente appartiene a questi ruoli','it','yum'),
('User belongs to these roles','Uzytkownik posiada role','pl','yum'),
('User can not administer any users','Impossible de gérer les rôles','fr','yum'),
('User can not administer any users','Impossibile gestire gli utenti','it','yum'),
('User can not administer any users','Uzytkownik nie moze zarzadzac zadnymi uzytkownikami','pl','yum'),
('User can not administer any users of any role','Impossible de gérer les rôles','fr','yum'),
('User can not administer any users of any role','Impossibile gestire i ruoli','it','yum'),
('User can not administer any users of any role','Uzytkownik nie moze zarzadzac zadnymi rolami uzytkownikow','pl','yum'),
('User is Online!','Utilisateur en ligne!','fr','yum'),
('User is Online!','Utente online!','it','yum'),
('User module settings','Réglages du module utilisateur','fr','yum'),
('User module settings','Modulo impostazioni utente','it','yum'),
('User module settings','Ustawienia modulu uzytkownika','pl','yum'),
('Usergroups','Groupes d\'utilisateurs','fr','yum'),
('Usergroups','Gruppi utenti','it','yum'),
('Username','Nom d\'utilisateur','fr','yum'),
('Username','Username','it','yum'),
('Username','Uzytkownik','pl','yum'),
('Username is incorrect.','Le nom d\'utilisateur est incorrect.','fr','yum'),
('Username is incorrect.','Username non corretto.','it','yum'),
('Username is incorrect.','Nazwa uzytkownika jest niepoprawna.','pl','yum'),
('Username is incorrect.','Пользователь с таким именем не зарегистрирован.','ru','yum'),
('Username or Email','Nom d\'utilisateur ou adresse e-mail','fr','yum'),
('Username or Email','Username o email','it','yum'),
('Username or Password is incorrect','Nom d\'utilisateur ou mot passe incorrect','fr','yum'),
('Username or Password is incorrect','Username o password errato/a','it','yum'),
('Username or email','Nom d\'utilisateur ou adresse e-mail','fr','yum'),
('Username or email','Username o email','it','yum'),
('Users','Utilisateurs','fr','yum'),
('Users','Utenti','it','yum'),
('Users','Пользователи','ru','yum'),
('Users:','Utilisateurs:','fr','yum'),
('Users:','Utenti:','it','yum'),
('Users:','Uzytkownicy:','pl','yum'),
('Variable name','Nom de la variable','fr','yum'),
('Variable name','Nome variabile','it','yum'),
('Variable name','Имя переменной','ru','yum'),
('Verification Code','Codice verifica','it','yum'),
('Verification Code','Kod weryfikujacy','pl','yum'),
('Verification Code','Проверочный код','ru','yum'),
('Verification code','Code de vérification:','fr','yum'),
('Verification code','Codice verifica','it','yum'),
('View','Voir','fr','yum'),
('View','Visualizza','it','yum'),
('View','Polaz','pl','yum'),
('View Details','Mostra dettagli','it','yum'),
('View Profile Field','Mostra campo Profilo','it','yum'),
('View Profile Field','Просмотр','ru','yum'),
('View Profile Field #','Mostra # campo Profilo','it','yum'),
('View Profile Field #','Поле профиля #','ru','yum'),
('View User','Voir l\'utilisateur','fr','yum'),
('View User','Mostra utente','it','yum'),
('View User','Просмотр профиля','ru','yum'),
('View admin messages','Voir les messages de l\'administateur','fr','yum'),
('View admin messages','Visualizza messaggi amministratore','it','yum'),
('View admin messages','Pokaz wiadomosci administratora','pl','yum'),
('View my messages','Voir mes messages','fr','yum'),
('View my messages','Visualizza messaggi','it','yum'),
('View my messages','Wyswietl moje wiadomosci','pl','yum'),
('View user "{username}"','Voir l\'utilisateur "{username}"','fr','yum'),
('View user "{username}"','Visualizza utente "{username}"','it','yum'),
('View user "{username}"','Uzytkownik "{username}"','pl','yum'),
('View users','Voir les utilisateurs','fr','yum'),
('View users','Visualizza utenti','it','yum'),
('View users','Pokaz uzytkownika','pl','yum'),
('Visible','Visible','fr','yum'),
('Visible','Visibile','it','yum'),
('Visible','Видимость','ru','yum'),
('Visit profile','Visiter le profil','fr','yum'),
('Visit profile','Visita profilo','it','yum'),
('When selecting searchable, users of this role can be searched in the "user Browse" function','Si le status "visible" est séléctionné, les utilisateurs de ce rôle pourront apparaitre dans les resultats de recherche','fr','yum'),
('When selecting searchable, users of this role can be searched in the "user Browse" function','Quando selezioni "Ricercabile", gli utenti di questo ruolo sono ricercabili nella funzione "Browser utenti"','it','yum'),
('Write a comment','Laisser un commentaire','fr','yum'),
('Write a comment','Scrivi commento','it','yum'),
('Write a message','Ecrire un message','fr','yum'),
('Write a message','Scrivi messaggio','it','yum'),
('Write a message','Napisz wiadomosc','pl','yum'),
('Warning: there have been {count} failed login attempts','Achtung: {count} fehlgeschlagene Anmeldeversuche seit der letzten Anmeldung', 'de','yum'),
('Write a message to this User','Ecrire un message a ce membre','fr','yum'),
('Write a message to this User','Scrivi messaggio a questo utente','it','yum'),
('Write a message to {username}','Message ecrire a {username}','fr','yum'),
('Write a message to {username}','Scrivi messaggio a {username}','it','yum'),
('Write another message','Ecrire un autre message','fr','yum'),
('Write another message','Scrivi un''altro messaggio','it','yum'),
('Write another message','Eine weitere Nachricht schreiben','pl','yum'),
('Write comment','Ecrire un commentaire','fr','yum'),
('Write comment','Scrivi commento','it','yum'),
('Written at','Ecrit le','fr','yum'),
('Written at','Scritto a','it','yum'),
('Written from','Ecrit par','fr','yum'),
('Written from','Scritto da','it','yum'),
('Wrong password confirmation! Account was not deleted','Mot de passe incorrect! Le compte n\'a pas été supprimé','fr','yum'),
('Wrong password confirmation! Account was not deleted','Password id oconferma errata! Account non cancellato','it','yum'),
('Wrong password confirmation! Account was not deleted','Ni<PASSWORD>! Konto nie zostalo usuniete','pl','yum'),
('Yes','Oui','fr','yum'),
('Yes','Si','it','yum'),
('Yes','Ja','pl','yum'),
('Yes','Да','ru','yum'),
('Yes and show on registration form','oui et afficher sur le formulaire d\'inscription','fr','yum'),
('Yes and show on registration form','Si e mostra nel form di registrazione','it','yum'),
('Yes and show on registration form','Tak i pokaz w formularzu rejestracji','pl','yum'),
('Yes and show on registration form','Да и показать при регистрации','ru','yum'),
('You account is activated.','Votre compte a bien été activé.','fr','yum'),
('You account is activated.','Account attivato','it','yum'),
('You account is activated.','Ihr Konto wurde aktiviert.','pl','yum'),
('You account is activated.','Ваша учетная запись активирована.','ru','yum'),
('You account is active.','Votre compte est actif.','fr','yum'),
('You account is active.','Account attivo','it','yum'),
('You account is active.','Ihr Konto ist aktiv.','pl','yum'),
('You account is active.','Ваша учетная запись уже активирована.','ru','yum'),
('You account is blocked.','Account bloccato','it','yum'),
('You account is blocked.','Ваш аккаунт заблокирован.','ru','yum'),
('You account is not activated.','Account non attivo','it','yum'),
('You account is not activated.','Ваш аккаунт не активирован.','ru','yum'),
('You already are friends','Cet utilisateur est déjà votre ami','fr','yum'),
('You already are friends','Siete gia in contatto','it','yum'),
('You are not allowed to view this profile.','VOus ne pouvez pas consulter ce profil.','fr','yum'),
('You are not allowed to view this profile.','Non puoi vedere questo profilo.','it','yum'),
('You are not allowed to view this profile.','Nie masz uprawnie do przegladania tego profilu','pl','yum'),
('You are running the Yii User Management Module {version} in Debug Mode!','Dies ist das Yii-User-Management Modul in Version {version} im Debug Modus!','fr','yum'),
('You are running the Yii User Management Module {version} in Debug Mode!','Questo e il modulo di YUM versione {version} in modalita debug!','it','yum'),
('You are running the Yii User Management Module {version} in Debug Mode!','Uruchamiasz modul Yii User Management Modul, wersja {version}, w trybie DEBUG!','pl','yum'),
('You do not have any friends yet','Votre liste de contact est vide','fr','yum'),
('You do not have any friends yet','Lista contatti vuota','it','yum'),
('You do not have set an avatar image yet','Aucune photo de votre profil disponible','fr','yum'),
('You do not have set an avatar image yet','Non hai settato un''avatar','it','yum'),
('You have new Messages !','Vous avez de nouveaux messages!','fr','yum'),
('You have new Messages !','Hai un nuovo messaggio!','it','yum'),
('You have new messages!','Vous avez de nouveaux messages!','fr','yum'),
('You have new messages!','Hai un nuovo messaggio!','it','yum'),
('You have new messages!','Masz nowa wiadomosc!','pl','yum'),
('You have no messages yet','Vous n\'avez pas de messages','fr','yum'),
('You have no messages yet','Non hai messaggi','it','yum'),
('You have {count} new Messages !','Vous avez {count} nouveau(x) message(s)!','fr','yum'),
('You have {count} new Messages !','Hai {count} nuovi messaggi!','it','yum'),
('You have {count} new Messages !','Masz {count} nowych wiadomosci !','pl','yum'),
('You registered from {site_name}','Sei registrato su {site_name}','it','yum'),
('Your Account has been activated. Thank you for your registration.','Votre compte a bien été activé. Merci pour votre inscription.','fr','yum'),
('Your Account has been activated. Thank you for your registration.','Il tuo account e stato attivato. Grazie per la tua registrazione','it','yum'),
('Your Avatar image','Votre avatar','fr','yum'),
('Your Avatar image','Il tuo avatar','it','yum'),
('Your Message has been sent.','Votre message a été envoyé.','fr','yum'),
('Your Message has been sent.','Messaggio inviato.','it','yum'),
('Your account has been activated. Thank you for your registration','Votre compte a bien été activé. Merci pour votre inscription.','fr','yum'),
('Your account has been activated. Thank you for your registration','Il tuo account e stato attivato. Grazie per esserti registrato','it','yum'),
('Your account has been activated. Thank you for your registration.','Twoje konto zostalo aktywowane. Dziekujemy za rejestracje.','pl','yum'),
('Your account has been deleted.','Votre compte a bien été supprimé.','fr','yum'),
('Your account has been deleted.','Il tuo account e stato cancellato.','it','yum'),
('Your activation succeeded','Votre compte a été activé avec succès','fr','yum'),
('Your activation succeeded','Attivazione riuscita','it','yum'),
('Your changes have been saved','Vos modifications ont été enregistrées','fr','yum'),
('Your changes have been saved','Le modifiche sono state salvate','it','yum'),
('Your changes have been saved','Twoje zmiany zostaly zapisane','pl','yum'),
('Your current password','Votre mot de passe actuel','fr','yum'),
('Your current password','La tua password corrente','it','yum'),
('Your current password is not correct','Votre mot de passe actuel n\'est pas correct','fr','yum'),
('Your current password is not correct','La tua password corrente non e corretta','it','yum'),
('Your friendship request has been accepted','Votre demande en ami a été acceptée','fr','yum'),
('Your friendship request has been accepted','La richiesta di contatto e stata accettata','it','yum'),
('Your message has been sent','Votre message a été envoyé','fr','yum'),
('Your message has been sent','Il tuo messaggio e stato inviato.','it','yum'),
('Your message has been sent','Twoja wiadomosc zostala wyslana','pl','yum'),
('Your new password has been saved.','La modification de votre mot de passe a bien été enregistrée.','fr','yum'),
('Your new password has been saved.','La nuova password e stata salvata.','it','yum'),
('Your new password has been saved.','Twoje nowe haslo zostalo zapisane.','pl','yum'),
('Your password has expired. Please enter your new Password below:','Votre mot de passe a expiré. Veuillez en definir un nouveau:','fr','yum'),
('Your password has expired. Please enter your new Password below:','La password e scaduta. Si prega di inserire una nuova password:','it','yum'),
('Your privacy settings have been saved','Vos paramètres de confidentialité ont bien été enregistrés','fr','yum'),
('Your privacy settings have been saved','Le tue opzioni Privacy sono state salvate','it','yum'),
('Your profile','Votre profil','fr','yum'),
('Your profile','Il tuo profilo','it','yum'),
('Your profile','Ihr Profil','pl','yum'),
('Your profile','Ваш профиль','ru','yum'),
('about','A propos','fr','yum'),
('about','Informazioni su','it','yum'),
('activation key','Clé d\'activation','fr','yum'),
('activation key','chiave di attivazione','it','yum'),
('activation key','Aktivierungsschlussel','pl','yum'),
('activation key','Ключ активации','ru','yum'),
('birthdate','date de naissance','fr','yum'),
('birthdate','Compleanno','it','yum'),
('birthday','anniversaire','fr','yum'),
('birthday','Compleanno','it','yum'),
('change Password','Changer de mot de passe','fr','yum'),
('change Password','<PASSWORD>','pl','yum'),
('change password','Changer de mot de passe','fr','yum'),
('change password','Cambia password','it','yum'),
('do not make my friends public','Ne pas rendre publique la liste de mes amis','fr','yum'),
('do not make my friends public','Non mostrare i miei contatti pubblicamente','it','yum'),
('email','Adresse e-mail','fr','yum'),
('email','email','it','yum'),
('email','mejl','pl','yum'),
('email address','Adres mejlowy','pl','yum'),
('firstname','Prénom','fr','yum'),
('firstname','Cognome','it','yum'),
('friends only','A mes amis seulement','fr','yum'),
('friends only','Solo contatti','it','yum'),
('lastname','Nom de famille','fr','yum'),
('lastname','Nome','it','yum'),
('make my friends public','Rendre publique la liste de mes amis','fr','yum'),
('make my friends public','Rendi pubblici i miei contatti','it','yum'),
('no','Non','fr','yum'),
('no','No','it','yum'),
('of user','de l\'utilisateur','fr','yum'),
('of user','dell''utente','it','yum'),
('only to my friends','seulement pour mes amis','fr','yum'),
('only to my friends','solamente ai miei contatti','it','yum'),
('password','mot de passe','fr','yum'),
('password','password','it','yum'),
('password','<PASSWORD>','pl','yum'),
('password','<PASSWORD>','ru','yum'),
('private','Privé','fr','yum'),
('private','Privato','it','yum'),
('private','prywatny','pl','yum'),
('protected','Protegé','fr','yum'),
('protected','Protetto','it','yum'),
('protected','chroniony','pl','yum'),
('public','Publique','fr','yum'),
('public','Pubblico','it','yum'),
('public','publiczny','pl','yum'),
('street','Rue','fr','yum'),
('street','Indirizzo','it','yum'),
('timestamp','horodatage','fr','yum'),
('timestamp','timestamp','it','yum'),
('username','nom d\'utilisateur','fr','yum'),
('username','username','it','yum'),
('username','nazwa uzytkownika','pl','yum'),
('username','Логин','ru','yum'),
('username or email','nom d\'utilisateur ou adresse e-mail','fr','yum'),
('username or email','username or email','it','yum'),
('username or email','nazwa uzytkowniak lub mejl','pl','yum'),
('username or email','Логин или email','ru','yum'),
('yes','Oui','fr','yum'),
('yes','Si','it','yum'),
('zipcode','Code postal','fr','yum'),
('zipcode','CAP','it','yum'),
('{attribute} is too long (max. {num} characters).','{attribute} est trop long (max. {num} caractères).','fr','yum'),
('{attribute} is too short (min. {num} characters).','{attribute} est trop court (min. {num} caractères).','fr','yum'),
('{attribute} must include at least {num} digits.','{attribute} doit inclure au moins {num} chiffres.','fr','yum'),
('{attribute} must include at least {num} lower case letters.','{attribute} doit inclure au moins {num} lettres minuscules.','fr','yum'),
('{attribute} must include at least {num} symbols.','{attribute} doit inclure au moins {num} symboles.','fr','yum'),
('{attribute} must include at least {num} upper case letters.','{attribute} doit inclure au moins {num} lettres majuscules.','fr','yum'),
('{attribute} must not contain more than {num} sequentially repeated characters.','{attribute} ne doit pas contenir plus de {num} caractères similaires consécutifs.','fr','yum'),
('{attribute} must not contain whitespace.','{attribute} ne doit pas contenir d\'espaces.','fr','yum'),
('{attribute} is too long (max. {num} characters).','{attribute} troppo lungo (max. {num} caratteri).','it','yum'),
('{attribute} is too long (max. {num} characters).','{attribute} jest zbyt dlugi (max. {num} znakow).','pl','yum'),
('{attribute} is too short (min. {num} characters).','{attribute} troppo corto (min. {num} caratteri).','it','yum'),
('{attribute} is too short (min. {num} characters).','{attribute} jest zbyt krotki (min. {num} znakow).','pl','yum'),
('{attribute} must include at least {num} digits.','{attribute}deve includere almeno {num} numeri.','it','yum'),
('{attribute} must include at least {num} digits.','{attribute} musi zawierac co najmniej {num} cyfr.','pl','yum'),
('{attribute} must include at least {num} lower case letters.','{attribute} deve includere almeno {num} lettere minuscole.','it','yum'),
('{attribute} must include at least {num} lower case letters.','{attribute} musi zawierac co najmniej {num} malych liter.','pl','yum'),
('{attribute} must include at least {num} symbols.','{attribute} deve includere almeno {num} simboli.','it','yum'),
('{attribute} must include at least {num} symbols.','{attribute} musi zawierac co najmniej {num} symboli.','pl','yum'),
('{attribute} must include at least {num} upper case letters.','{attribute} deve includere almeno {num} lettere maiuscole.','it','yum'),
('{attribute} must include at least {num} upper case letters.','{attribute} musi zawierac co najmniej {num} duzych liter.','pl','yum'),
('{attribute} must not contain more than {num} sequentially repeated characters.','{attribute} non deve contenere {num} caratteri ripetuti sequenzialmente.','it','yum'),
('{attribute} must not contain more than {num} sequentially repeated characters.','{attribute} nie moze zawierac wiecej niz {num} sekwencji znakow.','pl','yum'),
('{attribute} must not contain whitespace.','{attribute} non deve contenere spazi.','it','yum'),
('{attribute} must not contain whitespace.','{attribute} nie moze zawierac bialych znakow.','pl','yum');
insert into translation (`language`,`category`,`message`,`translation`) values
("zh_cn","yum","About","关于"),
("zh_cn","yum","Access control","访问控制"),
("zh_cn","yum","Action","动作"),
("zh_cn","yum","Actions","动作集"),
("zh_cn","yum","Activated","已激活"),
("zh_cn","yum","Active","激活"),
("zh_cn","yum","Active - First visit","激活 - 最先访问"),
("zh_cn","yum","Active users","激活用户"),
("zh_cn","yum","Activities","行动"),
("zh_cn","yum","Add as a friend","加为好友"),
("zh_cn","yum","Admin inbox","管理员收件箱"),
("zh_cn","yum","Admin sent messages","管理员发件箱"),
("zh_cn","yum","Admin users","管理员组"),
("zh_cn","yum","Admin users can not be deleted!","管理员组不能删除"),
("zh_cn","yum","All","所有"),
("zh_cn","yum","Allow profile comments","允许对简介评论"),
("zh_cn","yum","Allowed are lowercase letters and digits.","小写字母以及数字是被允许的"),
("zh_cn","yum","Allowed lowercase letters and digits.","允许的小写字母和数字"),
("zh_cn","yum","Allowed roles","允许的角色"),
("zh_cn","yum","Allowed users","允许的用户"),
("zh_cn","yum","Already exists.","已经存在"),
("zh_cn","yum","An error occured while saving your changes","保存出错"),
("zh_cn","yum","An error occured while uploading your avatar image","上传头像图片出错"),
("zh_cn","yum","Answer","应答"),
("zh_cn","yum","Appear in search","搜索中呈现"),
("zh_cn","yum","Are you really sure you want to delete your Account?","你确定你要删除?"),
("zh_cn","yum","Are you sure to delete this item?","你确定要删除"),
("zh_cn","yum","Are you sure to remove this comment from your profile?","你确定要在简介中移除这条评论?"),
("zh_cn","yum","Are you sure you want to remove this friend?","你确认要删除这位好友?"),
("zh_cn","yum","Assign this role to new users automatically","自动授权此角色给新用户(默认角色)"),
("zh_cn","yum","Automatically extend subscription","自动扩展subscription"),
("zh_cn","yum","Avatar image","头像图片"),
("zh_cn","yum","Back","返回"),
("zh_cn","yum","Back to inbox","返回收件箱"),
("zh_cn","yum","Back to my Profile","返回到我的简介"),
("zh_cn","yum","Back to profile","返回到简介"),
("zh_cn","yum","Banned","禁用"),
("zh_cn","yum","Banned users","被禁用的账户"),
("zh_cn","yum","Browse","浏览"),
("zh_cn","yum","Browse groups","浏览群组"),
("zh_cn","yum","Browse logged user activities","浏览记录的用户行为"),
("zh_cn","yum","Browse memberships","浏览会员关系"),
("zh_cn","yum","Browse user activities","访问用户行为"),
("zh_cn","yum","Browse user groups","访问用户群组"),
("zh_cn","yum","Browse usergroups","访问用户群组"),
("zh_cn","yum","Browse users","访问用户"),
("zh_cn","yum","Cancel","取消"),
("zh_cn","yum","Cancel deletion","取消删除"),
("zh_cn","yum","Cancel request","取消访问"),
("zh_cn","yum","Cancel subscription","取消订阅"),
("zh_cn","yum","Cannot set password. Try again.","骚年,不能设置密码,请重试"),
("zh_cn","yum","Category","类别"),
("zh_cn","yum","Change Password","修改密码"),
("zh_cn","yum","Change admin Password","修改管理员密码"),
("zh_cn","yum","Change password","修改密码"),
("zh_cn","yum","Changes","修改"),
("zh_cn","yum","Changes are saved","修改被保存"),
("zh_cn","yum","Changes is saved.","修改被保存"),
("zh_cn","yum","Choose All","全选"),
("zh_cn","yum","City","城市"),
("zh_cn","yum","Click here to respond to {username}","单击这里去响应(respond to) {username}"),
("zh_cn","yum","Column Field type in the database.","数据库的列类型"),
("zh_cn","yum","Comment","评论"),
("zh_cn","yum","Compose","写信件"),
("zh_cn","yum","Compose new message","写信件"),
("zh_cn","yum","Composing new message","写信件"),
("zh_cn","yum","Confirm","确定"),
("zh_cn","yum","Confirm deletion","确定删除"),
("zh_cn","yum","Confirmation pending","确定保持(pending)"),
("zh_cn","yum","Content","内容"),
("zh_cn","yum","Create","新建"),
("zh_cn","yum","Create Action","新建动作"),
("zh_cn","yum","Create Profile Field","新建简介内容(Create profile Field)"),
("zh_cn","yum","Create Role","新建角色"),
("zh_cn","yum","Create User","新建用户"),
("zh_cn","yum","Create Usergroup","新建用户群组"),
("zh_cn","yum","Create my profile","新建我的简介"),
("zh_cn","yum","Create new translation","新建翻译"),
("zh_cn","yum","Create new User","新建用户"),
("zh_cn","yum","Create new Usergroup","新建用户群组"),
("zh_cn","yum","Create new action","新建动作"),
("zh_cn","yum","Create new field group","新建领域组(field group)"),
("zh_cn","yum","Create new payment type","新建付款类型"),
("zh_cn","yum","Create new role","新建角色"),
("zh_cn","yum","Create new settings profile","新建设置简介"),
("zh_cn","yum","Create new user","新建用户"),
("zh_cn","yum","Create new usergroup","新建用户组"),
("zh_cn","yum","Create payment type","新建支付类型"),
("zh_cn","yum","Create profile field","新建简介内容(profile field)"),
("zh_cn","yum","Create profile fields group","新建简介领域组(profile fields group)"),
("zh_cn","yum","Create role","建立角色"),
("zh_cn","yum","Create user","新建用户"),
("zh_cn","yum","Date","日期"),
("zh_cn","yum","Default","默认"),
("zh_cn","yum","Delete Account","删除账户"),
("zh_cn","yum","Delete Profile Field","删除简介项(Profile Field)"),
("zh_cn","yum","Delete User","删除用户"),
("zh_cn","yum","Delete account","删除账户"),
("zh_cn","yum","Delete file","删除文件"),
("zh_cn","yum","Delete message","删除消息"),
("zh_cn","yum","Deleted","已删除"),
("zh_cn","yum","Deny","拒绝"),
("zh_cn","yum","Description","描述"),
("zh_cn","yum","Different users logged in today","今日登录用户数"),
("zh_cn","yum","Different viewn Profiles","已查看简介次数(Different viewn profiles)"),
("zh_cn","yum","Display order of fields.","显示域顺序(Display order of fields.)"),
("zh_cn","yum","Display order of group.","显示群组顺序(Display order of group.)"),
("zh_cn","yum","Do not appear in search","禁止出现在搜索中"),
("zh_cn","yum","Do not show my online status","禁止显示我的在线状态"),
("zh_cn","yum","Do not show the owner of a profile when i visit him","禁止显示我的浏览简介记录"),
("zh_cn","yum","Downgrade to {role}","降级至{role}"),
("zh_cn","yum","Duration in days","持续天数"),
("zh_cn","yum","E-Mail address","EMail地址"),
("zh_cn","yum","E-Mail already in use. If you have not registered before, please contact our System administrator.","Email地址已注册"),
("zh_cn","yum","E-mail","Email"),
("zh_cn","yum","Edit","编辑"),
("zh_cn","yum","Edit personal data","编辑个人资料"),
("zh_cn","yum","Edit profile","编辑简介"),
("zh_cn","yum","Edit profile field","编辑简介域"),
("zh_cn","yum","Edit text","编辑文本"),
("zh_cn","yum","Edit this role","编辑这条角色"),
("zh_cn","yum","Email is incorrect.","Email不正确"),
("zh_cn","yum","Email is not set when trying to send Registration Email","Email在发送邮件时没有被设置"),
("zh_cn","yum","Enable Captcha","开启验证码"),
("zh_cn","yum","Enable Email Activation","开启Email确认"),
("zh_cn","yum","Enable Profile History","开启简介历史"),
("zh_cn","yum","Enable Recovery","开启恢复功能"),
("zh_cn","yum","Enable Registration","开启注册"),
("zh_cn","yum","End date","结束日期"),
("zh_cn","yum","Ends at","结束于"),
("zh_cn","yum","Error Message","错误消息"),
("zh_cn","yum","Error message when Validation fails.","验证错误的错误邮件"),
("zh_cn","yum","Error message when you validate the form.","验证表单错误的错误邮件"),
("zh_cn","yum","Error while processing new avatar image : {error_message}; File was uploaded without resizing","当处理新头像文件出错:{error_message}; 文件大小出错"),
("zh_cn","yum","Expired","过期"),
("zh_cn","yum","Field","领域"),
("zh_cn","yum","Field Size","领域大小"),
("zh_cn","yum","Field Size min","最小领域"),
("zh_cn","yum","Field Type","领域类型"),
("zh_cn","yum","Field group","领域组"),
("zh_cn","yum","Field size","领域大小"),
("zh_cn","yum","Field size column in the database.","在数据库中的领域大小????Field size column in the database"),
("zh_cn","yum","Field size in the database.","数据库中领域大小"),
("zh_cn","yum","Field type","领域类别"),
("zh_cn","yum","Field type column in the database.","在数据库中的领域类型列 Field type column in the database"),
("zh_cn","yum","Fields with * are required.","加*为必填选项"),
("zh_cn","yum","Fields with <span class=\"required\">*</span> are required.","加<span class=\"required\">*</span>为必填选项"),
("zh_cn","yum","First Name","名字"),
("zh_cn","yum","First name","名字"),
("zh_cn","yum","For all","所有"),
("zh_cn","yum","Form validation error","表单验证错误"),
("zh_cn","yum","Friends","朋友们"),
("zh_cn","yum","Friends of {username}","{username}的好友"),
("zh_cn","yum","Friendship","好友关系"),
("zh_cn","yum","Friendship confirmed","好友关系确认"),
("zh_cn","yum","Friendship rejected","拒绝添加好友"),
("zh_cn","yum","Friendship request already sent","好友请求已发送"),
("zh_cn","yum","Friendship request for {username} has been sent","对{username}的好友请求已发送"),
("zh_cn","yum","Friendship request has been rejected","好友请求被拒绝:-("),
("zh_cn","yum","From","来自"),
("zh_cn","yum","General","默认"),
("zh_cn","yum","Generate Demo Data","建立示例数据"),
("zh_cn","yum","Go to profile of {username}","查看{username}的简介"),
("zh_cn","yum","Grant permission","提升权限"),
("zh_cn","yum","Group Name","群组名称"),
("zh_cn","yum","Group owner","群组"),
("zh_cn","yum","Group title","群组标题"),
("zh_cn","yum","Having","所有(having)"),
("zh_cn","yum","Hidden","隐藏"),
("zh_cn","yum","How expensive is a membership?","这个会员价多少钱?"),
("zh_cn","yum","How many days will the membership be valid after payment?","这个会员能在支付后验证多少天?"),
("zh_cn","yum","Ignore","忽略"),
("zh_cn","yum","Ignored users","忽略的用户"),
("zh_cn","yum","Inactive users","未激活的用户"),
("zh_cn","yum","Incorrect activation URL","错误的激活URL"),
("zh_cn","yum","Incorrect activation URL.","错误的激活URL."),
("zh_cn","yum","Incorrect password (minimal length 4 symbols).","错误的密码,最少4位"),
("zh_cn","yum","Incorrect recovery link.","错误的恢复链接"),
("zh_cn","yum","Incorrect symbol's. (A-z0-9)","错误的字符.(A-z0-9)"),
("zh_cn","yum","Incorrect username (length between 3 and 20 characters).","错误的用户名,长度需要3-20之间"),
("zh_cn","yum","Instructions have been sent to you. Please check your email.","说明信件已经发送,请检查"),
("zh_cn","yum","Invalid recovery key","错误的恢复码"),
("zh_cn","yum","Invitation","邀请"),
("zh_cn","yum","Is membership possible","提供会员"),
("zh_cn","yum","Join group","加入群组"),
("zh_cn","yum","Jump to profile","跳转至简介"),
("zh_cn","yum","Language","语言"),
("zh_cn","yum","Last Name","姓氏"),
("zh_cn","yum","Last name","姓氏"),
("zh_cn","yum","Last visit","上次访问时间"),
("zh_cn","yum","Leave group","离开群组"),
("zh_cn","yum","Let me appear in the search","可被搜索到"),
("zh_cn","yum","Let the user choose in privacy settings","让用户选择隐私设置"),
("zh_cn","yum","Letters are not case-sensitive.","字符不区分大小写"),
("zh_cn","yum","List Profile Field","简介域列表"),
("zh_cn","yum","List User","用户列表"),
("zh_cn","yum","List roles","角色列表"),
("zh_cn","yum","List user","用户列表"),
("zh_cn","yum","List users","用户列表"),
("zh_cn","yum","Log profile visits","日志简介访问???Log profile visits"),
("zh_cn","yum","Logged in as","记录于"),
("zh_cn","yum","Login","登录"),
("zh_cn","yum","Login Type","登录种类"),
("zh_cn","yum","Login allowed by Email and Username","可使用用户名或邮箱登录 "),
("zh_cn","yum","Login allowed only by Email","只能使用邮箱登录"),
("zh_cn","yum","Login allowed only by Username","只能使用用户名登录"),
("zh_cn","yum","Login is not possible with the given credentials","不能登录,无效的授权"),
("zh_cn","yum","Logout","登出"),
("zh_cn","yum","Lost Password?","忘记密码了?"),
("zh_cn","yum","Lost password?","忘记密码了?"),
("zh_cn","yum","Mail send method","邮件发送方法"),
("zh_cn","yum","Make {field} public available","使得{field}公开可见"),
("zh_cn","yum","Manage","管理"),
("zh_cn","yum","Manage Actions","管理行动Actions"),
("zh_cn","yum","Manage Profile Field","管理简介域"),
("zh_cn","yum","Manage Profile Fields","管理简介域"),
("zh_cn","yum","Manage Profiles","管理简介"),
("zh_cn","yum","Manage Roles","管理角色"),
("zh_cn","yum","Manage User","管理用户"),
("zh_cn","yum","Manage Users","管理用户"),
("zh_cn","yum","Manage field groups","管理域组"),
("zh_cn","yum","Manage friends","管理好友"),
("zh_cn","yum","Manage my users","管理我的账户"),
("zh_cn","yum","Manage payments","管理支付"),
("zh_cn","yum","Manage permissions","管理权限元"),
("zh_cn","yum","Manage profile Fields","管理简介域"),
("zh_cn","yum","Manage profile field groups","管理简介域组"),
("zh_cn","yum","Manage profile fields","管理简介组"),
("zh_cn","yum","Manage profile fields groups","管理简介域组"),
("zh_cn","yum","Manage profiles","管理简介"),
("zh_cn","yum","Manage roles","管理权限"),
("zh_cn","yum","Manage text settings","管理文字设置"),
("zh_cn","yum","Manage this profile","管理这个简介"),
("zh_cn","yum","Manage user Groups","管理用户群组"),
("zh_cn","yum","Manage users","管理用户"),
("zh_cn","yum","Mange Profile Field","管理简介域"),
("zh_cn","yum","Mark as read","标记为已读"),
("zh_cn","yum","Match","匹配"),
("zh_cn","yum","Membership","会员关系"),
("zh_cn","yum","Membership ends at: {date}","会员到期日:{date}"),
("zh_cn","yum","Membership has not been payed yet","会员还没被支付"),
("zh_cn","yum","Membership payed at: {date}","会员在{date}被支付"),
("zh_cn","yum","Memberships","会员"),
("zh_cn","yum","Message","消息"),
("zh_cn","yum","Message \"{message}\" has been sent to {to}","消息{message}已经被发送至{to}"),
("zh_cn","yum","Message \"{message}\" was marked as read","消息{message}被标记至已读"),
("zh_cn","yum","Message "{message}" has been sent to {to}","消息{message}已经被发送至{to}"),
("zh_cn","yum","Message "{message}" was marked as read","消息{message}被标记为已读"),
("zh_cn","yum","Message count","消息数"),
("zh_cn","yum","Message from","消息来自于"),
("zh_cn","yum","Message from ","消息来自于"),
("zh_cn","yum","Messages","消息"),
("zh_cn","yum","Messaging system","消息系统"),
("zh_cn","yum","Minimal password length 4 symbols.","密码<PASSWORD>"),
("zh_cn","yum","Module settings","模块设置"),
("zh_cn","yum","Module text settings","模块文字设置"),
("zh_cn","yum","My Inbox","我的收件箱"),
("zh_cn","yum","My friends","我的好友"),
("zh_cn","yum","My groups","我的群组"),
("zh_cn","yum","My inbox","我的收件箱"),
("zh_cn","yum","My memberships","我的会员关系"),
("zh_cn","yum","My profile","我的简介"),
("zh_cn","yum","New friendship request","新的会员请求"),
("zh_cn","yum","New friendship request from {username}","来自于{username}的会员请求"),
("zh_cn","yum","New friendship requests","新会员请求"),
("zh_cn","yum","New message from {from}: {subject}","新的消息来自于{from}"),
("zh_cn","yum","New messages","新消息"),
("zh_cn","yum","New password","新的密码"),
("zh_cn","yum","New password is saved.","新的密码已经存储"),
("zh_cn","yum","New profile comment","新的简介评论"),
("zh_cn","yum","New profile comment from {username}","新的评论来自于{username}"),
("zh_cn","yum","New settings profile","新的设置简介"),
("zh_cn","yum","New translation","新建翻译"),
("zh_cn","yum","New value","新的值"),
("zh_cn","yum","No","否"),
("zh_cn","yum","No friendship requested","没有好友邀请"),
("zh_cn","yum","No new messages","没有消息"),
("zh_cn","yum","No profile changes were made","没有简介变更"),
("zh_cn","yum","No, but show on registration form","否,但是显示来自注册???No, but show on registration from"),
("zh_cn","yum","Nobody has commented your profile yet","还没有人在你的简介里评论"),
("zh_cn","yum","Nobody has visited your profile yet","没有人浏览过你的简介"),
("zh_cn","yum","None","没有"),
("zh_cn","yum","Not active","未激活"),
("zh_cn","yum","Not assigned","未部署"),
("zh_cn","yum","Not visited","未浏览"),
("zh_cn","yum","Not yet payed","未付款"),
("zh_cn","yum","Ok","好"),
("zh_cn","yum","Old value","原值"),
("zh_cn","yum","One of the recipients ({username}) has ignored you. Message will not be sent!","{username}忽略了你,消息发送失败"),
("zh_cn","yum","Only owner","唯一所有"),
("zh_cn","yum","Only your friends are shown here","只有你的好友显示在这里"),
("zh_cn","yum","Order confirmed","订阅确认"),
("zh_cn","yum","Order date","订阅日期"),
("zh_cn","yum","Order membership","订阅会员"),
("zh_cn","yum","Order number","订阅数"),
("zh_cn","yum","Ordered at","订阅于"),
("zh_cn","yum","Ordered memberships","已订阅会员关系"),
("zh_cn","yum","Other","其他"),
("zh_cn","yum","Other Validator","其他验证" ),
("zh_cn","yum","Participant count","参与数"),
("zh_cn","yum","Participants","参与"),
("zh_cn","yum","Password","密码"),
("zh_cn","yum","Password Expiration Time","密码过期时间"),
("zh_cn","yum","Password is incorrect.","密码不合法"),
("zh_cn","yum","Password recovery","密码修复"),
("zh_cn","yum","Passwords do not match","密码错误"),
("zh_cn","yum","Payment","付款"),
("zh_cn","yum","Payment arrived","付款到达"),
("zh_cn","yum","Payment date","付款时间"),
("zh_cn","yum","Payment type","付款类型"),
("zh_cn","yum","Payment types","付款类型"),
("zh_cn","yum","Payments","付款"),
("zh_cn","yum","Permissions","权限元"),
("zh_cn","yum","Please activate you account go to {activation_url}","请点击{activation_url}进行激活"),
("zh_cn","yum","Please check your email. An instructions was sent to your email address.","请检查您的邮箱,说明已发送到您的邮箱"),
("zh_cn","yum","Please check your email. Instructions have been sent to your email address.","请检查您的邮箱,说明已发送到您的邮箱"),
("zh_cn","yum","Please enter a request Message up to 255 characters","请输入消息,最长不能超过255个字符"),
("zh_cn","yum","Please enter the letters as they are shown in the image above.","请输入图像中的文字"),
("zh_cn","yum","Please enter your login or email addres.","请输入账户名或邮箱"),
("zh_cn","yum","Please enter your login or email address.","请输入账户名或邮箱"),
("zh_cn","yum","Please enter your password to confirm deletion:","请输入密码确认删除"),
("zh_cn","yum","Please enter your user name or email address.","请输入账户名或邮箱"),
("zh_cn","yum","Please fill out the following form with your login credentials:","请使用您的账户登录"),
("zh_cn","yum","Please log in into the application.","请登录程序(please log in into the application 这里log in 分开了)"),
("zh_cn","yum","Please verify your E-Mail address","请验证你的邮箱地址"),
("zh_cn","yum","Position","未知"),
("zh_cn","yum","Predefined values (example: 1, 2, 3, 4, 5;).","预定义值(例如:1,2,3,4,5;)."),
("zh_cn","yum","Preseve Profiles","保存简介"),
("zh_cn","yum","Price","价格"),
("zh_cn","yum","Privacy","隐私"),
("zh_cn","yum","Privacy settings","隐私设置"),
("zh_cn","yum","Privacy settings for {username}","隐私设置对{username}"),
("zh_cn","yum","Privacysettings","隐私设置"),
("zh_cn","yum","Profile","简介"),
("zh_cn","yum","Profile Comments","简介评论"),
("zh_cn","yum","Profile Fields","简介域"),
("zh_cn","yum","Profile field groups","简介域组"),
("zh_cn","yum","Profile field public options","简介域公开项"),
("zh_cn","yum","Profile field {fieldname}","简介域{fieldname}"),
("zh_cn","yum","Profile fields","简介域"),
("zh_cn","yum","Profile fields groups","简介域祖"),
("zh_cn","yum","Profile history","简介历史"),
("zh_cn","yum","Profile number","简介编号"),
("zh_cn","yum","Profile of","简介(profile of)"),
("zh_cn","yum","Profile of ","简介"),
("zh_cn","yum","Profile visits","简介浏览"),
("zh_cn","yum","Profiles","简介"),
("zh_cn","yum","Range","范围"),
("zh_cn","yum","Read Only Profiles","只读简介"),
("zh_cn","yum","Receive a Email for new Friendship request","收到好友申请邮件"),
("zh_cn","yum","Receive a Email when a new profile comment was made","当简介评论时收到邮件提醒"),
("zh_cn","yum","Receive a Email when new Message arrives","当新消息到来时收到邮件提醒"),
("zh_cn","yum","Registered users","注册的用户"),
("zh_cn","yum","Registration","注册"),
("zh_cn","yum","Registration date","注册日期"),
("zh_cn","yum","Regular expression (example: \"/^[A-Za-z0-9s,]+$/u\").","正则表达式(example: \"/^[A-Za-z0-9s,]+$/u\")"),
("zh_cn","yum","Regular expression (example: '/^[A-Za-z0-9s,]+$/u').","正则表达式(example: \"/^[A-Za-z0-9s,]+$/u\")"),
("zh_cn","yum","Regular expression (example:'/^[A-Za-z0-9s,]+$/u').","正则表达式(example: \"/^[A-Za-z0-9s,]+$/u\")"),
("zh_cn","yum","Remember me net time","下次记得我"),
("zh_cn","yum","Remember me next time","下次记得我"),
("zh_cn","yum","Remove","移除"),
("zh_cn","yum","Remove Avatar","移除头像"),
("zh_cn","yum","Remove comment","移除评论"),
("zh_cn","yum","Remove friend","移除好友"),
("zh_cn","yum","Reply","回复"),
("zh_cn","yum","Reply to Message","回复消息"),
("zh_cn","yum","Reply to message","回复消息"),
("zh_cn","yum","Request friendship for user {username}","好友请求来自于{username}"),
("zh_cn","yum","Required","必要的"),
("zh_cn","yum","Required field (form validator).","必选项(来自验证)"),
("zh_cn","yum","Restore","恢复"),
("zh_cn","yum","Retype Password","重复密码"),
("zh_cn","yum","Retype Password is incorrect.","重复密码错误"),
("zh_cn","yum","Retype password","重复密码"),
("zh_cn","yum","Retype password is incorrect.","重复密码错误"),
("zh_cn","yum","Retype your new password","重复新密码"),
("zh_cn","yum","Retyped password is incorrect","重复的密码错误"),
("zh_cn","yum","Role Administration","角色管理"),
("zh_cn","yum","Roles","角色"),
("zh_cn","yum","Roles / Access control","角色访问控制"),
("zh_cn","yum","Save","保存"),
("zh_cn","yum","Save payment type","保存付款类型"),
("zh_cn","yum","Save profile changes","存储简介更改"),
("zh_cn","yum","Save role","保存角色"),
("zh_cn","yum","Search for username","搜索用户名"),
("zh_cn","yum","Searchable","可搜索"),
("zh_cn","yum","Select a month","选择月份"),
("zh_cn","yum","Select multiple recipients by holding the CTRL key","多选请按Ctrl键"),
("zh_cn","yum","Select the fields that should be public","选择可公开的域"),
("zh_cn","yum","Selectable on registration","注册时可选择"),
("zh_cn","yum","Send","发送"),
("zh_cn","yum","Send a message to this User","发送消息给这个用户"),
("zh_cn","yum","Send invitation","发送邀请"),
("zh_cn","yum","Send message notifier emails","发送消息提醒邮件"),
("zh_cn","yum","Sent at","发送于"),
("zh_cn","yum","Sent messages","发送多消息"),
("zh_cn","yum","Separate usernames with comma to ignore specified users","使用都好分割用户去忽略特殊的用户"),
("zh_cn","yum","Set payment date to today","设置今日付款"),
("zh_cn","yum","Settings","设置"),
("zh_cn","yum","Show activities","显示行动"),
("zh_cn","yum","Show administration Hierarchy","显示管理层次"),
("zh_cn","yum","Show all","全部显示"),
("zh_cn","yum","Show friends","显示好友"),
("zh_cn","yum","Show my online status to everyone","对所有人显示我的在线状态"),
("zh_cn","yum","Show online status","显示在线"),
("zh_cn","yum","Show permissions","显示权限元祖"),
("zh_cn","yum","Show profile visits","显示简介访问"),
("zh_cn","yum","Show roles","显示角色"),
("zh_cn","yum","Show the owner when i visit his profile","当我访问他的简介时候显示所有者"),
("zh_cn","yum","Show users","显示用户"),
("zh_cn","yum","Statistics","统计"),
("zh_cn","yum","Status","状态"),
("zh_cn","yum","Street","街道"),
("zh_cn","yum","Subject","主题"),
("zh_cn","yum","Success","成功"),
("zh_cn","yum","Superuser","超级用户"),
("zh_cn","yum","Text Email Activation","文字Email注册Text email activation"),
("zh_cn","yum","Text Email Recovery","文字邮件恢复"),
("zh_cn","yum","Text Email Registration","文字Email注册"),
("zh_cn","yum","Text Login Footer","文字登录页脚"),
("zh_cn","yum","Text Login Header","文字登录页眉"),
("zh_cn","yum","Text Registration Footer","文字注册页脚"),
("zh_cn","yum","Text Registration Header","文字注册页眉"),
("zh_cn","yum","Text for new friendship request","新好友申请文字"),
("zh_cn","yum","Text for new profile comment","新简介评论的文字"),
("zh_cn","yum","Text translations","文字翻译"),
("zh_cn","yum","Thank you for your registration. Contact Admin to activate your account.","谢谢你的注册,请联系管理员激活你的账户"),
("zh_cn","yum","Thank you for your registration. Please check your email or login.","谢谢你的注册,请检查你的邮件或登录"),
("zh_cn","yum","Thank you for your registration. Please check your email.","谢谢你的注册,请检查你的邮件"),
("zh_cn","yum","Thank you for your registration. Please login.","谢谢你的注册"),
("zh_cn","yum","The comment has been saved","评论已保存"),
("zh_cn","yum","The file \"{file}\" is not an image.","文件不是图片"),
("zh_cn","yum","The file "{file}" is not an image.","文件不是图片"),
("zh_cn","yum","The friendship request has been sent","好友申请已经被发送"),
("zh_cn","yum","The image \"{file}\" height should be \"{height}px\".","文件高度应为{height}."),
("zh_cn","yum","The image \"{file}\" width should be \"{width}px\".","文件宽度应为{width}."),
("zh_cn","yum","The image "{file}" height should be "{height}px".","图像{file}高度应为{height}px"),
("zh_cn","yum","The image "{file}" width should be "{width}px".","图像{file}宽度应为{width}px"),
("zh_cn","yum","The image has been resized to {max_pixel}px width successfully","图像重新定义宽度{max_pixel}px 成功"),
("zh_cn","yum","The image should have at least 50px and a maximum of 200px in width and height. Supported filetypes are .jpg, .gif and .png","图像只能在50px到200px 之间,支持.jpg, .gif, .png"),
("zh_cn","yum","The image was uploaded successfully","图像上传成功"),
("zh_cn","yum","The messages for your application language are not defined.","你的消息在这个语言中未定义"),
("zh_cn","yum","The minimum value of the field (form validator).","最小值在这个域 (来自验证)"),
("zh_cn","yum","The new password has been saved","新密码保存成功"),
("zh_cn","yum","The new password has been saved.","新密码保存成功"),
("zh_cn","yum","The value of the default field (database).","这个域的默认值(数据库)"),
("zh_cn","yum","There are a total of {messages} messages in your System.","在你的系统中共{messages} 消息"),
("zh_cn","yum","There are {active_users} active and {inactive_users} inactive users in your System, from which {admin_users} are Administrators.","有{active_users}用户激活,{inactive_users}未激活,{admin_users}名管理员"),
("zh_cn","yum","There are {profiles} profiles in your System. These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups","有{profiles}的简介.These consist of {profile_fields} profile fields in {profile_field_groups} profile field groups"),
("zh_cn","yum","There are {roles} roles in your System.","总共{roles}个角色"),
("zh_cn","yum","There was an error saving the password","在存储密码的时候出现了错误"),
("zh_cn","yum","These users have been assigned to this Role","这些用户已经被授权给这个角色"),
("zh_cn","yum","These users have been assigned to this role","这些用户已经被授权给这个角色"),
("zh_cn","yum","These users have commented your profile recently","这些用户在最近已经评论过你的简介"),
("zh_cn","yum","These users have visited my profile","这些用户最近已经访问过你的简介"),
("zh_cn","yum","These users have visited your profile recently","这些用户最近已经访问过你的简介"),
("zh_cn","yum","This account is blocked.","帐号已被锁定"),
("zh_cn","yum","This account is not activated.","帐号未激活"),
("zh_cn","yum","This membership is still active {days} days","会员还可持续{days}天"),
("zh_cn","yum","This membership is still {days} days active","会员还可持续{days}天"),
("zh_cn","yum","This message will be sent to {username}","消息会被发送至{username}"),
("zh_cn","yum","This role can administer users of this roles","这个角色可以管理这个角色的用户"),
("zh_cn","yum","This user belongs to these roles:","这个用户从属于这些角色:"),
("zh_cn","yum","This user can administer this users","这个用户可管理这些用户"),
("zh_cn","yum","This user can administer this users:","这个用户可管理这些用户"),
("zh_cn","yum","This user can administrate this users","用户可管理这些用户"),
("zh_cn","yum","This user's email address already exists.","用户的邮箱地址已经存在"),
("zh_cn","yum","This user's email adress already exists.","用户的邮箱地址已经存在"),
("zh_cn","yum","This user's name already exists.","用户名已存在"),
("zh_cn","yum","This users have been assigned to this Role","用户已经授权到此角色"),
("zh_cn","yum","This users have been assigned to this role","用户已经授权到此角色"),
("zh_cn","yum","This users have commented your profile recently","用户在最近评论了你的简介"),
("zh_cn","yum","This users have visited my profile","用户已经访问了"),
("zh_cn","yum","This users have visited your profile recently","此用户已经在最近浏览了你的简介"),
("zh_cn","yum","Time left","时间剩余"),
("zh_cn","yum","Time sent","时间发送"),
("zh_cn","yum","Title","标题"),
("zh_cn","yum","To","至"),
("zh_cn","yum","translation","翻译"),
("zh_cn","yum","translations have been saved","翻译已存储"),
("zh_cn","yum","Try again","再试一次"),
("zh_cn","yum","Update","更新"),
("zh_cn","yum","Update Profile Field","更新简介域"),
("zh_cn","yum","Update User","更新用户"),
("zh_cn","yum","Update my profile","更新我的简介"),
("zh_cn","yum","Update payment","更新付款"),
("zh_cn","yum","Update role","更新角色"),
("zh_cn","yum","Update user","更新用户"),
("zh_cn","yum","Upgrade to {role}","更新至{role}"),
("zh_cn","yum","Upload Avatar","上传头像"),
("zh_cn","yum","Upload avatar","上传头像"),
("zh_cn","yum","Upload avatar Image","上传我的头像"),
("zh_cn","yum","Upload avatar image","上传我的头像"),
("zh_cn","yum","Use my Gravatar","使用我的头像"),
("zh_cn","yum","User","用户"),
("zh_cn","yum","User Administration","用户管理"),
("zh_cn","yum","User Management Home","用户管理首页"),
("zh_cn","yum","User Management settings configuration","用户管理控制配置"),
("zh_cn","yum","User Operations","用户操作"),
("zh_cn","yum","User activation","用户激活"),
("zh_cn","yum","User administration Panel","用户管理面板"),
("zh_cn","yum","User administration panel","用户管理面板"),
("zh_cn","yum","User belongs to Roles","用户属于这些角色"),
("zh_cn","yum","User belongs to these roles","用户属于这些角色"),
("zh_cn","yum","User can not administer any users","用户不能管理任何用户"),
("zh_cn","yum","User can not administer any users of any role","用户不能管理任何角色的用户"),
("zh_cn","yum","User can not be found","用户没找到"),
("zh_cn","yum","User is Online!","用户在线!"),
("zh_cn","yum","User is not active","用户没激活"),
("zh_cn","yum","User module settings","用户模块设置"),
("zh_cn","yum","Usergroups","用户组别"),
("zh_cn","yum","Username","用户"),
("zh_cn","yum","Username is incorrect.","用户错误"),
("zh_cn","yum","Username or Email","用户或邮件"),
("zh_cn","yum","Username or Password is incorrect","用户或密码错误"),
("zh_cn","yum","Username or email","用户或Email"),
("zh_cn","yum","Users","用户"),
("zh_cn","yum","Users:","用户:"),
("zh_cn","yum","Users: ","用户: "),
("zh_cn","yum","Variable name","可用名字"),
("zh_cn","yum","Verification Code","验证码"),
("zh_cn","yum","Verification code","验证码"),
("zh_cn","yum","View","查看"),
("zh_cn","yum","View Details","查看详情"),
("zh_cn","yum","View Profile Field","查看简介域"),
("zh_cn","yum","View Profile Field #","查看简介域#"),
("zh_cn","yum","View User","查看用户"),
("zh_cn","yum","View admin messages","查看管理员消息"),
("zh_cn","yum","View my messages","查看我的消息"),
("zh_cn","yum","View user \"{username}\"","查看用户{username}"),
("zh_cn","yum","View user "{username}"","查看用户{username}"),
("zh_cn","yum","View users","查看用户"),
("zh_cn","yum","Visible","可见"),
("zh_cn","yum","Visit profile","访问简介"),
("zh_cn","yum","When selecting searchable, users of this role can be searched in the \"user Browse\" function","当选择可搜索,这个角色的用户会被User Browse 功能检索到"),
("zh_cn","yum","When selecting searchable, users of this role can be searched in the "user Browse" function","当选择可搜索,这个角色的用户会被User Browse 功能检索到"),
("zh_cn","yum","When the membership expires","会员到期日"),
("zh_cn","yum","Write a comment","写评论"),
("zh_cn","yum","Write a message","写消息"),
("zh_cn","yum","Write a message to this User","写消息给这个用户"),
("zh_cn","yum","Write a message to {username}","写消息给{username}"),
("zh_cn","yum","Write another message","写下一条消息"),
("zh_cn","yum","Write comment","写评论"),
("zh_cn","yum","Write message","写消息"),
("zh_cn","yum","Written at","时间"),
("zh_cn","yum","Written from","来自于"),
("zh_cn","yum","Wrong password confirmation! Account was not deleted","错误的密码,取消删除账户"),
("zh_cn","yum","Yes","是"),
("zh_cn","yum","Yes and show on registration form","确定,且显示在注册表单上"),
("zh_cn","yum","Yii-user-management is already installed. Please remove it manually to continue","Yii-user-management已经安装了,请手动删除(就是删除数据库的几个文件,之后登出网站的用户,就是logout动作,就可以重新来了:译者的屁话)"),
("zh_cn","yum","You account is activated.","你的账户已激活"),
("zh_cn","yum","You account is active.","你的账户已激活"),
("zh_cn","yum","You account is blocked.","你的账户被禁了"),
("zh_cn","yum","You account is not activated.","你的账户没有激活"),
("zh_cn","yum","You already are friends","你们已经是好友了"),
("zh_cn","yum","You are not allowed to view this profile.","你无权查看这个简介"),
("zh_cn","yum","You are running the Yii User Management Module {version} in Debug Mode!","骚年,你还在Yii user management module {version}的调试状态!"),
("zh_cn","yum","You can also login by","你还可用此账户登录"),
("zh_cn","yum","You do not have any friends yet","你还没有好友"),
("zh_cn","yum","You do not have set an avatar image yet","你还没有头像"),
("zh_cn","yum","You have joined this group","你已加入此群组"),
("zh_cn","yum","You have left this group","你已离开此群组"),
("zh_cn","yum","You have new Messages !","你有新消息"),
("zh_cn","yum","You have new messages!","你有新消息"),
("zh_cn","yum","You have no messages yet","你没有新的消息"),
("zh_cn","yum","You have {count} new Messages !","你有{count}条新消息"),
("zh_cn","yum","You registered from {site_name}","注册来自{site_name}"),
("zh_cn","yum","Your Account has been activated. Thank you for your registration","你的占壶已激活,谢谢你的注册"),
("zh_cn","yum","Your Account has been activated. Thank you for your registration.","你的占壶已激活,谢谢你的注册"),
("zh_cn","yum","Your Avatar image","你的头像"),
("zh_cn","yum","Your Message has been sent.","消息已经发送"),
("zh_cn","yum","Your account has been activated.","你的账户已激活"),
("zh_cn","yum","Your account has been activated. Thank you for your registration","你的占壶已激活,谢谢你的注册"),
("zh_cn","yum","Your account has been activated. Thank you for your registration.","你的占壶已激活,谢谢你的注册"),
("zh_cn","yum","Your account has been deleted.","你的账户已被删除"),
("zh_cn","yum","Your activation succeeded","激活成功"),
("zh_cn","yum","Your changes have been saved","你的更改已保存"),
("zh_cn","yum","Your current password","当前密码"),
("zh_cn","yum","Your current password is not correct","当前密码错误"),
("zh_cn","yum","Your friendship request has been accepted","你的好友申请已经被接受"),
("zh_cn","yum","Your message has been sent","你的消息已发送"),
("zh_cn","yum","Your new password has been saved.","你的新密码已经保存"),
("zh_cn","yum","Your password has expired. Please enter your new Password below:","你的密码过期,请输入新的密码"),
("zh_cn","yum","Your privacy settings have been saved","你的隐私设置已保存"),
("zh_cn","yum","Your profile","你的简介"),
("zh_cn","yum","Your registration didn't work. Please try another E-Mail address. If this problem persists, please contact our System Administrator. ","出错失败,请换个Email地址,如果还是出错,联系管理员"),
("zh_cn","yum","Your request succeeded. Please enter below your new password:","请求成功,请输入你的新密码"),
("zh_cn","yum","Your subscription setting has been saved","你的订阅设置被存储"),
("zh_cn","yum","about","关于"),
("zh_cn","yum","activation key","激活码"),
("zh_cn","yum","birthdate","生日"),
("zh_cn","yum","birthday","生日"),
("zh_cn","yum","change Password","修改密码"),
("zh_cn","yum","change password","修改密码"),
("zh_cn","yum","do not make my friends public","不要公开我的好友"),
("zh_cn","yum","email","Email"),
("zh_cn","yum","email address","Email地址"),
("zh_cn","yum","firstname","姓名"),
("zh_cn","yum","friends only","只有好友"),
("zh_cn","yum","lastname","姓氏"),
("zh_cn","yum","make my friends public","公开我的用户"),
("zh_cn","yum","no","否"),
("zh_cn","yum","of user","的用户"),
("zh_cn","yum","only to my friends","只到我的朋友"),
("zh_cn","yum","password","密码"),
("zh_cn","yum","private","私密的"),
("zh_cn","yum","protected","圈内共享的"),
("zh_cn","yum","public","公开的"),
("zh_cn","yum","street","街"),
("zh_cn","yum","timestamp","时间戳"),
("zh_cn","yum","username","用户名"),
("zh_cn","yum","username or email","用户名或Email"),
("zh_cn","yum","verifyPassword","验证密码"),
("zh_cn","yum","yes","是"),
("zh_cn","yum","zipcode","邮政编码"),
("zh_cn","yum","{attribute} is too long (max. {num} characters).","{attribute}太长,之多{num}个字符"),
("zh_cn","yum","{attribute} is too short (min. {num} characters).","{attribute}至少需要{num}个字符"),
("zh_cn","yum","{attribute} must include at least {num} digits.","{attribute} 至少雪要{num}个数字"),
("zh_cn","yum","{attribute} must include at least {num} lower case letters.","{attribute},需要至少{num}个小写字母"),
("zh_cn","yum","{attribute} must include at least {num} symbols.","{attribute} 需要至少{num}个字符"),
("zh_cn","yum","{attribute} must include at least {num} upper case letters.","{attribute}必须包含{num}个大写字母"),
("zh_cn","yum","{attribute} must not contain more than {num} sequentially repeated characters.","{attribute} 不能包含高于 {num}的重复"),
("zh_cn","yum","{attribute} must not contain whitespace.","{attribute}不能包含空格" );
|
-- insert data whith create hash partition class on a int field with size 8 and query data with function of mod char_length and extract and then drop class
create class hash_test (id int,
test_int int,
test_char char(10))
partition by hash(test_int)
partitions 8;
insert into hash_test values(0,-1,'-1');
insert into hash_test values(1,1,'1');
insert into hash_test values(2,2,'2');
insert into hash_test values(3,11,'11');
insert into hash_test values(4,12,'12');
insert into hash_test values(5,21,'21');
insert into hash_test values(6,22,'22');
insert into hash_test values(7,2007,'2007');
insert into hash_test values(8,4,'4');
insert into hash_test values(9,5,'5');
insert into hash_test values(10,16,'16');
select * from hash_test where test_int = mod(4,3);
select * from hash_test where test_int = mod(34,23);
select * from hash_test where test_int = char_length('aaaaaaaaaaa');
select * from hash_test where test_int = extract( year from date '2007-04-05');
drop class hash_test; |
<gh_stars>0
EXEC sp_msforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT all'
EXEC sp_msforeachtable 'DROP TABLE ?' |
CREATE OR REPLACE FUNCTION test_case_assertEquals_numeric_should_fail_if_not_equals() RETURNS VOID AS $$
DECLARE
expected_message VARCHAR;
error_message VARCHAR;
is_equals BOOLEAN;
BEGIN
BEGIN
perform test_assertEquals(7, 5);
EXCEPTION
WHEN triggered_action_exception THEN
expected_message := 'assertEquals failure: expect ''7'' instead of ''5''';
error_message := SQLERRM;
perform test_assertTrue(format('Expect message ''%s'' instead of ''%s'' ', expected_message, error_message), error_message = expected_message);
END;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION test_case_assertEquals_numeric_should_success_if_equals() RETURNS VOID AS $$
BEGIN
perform test_assertEquals(7, 7);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION test_case_assertEquals_text_should_fail_if_not_equals() RETURNS VOID AS $$
DECLARE
expected_message VARCHAR;
error_message VARCHAR;
is_equals BOOLEAN;
BEGIN
BEGIN
perform test_assertEquals('hello'::VARCHAR, 'olleh');
EXCEPTION
WHEN triggered_action_exception THEN
expected_message := 'assertEquals failure: expect ''hello'' instead of ''olleh''';
error_message := SQLERRM;
perform test_assertTrue(format('Expect message ''%s'' instead of ''%s'' ', expected_message, error_message), error_message = expected_message);
END;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION test_case_assertEquals_text_should_success_if_equals() RETURNS VOID AS $$
BEGIN
perform test_assertEquals('hello'::VARCHAR, 'hello');
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION test_case_assertEquals_should_display_custom_message_if_defined() RETURNS VOID AS $$
DECLARE
expected_message VARCHAR;
error_message VARCHAR;
is_equals BOOLEAN;
BEGIN
BEGIN
perform test_assertEquals('Test with custom message', 'hello'::VARCHAR, 'olleh');
EXCEPTION
WHEN triggered_action_exception THEN
expected_message := 'Test with custom message: expect ''hello'' instead of ''olleh''';
error_message := SQLERRM;
perform test_assertTrue(format('Expect message ''%s'' instead of ''%s'' ', expected_message, error_message), error_message = expected_message);
END;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION test_case_assertEqualsArray_should_success_if_equals() RETURNS VOID AS $$
BEGIN
perform test_assertEqualsArray(ARRAY['1','2'], ARRAY['1','2']);
perform test_assertEqualsArray(ARRAY['a','b'], ARRAY['a','b']);
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION test_case_assertEqualsArray_should_display_diff_if_failed() RETURNS VOID AS $$
DECLARE
expected_message VARCHAR;
error_message VARCHAR;
is_equals BOOLEAN;
BEGIN
BEGIN
perform test_assertEqualsArray(ARRAY['1','2','3','4'], ARRAY['1','2','4','4']);
EXCEPTION
WHEN triggered_action_exception THEN
expected_message := CONCAT(
'assertEqualsArray failure:', E'\n',
'= 1', E'\n',
'= 2', E'\n',
'- 3', E'\n',
'+ 4', E'\n',
'= 4'
);
error_message := SQLERRM;
perform test_assertTrue(format('Expect message ''%s'' instead of ''%s'' ', expected_message, error_message), error_message = expected_message);
END;
END;
$$ LANGUAGE plpgsql;
SELECT * FROM test_run_all();
|
<filename>parser-scripts/topurls.sql
-- Top URLs by hit count logparser sql query
-- https://blogs.msdn.microsoft.com/carlosag/
SELECT
cs-uri-stem AS Url,
COUNT(*) AS Hits
FROM %log_path%
GROUP BY cs-uri-stem
ORDER BY Hits DESC
-- Url Hits
-- /WebResource.axd 10318
-- /favicon.ico 8523
-- /Tools/CodeTranslator/Translate.ashx 6519
-- /App_Themes/Silver/carlosag.css 5898
-- /images/arrow.gif 5720
|
CREATE TABLE [dbo].[Country] (
[Id] BIGINT NOT NULL,
[Name] NVARCHAR (256) NOT NULL,
CONSTRAINT [PK_Country] PRIMARY KEY CLUSTERED ([Id] ASC),
CONSTRAINT [UK_Country_Name] UNIQUE NONCLUSTERED ([Name] ASC)
);
|
-- phpMyAdmin SQL Dump
-- version 4.8.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Aug 01, 2020 at 11:45 AM
-- Server version: 10.1.31-MariaDB
-- PHP Version: 7.1.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `wk`
--
-- --------------------------------------------------------
--
-- Table structure for table `activations`
--
CREATE TABLE `activations` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`completed` tinyint(1) NOT NULL DEFAULT '0',
`completed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `activations`
--
INSERT INTO `activations` (`id`, `user_id`, `code`, `completed`, `completed_at`, `created_at`, `updated_at`) VALUES
(1, 1, '1', 1, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_07_02_230147_migration_cartalyst_sentinel', 1);
-- --------------------------------------------------------
--
-- Table structure for table `persistences`
--
CREATE TABLE `persistences` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `persistences`
--
INSERT INTO `persistences` (`id`, `user_id`, `code`, `created_at`, `updated_at`) VALUES
(9, 1, 'ew1Z23UrDye4bCu4x1hfSZfu4ezqQTxq', '2020-07-31 05:49:51', '2020-07-31 05:49:51'),
(11, 1, '335PaYg2miWLpU4EkD1RmHV2RbI3Db5c', '2020-07-31 13:56:31', '2020-07-31 13:56:31');
-- --------------------------------------------------------
--
-- Table structure for table `reminders`
--
CREATE TABLE `reminders` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`completed` tinyint(1) NOT NULL DEFAULT '0',
`completed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` int(10) UNSIGNED NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`permissions` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `slug`, `name`, `permissions`, `created_at`, `updated_at`) VALUES
(1, 'admin', 'admin', '{\"dashboard.create\" : true,\"dashboard.delete\" : true,\"dashboard.view\" : true,\"dashboard.update\" : true,\"product.create\" : true,\"product.delete\" : true,\"product.view\" : true,\"product.update\" : true}', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `role_users`
--
CREATE TABLE `role_users` (
`user_id` int(10) UNSIGNED NOT NULL,
`role_id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `role_users`
--
INSERT INTO `role_users` (`user_id`, `role_id`, `created_at`, `updated_at`) VALUES
(1, 1, NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `solution`
--
CREATE TABLE `solution` (
`id` int(11) NOT NULL,
`solution_name` varchar(50) DEFAULT NULL,
`product_id` bigint(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `solution`
--
INSERT INTO `solution` (`id`, `solution_name`, `product_id`) VALUES
(5, 'Easy copier Demo', 23),
(6, 'demo solution', 27),
(10, 'Product Transfer demo', 29),
(11, 'Blank Paper Demo & install', 25),
(12, 'Best cooking demo', 20),
(13, 'Sheet Paper Installation', 16),
(14, 'Stay positive', 14),
(15, 'Hope', 11);
-- --------------------------------------------------------
--
-- Table structure for table `solution_product_video`
--
CREATE TABLE `solution_product_video` (
`id` int(11) NOT NULL,
`solution_id` bigint(11) DEFAULT NULL,
`video_url` longtext
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `solution_product_video`
--
INSERT INTO `solution_product_video` (`id`, `solution_id`, `video_url`) VALUES
(4, 6, 'https://www.youtube.com/watch?v=dhuPJg8L8dU'),
(10, 10, 'https://www.youtube.com/watch?v=jssO8-5qmag'),
(11, 11, 'https://www.youtube.com/watch?v=jssO8-5qmag'),
(12, 12, 'https://www.youtube.com/watch?v=jssO8-5qmag'),
(13, 13, 'https://www.youtube.com/watch?v=jssO8-5qmag'),
(14, 14, 'https://www.youtube.com/watch?v=jssO8-5qmag'),
(15, 15, 'https://www.youtube.com/watch?v=jssO8-5qmag'),
(16, 5, 'https://www.youtube.com/watch?v=dhuPJg8L8dU'),
(17, 5, 'https://www.youtube.com/watch?v=Mn2R9wLSW-I');
-- --------------------------------------------------------
--
-- Table structure for table `throttle`
--
CREATE TABLE `throttle` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(10) UNSIGNED DEFAULT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `throttle`
--
INSERT INTO `throttle` (`id`, `user_id`, `type`, `ip`, `created_at`, `updated_at`) VALUES
(1, NULL, 'global', NULL, '2020-07-31 05:25:37', '2020-07-31 05:25:37'),
(2, NULL, 'ip', '::1', '2020-07-31 05:25:37', '2020-07-31 05:25:37');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`permissions` text COLLATE utf8mb4_unicode_ci,
`last_login` timestamp NULL DEFAULT NULL,
`first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`profile_image` longtext COLLATE utf8mb4_unicode_ci,
`contact_no` bigint(20) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `email`, `password`, `permissions`, `last_login`, `first_name`, `last_name`, `profile_image`, `contact_no`, `created_at`, `updated_at`) VALUES
(1, '<EMAIL>', <PASSWORD>', NULL, '2020-08-01 03:59:00', 'Admin', 'J', '15961928895f23f8791616a.png', 1234567890, '2020-07-31 05:13:53', '2020-08-01 03:59:00');
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_actions`
--
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint(20) UNSIGNED NOT NULL,
`hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext COLLATE utf8mb4_unicode_ci,
`group_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`attempts` int(11) NOT NULL DEFAULT '0',
`last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_actionscheduler_actions`
--
INSERT INTO `wp_actionscheduler_actions` (`action_id`, `hook`, `status`, `scheduled_date_gmt`, `scheduled_date_local`, `args`, `schedule`, `group_id`, `attempts`, `last_attempt_gmt`, `last_attempt_local`, `claim_id`, `extended_args`) VALUES
(6, 'action_scheduler/migration_hook', 'complete', '2020-07-31 05:17:21', '2020-07-31 05:17:21', '[]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1596172641;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1596172641;}', 1, 1, '2020-07-31 05:18:30', '2020-07-31 05:18:30', 0, NULL),
(7, 'action_scheduler/migration_hook', 'canceled', '2020-07-31 05:17:21', '2020-07-31 05:17:21', '[]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1596172641;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1596172641;}', 2, 0, '2020-07-31 05:18:29', '2020-07-31 05:18:29', 0, NULL),
(8, 'woocommerce_update_marketplace_suggestions', 'complete', '2020-07-31 05:25:29', '2020-07-31 05:25:29', '[]', 'O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1596173129;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1596173129;}', 0, 1, '2020-07-31 05:26:43', '2020-07-31 05:26:43', 0, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_claims`
--
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint(20) UNSIGNED NOT NULL,
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_groups`
--
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint(20) UNSIGNED NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_actionscheduler_groups`
--
INSERT INTO `wp_actionscheduler_groups` (`group_id`, `slug`) VALUES
(1, 'action-scheduler-migration'),
(2, 'action-scheduler-migration');
-- --------------------------------------------------------
--
-- Table structure for table `wp_actionscheduler_logs`
--
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint(20) UNSIGNED NOT NULL,
`action_id` bigint(20) UNSIGNED NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_actionscheduler_logs`
--
INSERT INTO `wp_actionscheduler_logs` (`log_id`, `action_id`, `message`, `log_date_gmt`, `log_date_local`) VALUES
(1, 7, 'action created', '2020-07-31 05:16:22', '2020-07-31 05:16:22'),
(2, 6, 'action created', '2020-07-31 05:16:22', '2020-07-31 05:16:22'),
(3, 6, 'action started via WP Cron', '2020-07-31 05:18:29', '2020-07-31 05:18:29'),
(4, 7, 'action canceled', '2020-07-31 05:18:30', '2020-07-31 05:18:30'),
(5, 6, 'action complete via WP Cron', '2020-07-31 05:18:30', '2020-07-31 05:18:30'),
(6, 7, 'action ignored via WP Cron', '2020-07-31 05:18:30', '2020-07-31 05:18:30'),
(7, 8, 'action created', '2020-07-31 05:25:29', '2020-07-31 05:25:29'),
(8, 8, 'action started via WP Cron', '2020-07-31 05:26:39', '2020-07-31 05:26:39'),
(9, 8, 'action complete via WP Cron', '2020-07-31 05:26:43', '2020-07-31 05:26:43');
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', '<EMAIL>', 'https://wordpress.org/', '', '2020-07-31 05:00:57', '2020-07-31 05:00:57', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/wk', 'yes'),
(2, 'home', 'http://localhost/wk', 'yes'),
(3, 'blogname', 'Papers', 'yes'),
(4, 'blogdescription', 'Online book stall', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '<EMAIL>', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '<EMAIL>', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:156:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/embed/?$\";s:75:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:64:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:49:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&wc-api=$matches[5]\";s:51:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:36:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:2:{i:0;s:38:\"carbon-fields/carbon-fields-plugin.php\";i:1;s:27:\"woocommerce/woocommerce.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'wpemerge', 'yes'),
(41, 'stylesheet', 'wpemerge', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '0', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '47018', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '1', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'page', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '0', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '0', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '7', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '0', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'wp_page_for_privacy_policy', '3', 'yes'),
(92, 'show_comments_cookies_opt_in', '1', 'yes'),
(93, 'admin_email_lifespan', '1611723635', 'yes'),
(94, 'initial_db_version', '47018', 'yes'),
(95, 'wp_user_roles', 'a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}', 'yes'),
(96, 'fresh_site', '0', 'yes'),
(97, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(98, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(100, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(101, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(102, 'sidebars_widgets', 'a:3:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:15:\"default-sidebar\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:13:\"array_version\";i:3;}', 'yes'),
(103, 'cron', 'a:18:{i:1596274981;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1596276073;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1596276972;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1596276992;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1596277922;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1596280563;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1596301273;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1596326400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596344473;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596344680;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596344686;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596345373;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596345374;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596345378;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596356163;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596862872;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1597468623;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}', 'yes'),
(106, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(117, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(119, 'theme_mods_twentytwenty', 'a:4:{s:18:\"custom_css_post_id\";i:-1;s:16:\"background_color\";s:3:\"fff\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1596174204;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}s:18:\"nav_menu_locations\";a:0:{}}', 'yes'),
(120, 'recovery_keys', 'a:1:{s:22:\"YoZpESfAYVMCPVQP9dzwtc\";a:2:{s:10:\"hashed_key\";s:34:\"<KEY>";s:10:\"created_at\";i:1596175845;}}', 'yes'),
(121, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1596273578;s:15:\"version_checked\";s:5:\"5.4.2\";s:12:\"translations\";a:0:{}}', 'no'),
(130, '_site_transient_timeout_browser_5fa42a5ced972bb6d5ae8800e98bebfb', '1596776683', 'no'),
(131, '_site_transient_browser_5fa42a5ced972bb6d5ae8800e98bebfb', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"84.0.4147.89\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(132, '_site_transient_timeout_php_check_15fe6219bd92dff4dee9282817ed868b', '1596776685', 'no'),
(133, '_site_transient_php_check_15fe6219bd92dff4dee9282817ed868b', 'a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}', 'no'),
(135, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1596316760', 'no'),
(136, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:0:{}}', 'no'),
(137, 'can_compress_scripts', '1', 'no'),
(148, 'recently_activated', 'a:0:{}', 'yes'),
(153, 'action_scheduler_hybrid_store_demarkation', '5', 'yes'),
(154, 'schema-ActionScheduler_StoreSchema', '3.0.1596172500', 'yes'),
(155, 'schema-ActionScheduler_LoggerSchema', '2.0.1596172501', 'yes'),
(158, 'woocommerce_schema_version', '430', 'yes'),
(159, 'woocommerce_store_address', '301, shreeji appartment.', 'yes'),
(160, 'woocommerce_store_address_2', 'hirawadi, nashik', 'yes'),
(161, 'woocommerce_store_city', 'Nashik', 'yes'),
(162, 'woocommerce_default_country', 'IN:MH', 'yes'),
(163, 'woocommerce_store_postcode', '422003', 'yes'),
(164, 'woocommerce_allowed_countries', 'all', 'yes'),
(165, 'woocommerce_all_except_countries', 'a:0:{}', 'yes'),
(166, 'woocommerce_specific_allowed_countries', 'a:0:{}', 'yes'),
(167, 'woocommerce_ship_to_countries', '', 'yes'),
(168, 'woocommerce_specific_ship_to_countries', 'a:0:{}', 'yes'),
(169, 'woocommerce_default_customer_address', 'base', 'yes'),
(170, 'woocommerce_calc_taxes', 'no', 'yes'),
(171, 'woocommerce_enable_coupons', 'yes', 'yes'),
(172, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(173, 'woocommerce_currency', 'INR', 'yes'),
(174, 'woocommerce_currency_pos', 'left', 'yes'),
(175, 'woocommerce_price_thousand_sep', ',', 'yes'),
(176, 'woocommerce_price_decimal_sep', '.', 'yes'),
(177, 'woocommerce_price_num_decimals', '2', 'yes'),
(178, 'woocommerce_shop_page_id', '7', 'yes'),
(179, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(180, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(181, 'woocommerce_placeholder_image', '6', 'yes'),
(182, 'woocommerce_weight_unit', 'kg', 'yes'),
(183, 'woocommerce_dimension_unit', 'cm', 'yes'),
(184, 'woocommerce_enable_reviews', 'yes', 'yes'),
(185, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(186, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(187, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(188, 'woocommerce_review_rating_required', 'yes', 'no'),
(189, 'woocommerce_manage_stock', 'yes', 'yes'),
(190, 'woocommerce_hold_stock_minutes', '60', 'no'),
(191, 'woocommerce_notify_low_stock', 'yes', 'no'),
(192, 'woocommerce_notify_no_stock', 'yes', 'no'),
(193, 'woocommerce_stock_email_recipient', '<EMAIL>', 'no'),
(194, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(195, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(196, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(197, 'woocommerce_stock_format', '', 'yes'),
(198, 'woocommerce_file_download_method', 'force', 'no'),
(199, 'woocommerce_downloads_require_login', 'no', 'no'),
(200, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(201, 'woocommerce_downloads_add_hash_to_filename', 'yes', 'yes'),
(202, 'woocommerce_prices_include_tax', 'no', 'yes'),
(203, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(204, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(205, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(206, 'woocommerce_tax_classes', '', 'yes'),
(207, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(208, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(209, 'woocommerce_price_display_suffix', '', 'yes'),
(210, 'woocommerce_tax_total_display', 'itemized', 'no'),
(211, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(212, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(213, 'woocommerce_ship_to_destination', 'billing', 'no'),
(214, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(215, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(216, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(217, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(218, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(219, 'woocommerce_registration_generate_username', 'yes', 'no'),
(220, 'woocommerce_registration_generate_password', 'yes', 'no'),
(221, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(222, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(223, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(224, 'woocommerce_registration_privacy_policy_text', 'Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].', 'yes'),
(225, 'woocommerce_checkout_privacy_policy_text', 'Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].', 'yes'),
(226, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(227, 'woocommerce_trash_pending_orders', '', 'no'),
(228, 'woocommerce_trash_failed_orders', '', 'no'),
(229, 'woocommerce_trash_cancelled_orders', '', 'no'),
(230, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(231, 'woocommerce_email_from_name', 'WK', 'no'),
(232, 'woocommerce_email_from_address', '<EMAIL>', 'no'),
(233, 'woocommerce_email_header_image', '', 'no'),
(234, 'woocommerce_email_footer_text', '{site_title} — Built with {WooCommerce}', 'no'),
(235, 'woocommerce_email_base_color', '#96588a', 'no'),
(236, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(237, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(238, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(239, 'woocommerce_cart_page_id', '8', 'no'),
(240, 'woocommerce_checkout_page_id', '9', 'no'),
(241, 'woocommerce_myaccount_page_id', '10', 'no'),
(242, 'woocommerce_terms_page_id', '', 'no'),
(243, 'woocommerce_force_ssl_checkout', 'no', 'yes'),
(244, 'woocommerce_unforce_ssl_checkout', 'no', 'yes'),
(245, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(246, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(247, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(248, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(249, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(250, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(251, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(252, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(253, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(254, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(255, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(256, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(257, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(258, 'woocommerce_api_enabled', 'yes', 'yes'),
(259, 'woocommerce_allow_tracking', 'no', 'no'),
(260, 'woocommerce_show_marketplace_suggestions', 'yes', 'no'),
(261, 'woocommerce_single_image_width', '600', 'yes'),
(262, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(263, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(264, 'woocommerce_demo_store', 'no', 'no'),
(265, 'woocommerce_permalinks', 'a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}', 'yes'),
(266, 'current_theme_supports_woocommerce', 'yes', 'yes'),
(267, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(268, '_transient_wc_attribute_taxonomies', 'a:0:{}', 'yes'),
(270, 'default_product_cat', '15', 'yes'),
(271, 'woocommerce_admin_notices', 'a:1:{i:0;s:7:\"install\";}', 'yes'),
(274, 'woocommerce_version', '4.3.1', 'yes'),
(275, 'woocommerce_db_version', '4.3.1', 'yes'),
(276, 'woocommerce_homescreen_enabled', 'yes', 'yes'),
(277, '_transient_timeout__woocommerce_upload_directory_status', '1596258969', 'no'),
(278, '_transient__woocommerce_upload_directory_status', 'protected', 'no'),
(279, 'action_scheduler_lock_async-request-runner', '1596275004', 'yes'),
(280, 'woocommerce_maxmind_geolocation_settings', 'a:1:{s:15:\"database_prefix\";s:32:\"MAv3ppsJPoWTOOQuBXgt4d4yP9Xma98W\";}', 'yes'),
(281, '_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'yes'),
(282, 'widget_woocommerce_widget_cart', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(283, 'widget_woocommerce_layered_nav_filters', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(284, 'widget_woocommerce_layered_nav', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(285, 'widget_woocommerce_price_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(286, 'widget_woocommerce_product_categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(287, 'widget_woocommerce_product_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(288, 'widget_woocommerce_product_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(289, 'widget_woocommerce_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(290, 'widget_woocommerce_recently_viewed_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(291, 'widget_woocommerce_top_rated_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(292, 'widget_woocommerce_recent_reviews', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(293, 'widget_woocommerce_rating_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(296, 'woocommerce_admin_version', '1.3.1', 'yes'),
(297, 'woocommerce_admin_install_timestamp', '1596172579', 'yes'),
(300, '_transient_timeout_as-post-store-dependencies-met', '1596258980', 'no'),
(301, '_transient_as-post-store-dependencies-met', 'yes', 'no'),
(303, 'wc_admin_note_home_screen_feedback_homescreen_accessed', '1596172581', 'yes'),
(304, '_transient_wc_count_comments', 'O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}', 'yes'),
(305, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes'),
(307, 'wc_blocks_db_schema_version', '260', 'yes'),
(311, 'woocommerce_onboarding_profile', 'a:9:{s:9:\"completed\";b:1;s:12:\"setup_client\";b:1;s:8:\"industry\";a:2:{i:0;a:1:{s:4:\"slug\";s:21:\"electronics-computers\";}i:1;a:2:{s:4:\"slug\";s:5:\"other\";s:6:\"detail\";s:7:\"E-books\";}}s:13:\"product_types\";a:2:{i:0;s:9:\"downloads\";i:1;s:8:\"physical\";}s:13:\"product_count\";s:4:\"1-10\";s:14:\"selling_venues\";s:2:\"no\";s:19:\"business_extensions\";a:0:{}s:5:\"theme\";s:12:\"twentytwenty\";s:7:\"plugins\";s:7:\"skipped\";}', 'yes'),
(312, 'woocommerce_onboarding_opt_in', 'yes', 'yes'),
(315, '_transient_woocommerce_reports-transient-version', '1596172734', 'yes'),
(316, '_transient_timeout_orders-all-statuses', '1596777783', 'no'),
(317, '_transient_orders-all-statuses', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";a:0:{}}', 'no'),
(323, 'action_scheduler_migration_status', 'complete', 'yes'),
(327, 'woocommerce_task_list_tracked_completed_tasks', 'a:2:{i:0;s:13:\"store_details\";i:1;s:8:\"products\";}', 'yes'),
(328, '_transient_timeout_wc_report_orders_stats_b39660ef680eae84f698d0fd833855ff', '1596777720', 'no'),
(329, '_transient_timeout_wc_report_orders_stats_c837bc73e4de50480f7471528d481371', '1596777720', 'no'),
(330, '_transient_wc_report_orders_stats_b39660ef680eae84f698d0fd833855ff', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 10:51:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 10:51:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(331, 'woocommerce_task_list_welcome_modal_dismissed', '1', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(332, '_transient_wc_report_orders_stats_c837bc73e4de50480f7471528d481371', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-30 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-30 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-07-30 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(333, '_transient_timeout_wc_report_orders_stats_4e9712bc02e21695c1edbefd3c20280f', '1596777720', 'no'),
(334, '_transient_timeout_wc_report_orders_stats_88e992f8dec34798d593fad1642f12bc', '1596777720', 'no'),
(335, '_transient_wc_report_orders_stats_4e9712bc02e21695c1edbefd3c20280f', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-30 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-30 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-30 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-07-30 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(336, '_transient_wc_report_orders_stats_88e992f8dec34798d593fad1642f12bc', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 10:51:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 10:51:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(338, '_transient_timeout_wc_report_orders_stats_c65a39e00132615822f5720b593c5cb9', '1596777723', 'no'),
(339, '_transient_wc_report_orders_stats_c65a39e00132615822f5720b593c5cb9', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 10:52:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 10:52:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(340, '_transient_timeout_wc_report_orders_stats_79bd0bf74e7e81fc0ac9842a199e7911', '1596777723', 'no'),
(341, '_transient_wc_report_orders_stats_79bd0bf74e7e81fc0ac9842a199e7911', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 10:52:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 10:52:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(342, 'current_theme', 'WP Emerge Starter Theme', 'yes'),
(343, 'theme_mods_wpemerge', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:75;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1596173758;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:15:\"default-sidebar\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}}}}', 'yes'),
(344, 'theme_switched', '', 'yes'),
(345, 'woocommerce_maybe_regenerate_images_hash', '991b1ca641921cf0f5baf7a2fe85861b', 'yes'),
(352, '_transient_timeout_wc_report_orders_stats_151315e34c793e1236efbbcd53441d90', '1596777920', 'no'),
(353, '_transient_wc_report_orders_stats_151315e34c793e1236efbbcd53441d90', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 10:55:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 10:55:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(354, '_transient_timeout_wc_report_orders_stats_4cdf7e2d7cd191a465e893b62197ab1c', '1596777920', 'no'),
(355, '_transient_wc_report_orders_stats_4cdf7e2d7cd191a465e893b62197ab1c', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 10:55:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 10:55:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(357, 'woocommerce_marketplace_suggestions', 'a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1596173200;}', 'no'),
(360, '_transient_product_query-transient-version', '1596270932', 'yes'),
(361, '_transient_product-transient-version', '1596270932', 'yes'),
(382, 'product_cat_children', 'a:0:{}', 'yes'),
(390, '_transient_timeout_wc_related_16', '1596360514', 'no'),
(391, '_transient_wc_related_16', 'a:2:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=16\";a:4:{i:0;s:2:\"23\";i:1;s:2:\"25\";i:2;s:2:\"27\";i:3;s:2:\"29\";}s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=16\";a:4:{i:0;s:2:\"23\";i:1;s:2:\"25\";i:2;s:2:\"27\";i:3;s:2:\"29\";}}', 'no'),
(396, '_transient_timeout_wc_report_sales_by_date', '1596359951', 'no'),
(397, '_transient_wc_report_sales_by_date', 'a:16:{s:32:\"062aed2af1cf6a8c285ed2ed29cdbca2\";a:0:{}s:32:\"6ebb69cb49d3e44ffa83410975647c04\";a:0:{}s:32:\"4ecf44147b1c623b89fbd71cd50af36d\";a:0:{}s:32:\"1dff899976f1e0d011905227a24acc53\";N;s:32:\"9fbfa7243113d566ca2fa921354e7616\";a:0:{}s:32:\"deda6fd823ce2abe2ae67cc9f83cd172\";a:0:{}s:32:\"370688573e2193d697759684b843a897\";a:0:{}s:32:\"f47893e372b8ac230d2f3309879fcf4f\";a:0:{}s:32:\"ce68044e50775449c22747f6b82b4a6d\";a:0:{}s:32:\"68355ec327b5e67df5f6fde268729cb8\";a:0:{}s:32:\"7a658d152dee49746fa5ce0dfd6cb197\";a:0:{}s:32:\"e171d60b1ac0f3b5be9b2f0d03624bfd\";N;s:32:\"e11c8981b7a85ca52512c14f98351214\";a:0:{}s:32:\"b66ccffc6721ef418cf7863c418a2547\";a:0:{}s:32:\"d72282455f75c646dd4d15699d5f149e\";a:0:{}s:32:\"7b99d135e8638e7f30b369df784f43b3\";a:0:{}}', 'no'),
(398, '_transient_timeout_wc_admin_report', '1596359951', 'no'),
(399, '_transient_wc_admin_report', 'a:2:{s:32:\"2f92302e18f2e052a4a25ef27421ba2f\";a:0:{}s:32:\"d70b232c80616c6792326ff7bfd4175c\";a:0:{}}', 'no'),
(454, '_transient_shipping-transient-version', '1596174224', 'yes'),
(455, '_transient_timeout_wc_shipping_method_count_legacy', '1598766224', 'no'),
(456, '_transient_wc_shipping_method_count_legacy', 'a:2:{s:7:\"version\";s:10:\"1596174224\";s:5:\"value\";i:0;}', 'no'),
(458, 'WPLANG', '', 'yes'),
(459, 'new_admin_email', '<EMAIL>', 'yes'),
(504, 'recovery_mode_email_last_sent', '1596175845', 'yes'),
(511, '_transient_timeout_wc_related_23', '1596360514', 'no'),
(512, '_transient_wc_related_23', 'a:2:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=23\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"25\";i:2;s:2:\"27\";i:3;s:2:\"29\";}s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=23\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"25\";i:2;s:2:\"27\";i:3;s:2:\"29\";}}', 'no'),
(513, '_crb_text', '', 'no'),
(572, '_transient_timeout_wc_report_orders_stats_fc0e7b7abbb92d8c595e8fd540ac1a4f', '1596784482', 'no'),
(573, '_transient_wc_report_orders_stats_fc0e7b7abbb92d8c595e8fd540ac1a4f', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 12:44:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 12:44:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(574, '_transient_timeout_wc_report_orders_stats_b0a03c507e5a3a84dd3bf8046aeae4a1', '1596784482', 'no'),
(575, '_transient_wc_report_orders_stats_b0a03c507e5a3a84dd3bf8046aeae4a1', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 12:44:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 12:44:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(578, '_transient_timeout_wc_report_orders_stats_9a66d1a1e13445dd5a0a67ca245012bd', '1596784584', 'no'),
(579, '_transient_wc_report_orders_stats_9a66d1a1e13445dd5a0a67ca245012bd', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 12:46:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 12:46:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(580, '_transient_timeout_wc_report_orders_stats_8ec0970c9557ebc30e9e124f81f51ad7', '1596784584', 'no'),
(581, '_transient_wc_report_orders_stats_8ec0970c9557ebc30e9e124f81f51ad7', 'a:2:{s:7:\"version\";s:10:\"1596172734\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":16:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:1:{i:0;a:6:{s:8:\"interval\";s:7:\"2020-31\";s:10:\"date_start\";s:19:\"2020-07-31 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-07-31 00:00:00\";s:8:\"date_end\";s:19:\"2020-07-31 12:46:00\";s:12:\"date_end_gmt\";s:19:\"2020-07-31 12:46:00\";s:9:\"subtotals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:23:\"num_returning_customers\";i:0;s:17:\"num_new_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:1;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}', 'no'),
(761, '_transient_timeout_wc_related_45', '1596306735', 'no'),
(762, '_transient_wc_related_45', 'a:1:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=45\";a:0:{}}', 'no'),
(763, '_transient_timeout_wc_related_38', '1596306735', 'no'),
(764, '_transient_wc_related_38', 'a:1:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=38\";a:0:{}}', 'no'),
(765, '_transient_timeout_wc_related_36', '1596306735', 'no'),
(766, '_transient_wc_related_36', 'a:1:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=36\";a:0:{}}', 'no'),
(767, '_transient_timeout_wc_related_29', '1596360514', 'no'),
(768, '_transient_wc_related_29', 'a:2:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=29\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"23\";i:2;s:2:\"25\";i:3;s:2:\"27\";}s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=29\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"23\";i:2;s:2:\"25\";i:3;s:2:\"27\";}}', 'no'),
(771, '_transient_timeout_wc_related_25', '1596360514', 'no'),
(772, '_transient_wc_related_25', 'a:2:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=25\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"23\";i:2;s:2:\"27\";i:3;s:2:\"29\";}s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=25\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"23\";i:2;s:2:\"27\";i:3;s:2:\"29\";}}', 'no'),
(773, '_transient_timeout_wc_related_14', '1596360514', 'no'),
(774, '_transient_wc_related_14', 'a:1:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=14\";a:2:{i:0;s:2:\"11\";i:1;s:2:\"20\";}}', 'no'),
(872, '_site_transient_timeout_browser_72f533ef66d493b897f3cfc643e15448', '1596860104', 'no'),
(873, '_site_transient_browser_72f533ef66d493b897f3cfc643e15448', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"84.0.4147.105\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no'),
(911, '_transient_health-check-site-status-result', '{\"good\":\"7\",\"recommended\":\"9\",\"critical\":\"1\"}', 'yes'),
(915, '_transient_timeout__woocommerce_helper_updates', '1596301317', 'no'),
(916, '_transient__woocommerce_helper_updates', 'a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1596258117;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}', 'no'),
(917, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1596273576;s:7:\"checked\";a:4:{s:14:\"twentynineteen\";s:3:\"1.5\";s:15:\"twentyseventeen\";s:3:\"2.3\";s:12:\"twentytwenty\";s:3:\"1.2\";s:8:\"wpemerge\";s:0:\"\";}s:8:\"response\";a:2:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.6.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.4.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}', 'no'),
(918, '_site_transient_update_plugins', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1596273572;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"4.3.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(937, '_transient_timeout_wc_onboarding_product_data', '1596346071', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(938, '_transient_wc_onboarding_product_data', 'a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:17:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 01 Aug 2020 05:27:51 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:4:\"4019\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:27:\"X-WP-Total, X-WP-TotalPages\";s:28:\"access-control-allow-headers\";s:27:\"Authorization, Content-Type\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-rq\";s:15:\"bom2 88 83 3100\";s:3:\"age\";s:2:\"18\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:16365:\"{\"products\":[{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-2.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Composite Products\",\"image\":\"\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Groups for WooCommerce\",\"image\":\"\",\"excerpt\":\"Sell Memberships with Groups and WooCommerce \\u2013\\u00a0the best Group Membership and Access Control solution for WordPress and WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/groups-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"aa2d455ed00566e4fb71bc9d53f2613b\",\"slug\":\"groups-woocommerce\",\"id\":18704},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Chained Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/wc-product-chained-products.png\",\"excerpt\":\"Pre-configured product bundles, giveaways, forced sells and discounted combos. Automatically adds \\u201cchained\\u201d products to cart when \\u201cmain\\u201d product is added.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/chained-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=cp\",\"price\":\"$49.00\",\"hash\":\"cc6e246e495745db10f9f7fddc5aa907\",\"slug\":\"woocommerce-chained-products\",\"id\":18687},{\"title\":\"Mix and Match Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/04\\/mnm-icon-dark-jprydo.png\",\"excerpt\":\"Allow your customers to combine products and create their own variations, and increase your average order value.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-mix-and-match-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"e59883891b7bcd535025486721e4c09f\",\"slug\":\"woocommerce-mix-and-match-products\",\"id\":853021},{\"title\":\"All Products for WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-APFS.png?v=1\",\"excerpt\":\"Offer your products on subscription, and let customers add products to their existing subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/all-products-for-woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"2794ee6e-bc30-4733-9b24-5edfc3f0095d\",\"slug\":\"woocommerce-all-products-for-subscriptions\",\"id\":3978176},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Teams for WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/02\\/Thumbnail-Teams-for-Memberships-2.png\",\"excerpt\":\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/teams-woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9feb48da-9615-4131-8aa8-eebb55b9cff4\",\"slug\":\"woocommerce-memberships-for-teams\",\"id\":2893267},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce API Manager\",\"image\":\"\",\"excerpt\":\"Let customers subscribe to your software or services through API Keys, aka License Keys. Provide automated updates for WordPress Plugins and Themes, or any software through robust APIs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-api-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"f7cdcfb7de76afa0889f07bcb92bf12e\",\"slug\":\"woocommerce-api-manager\",\"id\":260110},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"Auctions for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/10\\/auctions_for_woocommerce.png\",\"excerpt\":\"A professional Auction solution for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/auctions-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/wpinstitut.com\\/auctions-for-woocommerce-demo\\/\",\"price\":\"$149.00\",\"hash\":\"c41a199e-5f49-4f5c-bb28-7ca22b0c4fe7\",\"slug\":\"auctions-for-woocommerce\",\"id\":4922919},{\"title\":\"Lottery for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/05\\/lottery-logo.png?w=150&h=150\",\"excerpt\":\"Lottery for WooCommerce is a full-featured lottery plugin for creating and managing online lotteries in your WooCommerce Shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/lottery-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9694c9bd-1d5c-43af-b1e9-796cc64b16a8\",\"slug\":\"lottery-for-woocommerce\",\"id\":5860289},{\"title\":\"Paywall for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/01\\/paywall-for-woocommerce-logo.png\",\"excerpt\":\"Paywall is a WooCommerce extension that allows creating products with restricted access to content.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paywall-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo-woocommerce-paywall.tiv.net\\/\",\"price\":\"$79.00\",\"hash\":\"a688fc22-9370-4652-9e5e-f968ced9a0a8\",\"slug\":\"paywall-for-woocommerce\",\"id\":5253500},{\"title\":\"Etsy Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo-2.png\",\"excerpt\":\"Sell on Etsy with Etsy Integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/etsy-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"1dc5953a-3b22-4e73-9d7d-cc852d189beb\",\"slug\":\"woocommerce-etsy-integration\",\"id\":5712585},{\"title\":\"Custom Product Boxes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/CPB_Icon.jpg?w=150&h=150\",\"excerpt\":\"Custom product boxes for WooCommerce allows users to create product bundles by choosing specific items of their own choice from the collection of products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/custom-product-boxes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/composite-products.codeincept.com\\/product\\/cupcake-gift-box\\/\",\"price\":\"$79.00\",\"hash\":\"ba19e1e3-1d5f-4e2c-bc3e-d7029c04f326\",\"slug\":\"custom-product-boxes\",\"id\":5706607},{\"title\":\"Auctions Made Easy for WooCommerce\",\"image\":\"\",\"excerpt\":\"Auctions Made Easy for WooCommerce is a full-featured auctions plugin for creating and managing online auctions in a WooCommerce shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/auctions-made-easy-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a7fbc475-9946-4db9-92b6-5b7ebab3bab2\",\"slug\":\"auctions-made-easy-for-woocommerce\",\"id\":5249611},{\"title\":\"Assorted Products for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/icon.jpg\",\"excerpt\":\"Empower your customers to create product bundles\\u2014gift boxes of their choice comprising items from your shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/assorted-products-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/assorted-products.codeincept.com\\/product\\/assorted-product\\/\",\"price\":\"$79.00\",\"hash\":\"6ab9ee51-c187-421c-9104-efa21d9423ca\",\"slug\":\"assorted-products-for-woocommerce\",\"id\":4911617},{\"title\":\"Smart Product Bundle For WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/01\\/Smart-Product-Bundle-z1tihh.png\",\"excerpt\":\"Fulfill customer expectations with Smart Product Bundle and enrich customer experiences along with your sales revenue.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-bundle-product-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.wpexperts.io\\/smart-bundle-product-for-woocommerce\\/\",\"price\":\"$49.00\",\"hash\":\"033cccdf-744b-4497-87b1-5765e71d3dcd\",\"slug\":\"smart-bundle-for-woocommerce\",\"id\":5193957},{\"title\":\"Rental Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/05\\/Rental-Products-Logo.png?w=150&h=150\",\"excerpt\":\"Create rental products within your WooCommerce store, allowing customers to rent products for specific dates.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/rental-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"d6b9b1a1-8b92-4e07-89b9-4d85e3b574ce\",\"slug\":\"wcrp-rental-products\",\"id\":5860277},{\"title\":\"Featured Listing for Product Vendors\",\"image\":\"\",\"excerpt\":\"This is an addon of WooCommerce Product Vendor which offers vendor the option to feature their product ahead of others, for a small fee.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/featured-listing-for-product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.makewebbetter.com\\/featured-listing-for-product-vendors\\/\",\"price\":\"$79.00\",\"hash\":\"78610942-f38c-4517-b7e0-4c3753d11752\",\"slug\":\"featured-listing-for-product-vendors\",\"id\":5021060},{\"title\":\"Walmart Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo-1.png\",\"excerpt\":\"Sell on Walmart with Walmart Integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/walmart-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$249.00\",\"hash\":\"1237f272-56c8-4c77-8539-31450a2f4e1a\",\"slug\":\"walmart-integration-for-woocommerce\",\"id\":5423057},{\"title\":\"Shopee Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo.png\",\"excerpt\":\"Sell on Shopee with Shopee integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shopee-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"dcf810b6-c8ce-48da-84ba-289ac4ee43f5\",\"slug\":\"woocommerce-shopee-integration\",\"id\":4794826}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:16365:\"{\"products\":[{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-2.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Composite Products\",\"image\":\"\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Groups for WooCommerce\",\"image\":\"\",\"excerpt\":\"Sell Memberships with Groups and WooCommerce \\u2013\\u00a0the best Group Membership and Access Control solution for WordPress and WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/groups-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"aa2d455ed00566e4fb71bc9d53f2613b\",\"slug\":\"groups-woocommerce\",\"id\":18704},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Chained Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/wc-product-chained-products.png\",\"excerpt\":\"Pre-configured product bundles, giveaways, forced sells and discounted combos. Automatically adds \\u201cchained\\u201d products to cart when \\u201cmain\\u201d product is added.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/chained-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=cp\",\"price\":\"$49.00\",\"hash\":\"cc6e246e495745db10f9f7fddc5aa907\",\"slug\":\"woocommerce-chained-products\",\"id\":18687},{\"title\":\"Mix and Match Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/04\\/mnm-icon-dark-jprydo.png\",\"excerpt\":\"Allow your customers to combine products and create their own variations, and increase your average order value.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-mix-and-match-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"e59883891b7bcd535025486721e4c09f\",\"slug\":\"woocommerce-mix-and-match-products\",\"id\":853021},{\"title\":\"All Products for WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-APFS.png?v=1\",\"excerpt\":\"Offer your products on subscription, and let customers add products to their existing subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/all-products-for-woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"2794ee6e-bc30-4733-9b24-5edfc3f0095d\",\"slug\":\"woocommerce-all-products-for-subscriptions\",\"id\":3978176},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Teams for WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/02\\/Thumbnail-Teams-for-Memberships-2.png\",\"excerpt\":\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/teams-woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9feb48da-9615-4131-8aa8-eebb55b9cff4\",\"slug\":\"woocommerce-memberships-for-teams\",\"id\":2893267},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce API Manager\",\"image\":\"\",\"excerpt\":\"Let customers subscribe to your software or services through API Keys, aka License Keys. Provide automated updates for WordPress Plugins and Themes, or any software through robust APIs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-api-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"f7cdcfb7de76afa0889f07bcb92bf12e\",\"slug\":\"woocommerce-api-manager\",\"id\":260110},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"Auctions for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/10\\/auctions_for_woocommerce.png\",\"excerpt\":\"A professional Auction solution for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/auctions-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/wpinstitut.com\\/auctions-for-woocommerce-demo\\/\",\"price\":\"$149.00\",\"hash\":\"c41a199e-5f49-4f5c-bb28-7ca22b0c4fe7\",\"slug\":\"auctions-for-woocommerce\",\"id\":4922919},{\"title\":\"Lottery for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/05\\/lottery-logo.png?w=150&h=150\",\"excerpt\":\"Lottery for WooCommerce is a full-featured lottery plugin for creating and managing online lotteries in your WooCommerce Shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/lottery-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9694c9bd-1d5c-43af-b1e9-796cc64b16a8\",\"slug\":\"lottery-for-woocommerce\",\"id\":5860289},{\"title\":\"Paywall for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/01\\/paywall-for-woocommerce-logo.png\",\"excerpt\":\"Paywall is a WooCommerce extension that allows creating products with restricted access to content.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paywall-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo-woocommerce-paywall.tiv.net\\/\",\"price\":\"$79.00\",\"hash\":\"a688fc22-9370-4652-9e5e-f968ced9a0a8\",\"slug\":\"paywall-for-woocommerce\",\"id\":5253500},{\"title\":\"Etsy Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo-2.png\",\"excerpt\":\"Sell on Etsy with Etsy Integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/etsy-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"1dc5953a-3b22-4e73-9d7d-cc852d189beb\",\"slug\":\"woocommerce-etsy-integration\",\"id\":5712585},{\"title\":\"Custom Product Boxes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/CPB_Icon.jpg?w=150&h=150\",\"excerpt\":\"Custom product boxes for WooCommerce allows users to create product bundles by choosing specific items of their own choice from the collection of products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/custom-product-boxes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/composite-products.codeincept.com\\/product\\/cupcake-gift-box\\/\",\"price\":\"$79.00\",\"hash\":\"ba19e1e3-1d5f-4e2c-bc3e-d7029c04f326\",\"slug\":\"custom-product-boxes\",\"id\":5706607},{\"title\":\"Auctions Made Easy for WooCommerce\",\"image\":\"\",\"excerpt\":\"Auctions Made Easy for WooCommerce is a full-featured auctions plugin for creating and managing online auctions in a WooCommerce shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/auctions-made-easy-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a7fbc475-9946-4db9-92b6-5b7ebab3bab2\",\"slug\":\"auctions-made-easy-for-woocommerce\",\"id\":5249611},{\"title\":\"Assorted Products for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/icon.jpg\",\"excerpt\":\"Empower your customers to create product bundles\\u2014gift boxes of their choice comprising items from your shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/assorted-products-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/assorted-products.codeincept.com\\/product\\/assorted-product\\/\",\"price\":\"$79.00\",\"hash\":\"6ab9ee51-c187-421c-9104-efa21d9423ca\",\"slug\":\"assorted-products-for-woocommerce\",\"id\":4911617},{\"title\":\"Smart Product Bundle For WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/01\\/Smart-Product-Bundle-z1tihh.png\",\"excerpt\":\"Fulfill customer expectations with Smart Product Bundle and enrich customer experiences along with your sales revenue.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-bundle-product-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.wpexperts.io\\/smart-bundle-product-for-woocommerce\\/\",\"price\":\"$49.00\",\"hash\":\"033cccdf-744b-4497-87b1-5765e71d3dcd\",\"slug\":\"smart-bundle-for-woocommerce\",\"id\":5193957},{\"title\":\"Rental Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/05\\/Rental-Products-Logo.png?w=150&h=150\",\"excerpt\":\"Create rental products within your WooCommerce store, allowing customers to rent products for specific dates.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/rental-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"d6b9b1a1-8b92-4e07-89b9-4d85e3b574ce\",\"slug\":\"wcrp-rental-products\",\"id\":5860277},{\"title\":\"Featured Listing for Product Vendors\",\"image\":\"\",\"excerpt\":\"This is an addon of WooCommerce Product Vendor which offers vendor the option to feature their product ahead of others, for a small fee.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/featured-listing-for-product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.makewebbetter.com\\/featured-listing-for-product-vendors\\/\",\"price\":\"$79.00\",\"hash\":\"78610942-f38c-4517-b7e0-4c3753d11752\",\"slug\":\"featured-listing-for-product-vendors\",\"id\":5021060},{\"title\":\"Walmart Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo-1.png\",\"excerpt\":\"Sell on Walmart with Walmart Integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/walmart-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$249.00\",\"hash\":\"1237f272-56c8-4c77-8539-31450a2f4e1a\",\"slug\":\"walmart-integration-for-woocommerce\",\"id\":5423057},{\"title\":\"Shopee Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo.png\",\"excerpt\":\"Sell on Shopee with Shopee integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shopee-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"dcf810b6-c8ce-48da-84ba-289ac4ee43f5\",\"slug\":\"woocommerce-shopee-integration\",\"id\":4794826}]}\";s:3:\"raw\";s:16929:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Sat, 01 Aug 2020 05:27:51 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 4019\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages\r\nAccess-Control-Allow-Headers: Authorization, Content-Type\r\nCache-Control: max-age=60\r\nAllow: GET\r\nContent-Encoding: gzip\r\nX-rq: bom2 88 83 3100\r\nAge: 18\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-2.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Composite Products\",\"image\":\"\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Groups for WooCommerce\",\"image\":\"\",\"excerpt\":\"Sell Memberships with Groups and WooCommerce \\u2013\\u00a0the best Group Membership and Access Control solution for WordPress and WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/groups-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"aa2d455ed00566e4fb71bc9d53f2613b\",\"slug\":\"groups-woocommerce\",\"id\":18704},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Chained Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/wc-product-chained-products.png\",\"excerpt\":\"Pre-configured product bundles, giveaways, forced sells and discounted combos. Automatically adds \\u201cchained\\u201d products to cart when \\u201cmain\\u201d product is added.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/chained-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=cp\",\"price\":\"$49.00\",\"hash\":\"cc6e246e495745db10f9f7fddc5aa907\",\"slug\":\"woocommerce-chained-products\",\"id\":18687},{\"title\":\"Mix and Match Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/04\\/mnm-icon-dark-jprydo.png\",\"excerpt\":\"Allow your customers to combine products and create their own variations, and increase your average order value.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-mix-and-match-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"e59883891b7bcd535025486721e4c09f\",\"slug\":\"woocommerce-mix-and-match-products\",\"id\":853021},{\"title\":\"All Products for WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-APFS.png?v=1\",\"excerpt\":\"Offer your products on subscription, and let customers add products to their existing subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/all-products-for-woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"2794ee6e-bc30-4733-9b24-5edfc3f0095d\",\"slug\":\"woocommerce-all-products-for-subscriptions\",\"id\":3978176},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Teams for WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/02\\/Thumbnail-Teams-for-Memberships-2.png\",\"excerpt\":\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/teams-woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9feb48da-9615-4131-8aa8-eebb55b9cff4\",\"slug\":\"woocommerce-memberships-for-teams\",\"id\":2893267},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce API Manager\",\"image\":\"\",\"excerpt\":\"Let customers subscribe to your software or services through API Keys, aka License Keys. Provide automated updates for WordPress Plugins and Themes, or any software through robust APIs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-api-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"f7cdcfb7de76afa0889f07bcb92bf12e\",\"slug\":\"woocommerce-api-manager\",\"id\":260110},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"Auctions for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/10\\/auctions_for_woocommerce.png\",\"excerpt\":\"A professional Auction solution for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/auctions-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/wpinstitut.com\\/auctions-for-woocommerce-demo\\/\",\"price\":\"$149.00\",\"hash\":\"c41a199e-5f49-4f5c-bb28-7ca22b0c4fe7\",\"slug\":\"auctions-for-woocommerce\",\"id\":4922919},{\"title\":\"Lottery for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/05\\/lottery-logo.png?w=150&h=150\",\"excerpt\":\"Lottery for WooCommerce is a full-featured lottery plugin for creating and managing online lotteries in your WooCommerce Shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/lottery-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9694c9bd-1d5c-43af-b1e9-796cc64b16a8\",\"slug\":\"lottery-for-woocommerce\",\"id\":5860289},{\"title\":\"Paywall for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/01\\/paywall-for-woocommerce-logo.png\",\"excerpt\":\"Paywall is a WooCommerce extension that allows creating products with restricted access to content.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paywall-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo-woocommerce-paywall.tiv.net\\/\",\"price\":\"$79.00\",\"hash\":\"a688fc22-9370-4652-9e5e-f968ced9a0a8\",\"slug\":\"paywall-for-woocommerce\",\"id\":5253500},{\"title\":\"Etsy Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo-2.png\",\"excerpt\":\"Sell on Etsy with Etsy Integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/etsy-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"1dc5953a-3b22-4e73-9d7d-cc852d189beb\",\"slug\":\"woocommerce-etsy-integration\",\"id\":5712585},{\"title\":\"Custom Product Boxes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/CPB_Icon.jpg?w=150&h=150\",\"excerpt\":\"Custom product boxes for WooCommerce allows users to create product bundles by choosing specific items of their own choice from the collection of products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/custom-product-boxes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/composite-products.codeincept.com\\/product\\/cupcake-gift-box\\/\",\"price\":\"$79.00\",\"hash\":\"ba19e1e3-1d5f-4e2c-bc3e-d7029c04f326\",\"slug\":\"custom-product-boxes\",\"id\":5706607},{\"title\":\"Auctions Made Easy for WooCommerce\",\"image\":\"\",\"excerpt\":\"Auctions Made Easy for WooCommerce is a full-featured auctions plugin for creating and managing online auctions in a WooCommerce shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/auctions-made-easy-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a7fbc475-9946-4db9-92b6-5b7ebab3bab2\",\"slug\":\"auctions-made-easy-for-woocommerce\",\"id\":5249611},{\"title\":\"Assorted Products for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/icon.jpg\",\"excerpt\":\"Empower your customers to create product bundles\\u2014gift boxes of their choice comprising items from your shop.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/assorted-products-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/assorted-products.codeincept.com\\/product\\/assorted-product\\/\",\"price\":\"$79.00\",\"hash\":\"6ab9ee51-c187-421c-9104-efa21d9423ca\",\"slug\":\"assorted-products-for-woocommerce\",\"id\":4911617},{\"title\":\"Smart Product Bundle For WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/01\\/Smart-Product-Bundle-z1tihh.png\",\"excerpt\":\"Fulfill customer expectations with Smart Product Bundle and enrich customer experiences along with your sales revenue.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-bundle-product-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.wpexperts.io\\/smart-bundle-product-for-woocommerce\\/\",\"price\":\"$49.00\",\"hash\":\"033cccdf-744b-4497-87b1-5765e71d3dcd\",\"slug\":\"smart-bundle-for-woocommerce\",\"id\":5193957},{\"title\":\"Rental Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/05\\/Rental-Products-Logo.png?w=150&h=150\",\"excerpt\":\"Create rental products within your WooCommerce store, allowing customers to rent products for specific dates.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/rental-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"d6b9b1a1-8b92-4e07-89b9-4d85e3b574ce\",\"slug\":\"wcrp-rental-products\",\"id\":5860277},{\"title\":\"Featured Listing for Product Vendors\",\"image\":\"\",\"excerpt\":\"This is an addon of WooCommerce Product Vendor which offers vendor the option to feature their product ahead of others, for a small fee.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/featured-listing-for-product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.makewebbetter.com\\/featured-listing-for-product-vendors\\/\",\"price\":\"$79.00\",\"hash\":\"78610942-f38c-4517-b7e0-4c3753d11752\",\"slug\":\"featured-listing-for-product-vendors\",\"id\":5021060},{\"title\":\"Walmart Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo-1.png\",\"excerpt\":\"Sell on Walmart with Walmart Integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/walmart-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$249.00\",\"hash\":\"1237f272-56c8-4c77-8539-31450a2f4e1a\",\"slug\":\"walmart-integration-for-woocommerce\",\"id\":5423057},{\"title\":\"Shopee Integration for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/Logo.png\",\"excerpt\":\"Sell on Shopee with Shopee integration for WooCommerce. Automate, list, and sync inventories in a click and grow your sales.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shopee-integration-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"dcf810b6-c8ce-48da-84ba-289ac4ee43f5\",\"slug\":\"woocommerce-shopee-integration\",\"id\":4794826}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:17:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Sat, 01 Aug 2020 05:27:51 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:4:\"4019\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:27:\"X-WP-Total, X-WP-TotalPages\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:27:\"Authorization, Content-Type\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"x-rq\";a:1:{i:0;s:15:\"bom2 88 83 3100\";}s:3:\"age\";a:1:{i:0;s:2:\"18\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:81:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search?category=product-type\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(956, '_transient_timeout_wc_onboarding_themes', '1596347240', 'no'),
(957, '_transient_wc_onboarding_themes', 'a:24:{s:8:\"wpemerge\";a:6:{s:4:\"slug\";s:8:\"wpemerge\";s:5:\"title\";s:23:\"WP Emerge Starter Theme\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:61:\"http://localhost/wk/wp-content/themes/wpemerge/screenshot.png\";s:23:\"has_woocommerce_support\";b:1;}s:10:\"storefront\";a:11:{s:5:\"title\";s:10:\"Storefront\";s:5:\"image\";s:77:\"https://woocommerce.com/wp-content/themes/woo/images/storefront/feature-1.jpg\";s:7:\"excerpt\";s:161:\"Storefront is an intuitive & flexible, free theme offering deep integration with WooCommerce.\r\n\r\nIt\'s the perfect platform for your next WooCommerce project.\";s:4:\"link\";s:103:\"https://woocommerce.com/products/storefront/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:42:\"https://themes.woocommerce.com/storefront/\";s:5:\"price\";s:9:\"$0.00\";s:4:\"hash\";s:32:\"5714dad8f8d0b930bd6cc9c99657b930\";s:4:\"slug\";s:10:\"storefront\";s:2:\"id\";i:565154;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"matthew\";a:11:{s:5:\"title\";s:7:\"Matthew\";s:5:\"image\";s:71:\"https://woocommerce.com/wp-content/uploads/2020/06/screenshot.png?w=620\";s:7:\"excerpt\";s:145:\"Matthew is a Gutenberg-powered WooCommerce theme designed for building a professional online store so that you can sell goods or services online.\";s:4:\"link\";s:100:\"https://woocommerce.com/products/matthew/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:38:\"https://demo.themesharbor.com/matthew/\";s:5:\"price\";s:11:\"$129.00\";s:4:\"hash\";s:36:\"b3983408-c4f6-4751-8bd7-ae65ae34cf3b\";s:4:\"slug\";s:7:\"matthew\";s:2:\"id\";i:6214538;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:11:\"fifthavenue\";a:11:{s:5:\"title\";s:12:\"Fifth Avenue\";s:5:\"image\";s:59:\"https://woocommerce.com/wp-content/uploads/2020/06/ss01.jpg\";s:7:\"excerpt\";s:103:\"Beautiful Gutenberg powered WooCommerce theme designed to be easily customized for all types of stores.\";s:4:\"link\";s:105:\"https://woocommerce.com/products/fifth-avenue/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:35:\"https://fifthavenue.fuelthemes.net/\";s:5:\"price\";s:10:\"$79.00\";s:4:\"hash\";s:36:\"9e093a9f-3d49-4fcd-bec7-c87b097d9df8\";s:4:\"slug\";s:11:\"fifthavenue\";s:2:\"id\";i:5989481;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"artisan\";a:11:{s:5:\"title\";s:7:\"Artisan\";s:5:\"image\";s:67:\"https://woocommerce.com/wp-content/uploads/2020/03/artisan-home.jpg\";s:7:\"excerpt\";s:79:\"Sell your hand-crafted products online using the Artisan Theme for WooCommerce.\";s:4:\"link\";s:100:\"https://woocommerce.com/products/artisan/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:39:\"https://organicthemes.com/demo/artisan/\";s:5:\"price\";s:10:\"$79.00\";s:4:\"hash\";s:36:\"64529812-81f6-4efd-9686-ecb34e527421\";s:4:\"slug\";s:7:\"artisan\";s:2:\"id\";i:5576887;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"threads\";a:11:{s:5:\"title\";s:7:\"Threads\";s:5:\"image\";s:67:\"https://woocommerce.com/wp-content/uploads/2019/07/threads-home.jpg\";s:7:\"excerpt\";s:79:\"Create a stunning website for your apparel brand using Threads for WooCommerce.\";s:4:\"link\";s:100:\"https://woocommerce.com/products/threads/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:39:\"https://organicthemes.com/demo/threads/\";s:5:\"price\";s:10:\"$79.00\";s:4:\"hash\";s:36:\"7ca579a6-6aaf-498c-9ee7-e15280ace9e9\";s:4:\"slug\";s:7:\"threads\";s:2:\"id\";i:4663191;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:10:\"block-shop\";a:11:{s:5:\"title\";s:10:\"Block Shop\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/uploads/2019/08/block-shop-theme-preview.jpg\";s:7:\"excerpt\";s:154:\"A hassle-free Block-Editor-Era theme for your next WooCommerce project.\r\n\r\n \r\n\r\nPre-sale questions? Ask Get Bowtied: http://m.me/getbowtied\r\n\r\n \";s:4:\"link\";s:103:\"https://woocommerce.com/products/block-shop/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:34:\"https://blockshop.wp-theme.design/\";s:5:\"price\";s:10:\"$59.00\";s:4:\"hash\";s:36:\"21fa433c-6c31-4be7-83ab-8d2cc8986130\";s:4:\"slug\";s:10:\"block-shop\";s:2:\"id\";i:4660093;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"bistro\";a:11:{s:5:\"title\";s:6:\"Bistro\";s:5:\"image\";s:61:\"https://woocommerce.com/wp-content/uploads/2016/07/bistro.png\";s:7:\"excerpt\";s:174:\"Bistro is a Storefront child theme designed for stores selling organic goods and other consumables. It features a friendly and warm design that lends itself to this industry.\";s:4:\"link\";s:99:\"https://woocommerce.com/products/bistro/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:37:\"https://themes.woocommerce.com/bistro\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"58e753f91fddf40abe8ebe4486f8c378\";s:4:\"slug\";s:6:\"bistro\";s:2:\"id\";i:1822936;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:10:\"stationery\";a:11:{s:5:\"title\";s:10:\"Stationery\";s:5:\"image\";s:65:\"https://woocommerce.com/wp-content/uploads/2016/04/stationery.jpg\";s:7:\"excerpt\";s:186:\"Stationery is a Storefront child theme designed for stores selling office supplies and/or arts & crafts. The design has subtle tactile decorations while also being clean and elegant.\";s:4:\"link\";s:103:\"https://woocommerce.com/products/stationery/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:42:\"https://themes.woocommerce.com/stationery/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"b939225b8b8ccdc7b14ffb6d7eab2ac2\";s:4:\"slug\";s:10:\"stationery\";s:2:\"id\";i:1629126;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"petshop\";a:11:{s:5:\"title\";s:7:\"Petshop\";s:5:\"image\";s:62:\"https://woocommerce.com/wp-content/uploads/2016/03/petshop.png\";s:7:\"excerpt\";s:181:\"Petshop is a Storefront child theme designed for stores selling products in the pet industry. The design is organic and friendly, featuring many details that point to pet ownership.\";s:4:\"link\";s:100:\"https://woocommerce.com/products/petshop/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:39:\"https://themes.woocommerce.com/petshop/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"8060743c9031974326850f539aba5196\";s:4:\"slug\";s:7:\"petshop\";s:2:\"id\";i:1587689;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:5:\"hotel\";a:11:{s:5:\"title\";s:5:\"Hotel\";s:5:\"image\";s:69:\"https://woocommerce.com/wp-content/uploads/2016/03/hotel-featured.jpg\";s:7:\"excerpt\";s:246:\"Hotel is designed for businesses selling time, services and accommodation, offering unique integration with WooCommerce Bookings and Accommodation Bookings. The design is bold yet simple, allowing your content and imagery to do all the talking.\";s:4:\"link\";s:98:\"https://woocommerce.com/products/hotel/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:37:\"https://themes.woocommerce.com/hotel/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"0b0df891aa46f289f4e49bae2389bb04\";s:4:\"slug\";s:5:\"hotel\";s:2:\"id\";i:1554532;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"bookshop\";a:11:{s:5:\"title\";s:8:\"Bookshop\";s:5:\"image\";s:63:\"https://woocommerce.com/wp-content/uploads/2016/02/featured.png\";s:7:\"excerpt\";s:183:\"Bookshop comes with a unique homepage layout that prominently displays product categories and a variety of products in an arrangement that is popular with bookstores and collectibles.\";s:4:\"link\";s:101:\"https://woocommerce.com/products/bookshop/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:40:\"https://themes.woocommerce.com/bookshop/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"9fe861227e3e82fde8fe5d7e8cc3340e\";s:4:\"slug\";s:8:\"bookshop\";s:2:\"id\";i:1508713;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"arcade\";a:11:{s:5:\"title\";s:6:\"Arcade\";s:5:\"image\";s:61:\"https://woocommerce.com/wp-content/uploads/2016/01/arcade.png\";s:7:\"excerpt\";s:216:\"Upgrade your video game shops look and feel with Arcade. It\'s bold and modern design will engage visitors and the unique homepage layout will present them with a variety of products as soon as they hit your homepage.\";s:4:\"link\";s:99:\"https://woocommerce.com/products/arcade/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:38:\"https://themes.woocommerce.com/arcade/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"5af09d4e590eec977c6b9519b517f479\";s:4:\"slug\";s:6:\"arcade\";s:2:\"id\";i:1418260;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:9:\"homestore\";a:11:{s:5:\"title\";s:9:\"Homestore\";s:5:\"image\";s:64:\"https://woocommerce.com/wp-content/uploads/2015/12/homestore.jpg\";s:7:\"excerpt\";s:166:\"Give your Department Store a classic look with Homestore. Its clean and efficient design will work well whether you\'re a boutique independent or a high street giant.\";s:4:\"link\";s:102:\"https://woocommerce.com/products/homestore/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:41:\"https://themes.woocommerce.com/homestore/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"d79fe7a1beba26523aafa6ce6d3e1e85\";s:4:\"slug\";s:9:\"homestore\";s:2:\"id\";i:1365559;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"pharmacy\";a:11:{s:5:\"title\";s:8:\"Pharmacy\";s:5:\"image\";s:63:\"https://woocommerce.com/wp-content/uploads/2015/12/pharmacy.jpg\";s:7:\"excerpt\";s:235:\"Give your health store a professional, trust-worthy design with the Pharmacy Storefront Child Theme. Built upon our rock solid Storefront Parent theme you\'ll also enjoy reliable integration with current and future WooCommerce releases.\";s:4:\"link\";s:101:\"https://woocommerce.com/products/pharmacy/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:40:\"https://themes.woocommerce.com/pharmacy/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"ebeff3c0f89cd3169fb6b3e7e137e513\";s:4:\"slug\";s:8:\"pharmacy\";s:2:\"id\";i:1365557;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"toyshop\";a:11:{s:5:\"title\";s:7:\"ToyShop\";s:5:\"image\";s:62:\"https://woocommerce.com/wp-content/uploads/2015/09/toyshop.jpg\";s:7:\"excerpt\";s:269:\"Add some fun to your store with ToyShop. The engaging and colorful design of ToyShop makes it a perfect child theme or any store that sells exciting products that are aimed at customers that like to have fun. The outdoorsy style would even be perfect for a flower shop.\";s:4:\"link\";s:100:\"https://woocommerce.com/products/toyshop/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:39:\"https://themes.woocommerce.com/toyshop/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"3e2520021b41ee49a55b93362aaced98\";s:4:\"slug\";s:7:\"toyshop\";s:2:\"id\";i:1230716;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:6:\"outlet\";a:11:{s:5:\"title\";s:6:\"Outlet\";s:5:\"image\";s:61:\"https://woocommerce.com/wp-content/uploads/2015/09/outlet.jpg\";s:7:\"excerpt\";s:221:\"Overclock your tech store with Outlet! Whether you sell boutique iPad jewellery or the nuts and bolts of hardware itself, Outlet will give your shop a stylish look and feel while enjoying the stability of Storefront core.\";s:4:\"link\";s:99:\"https://woocommerce.com/products/outlet/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:38:\"https://themes.woocommerce.com/outlet/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"4c311cb3a3131570946b8799715a0991\";s:4:\"slug\";s:6:\"outlet\";s:2:\"id\";i:1212805;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:7:\"proshop\";a:11:{s:5:\"title\";s:7:\"ProShop\";s:5:\"image\";s:62:\"https://woocommerce.com/wp-content/uploads/2015/06/proshop.jpg\";s:7:\"excerpt\";s:176:\"Unlock the true potential of your sports clothing and equipment store with ProShop! It\'s metropolitan design provides an active aesthetic giving your store oodles of character.\";s:4:\"link\";s:100:\"https://woocommerce.com/products/proshop/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:39:\"https://themes.woocommerce.com/proshop/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"1d51b8633bbd1782dc17fce15f8bd2af\";s:4:\"slug\";s:7:\"proshop\";s:2:\"id\";i:1000757;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"galleria\";a:11:{s:5:\"title\";s:8:\"Galleria\";s:5:\"image\";s:68:\"https://woocommerce.com/wp-content/uploads/2015/05/galleria-hero.png\";s:7:\"excerpt\";s:162:\"Galleria is a Storefront child theme perfect for fashion and design stores. Stylish and minimalist, it gives sites a classy look and keeps products center stage.\";s:4:\"link\";s:101:\"https://woocommerce.com/products/galleria/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:40:\"https://themes.woocommerce.com/galleria/\";s:5:\"price\";s:10:\"$39.00\";s:4:\"hash\";s:32:\"2429c1dde521031cd053886b15844bbf\";s:4:\"slug\";s:8:\"galleria\";s:2:\"id\";i:887931;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:4:\"deli\";a:11:{s:5:\"title\";s:4:\"Deli\";s:5:\"image\";s:59:\"https://woocommerce.com/wp-content/uploads/2015/03/deli.jpg\";s:7:\"excerpt\";s:135:\"Deli is a Storefront child theme featuring a texturised, earthy design, perfect for stores selling natural, organic or hand made goods.\";s:4:\"link\";s:97:\"https://woocommerce.com/products/deli/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:36:\"https://themes.woocommerce.com/deli/\";s:5:\"price\";s:9:\"$0.00\";s:4:\"hash\";s:32:\"83c6db94c8ebf9da56b59fb97f724e88\";s:4:\"slug\";s:4:\"deli\";s:2:\"id\";i:784823;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:8:\"boutique\";a:11:{s:5:\"title\";s:8:\"Boutique\";s:5:\"image\";s:63:\"https://woocommerce.com/wp-content/uploads/2015/01/boutique.png\";s:7:\"excerpt\";s:168:\"Boutique is a simple, traditionally designed Storefront child theme, ideal for small stores or boutiques. Add your logo, create a unique color scheme and start selling!\";s:4:\"link\";s:101:\"https://woocommerce.com/products/boutique/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\";s:8:\"demo_url\";s:40:\"https://themes.woocommerce.com/boutique/\";s:5:\"price\";s:9:\"$0.00\";s:4:\"hash\";s:32:\"71815288e266d58031727d48d6deee25\";s:4:\"slug\";s:8:\"boutique\";s:2:\"id\";i:605777;s:12:\"is_installed\";b:0;s:23:\"has_woocommerce_support\";b:1;}s:14:\"twentynineteen\";a:6:{s:4:\"slug\";s:14:\"twentynineteen\";s:5:\"title\";s:15:\"Twenty Nineteen\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:67:\"http://localhost/wk/wp-content/themes/twentynineteen/screenshot.png\";s:23:\"has_woocommerce_support\";b:0;}s:15:\"twentyseventeen\";a:6:{s:4:\"slug\";s:15:\"twentyseventeen\";s:5:\"title\";s:16:\"Twenty Seventeen\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:68:\"http://localhost/wk/wp-content/themes/twentyseventeen/screenshot.png\";s:23:\"has_woocommerce_support\";b:0;}s:12:\"twentytwenty\";a:6:{s:4:\"slug\";s:12:\"twentytwenty\";s:5:\"title\";s:13:\"Twenty Twenty\";s:5:\"price\";s:4:\"0.00\";s:12:\"is_installed\";b:1;s:5:\"image\";s:65:\"http://localhost/wk/wp-content/themes/twentytwenty/screenshot.png\";s:23:\"has_woocommerce_support\";b:0;}}', 'no'),
(1015, '_transient_timeout_wc_related_27', '1596360514', 'no'),
(1016, '_transient_wc_related_27', 'a:2:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=27\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"23\";i:2;s:2:\"25\";i:3;s:2:\"29\";}s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=27\";a:4:{i:0;s:2:\"16\";i:1;s:2:\"23\";i:2;s:2:\"25\";i:3;s:2:\"29\";}}', 'no'),
(1036, '_transient_timeout_wc_related_11', '1596360514', 'no'),
(1037, '_transient_wc_related_11', 'a:2:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=11\";a:2:{i:0;s:2:\"14\";i:1;s:2:\"20\";}s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=11\";a:2:{i:0;s:2:\"14\";i:1;s:2:\"20\";}}', 'no'),
(1085, '_transient_timeout_woocommerce_admin_low_out_of_stock_count', '1596274536', 'no'),
(1086, '_transient_woocommerce_admin_low_out_of_stock_count', '0', 'no'),
(1088, '_transient_timeout_wc_related_20', '1596360514', 'no'),
(1089, '_transient_wc_related_20', 'a:1:{s:50:\"limit=5&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=20\";a:2:{i:0;s:2:\"11\";i:1;s:2:\"14\";}}', 'no'),
(1101, '_transient_timeout_wc_term_counts', '1598863937', 'no'),
(1102, '_transient_wc_term_counts', 'a:1:{i:16;s:1:\"3\";}', 'no'),
(1120, '_site_transient_timeout_available_translations', '1596284287', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1121, '_site_transient_available_translations', 'a:122:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-14 06:20:07\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-28 21:36:32\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.15\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"http://downloads.wordpress.org/translation/core/4.9.15/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2020-01-22 10:57:09\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.3.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"4.8.14\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/4.8.14/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 06:57:24\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-17 11:59:40\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-22 04:50:37\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.3.4\";s:7:\"updated\";s:19:\"2020-06-11 08:59:48\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.3.4/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-10 08:55:00\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-05-20 09:36:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-19 09:59:34\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:72:\"http://downloads.wordpress.org/translation/core/5.4.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-19 09:59:11\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 18:12:26\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-17 18:22:34\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 18:14:04\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:70:\"http://downloads.wordpress.org/translation/core/5.4.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 15:27:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-03-30 09:33:04\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-18 22:29:32\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 05:40:20\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-03-31 22:29:33\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-14 17:55:29\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-07 12:15:57\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-09 08:55:58\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-07 21:12:53\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-07 22:47:39\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-07 22:49:02\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:5:\"5.4.1\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.1/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:5:\"5.3.2\";s:7:\"updated\";s:19:\"2019-11-12 04:43:11\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.3.2/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:3:\"5.1\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/5.1/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 20:42:40\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-23 16:46:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-27 10:08:06\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-23 23:51:44\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:9:\"5.0-beta3\";s:7:\"updated\";s:19:\"2018-11-28 16:04:33\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/5.0-beta3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 09:16:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-24 18:19:16\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-10 15:26:09\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-21 13:22:30\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-25 08:39:33\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-05-26 21:16:26\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.8.6/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-07 22:38:20\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.9.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-16 16:33:09\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.7\";s:7:\"updated\";s:19:\"2018-06-17 09:33:44\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.9.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-05 20:35:18\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-18 16:53:49\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/5.4.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-03 10:58:08\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-11 05:59:40\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.7.11\";s:7:\"updated\";s:19:\"2018-09-20 11:13:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/4.7.11/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-16 09:32:36\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 08:23:23\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.9.5/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.4.1\";s:7:\"updated\";s:19:\"2020-04-30 07:54:16\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 06:32:24\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/5.4.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.9.5/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 07:34:10\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.0.3/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:6:\"4.9.15\";s:7:\"updated\";s:19:\"2019-12-04 12:22:34\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.9.15/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರೆಸಿ\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.3.4\";s:7:\"updated\";s:19:\"2020-07-29 06:09:28\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.3.4/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-18 14:32:44\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.9.9/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"5.2.7\";s:7:\"updated\";s:19:\"2020-07-14 08:45:32\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.2.7/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-14 08:34:14\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.2.3\";s:7:\"updated\";s:19:\"2019-09-08 12:57:25\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.2.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.8.14\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.8.14/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"4.9.15\";s:7:\"updated\";s:19:\"2018-08-31 11:57:07\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/4.9.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-07 22:48:25\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.9.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-11 14:56:43\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 07:06:32\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:70:\"http://downloads.wordpress.org/translation/core/5.4.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-30 20:36:13\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2020-01-01 08:53:00\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.3.3/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-09 06:38:25\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-01 11:09:51\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-30 20:34:06\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 16:20:44\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-08 10:35:41\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:68:\"http://downloads.wordpress.org/translation/core/5.4.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-28 11:13:46\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-29 21:01:20\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:3:\"5.3\";s:7:\"updated\";s:19:\"2019-11-12 04:37:38\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:59:\"http://downloads.wordpress.org/translation/core/5.3/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-14 13:57:15\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-05-27 17:42:38\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/5.4.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-20 13:58:58\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-04-01 01:42:23\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-26 23:48:05\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"5.2.6\";s:7:\"updated\";s:19:\"2019-10-22 00:19:41\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.2.6/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-06-04 18:21:20\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-09 14:00:02\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/4.9.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-27 12:59:35\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"5.1.6\";s:7:\"updated\";s:19:\"2020-04-09 10:48:08\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.1.6/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:6:\"5.0.10\";s:7:\"updated\";s:19:\"2019-01-23 12:32:40\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"http://downloads.wordpress.org/translation/core/5.0.10/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-13 09:29:34\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:60:\"http://downloads.wordpress.org/translation/core/5.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-03-30 20:54:59\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.4.2\";s:7:\"updated\";s:19:\"2020-07-31 19:52:13\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.4.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:19:\"2020-03-08 12:12:22\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:63:\"http://downloads.wordpress.org/translation/core/5.3.3/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}', 'no'),
(1126, '_transient_timeout_wc_low_stock_count', '1598865550', 'no'),
(1127, '_transient_wc_low_stock_count', '0', 'no'),
(1128, '_transient_timeout_wc_outofstock_count', '1598865550', 'no'),
(1129, '_transient_wc_outofstock_count', '0', 'no'),
(1130, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1596316765', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1131, '_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News – – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2020 06:22:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.6-alpha-48705\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.5 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2020/07/wordpress-5-5-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2020 19:08:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8732\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:370:\"The first release candidate for WordPress 5.5 is now available! This is an important milestone in the community’s progress toward the final release of WordPress 5.5. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.5 […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2970:\"\n<p>The first release candidate for WordPress 5.5 is now available!</p>\n\n\n\n<p>This is an important milestone in the community’s progress toward the final release of WordPress 5.5. </p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.5 is slated for release on <strong>August 11, 2020</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.5 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.5 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.5?</h2>\n\n\n\n<p>WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.5 and update the <em>Tested up to</em> version in the readme file to 5.5. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The WordPress 5.5 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.5 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">fill one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8732\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jul 2020 20:56:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8719\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:313:\"WordPress 5.5 Beta 4 is now available! This software is still in development, so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test WordPress 5.5 Beta 4 in two ways: Try the WordPress Beta Tester plugin (choose the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3812:\"\n<p>WordPress 5.5 Beta 4 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 Beta 4 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta4.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors who tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\">beta 3</a> development release and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress. </p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-3/\">beta 3</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F22%2F2020..07%2F28%2F2020&milestone=5.5&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">43 bugs</a> have been fixed. Here are a few changes in beta 4:</p>\n\n\n\n<ul><li>Add <code>\"loading\"</code> as an allowed kses image attribute (see <a href=\"https://core.trac.wordpress.org/ticket/50731\">#50731</a>).</li><li>Add filter for the plugin/theme auto-update message in the Info tab of Site health (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/50663\">#50663</a>).</li><li><code>$_SERVER[\'SERVER_NAME\']</code> not a reliable when generating email host names (see <a href=\"https://core.trac.wordpress.org/ticket/25239\">#25239</a>)</li><li>Several backported fixes from Gutenberg are included in WordPress 5.5 Beta 4 (<a href=\"https://github.com/WordPress/gutenberg/pull/24218\">See PR #24218</a>)</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8719\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2020 17:51:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8706\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"WordPress 5.5 Beta 3 is now available! This software is still in development,so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test WordPress 5.5 Beta 3 in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3876:\"\n<p>WordPress 5.5 Beta 3 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong>This software is still in development,</strong>so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 Beta 3 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta3.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors who tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\">beta 2</a> development release and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress. </p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-2/\">beta 2</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F15%2F2020..07%2F21%2F2020&milestone=5.5&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">43 bugs</a> have been fixed. Here are a few changes in beta 3:</p>\n\n\n\n<ul><li>Plugin and theme versions are now shared in the emails when automatically updated (see <a href=\"https://core.trac.wordpress.org/ticket/50350\">#50350</a>).</li><li>REST API routes without a <code>permission_callback</code> now trigger a <code>_doing_it_wrong()</code> warning (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/50075\">#50075</a>).</li><li>Over 23 Gutenberg changes and updates (see <a href=\"https://github.com/WordPress/gutenberg/pull/24068\">#24068</a> and <a href=\"https://core.trac.wordpress.org/ticket/50712\">#50712</a>).</li><li>A bug with the new import and export database Dashicons has been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/49913\">#49913</a>).</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2020 17:24:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8681\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"WordPress 5.5 Beta 2 is now available! This software is still in development, so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test WordPress 5.5 beta 2 in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4552:\"\n<p id=\"block-000046ff-d8e6-40a8-9869-2dd39e50f270\"><br>WordPress 5.5 Beta 2 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong><strong>This software is still in development,</strong> </strong>so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 beta 2 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta2.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\">beta 1</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress. Here are some of the changes since beta 1 to pay close attention to while testing.</p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-1/\">beta 1</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F08%2F2020..07%2F14%2F2020&milestone=5.5&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">48 bugs</a> have been fixed. Here is a summary of a few changes included in beta 2:</p>\n\n\n\n<ul><li>19 additional bugs have been fixed in the block editor (see <a href=\"https://github.com/WordPress/gutenberg/pull/23903\">#23903</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23905\">#23905</a>).</li><li>The Dashicons icon font has been updated (see <a href=\"https://core.trac.wordpress.org/ticket/49913\">#49913</a>).</li><li>Broken widgets stemming from changes in Beta 1 have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/50609\">#50609</a>).</li><li>Query handling when counting revisions has been improved (see <a href=\"https://core.trac.wordpress.org/ticket/34560\">#34560</a>).</li><li>An alternate, expanded view was added for <code>wp_list_table</code> (see <a href=\"https://core.trac.wordpress.org/ticket/49715\">#49715</a>).</li><li>Some adjustments were made to the handling of default terms for custom taxonomies (see <a href=\"https://core.trac.wordpress.org/ticket/43517\">#43517</a>)</li></ul>\n\n\n\n<p>Several updates have been made to the block editor. For details, see <a href=\"https://github.com/WordPress/gutenberg/pull/23903\">#23903</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23905\">#23905</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2020 21:49:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8624\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"WordPress 5.5 Beta 1 is now available for testing! This software is still in development, so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.5 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9616:\"\n<p>WordPress 5.5 Beta 1 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.5 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta1.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for final release is August 11, 2020. This is only <strong>five weeks away</strong>. Your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Testing for bugs is an important part of polishing the release during the beta stage and a great way to contribute. Here are some of the big changes and features to pay close attention to while testing.</p>\n\n\n\n<h2><strong>Block editor: features and improvements</strong></h2>\n\n\n\n<p>WordPress 5.5 will include ten releases of the Gutenberg plugin, bringing with it a long list of exciting new features. Here are just a few:</p>\n\n\n\n<ul><li><strong>Inline image editing – </strong>Crop, rotate, and zoom photos inline right from image blocks.</li><li><strong>Block patterns</strong> – Building elaborate pages can be a breeze with new block patterns. Several are included by default.</li><li><strong>Device previews</strong> – See how your content will look to users on many different screen sizes. </li><li><strong>End block overwhelm</strong>. The new block inserter panel displays streamlined categories and collections. As a bonus, it supports patterns and integrates with the new block directory right out of the box.</li><li><strong>Discover, install, and insert third-party blocks</strong> from your editor using the new block directory.</li><li>A better, <strong>smoother editing experience </strong>with: <ul><li>Refined drag-and-drop</li><li>Block movers that you can see and grab</li><li>Parent block selection</li><li>Contextual focus highlights</li><li>Multi-select formatting lets you change a bunch of blocks at once </li><li>Ability to copy and relocate blocks easily</li><li>And, better performance</li></ul></li><li><strong>An expanded design toolset for themes.</strong></li><li>Now <strong>add backgrounds and gradients</strong> to more kinds of blocks, like groups, columns, media & text</li><li>And <strong>support for more types of measurements</strong> — not just pixels. Choose ems, rems, percentages, vh, vw, and more! Plus, adjust line heights while typing, turning writing and typesetting into the seamless act.</li></ul>\n\n\n\n<p>In all, WordPress 5.5 brings more than 1,500 useful improvements to the block editor experience. </p>\n\n\n\n<p>To see all of the features for each release in detail check out the release posts: <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.5.0\">7.5</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.6.0\">7.6</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.7.0\">7.7</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.8.0\">7.8</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.9.0\">7.9</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.0.0\">8.0</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.1.0\">8.1</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.2.0\">8.2</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.3.0\">8.3</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.4.0\">8.4</a>.</p>\n\n\n\n<h2><strong>Wait! There’s more!</strong></h2>\n\n\n\n<h3><strong>XML sitemaps</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/\">XML Sitemaps are now included in WordPress</a> and enabled by default. Sitemaps are essential to search engines discovering the content on your website. Your site’s home page, posts, pages, custom post types, and more will be included to improve your site’s visibility.</p>\n\n\n\n<h3><strong>Auto-updates for plugins and themes</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/tag/core-auto-updates/\">WordPress 5.5 also brings auto-updates for plugins and themes</a>. Easily control which plugins and themes keep themselves up to date on their own. It’s always recommended that you run the latest versions of all plugins and themes. The addition of this feature makes that easier than ever!</p>\n\n\n\n<h3><strong>Lazy-loading images</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/04/08/lazy-loading-of-images-is-in-core/\">WordPress 5.5 will include native support for lazy-loaded images</a> utilizing new browser standards. With lazy-loading, images will not be sent to users until they approach the viewport. This saves bandwidth for everyone (users, hosts, ISPs), makes it easier for those with slower internet speeds to browse the web, saves electricity, and more.</p>\n\n\n\n<h3><strong>Better accessibility</strong></h3>\n\n\n\n<p>With every release, WordPress works hard to improve accessibility. Version 5.5 is no different and packs a parcel of accessibility fixes and enhancements. Take a look:</p>\n\n\n\n<ul><li>List tables now come with extensive, alternate view modes.</li><li>Link-list widgets can now be converted to HTML5 navigation blocks.</li><li>Copying links in media screens and modal dialogs can now be done with a simple click of a button.</li><li>Disabled buttons now actually look disabled.</li><li>Meta boxes can now be moved with the keyboard.</li><li>A custom logo on the front page no longer links to the front page.</li><li>Assistive devices can now see status messages in the Image Editor.</li><li>The shake animation indicating a login failure now respects the user’s choices in the <code>prefers-reduced-motion</code> media query.</li><li>Redundant <code>Error:</code> prefixes have been removed from error notices.</li></ul>\n\n\n\n<h2><strong>Miscellaneous Changes</strong></h2>\n\n\n\n<ul><li>Plugins and themes can now be updated by uploading a ZIP file.</li><li><a href=\"https://make.wordpress.org/core/2020/06/26/wordpress-5-5-better-fine-grained-control-of-redirect_guess_404_permalink/\">More finely grained control of redirect_guess_404_permalink()</a>.</li><li><a href=\"https://make.wordpress.org/core/2020/07/01/external-library-updates-in-wordpress-5-5-call-for-testing/\">Several packaged external libraries have been updated</a>, including PHPMailer, SimplePie, Twemoji, Masonry, and more!</li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">5.5-related developer notes</a> in the coming weeks, breaking down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">360 tickets in WordPress 5.5</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&type=enhancement&milestone=5.5&or&status=closed&status=reopened&type=feature+request&milestone=5.5&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&col=changetime&col=keywords&order=changetime\">157 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p class=\"has-small-font-size\"><em>Props to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>, <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a>, and <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> for compiling/writing this post, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> for editing/proof reading, and <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, and <a href=\'https://profiles.wordpress.org/andreamiddleton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>andreamiddleton</a> for final review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8624\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2020/07/the-month-in-wordpress-june-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jul 2020 05:52:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8614\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:353:\"June was an exciting month for WordPress! Major changes are coming to the Gutenberg plugin, and WordCamp Europe brought the WordPress community closer together. Read on to learn more and to get all the latest updates.  WordPress 5.4.2 released We said hello to WordPress 5.4.2 on June 10. This security and maintenance release features 17 […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7872:\"\n<p>June was an exciting month for WordPress! Major changes are coming to the Gutenberg plugin, and WordCamp Europe brought the WordPress community closer together. Read on to learn more and to get all the latest updates. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.4.2 released</h2>\n\n\n\n<p>We said hello to WordPress 5.4.2 on June 10. This security and maintenance release features 17 fixes and 4 enhancements, so we recommend that you update your sites immediately. To download WordPress 5.4.2, visit your Dashboard, click on <strong>Updates</strong>, then <strong>Update Now</strong>, or download the latest version directly from WordPress.org. For more information, visit <a href=\"https://wordpress.org/news/2020/06/wordpress-5-4-2-security-and-maintenance-release/\">this post</a>, review the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.4.2&order=priority\">full list of changes on Trac</a>, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-2/\">HelpHub documentation page</a> for <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-2/\">version 5.4.2</a>. WordPress 5.4.2 is a short-cycle maintenance release. The next major release will be <a href=\"https://make.wordpress.org/core/5-5/\">version 5.5</a>, <a href=\"https://wordpress.org/about/roadmap/\">planned for August 2020</a>. <br><br>Want to get involved in building WordPress Core? Follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg 8.3 and 8.4</h2>\n\n\n\n<p>The core team launched Gutenberg <a href=\"https://make.wordpress.org/core/2020/06/11/whats-new-in-gutenberg-11-june/\">8.3</a> and <a href=\"https://make.wordpress.org/core/2020/06/24/whats-new-in-gutenberg-24-june/\">8.4</a> this month, paving the way for some exciting block editor features. Version 8.3 introduced enhancements like a reorganized, more intuitive set of block categories, a parent block selector, an experimental spacing control, and user-controlled link color options. Version 8.4 comes with new image-editing tools and the ability to edit options for multiple blocks. The block directory search feature that was previously available as an experimental feature, is now enabled for all Gutenberg installations. For full details on the latest versions on these Gutenberg releases, visit these posts about <a href=\"https://make.wordpress.org/core/2020/06/11/whats-new-in-gutenberg-11-june/\">8.3</a> and <a href=\"https://make.wordpress.org/core/2020/06/24/whats-new-in-gutenberg-24-june/\">8.4</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress Bumps Minimum Recommended PHP Version to 7.2</h2>\n\n\n\n<p>In a major update, WordPress <a href=\"https://meta.trac.wordpress.org/changeset/9959\">has bumped</a> the minimum PHP recommendation to 7.2. The ServeHappy API has been updated to set the minimum acceptable PHP version to 7.2, while the WordPress downloads page recommends 7.3 or newer. Previously, the ServeHappy dashboard widget was showing the upgrade notice to users of PHP 5.6 or lower. This decision comes <a href=\"https://meta.trac.wordpress.org/ticket/5257\">after discussions with the core Site Health team and the Hosting team</a>, both of which recommended that the upgrade notice be shown to users of PHP <=7.1.</p>\n\n\n\n<h2>WordCamp Europe 2020 Moved Online</h2>\n\n\n\n<p>Following the success of a remote WordCamp Spain, <a href=\"https://2020.europe.wordcamp.org/\">WordCamp Europe</a> was held fully online from June 4 to 6. The event drew a record 8,600 signups from people based in 138 countries, along with 2,500 signups for contributor day. WCEU Online also showcased 33 speakers and 40 sponsors, in addition to a Q&A with <NAME>. You can find the videos of the event in WordPress.tv by <a href=\"https://wordpress.tv/event/wordcamp-europe-2020/\">following this link</a>, or you can catch the<a href=\"https://www.youtube.com/channel/UCaYQGYDpXpU4A17kxN-AgJQ\"> live stream recording of the entire event from the WP Europe YouTube Channel</a>.</p>\n\n\n\n<p>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog here</a>, or join them in the #community-events channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a Meetup or WordCamp, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><NAME> (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>), the executive director of the WordPress project, <a href=\"https://wordpress.org/news/2020/06/equity-and-the-power-of-community/\">published a post </a>that highlights resources on how the global WordPress community can focus on equity to help dismantle racial, societal, and systemic injustice. </li><li>PHP, the primary programming language in which WordPress is written, celebrated its <a href=\"https://wptavern.com/php-marks-25-years\">25th anniversary</a> this month!</li><li>The Community team is<a href=\"https://make.wordpress.org/community/2020/06/18/pending-update-for-the-code-of-conduct/#comment-28294\"> updating the WordCamp code of conduct</a> to address discrimination based on age, caste, social class, and other identifying characteristics.</li><li>The WordPress Core team is promoting more inclusive language by <a href=\"https://make.wordpress.org/core/2020/06/18/proposal-update-all-git-repositories-to-use-main-instead-of-master/\">updating all git repositories to use `trunk` instead of `master`</a>. Additionally, the team proposes to <a href=\"https://make.wordpress.org/core/2020/06/24/proposal-rename-invalid-worksforme-and-wontfix-ticket-resolutions/\">rename “invalid,” “worksforme,” and “wontfix” ticket resolutions </a>to “not-applicable,” “not-reproducible” or “cannot-reproduce,” and “not-implemented,” respectively. </li><li>The Documentation team is working on an external linking policy and has <a href=\"https://make.wordpress.org/docs/2020/06/15/external-linking-policy-trusted-sources/\">started a discussion</a> on how to allow linking to trusted sources to benefit users. </li><li>The Core team has put up a proposal to <a href=\"https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/\">merge extensible core sitemaps to WordPress core</a> in the 5.5 release. The feature is currently available as a <a href=\"https://wordpress.org/plugins/core-sitemaps/\">feature plugin</a>.</li><li><a href=\"https://2020.denver.wordcamp.org/\">WordCamp Denver</a> was held online May 26–27. The event sold over 2,400 tickets and featured 27 speakers and 20 sponsors. You can catch the recorded live stream on the <a href=\"https://2020.denver.wordcamp.org/watch-now/\">event site</a>.</li><li>The Core team is working on <a href=\"https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">updating the version of jQuery</a> used in WordPress core.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8614\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:76:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.4.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2020/06/wordpress-5-4-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wordpress.org/news/2020/06/wordpress-5-4-2-security-and-maintenance-release/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jun 2020 19:19:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8592\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"WordPress 5.4.2 is now available! This security and maintenance release features 23 fixes and enhancements. Plus, it adds a number of security fixes—see the list below. These bugs affect WordPress versions 5.4.1 and earlier; version 5.4.2 fixes them, so you’ll want to upgrade. If you haven’t yet updated to 5.4, there are also updated versions […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6827:\"\n<p>WordPress 5.4.2 is now available!</p>\n\n\n\n<p>This security and maintenance release features 23 fixes and enhancements. Plus, it adds a number of security fixes—see the list below.</p>\n\n\n\n<p>These bugs affect WordPress versions 5.4.1 and earlier; version 5.4.2 fixes them, so you’ll want to upgrade.</p>\n\n\n\n<p>If you haven’t yet updated to 5.4, there are also updated versions of 5.3 and earlier that fix the bugs for you.</p>\n\n\n\n<h3><strong>Security Updates</strong></h3>\n\n\n\n<p>WordPress versions 5.4 and earlier are affected by the following bugs, which are fixed in version 5.4.2. If you haven’t yet updated to 5.4, there are also updated versions of 5.3 and earlier that fix the security issues.</p>\n\n\n\n<ul><li>Props to <NAME> (jazzy2fives) for finding an XSS issue where authenticated users with low privileges are able to add JavaScript to posts in the block editor.</li><li>Props to Luigi – (<a href=\"https://www.gubello.me/\">gubello.me</a>) for discovering an XSS issue where authenticated users with upload permissions are able to add JavaScript to media files.</li><li>Props to <NAME> of the WordPress Security Team for finding an open redirect issue in <em>wp_validate_redirect()</em>.</li><li>Props to <a href=\"http://apapedulimu.click\">Nrimo Ing Pandum</a> for finding an authenticated XSS issue via theme uploads.</li><li>Props to <a href=\"https://blog.ripstech.com/authors/simon-scannell\"><NAME> of RIPS Technologies</a> for finding an issue where <em>set-screen-option</em> can be misused by plugins leading to privilege escalation.</li><li>Props to <a href=\"https://profiles.wordpress.org/poena/\"><NAME></a> for discovering an issue where comments from password-protected posts and pages could be displayed under certain conditions.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>One maintenance update was also deployed to versions 5.1, 5.2 and 5.3. See the <a href=\"https://make.wordpress.org/core/2020/06/09/wordpress-5-4-2-prevent-unmoderated-comments-from-search-engine-indexation/\">related developer note</a> for more information.</p>\n\n\n\n<p>You can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.4.2&order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-2/\">5.4.2 documentation page</a>.</p>\n\n\n\n<p>WordPress 5.4.2 is a short-cycle maintenance release. The next major release will be <a href=\"https://make.wordpress.org/core/5-5/\">version 5.5</a>.</p>\n\n\n\n<p>You can download WordPress 5.4.2 from the button at the top of this page, or visit your<strong> Dashboard → Updates</strong> and click <strong>Update Now</strong>.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Thanks and props!</h3>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who helped make WordPress 5.4.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/afercia\"><NAME></a>, <a href=\"https://profiles.wordpress.org/argentite\">argentite</a>, <a href=\"https://profiles.wordpress.org/asif2bd\"><NAME></a>, <a href=\"https://profiles.wordpress.org/audrasjb\"><NAME></a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\"><NAME></a>, <a href=\"https://profiles.wordpress.org/bdcstr\">bdcstr</a>, <a href=\"https://profiles.wordpress.org/delowardev\"><NAME></a>, <a href=\"https://profiles.wordpress.org/dhrrob\"><NAME></a>, <a href=\"https://profiles.wordpress.org/donmhico\">donmhico</a>, <a href=\"https://profiles.wordpress.org/ehtis/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/emlebrun\"><NAME>UN</a>, <a href=\"https://profiles.wordpress.org/finomeno\">finomeno</a>, <a href=\"https://profiles.wordpress.org/garethgillman\">garethgillman</a>, <a href=\"https://profiles.wordpress.org/giorgio25b\">Giorgio25b</a>, <a href=\"https://profiles.wordpress.org/gma992\"><NAME></a>, <a href=\"https://profiles.wordpress.org/h71\">Hector F</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/jorbin/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/imath\"><NAME></a>, <a href=\"https://profiles.wordpress.org/javiercasares\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/jonkolbert\">jonkolbert</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp\"><NAME></a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/karmatosed\"><NAME></a>, <a href=\"https://profiles.wordpress.org/kjellr\"><NAME>ad</a>, <a href=\"https://profiles.wordpress.org/kthmd\">KT</a>, <a href=\"https://profiles.wordpress.org/markusthiel\">markusthiel</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji\"><NAME></a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mislavjuric\">mislavjuric</a>, <a href=\"https://profiles.wordpress.org/mukesh27\"><NAME>anchal</a>, <a href=\"https://profiles.wordpress.org/nikhilbhansi\"><NAME>ansi</a>, <a href=\"https://profiles.wordpress.org/oakesjosh\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/ocean90\"><NAME></a>, <a href=\"https://profiles.wordpress.org/passoniate\"><NAME></a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\"><NAME></a>, <a href=\"https://profiles.wordpress.org/poena\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sabernhardt\"><NAME></a>, <a href=\"https://profiles.wordpress.org/samful\"><NAME></a>, <a href=\"https://profiles.wordpress.org/schlessera\"><NAME></a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\"><NAME></a>, <a href=\"https://profiles.wordpress.org/skarabeq\">skarabeq</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\"><NAME></a>, <a href=\"https://profiles.wordpress.org/skithund\"><NAME></a>, <a href=\"https://profiles.wordpress.org/suzylah\">suzylah</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\"><NAME></a>, <a href=\"https://profiles.wordpress.org/utz119\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/whyisjake\"><NAME></a> and <a href=\"https://profiles.wordpress.org/yuhin\">yuhin</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2020/06/wordpress-5-4-2-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Equity and the Power of Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/06/equity-and-the-power-of-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jun 2020 17:59:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8590\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"Over the past week, I’ve been thinking a lot about <NAME>, <NAME>, and <NAME>. I have been thinking about white supremacy, the injustice that Black women and men are standing up against across the world, and all the injustices I can’t know, and don’t see.  The WordPress mission is to democratize publishing, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2535:\"\n<p>Over the past week, I’ve been thinking a lot about <NAME>, <NAME>, and <NAME>. I have been thinking about white supremacy, the injustice that Black women and men are standing up against across the world, and all the injustices I can’t know, and don’t see. </p>\n\n\n\n<p>The WordPress mission is to democratize publishing, and to me, that has always meant more than the freedom to express yourself. Democratizing publishing means giving voices to the voiceless and amplifying those speaking out against injustice. It means learning things that we otherwise wouldn’t. To me, it means that every voice has the ability to be heard, regardless of race, wealth, power, and opportunity. WordPress is a portal to commerce; it is a canvas for identity, and a catalyst for change.</p>\n\n\n\n<p>While WordPress as an open source project may not be capable of refactoring unjust judicial systems or overwriting structural inequality, this does not mean that we, the WordPress community, are powerless. WordPress can’t dismantle white supremacy, but the WordPress community can invest in underrepresented groups (whose experiences cannot be substituted for) and hire them equitably. WordPress can’t eradicate prejudice, but the WordPress community can hold space for marginalized voices in our community.</p>\n\n\n\n<p>There is a lot of racial, societal, and systemic injustice to fight. At times, change may seem impossible, and certainly, it’s been too slow. But I know in my heart that the WordPress community is capable of changing the world. </p>\n\n\n\n<p>If you would like to learn more about how to make a difference in your own community, here are a few resources I’ve gathered from WordPressers just like you.</p>\n\n\n\n<ul><li><a href=\"https://href.li/?http://www.socialjusticetoolbox.com/\">Social Justice Toolbox</a></li><li><a href=\"http://antiracismforbeginners.com/\">Anti-racism resource list</a></li><li>An open source <a href=\"https://guidetoallyship.com/\">Guide to Allyship</a></li><li><a href=\"https://allienimmons.com/how-to-be-a-wordpress-ally/\">How to be a WordPress Ally</a></li><li><a href=\"https://www.highsnobiety.com/p/black-lives-matter-europe/\">Supporting Black Lives Matter in Europe</a></li><li><a href=\"https://feminisminindia.com/2019/06/03/colourism-fairness-india/\">Cost of Colourism in India</a> </li><li><a href=\"https://www.ted.com/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them?language=en\">Overcoming Biases by Walking Toward Them</a> </li></ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8590\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"The Month in WordPress: May 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2020/06/the-month-in-wordpress-may-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jun 2020 07:36:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8585\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"May was an action-packed month for WordPress! WordPress organizers are increasingly moving WordCamps online, and contributors are taking big steps towards Full Site Editing with Gutenberg. To learn more and get all the latest updates, read on.  Gutenberg 8.1 and 8.2 Gutenberg 8.1 was released on May 13, followed quickly by Gutenberg 8.2 on May […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10242:\"\n<p>May was an action-packed month for WordPress! WordPress organizers are increasingly moving WordCamps online, and contributors are taking big steps towards Full Site Editing with Gutenberg. To learn more and get all the latest updates, read on. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Gutenberg 8.1 and 8.2</h2>\n\n\n\n<p>Gutenberg <a href=\"https://make.wordpress.org/core/2020/05/13/whats-new-in-gutenberg-13-may/\">8.1</a> was released on May 13, followed quickly by Gutenberg <a href=\"https://make.wordpress.org/core/2020/05/27/whats-new-in-gutenberg-27-may/\">8.2</a> on May 27. </p>\n\n\n\n<ul><li>8.1 added new block pattern features making it easier to insert desired patterns, along with a new pattern. It also added a button to collapsed block actions for copying the selected block, which will help touchscreen users or users who don’t use keyboard shortcuts. </li><li>8.2 introduced block pattern categories and a `viewportWidth` property that will be particularly useful for large block patterns. There is also a new content alignment feature, and enhancements to improve the writing experience. </li></ul>\n\n\n\n<p>Both releases include a number of new APIs, enhancements, bug fixes, experiments, new documentation, improvement to code quality, and more! To learn the latest, visit the announcement posts for <a href=\"https://make.wordpress.org/core/2020/05/13/whats-new-in-gutenberg-13-may/\">Gutenberg 8.1</a> and <a href=\"https://make.wordpress.org/core/2020/05/27/whats-new-in-gutenberg-27-may/\">Gutenberg 8.2</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Phase 2: Steps Towards Full Site Editing</h2>\n\n\n\n<p>Contributors are currently working hard on <a href=\"https://wordpress.org/about/roadmap/\">Phase 2 of Gutenberg</a>! Where Phase 1 introduced the new block editor with WordPress 5.0, Phase 2 sees more customization and includes one of the biggest Gutenberg projects: Full Site Editing (FSE). At the moment, <a href=\"https://make.wordpress.org/core/2020/05/13/wordpress-5-5-planning-roundup/\">work on WordPress 5.5 has been initiated</a> and contributors decided to include <a href=\"https://make.wordpress.org/core/2020/05/29/editor-features-for-wordpress-5-5/\">basic functionality for Full Site Editing</a> in this release. FSE hopes to streamline the site creation and building process in WordPress using a block-based approach. There’s a lot of conversation and new information about FSE, so communication around the project is very important. On May 28th, a conversation was held in the #core-customize channel to discuss <a href=\"https://make.wordpress.org/core/2020/05/20/join-a-discussion-about-full-site-editing-and-the-future-of-the-customizer/\">FSE and the future of the Customizer</a>. To help everyone track the latest information, <a href=\"https://make.wordpress.org/core/2020/05/20/ways-to-keep-up-with-full-site-editing-fse/\">this post</a> summarizes ways to keep up with FSE.</p>\n\n\n\n<p>Want to get involved with Gutenberg and FSE? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. You can also check the FSE <a href=\"https://href.li/?https://github.com/WordPress/gutenberg/pulls?q=is%3Aopen+is%3Apr+label%3A%22%5BFeature%5D+Full+Site+Editing%22\">pull requests</a> and <a href=\"https://href.li/?https://github.com/WordPress/gutenberg/issues?q=is%3Aopen+is%3Aissue+label%3A%22%5BFeature%5D+Full+Site+Editing%22\">issues</a> on GitHub.</p>\n\n\n\n<h2>Theme Review Team Rebranding</h2>\n\n\n\n<p>Representatives of the Themes Review Team have decided to update their team name to “Themes Team.” This decision reflects changes that the block editor brings to the landscape of themes with the Full Site Editing project. The team has always been involved in projects beyond reviewing WordPress.org themes and lately, the team has been contributing more to themes in general — including open-source packages, contributions to Full Site Editing, the Twenty Twenty theme, and more. You can read more about the name change in the <a href=\"https://make.wordpress.org/themes/2020/05/12/meeting-notes-tuesday-12-may-2020/\">team’s meeting notes</a>.</p>\n\n\n\n<p>Want to get involved with the Themes Team? <a href=\"https://make.wordpress.org/themes/\">Follow the Themes blog here</a>, or join them in the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Online WordCamp Program Announced</h2>\n\n\n\n<p>To assist organizers with moving their WordCamps online, the WordPress Community team has prepared a <a href=\"https://make.wordpress.org/community/handbook/virtual-events/\">new set of guidelines for online WordCamps</a>. The Community Team will cover <a href=\"https://make.wordpress.org/community/handbook/virtual-events/online-wordcamp-cost-guidelines-and-the-budget-review-process/\">online production and captioning costs</a> associated with any online WordCamp without the need for local sponsorship. The team also <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/new-guidelines-for-virtual-events-in-2020/\">updated its guidelines</a> to cover the regional focus of online events, and modified the <a href=\"https://make.wordpress.org/community/handbook/virtual-events/online-code-of-conduct/\">code of conduct</a> to cater to the new format. <a href=\"https://central.wordcamp.org/schedule/\">The WordCamp schedule</a> has also been updated to indicate whether an event is taking place online or not. You can find resources, tools, and information about online WordPress events in our <a href=\"https://make.wordpress.org/community/handbook/virtual-events/\">Online Events Handbook</a>. They have also prepared a <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/in-person-events-during-covid-19/\">new set of guidelines for in-person events</a> taking place in 2020, in the light of COVID-19 challenges. </p>\n\n\n\n<p>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog here</a>, or join them in the #community-events channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a Meetup or WordCamp, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>. </p>\n\n\n\n<h2>BuddyPress 6.0.0 “iovine’s”</h2>\n\n\n\n<p>On May 13th, <a href=\"https://buddypress.org/2020/05/buddypress-6-0-0/\">BuddyPress 6.0.0, known as “iovine’s,” was released</a>. This release includes two new blocks for the WordPress Editor: Members and Groups. It also saw the completion of the BP REST API, adding the six remaining endpoints, and the move or local avatar management to the Members component. Beyond that, 6.0.0 includes more than 80 changes, made possible by 42 contributors. </p>\n\n\n\n<p>Want to download this latest version of BuddyPress? <a href=\"https://buddypress.org/2020/05/buddypress-6-0-0/\">Get it here</a>. You can also help by <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/\">translating BuddyPress into another language</a> or letting the team know of any issues you find in the <a href=\"https://buddypress.org/support/\">support forums</a>.</p>\n\n\n\n<h2>WordCamp Spain Online Concludes Successfully</h2>\n\n\n\n<p>WordPress Meetup organizers in Spain joined hands to organize <a href=\"https://2020.spain.wordcamp.org/\">WordCamp Spain online </a>from May 6 to 9, which proved to be a huge success. The event had more than 5,500 attendees, 60 speakers, and 16 sponsors. Over 200 people from around the world participated in the <a href=\"https://2020.spain.wordcamp.org/2020/05/14/asi-fue-contributor-day/\">Contributor Day</a>. <NAME> <a href=\"https://wordpress.tv/2020/05/09/matias-ventura-matt-mullenweg-matt-y-wordpress/\">hosted an AMA for the participants</a>, facilitated by <NAME>’s on-the-spot Spanish translation. </p>\n\n\n\n<p>If you missed the event, you can watch<a href=\"https://wordpress.tv/event/wordcamp-spain-2020/\"> videos from WordCamp Spain online at WordPress.TV</a>. Want to organize a regional WordCamp? <a href=\"https://make.wordpress.org/community/handbook/virtual-events/\">Learn more about that here</a>!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>WordPress <a href=\"https://ma.tt/2020/05/celebrate-seventeen/\">celebrated its 17th anniversary</a> on May 27, 2020! WordPress lovers all across the world <a href=\"https://twitter.com/hashtag/WP17?src=hashtag_click\">participated in online meetups</a> to celebrate the 17th birthday of their favorite open-source software. </li><li>The WordCamp Asia team has published <a href=\"https://2021.asia.wordcamp.org/2020/05/11/wordcamp-asia-2021-call-for-organisers/\">a call for organizers</a> for the January 2021 event — the call will close on June 8.</li><li>PHP and core version checks are coming into WordPress. This feature will prevent end-users from installing or activating a theme that is incompatible with their current version of PHP or WordPress. The change that has <a href=\"https://core.trac.wordpress.org/changeset/47819\">already been merged to core</a> is slated to land in WordPress 5.5.</li><li>The 2020 WordPress release squads <a href=\"https://make.wordpress.org/core/2020/05/29/2020-wordpress-release-squads/\">have been announced</a>.</li><li>Don’t forget that <a href=\"https://make.wordpress.org/community/handbook/virtual-events/\">WordCamp Europe Online</a> is happening on June 4-6, 2020.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: April 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/05/the-month-in-wordpress-april-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 May 2020 09:31:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8571\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"April continued to be a challenging time for the WordPress community, with many under stay-at-home recommendations. However, it was also an exciting month in which we created new ways to connect with and inspire each other! This month, amazing contributors moved more WordCamps online and shipped new releases for WordPress and Gutenberg. For the latest, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8195:\"\n<p>April continued to be a challenging time for the WordPress community, with many under stay-at-home recommendations. However, it was also an exciting month in which we created new ways to connect with and inspire each other! This month, amazing contributors moved more WordCamps online and shipped new releases for WordPress and Gutenberg. For the latest, read on. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.4.1 released</h2>\n\n\n\n<p>On April 24th, <a href=\"https://make.wordpress.org/core/2020/04/24/wordpress-5-4-1-rc1/\">WordPress 5.4.1 Release Candidate 1</a> (RC1) was released for testing, quickly followed by the official <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">release of WordPress 5.4.1</a> on April 29th. This security release features 17 bug fixes and seven security fixes, so we recommend updating your sites immediately. To download WordPress 5.4.1, visit your Dashboard, click on Updates, then Update Now, or download the latest version directly from WordPress.org. For more information, visit <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">this post</a>, review the <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes on Trac</a>, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-1/\">version 5.4.1 HelpHub documentation page</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg 7.9 and 8.0 released</h2>\n\n\n\n<p>It was another exciting month for Gutenberg, with the release of <a href=\"https://make.wordpress.org/core/2020/04/15/whats-new-in-gutenberg-15-april/\">7.9</a> and <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">8.0</a>! Version 7.9 brought new block design tools, three new patterns, and improved block markup. Gutenberg 8.0 continued to refine the new block patterns feature, with additional options for inline formatting, and extending the functionality of the Code Editor. In addition to these new features, both releases included new enhancements and APIs, along with a number of bug fixes, performance improvements, some experiments, and more! You can read all the details about the latest Gutenberg releases in the announcement posts for <a href=\"https://make.wordpress.org/core/2020/04/15/whats-new-in-gutenberg-15-april/\">7.9</a> and <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">8.0</a>. </p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>BuddyPress 6.0.0</h2>\n\n\n\n<p><a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-beta2/\">BuddyPress 6.0.0-beta2</a> was released for testing in mid-April, leading to the <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">BuddyPress 6.0.0 Release Candidate</a>, announced on April 29. This is an important step before the final release of BuddyPress 6.0.0, which is slated for Thursday, May 14. Changes and new features in this release include moving the profile photo and user cover image under the BP Members component, and a new BP Rest API. Additionally, this release will introduce the first round of BuddyPress Blocks! Last, but not least, BuddyPress 6.0.0 will require at least PHP 5.6 and WordPress 4.8. </p>\n\n\n\n<p>Want to get involved? <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">Test the 6.0.0-RC here</a>! You can also help by <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/\">translating BuddyPress into another language</a>, or let the team know of any issues you find, either in <a href=\"https://buddypress.org/support\">the support forums</a> and/or in their <a href=\"https://buddypress.trac.wordpress.org/\">development tracker</a>. </p>\n\n\n\n<h2>WordCamp US goes online, apply to speak!</h2>\n\n\n\n<p>WordCamp US will <a href=\"https://2020.us.wordcamp.org/2020/04/30/wordcamp-us-will-be-virtually-awesome/\">take place online due to the COVID-19 pandemic</a>. The event still runs from October 27-29, 2020, and will be free to anyone who wishes to attend. The team plans to offer what WCUS has historically brought to the community in person: sessions and workshops, Contributor Day, a hallway track, and of course, State of the Word. </p>\n\n\n\n<p>Interested in speaking at WCUS? The <a href=\"https://2020.us.wordcamp.org/2020/03/16/call-for-speakers-is-now-open/\">Call for Speakers</a> is still open! You can apply to speak on the <a href=\"https://2020.wcus-speakers.org/\">speaker application site</a> until May 31, 2020 at 11:59 pm CDT (UTC-5). </p>\n\n\n\n<p>Additionally, the <a href=\"https://2020.us.wordcamp.org/2020/03/23/call-for-cities-for-wcus-2021-2022/\">Call for Cities is also open</a>. If your community is interested in hosting WordCamp US in 2021 & 2022, please <a href=\"https://wordcampcentral.survey.fm/wcus-2021-2022\">fill out this application</a>. </p>\n\n\n\n<p>For the latest information about WordCamp US, sign up for updates on the <a href=\"https://2020.us.wordcamp.org/\">website</a>, or follow <a href=\"https://www.facebook.com/WordCampUSA/\">Facebook</a>, <a href=\"https://twitter.com/WordCampUS\">Twitter</a>, or <a href=\"https://www.instagram.com/wordcampus/?hl=en\">Instagram</a>. </p>\n\n\n\n<h2>WordCamp Europe 2020 goes virtual </h2>\n\n\n\n<p>Last month, WordCamp Europe decided to postpone its Porto event to 2021. This April, the WCEU organizing team announced that the <a href=\"https://2020.europe.wordcamp.org/2020/04/06/wordcamp-europe-2020-is-moving-online/\">2020 WordCamp will be online</a>! WordCamp Europe 2020 Online will take place from June 4-6, 2020, and tickets will be free. There will be a <a href=\"https://make.wordpress.org/updates/2020/04/15/wordcamp-europe-2020-contributor-day-update/\">virtual Contributor Day</a> on June 4, and then two half days of live-streamed talks and workshops. To participate, get your free ticket <a href=\"https://2020.europe.wordcamp.org/tickets/\">here</a>. </p>\n\n\n\n<p>To get the latest news for WordCamp Europe 2020 Online, follow on <a href=\"https://www.facebook.com/WCEurope/\">Facebook</a>, <a href=\"https://twitter.com/wceurope?lang=en\">Twitter</a>, <a href=\"https://www.linkedin.com/company/wordcampeurope/\">LinkedIn</a>, or on <a href=\"https://www.instagram.com/wceurope/?hl=en\">Instagram</a>. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2020/04/08/wordpress-5-5-call-for-tickets/\">The WordPress 5.5 release cycle has officially been kicked off with a Call for Tickets</a>.</li><li><a href=\"https://make.wordpress.org/themes/2020/04/03/proposal-github-theme-review/\">Read the proposal for a new GitHub Theme review process.</a>.</li><li><a href=\"https://wordpress.tv/event/wpblocktalk-april-2020/\">Did you miss WPBlockTalk, or want to watch that really interesting session again? All talks are available on WordPress.tv!</a></li><li><a href=\"https://make.wordpress.org/core/2020/04/01/feature-plugin-proposal-wp-consent-api/\">The Core team has introduced a proposal for a new Consent API as a feature plugin</a>.</li><li><a href=\"https://make.wordpress.org/updates/2020/04/30/quarterly-updates-q1-2020/\">All WordPress contribution teams have reported on their recent work in the first quarterly update of 2020</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 01 Aug 2020 09:19:23 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 29 Jul 2020 06:22:38 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1132, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1596316765', 'no'),
(1133, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1596273565', 'no'),
(1134, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1596316768', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1135, '_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Big Orange Heart Opens 2020 Remote Work Wellbeing and Mental Health Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/big-orange-heart-opens-2020-remote-work-wellbeing-and-mental-health-survey?utm_source=rss&utm_medium=rss&utm_campaign=big-orange-heart-opens-2020-remote-work-wellbeing-and-mental-health-survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3039:\"<p>A Big Orange Heart, formerly known as WP&UP, has opened its 2020 <a href=\"https://www.bigorangeheart.org/survey-2020.html\">Remote Work Wellbeing and Mental Health Survey</a>. The charity organization focuses on supporting remote working communities with education and resources for mental and physical health. It is also home to a community of more than 4,700 members who support each other in growing their businesses and building new skills.</p>\n\n\n\n<p>The survey asks fairly broad questions about your mental health and the mental health support in your work environment. It takes approximately three minutes and is completely anonymous.</p>\n\n\n\n<img />\n\n\n\n<p>Results from the 2019 survey showed that the majority of people in the WordPress community work alone and a significant percentage are dealing with anxiety and suicidal thoughts:</p>\n\n\n\n<ul><li>8% of the WordPress community have had suicidal thoughts in the last 12 months</li><li>47% stated their workplace makes them feel anxious</li><li>56% of the WordPress community works alone</li></ul>\n\n\n\n<p>Big Orange Heart founder <NAME> believes these results are helping his team save lives. The charity is actively creating and maintaining services and a peer support network that encourage people to stay connected to their community, in order to reduce the isolation they experience. </p>\n\n\n\n<p>“Our 2019 results identified that almost 8% of all respondents had been dealing with sustained periods of feeling suicidal over the previous 12-months, twice the national US average,” Maby said. “This finding led to more training being provided in suicide prevention and support for our team, which enabled us to support multiple individuals that have contacted us requiring suicidal support, all of whom are still with us today.” </p>\n\n\n\n<p>There are more people working alone remotely now than ever before due to the pandemic. Spend a short time on any social media network and you will likely hear several people say they are not doing okay. This survey helps the team at Big Orange Heart understand the extent of mental health related issues within the remote working community and informs various initiatives the organization plans throughout the year. </p>\n\n\n\n<p>“As a charity, like so many others at this time, we have been heavily impacted by the COVID-19 global crisis,” Maby said. “Now more than ever we need to ensure our limited resources are used in the most effective way possible. Your anonymous data will allow us to best understand how we can help improve the lives of others within our community.”</p>\n\n\n\n<p>The <a href=\"https://www.bigorangeheart.org/survey-2020.html\">Remote Work Wellbeing and Mental Health Survey</a> runs for one month and will close on August 31st. Take the survey and check out Big Orange Heart’s <a href=\"https://www.bigorangeheart.org/blog/\">blog</a> for several helpful posts on how to maintain your mental health while working during this crisis.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Aug 2020 03:04:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress 5.6 Wish List: Homepage Post Type Selection and Block Management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordpress-5-6-wish-list-homepage-post-type-selection-and-block-management?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-wish-list-homepage-post-type-selection-and-block-management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4584:\"<p class=\"has-drop-cap\">With the WordPress 5.5 development cycle coming to a close, it is time to begin mapping out what features should land in WordPress 5.6 later this year. Earlier today, <NAME> <a href=\"https://make.wordpress.org/core/2020/07/31/wordpress-5-6-whats-on-your-wishlist/\">asked the community to chime in</a> with its wish list on the Make Core blog.</p>\n\n\n\n<p>As usual, I have a few thoughts. I tend to lean toward addressing some of the long-standing developer-friendly tickets because these features allow plugin authors to build better products for end-users in the long run.</p>\n\n\n\n<p>A complete <a href=\"https://wptavern.com/open-call-for-wordpress-5-5-tickets-whats-on-your-wish-list\">custom post status API</a> tops my usual list of most-wanted features. I have already opined over this for my WordPress 5.5 wish list. It may be time for more realistic dreams. Maybe we will revisit it another year or two down the road. However, if any core leads want to give the feature a green light, I will gladly be the evangelist and get others excited about it.</p>\n\n\n\n<h2>Homepage Post Type Selection</h2>\n\n\n\n<p class=\"has-drop-cap\">For this release, I want to call out one of my other years-long wishes. WordPress should allow end-users to select any custom post type for display on the homepage.</p>\n\n\n\n<p>Imagine a WordPress where users can head to their Reading Settings screen in the admin and select something other than their normal posts list or a page to appear on the homepage. <em>Have a forum plugin installed?</em> Maybe users want to list their latest topics or forums list. <em>Running an eCommerce plugin?</em> Users should be able to display their products. <em>Setting up a web design portfolio?</em> Display the most recent projects by simply selecting this choice in the admin.</p>\n\n\n\n<p>This is an area where the software has always catered to bloggers and has avoided throwing a little love to other types of sites.</p>\n\n\n\n<p>Currently, plugin authors must perform some crazy hacks to make this work. The WooCommerce <a href=\"https://github.com/woocommerce/woocommerce/blob/master/includes/class-wc-query.php\">custom query class</a> is enough to make any developer give up. Not all of the code in that file is for the front page, but it has a frustrating amount to make something work that should be far simpler for plugin authors.</p>\n\n\n\n<p>The reason this needs to be in core WordPress is so that each and every plugin does not need to roll a custom solution. Plugins should be able to flag their post types during registration as “allowed on homepage” — not all post types are meant for this type of display. Then, WordPress should handle all the dirty work behind the scenes if a particular post type is selected by the end-user. The addition to the API for plugin authors would be simple, and plugins that are already hacking this feature together can drop a lot of unnecessary code.</p>\n\n\n\n<p>There is an existing <a href=\"https://core.trac.wordpress.org/ticket/19958\">8-year-old ticket</a> for the feature. It has a few old and likely outdated patches and has not seen any real activity in the past four years. Nevertheless, it would be nice to see this feature in core WordPress and finally close the ticket.</p>\n\n\n\n<h2>Block System Wish List</h2>\n\n\n\n<p class=\"has-drop-cap\">Like most releases, the block system will be getting the most attention. The things that will land in WordPress 5.6 are mostly already set in stone, assuming a particular feature does not fall behind in development like widgets and nav menus did for the 5.5 release.</p>\n\n\n\n<p>On the whole, I like the general direction the block system has been headed. If anything, I have been impatient with some things, such as awaiting the integrated <a href=\"https://wptavern.com/version-1-prototype-of-the-wordpress-admin-block-directory-announced\">block management screen</a> in the admin. For other features, such as full-site editing, I am still wondering whether they are realistic goals for the WordPress 5.6 release.</p>\n\n\n\n<p>I would take a release and focus on tightening up and polishing the existing system. Take stock of the pain points — and there are many — that users are mentioning. Spend time working on smoothing out the editing experience before tacking on new features.</p>\n\n\n\n<p>That is not going to happen. New features are what get developers up in the morning and excited about the project. Therefore, my fallback request is to bring on the block management screen.</p>\n\n\n\n<p>What’s on your wish list?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 Jul 2020 21:15:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: WordCamp US 2020 Canceled Due to Pandemic Stress and Online Event Fatigue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7146:\"<p><a href=\"https://2020.us.wordcamp.org/\">WordCamp US 2020</a>, which was originally scheduled for October 27-29, was officially canceled today. In April, organizers <a href=\"https://wptavern.com/wordcamp-us-2020-goes-online-cancels-in-person-event\">transitioned to planning for it to be held as a virtual event</a>, but the tenuous situation with the pandemic in the United States and the stress on the event’s large crew of volunteers has precipitated a full cancellation. The decision was announced on the WCUS website:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It is with heavy hearts that we have made the decision to cancel this year’s WordCamp US event. In light of the continued pandemic, online event fatigue for attendees, organizers, and volunteers, and the desire for WordCamp experiences to be <em>traditional</em> WordCamp experiences, we have made the difficult decision to stop this year’s planning, and cancel WordCamp US 2020.</p></blockquote>\n\n\n\n<p>After the pandemic started forcing WordCamps and meetups to go online, many community team members seemed to put on a brave face about adapting WordCamps to virtual events, but WCUS organizers are publicly recognizing the reality of online event fatigue. </p>\n\n\n\n<p><NAME>, one of the lead organizers, said her team discussed how recent online WordCamps have struggled to meet traditional goals of connecting people and encouraging contribution. In light of attendees’ increasing online conference fatigue, WCUS organizers considered the cost of volunteers’ time.</p>\n\n\n\n<p>“The Lead Organizers also took into consideration how many volunteers we have on this team, and how much time we were asking them to invest in an event that didn’t seem to be able to offer the same level of joy or satisfaction that an in-person WordCamp would,<strong>“</strong> Jin said.</p>\n\n\n\n<p>“As you might imagine, this was a very upsetting realization, but the whole team spent time discussing together, and we believe that we made the right decision.” </p>\n\n\n\n<p>The U.S. passed more than 150,000 Coronavirus deaths this week and outbreaks are worsening right as schools are supposed to be opening. As COVID-19 cases continue to rise sharply in many states, renewed lockdowns and political tensions have put people on edge. Every day brings a fresh injection of bad news and the country is deeply mired in division ahead of one of the most contentious presidential elections in history. Late October is not an ideal time to try to host WordPress’ flagship WordCamp online. </p>\n\n\n\n<p>One WCUS organizer, who requested to remain anonymous, said he was angry that he invested more than 100 hours across various organizing teams and wished it had come sooner. He described how multiple personal stressors were impacting daily life and draining the team’s energy.</p>\n\n\n\n<p>“I feel everyone is tired and worn out,” he said. “They are stressed – we are all losing friends [to COVID-19]. Everyone is fighting about politics and the work suffered.” </p>\n\n\n\n<p>He reported that many organizers were not doing their parts and all tasks were delayed. Although he experienced a high level of frustration with how it was handled, he was relieved when the decision was announced. Many of the event’s 50 organizers are also involved in coordinating local meetups and leading other WordCamps, and their energies are spread thin.</p>\n\n\n\n<p>“This will pave the way for something new and better,” he said. “We have to evolve as a community and one more zoom meeting is not it.”</p>\n\n\n\n<p>Not all organizers considered the time invested as a loss. <NAME>, who has also helped organize WordCamp Grand Rapids in the past, said the lead WCUS organizers consulted with the entire team through a multi-step process and gave opportunities for their opinions to be heard.</p>\n\n\n\n<p>“It’s easy to imagine that as an organizer I’d be disappointed by this decision, but that couldn’t be further from the truth,” <NAME> said. “None of this is what I’d hoped for, but the time I’ve invested in WCUS has helped me grow relationships and learn new skills that ultimately help me further my career goals and make me a better volunteer in the future. </p>\n\n\n\n<p>“COVID-19 has been unpredictable and made everything about life harder. By making this difficult decision now, we all get back a little of our time to invest in other areas instead of using up more energy and risking volunteer burnout for an event that ran the risk of getting lost amid other online events.” </p>\n\n\n\n<h2>State of the Word May be Hosted as a Separate, Focused Event</h2>\n\n\n\n<p>WCUS is encouraging speakers to apply again next year. Although all regular sessions on the program were canceled, some organizers will be shifting their focus to hosting a 24-hour contributor day along with producing some workshops and youth programming content.</p>\n\n\n\n<p>Matt Mullenweg’s annual State of the Word address is also expected to happen but will likely take a different format this year.</p>\n\n\n\n<p>“Discussions about the State of the Word are still active; our understanding is that it will still happen, but possibly not in association with any other event,” Jin said. </p>\n\n\n\n<p>“I’m really excited about the potential for lots of smaller, focused, and educational ways for the community to connect online this year,” <NAME> said. “For the State of the Word I don’t have a plan yet, I think there’s less value to us watching the same thing at the same time if we can’t hang out afterward, but it still would be fun to celebrate the great progress we’ve been making with some sort of video. Stay tuned November-ish.”</p>\n\n\n\n<p>Cancellation costs for WCUS are still being finalized. Prior to making it a virtual event, the original budget was close to $1 million, with the largest costs being the venue and catering. Jin said the team will publish a full accounting of expenses on the Community Team blog or the event site after the last round of discussions with vendors are complete.</p>\n\n\n\n<p>It’s too soon to know if the WordCamp will be an in-person event in 2021. When asked if they will be hosting in St. Louis again, Jin said that any decisions regarding WCUS 2021 are paused for now.</p>\n\n\n\n<p>“The WCUS team did invest a lot of time and energy into this event, but in a year when it is incredibly hard to plan anything, we did the best we could and adapted quickly,” she said. “I’m sad, of course, as I miss seeing everyone at WordCamps, but even if it was time and energy invested in something that didn’t happen, I spent time doing it with brilliant people who care just as much about WordPress as I do. It’s been an immensely challenging year, and I’m humbled to have been a part of this team, which has consistently supported each other and grown together in the face of adversity.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 Jul 2020 01:04:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Post a Lot of Code? Try the Code Syntax Block Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/post-a-lot-of-code-try-the-code-syntax-block-plugin-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=post-a-lot-of-code-try-the-code-syntax-block-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2934:\"<p class=\"has-drop-cap\">I am always on the lookout for interesting syntax-highlighting plugins, particularly for those occasions when I write tutorials or other articles that lean heavily on code. Far too many plugins use shortcodes, custom blocks, or other odd solutions. However, there is one option that I intentionally overlooked when it was released over a year ago: <a href=\"https://wordpress.org/plugins/code-syntax-block/\">Code Syntax Block</a> by <NAME>.</p>\n\n\n\n<p>Based on the name, I assumed it was yet another standalone block. However, I have since given it another look and realized that this was note the case. It integrates directly with the core WordPress block. There are times when a new block is necessary, but this is not one of those times. Sometimes it is better to extend the existing blocks in core.</p>\n\n\n\n<p>Code Syntax Block uses the <a href=\"https://prismjs.com/\">Prism JavaScript library</a> to add syntax highlighting on the front end of the site. The plugin is designed well. It loads its scripts and styles only when the code block is in use.</p>\n\n\n\n<img />Front end PHP code example.\n\n\n\n<p>The plugin does not load Prism in the editor, so the code output will use the default editor or theme styling. This may not appeal to those who want a one-to-one match between the back and front end. I am comfortable with the non-highlighted version in the admin while having the <em>pretty</em> output on the front end. However, it would be nice to see an option or filter to enable highlighting in the editor.</p>\n\n\n\n<p>Out of the box, the plugin uses the <a href=\"https://github.com/AGMStudio/prism-theme-one-dark\">One Dark</a> theme, which was created for the Atom editor and ported to Prism. Developers can overwrite the theme with either a custom <code>assets/prism/prism.css</code> file in their theme or by filtering the path or URL that gets loaded. The Prism project has a <a href=\"https://github.com/PrismJS/prism-themes\">variety of themes</a> available that are plug-and-play. Other themes exist outside of the official list too.</p>\n\n\n\n<p>On the admin side, the plugin creates a new “Settings” tab for the code block and adds a few options that users can choose from:</p>\n\n\n\n<ul><li>Language</li><li>Show line numbers</li><li>Title for code block</li></ul>\n\n\n\n<img />Editor view of Code Syntax Highlighter\n\n\n\n<p>By default, the plugin does not support the full list of over 200 languages. Instead, it lists just over 40 of the most popular. The list is filterable, so anyone can add or remove languages with a few lines of code. There is also a filter hook for setting the default languages, which would be particularly useful for those who routinely post code snippets in the same coding language.</p>\n\n\n\n<p>After a few days of testing, I can safely say that Code Syntax Block is being added to my WordPress toolbox. I wish I had only given it a shot much sooner.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Jul 2020 17:30:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Bing Launches URL Submissions Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102450\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://wptavern.com/bing-launches-url-submissions-plugin-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=bing-launches-url-submissions-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5150:\"<p>Bing has <a href=\"https://blogs.bing.com/webmaster/july-2020/Get-your-WordPress-content-indexed-immediately-using-Bing-Webmaster-Tools-plugin\">launched</a> its first official <a href=\"https://wordpress.org/plugins/bing-webmaster-tools/\">plugin</a> for WordPress aimed at helping site owners get their content indexed immediately. Instead of waiting for a bingbot to crawl the site, the plugin notifies Bing of any new or updated content automatically using its <a href=\"https://www.bing.com/webmasters/url-submission-api\">Submit URL API</a>.</p>\n\n\n\n<p>“Bing believes that the future for search engines is less about crawling to discover content and more about sharing new and updated content across the web, a fundamental shift in the way that search engines handle web sites,” Bing Product Manager <NAME> said. “Instead of monitoring RSS, sitemaps and HTML pages to check for new pages, discover content changes and/or new outbound links, websites will notify search engines directly about relevant URLs changing on their website.”</p>\n\n\n\n<p>Search engines can take anywhere from several hours to a few weeks to <a href=\"https://support.google.com/webmasters/answer/6065812?hl=en\">crawl a website</a>. Bing’s API allows site owners to get content indexed immediately, while eventually reducing the crawling frequency for sites where there are no changes. Users will need to <a href=\"https://docs.microsoft.com/en-us/bingwebmaster/getting-access#using-api-key\">generate an API key</a> in order to configure the plugin for access to the Bing Webmaster Tools API.</p>\n\n\n\n<img />\n\n\n\n<p><br />The new plugin also introduces a few other options for managing URL submissions:</p>\n\n\n\n<ul><li>Toggle the automatic submission feature</li><li>Manually submit a URL to Bing Index</li><li>View list of recent URL submissions from the plugin</li><li>Retry any failed submissions from the recent submissions list</li><li>Download recent URL submissions for analysis</li></ul>\n\n\n\n<p>Canel said the Bing Webmaster Team recommends using the new URL Submissions plugin as a complement to existing plugins that connect sites to Bing, such as <a href=\"https://jetpack.com/support/site-verification-tools/\">Jetpack’s site verification tool</a>, and <a href=\"https://wordpress.org/plugins/search/SEO/\">SEO plugins</a> that add XML sitemaps. Bing’s plugin is different in that it focuses on enabling Bing to discover immediate changes on WordPress sites.</p>\n\n\n\n<p>“Sitemaps are a great complementary solution to our plugin to discover all URLs on WordPress sites, but we cannot monitor each sitemap all the time,” Canel said. “Only a small percentage of WordPress sites are publishing content every day. Most are nearly static and this is preferable to be notified instead of pulling content every so often for them. Same for sites publishing often, it helps to get the content quickly indexed instead of having to wait a long time.”</p>\n\n\n\n<p>Bing doesn’t usually get as much airtime as Google and its supporting tools, since Google continues to dominate the search market. Bing’s market share is currently <a href=\"https://gs.statcounter.com/search-engine-market-share/\">hovering at 2.75%</a> of searches globally on all platforms as of June 2020. </p>\n\n\n\n<div id=\"all-search_engine-ww-monthly-201906-202006\" width=\"600\" height=\"400\"></div><!-- You may change the values of width and height above to resize the chart --><p>Source: <a href=\"https://gs.statcounter.com/search-engine-market-share\">StatCounter Global Stats – Search Engine Market Share</a></p>\n\n\n\n<p>The search engine has seen slow but steady growth in certain regions and platforms. Bing performs higher globally across desktop searches (6.08%). In the United Sates, Bing’s market share is sitting at 6.99% and is even higher on US desktop searches (13.35%):</p>\n\n\n\n<table><tbody><tr><th>Google</th><td>87.71%</td></tr><tr><th>bing</th><td>6.99%</td></tr><tr><th>Yahoo!</th><td>3.44%</td></tr></tbody></table><a href=\"https://gs.statcounter.com/search-engine-market-share/\">Search Engine Market Share in US – June 2020</a>\n\n\n\n<p>Bing may not boast a big slice of the search market pie, but the search engine served close to <a href=\"https://www.statista.com/statistics/752270/range-of-bingcom-based-on-unique-visitors/\">936.5 million</a> unique global visitors during the month of May 2020. More than half of Bing users have a bachelor’s or post graduate degree and <a href=\"https://www.statista.com/statistics/742834/usa-bing-audience-share-by-income/\">38% of Bing users</a> have an income of $100,000 USD or higher. Depending on the demographic you are targeting, being found by Bing users may be one small factor in your site’s overall success. </p>\n\n\n\n<p>The search engine recently updated its <a href=\"https://www.bing.com/webmaster/help/webmaster-guidelines-30fba23a\">webmaster guidelines</a> for the first time since 2012. If you’re looking to optimize for Bing’s audience, this document contains a detailed break down of how the search engine ranks content. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2020 23:49:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Upcoming in WordPress 5.5: Features and Changes Theme Authors Should Know About\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102535\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:221:\"https://wptavern.com/upcoming-in-wordpress-5-5-features-and-changes-theme-authors-should-know-about?utm_source=rss&utm_medium=rss&utm_campaign=upcoming-in-wordpress-5-5-features-and-changes-theme-authors-should-know-about\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8147:\"<p class=\"has-drop-cap\">August 11, the target release date for WordPress 5.5, is just shy of two weeks away. For developers who have not been completely on top of the upcoming release, now is a good time to start looking at how changes might affect their projects. Theme authors in particular can expect several new features and some breaking changes.</p>\n\n\n\n<p>For the most part, WordPress 5.5 will introduce new features that theme developers can begin to add to their themes. However, the two biggest changes that could negatively impact their themes will be automatic updates and direct HTML changes to the custom logo output.</p>\n\n\n\n<p>Outside of the new features and changes, theme authors should catch up on our <a href=\"https://wptavern.com/tag/gutenberg\">coverage of the Gutenberg plugin</a> and test against its updates that are being merged into core WordPress.</p>\n\n\n\n<h2>Auto Updates</h2>\n\n\n\n<p class=\"has-drop-cap\">WordPress 5.5 will finally introduce <a href=\"https://wptavern.com/automatic-theme-and-plugin-updates-slated-for-wordpress-5-5\">automatic updates for plugins and themes.</a> It is a long-awaited feature and should be a good thing in terms of keeping end-users updated and running what is usually the most secure version of their extensions. However, the big downside to automatic updates is that most themes and plugins will not have the same level of quality control as core WordPress receives. Even the best development companies might have only a few people looking over the code.</p>\n\n\n\n<p>On the flip-side, the automatic updates feature means that theme authors can push fixes out to end-users much more quickly.</p>\n\n\n\n<p>The big thing is that theme developers need to be aware that users will be enabling automatic updates. For some, this might not mean changing anything with their release cycles. For others, it might mean tacking on some extra time to ensure that extra quality control is in place. The success of automatic updates lies directly on the shoulders of the plugin and theme authors. It is a huge responsibility that should not be taken lightly. WordPress is placing a lot of trust in its development community to get this right.</p>\n\n\n\n<h2>HTML Change for Custom Logos</h2>\n\n\n\n<p class=\"has-drop-cap\">As part of an <a href=\"https://core.trac.wordpress.org/ticket/37011\">accessibility-related ticket</a> for WordPress 5.5, the core <code>get_custom_logo()</code> and <code>the_custom_logo()</code> functions will no longer <a href=\"https://make.wordpress.org/core/2020/07/28/themes-changes-related-to-get_custom_logo-in-wordpress-5-5/\">output a link around the logo image</a> when viewing the site homepage. This change was made because the link itself points to the homepage by default and is unnecessary in that context.</p>\n\n\n\n<p>Right now, there are 183 themes in the official theme directory that target the link in their CSS. This does not necessarily mean that all 183 themes will be broken upon update. However, it likely means that some of them will need a tweak or two.</p>\n\n\n\n<p>Theme authors are encouraged to target the <code>.custom-logo-link</code> class instead of any particular HTML element. The new change will add a <code><span></code> element rather than an <code><a></code> element on the homepage. Both will use the same class.</p>\n\n\n\n<h2>Block Patterns Have Arrived</h2>\n\n\n\n<p class=\"has-drop-cap\">It is no secret that I am <a href=\"https://wptavern.com/block-patterns-will-change-everything\">downright giddy</a> about the prospect of theme designers being loosed upon the world, allowing their talents to shine via block patterns. Patterns have been one of the missing features since the initial launch of the Gutenberg project. For theme authors, they represent that missing link between designing unique “templates” or “sections” and providing end-users a means to add them to their sites.</p>\n\n\n\n<p>Block patterns are essentially groups of pre-configured blocks that users can insert into their posts or pages at the click of a button. The beauty of the system is that theme authors can design whatever patterns their hearts desire and make them easily available to their users. No need for complicated theme settings. No lengthy tutorials explaining how to recreate the demo. Design something in the block editor. Register it as a pattern. Let users insert it into a post and rejoice.</p>\n\n\n\n<p>This is an opportunity that theme authors have never had before. It is an opportunity to create beautiful designs without having to worry about overcomplicating it for the average user. It is a pivotal moment in WordPress theme design history. Theme authors have the chance to push the system and see what WordPress and its block editor are truly capable of.</p>\n\n\n\n<p><em>Building a restaurant theme?</em> Provide users with multiple food menu patterns. <em>Creating something for novelists or other book authors?</em> Give users some layout options for showcasing their books.</p>\n\n\n\n<p>The <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">block patterns API</a> removes many prior limits to what theme authors could realistically do. Now, it’s time for those theme authors to take charge.</p>\n\n\n\n<h2>Line Heights and Custom Units</h2>\n\n\n\n<p class=\"has-drop-cap\">The block editor has two new tools for end-users to take advantage of: <a href=\"https://make.wordpress.org/core/2020/07/27/new-block-tools-on-wordpress-5-5/\">custom line-heights and custom units</a>. Theme authors can opt into allowing users to edit the line-height of paragraphs and headings with the <code>custom-line-heights</code> theme support flag. They can also allow users to switch between various units, such as when defining the Cover block’s height, with the <code>custom-units</code> flag. In addition to pixels, themes can define which units are supported.</p>\n\n\n\n<p>Allowing users to customize the line-height value for text can be tricky business. There are some situations where it is warranted. However, for theme authors who prefer to maintain a strict vertical rhythm, this could lead to disaster. This will likely come down to a personal choice for developers based on what type of theme they are building.</p>\n\n\n\n<h2>Accessible Widgets Navigation</h2>\n\n\n\n<p class=\"has-drop-cap\">Starting with WordPress 5.5, theme authors will be able to opt into outputting more <a href=\"https://make.wordpress.org/core/2020/07/09/accessibility-improvements-to-widgets-outputting-lists-of-links-in-5-5/\">accessible widgets</a>. By default, widgets that display unordered lists do so without any context. This can make it difficult for those using assistive technologies to navigate the site.</p>\n\n\n\n<p>Theme authors can now add <code>navigation-widgets</code> to the HTML5 theme supports array to add the new markup. WordPress will then wrap all core widgets with a <code><nav></code> element and an <code>aria-label</code> based on the widget title.</p>\n\n\n\n<p>This will not affect widgets from third-party plugins. Plugin authors should reevaluate their widgets to determine if they want to support this feature.</p>\n\n\n\n<h2>Template Functions Updates</h2>\n\n\n\n<p class=\"has-drop-cap\">WordPress is tacking on some nice features for its templating functions in the upcoming release. The first major change is that theme authors can pass data to template files. We have <a href=\"https://wptavern.com/theme-authors-can-pass-data-to-template-files-in-wordpress-5-5\">previously covered</a> this story on the Tavern. This feature, while years late, should still be useful for more complex theming setups and allow developers to bypass odd workarounds or in-house solutions.</p>\n\n\n\n<p>Template-loading functions, such as <code>get_template_part()</code> and others, will also <a href=\"https://core.trac.wordpress.org/ticket/40969\">return a value</a> in WordPress 5.5. If the template is not found, the function will return a <code>false</code> value. Otherwise, it will return <code>void</code>. This will be helpful in situations where theme authors need to run a conditional to check if a template exists.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2020 22:05:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Gutenberg 8.6 Adds Cover Block Video Positioning and Updates Block Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102512\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/gutenberg-8-6-adds-cover-block-video-positioning-and-updates-block-patterns?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-8-6-adds-cover-block-video-positioning-and-updates-block-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4671:\"<p class=\"has-drop-cap\">Gutenberg 8.6 <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">landed quietly last week</a>. Much of the focus right now is ironing out the remaining bugs for WordPress 5.5 during its beta cycle. However, that does not mean the Gutenberg project has come to a complete halt in terms of new features. The team is marching forward with extra goodies for those who use the plugin.</p>\n\n\n\n<p>The latest update of the plugin did not cover as much ground as normal, but it does include an enhancement for the Cover block when using a video background and several updates to block patterns.</p>\n\n\n\n<p>The primary focus for version 8.6 was squashing bugs. The development team addressed over three dozen of them while correcting a handful of performance issues. While new features and enhancements from 8.6 onward are not expected in the upcoming WordPress 5.5, most bug fixes should be included.</p>\n\n\n\n<h2>Focal Point Selector for Video Covers</h2>\n\n\n\n<img />Selecting a focal point for a video background.\n\n\n\n<p class=\"has-drop-cap\">The Cover block has long allowed users to pick a focal point for background images. However, this feature was missing when users added a background video to the block. As of version 8.6, that is no longer the case. Both image and video backgrounds should work in much the same way.</p>\n\n\n\n<p>Gutenberg now has a new “<a href=\"https://github.com/WordPress/gutenberg/pull/22531\">Focal point picker</a>” option located under the “Media settings” tab when adding a video background. Users can select the focal point by dragging the circle icon in the video box or hardcode left and top percentage values in the input fields below it.</p>\n\n\n\n<p>This is not a particularly exciting development for most Gutenberg users. Self-hosting video is not cheap and remains unused for most. However, for those who do use video backgrounds, it is one of those nice-to-have features that is there when needed.</p>\n\n\n\n<h2>Updated Block Patterns</h2>\n\n\n\n<img />Inserting the updated quote block pattern.\n\n\n\n<p class=\"has-drop-cap\">The Gutenberg team updated several of the existing block patterns. For the most part, the pattern updates were minor cosmetic changes, tweaks that improve the overall design. The button-related patterns received simple changes, such as new <a href=\"https://github.com/WordPress/gutenberg/pull/23848\">text labels</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23849\">colors</a>. The developers also changed the colors and text of the large header patterns.</p>\n\n\n\n<p>The team moved the header above the columns in the <a href=\"https://github.com/WordPress/gutenberg/pull/23853\">two columns text pattern</a> and changed the text to make the columns appear equal height by default. It is a poor use of textual columns, which would ideally be handled with CSS instead so that it works appropriately across screen sizes. Perhaps it would be better to have a “Text Columns” block in the long run.</p>\n\n\n\n<p>The nicest block pattern update was for the <a href=\"https://github.com/WordPress/gutenberg/pull/23881\">quote pattern</a>. It now has an image at the top and a separator at the bottom. It is akin to a single testimonial, which is more of a <em>pattern</em> than a basic quote.</p>\n\n\n\n<p>Theme authors can also <a href=\"https://github.com/WordPress/gutenberg/pull/24042\">remove support</a> for the core block patterns with a single line of code: <code>remove_theme_support( \'core-block-patterns\' )</code>. This does not drop support for patterns altogether. For example, patterns added by plugins or the theme will still appear in the inserter.</p>\n\n\n\n<h2>Site Icon Used in Fullscreen Mode</h2>\n\n\n\n<img />Site icon appears in top left in fullscreen mode.\n\n\n\n<p class=\"has-drop-cap\">When writing in fullscreen mode, the “back to posts” link has utilized the WordPress logo in the past. In version 8.6, the user’s custom <a href=\"https://github.com/WordPress/gutenberg/pull/22952\">site icon will take its place</a>. However, this will only happen if the user has uploaded an icon via the customizer.</p>\n\n\n\n<p>I am unsure how I feel about this change. In practice, it almost feels like clicking the icon should take me to the front end of the site instead of the post management screen. At least with the WordPress icon, it felt like it was pointing toward an admin-side screen instead. For my workflow, I would rather see this link/icon replaced with a button that toggles between fullscreen and normal mode, popping the admin menu back into place rather than departing the editing screen altogether.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2020 20:59:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: WordPress 5.5 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8732\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2020/07/wordpress-5-5-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2968:\"<p>The first release candidate for WordPress 5.5 is now available!</p>\n\n\n\n<p>This is an important milestone in the community’s progress toward the final release of WordPress 5.5. </p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.5 is slated for release on <strong>August 11, 2020</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.5 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.5 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.5?</h2>\n\n\n\n<p>WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.5 and update the <em>Tested up to</em> version in the readme file to 5.5. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so those can be figured out before the final release.</p>\n\n\n\n<p>The WordPress 5.5 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.5 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">fill one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2020 19:08:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: WordPress to Stick with Online-Only Meetups and WordCamps for Remainder of 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"https://wptavern.com/wordpress-to-stick-with-online-only-meetups-and-wordcamps-for-remainder-of-2020?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-to-stick-with-online-only-meetups-and-wordcamps-for-remainder-of-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6256:\"<img />photo credit: <a href=\"https://stocksnap.io/photo/macbook-computer-JPZDGEMDH3\">Burst</a>\n\n\n\n<p>The WordPress Community Team has officially updated its guidelines for WordCamps to be online-only events for the remainder of 2020. The six WordCamps on the <a href=\"https://central.wordcamp.org/schedule/\">schedule</a> through the end of the year were already planning on using an online format but the guidelines also include local <a href=\"https://make.wordpress.org/community/events/online/\">meetups</a>. </p>\n\n\n\n<p>“The team acknowledges that this is not easy for the community that has been heavily based on in-person events and encounters,” <NAME> said in the <a href=\"https://make.wordpress.org/community/2020/07/27/in-person-events-in-rest-of-year-2020/\">announcement</a>. “Unfortunately, the global coronavirus situation does not seem to be slowing down to a level that would allow us organizing in-person events safely at this time.”</p>\n\n\n\n<p>The guidelines will be re-evaluated in the first quarter of 2021, but some organizers are already planning for online events next year. WordCamp Europe 2021 is the first WordPress event to <a href=\"https://wptavern.com/wordcamp-europe-goes-virtual-for-2021-in-person-conference-to-resume-2022\">go virtual for the coming year</a>, with the in-person event resuming in 2022.</p>\n\n\n\n<p>Moving what was once a vibrant in-person gathering to a two-dimensional online format is a challenging endeavor, especially when the world is suddenly awash in online events competing for attention. Making virtual events stand out from the crowd is a new marketing challenge. </p>\n\n\n\n<p>There is something about the magic of WordCamps that gives momentum to ideas and collaboration. While you cannot replicate the chance meetings in the hallway and the priceless conversations over long dinners, online events have the benefit of being more geographically inclusive. The constraints of the pandemic are also challenging our assumptions about how online gatherings are supposed to work.</p>\n\n\n\n<h2>WordPress Community Team to Explore New Event Formats, Redefine Relationships with Sponsors, Temporarily Cancel Swag Spending</h2>\n\n\n\n<p>The necessity for virtual events has inspired discussion around some new event formats, including a new <a href=\"https://make.wordpress.org/community/2020/07/23/building-community-beyond-events/\">proposal</a> that decouples online events from geography. WordPress Community manager <NAME> described how events might explore combining synchronous discussions with previously recorded workshops:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>What if we blended those two elements into a program that provides the flexibility of online content, with the value and sense of community that comes with learning together?</p><p>We could publish workshops in a central location (on <code>wordpress.org</code>, for better visibility and reach) and then invite learners to join live discussion groups that cater to different timezones. This “<a href=\"https://en.wikipedia.org/wiki/Flipped_classroom\">flipped classroom</a>” model allows people to learn at their convenience, and then come together for additional development. </p></blockquote>\n\n\n\n<p>Lashbrooke suggested the workshops could be designed by people who would otherwise be speaking WordCamps and could possibly source content from WordPress.tv or talks that have been given at online meetups.</p>\n\n\n\n<p>“There is also potential for longer courses, composed of multiple workshops, and a group that meets repeatedly over time,” Lashbrooke said.</p>\n\n\n\n<p>So far the suggestions in the comments include introductory workshops for WordPress. These would be timely for newcomers who have recently lost work and are looking to improve their online resumes or portfolios, or start up a new business. Beginner workshops have strong outreach potential if promoted outside of the WordPress community.</p>\n\n\n\n<p>During the first half of the year, the Community Team began transitioning to facilitating the needs of online events and have continued to work tirelessly to find ways for people to connect. In a recent <a href=\"https://make.wordpress.org/community/2020/07/23/moving-forward-with-online-events/\">update</a>, WordPress community organizer <NAME> explained that changes are coming for future online events, which may adopt another name instead of using “WordCamp.”</p>\n\n\n\n<p>Due to the<a href=\"https://make.wordpress.org/community/2020/05/11/financial-update-on-wordpress-community-programs/\"> financial position</a> of WordPress Community Support PBC (WPCS), the community team is ending programmatic support for online AV vendor expenses. WordCamps that are not yet on the schedule will be encouraged to get sponsorships if they require the use of a professional AV vendor.</p>\n\n\n\n<p>“Likewise, we have paused plans to spend money on sending swag, T-shirts, or other typical WordCamp collateral,” Middleton said. “It’s important to change our frame of reference for what’s necessary to make online events, away from the WordCamp model. Just because we did things a certain way for WordCamps, doesn’t mean it’s a high priority for online events.”</p>\n\n\n\n<p>Sponsorships are also being re-examined, as online events haven’t quite been able to deliver the same value to sponsors that traditional events did.</p>\n\n\n\n<p>“The value proposition of online sponsor booths is shaky, and we’ve always prided ourselves in partnering with our sponsors,” Middleton said. “Looking ahead, we must examine how much funding we <strong>need</strong> to create events that meet the goals of the team, and let that determine how to best coordinate with our community sponsors to deliver value and further our mission.” </p>\n\n\n\n<p>The potential for in-person events for the coming year is still uncertain at this point, in the absence of a vaccine ready for commercial distribution. WordPress’ global sponsorship program has been temporarily suspended and the Community Team plans to work with global sponsors later this year to make a plan for 2021.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2020 01:06:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Are Plugin Authors to Blame for the Poor Admin Notices Experience?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102405\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/are-plugin-authors-to-blame-for-the-poor-admin-notices-experience?utm_source=rss&utm_medium=rss&utm_campaign=are-plugin-authors-to-blame-for-the-poor-admin-notices-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6619:\"<p class=\"has-drop-cap\">Last Thursday, <NAME> published an article asking that we <a href=\"https://freemius.com/blog/wordpress-admin-notices/\">stop blaming plugin authors</a> for the plethora of admin notices that users are bombarded with each day. <em>The real culprit?</em> The lack of a notifications mechanism in WordPress core.</p>\n\n\n\n<p>Feldman’s post was prompted by a <a href=\"https://twitter.com/scottbolinger/status/1280567235006742528\">tweet</a> in which <NAME> called out plugin authors for letting admin notices get out of control:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Good lord WordPress plugin authors, this is out of control. <a href=\"https://t.co/0S42908C5T\">pic.twitter.com/0S42908C5T</a></p>— <NAME> (@scottbolinger) <a href=\"https://twitter.com/scottbolinger/status/1280567235006742528?ref_src=twsrc%5Etfw\">July 7, 2020</a></blockquote>\n</div>\n\n\n\n<p>Feldman argues that laying the blame on plugin authors is the wrong way to look at the issue. While I agree that the underlying problem lies with WordPress, plugin authors have played their part in creating an atmosphere where they have become the scapegoat for everything wrong with the system.</p>\n\n\n\n<p>I have developed plugins since a fateful day in April 2007 in which I released a plugin that simply listed the current page’s subpages. I have worked on 100s of plugins for clients and public release since then. In that time, I have maybe added a custom admin notice two times and only when the plugin had a major change, such as a database update. I reserved such notices for the OMGBBQ-very-important-you-need-to-read-this type of stuff. I considered it my duty to create an experience in which the user did not have to dismiss a notice every time one of my plugins received an update.</p>\n\n\n\n<p>This was not because I was cognizant of the growing issue of dozens of notices on some sites or how often users were being overwhelmed with them. For many years, I worked within a bubble where I simply focused on creating what I considered an ideal experience for my users. I always thought the admin notices system created an abysmal experience. It did not make sense to use it more than necessary.</p>\n\n\n\n<p>On the other hand, there were likely a few times over the years where I should have added some sort of notices for changes. Instead, I avoided doing so altogether because WordPress lacked a notifications system. I missed some good opportunities for communication.</p>\n\n\n\n<p>To a large extent, the issue stems from this lack of a proper notification system. However, plugin authors have perpetuated this broken system by continuing to use it when unnecessary. They have used it as a billboard to place their <a href=\"https://wptavern.com/black-friday-banner-gone-wrong-advertising-in-free-plugins\">holiday ads</a>. They have used it to upsell commercial versions of their products and services while prompting users for a five-star rating. There is plenty of blame to go around.</p>\n\n\n\n<p>Instead of placing blame, we should start asking what tools would solve problems for developers.</p>\n\n\n\n<h2>The Need for a Better System</h2>\n\n\n\n<p class=\"has-drop-cap\">Technically, WordPress simply has a hook and a set of common classes that developers can use in their HTML to provide some different colors for notices. There is no API, and without an API, it is impossible for even third-party plugin developers to even try their hands at creating various solutions.</p>\n\n\n\n<p>The closest thing WordPress has to an API is a little-known project from the Themes Team that provides a <a href=\"https://github.com/WPTT/admin-notices\">standardized method for theme authors</a> to add notices. However, the project covers only one aspect of admin notices, which is to create a consistent UI.</p>\n\n\n\n<p>The admin notice issue cannot be properly addressed without identifying the problems that plugin authors have tried to solve within the system, which at least includes the following:</p>\n\n\n\n<ul><li>User-oriented notifications, generally appearing after a user action.</li><li>Advertising commercial products and services.</li><li>Calls for plugin feedback or star ratings.</li></ul>\n\n\n\n<p>One of the primary issues with the current notification system is that it was created for the first item in that list. The other two items are not necessarily bad things. They are just poor usages of the system in place. However, there is no other standard method to handle those scenarios.</p>\n\n\n\n<p>Advertising is something we all must deal with in some form or fashion. I am unsure if there could or even should be a standard API for advertising. An outright ban of ads in the admin notice area could create a beast of its own, forcing plugin authors to come up with more obtrusive forms of advertising in other areas of the admin. I want to support advertising but not when that advertising wiggles its way to the top of every admin screen.</p>\n\n\n\n<p>WordPress provides no easy way for end-users to rate or review plugins from their admin interfaces. Having an easy way to provide direct feedback would be immensely helpful for both users and developers. While I am certain many people would argue against such integration with the WordPress.org site (there are arguments against any external integration out of the box), ratings and reviews would require an explicit opt-in from end-users because they would need an account on WordPress.org.</p>\n\n\n\n<p>Advertising and plugin feedback should not be a part of a discussion on admin notices. However, reality dictates that they are integral to the conversation.</p>\n\n\n\n<p>The first order of business must be to create a new notification system from the ground up. It should provide a standard API for plugin authors while handing over full management capabilities to the site owners. Users should be able to disable notices altogether or even enable/disable notices on a per-plugin basis. <em>Notice that a particular plugin author provides useless notices?</em> Well, just disable notices from that plugin. The author lost their privileges.</p>\n\n\n\n<p>From that point, we can let the progress drive the discussion on what to do about advertising and calls for feedback. A new system may shift them to a new screen — out of sight out of mind — but not make those problems disappear.</p>\n\n\n\n<p>More than anything, it is time for a champion. The project does not get done without someone who will pave the path forward and earn the green light for a new notifications system in WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jul 2020 21:40:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.5 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8719\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3766:\"<p>WordPress 5.5 Beta 4 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 Beta 4 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta4.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors who tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\">beta 3</a> development release and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress. </p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-3/\">beta 3</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F22%2F2020..07%2F28%2F2020&milestone=5.5&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">43 bugs</a> have been fixed. Here are a few changes in beta 4:</p>\n\n\n\n<ul><li>Add <code>\"loading\"</code> as an allowed kses image attribute (see <a href=\"https://core.trac.wordpress.org/ticket/50731\">#50731</a>).</li><li>Add filter for the plugin/theme auto-update message in the Info tab of Site health (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/50663\">#50663</a>).</li><li><code>$_SERVER[\'SERVER_NAME\']</code> not a reliable when generating email host names (see <a href=\"https://core.trac.wordpress.org/ticket/25239\">#25239</a>)</li><li>Several backported fixes from Gutenberg are included in WordPress 5.5 Beta 4 (<a href=\"https://github.com/WordPress/gutenberg/pull/24218\">See PR #24218</a>)</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jul 2020 20:56:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Donncha: Crowdsignal Polls in your Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89503098\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://odd.blog/2020/07/27/crowdsignal-polls-in-your-block-editor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2423:\"<div class=\"aligncenter crowdsignal-poll-wrapper\"></div>\n\n\n<p>The <a href=\"https://crowdsignal.com/\">Crowdsignal</a> team at Automattic have been quietly working on a new <a href=\"https://wordpress.org/plugins/crowdsignal-forms/\">poll block</a> for the last few weeks. We finally made it public today on WordPress.org!</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>We set out with the task of creating a block that would allow the writer to quickly insert a poll in their posts using the block editor. More than that, it had to be simple to use. It also needed to be themed to match the look and feel of the website it would appear on.</p>\n\n\n\n<div class=\"wp-block-image size-large\"><img /></div>\n\n\n\n<p>We’ve created a block that does that. It also records the votes collected on the Crowdsignal website where you can analyse the results using reports Crowdsignal users have always used.</p>\n\n\n\n<div class=\"wp-block-image size-large\"><img /></div>\n\n\n\n<p>Search for “Crowdsignal Forms” on your plugins page to install it in the usual way.</p>\n\n\n\n<p>A free <a href=\"https://crowdsignal.com/\">Crowdsignal</a> account is required to use the block. We made it really easy to connect your site to your Crowdsignal account. If you don’t have one then creating a new account is simple too.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The first 2,500 responses you collect are included in your free account, and further votes are recorded but free users are encouraged to upgrade if they want to do further analysis of all the data they collect.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2004/01/29/htmlarea-the-free-customizable-online-editor/\" rel=\"bookmark\" title=\"Permanent Link: HTMLArea — the free, customizable online editor\">HTMLArea — the free, customizable online editor</a></li><li> <a href=\"https://odd.blog/2003/04/02/cross-browser-rich-text-editor/\" rel=\"bookmark\" title=\"Permanent Link: Cross-Browser Rich Text Editor\">Cross-Browser Rich Text Editor</a></li><li> <a href=\"https://odd.blog/2003/05/22/cross-browser-rich-text-editor-work-in-firebird/\" rel=\"bookmark\" title=\"Permanent Link: Cross-Browser Rich Text Editor – work in Firebird?\">Cross-Browser Rich Text Editor – work in Firebird?</a></li></ul></p>\n<p><a href=\"https://odd.blog/2020/07/27/crowdsignal-polls-in-your-block-editor/\" rel=\"nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jul 2020 19:17:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"HeroPress: HeroPress Gets A Surprise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3242\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://heropress.com/heropress-gets-a-surprise/#utm_source=rss&utm_medium=rss&utm_campaign=heropress-gets-a-surprise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1373:\"<img width=\"960\" height=\"540\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/07/heropress_cape_video_thumb-1024x576.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Topher wearing his cape.\" />\n<p>A couple of months ago <a href=\"https://twitter.com/michelleames\"><NAME></a> approached me about being on a podcast for <a href=\"https://sentree.io\">Sentree.io</a>. I didn’t realize at the time I was going to be their inaugural guest! We had a great time, and things got back to normal.</p>\n\n\n\n<p>Several weeks later Michelle said they sent me a thanks gift, which was very thoughtful, and that I should have someone video the unboxing. I never once imagined what they actually sent me. Here’s the video.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"jetpack-video-wrapper\"></div>\n</div>\n\n\n\n<p>My family already has all sorts of ideas about how to use it at WordCamps. I just hope it survives being worn ALL DAY EVERY DAY.</p>\n\n\n\n<p>It’s super well made, I snooped a little and found the etsy shop it came from. Really great embroidery and seaming. Really classy.</p>\n\n\n\n<p>Thanks Sentree, and thanks Michelle. :)</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-gets-a-surprise/\">HeroPress Gets A Surprise</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jul 2020 13:31:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Develop, Test, and Showcase Blocks in Isolation With BlockBook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/develop-test-and-showcase-blocks-in-isolation-with-blockbook?utm_source=rss&utm_medium=rss&utm_campaign=develop-test-and-showcase-blocks-in-isolation-with-blockbook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4143:\"<p class=\"has-drop-cap\"><NAME> <a href=\"https://riad.blog/2020/07/22/introducing-blockbook-for-wordpress/\">released BlockBook</a>, a project that promises to overhaul how developers build blocks and more, on Tuesday. It is a development environment that allows creators to work with blocks in isolation, outside of WordPress. Developers can view individual block properties and test output from a defined block library.</p>\n\n\n\n<p>BlockBook is available as an <a href=\"https://www.npmjs.com/package/blockbook-cli\">npm package</a>. Developers can also contribute to the project through its <a href=\"https://github.com/youknowriad/blockbook\">GitHub repository</a>.</p>\n\n\n\n<p>Benguella got the idea from <a href=\"https://storybook.js.org/\">Storybook</a>, which is an open-source tool for developing UI components for React, Vue, Angular, and other JavaScript libraries in isolation. It is an environment that makes development and testing more efficient for individual components. It also allows end-users the opportunity to test those components before they are brought into a project. The goal for BlockBook is to bring a similar system to WordPress block development.</p>\n\n\n\n<p>“If we think about it a little bit, blocks are reusable units that can live on their own outside of any context, they can be edited visually, and they produce markup,” wrote Benguella in the announcement post. “They have in fact a lot in common with React Components. They are super-powered React Components.”</p>\n\n\n\n<p>He believes that BlockBook will be able to solve many of the issues around block development by taking the principles of the Storybook application and employing them into an environment specifically for building, testing, documenting, and sharing blocks.</p>\n\n\n\n<p>Benguella has a full <a href=\"https://youknowriad.github.io/blockbook/\">demo available</a> as a GitHub page. Developers can do the same with their plugins or simply host it as a static site on their own server.</p>\n\n\n\n<img />BlockBook example output of the Gallery block.\n\n\n\n<p>In his post, he identified three major challenges that his project is meeting head-on. The first, and most obvious for anyone who has delved into block development, is creating blocks within the WordPress environment. It is a tedious and inefficient process to develop and test blocks in the WordPress admin. By isolating the block code, developers can bypass many of the routine tasks every time they make a code change to a block.</p>\n\n\n\n<p>The second challenge was to figure out a way to make theme testing much easier. For theme authors with one or two themes, testing block styling is relatively easy. However, for businesses, agencies, and others who maintain many themes, there is no good way to quickly see how individual blocks behave for each of the themes. BlockBook allows theme authors to register any number of themes. Essentially, developers add a few lines of code and point to the appropriate stylesheet. Once set up, testing is as simple as switching themes via a dropdown select and moving between individual blocks. All of this happens almost instantly.</p>\n\n\n\n<p>The third part of the equation involves end-users. Currently, users have no good way to test blocks without installing a block plugin, heading to their editor, and tinkering around with it. If they do not like the block, they must start the process all over again. With BlockBook, developers can make their blocks available for testing beforehand. They can even allow end-users to beta test blocks and provide feedback without installing a plugin at all.</p>\n\n\n\n<p>However, that is still not quite as efficient as Benguella would like. It would rely on individual developers. For the long-term, he hopes the project becomes an official WordPress package. This creates the possibility of WordPress.org automatically building and hosting a BlockBook for plugins and themes, giving users a chance to test before installing.</p>\n\n\n\n<p>This is something that could be revolutionary for users if the official WordPress project could take it on and create a solid user experience around it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Jul 2020 19:00:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: Unsplash Responds to Image Licensing Concerns, Clarifies Reasons for Hotlinking and Tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102268\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:247:\"https://wptavern.com/unsplash-responds-to-image-licensing-concerns-clarifies-reasons-for-hotlinking-and-tracking?utm_source=rss&utm_medium=rss&utm_campaign=unsplash-responds-to-image-licensing-concerns-clarifies-reasons-for-hotlinking-and-tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22930:\"<p>Concerns are mounting regarding Unsplash’s terms and image licensing after the site <a href=\"https://wptavern.com/unsplash-launches-official-plugin-for-wordpress\">launched its official WordPress plugin</a> this week. Several people commented on the restrictions and lack of clarity in the license. </p>\n\n\n\n<p>“The irony here is that this goes against Unsplash’s own licensing for images,” <NAME> commented. “It’s vague and restrictive to the point where one doesn’t even know if they can actually use the images they import.”</p>\n\n\n\n<p><NAME> responded to Stathopoulos’ comment, saying, “I agree, not sure if this should be allowed in the directory.”</p>\n\n\n\n<p>The last time the site made a major splash in WordPress news was in 2017 after <a href=\"https://wptavern.com/unsplash-updates-its-license-raises-gpl-compatibility-concerns\">revising its license</a> to prohibit the compilation of photos for the creation of a similar or competing service. Its new branded license made the library’s images incompatible with the GPL and unable to distributed with WordPress themes and plugins.</p>\n\n\n\n<p>Unsplash co-founder <NAME> believes these comments are due to a misunderstanding about the license change.</p>\n\n\n\n<p>“As you know, themes have a requirement that themes and their content be GPL compatible,” Chesser said. “Outside of themes, WordPress’s application of GPL doesn’t apply to content in plugins. That’s why you can have a YouTube plugin, a Getty Images plugin, a Giphy plugin, etc. — none of this content is licensed under GPL. In most cases plugins serve content that has a very narrow usage license, much, much more restrictive than the Unsplash License.”</p>\n\n\n\n<h2>Why Unsplash Abandoned Creative Commons Zero Licensing</h2>\n\n\n\n<p>To understand the sensitivity to Unsplash’s licensing change, one must dust off a bit of web history. When the site first started in 2013, the images were licensed under the very permissive <a rel=\"noreferrer noopener\" href=\"http://creativecommons.org/publicdomain/zero/1.0/\" target=\"_blank\">Creative Commons Zero</a> license. It quickly grew from a Tumblr-hosted photo blog that shared “10 new photos every 10 days” for free, to one of the most popular photo libraries on the web. </p>\n\n\n\n<p>Chesser said the real life problems the Unsplash community encountered caused his team to change the licensing to protect photo authors. </p>\n\n\n\n<p>“People were downloading the images and reselling them on Getty and Shutterstock,” he said. “Even if the people doing this made no money, it was such a negative experience for Unsplash contributors that they would remove their images from Unsplash, removing content that was previously available to openly be created with.</p>\n\n\n\n<p>“Scraping of the site and the library had a similar effect as contributors would see their photos copied over to thousands of free image sites they never signed up for, or worse, their photos being made available to other sites with no attribution.”</p>\n\n\n\n<p>Unsplash contributors were likely not fully aware of the freedoms that the CC0 license affords. These problems may be undesirable applications of the license but they were not outright misuses. When Unsplash changed its license, approximately 200,000 images were no longer identified on the site as being part of the public domain. </p>\n\n\n\n<p>Creative Commons got involved after the organization started receiving questions from users in the open content and free software movements. <NAME>, CEO of Creative Commons at that time, penned an <a href=\"https://creativecommons.org/2017/06/22/unsplash/\">update</a> on Unsplash’s licensing change to the CC community, expressing the organization’s concerns.</p>\n\n\n\n<p>“Our intention is to ensure that CC community members understand what has happened to a service they have been using that incorporated CC tools, and to protect the content that was dedicated to the public domain,” Merkley said.</p>\n\n\n\n<p>Creative Commons called on Unsplash to properly differentiate the works that were previously shared under the irrevocable CC0 license so that they would not disappear from the public domain:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Following the switch to the new Unsplash-branded license, there is no marking of works that were previously shared in the public domain using CC0. The Unsplash API restricts/obscures the full CC0 collection, which we believe to be about 200,000 images, but it isn’t possible to access the complete archive. In order to ensure that the commons is maintained, we hope that Unsplash will either a) properly mark all the works shared using CC0 and/or b) make available a full archive of the CC0 works so they can be shared on a platform that supports open licensing and public domain tools. Previous platforms that have gone under or abandoned open license tools have shared their CC archives for this purpose. We hope Unsplash will follow the same path.</p></blockquote>\n\n\n\n<p>Unsplash declined to identify these images at that time. When I asked Chesser if the company is willing to update their API to differentiate these works, he said they discovered the images were never CC0 to begin with because of Unsplash’s terms: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The 2017 license clarification I described was also brought about because the team from Creative Commons told us that the photos were not licensed under CC0 if there were additional terms stipulated on the terms page. Therefore, the photos were not actually under CC0, as they had been submitted with additional terms attached to them and we could not and can not distribute the photos under the CC0 license. As part of this, we renamed the license to the Unsplash License and clarified the main parts of the terms in the form of the Unsplash License.</p></blockquote>\n\n\n\n<p>The controversy over the license change struck a nerve with those who <a href=\"https://www.designernews.co/stories/84910-unsplash-images-are-no-longer-in-the-public-domain\">perceived the move to be unfair</a> to the community of creators who had been convinced to put their works in the public domain. Unsplash had become a household name on the backs of Creative Commons Zero licensing, with the images fetching more than <a href=\"https://medium.com/unsplash/unsplash-best-of-2017-eb36ee81236\">29 billion views in 2017</a>, only to abandon the license when it was no longer expedient for the growth of their community. </p>\n\n\n\n<p>That body of work that had been originally shared to the public domain was then deftly hidden away (and remains so) with no differentiation in the site’s API to identify these images. This is what Mullenweg seemed to be referencing when he <a href=\"https://wptavern.com/unsplash-launches-official-plugin-for-wordpress#comment-335431\">commented</a> on the plugin launch. </p>\n\n\n\n<p>“Encouraging hotlinking is also pretty suspicious, especially after the previous bait and switch,” Mullenweg said. “Maybe if there was a way again to find just the CC0 licensed images, which the Creative Commons also requested, this could be okay to promote.”</p>\n\n\n\n<p>Chesser contends that the Unsplash community had no complaints with the decision and that the only people who were dissatisfied were those who were not contributors.</p>\n\n\n\n<p>“For anyone who feels that we somehow ‘tricked’ our community, again, I’d point back to the reaction from our actual contributor community — the people who generously submit their images to Unsplash for others to create with,” Chesser said. “We heard no complaints from this community when we clarified the License in 2017. Had there been an issue, had we somehow been taking advantage of their contributions, we would have certainly heard about it then, as our community are very passionate and vocal. </p>\n\n\n\n<p>“The only complaints we heard were from people from outside of the Unsplash community — including Matt — who have never submitted an image to Unsplash and aren’t part of our community. On the internet, there will always be people who disagree with you — we focus on our community and expanding the number of people who have access to create with images.”</p>\n\n\n\n<p>This particular licensing conflict seems to have inspired a bit of lasting apprehension regarding Unsplash’s willingness to change its license and terms in the future. Allowing a plugin to efficiently pump out thousands of images to WordPress sites could potentially make the platform’s user base a vector for disseminating works that someday may not be available with the same freedoms. </p>\n\n\n\n<p>“Could the terms or licensing of that hotlinking change in the future, as the licensing did in 2017?” Mullenweg asked in the comments.</p>\n\n\n\n<p>“I forsee no future scenario where our terms will ever meaningfully change,” Chesser said. “They will of course occasionally be refined, as all terms are—like when we added clarifications around GDPR compliance or when we add new features that require a legal definition. But our mission and goal are the same as they have always been: to enable anyone to create with visuals, and our terms will continue to reflect that.”</p>\n\n\n\n<p>After a few in the WordPress community expressed that the license was not clear in terms of what users can do with the images, Chesser said he would be open to making a separate clarification document to address any legitimate concerns.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The actual license has been ruled as very clear by a lot of lawyers and we want to avoid complicating it\'s simplicity with more legalese, but we\'re open to making a separate clarification/side-letter/legal document which addresses any legitimate concerns</p>— <NAME> (@lukechesser) <a href=\"https://twitter.com/lukechesser/status/1286446954197770244?ref_src=twsrc%5Etfw\">July 23, 2020</a></blockquote>\n</div>\n\n\n\n<p>When the 2017 licensing controversy happened, <NAME>, a technology and public lawyer based in New Zealand, said the new Unsplash license <a href=\"http://wpandlegalstuff.com/unsplash-gpl-compatibility-concern-red-herring/\">could use some clarification</a> regarding freedoms for downstream recipients. He suggested changes that rephrase it as follows: “Unsplash grants <span>you and every person who comes into possession of the photos</span> a nonexclusive copyright license to…”</p>\n\n\n\n<p>“These changes are intended to ensure that downstream recipients of the photos receive the same licence from Unsplash,” Best said. “Both the GPL and the Creative Commons licences are structured in this way. Without these changes, distributors of products like website themes may be concerned that the end users of their products will not receive the rights they need to use the photos for their own purposes.”</p>\n\n\n\n<p>Chesser said the Unsplash License and terms were created by the same legal team that created the Creative Commons licenses. Any major differences regarding the freedoms for downstream recipients were likely considered and intentional. It may still be an important clarification, as the block editor continues to make it easier for users to create and share their own designs with images. </p>\n\n\n\n<h2>Unsplash Clarifies the Purpose of Hotlinking to the CDN and Tracking Views</h2>\n\n\n\n<p>The official Unsplash plugin is different from other plugins created to connect users to the free image library in that it hotlinks images to the Unsplash CDN, ostensibly to reduce the site’s bandwidth usage and speed up delivery.</p>\n\n\n\n<p>“The plugin uses the Unsplash CDN to serve Unsplash images while the plugin is installed and enabled,” Chesser said. “At the same time, every image used in a post will also be copied over to the local server and stored there. We store a copy of every image on the local WordPress install so that if the plugin is disabled or removed by the site owner, their posts can continue to serve the local images and don’t break, however they lose the features of the Unsplash CDN.”</p>\n\n\n\n<p>The CDN also supports dynamic resizing, compression, cropping, automatic file format conversion, and a number of performance improvements that Chesser said the service has implemented based on what the team as learned from serving tens of billions of images every month for 8+ years.</p>\n\n\n\n<p>“When we talked to publishers, these features were extremely important to them,” he said. “Rather than try to rebuild the wheel in WordPress, we wanted to offer these features to publishers as they aren’t supported natively by WordPress and are table stakes for modern image serving.”</p>\n\n\n\n<p>The Unsplash CDN exists to serve the needs of Buzzfeed, Trello, Adobe, Dropbox, Notion, and 2,200+ official <a href=\"https://unsplash.com/developers\">API integrations</a>. It also gives Unsplash contributors a better idea of the real number of views of the content they post.</p>\n\n\n\n<p>“This outsized distribution of their images is one of the main reasons that photographers post on Unsplash,” Chesser said. “A quick <a href=\"https://twitter.com/search?q=unsplash%20views&src=typed_query\">search on twitter</a> gives you a good idea for how important this phenomenon is to our contributors.”</p>\n\n\n\n<p>One commenter <a href=\"https://wptavern.com/unsplash-launches-official-plugin-for-wordpress#comment-335442\">said</a> that she was put off by the official plugin’s requirement to authenticate, since competing plugins don’t add this extra layer.</p>\n\n\n\n<p>“They can now force user sign ups to inflate their user base even though other plugins just serve images without any sort of authentication,” she said. “What is the point in a user authenticating to only receive an API key? It’s not like you can access Likes or your collection with only the API key.</p>\n\n\n\n<p>“Serving images from their CDN also allows them to track image views and URLs which helps inflate the download and view counts for their contributors. These other plugins like Instant Images downloads the file to your media library which would only count as a single download. I’m going to stick with Instant Images as I don’t feel like feeding the advertising machine.”</p>\n\n\n\n<p>Responses to the plugin’s approach were mixed, but overall it seemed that most users were delighted to cut a few steps out of their workflow for posting images to WordPress. The plugin has more than 300 downloads in 48 hours.</p>\n\n\n\n<h2>Is Unsplash in Violation of the WordPress Plugin Directory’s Guidelines?</h2>\n\n\n\n<p>After <NAME> raised concerns about the plugin’s suitability for the directory, commenters called in similar concerns about the Pexels library, which Automattic uses in Jetpack.</p>\n\n\n\n<p>Unsplash does not appear to be in violation of the official WordPress.org plugin directory guidelines. Earlier this year when asked about a different plugin that imports an Unsplash image, Plugin Team member <NAME> <a href=\"https://wordpress.slack.com/archives/C1LBM36LC/p1581854898429000\">responded</a> using an Unsplash-specific example: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Let’s simplify this right down to basics: Lets say you made a plugin that imports images from Unsplash into your site. That plugin is fine. It has no images in it, the purpose of it is to access a library of images and allow you to pull them into your site. You have to take actions to pull in those images. That is perfectly acceptable for being hosted on <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://w.org/\">w.org</a>. So, you can’t use Unsplash images in your plugin hosted here. But if it pulls them from somewhere else via user action and intention, fine.</p></blockquote>\n\n\n\n<p>Chesser sees the concerns regarding the clarity of Unsplash’s licensing as unwarranted, given Automattic’s use of the Pexels library.</p>\n\n\n\n<p>“Pexels made a clone of the Unsplash License with the exact same restrictions shortly after we updated it in 2017,” Chesser said. “At no point has WordPress expressed any skepticism that the Pexels License is legally vague. Given that they have instead created multiple official partnerships with Pexels, including adding it to Jetpack, then I would expect that they consider the license to be legally clear.”</p>\n\n\n\n<p>Both Pexels and Unsplash licenses share similar restrictions but Pexels has more restrictions on how images can be used. Chesser believes the renewed concerns are entirely founded on Unsplash’s controversial 2017 licensing change.</p>\n\n\n\n<p>“Before 2017, we had a strong relationship with WordPress,” Chesser said. “Since then, WordPress has essentially cut off all ties with Unsplash and instead made partnerships with Pexels to integrate into WordPress features. What’s strange though is that shortly after we clarified our license in 2017, Pexels did the same thing, adding the same restrictions <a rel=\"noreferrer noopener\" href=\"https://www.pexels.com/terms-of-service/#restrictions-on-use-of-the-service-and-content:~:text=to%20portray%20any%20person%20depicted%20in,engaging%20in%20immoral%20or%20criminal%20activities%3B\" target=\"_blank\">plus a few additional ones</a>.</p>\n\n\n\n<p>“Specifically, you can see that they have the same restriction around <a rel=\"noreferrer noopener\" href=\"https://www.pexels.com/license/#flash-container:~:text=Don\'t%20sell%20unaltered%20copies%20of%20a,physical%20product%20without%20modifying%20it%20first.\" target=\"_blank\">reselling of content</a> and the <a rel=\"noreferrer noopener\" href=\"https://www.pexels.com/license/#flash-container:~:text=Don\'t%20redistribute%20or%20sell%20the%20photos%20and%20videos%20on%20other%20stock%20photo%20or%20wallpaper%20platforms.\" target=\"_blank\">same restriction around recompiling and scraping of the site</a>. (Note: they use the word redistribute on the license page, but <a rel=\"noreferrer noopener\" href=\"https://www.pexels.com/terms-of-service/#intellectual-property:~:text=the%20right%20to%20compile%20any%20Pexels%20Content%20to%20replicate%20a%20similar%20or%20competing%20Service%3B\" target=\"_blank\">use the word compile in their terms</a>.)”</p>\n\n\n\n<p><a href=\"https://xwp.co/\">XWP</a>, the agency that Unsplash partnered with to build the plugin, said the license is “significantly less restrictive than Pexels, Youtube, Getty, Spotify and many other examples you’ll find throughout the plugin directory.” If this plugin is in violation, then many others would be called into question along with it.</p>\n\n\n\n<p>“As rule 6 on the <a rel=\"noreferrer noopener\" href=\"http://wordpress.org/\" target=\"_blank\">WordPress.org</a> plugin guidelines clearly state: ‘Plugins that act as an interface to some external third party service (e.g. a video hosting site) are allowed, even for paid services,” XWP CTO Derek Herman said.</p>\n\n\n\n<p>“As their high quality images are available as an API, we built a community plugin up to WordPress VIP coding standards so that Unsplash would work on a variety of use cases, from WordPress versions 4.9 to 5.4. Integration with APIs has been key to WordPress’ growth over the past few years.”</p>\n\n\n\n<p>Herman also cited several prominent examples of content integrations with varying licenses and terms that govern the content:</p>\n\n\n\n<ul><li>A leading enterprise publishing plugin is <a href=\"https://wordpress.org/plugins/getty-images/\" target=\"_blank\" rel=\"noreferrer noopener\">Getty Images</a>, which is a <a href=\"https://wpvip.com/plugins/getty-images/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress VIP partner plugin</a> and has long been used by larger organizations. It primarily sells “restricted-usage” images connected to a network of media sources like newspapers and freelancers.</li><li><a href=\"https://wordpress.org/support/article/embeds/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress core has extensive oembed support for third parties</a>, which takes third-party URLs and parses them in a way to link to the site. While Amazon Kindle, Spotify and Youtube’s content licensing rules are quite restrictive, the goal of these integrations are to encourage content creators to tell stories with what they find across the internet.</li><li>In its most recent release <a href=\"https://jetpack.com/2020/07/07/87-easier-reach-customers/\" target=\"_blank\" rel=\"noreferrer noopener\">Jetpack included two exciting new media integrations</a>—Google Photos and Pexels—which are certainly relevant here. Pexels actually has a “<a href=\"https://help.pexels.com/hc/en-us/articles/360043229813-Can-I-use-photos-and-videos-from-Pexels-in-a-political-campaign-\" target=\"_blank\" rel=\"noreferrer noopener\">political views</a>” clause in their license. As they do not define what is a “political policy or viewpoint” it could be viewed as too restrictive as nearly any post could be construed as being political.</li><li>There are a few other plugins using Unsplash in the WordPress ecosystem, such as <a href=\"https://wordpress.org/plugins/instant-images/\" target=\"_blank\" rel=\"noreferrer noopener\">Instant Images</a> (which has been in the directory for over three years). In fact, WordPress Release lead <NAME> wrote a great prototype plugin called “<a href=\"https://wptavern.com/drop-it-plugin-brings-gifs-and-unsplash-photos-to-gutenberg\" target=\"_blank\" rel=\"noreferrer noopener\">Drop It</a>,” which integrates with both GIPHY and Unsplash, and served as inspiration for us on this project. </li></ul>\n\n\n\n<p>At the moment, it seems Unsplash is within WordPress.org’s plugin directory guidelines, but if its terms and licensing are deemed incompatible, many media integrations in the plugin ecosystem will also be called into question. Users who object to Unsplash’s method of delivery can always opt to use a plugin with a different approach. Those who want to support libraries that serve images with GPL-compatible licensing can check out the Theme Team’s list of <a href=\"https://make.wordpress.org/themes/handbook/review/resources/#recommended-websites-for-images\">recommended sources</a> and look for plugins that integrate those.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Jul 2020 17:24:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Revised Block Directory Guidelines Proposal Updates Wording but Changes Little Else\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"https://wptavern.com/revised-block-directory-guidelines-proposal-updates-wording-but-changes-little-else?utm_source=rss&utm_medium=rss&utm_campaign=revised-block-directory-guidelines-proposal-updates-wording-but-changes-little-else\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6513:\"<p class=\"has-drop-cap\">Yesterday, <NAME> <a href=\"https://make.wordpress.org/plugins/2020/07/22/proposed-block-directory-guidelines/\">posted an update</a> to the <a href=\"https://github.com/WordPress/wporg-plugin-guidelines/pull/70/files#diff-bcf4c6e86251a8d088c6bd5800c476ff\">proposed guidelines</a> for the WordPress block directory. The document adds eight rules for plugin authors to follow if they plan to add their one-off blocks to the directory. The guidelines are additional requirements on top of the existing plugin directory guidelines.</p>\n\n\n\n<p>While the wording and organization of the block guidelines received a revamp in comparison to the <a href=\"https://github.com/WordPress/wporg-plugin-guidelines/blob/87a9a17eca6d4b39a6bb4b1f2c8dcf33aff26336/blocks.md\">original proposal</a>, the overall sentiment is unchanged. Shiels thanks community developers for the feedback on the original guidelines but does not go into detail about the things that changed as a result.</p>\n\n\n\n<p>The primary guidelines are mostly expected, run-of-the-mill requirements for blocks. Developers need a <code>block.json</code> file. They should name stuff appropriately. Plugins should contain only a single block. Plugins should only touch the block editor. Blocks should work seamlessly once activated.</p>\n\n\n\n<p>The remaining guidelines are certain to be a disappointment or point of contention for some developers.</p>\n\n\n\n<h2>Monetization Still Not Allowed</h2>\n\n\n\n<p class=\"has-drop-cap\">The largest <a href=\"https://wptavern.com/can-the-block-directory-and-business-interests-coexist\">feedback on the guidelines</a> we received here at the Tavern surrounded what is essentially a blanket ban on commercial interests for block developers. Blocks still cannot hook into a paid service or advertise within the admin. This limitation will obviously turn away many businesses that may have been looking forward to the block directory as a potential avenue for profit. Right now, one-off blocks will need to be built by those with altruistic interests, giving back to the community simply out of the kindness of their hearts.</p>\n\n\n\n<p>While there is nothing inherently wrong with wanting to do that, it is not attractive to developers who are primarily focused on putting food on the table. Hobbyists and larger businesses with the resources to give back will be well-suited to add blocks to the directory. However, it will give a lot of developers pause because it is unlikely a good return on investment. Instead, those developers are more likely to submit their blocks to the normal plugin directory with their normal upsell methods. This will only serve to make block discoverability harder for end-users.</p>\n\n\n\n<p>This is a missed opportunity to build a well-rounded system that is fair to both users and developers who need to make a living. Whether it is through the plugin tag system or specific guidelines on monetization, we could have built something that made everyone a little happy and a little mad, a compromise that merged a good user interface and experience.</p>\n\n\n\n<p>It is not like there have been no proposals. In January, <NAME> wrote a detailed outline of <a href=\"https://carb.is/2020/01/block-business/\">how WordPress could provide a middle ground</a> between sustainability (business models) and accessibility (free options) with the upcoming block directory. His fear was that the block directory would be full of blocks without updates in a few years because the completely free model is unsustainable. His proposal was a badge-based system that let users know if a block contained ads, used a freemium model, or required a sign-in to a third-party service.</p>\n\n\n\n<p>The current guideline is not set in stone. This is the first version of the block directory. It is not out of the question that the team could change things as the directory grows over time.</p>\n\n\n\n<h2>No Love for Server-Side Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">The block directory guidelines are still heavily geared toward static blocks. PHP must be kept at a minimum and primarily be used to load any necessary scripts and stylesheets. Server-side blocks are not getting much attention at the moment, which may be a limitation of the software.</p>\n\n\n\n<p>It would be great to see a way for some server-side blocks to be included in the block directory. For example, a breadcrumbs block would need to rely heavily on PHP to render its output. It is a dynamic block rather than static. This particular block would not be useful until full-site editing lands in WordPress, which is still several months away. However, I am getting the itch to turn an old breadcrumbs plugin of mine into a block. It would be neat to see it listed in the block directory.</p>\n\n\n\n<p>There are countless other scenarios. Post lists, product grids, and data pulled from external APIs are all good use cases for one-off blocks.</p>\n\n\n\n<h2>Dependencies Are Not Allowed</h2>\n\n\n\n<p class=\"has-drop-cap\">Given the way that WordPress works, it makes sense to ban dependencies on other plugins for any particular block to function. This is an old limitation that is rearing its head again. Every other modern framework uses some sort of dependency management to address this problem.</p>\n\n\n\n<p>The block directory has the potential to exacerbate the problem even further. Because plugins coming from this directory will be single blocks, it will often mean that developers are using the same bits of code across multiple projects. For example, an end-user may activate multiple block plugins that rely on the same JavaScript library. Because there is no 100%, sure-fire way to make sure only one instance of this library is loaded, users may be running multiple instances of it on their sites. It is not a new problem, but smaller block plugins mean that users are more likely to install more plugins. It increases the probability of running into this issue.</p>\n\n\n\n<p>If there was any sort of basic dependency management for plugin authors to use in WordPress, it would solve a world of problems. Over the years, developers have created methods to minimize the issues stemming from the lack of such a system. However, nothing is foolproof without a standard to follow.</p>\n\n\n\n<p>This has also held developers back from building libraries, scripts, and tools that could benefit the entire development community as a whole. Everyone builds their own things in-house, and the block directory is making a promise for more of the same.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jul 2020 20:38:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"BuddyPress: BuddyPress 6.2.0 beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=312990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://buddypress.org/2020/07/buddypress-6-2-0-beta/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2350:\"<p>Hi BuddyPress contributors!</p>\n\n\n\n<p>We will soon publish a maintenance release (<strong>6.2.0</strong>) to prepare BuddyPress to some changes that will introduce WordPress next major release (5.5.0). WordPress 5.5.0 is slated for August 11, and we’d love you to help us use the coming days to make sure your favorite community engine is ready to fully enjoy this new version of WordPress.</p>\n\n\n\n<p>BuddyPress 6.2.0 will make sure our BP Email feature is using the 6.0 version of PHPMailer when WordPress 5.5.0 is installed on your site and will carry on using its version 5.2 when your WordPress version is lower (4.8 to 5.4 for the supported versions of our 6.0 branch). For more information about it, please have a look to this <a href=\"https://buddypress.trac.wordpress.org/ticket/8322\">ticket</a>.</p>\n\n\n\n<p>If you’re a plugin or a theme developer and are extending our BP Email feature, we strongly advise you to test your code with the latest pre-release of WordPress 5.5.0 (eg: <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\">5.5.0-beta3</a>) and BuddyPress <a href=\"https://downloads.wordpress.org/plugin/buddypress.6.2.0-beta1.zip\">6.2.0-beta1</a>.</p>\n\n\n\n<p>WordPress 5.5.0 will also <a href=\"https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">remove the jQuery Migrate library</a>, as BuddyPress uses a lot jQuery, we’ve been checking the impact of this removal. We haven’t found any issue so far, but if you do, please warn us about it commenting this <a href=\"https://buddypress.trac.wordpress.org/ticket/8333\">ticket</a>.</p>\n\n\n\n<p>A detailed changelog will be part of our official release notes, but, until then, you can check out this <a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=6.2.0\">report on Trac</a> for the full list of fixes.</p>\n\n\n\n<p>You can test the <a href=\"https://downloads.wordpress.org/plugin/buddypress.6.2.0-beta1.zip\">6.2.0-beta1</a> pre-release in 2 ways :</p>\n\n\n\n<ul><li>Use the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.6.2.0-beta1.zip\">Download the 6.2.0 beta release here (zip file)</a>.</li></ul>\n\n\n\n<p>Thanks in advance for your contributions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jul 2020 00:45:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Google Delays Mobile-First Indexing Deadline to March 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:181:\"https://wptavern.com/google-delays-mobile-first-indexing-deadline-to-march-2021?utm_source=rss&utm_medium=rss&utm_campaign=google-delays-mobile-first-indexing-deadline-to-march-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3509:\"<p>Google had set September 2020 as the deadline for when it would begin to fully switch over to crawling and indexing sites using mobile-first indexing but announced today that site owners will have more time to prepare. The deadline has been <a href=\"https://webmasters.googleblog.com/2020/07/prepare-for-mobile-first-indexing-with.html\">extended to March 2021</a>. </p>\n\n\n\n<p>Mobile-first indexing is a long-term plan that Google began rolling out in July 2019 by enabling it for new domains. The company cited “these uncertain times” as the reason for delaying the next phase of the rollout. The announcement also referenced further testing that showed a number of common issues sites are having in making the transition. Google urged site owners to pay close attention to several important issues:</p>\n\n\n\n<ul><li>Robots meta tags on mobile version should match the desktop version or Google may fail to index or follow links on the page.</li><li>Do not lazy-load primary content based on user interactions (like swiping, clicking, or typing), because the Googlebot doesn’t trigger these user interactions.</li><li>Avoid the bad practice of using smaller images on mobile to fit the smaller screen. Small and low quality image will not be favorably indexed.</li><li>Ensure content on the mobile version matches the desktop, since only the mobile version will be used for indexing and ranking in Search. </li><li>Include meaningful alt text for images.</li></ul>\n\n\n\n<p>Google also outlined several other tips for image and video markup and placement. The announcement is essentially a tutorial for how to improve common mistakes that can negatively impact mobile ranking and indexing.</p>\n\n\n\n<p>Since mobile-first indexing is already enabled for most currently crawled sites, some speculated that the delayed deadline was due to hastily migrated mobile subdomain sites. <NAME>, Webmaster Trends Analyst at Google, confirmed this is the case and advised site owners to avoid this dated approach and update at the nearest opportunity.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">That\'s basically the inverse of how it was before, when desktop URLs were sometimes shown in mobile serps. Ideally, you\'d redirect by device type. M-dot sites do make things harder; for new sites I\'d avoid them, for older sites, I\'d fix with the next bigger revamp.</p>— 🍌 John 🍌 (@JohnMu) <a href=\"https://twitter.com/JohnMu/status/1285877309862563840?ref_src=twsrc%5Etfw\">July 22, 2020</a></blockquote>\n</div>\n\n\n\n<p>Before the advent of responsive design, many WordPress site owners added plugins that would create a separate mobile site to provide a more mobile-friendly browsing experience. Website visitors soon expected the entire web to be available to them on the devices they carried around in their pockets. This is now the primary way that people interact with the web, and Google’s mobile-first indexing is a reflection of this new reality.</p>\n\n\n\n<p>If your WordPress site is still relying on a plugin to create a separate mobile site, or if you are using a plugin for lazy loading, make sure that the solution you have in place is following Google’s <a href=\"https://developers.google.com/search/mobile-sites/mobile-first-indexing\">mobile-first indexing best practices</a>. There are still 9 months remaining before Google makes mobile-first indexing and ranking the default for the entire web.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2020 23:20:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: Zero BS CRM Rebrands and Relaunches as Jetpack CRM\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102138\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://wptavern.com/zero-bs-crm-rebrands-and-relaunches-as-jetpack-crm?utm_source=rss&utm_medium=rss&utm_campaign=zero-bs-crm-rebrands-and-relaunches-as-jetpack-crm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5649:\"<img />Jetpack CRM welcome screen.\n\n\n\n<p class=\"has-drop-cap\"><NAME>, co-creator of Zero BS CRM, <a href=\"https://jetpack.com/2020/07/20/introducing-jetpack-crm/\">announced the launch of Jetpack CRM</a> on Monday. The news was the seemingly inevitable rebranding of the original plugin that he and Woody Hayday had built. Automattic, the owner of the Jetpack plugin, acquired the project almost a year ago. While <a href=\"https://wordpress.org/plugins/zero-bs-crm/\">Jetpack CRM</a> carries the “Jetpack” name, it is still a standalone project and has a <a href=\"https://jetpackcrm.com/\">dedicated website</a>.</p>\n\n\n\n<p>CRM stands for “customer relationship management.” Such systems allow businesses to manage relationships through an interface but can vary extensively in user experience. The goal is to manage contacts, sales, and productivity through the software.</p>\n\n\n\n<p>The duo of Stott and Hayday have had a bit of a journey in the past year. In August 2019, <a href=\"https://wptavern.com/automattic-acquires-zero-bs-crm-considers-rebranding-it-as-jetpack-crm\">Automattic acquired the project</a> and provided the resources for the team to continue working on Zero BS CRM. The <a href=\"https://wptavern.com/zero-bs-crm-3-0-improves-ui-changes-database-structure-and-becomes-more-extendable\">3.0 launch</a> in December 2019 was a massive undertaking that included a major database change and UI improvements. Since then, they have worked toward rebranding the project. Stott also did this with a newborn in his family.</p>\n\n\n\n<p>When version 3.0 of Zero BS CRM launched, Stott said they were still discussing whether to rebrand and bring the plugin under the Jetpack umbrella. They were gathering user feedback at the time, but his primary focus was on developing features. The name was not the foremost thing on his mind. However, branding can make or break even a good project, and Jetpack is as close to a household name as any product coming out of the WordPress ecosystem. It made sense to lean on that branding.</p>\n\n\n\n<p>“Jetpack’s mission is to help entrepreneurs and small businesses succeed by providing tools that keep their sites fast and secure,” said Stott. “We felt that from within the Automattic family, this was a great match. We created ZBS CRM with the same end goal in mind — helping you succeed through better customer relationships, so it just made sense.”</p>\n\n\n\n<p>After nearly a year beyond the acquisition, Stott feels like things are going great within the new environment at Automattic. “We’ve found the right product fit within Automattic,” he said. “In Jetpack, we’re happy that we can really push the CRM, and it’s exciting to be part of the bigger WordPress family and being able to integrate with WooCommerce, etc.”</p>\n\n\n\n<p>Version 4.0 of the plugin primarily changes the branding in the admin and lightens the UI background. The team has also continued to add small changes.</p>\n\n\n\n<p>“Looking ahead, we’re excited to continue developing the CRM following user feedback,” said Stott. “We’ll be working on our roadmap and, of course, how we can best integrate with the Jetpack family.”</p>\n\n\n\n<h2>Growing and the Future</h2>\n\n\n\n<p class=\"has-drop-cap\">Jetpack CRM currently has 3,000+ active installs. This is up from 2,000 since the launch of version 3.0 last December. It has been a slow road thus far. However, there is room for growth. The leading CRM plugin, Hubspot, has 100,000+ active installs. There should be plenty of room for competing plugins in the CRM market.</p>\n\n\n\n<p>“There’s a massive opportunity for CRM in the WordPress space,” said Stott. “A CRM is not like installing an SEO plugin on every website you own — generally you’d only have a single CRM for your business — but it’s the core of your business. The fact that 3,000+ users and counting are choosing WordPress to run their CRM is a great start.”</p>\n\n\n\n<p>The Jetpack brand should help spur some of the growth, particularly if Automattic pushes it as an add-on within the primary Jetpack plugin.</p>\n\n\n\n<p>“[Jetpack] has substantial reach among website owners who would benefit from a CRM but may not know what a CRM is,” said Stott. “While we’re happy that the plugin is still growing organically, we are just about set up to really push Jetpack CRM with full force.”</p>\n\n\n\n<p>Stott believes the Hubspot comparison isn’t apples-to-apples. Unlike Jetpack CRM, the Hubspot plugin pushes users to an app that is hosted off-site.</p>\n\n\n\n<p>“While this makes sense for some users, it doesn’t really take advantage of the huge benefits that native WordPress plugins offer,” he said. “Jetpack CRM sits on the user’s servers. Users manage and control their own data — a huge win under the GDPR whereas a site owner you’re legally required to know where your data is held. Not to mention that the plugin is also extendable.”</p>\n\n\n\n<p>Stott said he has always loved the WordPress community’s open-source approach and the freedoms that it provides to build something custom or extend what is already there. There should be ample opportunity for developers to extend Jetpack CRM’s codebase.</p>\n\n\n\n<p>“To my mind, there has never been a more exciting time for plugins like Jetpack CRM, which we envision as the ‘business layer’ for modern entrepreneurs, much like WooCommerce has democratized eCommerce,” he said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2020 19:21:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Unsplash Launches Official Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://wptavern.com/unsplash-launches-official-plugin-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=unsplash-launches-official-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6658:\"<p><a href=\"https://unsplash.com/\">Unsplash</a> has released its own <a href=\"https://wordpress.org/plugins/unsplash/\">official plugin for WordPress</a>, co-developed with the team at <a href=\"https://xwp.co/\">XWP</a>. The plugin seamlessly connects Unsplash’s 1 million+ free high-resolution image library with the WordPress editor.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/cUQ5pBCD6jD\"><img src=\"https://cldup.com/3UUPV-2ayL.gif\" alt=\"Post usage 1\" width=\"1100\" height=\"612\" /></a>\n</div>\n\n\n\n<p>Users can easily search Unsplash directly inside the custom block and insert images with attribution and alt description info automatically filled in. The selected images are download and added to the WordPress media library, saving users the trouble of having to leave their dashboards to search, download, and upload images. </p>\n\n\n\n<p>Unsplash co-founder <NAME> described the project as “bringing the internet’s image library to the internet’s publishing platform.” Although the plugin is useful for any type of website – from small blogs to businesses, it was large publishing organizations that provided the impetus for Unsplash to develop an official integration for WordPress.</p>\n\n\n\n<p>“We’ve been working with a lot of publishers as they integrate Unsplash into their publishing flows to replace legacy solutions,” Chesser said. “With so many publishers being powered by WordPress, we saw a repeated need for a high quality integration that could be shared by all of the publishers. In order to best serve them, we needed to offer something that we could ensure met their needs both now and in the future.”</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/instant-images/\">Instant Images</a>, a plugin that boasts one-click Unsplash uploads, is currently the largest competitor to the adoption of the official plugin with more than 50,000 active installs. Many other plugins have also added some form of Unsplash integration in the past. Chesser said his team has loved seeing the variety of applications developers have created with their API and they were hesitant to create their own plugin.</p>\n\n\n\n<p>“We saw a gap between the things big and small publishers were telling us, and the way the existing plugins had been developed,” he said. “Most existing plugins reupload the image to the WordPress library and then treat it as a standard image, which breaks a handful of things:</p>\n\n\n\n<ul><li>Image attribution to the original photographer is usually lost (or is no longer supported past the first usage)</li><li>The time it takes for the server to download the image and then reupload it can be slow</li><li>Out of the box, WordPress’s current support for dynamic image URLs that adapt to the device connection and screen size is limited and by using the Unsplash CDN, we could ensure that the right size image is served to better optimize for performance.”</li></ul>\n\n\n\n<p>When developing the official plugin, Unsplash and XWP took feedback from publishers and aimed to improve on how existing plugins handled images. After testing it, I found the search feature was fast and setup was a breeze. The plugin handles everything for the user invisibly in the background and its integration with the block editor makes it feel like a natural part of WordPress.</p>\n\n\n\n<h2>Unsplash Aims to Increase Its Audience by Enhancing the Publishing Workflow for WordPress Publishers</h2>\n\n\n\n<p>As Unsplash looks to define a new economic model around photography, WordPress-powered sites are a major consideration, since the platform powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">more than 37%</a> of Alexa’s top 10 million websites.</p>\n\n\n\n<p>Seven years after it started as a Tumblr blog, Unsplash is moving to directly monetize the site by working with brands to create photos that will appear in search results. “Unsplash for Brands” launched in December 2019 as an answer to the question of how Unsplash will make money. Companies pay to have their branded images show up prominently in search results alongside other organically ranking images that match users’ queries. </p>\n\n\n\n<p>“While they serve completely different purposes, I think a lot of brands are growing tired of the state of digital advertising today, with Facebook and Google having a host of problems around privacy, targeting, and negative consequences for culture,” Chesser said. “Unsplash allows brands to influence the visual mindshare of the internet while having an authentic and positive impact on their audience.” </p>\n\n\n\n<p>Launching an official WordPress plugin is a strategic move for Unsplash as it puts those branded images in front of a larger audience with users searching directly within the editor. Although the company continues to push out new features to the Unsplash API, many publishers did not have the resources to create their own integrations.</p>\n\n\n\n<p>“After so many conversations with publishers, both big and small, that want to integrate the Unsplash library but can’t due to resources, we felt that we needed to offer something more ready to use than the raw API or SDKs,” Chesser said.</p>\n\n\n\n<p>“We built the current version of the Unsplash for WordPress plugin so that it meets those needs of publishers now, but we know that we can push it a lot further in the future.” </p>\n\n\n\n<p>The first iteration of the plugin mirrors the flow and features that a user would have while navigating unsplash.com, while keeping the writer inside the editor. Now that Unsplash is integrated into the WordPress publishing flow, Chesser sees the opportunity to add more interesting features. Open sourcing the plugin also has the potential to increase Unsplash’s audience as developers extend its core features for use in other plugins.</p>\n\n\n\n<p>“Using the context of the post, we can help suggest images or prefill a search using natural language processing,” Chesser said. “We can link together Unsplash images with other WordPress tools to help publishers edit and process images directly in their posts. And with a lot of the work from the plugin being focused on making Unsplash images work natively inside of the WordPress Media Library, we can even open-source the core in such a way that developers can extend and reuse the functionality, avoiding duplication across all of our third party WordPress plugins.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2020 23:33:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Why Accessibility Matters for WordPress Themes and Their Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/why-accessibility-matters-for-wordpress-themes-and-their-users?utm_source=rss&utm_medium=rss&utm_campaign=why-accessibility-matters-for-wordpress-themes-and-their-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13307:\"<p>“Do you ever read the subtitles on a video so you didn’t need to unmute it?” asked <NAME>, a representative from the WordPress Themes Team. “Used the ‘beep’ from a crosswalk to know when to cross the road? Found yourself reading the info panel at an airport? Those things are considered features, but in reality, they are aids for people with additional needs.”</p>\n\n\n\n<p>As I talked with Patton and other reps from the Themes Team, it was clear they believed accessibility was a vital piece of the theme-building puzzle. The team has made small moves in the last year to bring more themes up to standards. However, it has been a slow-going process.</p>\n\n\n\n<p>Last July, the <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\">team initiated a plan</a> to add a new guideline every two months or so that would address a single accessibility issue. It would become every theme author’s responsibility to make sure they were meeting the new guidelines. It would be every reviewer’s responsibility to understand how to test guidelines as they were implemented. Thus far, the team has required only that themes have a working skip-to-content link and keyboard-capable navigation menus.</p>\n\n\n\n<p>Not every theme author was excited about the move. Some have still shown resistance a year later.</p>\n\n\n\n<p>Last week, we covered the Astra theme’s news of hitting 1 million active installs. A <a href=\"https://wptavern.com/astra-becomes-the-only-non-default-wordpress-theme-with-1-million-installs#comment-335038\">commenter made a point</a> that the data shows that end-users do not care about accessibility — the Astra theme makes no mention of being accessibility-ready. The conclusion was that the Themes Team should not be implementing such guidelines based on the success of one of the directory’s most popular themes.</p>\n\n\n\n<p>While there are several things we could do to pick apart the original comment and the limited view of the situation, we can instead use it as a catalyst to discuss why accessibility is something that should be at the forefront of every theme author’s mind. Patton, along with Themes Team representatives <NAME> and Denis Žoljom, had a lot to say on the subject.</p>\n\n\n\n<p>The overarching theme was that awareness is vital and that theme developers play a crucial role in making the web more accessible.</p>\n\n\n\n<h2>Awareness Is Key</h2>\n\n\n\n<img />\n\n\n\n<p>Žoljom likened the awareness of accessibility to that of a cisgender person looking at the world from the perspective of a transgender person. Once he became aware of larger issues, he made sure to address gender-specific pronouns in his code comments, such as replacing instances of “he” with “they.” He hopes such small changes spark similar changes from others.</p>\n\n\n\n<p>He said the situation was the same with accessibility. “It might not mean much to a person who doesn’t have any disabilities, but putting yourself in somebody else’s shoes changes one’s perspective. This is why we started to include things like skip links, keyboard nav, etc.”</p>\n\n\n\n<p>The team does not hope theme authors will merely become technically proficient at addressing accessibility issues in their themes. While that would be a help from a review standpoint, it addresses only the symptoms rather than root causes of the issues. Instead, by making more developers aware, they will begin to look at development from multiple perspectives. They will ask how a screen-readers will handle their theme. They will ask whether their colors have enough contrast for low-vision users to read. They will wonder if non-mouse users can navigate their users’ sites.</p>\n\n\n\n<p>The technical stuff is the easy part. Changing perspectives and becoming more empathetic toward those who are different is much more difficult. But not impossible.</p>\n\n\n\n<p>“A lot of us who build for the web are lacking some basic insights into what it is like to have additional needs beyond what is our own normal,” said Patton. “There is a saying: ‘if you could see it through my eyes, you would see it differently.’ If you could see through the eyes of someone with color blindness or impaired vision, you quite literally would see things differently.”</p>\n\n\n\n<p>The trouble with humans, in general, is that it can sometimes be hard to see things through someone else’s eyes. Of course, there are tools to simulate accessibility issues for developers, so that helps. However, these tools do not replicate what it is like to walk through life with a particular impairment or disability. Some of us can only partially glimpse the difficulties that others may have when navigating the web. This does not mean that we cannot address the downfalls of the software we build and become more inclusive to all people, especially if we are proactive when issues are raised.</p>\n\n\n\n<p>Nymark identified a few areas where the community can improve awareness:</p>\n\n\n\n<ul><li>Make sure that all contributors are aware of the WordPress accessibility requirements so that all new features are accessible.</li><li>Highlight accessibility improvements when WordPress is updated.</li><li>Feature more diverse use cases and highlight areas where the accessibility that is built into WordPress has helped people share and access important content.</li></ul>\n\n\n\n<p>“The themes team hopes that by making theme authors aware of accessibility issues, authors will learn that even small changes to their code and design can have a great positive impact,” she said.</p>\n\n\n\n<h2>Is Accessibility Important to End-Users?</h2>\n\n\n\n<img />\n\n\n\n<p>Certainly, accessibility is important for <em>some</em> users. It certainly mattered to <NAME>, a blind man who sued pizza chain Domino’s in 2016 for an inaccessible website. The court case was important enough that it moved through the system all the way to the U.S. Supreme Court. Ultimately, the <a href=\"https://wptavern.com/u-s-supreme-court-denies-dominos-appeal-to-determine-whether-websites-must-be-accessible\">higher court denied Domino’s appeal</a> of an earlier ruling. The U.S. 9th Circuit court had previously ruled that business websites fall under Title III of the American with Disabilities Act (ADA) and must meet accessibility standards.</p>\n\n\n\n<p>This was a landmark case in the U.S. for accessibility advocates last October. It is also worth remembering as we near the upcoming 30th anniversary of the ADA on July 26.</p>\n\n\n\n<p>Domino’s is a billion-dollar business. The company has enough money to fight such battles for years. They also have the money to hire world-class web developers to correct any accessibility issues.</p>\n\n\n\n<p>However, for small business owners, hiring a single developer, much less an entire agency or team, is often a non-starter. Many small businesses are fortunate to break even. WordPress and its ecosystem of free or low-cost solutions have democratized eCommerce on a scale previously unwitnessed. It means that mom-and-pop stores can have an online presence. It means teens can begin selling their custom art and a multitude of others can make money online without the backing of wads of cash.</p>\n\n\n\n<p>For these small business owners, many are unaware of accessibility concerns. They pick up a few plugins and find a theme that suitably matches their branding. The possibility of an impending accessibility-related lawsuit is the furthest thing from their mind. This is a major reason that WordPress needs to be a leader in meeting accessibility standards. Themes, which are the part of the site that visitors will interact with, are possibly the most important part of that equation.</p>\n\n\n\n<p>Some would argue that small business owners should understand the laws of their jurisdiction. That is true. However, it is also partly the responsibility of the software creators, says the Theme Team representatives.</p>\n\n\n\n<p>“Yes, the technology should account for additional needs,” said Patton. “Yes, the tooling should enable people to make good choices with regards to this. Yes, it should be easy to meet a minimum level of accessibility in the things we create with ease. Yes, it should be a fair assumption that the choices available to pick from are accessible.”</p>\n\n\n\n<p>The web is inherently accessible out of the box. Raw HTML is read and output by web browsers in such a way that the content can be accessed by anyone. Patton says that it is the things that developers do from that point forward that makes that experience better or worse.</p>\n\n\n\n<p>“Trade-offs are made that are well-intentioned but not always helpful,” he said. “Design trade-offs are the easiest to point out. Taking text and embedding it into an image means that some of its value is lost in exchange for it looking pretty. Using closely matching colors for text and background might create an interesting effect to some people but for others, it makes it impossible to read. Sometimes it’s about balancing those trade-offs with the needs of others, but it is those kinds of trade-offs that most people struggle to give up.”</p>\n\n\n\n<p>Nymark described some more technical issues that the average end-user should expect to simply be a non-issue. For example, it is reasonable to assume that a theme installed from the official WordPress directory would be free from HTML, PHP, and JavaScript errors. These are items that users should not have to worry about checking before activating the theme on their site. The errors should simply not exist.</p>\n\n\n\n<p>It is that level of quality control that end-users should expect in terms of accessibility, an assurance that the theme does all the things it is supposed to do. It is not about whether end-users “care” about accessibility.</p>\n\n\n\n<p>“If a form on a shop checkout page is not working, this can lead to loss of income,” she said. “Users rely on the technical solution provided by plugins and themes and expect everyone to be able to use their shop. Whether or not the site owner recognizes this as an accessibility issue is irrelevant because their page just needs to work.”</p>\n\n\n\n<h2>Why Theme Authors Should Care</h2>\n\n\n\n<img />\n\n\n\n<p>“If those who choose themes don’t consider accessibility and the theme author did not consider it, then the [visitors] of the sites built with those themes are the ones that lose out,” said Patton. “It’s not a huge leap to realize that low accessibility on your site directly equates to a reduction of potential users.”</p>\n\n\n\n<p>He said that end-users would naturally assume the themes they are picking from do not have accessibility issues. However, that assumption is typically far from accurate.</p>\n\n\n\n<p>“Theme authors should care about the accessibility of their creations so that the people picking their themes don’t need to use it as a deciding factor,” he said.</p>\n\n\n\n<p>My go-to response is that developers should concern themselves with accessibility because it is for the collective good. Humans should care about making sure that all other humans have the same freedoms that they enjoy, which are often take for granted.</p>\n\n\n\n<p>Even those who cannot view it from that perspective should be able to appreciate that it is a smart business decision. It makes little sense to leave money on the table, especially if you are a developer who is selling a theme or upselling additional features on top of a free theme. There is an entire segment of users that represents money lost.</p>\n\n\n\n<p>Additionally, more and more countries are implementing laws around web accessibility. Over time, such laws will be commonplace, particularly in the business sector. Inaccessible themes will lose users as such laws are enforced. Now is a good time to get ahead of impending change.</p>\n\n\n\n<h2>More Guidelines Ahead</h2>\n\n\n\n<p>The WordPress Themes Team has been slow about adopting additional guidelines surrounding accessibility. However, more are expected to land at some point. Team reps want to work with authors and reviewers alike to make the transition as painless as possible.</p>\n\n\n\n<p>“We have not added anything else because theme authors are still not releasing themes with working implementations of skip links and usable keyboard navigation,” said Patton. “When those two things become habitual, it will be time to introduce another aspect as a requirement.”</p>\n\n\n\n<p>The next guideline in line is expected to be underlined links in the post content. This would be an easy win if the team can get past the current stage. Right now, the team reps are unsure when that will happen.</p>\n\n\n\n<p>“The fact that this has taken so long for authors to get this right probably indicates that we need to do better at guiding them to resources to learn how to do it and why it is important,” said Patton. “Perhaps that is a better avenue to pursue than looking to implement additional asks of them.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2020 19:48:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.5 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3830:\"<p>WordPress 5.5 Beta 3 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong>This software is still in development,</strong>so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 Beta 3 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta3.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors who tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\">beta 2</a> development release and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress. </p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-2/\">beta 2</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F15%2F2020..07%2F21%2F2020&milestone=5.5&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">43 bugs</a> have been fixed. Here are a few changes in beta 3:</p>\n\n\n\n<ul><li>Plugin and theme versions are now shared in the emails when automatically updated (see <a href=\"https://core.trac.wordpress.org/ticket/50350\">#50350</a>).</li><li>REST API routes without a <code>permission_callback</code> now trigger a <code>_doing_it_wrong()</code> warning (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/50075\">#50075</a>).</li><li>Over 23 Gutenberg changes and updates (see <a href=\"https://github.com/WordPress/gutenberg/pull/24068\">#24068</a> and <a href=\"https://core.trac.wordpress.org/ticket/50712\">#50712</a>).</li><li>A bug with the new import and export database Dashicons has been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/49913\">#49913</a>).</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2020 17:51:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WordPress 5.5 to Remove Hulu from List of Supported oEmbed Providers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/wordpress-5-5-to-remove-hulu-from-list-of-supported-oembed-providers?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-5-to-remove-hulu-from-list-of-supported-oembed-providers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2311:\"<p>WordPress 5.5 will be dropping Hulu oEmbed support after Hulu silently disabled its oEmbed API. This is the API that allows users to copy and paste a link into the editor and have it automatically embed the content, as opposed to copying a chunk of embed code. Documentation contributors <a href=\"https://github.com/WordPress/gutenberg/issues/23920\">discovered that it wasn’t working</a> while attempting to document the Hulu Embed block.</p>\n\n\n\n<p><NAME> confirmed with Hulu that embedding is not currently an option. Hulu support did not elaborate on why it was removed.<a href=\"https://wptavern.com/wp-admin/edit.php?post_type=post\"></a></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Apologies for any disappointment! This isn\'t an available option at the moment, but we\'ll express your interest. If there\'s anything else we can help out with down the road, please don\'t hesitate to reach back out!</p>— Hulu Support (@hulu_support) <a href=\"https://twitter.com/hulu_support/status/1283562756726300672?ref_src=twsrc%5Etfw\">July 16, 2020</a></blockquote>\n</div>\n\n\n\n<p>The block currently displays an error when attempting to embed a Hulu link, stating “Sorry, this content could not be embedded.” As a result, WordPress contributors have <a href=\"https://core.trac.wordpress.org/changeset/48512\">removed</a> both the block from the editor and the provider from core. </p>\n\n\n\n<p>WordPress has included Hulu <a href=\"https://wordpress.org/support/article/embeds/#okay-so-what-sites-can-i-embed-from\">oEmbed support</a> for the past 11 years, since it was first added in <a href=\"https://wordpress.org/support/wordpress-version/version-2-9/\">WordPress 2.9</a> (December 2009). Services are <a href=\"https://wordpress.org/support/article/embeds/#okay-so-what-sites-can-i-embed-from\">logged</a> on WordPress.org as they are added or removed. Hulu was removed as soon as it was discovered that oEmbed support no longer worked, similar to other <a href=\"https://core.trac.wordpress.org/ticket/45399\">previously unsupported providers</a> – most recently FunnyOrDie and Photobucket. This is a major loss of convenience for users who are trying to embed Hulu links but it lies outside of WordPress’ control. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jul 2020 22:48:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Theme Authors Can Pass Data to Template Files in WordPress 5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/theme-authors-can-pass-data-to-template-files-in-wordpress-5-5?utm_source=rss&utm_medium=rss&utm_campaign=theme-authors-can-pass-data-to-template-files-in-wordpress-5-5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4777:\"<p class=\"has-drop-cap\">Theme developers can finally rejoice. For the first time, it is now possible to pass data to templates via the various core template-loading functions. <NAME> <a href=\"https://make.wordpress.org/core/2020/07/17/passing-arguments-to-template-files-in-wordpress-5-5/\">announced the change</a> on the Make Core blog this past Friday.</p>\n\n\n\n<p>The <a href=\"https://core.trac.wordpress.org/ticket/21676\">feature was originally proposed</a> by <NAME> in 2012. Over the years, the ticket has received a dozen patches. It has survived a closure and arguments over why the feature should not go into core. Sorcinelli was a primary driver that kept the ticket alive for the last few years.</p>\n\n\n\n<p>WordPress developers have been cleaning up some old-but-useful feature requests for the 5.5 release cycle. A couple of weeks ago, an 11-year-old ticket to allow users to <a href=\"https://wptavern.com/after-11-years-users-will-be-able-to-update-themes-and-plugins-via-a-zip-file\">update themes and plugins via a ZIP file</a> made the cut. Core developers even closed a 9-year-old ticket related to an <a href=\"https://core.trac.wordpress.org/ticket/17232\">Internet Explorer 6 hack</a> — <em>progress</em>. However, for theme authors, one of the most important additions is control over passing data from one template to another.</p>\n\n\n\n<p>Typically, in PHP, variables can be passed from file to file because they remain in the same scope. However, that is not the case if the inclusion of the file is taken out of that scope by including the file from inside of a function. The scope is then limited to the function. That is how the template system works in WordPress. This is not necessarily a bad thing. However, it has meant that theme developers have had no built-in method of passing data from one template to the next.</p>\n\n\n\n<p>Imagine creating a variable in one template but needing to access that same variable in a sub-template. There is no shortage of methods to accomplish this, but many are inelegant.</p>\n\n\n\n<p>“For years, theme developers wishing to pass data to template files have had to use less than ideal workarounds,” wrote Sorcinelli in the announcement. The worst solutions typically involved creating a global variable. Others created custom template-loading functions on top of WordPress’s existing system. The problem with all methods, regardless of which was ideal, was that no standard existed. Each theme would need to build its own solution, and plugins that touched the front end would often have a competing solution.</p>\n\n\n\n<p>All of the WordPress template-loading functions now support an additional parameter of <code>$args</code>, which allows theme authors to pass along an associative array of data to the loaded template. The functions that support this new parameter are:</p>\n\n\n\n<ul><li><code>get_header()</code></li><li><code>get_footer()</code></li><li><code>get_sidebar()</code></li><li><code>get_template_part()</code></li><li><code>locate_template()</code></li><li><code>load_template()</code></li></ul>\n\n\n\n<p>Any hooks associated with the functions also pass along the data.</p>\n\n\n\n<p>The <code>get_search_form()</code> function has supported a similar parameter since WordPress 5.2. In practice, it should work mostly the same, but the function has a couple of default values it sets.</p>\n\n\n\n<p>An additional benefit of having a standard method of passing data to templates is that the feature can be built upon in the future. For example, WordPress could eventually offer a hook for filtering the data, which could come in handy with child themes.</p>\n\n\n\n<p>The WordPress template system still lacks the robustness of more modern frameworks, but this simple change will allow for a variety of applications.</p>\n\n\n\n<p>One question remains: <em>is the arrival of this feature too late?</em> With WordPress on track to revamp the entire theme system to integrate with the upcoming full-site editing feature, will this feature be useful for only the next few months?</p>\n\n\n\n<p>Even if most theme developers don’t immediately jump on board the block-based themes bandwagon for another year, the feature could come in handy until they do. Perhaps it will also have some usefulness beyond the current theming paradigm.</p>\n\n\n\n<p>Developers still do not have a clear picture of what theming with blocks will look like in the next few years. There may be situations where passing dynamic data is still necessary in the next system. Even if not, it will likely be a long while before there is mass adoption of block-based themes from the existing theme development community. In the meantime, many will be able to drop in-house solutions and use standard functions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jul 2020 19:44:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Corner Office Interview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=51861\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://ma.tt/2020/07/corner-office-interview/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2488:\"<p>If you pick up a print edition of the Sunday New York Times today you’ll see <a href=\"https://www.nytimes.com/2020/07/12/business/matt-mullenweg-automattic-corner-office.html\">the Corner Office interview with <NAME> in the business section</a>. </p>\n\n\n\n<img />(Hat tip to <a href=\"http://www.maryconrad.org/\"><NAME></a> for the picture, I haven’t seen it in person yet.)\n\n\n\n<p>A quote that seems to be resonating with people,</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This column is called Corner Office, and most people who choose to have offices are usually the bosses. And I’ve been to the offices of billionaire C.E.O.s that have their own private bathroom, beautiful art and couches. But these are all things that you can have in your house. What I love about distributed organizations is every single employee can have a corner office.</p></blockquote>\n\n\n\n<p>Sometimes my corner office has been the corner of an airport floor next to a power outlet! I’ve also heard from colleagues that feel like their office feels like an unsupervised day care center since the quarantine started. The point I want to make is there’s a world of possibility that opens up when you move from the finite space of a shared office, and all the politics of dividing up the scarce resource of desirable space, to the <a href=\"https://www.amazon.com/Finite-Infinite-Games-James-Carse/dp/1476731713\">infinite game</a> where people can define their own “office” as the place where they will be most productive, and do so however they like with no penalties or restraints.</p>\n\n\n\n<p>If you had the best space in the legacy office, you probably liked it and may even have had motivated reasoning around ineffable things that happened in the office like “culture” that would be impossible without it, but the average experience of an entry-level worker was not as positive. Now there can be a much more even playing field. At <a href=\"https://automattic.com/\">Automattic</a> we have a home office allowance people can use to buy equipment they need to make their home work area comfortable and productive, and it’s the same if you’re leading a team of hundreds or if it’s your first job.</p>\n\n\n\n<p>If you’d like to hear the entire conversation <a href=\"https://www.youtube.com/watch?v=fFg6YcBB2uI&feature=youtu.be\">they’ve posted the original audio and interview</a> that was distilled into the print version.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Jul 2020 21:13:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: All in One SEO Pack Plugin Patches XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/all-in-one-seo-pack-plugin-patches-xss-vulnerability?utm_source=rss&utm_medium=rss&utm_campaign=all-in-one-seo-pack-plugin-patches-xss-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1843:\"<p><a href=\"https://wordpress.org/plugins/all-in-one-seo-pack\">All in One SEO Pack</a> patched an XSS vulnerability this week that was <a href=\"https://www.wordfence.com/blog/2020/07/2-million-users-affected-by-vulnerability-in-all-in-one-seo-pack/\">discovered</a> by the security researchers at Wordfence on July 10. The popular plugin has more than 2 million active installs, according to WordPress.org.</p>\n\n\n\n<p>Wordfence researchers categorized it as “a medium severity security issue” that could result in “a complete site takeover and other severe consequences:”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This flaw allowed authenticated users with contributor level access or above the ability to inject malicious scripts that would be executed if a victim accessed the wp-admin panel’s ‘all posts’ page.</p></blockquote>\n\n\n\n<p>Version 3.6.2, released on July 15, 2020, includes the following update in the changelog: “Improved the output of SEO meta fields + added additional sanitization for security hardening.”</p>\n\n\n\n<p>All in One SEO Pack users are strongly recommended to update to the latest version. At the time of publishing, just 12% of the plugin’s user base is running versions 3.6.x, which includes the three most recent versions. This leaves more than 1.7 million installations (88% of the plugin’s users) vulnerable. </p>\n\n\n\n<p>Many users don’t log into their WordPress sites often enough to learn about security updates in a timely fashion. Plugin authors often don’t advertise the importance of the update on their websites or social media. This is the type of situation that WordPress 5.5 should help to mitigate, as it introduces admin controls in the dashboard that allow users to enable automatic updates for themes and plugins. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2020 21:48:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: WPCampus Online 2020 Conference Features Accessibility and Higher Education Topics, July 29-30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102003\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"https://wptavern.com/wpcampus-online-2020-conference-features-accessibility-and-higher-education-topics-july-29-30?utm_source=rss&utm_medium=rss&utm_campaign=wpcampus-online-2020-conference-features-accessibility-and-higher-education-topics-july-29-30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4948:\"<p><a href=\"https://www.wpcampus.org/\">WPCampus</a>, a community focused on WordPress and higher education, will host its 5th annual in-person conference as a free, <a href=\"https://2020.wpcampus.org/\">online event</a> this year. The two-day event will feature sessions, lightning talks, sponsor demonstrations, and trivia, July 29-30, 2020. </p>\n\n\n\n<p>Although the WPCampus community is no stranger to hosting online events (they usually host a virtual conference in January), current events have forced educational institutions to rely more heavily on those who maintain their digital infrastructure. Many WPCampus members fall into this category and are operating under a great deal more stress as compared to previous years. The community has more than 1,116 members representing 688 institutions.</p>\n\n\n\n<p>“In higher ed, ‘wearer of many hats’ is a common saying,” WPCampus director <NAME> said. “Per usual, most who work in our space are already going above and beyond to cover numerous job roles. For example, I was always a team of one: I designed the site, programmed the site, performed QA, and managed content editors. With the pandemic forcing many universities to increase their online presence, higher ed web professionals are busier than ever, working to help with the transition while bearing the stress of lowered budgets, working from home, and whether or not their physical campus will open for the fall semester.” </p>\n\n\n\n<p>As many institutions are moving to make their courses available online, Cherry said ensuring that vital resources are accessible has become even more critical.</p>\n\n\n\n<p>“The pandemic forced a vast majority of our society’s processes and interactions to go online, and it’s shining a spotlight on how inaccessible a lot of our systems are,” she said. “For example, online event platforms became a necessity for conferences. But the vast majority of these platforms are inaccessible. Crowdcast, for instance, is nearly impossible to use if you can’t use a mouse. Using inaccessible online platforms for your event is no different from denying attendee access at the door because the building doesn’t have a wheelchair ramp.”</p>\n\n\n\n<p><a href=\"https://2020.wpcampus.org/\">WPCampus Online 2020</a> will include a selection of sessions from accessibility experts on topics such as justifying the budget for accessibility initiatives, accessibility for non-developers, Gutenberg accessibility, end-to-end accessibility testing, and mobile site and native app accessibility testing guidelines. If you are looking to deepen your knowledge of accessibility, this conference features more sessions on this topic than most WordCamps.</p>\n\n\n\n<p>The event’s <a href=\"https://2020.wpcampus.org/speakers/\">schedule</a> also includes other topics of interest to those in higher education with sessions on managing multiple WordPress sites, building a self-publishing platform, extending the WP REST API, automation tools, data visualization for WordPress, and improving website performance.</p>\n\n\n\n<p>In lieu of giving away swag for the event, WPCampus is coordinating a fundraising effort for the Black Lives Matter movement and those struggling with COVID-19. The organization will <a href=\"https://2020.wpcampus.org/donate/\">match donations</a> to the following organizations: </p>\n\n\n\n<ul id=\"input_10_4\"><li>Black Lives Matter</li><li>The American Civil Liberties Union (ACLU)</li><li>NAACP Legal Defense Fund</li><li>Black Girls Code</li><li>Feeding America</li></ul>\n\n\n\n<p>Cherry reports that more than 350 people have registered so far and she anticipates 500-600 attendees online this year. WPCampus will stream the session videos on YouTube and they will be recorded and available after the event. <a href=\"https://2020.wpcampus.org/register/\">Registration</a> is free, thanks the the event’s sponsors, which include many WordPress agencies, hosts, and contributing individuals.</p>\n\n\n\n<p>Despite the disappointment at not being able to meet in-person in New Orleans this year, Cherry said she is grateful for the “more in-depth than usual” time the community will have to spend together during the virtual conference. WPCampus members have found camaraderie and encouragement in their community by sharing stories and asking each other for help during this profoundly challenging time. </p>\n\n\n\n<p>“We’ve become a family,” Cherry said. “And not just with higher ed and other web professionals, but with the vendors that support us and want to invest in our growth. Because of our events and community, we were able to sponsor the Gutenberg accessibility audit and play a huge role in improving the accessibility of the WordPress platform. I am incredibly proud of the ever-increasing focus, education, and advocacy our community has placed on accessibility.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2020 20:44:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Should WordPress Themes Add a Top-Level Admin Menu Item?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/should-wordpress-themes-add-a-top-level-admin-menu-item?utm_source=rss&utm_medium=rss&utm_campaign=should-wordpress-themes-add-a-top-level-admin-menu-item\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7349:\"<p class=\"has-drop-cap\">WordPress has almost always provided a top-level admin menu item for themes. It is clearly labeled “Appearance.” It is the single location that all WordPress users know to visit to modify any appearance-related things for their WordPress site. However, there is a movement within the Themes Team to allow themes to <a href=\"https://make.wordpress.org/themes/2020/07/13/proposal-allow-themes-to-add-a-top-level-admin-menu/\">place an additional top-level menu link</a> in the admin. The big question: <em>should this idea move forward?</em></p>\n\n\n\n<p>When the Themes Team (originally called the Theme Review Team) was formed, its members created a set of guidelines that would be shaped and reshaped over the years. They were a set of living guidelines that could always be changed with the times.</p>\n\n\n\n<p>One of the oldest guidelines required that themes must place any custom admin pages under the Appearance menu item. It made sense. WordPress provided a standard location for any theme-related pages. The custom header and background features lived under Appearance. Widgets, also defined by the current theme, were housed as a sub-page. Eventually, WordPress’s custom nav menu system came along and was — you guessed it — situated under Appearance. The core developers even put the customizer link in the same place.</p>\n\n\n\n<p>For over a decade, there was a well-defined standard. Sure, commercial themes outside of the official directory would sometimes break the mold. However, themes from the directory followed the pattern.</p>\n\n\n\n<p>Now, the Themes Team is proposing that themes should be able to break from tradition.</p>\n\n\n\n<p>The discussion arose after a question of whether themes should be able to add a custom panel to the block editor sidebar, which is not allowed.</p>\n\n\n\n<p>“To keep the editor free from clutter, advertising and upsell, with the customizer being used less, and no dashboard widgets being allowed, can we give theme authors a better place to include their information, and limit upsell to that area?” wrote <NAME> in <a href=\"https://make.wordpress.org/themes/2020/07/10/meeting-notes-tuesday-7th-of-july-2020/\">last week’s team meeting notes</a>.</p>\n\n\n\n<p>The proposal seems to settle on the idea that themes will lose visibility as WordPress moves toward full-site editing and the customizer becomes less important. The customizer is not an ideal place for anything but theme options, but that notion seems to have been overlooked in the discussion. Nevertheless, the original guideline that disallowed themes from creating top-level menu items preceded the advent of the customizer by several years. Advertising, documentation, plugin recommendations, and similar pages were always allowed under the existing Appearance menu. The usefulness of the customizer was never a necessary part of that conversation.</p>\n\n\n\n<p>Ultimately, the question should be about what is best for users. There is no data to support making the change or sticking with the status quo. However, we do have a standard that has existed for years.</p>\n\n\n\n<h2>The Proposed Guidelines</h2>\n\n\n\n<p class=\"has-drop-cap\">The proposal would create several new guidelines for theme authors to follow and reviewers to check, assuming the theme created a top-level admin menu item:</p>\n\n\n\n<ul><li>No admin menu priority may be used.</li><li>No UI or color changes are allowed for the menu item.</li><li>The title must be kept short and not include spam.</li><li>No more than three sub-pages.</li><li>Child themes are limited to one sub-page or can remove the parent’s pages and add its own.</li></ul>\n\n\n\n<p>Some of these make sense and follow along with existing guidelines, such as not spamming or changing the admin UI. However, others could be problematic.</p>\n\n\n\n<p>If moving forward with the proposal, setting a menu item priority should be required rather than not allowed. If anything, it would make sense to require a specific priority to place the custom menu item immediately after the existing Appearance item. This would at least group them together by default. If changing the place where users are accustomed to seeing theme-related pages, it is probably best not to break too far from the standard location.</p>\n\n\n\n<p><em>No more than three sub-pages?</em> Surely there will be a theme with a top-level admin menu item that needs four sub-pages at some point. If giving theme authors the freedom to take up valuable real estate in the admin, a limit of three sub-pages seems like a rule to fix the mistake of allowing the top-level item in the first place. It is an arbitrary number at best. There would be no reason to cap it once making the guideline change. It also adds one more item that the team will need to police.</p>\n\n\n\n<p>The limitation of sub-pages for child themes seems just as arbitrary. No such limitation exists when placing sub-pages under the standard Appearance screen.</p>\n\n\n\n<p>The entire proposal is little more than extra work on a team that is already strained for resources.</p>\n\n\n\n<p>Instead of the simple rule that has existed for years, the proposal adds a new rule with several sub-rules. If the team desires the extra work, I suppose this point doesn’t matter.</p>\n\n\n\n<h2>The Elephant in the Room</h2>\n\n\n\n<p class=\"has-drop-cap\">There is one aspect of this discussion that everyone knows about but few are willing to broach. Underneath all the guidelines from the Themes Team and whether most theme authors support a particular decision is how this affects the financial bottom line. When we talk about <em>visibility</em> of a theme’s admin pages, we are primarily talking about providing another avenue for commercial upsells.</p>\n\n\n\n<p>Some of this discussion on visibility is shrouded in concepts such as surfacing end-user documentation or adding a visible <em>readme</em> for the user’s benefit. These are legitimate concerns, especially when theme developers have watched <a href=\"https://meta.trac.wordpress.org/ticket/215\">tickets to address such downfalls</a> seemingly dwindle into obscurity over the years. Whether a top-level admin menu item makes sense for exposing theme documentation might be worth discussing, but there is no world in which this would be the primary use case.</p>\n\n\n\n<p>The topic of visibility rests on the idea of upselling the pro version of the theme, add-ons, or other services.</p>\n\n\n\n<p>Far too many plugins already go overboard, creating a billboard of the WordPress admin. One of the things users could almost be assured of is that themes from the official directory were constrained enough that they were not the hot mess that plugins have become as of late. However, that could all change.</p>\n\n\n\n<p>Do we really want an extra top-level admin menu item that will be, for all intents and purposes, to advertise?</p>\n\n\n\n<p>Maybe it doesn’t matter in the end. Users are so accustomed to the clutter produced by the dozens of plugins on their sites. One more may not matter at this point.</p>\n\n\n\n<p>Or, should we be having a different conversation altogether? If this ultimately boils down to advertising, are there ways we can open this up for theme authors while still creating a user experience that keeps the WordPress admin free of clutter?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2020 20:03:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Astra Becomes the Only Non-Default WordPress Theme With 1 Million Installs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101924\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/astra-becomes-the-only-non-default-wordpress-theme-with-1-million-installs?utm_source=rss&utm_medium=rss&utm_campaign=astra-becomes-the-only-non-default-wordpress-theme-with-1-million-installs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5336:\"<p class=\"has-drop-cap\">On Tuesday, Brainstorm Force announced its Astra theme <a href=\"https://wpastra.com/one-million-active-installs/\">passed 1 million active installations</a>. It is the only non-default theme in the official WordPress theme directory to reach such a height.</p>\n\n\n\n<p>Popularity breeds popularity. Once the theme broke 50,000 installs in January 2019, it was a quick hop and skip to 500,000 in October and 1 million less than a year later. With the winds of momentum at its back, the theme may become an unstoppable force. It is anyone’s guess when growth will begin to plateau.</p>\n\n\n\n<p>“We recognize that this is not an ordinary feat,” wrote S<NAME> in the announcement post. He said the team has no plans of resting at this point. “1 million is just a milestone in our journey.”</p>\n\n\n\n<p>Many WordPress plugins have long ago passed the million-install milestone. Several have multi-millions. However, this is a much tougher feat for themes. One of the limiting factors is that users can only activate one of them at a time. There is no limit when it comes to plugins, and users often have dozens running at once. One million active installs is a level of popularity that is almost unheard of in the theming world.</p>\n\n\n\n<p>“There is a huge gap between Astra and all others,” said <NAME>, a WordPress Themes Team representative. “Hitting 1 million is pretty astounding honestly.”</p>\n\n\n\n<p>This is not simply a major milestone for the Astra theme. It is huge for WordPress. For a third-party theme creator to reach a number that only the default themes can boast is the sort of thing we should all rejoice in a bit. It is a testament to how much WordPress has grown over the years.</p>\n\n\n\n<p>Aside from the default themes that ship with WordPress, there are currently five themes with more than 100,000 active installs:</p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/astra/\">Astra</a> – 1 million</li><li><a href=\"https://wordpress.org/themes/oceanwp/\">OceanWP</a> – 600,000</li><li><a href=\"https://wordpress.org/themes/generatepress/\">GeneratePress</a> – 300,000</li><li><a href=\"https://wordpress.org/themes/hello-elementor/\">Hello Elementor</a> – 300,000</li><li><a href=\"https://wordpress.org/themes/storefront/\">Storefront</a> – 200,000</li></ul>\n\n\n\n<p>Once that first theme passes the 1 million mark, it is only a matter of time before others start breaking the barrier. OceanWP has the shortest striking distance and could be next. However, Hello Elementor is moving fast and earned its install count in a year and a half.</p>\n\n\n\n<p>Regardless of the next theme to hit the milestone, this is one of those moments we should look back on in a few years to see how far we have come. Perhaps 1 million active installs will merely be a stepping stone to even greater heights for large numbers of themes.</p>\n\n\n\n<h2>What Makes Astra Special?</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">The default Astra theme is not anything particularly revolutionary on the surface. Out of the box, users are given a nearly blank canvas. It seems little more than your run-of-the-mill WordPress theme that would not garner much attention. However, it has one of the easiest setup processes that I have ever experienced with any theme. At the click of a button, end-users can pick from a plethora of starter templates.</p>\n\n\n\n<p>There are hundreds of starter templates for Elementor and Beaver Builder. The Brizy page builder gets a little love too. There is even a modest 20 starter templates for Gutenberg. The theme’s block editor styling leaves a lot to be desired, but I would wager that Brainstorm Force is serving a primary audience of Elementor users. The team probably won’t have a huge incentive to change that anytime soon. And, there is really no need to. Elementor <a href=\"https://elementor.com/blog/5-million-active-installs/\">passed 5 million active installs</a> in May and is showing no signs of slowing down. Smart theme development businesses are making sure they support the plugin. Elementor support is where the money is right now.</p>\n\n\n\n<p>Astra’s starter templates are not merely templates. The theme will install and activate plugins needed too.</p>\n\n\n\n<p>Many of the templates are free, but some are available for purchase. The theme allows users to filter the search between free and “agency” templates, so there is no trickery going on as is often the case with similar themes from the directory. They clearly label any upsells in the admin. At a time when the WordPress Themes Team struggles with theme authors circumventing advertising guidelines, Astra seems to be hitting a sweet spot that is both user-friendly and within the directory rules.</p>\n\n\n\n<p>While good marketing and business plans go a long way toward getting installation numbers up, you cannot keep those numbers without building a product that users will continue using. Its simple import process makes it an easy go-to choice for anyone who doesn’t relish the idea of spending hours trying to make their site look like the demo.</p>\n\n\n\n<p>The theme’s users can probably best answer the question of Astra’s popularity. Brainstorm Force is clearly doing something right.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jul 2020 19:38:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Blocksy Theme Adds New Charity Starter Site, Pro Version to Launch in 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101884\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/blocksy-theme-adds-new-charity-starter-site-pro-version-to-launch-in-2020?utm_source=rss&utm_medium=rss&utm_campaign=blocksy-theme-adds-new-charity-starter-site-pro-version-to-launch-in-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4087:\"<p><a href=\"https://wordpress.org/themes/blocksy/\">Blocksy</a> is one of the best free themes available for the block editor right now and is rapidly growing in popularity. CreativeThemes, the Romania-based company behind the theme, released an update to Blocksy this week, along with a new starter site for charities. </p>\n\n\n\n<p>The concept of “starter sites” is an interesting new twist on “starter templates,” which essentially allow users to import the content from a demo. Theme makers for products like <a href=\"https://creativethemes.com/blocksy/\">Blocksy</a>, <a href=\"https://wpastra.com/\">Astra</a>, and <a href=\"https://github.com/godaddy-wordpress/go\">Go</a> use this approach to help users implement different types of websites by importing the content from a pre-built demo site. The demos use the same base theme but vary widely in how they are customized. </p>\n\n\n\n<p>Blocksy’s starter sites are a one-click XML demo import that automatically brings in the pages, images, and theme options. This puts all the blocks in the right place so the user needs only to customize the demo, instead of trying to find the right settings to match the demo.</p>\n\n\n\n<p>The new <a href=\"https://demo.creativethemes.com/blocksy/charity/\">Charity starter site</a> is built with the <a href=\"https://wordpress.org/plugins/stackable-ultimate-gutenberg-blocks/\">Stackable</a> plugin’s page builder blocks. It joins four other <a href=\"https://creativethemes.com/blocksy/starter-sites/\">free starter sites</a> designed specifically for blogs, apps, travel, and e-commerce. The design can be imported under the Blocksy menu in the WordPress admin.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>According to the theme’s beautifully designed and user friendly <a href=\"https://creativethemes.com/blocksy/changelog/\">changelog</a>, Blocksy can now automatically detect Custom Post Types and add their appropriate options. The update also adds a sizing option for related posts thumbnails, a new Twitch social icon, and improves compatibility with WooCommerce product display and miscellaneous extensions.</p>\n\n\n\n<h2>Blocksy Pro Version Coming Soon </h2>\n\n\n\n<p>When we first <a href=\"https://wptavern.com/blocksy-wordpress-theme-provides-a-solid-block-editor-experience\">reviewed</a> the theme in January 2020, it had 1,000 active installs and 58 five-star reviews. Over the past six months, the theme’s user base has grown to more than 4,000 active installs and a perfect five-star rating on WordPress.org from 191 reviewers. It is currently maintained by a team of two – <NAME> and <NAME>.</p>\n\n\n\n<p>Blocksy’s creators have been working on custom projects and random jobs to support the time they spend developing the theme but they plan to launch a pro version as early as this summer.</p>\n\n\n\n<p>“We plan to add more features in the premium version, more demos, and also offer better and faster support,” Radu said. “I hope after we release the premium version we will be able to take on a few more people in our team to help us, at least with support so we can concentrate better on development.”</p>\n\n\n\n<p>Radu said the pro version will include some premium starter sites as well as additional functionality for the base theme. They are aiming to include the following features in the first release:</p>\n\n\n\n<ul><li>Multiple conditional headers</li><li>Multiple conditional footers</li><li>Multiple conditional sidebars</li><li>More header elements</li><li>More footer elements</li><li>White labeling</li><li>Custom fonts extension</li><li>Adobe Typekit extension</li><li>Hooks (conditional)</li><li>Sticky header</li></ul>\n\n\n\n<p>In a second round of updates for the pro version, Blocksy creators plan to include features like custom color palettes, AMP, LearnDash, and EDD integrations, along with extensions for ads, mega menus, and portfolios. In the meantime, Radu says they do not plan to add more features to the free version – only improvements and new starter sites. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2020 22:32:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: Eye-Catching Typography and Personality: Blossom Themes Launches Sarada Lite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/eye-catching-typography-and-personality-blossom-themes-launches-sarada-lite?utm_source=rss&utm_medium=rss&utm_campaign=eye-catching-typography-and-personality-blossom-themes-launches-sarada-lite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6064:\"<img />Sarada Lite homepage.\n\n\n\n<p class=\"has-drop-cap\">Blossom Themes launched <a href=\"https://wordpress.org/themes/sarada-lite/\">Sarada Lite</a>, its 25th theme, on the WordPress theme directory today. The theme is billed as a “feminine blog theme” specifically for professional bloggers. However, it would work well in a variety of contexts. While it is targeted at fashion, travel, and lifestyle bloggers, it is well-rounded enough for anyone who wants a touch of personality as part of their blogging experience.</p>\n\n\n\n<p>I nearly passed over this theme. It had no mention of the block editor or Gutenberg in its description. It was not tagged in the directory as having editor styles (technically, it doesn’t have them). There are few themes that I give much attention to if they do not style the latest features and blocks in WordPress. It has to be truly eye-catching otherwise. Sarada Lite is a breathtaking design, so it drew me in. It is the sort of theme that inspires me to write. Plus, its light color scheme along with the author’s choice of images in the demo fit perfectly into the summer season. It simply makes me want to sit on the beach with a mojito and my laptop ready to spin up some great content.</p>\n\n\n\n<p>What makes this theme stand out is its typography. The status quo with most free themes in the WordPress theme directory is to simply not give any attention to things like font size, characters per line, line height, or vertical rhythm. Long-form content is practically unreadable with such themes. However, long-winded writers need not be fearful of the reader losing interest because of the design. Sarada Lite creates an inviting atmosphere that beckons the visitor to actually read.</p>\n\n\n\n<p>The theme supports several plugins, most of which are a part of the Blossom Themes collection. They are unnecessary for a solid blogging experience with this theme. Users should shy away from taking advantage of every bell and whistle the theme or its add-ons provide. The default setup is mostly where the theme shines.</p>\n\n\n\n<p>Users who need a shop can also enjoy WooCommerce integration. The theme does not add much in the way of shop-related features, opting to style the default output of the eCommerce plugin instead.</p>\n\n\n\n<h2>Design Elements Worth Noting</h2>\n\n\n\n<img />Single post view.\n\n\n\n<p class=\"has-drop-cap\">When testing and reviewing themes, it is often easy to get lost in the features. However, with Sarada Lite, it’s not the theme features that are important. They may even be a detriment to the theme (more on that later). The thing that makes this theme special is the small design elements. The author puts a unique spin on things that give the theme a personality of its own. Designers who want to show off their design chops often go overboard, but Sarada Lite has just enough flair to draw attention to important elements without getting in the way of the content.</p>\n\n\n\n<p>In particular, the theme’s use of the <a href=\"https://fonts.google.com/specimen/Caveat\">Caveat font</a> gives secondary text just the right amount of pop. It is not a font that lends itself well to long-form content. However, the theme makes use of it for links, captions, quote citations, and a few other elements.</p>\n\n\n\n<img />Sarada Lite’s blockquote design.\n\n\n\n<p>The theme offers various layouts with and without a sidebar. For single posts, I recommend dropping the sidebar and choosing the full-width centered layout to make full use of the block editor’s capabilities. This gives enough breathing room for users who like to make liberal use of wide and full-width blocks. The theme has an option to change the layout globally and on a per-post basis.</p>\n\n\n\n<h2>Issues</h2>\n\n\n\n<p class=\"has-drop-cap\">One of the biggest issues with Sarada Lite is that users do not get a one-to-one match between the editor and the front end. The missing piece is the theme’s beautiful typography. It is nowhere to be found while writing a post. The theme’s admin-side CSS is bare-bones to the point where there is little use in loading the stylesheet. I hope this is merely something the theme author skipped for version 1.0 with a firm plan to add it in the next release. At worst, it is an extra couple of hours of work that offers a huge benefit to theme users.</p>\n\n\n\n<p>The other major downside of Sarada Lite is that it tries to do too much. Its customizer options feel a bit overboard and disorganized. In too many cases, I was left wondering what a particular option was for or searching around for specific options in odd places.</p>\n\n\n\n<p>I also found the Instagram feed (available via the Blossom Themes Social Feed add-on) in the header to be a horrendous addition, ruining what is an otherwise open and inviting design. Fortunately, this is an optional feature. Once again, the theme is doing too much here. I understand it is a bullet point on the ol’ marketing sheet, but it is an eyesore in practice. The Instagram feed works much better in the footer. My advice for theme users: avoid putting this in your header at all costs. Your site visitors should not need to skip over social media images just to get to your content.</p>\n\n\n\n<p>As gracefully as the various sliders on the theme’s homepage are done, I am now and always anti-slider. They offer no real benefit to the reader and often hide away content that would have otherwise been seen. The theme’s slider sections, some of which are optional, are relatively low-key. I have seen far worse, but I would rather not see them at all.</p>\n\n\n\n<p>Despite the theme’s issues, they are not so detrimental that I wouldn’t recommend the theme. Assuming the theme author adds in editor styles that match the front end, the other issues can mostly be avoided by user choice. The theme works well without tinkering with its options and adding extra plugins.</p>\n\n\n\n<p>Sarada Lite is best without all the extras. What the user does with the theme will make or break the experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2020 20:56:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"HeroPress: Second Chances: How A Trip Back Into The WordPress Community Saved My Life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:220:\"https://heropress.com/essays/second-chances-how-a-trip-back-into-the-wordpress-community-saved-my-life/#utm_source=rss&utm_medium=rss&utm_campaign=second-chances-how-a-trip-back-into-the-wordpress-community-saved-my-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7043:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/07/071320-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The energies received in return for giving back to the WordPress community healed me emotionally, allowing me to contribute creatively.\" /><p>Often, we refuse change and don’t get a second opportunity to make things right. But for me, June 17, 2017, changed my life forever. A life-threatening heart event forced me to start over and in the short time since WordPress helped me rediscover myself and to do the things I truly love.</p>\n<p>At 10 am that morning, I was laid out flat on a cold, hard operating table being poked, prodded, and prepped for a surgical procedure. According to my doctors, this procedure was the only sure way to find out what had been plaguing me for five long years. Within the next sixty minutes, if things go sideways, I could be dead.</p>\n<p>As I slowly came to, words floated through a lifting fog of anesthesia. “You had two 100% blocked arteries,” my cardiologist said. A flood of concern and questions seemed to flow freely foremost, “what will happen to me?”</p>\n<h3>Two Paths Lead to WordPress</h3>\n<p>Looking back, my WordPress journey has two paths, pre- or post-heart event. When the lead developer and CSS goddess left our public transit agency almost 10 years ago, they left behind a company news blog with the Headway theme. That year we were fortunate to have room in our budget allowing me to attend the WordPress VIP Intensive Developer Workshop in Napa.</p>\n<p>At that time my experience was entirely in basic static HTML as a web designer so imagine how lost and out of place I felt being asked to “spin up a virtual box” midway through the first day. Surrounded by the best and the brightest distributed Automatticians from around the world, person after person answered my questions or assisted in any way they could. That day I learned what the phrase WordCamp Community really meant.</p>\n<h3>Leaving the Past Behind</h3>\n<p>What if you got a do-over? A mulligan, a reset button? Imagine being totally free from the stressors of the daily grind, similar to being a young child, with nothing to do but play all day.</p>\n<p>Staring at the ceiling from my bed while recovering, I decided to stop the world and get off. I took a leave of absence from work beginning September 11. Looking deep within, I searched to rediscover me and the loves of my life – giving selflessly to others, picking up a pencil to sketch, storytelling, and WORDPRESS.</p>\n<p>Every day for the next ninety days, I resolved to do only the things reconnected me with things dormant in my past that brought me joy:</p>\n<ul>\n<li>Each morning I’d pick up a pencil, sketch;</li>\n<li>I’d exercise and practice mindfulness; and</li>\n<li>No day would be complete without giving back, doing something with WordPress for others. Like an Agile process, I’d loop through these tasks, reassess, then repeat, each morning becoming stronger than the previous.</li>\n</ul>\n<p>Slowly, progress was being made in my recovery. From feeling faint and unable to walk from my bedside to my bathroom; 100 steps turned into 100 yards then one lap at my local park. I set a goal to climb to one of the highest points in our area, the top of Central Park.</p>\n<h3>The Journey of 4,890 Miles Begins with One Step</h3>\n<p>My second path into WordPress started later that summer. Untethered, I walked into my first-ever official WordPress Meetup in a coworking space located downtown Los Angeles, apprehensive, unsure what to expect. That evening a wonderful speaker on SEO followed the organizers from WordCamp Los Angeles calling for volunteers and I immediately raised my hand. The old me would not have.</p>\n<p>From that point through December, I attended almost twenty (20) WordPress Meetups, attended four WordCamps (Grand Rapids, Los Angeles, Riverside, and United States via Livestream) logging almost 5,000 miles in the process. Rebuilding a website for a printing company pro bono while rehabilitating my heart and body. The energies received in return for giving back to the WordPress Community healed me emotionally, allowing me to contribute creatively — I loved it and wanted to do even more!</p>\n<h3>Making a List, Checking It Twice</h3>\n<p>Tired of driving home very late nights from area Meetups from all points around SoCal, I decided to start a meetup locally. On January 26, 2018, at 7:30 pm, I reached the last slide of my first presentation at our official WordPress Santa Clarita Valley Meetup. It read, “host the first annual WordCamp Santa Clarita”.</p>\n<p>The faces in the audience – Tom, Steve, Matt, and others new to WordPress all looked at me skeptically, seeing someone full of dreams, spouting enthusiasm. But one thing was clear to me — WordPress had given me a shot at reclaiming something laid dormant and anything seemed possible.</p>\n<p>Sixteen (16) months later, the first WordCamp north of Los Angeles and south of Sacramento since 2014 debuted in Santa Clarita. A small, but an incredible team of volunteers bought into my enthusiasm turned around and gave back to our attendees in our WordPress Community.</p>\n<h3>Speak On It</h3>\n<p>In my pre-heart event life, I began public speaking in a formal setting completing over 40 presentations but had stepped off the stage years earlier in a company club. Back in 2014 while walking through the break room at WordCamp Los Angeles one of the lead organizers handed me a mic and asked me to speak. Afterward, he said, “you should present at a WordCamp.”</p>\n<p>Four years later, I stood on stage at WordCamp Chicago sharing my WordPress journey and hoping to inspire others to never give up on going after your dreams. Until that weekend in Chicago, I hadn’t seen any African-American men onstage and felt it important to encourage diversity through my message of rebirth.</p>\n<blockquote><p><i>“Live as if you were to die tomorrow. Learn as if you were to live forever.” </i></p>\n<p><i><NAME></i></p></blockquote>\n<p>I’ve met the most incredible group of nurturing, giving, and talented people stretching back to Sara (Rosso) in Napa through Angela (Jin) or David (Bisset) on the WordCamp US team. Every time I needed confidence or a word of encouragement Cami (Kaos), Kathy (Drewien), Brandon (Dove), or someone in the Community was that steadying hand on my shoulder.</p>\n<p>I think about these words often as inspiration, waking each morning to greet the sunrise full of ideas and promise. How can I give back? What can I do with WordPress today?</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/second-chances-how-a-trip-back-into-the-wordpress-community-saved-my-life/\">Second Chances: How A Trip Back Into The WordPress Community Saved My Life</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2020 11:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"<NAME> Jr.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordCamp Europe Goes Virtual for 2021, In-Person Conference to Resume 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101866\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/wordcamp-europe-goes-virtual-for-2021-in-person-conference-to-resume-2022?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-europe-goes-virtual-for-2021-in-person-conference-to-resume-2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7807:\"<p>While much of the world is currently suspended in the uncertainty caused by the pandemic, WordCamp Europe delivered a surprisingly decisive <a href=\"https://europe.wordcamp.org/2021/wordcamp-europe-2021-will-be-online/\">announcement</a> today regarding the status of the 2021 event in Porto. Organizers moved to make it a virtual conference, 10 months in advance of the planned dates, June 3-5, 2021:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>After careful consideration, and following guidance from WordCamp Central, we have agreed to hold WCEU 2021 online.</p><p>Although it was a difficult decision, it also seems the right thing to do. Considering the continuing uncertainty regarding COVID-19, we are hesitant to draw so many individuals from so many different places into one physical space.</p><p>We understand that this decision will come as a disappointment to many. We know that this event is a much-needed social outlet for many in our community and that an online event isn’t quite the same as a physical event. We’re so sad to not be able to greet you all in person in Porto in June.</p></blockquote>\n\n\n\n<p>The announcement cited several positive aspects of going virtual, including eliminating the uncertainty for attendees and their travel arrangements, allowing for a larger global audience without the expense and risk, and having more time for creating a better online experience. The 2020 event had just three months to convert to a virtual conference but was able to reach more than 8,000 attendees.</p>\n\n\n\n<p>In the absence of a vaccine ready for mass distribution or any proven commercially available therapeutics specifically designed to target the virus, it is impossible for organizers to nail down a safe timeline for a multinational event in 2021. <NAME>, who is assisting the WCEU organizing team as a mentor from WordCamp Central, identified risk mitigation as one of the primary factors in their decision.</p>\n\n\n\n<p>“Attendee safety is a primary concern in WordCamp organizing,” Lashbrooke said. “While the pandemic is progressing differently in different regions of the world, it seems that large in-person events that bring together thousands of people from multiple countries in a single shared space are still a risky proposition — and it’s not clear when this will be safe again.” </p>\n\n\n\n<p>WordCampers <a href=\"https://twitter.com/WCEurope/status/1283017418261049346\">reacting to the news</a> today seemed to understand the need for such a disruptive change, but most expressed deep disappointment. </p>\n\n\n\n<p>“I’m sure the decision won’t have been taken lightly,” <NAME> said. “But WCEU is so important in terms of defining and sustaining the European – and indeed, global – WordPress community. With all due respect to online alternatives, two blank years will hit community spirit hard.”</p>\n\n\n\n<p>The goal for WordCamp Europe is to resume the in-person event in 2022 and organizers have booked the Super Bock Arena (Pavilhão Rosa Mota) for June 2 – June 4, 2022. </p>\n\n\n\n<p>If WCEU can resume normal operations in 2022, it will be the first time in three years that the European WordPress community has had the opportunity to gather in-person in one place. One disappointed attendee <a href=\"https://twitter.com/7strel/status/1283102522270507008\">said</a>, “Understandable. As we say in Portugal: À terceira será de vez! Até 2022,” which roughly translates to the English saying, “Third time’s a charm.”</p>\n\n\n\n<h2>WordPress Community Team Is Working Towards Facilitating More Effective Events</h2>\n\n\n\n<p>Lashbrooke said adjusting to emerging world events has been hard on all WordCamp organizing teams this year, as well as sponsors, speakers, and attendees. WordCamp Asia was forced to cancel, WordCamp US has gone virtual, and many other smaller camps have gone online or been postponed. The WordPress Community team is <a href=\"https://make.wordpress.org/community/2020/07/13/reimagining-online-events/\">discussing how they can improve online events</a> to provide a better experience for the community. Some of the broader ideas for creating more effective events include the following:</p>\n\n\n\n<ul><li>Decouple online events from geography</li><li>Encourage events and workshops defined by topics, languages, etc.</li><li>Explore shorter, “snack-sized” online events</li><li>Experiment with the frequency of events</li></ul>\n\n\n\n<p>A peripheral <a href=\"https://twitter.com/learnwithmattc/status/1282723205728227330\">discussion</a> regarding sponsors is happening on Twitter, after recent online WordCamps failed to deliver a positive experience of virtual sponsor booths.</p>\n\n\n\n<p>“If you want to offer sponsors a ‘Virtual Booth’ as a benefit of sponsorship, you’re going to have to do something during the main event to make that attractive and easy for attendees to attend — otherwise it’s not a sponsor benefit,” <NAME> said.</p>\n\n\n\n<p>“If attendees have to log off the regular WordCamp platform, then go find some other link to some other virtual platform the experience becomes arduous and full of friction for the attendee making it highly unlikely they’ll attend. WordCamps that are switching to virtual should look into more robust platforms like <a href=\"https://hopin.to/\">Hopin</a> which allow for various rooms that are consolidated to the same platform for attendees.”</p>\n\n\n\n<p>WordCamp Europe 2020 organizer Bern<NAME> said his team looked into using Hopin but found it wasn’t fully accessible.</p>\n\n\n\n<p>“Hopin looked promising at first, not only for sponsors, but also for networking between attendees,” Kau said. “But it lacks basic accessibility. It’s unusable with keyboard only for example. I’d love to see it improve, so we could use it in the future.” </p>\n\n\n\n<p>Lashbrooke said WordCamp Central has also considered Hopin, among other apps, while doing <a href=\"https://docs.google.com/spreadsheets/d/1ym0nuKxhnzyBmNAozSNdviCjmlTq3e2J95usFbpUQrY/edit#gid=0\">extensive research on accessible platforms</a>.</p>\n\n\n\n<p>“Right now, everyone’s still working on a way to make that work for everyone, and we’re lucky that our sponsors are so honest with us about their experiences, because it helps us improve,” Lashbrooke said. </p>\n\n\n\n<p>“One thing that is of paramount importance to us as a team is that all WordPress events maintain a high level of accessibility, and unfortunately when it comes to streaming platforms we have very limited options when it comes to accessible streaming services. Zoom is about the only fully-accessible platform, so it’s the only option to use for sponsor booths.”</p>\n\n\n\n<p>With ten months of lead time, WordCamp Europe organizers will have plenty of opportunities to experiment with new ideas to make the event more engaging for both attendees and sponsors. All the other WordCamps on the <a href=\"https://central.wordcamp.org/schedule/\">schedule</a> through the end of the year have already been converted to online events. For the time being, it looks like virtual camps are here to stay.</p>\n\n\n\n<p>“I really doubt we’ll be abandoning online events, after COVID-19 is more under control worldwide,” WordPress Community organizer <NAME> <a href=\"https://make.wordpress.org/community/2020/07/13/reimagining-online-events/#comment-28388\">said</a>. “I think that we’ll need to figure out how in-person events and online events can best coexist, but it seems like we’ll have time to figure that out.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2020 23:55:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Call for Block Plugins: The WordPress Block Directory Is Open for Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101853\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"https://wptavern.com/call-for-block-plugins-the-wordpress-block-directory-is-open-for-business?utm_source=rss&utm_medium=rss&utm_campaign=call-for-block-plugins-the-wordpress-block-directory-is-open-for-business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6029:\"<img />WordPress block directory.\n\n\n\n<p class=\"has-drop-cap\">Over the weekend, <NAME> announced an open call for plugin authors to <a href=\"https://make.wordpress.org/plugins/2020/07/11/you-can-now-add-your-own-plugins-to-the-block-directory/\">begin submitting one-off block plugins</a> to the official <a href=\"https://wordpress.org/plugins/browse/block/\">block directory</a>. In the upcoming WordPress 5.5 update, slated for release on August 11, end-users will be able to search for, install, and add blocks directly from the editor. With little time left before release, will plugin authors make this a worthwhile feature for users?</p>\n\n\n\n<p>“The Block Directory is a subset of plugins in the plugin directory that can be instantly and seamlessly installed from the Gutenberg editor with a single click,” wrote Shiels in the announcement. “We call these new plugins ‘block plugins’ and have worked hard to make it easier for people to contribute to this new feature coming to WordPress 5.5.”</p>\n\n\n\n<p>WordPress plugin authors now have a new <a href=\"https://wordpress.org/plugins/developers/block-plugin-validator/\">block validation tool</a> at their disposal. The validator can check an SVN repository URL, Github URL, or plugin slug to determine if it is suitable for inclusion into the WordPress block directory. It is still under development, so plugin authors should report any issues they run into.</p>\n\n\n\n<p>For existing plugins in the plugin directory, developers can publish them to the block directory after passing validation with the tool. Plugin authors can also remove their plugins from the block directory at the click of the button.</p>\n\n\n\n<p>The block plugin guidelines are still under development. The <a href=\"https://github.com/WordPress/wporg-plugin-guidelines/pull/68\">draft ticket</a> has been open since November 21, 2019. It has seen little activity in the months since. Presumably, there will be a finalized version on WordPress.org rather than GitHub before WordPress 5.5 lands.</p>\n\n\n\n<p>Developers who want to begin building block plugins should follow the updated <a href=\"https://developer.wordpress.org/block-editor/tutorials/block-tutorial/\">block development tutorial</a>.</p>\n\n\n\n<h2>A Late Rallying Cry</h2>\n\n\n\n<p class=\"has-drop-cap\">Technically, plugin authors have been able to submit blocks to the directory for months. It was a bit of a hidden feature that few developers took advantage of. The user base was primarily Gutenberg plugin users who had enabled the experimental block directory search feature. Despite the small user base, it was an ideal time for plugin authors to begin experimenting and building an audience. It could have also been a great opportunity for relatively unknown developers to make their mark upon the WordPress world. There is still some time for that, but the community has not been actively encouraged to create blocks for the directory. With WordPress 5.5 looming ahead, the past few months seem like a missed opportunity.</p>\n\n\n\n<p><NAME>, one of the most prolific publishers of one-off blocks, is <a href=\"https://block.garden/taking-a-break/\">taking a break</a>. He originally had plans to release 99 plugins throughout 2020, but the WordPress plugin review team asked him to dial things back a bit. His routine releases were putting a strain on the team. The problem is that he was one of the few plugin authors <a href=\"https://wptavern.com/the-wacky-world-of-sorta-brilliants-sorta-fun-block-plugins\">putting in the work</a> to make the block directory a great thing.</p>\n\n\n\n<p>As a former reviewer for the themes team, I understand how easy it is to get overwhelmed with a wave of new projects that need a code review. At the same time, I would be willing to bump Hamze’s work to the front of the line, regardless of how often he was releasing new plugins. It may be a bit unfair to other plugin authors, but few others were betting big on what will be one of WordPress 5.5’s highlights: a searchable block directory.</p>\n\n\n\n<p>“If someone would have just given me the barest encouragement I would have kept going, but due to my experience, I stopped submitting blocks and won’t do it anymore in the future,” said Hamze.</p>\n\n\n\n<p>If no one else was putting in the work, there should have been no harm in giving him a bit of priority or a helping hand. That way, when WordPress 5.5 launches, there is something to show for this feature.</p>\n\n\n\n<p>Now, we are in the 11th hour, mere weeks before 5.5’s official release, with a meager offering of blocks — instead of hundreds of blocks, we are currently nearing the 60 mark. It is a last-minute rallying call to get plugin authors churning away before the final bell rings. Yet, WordPress just benched what was essentially its star player.</p>\n\n\n\n<p>I have no doubt the block directory will continue to grow. More developers will buy into it, especially as full-site editing creates more possibilities in WordPress 5.6 later this year. Some authors will likely produce more blocks than the totality of the current number in the directory.</p>\n\n\n\n<p>If the Gutenberg team had managed to squeeze the <a href=\"https://wptavern.com/version-1-prototype-of-the-wordpress-admin-block-directory-announced\">directory and management screens</a> into WordPress 5.5 admin, it would have made for a far bigger splash. It would have been good visibility for block makers. WordPress will support a block directory search for now. However, there is no way for end-users to more casually browse blocks via their admin. There is no way to see the latest block plugin releases or view the most popular blocks. Some of these things may have made one-off block development a bit more enticing to plugin authors. </p>\n\n\n\n<p>I am still optimistic that more plugin authors will jump onto the block bandwagon. It will just be a while before we start seeing the wealth of blocks that cover the entire spectrum of what users need.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2020 20:09:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.5 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4508:\"<p id=\"block-000046ff-d8e6-40a8-9869-2dd39e50f270\"><br />WordPress 5.5 Beta 2 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong><strong>This software is still in development,</strong> </strong>so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 beta 2 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta2.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\">beta 1</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress. Here are some of the changes since beta 1 to pay close attention to while testing.</p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-1/\">beta 1</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F08%2F2020..07%2F14%2F2020&milestone=5.5&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">48 bugs</a> have been fixed. Here is a summary of a few changes included in beta 2:</p>\n\n\n\n<ul><li>19 additional bugs have been fixed in the block editor (see <a href=\"https://github.com/WordPress/gutenberg/pull/23903\">#23903</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23905\">#23905</a>).</li><li>The Dashicons icon font has been updated (see <a href=\"https://core.trac.wordpress.org/ticket/49913\">#49913</a>).</li><li>Broken widgets stemming from changes in Beta 1 have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/50609\">#50609</a>).</li><li>Query handling when counting revisions has been improved (see <a href=\"https://core.trac.wordpress.org/ticket/34560\">#34560</a>).</li><li>An alternate, expanded view was added for <code>wp_list_table</code> (see <a href=\"https://core.trac.wordpress.org/ticket/49715\">#49715</a>).</li><li>Some adjustments were made to the handling of default terms for custom taxonomies (see <a href=\"https://core.trac.wordpress.org/ticket/43517\">#43517</a>)</li></ul>\n\n\n\n<p>Several updates have been made to the block editor. For details, see <a href=\"https://github.com/WordPress/gutenberg/pull/23903\">#23903</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23905\">#23905</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2020 17:24:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Admin 2020 Reimagines WordPress Admin and Media Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101275\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/admin-2020-reimagines-wordpress-admin-and-media-library?utm_source=rss&utm_medium=rss&utm_campaign=admin-2020-reimagines-wordpress-admin-and-media-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6102:\"<p>Unless I’m trying to be aware of it, I don’t see the WordPress admin anymore. When you work inside it every day, it becomes a means to an end, like a subway ride to work. You scan your ticket (log in) and you’re on your way to whatever admin business is the order of the day. After awhile, you accept its appearance and no longer spend conscious thoughts critiquing it. </p>\n\n\n\n<p>WordPress doesn’t overhaul its admin design very often, since it requires a massive effort from contributors. The beauty of this pluggable system is that anyone with the skills can change the design to suit their own aesthetic. That is what WordPress developer <NAME> has done with <a href=\"https://admintwentytwenty.com/\">Admin 2020</a>, a plugin that completely reskins the admin to give it a different look. </p>\n\n\n\n<img />\n\n\n\n<p>Browsing the Admin 2020 <a href=\"https://demo.ashtonretouch.com/wp-login.php\">demo</a>, you might not even know you were using WordPress. The design is built on top of <a href=\"https://getuikit.com/\">UIkit</a>, a lightweight UI framework that has a softer, rounder look to it. Users can switch between light and dark mode. Admin 2020 features white labeling, allowing users to upload their own logos and brand the dashboard for themselves. The admin area can also be radically simplified based on user role. The plugin allows for admin menu items to be renamed or toggled for visibility.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/c7uRS7QtvxU\"><img src=\"https://cldup.com/C4QGUuFG48.gif\" alt=\"Admin 2020 dashboard overview dark mode\" width=\"600\" height=\"336\" /></a>\n</div>\n\n\n\n<p>Admin 2020 has an Overview page that can sync with Google Analytics to show reports that can be filtered by date, including Users, Page Views, Sessions, and device breakdown. It also displays summaries of recent comments, popular pages, system info, new users, and other content-related data.</p>\n\n\n\n<p>The plugin gives WordPress’ media library a new look, along with folders and filters for an alternative way to organize images. Ashton claims it is up to 50% faster than the classic WordPress media library. The gallery editor also adds filters, free draw, icons/shapes, text and other mask filters for enhancing images.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/cMJOcOz4-QQ\"><img src=\"https://cldup.com/hhWJ2HZrFL.gif\" alt=\"Admin 2020 media library\" width=\"800\" height=\"450\" /></a>\n</div>\n\n\n\n<p>“A lot of what admin 2020 does is built on existing WordPress functions, it just uses them in a different way,” Ashton said. “Instant search for example leverages AJAX and you can search all of your content from one place.”</p>\n\n\n\n<p>The Admin 2020 plugin started out as a personal passion project. After building everything from plugins to themes to a hospitality reservation management system using WordPress, Ashton thought he would try his hand at making an admin theme he would enjoy using.</p>\n\n\n\n<p>“It was something I have always wanted and basically got tired of waiting for,” he said. “I’ve been using WordPress for my projects for many years and while I love the platform I have never enjoyed using the backend. I wanted to create something with a strong emphasis on modern UI but also something that brought useful features that would speed up my workflow.”</p>\n\n\n\n<p>Ashton said supporting third-party extensions is one of the most challenging aspects of maintaining the plugin. Admin 2020 includes<a href=\"https://admintwentytwenty.com/pages/support\"> full support for popular plugins</a> like Jetpack, WooCommerce, Elementor, Yoast SEO, and Divi Builder, but there are thousands of others that have not been tested.</p>\n\n\n\n<p>“The process of supporting a plugin usually isn’t that difficult but it’s more the case of there are so many plugins out there,” Ashton said. “Some plugins rely heavily on their own CSS in which case they usually work fine in light mode but don’t look right in dark mode. Then you have plugins that use WP components and they usually work great right out of the box. Some plugins actually disable all custom backend styling, though – they are a real challenge to get around!”</p>\n\n\n\n<p>Ashton launched Admin 2020 in April, so it is still relatively new to the commercial plugin scene. It is sold as a single plugin but is built in a modular way so that most parts of it can be disabled. The plugin’s tiered pricing begins at $15 for a single site license. He opted to pursue a fully commercial model as opposed to releasing a free plugin with paid upgrades. </p>\n\n\n\n<p>“In short, I wanted the plugin to stay as streamlined as possible,” Ashton said. “I didn’t want to add yet more plugin notices at the top of admin pages bugging you to upgrade. I wanted people to experience the full version of Admin 2020.”</p>\n\n\n\n<p>His strategy has been successful so far, as Admin 2020 has become a full-time project after just three months. The London-based company is a one-person effort at the moment, but Ashton is looking to bring another developer on.</p>\n\n\n\n<p>“Active installs are around 2,000 now, and as a result I am very busy and Admin 2020 is a full time project,” he said. “I love working on the plugin though, there is a lot of scope on where this can go and the feedback has been great!”</p>\n\n\n\n<p>When asked if he worries about the name becoming outdated in the coming years, Ashton said he is happy with the name but if he thinks of something more suitable it may change in the future. He believes there is a market for all kinds of different themes to transform the WordPress admin but isn’t currently planning to add more designs.</p>\n\n\n\n<p>“Not everyone is the same, and good design looks different to everybody,” Ashton said. “I am not looking at other designs at the moment – more offering the ability to customize the design yourself through Admin 2020.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2020 23:21:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Copy and Paste Editor Blocks via GutenbergHub’s Block Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101455\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/copy-and-paste-editor-blocks-via-gutenberghubs-block-library?utm_source=rss&utm_medium=rss&utm_campaign=copy-and-paste-editor-blocks-via-gutenberghubs-block-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6755:\"<img />GutenbergHub block library.\n\n\n\n<p class=\"has-drop-cap\">Spearheaded by <NAME>, GutenbergHub <a href=\"https://gutenberghub.com/introducing-gutenberg-blocks-library-more/\">launched a free block library</a> to the WordPress community today. Currently, there are 37 custom-designed blocks that users can copy and paste to their website.</p>\n\n\n\n<p>Unlike the block directory on WordPress.org, the blocks available from this project are not plugins. They are handled through copying and pasting a bit of code. Technicaly they are blocks that act as a grouping of various core WordPress blocks. However, in reality, they more closely resemble block patterns.</p>\n\n\n\n<p>The one caveat is that users must install Kamal’s <a href=\"https://wptavern.com/control-block-design-via-the-editorplus-wordpress-plugin\">recently-launched EditorPlus plugin</a>. It allows end-users to style the core WordPress blocks via a slew of custom design options. Because the plugin neither relies on third-party blocks nor creates its own, all of the block designs in GutenbergHub’s library are built directly from the blocks available in WordPress. This makes for a much smaller dependency tree and fewer areas where things could go wrong in the fast-moving world of blocks.</p>\n\n\n\n<p>By tying the block designs to the <a href=\"https://wordpress.org/plugins/editorplus/\">EditorPlus </a>plugin, it gives Kamal much more control over the final output. Having cross-theme consistency is still a tough job, but it improves by working within the confines of the design framework from the plugin.</p>\n\n\n\n<p>“I created [EditorPlus] to fulfill my requirements in bringing easily customizable blocks and templates to Gutenberg users,” said Kamal.</p>\n\n\n\n<p>He launched a <a href=\"https://wptavern.com/gutenberg-hub-launches-collection-of-100-block-templates\">block template library</a> in March. However, it originally asked users to copy block HTML and CSS code separately. Now, both the block and template libraries require the EditorPlus plugin. This allows Kamal to build everything on top of a sort of framework and remove third-party dependencies. Kamal said the system will help make things easier for users while giving him more control over development and maintenance.</p>\n\n\n\n<p>Thus far, most of the projects he has launched on GutenbergHub have built on top of the previous project in some way. They were stepping stones that led him to build a bigger yet more well-rounded system. However, we are likely light-years away from seeing how everything takes shape. The Gutenberg project is moving fast, and GutenbergHub will need to react to upcoming changes. It will need to contend with the inclusion of block patterns in WordPress 5.5, full-site editing later this year, and more design options for blocks down the road. Like the block system itself, all of this is still a bit experimental until we begin to see some sort of settling point. It will be interesting to watch how things unfold. Kamal and his GutenbergHub project are in a good position to ride the waves of constant change.</p>\n\n\n\n<p>Watch a short video on how GutenbergHub’s block library and EditorPlus plugin work together to create pricing columns:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2>How the Block Library Works</h2>\n\n\n\n<p class=\"has-drop-cap\">Currently, users can search the <a href=\"https://gutenberghub.com/blocks/\">GutenbergHub block library</a> to pick and choose the blocks they want. The library is sub-divided by seven categories:</p>\n\n\n\n<ul><li>Testimonial</li><li>Team</li><li>Feature</li><li>Card</li><li>Pricing</li><li>Call to Action</li><li>Stats</li></ul>\n\n\n\n<p>Users can copy a small bit of JSON code for individual blocks they would like to add to their site. To add a block, installing and activating the EditorPlus plugin is a hard requirement. Once that is done, users can visit the Blocks tab under the EditorPlus settings screen and paste the code.</p>\n\n\n\n<img />Adding a block’s code via the EditorPlus plugin.\n\n\n\n<p>The blocks tab acts as a central hub to manage blocks from the library. Users can add, delete, or deactivate any blocks added from GutenbergHub.</p>\n\n\n\n<p>Each active block added to the site is available through the block inserter on the editor. Perhaps the one downside is the blocks do not have a preview image. Some of the blocks have similar names, such as Card 1, Card 2, etc. Having a preview image would help distinguish them — <em>or just better names</em>.</p>\n\n\n\n<img />Inserting a block from GutenbergHub into the editor.\n\n\n\n<h2>Future Plans</h2>\n\n\n\n<p class=\"has-drop-cap\">Ideally, the EditorPlus plugin could serve up GutenbergHub’s blocks and templates over an API, providing users with a simple import solution at the click of a mouse. The copy/paste approach means having to visit a separate website instead of staying in the comfort of one’s WordPress admin. Kamal originally went with the copy/paste solution because he wanted everything to be independent of plugins. However, because WordPress did not have the design controls in place, he realized he needed at least one plugin as part of the equation. That is where EditorPlus came in. This should ultimately free him up to build an import feature.</p>\n\n\n\n<p>“I will possibly include a direct inserter for templates and blocks in the Editor Plus plugin,” he said. However, there is no indication of when that will happen. It would make the user experience more seamless and efficient.</p>\n\n\n\n<p>Kamal is still mulling over how he will eventually monetize the project. Right now, he has put a lot of time and resources behind it with little return on his investment. At some point, this could become unsustainable unless his other commercial ventures can fund it. In the long run, he will need to have a solid business plan behind the entire GutenbergHub project.</p>\n\n\n\n<p>“I do plan to monetize the GutenbergHub offering somehow,” he said. “I’ve not yet planned out this, but that could be a premium subscription or offering pro blocks, templates, and an EditorPlus add-on. Another option would be to convert it into a marketplace where designers can create and sell blocks and templates. This is something I’ve yet to plan out to be honest. Rest assured, what is free will remain free and will actually improve over time.”</p>\n\n\n\n<p>Kamal said his most immediate plan is to gather more feedback from users. “I ended up creating a <a href=\"https://www.facebook.com/groups/gutenberghub/\">Facebook group</a>,” he said. “This would be the best and easiest way for anyone to share ideas, suggestions, and feedback about GutenbergHub.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2020 21:14:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WordPress Documentation Team Bans Links to Commercial Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101625\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/wordpress-documentation-team-bans-links-to-commercial-websites?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-documentation-team-bans-links-to-commercial-websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5904:\"<p>This week WordPress’ Documentation team <a href=\"https://make.wordpress.org/docs/tag/external-linking-policy/\">announced</a> a ban on links to commercial websites in a revision to its external linking policy:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>During discussion about external linking policy, we came to conclusion that we won’t allow, at least in the beginning and for the time being, any commercial blogs. So before you start arguing that some popular plugin’s blogs have valuable information, let me stop you right there.</p><p>Allowing “popular plugin’s/theme’s/services’ etc blogs” and all other commercial blogs will put us in a position to protect documentation from being abused as marketing media, to protect ourselves from accusations of being biased and to defend every decision we make along the way. And still, there will be dissatisfied sides claiming we weren’t fair and did them wrong. The idea of allowing external linking will become its own purpose.</p></blockquote>\n\n\n\n<p>Despite the announcement’s abrasive phrasing discouraging further discussion on the matter, the controversial decision stirred up a heated conversation in the comments. Yoast founder <NAME> <a href=\"https://make.wordpress.org/docs/2020/07/06/external-linking-policy-commercial-blogs/#comment-40100\">contends</a> that companies contributing to WordPress might as well receive some promotion as a benefit:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I understand that you want to prevent discussions about bias.</p><p>But I think your premise here is wrong: you’re saying you’re not “biased” if you’re not linking to commercial companies. I would say we’re all inherently biased, because some of those companies do a lot for the WordPress community, while others do not.</p><p>The companies that contribute to WordPress a lot used to get some links, and thus some promotion as benefit from the fact that they’re contributing. By removing that from them, you’re basically treating those that don’t give back the same as companies that do give back, something which I think is simply wrong. So I very heavily disagree with this decision.</p></blockquote>\n\n\n\n<p><NAME>, the Documentation Team member who penned the announcement, clarified that the policy change does not remove external links to commercial sites from WordPress.org. It only applies to documentation sites, including <a href=\"https://wordpress.org/support/\">HelpHub</a>, <a href=\"https://developer.wordpress.org/reference/\">Code Reference</a>, <a href=\"https://developer.wordpress.org/plugins/\">Plugin</a> and <a href=\"https://developer.wordpress.org/themes/\">Theme</a> Developer Handbook, <a href=\"https://developer.wordpress.org/block-editor/\">Block Editor Handbook</a>, <a href=\"https://developer.wordpress.org/apis/\">Common APIs Handbook</a>.</p>\n\n\n\n<p>“There is no way to make this fair,” Cap said. “And we can discuss about many unfair parallels happening in open source communities; such as how many hours per week can be contributed by a freelancer vs paid company contributor, meeting times (where decisions are made) in the middle of the night in your timezone etc.”</p>\n\n\n\n<p><NAME> suggested one solution would be to better utilize the <a href=\"https://wordpress.org/five-for-the-future/pledges/\">Five for the Future pledges</a> page to identify significant contributors to documentation if links to commercial sites are no longer an option.</p>\n\n\n\n<p>Several commenters noted the value of linking to additional examples and resources but also recommended WordPress put a version or timestamp in place to give the reader more context.</p>\n\n\n\n<p>WordPress agency owner <NAME> characterized the ban as “undesirable gatekeeping,” saying that the policy suggests all things commercial are “inherently corrupt and not trustworthy nor valuable.” </p>\n\n\n\n<p>“A links value is inherently subjective and ought to be delt with subjectively,” Brown said. “Trying to create high level objective rules doesn’t seem beneficial or realistic. I certainly disagree that all ‘commercial’ sites should be blanket banned.</p>\n\n\n\n<p>“I do think there are some low level disqualifiers that could guide authors and moderators in what links are appropriate. Those should be criteria that directly impact the users of docs, and being commercial doesn’t. Those are things like, the source being accessible, the source not being pay walled, etc.”</p>\n\n\n\n<p>Cap responded, saying that the root of the issue is that allowing commercial links puts the documentation team in the unwanted position of having to find a fair way to decide on which links are allowed to be included. She also indicated that the policy may evolve over time but that for now the decision on the ban is final.</p>\n\n\n\n<p>“Perhaps over time we’ll figure that out,” Cap said. “We’ll certainly know more once we start doing it. For now, this is the decision.”</p>\n\n\n\n<p>External sources can be valuable supplements to documentation, but this conversation underscores the need for better incentives for people to spend time documenting WordPress. As the team is already running on limited resources, they are trying to avoid having to heavily police links to commercial websites.</p>\n\n\n\n<p>“The bottom line is: we haven’t figured out the best way to deal with commercial blogs or sites in a fair manner and thus our focus is going to be on links that don’t drop into that grey zone,” Cap said. “We do expect to eventually get towards discussing how we can safely include commercial blog links (if this even is possible).”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2020 23:22:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Ariele Lite Is a Fun and Refreshing Theme for WordPress Bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/ariele-lite-is-a-fun-and-refreshing-theme-for-wordpress-bloggers?utm_source=rss&utm_medium=rss&utm_campaign=ariele-lite-is-a-fun-and-refreshing-theme-for-wordpress-bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6559:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Ariele Lite, the latest theme from Rough Pixels, went live in the <a href=\"https://wordpress.org/themes/ariele-lite/\">WordPress theme directory</a> today. In an ecosystem where designers are dubbing most themes as multipurpose, it is refreshing to see a well-designed theme that is unafraid to cater specifically to bloggers.</p>\n\n\n\n<p>It is not often that I get the opportunity to test a brand new theme from the official WordPress theme directory that supports block editor styles. Or, at least it’s not often that I test one that lives up to the claim. Despite a couple of trivial issues, Ariele Lite is a theme that will appeal to a wide audience.</p>\n\n\n\n<p>Whenever I see the word “lite” appended to the end of a theme name, it is immediately off-putting. Far too often, I have been burned when activating such themes. My already low expectations are generally met with unfulfilled promises, missing styles for basic features, and a metric ton of advertising for the <em>real</em> product (i.e., the non-lite version that I can buy). However, I was pleasantly surprised by the work that went into Ariele Lite. It was a complete and fully-functioning theme and did not feel like crippleware. Plus, most of the upsell features in the commercial version were not that appealing to me. I can find most of them in plugin form. However, they could be nice additions for the user who wants integrated features that will look and feel like they are a part of the theme without the hassle of hunting down the perfect plugin.</p>\n\n\n\n<p>What makes Ariele Lite a great theme is that it has an opinionated style, even if it is merely some subtle flavoring, for nearly every element or block. It never goes overboard into lavishness, which means it doesn’t break readability. It is a theme that has fun with its design while being well-groomed enough for professional bloggers.</p>\n\n\n\n<p>Even if Ariele Lite is not to your taste, Rough Pixels has a history of releasing <a href=\"https://wordpress.org/themes/author/roughpixels/\">clean, well-designed themes</a>. There is a little something for almost anyone. The company is also one of the few theme-makers with multiple themes that support the block editor in the free directory.</p>\n\n\n\n<h2>Theme Design and Features</h2>\n\n\n\n<img />Ariele Lite customizer options.\n\n\n\n<p class=\"has-drop-cap\">Ariele Lite is not stock full of custom features, but it has enough flexibility to satisfy most people who want to do some customization. More than anything, my favorite thing about the theme is that it does not take much cajoling to achieve the look of the <a href=\"https://demos.roughpixels.com/ariele-lite/\">demo</a> the theme author has put together. <em>There should be a WordPress theme directory filter tag titled “what you see in the demo is what you get.”</em></p>\n\n\n\n<p>The theme comes with a reasonable number of theme design options. Users can change nearly every aspect of their front end. The theme has options for all its colors, several labels, and other theme-specific elements. It stops short of adding font settings, which is likely a good thing given the theme’s attention to detail with typography.</p>\n\n\n\n<p>The one particular design element that caught my eye was the theme’s blockquote style. Some bloggers may want something a bit less pronounced in design, depending on how they want to present quotes. However, I am a sucker for beautiful quote designs, and Ariele Lite did not disappoint.</p>\n\n\n\n<img />Ariele Lite’s blockquote style.\n\n\n\n<p>The quote design is representative of the attention that Rough Pixels has given to other elements in the theme. From the bold headings to the caption design that overlays the featured image, the team has left few stones unturned.</p>\n\n\n\n<p>For bloggers, the most important element is the typography. It is one of those elements that too many theme authors overlook, but it is paramount when catering a theme to bloggers. This is one area the theme excels at. However, if selecting the sidebar-less layout option, there are too many characters per line for comfortable reading. Stick with either the left or right sidebar option to stay on point.</p>\n\n\n\n<p>The theme comes with Jetpack infinite scrolling support, a custom posts widget with thumbnails, and enough sidebars to put widgets anywhere you might want. I like the default setup well enough, so these features are less important to me. However, they are likely welcome additions for many users.</p>\n\n\n\n<h2>Not Without Issues</h2>\n\n\n\n<p class=\"has-drop-cap\">I have been building this theme up thus far in the review. Now, it is time to take it down a notch or two. Ariele Lite is by no means perfect. No software is. I hit a few snags.</p>\n\n\n\n<p>The biggest issue I ran into was the theme did not handle full-aligned blocks well. Instead of capping them to the width of the content container, they would break out into the sidebar. Even when selecting a layout with no sidebar, the same issue persists.</p>\n\n\n\n<img />Full-width image creates a design issue.\n\n\n\n<p>This would be an absolute deal-breaker for me as a user. As a developer, I know that it is simply an oversight and can be corrected. The theme author can correct it with a single line of CSS. Users should simply be aware of the problem, at least until the theme author has a chance to address it.</p>\n\n\n\n<p>Outside of that, nested lists in sidebars need a little TLC. The spacing is off. It is also missing support for pagination via the <code><!--nextpage--></code> quick tag on single post views.</p>\n\n\n\n<p>These few items are relatively trivial issues to address. They are worth noting for the 1.0.4 version of the theme and will likely be fixed in future iterations.</p>\n\n\n\n<p class=\"is-style-highlight has-gray-100-background-color has-background bg-gray-100\"><strong>Note:</strong> The above issues were quickly addressed by the theme author in version 1.0.5.</p>\n\n\n\n<h2>Final Thoughts</h2>\n\n\n\n<p class=\"has-drop-cap\">Ariele Lite does not break much new ground. It is simply a solid blogging theme that supports the block editor. Nearly two years in, such themes are still few and far between. It is ideally suited for people who love to write, and it has enough options to keep those who want to do a bit of tweaking happy.</p>\n\n\n\n<p>If the theme’s development team is proactive about addressing the few minor issues, I would recommend it to anyone who wants a good theme that fully supports the latest version of WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2020 20:35:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: Open Source Initiative to Host Virtual State of the Source Summit, September 9-10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101622\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"https://wptavern.com/open-source-initiative-to-host-virtual-state-of-the-source-summit-september-9-10?utm_source=rss&utm_medium=rss&utm_campaign=open-source-initiative-to-host-virtual-state-of-the-source-summit-september-9-10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2787:\"<p>OSI (Open Source Initiative) is hosting a new 24-hour, virtual conference called <a href=\"https://opensource.org/StateOfTheSource\">State of the Source Summit</a>, September 9-10. The non-profit organization plays an important role in the open source ecosystem as stewards of the <a href=\"https://opensource.org/docs/osd\">Open Source Definition (OSD)</a>. OSI is responsible for reviewing and approving licenses as OSD-conformant, which indirectly helps mediate community conflicts.</p>\n\n\n\n<p>As part of the organization’s overall mission to educate the public on the economic and strategic advantages of open source technologies and licenses, OSI is hosting a global summit to facilitate conversations on the current state of open source software. </p>\n\n\n\n<p>“We are so very excited to host our first-ever conference, with a global approach,” OSI Board President <NAME> said. “State of the Source provides an opportunity for both the open source software community and the OSI—all those who have contributed so much—to reflect on how we got here, why we have succeeded, and what needs to happen now.”</p>\n\n\n\n<p>The conference will run four tracks with sessions that fall under these general groupings:</p>\n\n\n\n<ul><li><a href=\"https://opensource.org/StateOfTheSource#OSLOSI\">Open Source Licenses and the OSI</a></li><li><a href=\"https://opensource.org/StateOfTheSource#Business\">Projects & People</a></li><li><a href=\"https://opensource.org/StateOfTheSource#Principles\">Principles, Policy, & Practices</a></li><li><a href=\"https://opensource.org/StateOfTheSource#HotTopics\">“Hot Topics”</a></li></ul>\n\n\n\n<p>OSI has identified several example topics for each track, to guide potential presenters in writing a proposal. The first track encompasses more OSI-specific topics, such as license proliferation and license enforcement. </p>\n\n\n\n<p>Projects & People includes topics that apply more broadly to communities and organizations – open source business models, sustainability, patents, and trademarks. The Principles, Policy, and Practices track is geared towards application and example topics include things like explaining a license to your peers, learning how to select a license for your project, and compliance, compatibility, and re-licensing.</p>\n\n\n\n<p>As more conferences are forced to move to a virtual format, the wider open source community has the opportunity to be more engaged in an event like State of the Source. It’s a good venue for addressing non-technical issues related to the challenges facing open source maintainers and the community. The <a href=\"https://forms.gle/CriSN1Ddtjb1GPbX8\">call for proposals</a> ends July 16, and speakers will be announced August 25.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2020 22:07:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"WPTavern: Gutenberg 8.5 Adds Single Gallery Image Editing, Allows Image Uploads From External Sources, and Improves Drag and Drop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101676\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:299:\"https://wptavern.com/gutenberg-8-5-adds-single-gallery-image-editing-allows-image-uploads-from-external-sources-and-improves-drag-and-drop?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-8-5-adds-single-gallery-image-editing-allows-image-uploads-from-external-sources-and-improves-drag-and-drop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5941:\"<p class=\"has-drop-cap\">On Wednesday, the Gutenberg team <a href=\"https://make.wordpress.org/core/2020/07/08/whats-new-in-gutenberg-8-july/\">released version 8.5</a> of its plugin to the public. This will be the final major plugin release to make its way into the upcoming WordPress 5.5, which has a target release date of August 11. This update does not include any groundbreaking features, but it does offer several enhancements and polishes the product.</p>\n\n\n\n<p>Gutenberg 8.5 introduces the ability to upload images from third-party sites instead of simply hotlinking them. It also improves the drag-and-drop experience with blocks, adds an edit button for images in galleries, and moves reusable blocks to their own tab in the inserter.</p>\n\n\n\n<p>Users can also now <a href=\"https://github.com/WordPress/gutenberg/pull/23197\">add an HTML anchor/ID</a> to all static blocks. This was a relatively minor change but provides tremendous value. No longer will users need to switch to code editing mode and risk validation issues to add a basic HTML ID.</p>\n\n\n\n<h2>Upload External Images</h2>\n\n\n\n<img />New upload external image button.\n\n\n\n<p class=\"has-drop-cap\">The largest enhancement in Gutenberg 8.5 is an improvement to inserting an image from an external URL. This update allows users to <a href=\"https://github.com/WordPress/gutenberg/pull/23565\">upload the image to their media library</a>.</p>\n\n\n\n<p>In past versions, users could insert an image from any URL. However, the image would remain hosted on that external site. The problem was that the end-user had no control over what happened to that image in the future. The third-party site could disappear. The site owner could remove or replace the image. The image shown on users’ sites may not have been what they intended.</p>\n\n\n\n<p>The upload process is manual rather than automatic. After inserting an image via a URL, the editor toolbar will have a new upload icon with an arrow that points up. Users must click it to add the image to their media library.</p>\n\n\n\n<p>The additional benefit of self-hosting the image is that the editor’s other image tools become available. Users can resize, rotate, or crop the image, options which were added to <a href=\"https://wptavern.com/gutenberg-8-4-adds-image-editing-includes-multi-block-controls-and-enables-block-directory-search\">Gutenberg 8.4</a>.</p>\n\n\n\n<h2>Improved Drag and Drop</h2>\n\n\n\n<img />Dragging multiple blocks in the editor.\n\n\n\n<p class=\"has-drop-cap\">I had forgotten there was even a drag-and-drop feature for the block editor. Since it was introduced, I have never used it outside of testing. It is also not available when using Top Toolbar mode, which is my go-to choice.</p>\n\n\n\n<p>The editor now allows dragging and dropping <a href=\"https://github.com/WordPress/gutenberg/pull/23477\">multi-block selections</a>. The dragging-and-scrolling behavior is much approved. Instead of scrolling when reaching the edge of the viewport, the window <a href=\"https://github.com/WordPress/gutenberg/pull/23082\">scrolls almost immediately</a> as you drag.</p>\n\n\n\n<p>Despite the improvement, I do not find the drag-and-drop feature efficient in comparison to using the up/down arrows to move a block. However, I have never been much of a fan of dragging and dropping elements. Discoverability suffers because the hand icon that appears when hovering the toolbar is not a great indicator that I can drag the block, especially given its similarity to the normal hand cursor when moving my mouse. Some sort of directional arrow icon would make more sense and distinguish it.</p>\n\n\n\n<h2>Edit Single Gallery Images</h2>\n\n\n\n<img />Editing an individual gallery image.\n\n\n\n<p class=\"has-drop-cap\">Gutenberg 8.5 features a <a href=\"https://github.com/WordPress/gutenberg/pull/23554\">new edit button</a> on the individual images within a gallery block. This allows end-users to replace the image on the spot.</p>\n\n\n\n<p>This is one of my favorite features to make it in before the upcoming WordPress 5.5 deadline. It has been one of those minor nit-picks for the past couple of years that I have wanted to see addressed. Overall, the team has done a solid job of making it work.</p>\n\n\n\n<p>However, it is not quite perfect yet. The biggest issue comes after clicking the edit button. Suddenly, there is no good way to cancel the edit if I change my mind. I got around this limitation by choosing to add an image from the media library, which automatically had the previous image selected. My first thought was to click the <em>x</em> icon. However, that removes the image from the gallery. A trashcan icon makes more sense for removing the image while the <em>x</em> icon makes more sense for canceling an action.</p>\n\n\n\n<h2>Reusable Blocks Tab</h2>\n\n\n\n<img />New reusable blocks tab in the inserter.\n\n\n\n<p class=\"has-drop-cap\">Reusable blocks are no longer tucked away at the bottom of the normal blocks list in the inserter. The team has <a href=\"https://github.com/WordPress/gutenberg/pull/23296\">moved them to their own tab</a>. The inserter is now separated into Blocks, Patterns, and Reusable tabs. This will be an entirely new experience for users when WordPress 5.5 drops because the patterns feature and its corresponding tab are also new.</p>\n\n\n\n<p>Moving the reusable blocks to a separate tab better exposes the feature. The previous location in which they were situated at the bottom of the blocks list hid them from anyone who did not scroll to the end. For far too long, this powerful feature was not getting the exposure that it deserved. Perhaps this new location will correct that.</p>\n\n\n\n<p>The next step would be to finally add a reusable blocks menu item that is accessible from anywhere in the WordPress admin. We will likely have to wait for the <a href=\"https://wptavern.com/version-1-prototype-of-the-wordpress-admin-block-directory-announced\">WordPress admin block directory</a> for that to happen.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2020 21:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: WordPress University Was Always Online\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101616\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"https://wptavern.com/wordpress-university-was-always-online?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-university-was-always-online\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7667:\"<p>Did anybody listen to <NAME>? In 2011, the billionaire co-founder of PayPal, dubbed “<a href=\"https://bits.blogs.nytimes.com/2011/05/25/want-success-in-silicon-valley-drop-out-of-school/\">contrarian investor</a>” by the <em>New York Times</em>, created the Thiel Fellowship. A collection of 24 youngsters under the age of 20 were awarded $100,000 in exchange for dropping out of college to start tech companies.</p>\n\n\n\n<p>Thiel said:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I believe you have a bubble whenever you have something that’s overvalued and intensely believed. In education, you have this clear price escalation without incredible improvement in the product. At the same time you have this incredible intensity of belief that this is what people have to do…It seems very similar in some ways to the housing bubble and the tech bubble.</p></blockquote>\n\n\n\n<p>Thiel had struck a raw cultural nerve. For years, as the world reeled and slowly recovered from a financial crisis, the quality of higher education was rapidly degrading while tuition costs were steadily increasing.</p>\n\n\n\n<p>As more colleges make the switch to online only in the response to the pandemic, and the “college experience” becomes a relic of a bygone era, one wonders what the future of the university might look like.</p>\n\n\n\n<img /><NAME> and <NAME>, founders of PayPal. Typical underachievers.\n\n\n\n<p>Does a college education still improve economic outcomes in any significant way?</p>\n\n\n\n<p>For people interested in tech careers, the answer is probably no. A college education produces minimal, if any, value. In effect, the university model, with American student loan debt amounting to $1.6 trillion, seems to do more harm than good.</p>\n\n\n\n<p>COVID-19 has taught the world many harsh lessons and forced us all to reckon with difficult conclusions. But it has also shown us the promise and potential we might have otherwise passed without comment.</p>\n\n\n\n<p>According to the <a href=\"https://www.bls.gov/ooh/computer-and-information-technology/web-developers.htm\">U.S. Bureau of Labor Statistics</a>, the 2019 median salary for a web developer comes to $73,760 per year, or $35.46 per hour, with no former work experience in related occupations required. The bureau lists an associate’s degree as the typical entry-level education, which, at most colleges, amounts to 5-6 semesters—considerably smaller investment than a four year degree.</p>\n\n\n\n<p>But with readily available—and free—online courses in WordPress, HTML, CSS, PHP, and JavaScript, and the ubiquity of certification programs and “boot camps,” even an associate’s degree seems like overkill. When anyone, from any background, can launch a $70,000 per year career with no more experience than a few free courses available through any public library, we have either entered an era of unparalleled prosperity—or <em>The Twilight Zone</em>.</p>\n\n\n\n<p><strong>Should any web developer decide to pick up full stack development skills, or expand into general software engineering, the median salary jumps up to six figures. And this is before we get to the new frontiers of big data and “the cloud.”</strong></p>\n\n\n\n<p>Instead of thinking in monotone sentiments like “learn to code,” let’s imagine a generation raised under the banner of <em>learn how to learn.</em></p>\n\n\n\n<p>“The computer was a tool,” says <NAME>, IT coordinator for a USDA grant program, and WordPress developer. Starting his career as a 4-H program leader and agricultural extension agent for the University of Georgia in the 1980s, Dorner discovered computing as a shortcut to efficiency.</p>\n\n\n\n<p>It wasn’t so easy to learn computers in those days. Tasks any high-schooler would consider common today required deep knowledge of how hardware and software worked together. There were no hard drives. Dorner had to employ two floppy disks, one with the operating system and application and one with his data, in order to create a spreadsheet.</p>\n\n\n\n<p>“Writing code without the Internet was…interesting,” Dorner recalls. Learning PHP and MySQL from a recliner, balancing a laptop on his lap, and a book on the arm of the chair, Dorner demonstrates that the will to learn can exist outside of the classroom.</p>\n\n\n\n<p>During our conversation over Google Meet, we talked about the alternatives available to people young and old, and from virtually any socio-economic background, who are interested in pursuing careers in IT or development.</p>\n\n\n\n<p>Before opting for an associate’s degree, there are shorter duration programs available. Boot camps and certification programs provide rigorous course work and leave their students with some experience and a portfolio—and no student debt.</p>\n\n\n\n<p>Dorner says:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Most web agencies would hire people if [they’ve] got a certificate, a portfolio, or some way to prove [they] have the skills…That’s more important than a full degree. Now, if you want to work at IBM, they might require a Bachelor’s or Master’s Degree. And there is a lot you can learn in those [full degree] programs. But somebody coming out of [community college or a boot camp] can get a good job and something starting.</p></blockquote>\n\n\n\n<p>In addition to free courses online, Dorner suggests that WordPress can be a powerful accelerant to tackling bigger concepts in web development. The WordPress path to web mastery works in “layers.”</p>\n\n\n\n<p>“WordPress is a good starting point,” Dorner says. “[You] can do a lot in WordPress without knowing any code.” Once one has achieved a level of comfort with the WordPress interface, he can start adding custom CSS rules. From there, he can try his hand at child themes. And before long, full themes and plugins.</p>\n\n\n\n<p><strong>“The more you hack, the more you learn.”</strong></p>\n\n\n\n<p>In addition to learning the WordPress interface, the learner is being exposed to deeper concepts like web servers, open source philosophy, and version control.</p>\n\n\n\n<p>What is left for the universities to cover?</p>\n\n\n\n<p>Everybody needs to have some general education, Dorner replies. Basic math, science, and some of the humanities help to round out a liberal education. Beyond the general education, there are life skills and experience that must happen oustide of the classroom.</p>\n\n\n\n<p>Dorner not only works in IT, but creates jobs as well. During the hiring process, I asked, what’s the most important criteria an applicant must meet?</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It’s very important to be a self-directed, lifelong learner. I hired someone [recently]…[She] had the minimum requirements, but she had the initiative to learn something new. She was self-taught, went out and learned the stuff, and was able to solve the problem. That was more important to me than [the credentials].</p></blockquote>\n\n\n\n<p>The pathways into the tech field are now baked into society itself. Every kid who learns how to Google for information is building a working knowledge of SEO. Every kid who touches an iPhone learns the fundamentals of UX. And so forth.</p>\n\n\n\n<p>The question for the coming years is whether or not the university model will meet these kids on the journey to careers in tech with something unique to offer them, or if the kids can get there well enough on their own.</p>\n\n\n\n<p>WordPress university was always online.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2020 14:36:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: Jetpack 8.7 Adds New Tweetstorm Unroll Feature, Improves Search Customization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/jetpack-8-7-adds-new-tweetstorm-unroll-feature-improves-search-customization?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-8-7-adds-new-tweetstorm-unroll-feature-improves-search-customization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3741:\"<p><a href=\"https://jetpack.com/2020/07/07/87-easier-reach-customers/\">Jetpack 8.7</a> was released this week with an exciting new feature that allows users to “unroll” a tweetstorm and publish it in a post. The feature works inside the Tweet block. After a user embeds a tweet, it will automatically detect a tweetstorm and display a prompt to fetch the rest of the tweets. It functions in a similar way to the <a href=\"https://threadreaderapp.com/\">Thread Reader app</a>, except the unrolled thread is hosted on your WordPress post.</p>\n\n\n\n<img />\n\n\n\n<p>Tweetstorms remain a controversial way to get a lengthy point across. Twitter users with large followings will often get wider exposure and more traction and interaction on their ideas when they share them in a series of bite-size tweets. Although tweetstorms might be better as a blog, especially for those who are consuming and sharing them, a link to a blog post doesn’t carry the same weight as tweets for capturing Twitter users’ immediate attention.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">If your thread is more than 3 tweets it does not belong on Twitter. Don\'t @ me. <a href=\"https://twitter.com/hashtag/longlivetheblog?src=hash&ref_src=twsrc%5Etfw\">#longlivetheblog</a></p>— <NAME> (@desrosj) <a href=\"https://twitter.com/desrosj/status/1242442659635048453?ref_src=twsrc%5Etfw\">March 24, 2020</a></blockquote>\n</div>\n\n\n\n<p>You may not be able to convince people to stop posting tweetstorms, but with Jetpack 8.7 you can make sure that these tweets are available inside a blog post.</p>\n\n\n\n<p><NAME>, who has been working on the unroll feature for several months, tweeted a demo video of how it works.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Not particularly controversial opinion: most tweetstorms should be blog posts.<br /><br />Putting my money where my mouth is: <a href=\"https://t.co/HFBbmQtwql\">pic.twitter.com/HFBbmQtwql</a></p>— Gary (@GaryPendergast) <a href=\"https://twitter.com/GaryPendergast/status/1266201102241853440?ref_src=twsrc%5Etfw\">May 29, 2020</a></blockquote>\n</div>\n\n\n\n<p>If you’re looking to compose and publish tweetstorms from a blog post, with your post as the point of origin, <NAME>’s <a href=\"https://github.com/JJJ/publishiza\">Publishiza</a> plugin performs the opposite function of Jetpack’s new unroll feature. Pendergast said he is also investigating how to add the ability to publish a tweetstorm using the block editor, which seems like an ideal use case for writing content in blocks.</p>\n\n\n\n<p>Jetpack 8.7 also brings updates to the recently revamped <a href=\"https://jetpack.com/2020/04/07/re-introducing-jetpack-search-for-wordpress-sites/\">Search feature</a>, adding more customization options for the search overlay:</p>\n\n\n\n<ul><li>Choose between minimal and expanded results</li><li>Change the default sorting to options — like chronological</li><li>Hide the sort option to reduce the size of the interface</li></ul>\n\n\n\n<p>This release also gives users easier access to their Google Photos and the free Pexels library. Access to these services was previously integrated with media library but is now also accessible via the block editor.</p>\n\n\n\n<p>Version 8.7 introduces a WhatsApp Button block to allow visitors and customers to get in touch easily. The Jetpack team has also added more customization options to the Calendly, Mailchimp, Eventbrite, and Payment blocks. Check out the <a href=\"https://jetpack.com/2020/07/07/87-easier-reach-customers/\">release post</a> for a full list of improvements in this update.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2020 20:48:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: After 11 Years, Users Will Be Able to Update Themes and Plugins via a ZIP File\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/after-11-years-users-will-be-able-to-update-themes-and-plugins-via-a-zip-file?utm_source=rss&utm_medium=rss&utm_campaign=after-11-years-users-will-be-able-to-update-themes-and-plugins-via-a-zip-file\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4102:\"<p class=\"has-drop-cap\">It has been a long road. Eleven long years. WordPress will finally allow end-users to update an installed plugin or theme by <a href=\"https://core.trac.wordpress.org/changeset/48390\">uploading a ZIP file</a>. After over a decade, most people who had hoped to see this day have likely moved on. However, for those of us still waiting for this long sought after feature, it will land in WordPress 5.5.</p>\n\n\n\n<p>A little patience never hurt anyone. Over the years, we have seen plugins crop up to handle this missing feature. There has been a clear and present need for it. <a href=\"https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/\">Easy Theme and Plugin Upgrades</a> by <NAME> has over 200,000 active installs. <a href=\"https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/\">Update Theme and Plugins from Zip File</a> by <NAME> has another 20,000. The community owes the developers of these plugins at least a small bit of thanks for taking on a job that should have long ago been a part of the core experience.</p>\n\n\n\n<p>There was a time when this feature would have been one of the most important tools to land in WordPress. This was a time when one-click updates were not a thing. This was long before the idea of automatic theme and plugin updates, <a href=\"https://wptavern.com/automatic-theme-and-plugin-updates-slated-for-wordpress-5-5\">a feature that is also coming in WordPress 5.5</a>, was conceived. While it is still exciting to finally get a feature that has long been on the waiting list, it is far less useful than it once was.</p>\n\n\n\n<p>This missing feature has also likely at least partially spurred commercial theme and plugin shops to come up with custom solutions. This represents arguably one of the largest segments of users that still need the feature, at least for those using products from shops that do not provide one-click or automatic updates. </p>\n\n\n\n<p>Updating themes via a ZIP file is a bit old-school, but there are scenarios where that is the better or preferred option for some users.</p>\n\n\n\n<p>I routinely use a third-party plugin to handle this for various sites I am involved with where I might maintain a custom theme. This is particularly true if I don’t have FTP or other access to the server. It is simple to upload a ZIP file in those cases.</p>\n\n\n\n<p>Despite less of a need for this feature in 2020 than in 2009, I can still use it. Judging by the download numbers of existing plugins, a couple hundred thousand others can too.</p>\n\n\n\n<h2>How Updating via ZIP Works</h2>\n\n\n\n<p class=\"has-drop-cap\">The new feature is not immediately apparent. However, it is more of a power-user feature that users will need to know about before attempting to use.</p>\n\n\n\n<p>Updating a theme or plugin works in the same fashion as uploading a new one. By visiting the Add New plugin or theme screen in the WordPress admin and clicking the upload button, users can drop the ZIP file from their computer. After clicking the Install Now button, WordPress will direct users to a new screen that compares the currently-installed extension with the uploaded versions. Users can then choose between continuing with the installation or canceling.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>Steps to updating an existing plugin.\n\n\n\n<p>After clicking the “Upload Plugin” button via the new plugin screen, the uploader currently reads, “If you have a plugin in a .zip format, you may install it by uploading it here.” There is no mention that users may upload a plugin that is already installed. A tweak to the language could help make it clear.</p>\n\n\n\n<p>The comparison feature is a welcome addition, which should curb users accidentally uploading something they already have installed or rolling back when they already have a newer version active on the site. Some of the existing solutions from third-party plugins do not handle this feature, so this should make for a good upgrade.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2020 20:09:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: New Gatsby Source WordPress Plugin Now in Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101091\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:157:\"https://wptavern.com/new-gatsby-source-wordpress-plugin-now-in-beta?utm_source=rss&utm_medium=rss&utm_campaign=new-gatsby-source-wordpress-plugin-now-in-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4982:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Gatsby <a href=\"https://www.gatsbyjs.org/blog/2020-07-07-wordpress-source-beta/\">announced</a> its new source plugin (v4) for WordPress is now in beta. The plugin has been completely revamped to improve <a href=\"https://www.gatsbyjs.org/docs/glossary/headless-wordpress\">headless WordPress</a> setups where Gatsby powers the frontend. It also integrates with <a href=\"https://www.gatsbyjs.com/\">Gatsby Cloud</a> to provide real-time previews and incremental builds.</p>\n\n\n\n<p>The Gatsby team has had a long journey towards creating an integration for WordPress sites that would satisfy more complex use cases. There are currently three different avenues for using Gatsby with WordPress, each with different benefits and drawbacks:</p>\n\n\n\n<ul><li>Gatsby Source WordPress + WP REST API </li><li>Gatsby Source GraphQL + WPGraphQL </li><li>Gatsby Source WordPress (v4) + WPGraphQL</li></ul>\n\n\n\n<p>The first approach relies on the WP REST API to fetch all data (posts, terms, media, etc) and cache the data in Gatsby’s node cache. The second method allows developers to write GraphQL queries to fetch data from the Gatsby cache and render that data in templates.</p>\n\n\n\n<p>According to Gatsby engineer and WPGraphQL creator <NAME>, the first two approaches are only adequate for basic use cases.</p>\n\n\n\n<p>“When you start adding more advanced functionality, such as Advanced Custom Fields Flex Fields, the WP REST API starts to fall apart and become very difficult to use in a decoupled way,” Bahl said. “The WP REST API has a Schema that can allow plugins and themes to extend the WP REST API and declare what type of data any given endpoint will expose. This is helpful for decoupled applications to know ahead of time what kind of data to expect.</p>\n\n\n\n<p>“The problem is that plugins and themes can extend the WP REST API without making use of the Schema, or by simply defining field types in the Schema as `object` or `array` Types. This means there’s no easy way for decoupled applications, including Gatsby, to know what to expect from those fields. Gatsby relies on consistent data, and the WP REST API isn’t consistent. The shape of the data returned from endpoints (especially when plugins extend the REST API) is unpredictable and that is problematic for decoupled applications.”</p>\n\n\n\n<p>WPGraphQL was created as an alternative to the WP REST API, addressing many of these pain points with its enforced Schema. This benefits decoupled tools like Gatsby because they can introspect the Schema to determine what data is available before requesting any.</p>\n\n\n\n<p>“So even cases such as Advanced Custom Fields Flex Fields, where the data being returned could be one of many possible Flex Field Layouts, Gatsby can still know what the possible data is before asking for the data,” Bahl said. “The enforced Schema of WPGraphQL allows decoupled tools to ship with confidence and eliminates entire classes of bugs.”</p>\n\n\n\n<p>The Gatsby Source GraphQL + WPGraphQL approach has some improvements over using the WP REST API but was limited in that it doesn’t cache data to the Gatsby node cache. This prevents WordPress sites from being able to utilize Gatsby’s cloud-based commercial offerings for previews and incremental builds. Bahl explained how the new Gatsby Source WordPress plugin (v4) + WPGraphQL is the “best of both worlds:”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>It uses WPGraphQL on the WordPress server to expose WordPress data in a Typed GraphQL Schema. Gatsby Source WordPress v4 uses GraphQL Introspection to read the Schema from the WordPress site and builds a nearly identical Schema in Gatsby. It then fetches data using WPGraphQL and caches the data in Gatsby. Users then use GraphQL to interact with the Gatsby cache and get data to render in Components in their Gatsby site.</p></blockquote>\n\n\n\n<p>The new integration gives content creators the ability to click “preview” to see their changes live in the Gatsby-powered site. Publishing no longer requires a full site rebuild. It will simply push out the changes to the affected pages. Changes will be live in seconds, similar to how users expect WordPress to work without the headless integration. The new plugin, combined with Gatsby Cloud, provide a better marriage of the content creation experience with Gatsby’s React + GraphQL developer experience, while delivering fast static pages on the frontend.</p>\n\n\n\n<p>If you want to test the beta of the new Gatsby Source WordPress plugin, you can find it (and its dependencies) <a href=\"https://github.com/gatsbyjs/gatsby-source-wordpress-experimental\">on GitHub</a>. The <a href=\"https://docs.wpgraphql.com/getting-started/install-and-activate/\">WPGraphQL</a> and <a href=\"https://wordpress.org/plugins/wp-gatsby/\">WPGatsby</a> plugins are also required. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2020 22:33:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.5 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8624\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9498:\"<p>WordPress 5.5 Beta 1 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.5 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta1.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for final release is August 11, 2020. This is only <strong>five weeks away</strong>. Your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Testing for bugs is an important part of polishing the release during the beta stage and a great way to contribute. Here are some of the big changes and features to pay close attention to while testing.</p>\n\n\n\n<h2><strong>Block editor: features and improvements</strong></h2>\n\n\n\n<p>WordPress 5.5 will include ten releases of the Gutenberg plugin, bringing with it a long list of exciting new features. Here are just a few:</p>\n\n\n\n<ul><li><strong>Inline image editing – </strong>Crop, rotate, and zoom photos inline right from image blocks.</li><li><strong>Block patterns</strong> – Building elaborate pages can be a breeze with new block patterns. Several are included by default.</li><li><strong>Device previews</strong> – See how your content will look to users on many different screen sizes. </li><li><strong>End block overwhelm</strong>. The new block inserter panel displays streamlined categories and collections. As a bonus, it supports patterns and integrates with the new block directory right out of the box.</li><li><strong>Discover, install, and insert third-party blocks</strong> from your editor using the new block directory.</li><li>A better, <strong>smoother editing experience </strong>with: <ul><li>Refined drag-and-drop</li><li>Block movers that you can see and grab</li><li>Parent block selection</li><li>Contextual focus highlights</li><li>Multi-select formatting lets you change a bunch of blocks at once </li><li>Ability to copy and relocate blocks easily</li><li>And, better performance</li></ul></li><li><strong>An expanded design toolset for themes.</strong></li><li>Now <strong>add backgrounds and gradients</strong> to more kinds of blocks, like groups, columns, media & text</li><li>And <strong>support for more types of measurements</strong> — not just pixels. Choose ems, rems, percentages, vh, vw, and more! Plus, adjust line heights while typing, turning writing and typesetting into the seamless act.</li></ul>\n\n\n\n<p>In all, WordPress 5.5 brings more than 1,500 useful improvements to the block editor experience. </p>\n\n\n\n<p>To see all of the features for each release in detail check out the release posts: <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.5.0\">7.5</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.6.0\">7.6</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.7.0\">7.7</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.8.0\">7.8</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.9.0\">7.9</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.0.0\">8.0</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.1.0\">8.1</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.2.0\">8.2</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.3.0\">8.3</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.4.0\">8.4</a>.</p>\n\n\n\n<h2><strong>Wait! There’s more!</strong></h2>\n\n\n\n<h3><strong>XML sitemaps</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/\">XML Sitemaps are now included in WordPress</a> and enabled by default. Sitemaps are essential to search engines discovering the content on your website. Your site’s home page, posts, pages, custom post types, and more will be included to improve your site’s visibility.</p>\n\n\n\n<h3><strong>Auto-updates for plugins and themes</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/tag/core-auto-updates/\">WordPress 5.5 also brings auto-updates for plugins and themes</a>. Easily control which plugins and themes keep themselves up to date on their own. It’s always recommended that you run the latest versions of all plugins and themes. The addition of this feature makes that easier than ever!</p>\n\n\n\n<h3><strong>Lazy-loading images</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/04/08/lazy-loading-of-images-is-in-core/\">WordPress 5.5 will include native support for lazy-loaded images</a> utilizing new browser standards. With lazy-loading, images will not be sent to users until they approach the viewport. This saves bandwidth for everyone (users, hosts, ISPs), makes it easier for those with slower internet speeds to browse the web, saves electricity, and more.</p>\n\n\n\n<h3><strong>Better accessibility</strong></h3>\n\n\n\n<p>With every release, WordPress works hard to improve accessibility. Version 5.5 is no different and packs a parcel of accessibility fixes and enhancements. Take a look:</p>\n\n\n\n<ul><li>List tables now come with extensive, alternate view modes.</li><li>Link-list widgets can now be converted to HTML5 navigation blocks.</li><li>Copying links in media screens and modal dialogs can now be done with a simple click of a button.</li><li>Disabled buttons now actually look disabled.</li><li>Meta boxes can now be moved with the keyboard.</li><li>A custom logo on the front page no longer links to the front page.</li><li>Assistive devices can now see status messages in the Image Editor.</li><li>The shake animation indicating a login failure now respects the user’s choices in the <code>prefers-reduced-motion</code> media query.</li><li>Redundant <code>Error:</code> prefixes have been removed from error notices.</li></ul>\n\n\n\n<h2><strong>Miscellaneous Changes</strong></h2>\n\n\n\n<ul><li>Plugins and themes can now be updated by uploading a ZIP file.</li><li><a href=\"https://make.wordpress.org/core/2020/06/26/wordpress-5-5-better-fine-grained-control-of-redirect_guess_404_permalink/\">More finely grained control of redirect_guess_404_permalink()</a>.</li><li><a href=\"https://make.wordpress.org/core/2020/07/01/external-library-updates-in-wordpress-5-5-call-for-testing/\">Several packaged external libraries have been updated</a>, including PHPMailer, SimplePie, Twemoji, Masonry, and more!</li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">5.5-related developer notes</a> in the coming weeks, breaking down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">360 tickets in WordPress 5.5</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&status=reopened&type=enhancement&milestone=5.5&or&status=closed&status=reopened&type=feature+request&milestone=5.5&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&col=changetime&col=keywords&order=changetime\">157 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p class=\"has-small-font-size\"><em>Props to <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>, <a href=\"https://profiles.wordpress.org/estelaris/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>estelaris</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a> for compiling/writing this post, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a> for editing/proof reading, and <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>, and <a href=\"https://profiles.wordpress.org/andreamiddleton/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>andreamiddleton</a> for final review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2020 21:49:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WPTavern: Goodbye, ManageWP.org; Hello, WP Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"https://wptavern.com/goodbye-managewp-org-hello-wp-content?utm_source=rss&utm_medium=rss&utm_campaign=goodbye-managewp-org-hello-wp-content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3983:\"<p class=\"has-drop-cap\">Yesterday, <NAME> and <NAME> launched community-curated, news-sharing site <a href=\"https://wpcontent.io/\">WP Content</a>. The launch comes on the heels of <a href=\"https://managewp.org/\">ManageWP.org</a> shutting down its own news-sharing service and the WordPress community losing out on a valuable resource.</p>\n\n\n\n<p>Both Poulson and Rich are based in the UK and work for <a href=\"https://deliciousbrains.com/\">Delicious Brains</a>, a development company that focuses on building products for WordPress. Their new venture was met with enthusiasm when Poulson first <a href=\"https://twitter.com/polevaultweb/status/1280061239440408576\">announced it on Twitter</a>.</p>\n\n\n\n<img />Homepage of WPContent.io.\n\n\n\n<p>Long before I was a writer for WP Tavern and needed to keep an eye out for the latest news, ManageWP.org was one of my go-to sources for catching up with everything happening in the WordPress community. There is always so much going on that even the Tavern cannot stay on top of it all. ManageWP.org helped me become a voracious reader of ideas, tutorials, and other news within the industry. For that, I am certain I owe the team a debt that cannot be repaid.</p>\n\n\n\n<p>After shutting the doors, they left us with a message on the site that read, “After many years of serving the WordPress community, we’ve made the difficult decision to shut down ManageWP.org. Several factors led us here, but it ultimately came down to the team being unable to give ManageWP.org the attention it deserves.”</p>\n\n\n\n<p>It is only the news-sharing site at ManageWP.org that is shutting down. The ManageWP.com company and service are still alive and well.</p>\n\n\n\n<p><a href=\"https://wptavern.com/managewp-launches-community-curated-wordpress-news-site\">ManageWP.org launched</a> when WordPress held a mere 20% of the web back in 2013. <a href=\"https://wptavern.com/godaddy-acquires-wordpress-site-management-service-managewp\">GoDaddy acquired the ManageWP company</a> in 2016 but allowed it to operate independently, including the news-sharing site. In many ways, ManageWP.org felt as much a part of the identity of the WordPress community as our site. For seven years, users have shared articles, upvoted their favorites, and found a legitimate source to stay informed on a wide range of topics around WordPress.</p>\n\n\n\n<p>“Thank you to everyone who shared inspiring stories, useful resources, and special announcements with us,” read the final message on the site. “It’s been a treat.”</p>\n\n\n\n<p>While many of us were disappointed to see the site shut down, sometimes it is time for something new. We can say goodbye to a great service and make room for someone else to take up the mantle. So, goodbye, ManageWP.org. Thanks for all the good years. And, welcome, WP Content.</p>\n\n\n\n<p>“After @managewp closed down their community news site, we felt there should be a place where the #WordPress community can submit articles and up vote them,” <a href=\"https://twitter.com/wpcontent_io/status/1280061061199204352\">tweeted the WP Content team</a>.</p>\n\n\n\n<p>The newly-built WP Content site is simple to use. It works similarly to other sharing sites such as Reddit. Users can sign up for an account to share stories themselves or upvote other stories. All visitors are free to follow through and read stories without signing up.</p>\n\n\n\n<p>The front page of the site shares the currently trending and most recent stories. The site also breaks stories down into the following categories:</p>\n\n\n\n<ul><li>Business</li><li>Community</li><li>Development</li><li>Plugins</li><li>Security</li><li>Tutorials</li></ul>\n\n\n\n<p>I welcome the new venture and am glad to see someone filling in what was quickly becoming a missing piece of our community. With luck, WP Content will serve as a great resource for many years to come. The team has some big shoes to fill, but they are off to a great start.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2020 18:31:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordCamp Attendance Badges Could Be a Good Thing, but That’s the Wrong Discussion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101557\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"https://wptavern.com/wordcamp-attendance-badges-could-be-a-good-thing-but-thats-the-wrong-discussion?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-attendance-badges-could-be-a-good-thing-but-thats-the-wrong-discussion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7030:\"<img />WordPress profile badges.\n\n\n\n<p class=\"has-drop-cap\">On July 3, <NAME> <a href=\"https://make.wordpress.org/community/2020/07/03/proposal-recognition-for-event-volunteers-and-attendees-in-wordpress-org-profile/\">opened a discussion on the Community WordPress blog</a> on whether WordCamp volunteers, WordCamp attendees, or Meetup attendees should be awarded a WordPress.org profile badge. The discussion stemmed from a nearly <a href=\"https://meta.trac.wordpress.org/ticket/3878\">two-year-old Meta ticket</a> that was recently resurfaced.</p>\n\n\n\n<p>The general consensus from the comments on the post seems to be that volunteers should receive badges because they are making direct contributions to the community. Most argue that merely attending an event is not badge-worthy. There are also some technical concerns. However, they should not be a real issue considering we are a community of programmers and problem solvers.</p>\n\n\n\n<p>I see the rationale behind not giving badges to attendees. In one way, it feels like it diminishes the badges that others have earned, quite often, through hours of valuable time freely given back to the project.</p>\n\n\n\n<p>I am taking a wild guess here and will say that most people would agree that direct, measurable contributions should be rewarded. Whether it is contributing a patch to core, reviewing code as part of the Themes Team, or handing out sandwiches at your local WordCamp lunch line, you should be recognized for giving back to the community.</p>\n\n\n\n<p><em>WordCamp attendance badges would become the participation trophies of the WordPress world.</em></p>\n\n\n\n<p>I get the argument. I do. When I first read the community post, my gut reaction was to make that same argument.</p>\n\n\n\n<p>In some parts of American culture, at least, <em>participation trophies</em> are often looked upon as something to be ashamed of — <em>if you don’t earn MVP, it’s not a real trophy</em>. I have seen the culture change, seemingly overnight, in my local community. Fathers will not allow their sons to accept a trophy for merely being on the football team (anyone deserves a trophy for making it through training camp in Alabama’s sweltering August heat). I watch as community members — grown adults — tear down others’ kids on Facebook over the same idea.</p>\n\n\n\n<p>The discussion on WordCamp attendance badges feels much the same. However, the argument is valid only because that is how the system is set up. It was created to award based on merit. The awards go to those who put in the time and effort, typically over the long haul.</p>\n\n\n\n<p>On the surface, that feels like a good system. However, other systems have benefits that perhaps our community has been overlooking, particularly those that gamify participation. Currently, WordPress profile badges are not being utilized to their full potential. The missing piece is that we are not encouraging more participation. We are not helping the first-time user level up and earn more badges/awards.</p>\n\n\n\n<img />NaNoWriMo writing and personal achievement badges.\n\n\n\n<p class=\"has-drop-cap\">In 2018, I successfully completed <a href=\"https://nanowrimo.org/\">National Novel Writing Month</a> (NaNoWriMo). It is an event where thousands of people go through the insane process of writing a 50,000-word novel in 30 days. One of the things that pushed me through the month, aside from sheer willpower and encouragement from family and friends, was the encouragement from the NaNoWriMo website itself.</p>\n\n\n\n<p>The website has two categories of badges. The first category is its writing badges. These badges are awarded based on actually doing work. They are also awarded in stages. Write for a two-day streak. Earn a badge. Surpass 5,000 words. Earn a badge. Finish the month-long challenge. Earn a badge. Throughout the process of NaNoWriMo, earning these writing badges was a big motivator toward keeping the dream of writing a novel alive. If I wasn’t motivated to write on a particular day, I could look at the next badge I would earn by just putting pen to paper for another half hour or so.</p>\n\n\n\n<p>The thing about these writing badges that was so important was not that they gave me any bragging rights. The badges were not for showing other people how awesome I was. They were deeply personal. They were things that helped motivate me to continue on. <em>OK, I did brag about them a little bit.</em></p>\n\n\n\n<p>At the end of the day, these achievement-based badges were not about other people. They made me feel good about myself, and that is what mattered.</p>\n\n\n\n<p>NaNoWriMo’s second category was for personal badges. They were not awarded for any achievement. Every user on the site could pick and choose the badges they wanted. They were reflections of the person. It told others a little something about you.</p>\n\n\n\n<p>One of my favorite badges was the “pantser” badge. It let people in the NaNoWriMo community know that I was writing without a novel outline or any real plan — literally by the seat of my pants. Others would choose the “planner” or even the combo “plantser” badge. And, the site had several other badges that simply added to the fun.</p>\n\n\n\n<p>We do not have to think about badges as something that must be awarded based on hard work. Sure, we should have those “gold level” badges that are earned through direct contributions and being on a particular team. Joining the Documentation Team or submitting a plugin to the official plugin directory is a big deal. Those achievements should be shown on your profile. However, they are not the only achievements that matter.</p>\n\n\n\n<p>Remember that badges are sometimes personal. Being awarded for even the smallest of things can help build the confidence that some people need to do that second small thing.</p>\n\n\n\n<p>Simple badges for asking or answering your first support forum question could be a great motivator to become more involved. Attending a WordCamp for the first time? Get a badge. That might help motivate you to earn the five-time WordCamp attendee badge next.</p>\n\n\n\n<p>I would even love to see badges for individual WordCamps. How cool would it be for someone to earn a badge for attending a WordCamp in every corner of the world? Or just on one continent?</p>\n\n\n\n<p>There is so much lost potential with the current badge system. We are having the wrong discussion. Whether someone should earn a badge for attending a WordCamp is too narrow of a focus. Let’s start looking at how we can gamify participation in the WordPress community and use that system to get more people involved.</p>\n\n\n\n<p>If we maintain the current system of giving badges only for contributions and teams, yeah, WordCamp volunteers should get those. Attendees have done nothing to earn a badge in that system. That seems like an easy call to make and not worth much discussion. But, since we are here, let’s rethink this whole thing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2020 18:42:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WordProof Wins €1 Million Grant to Advance Blockchain Timestamping Concept\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=101541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/wordproof-wins-e1-million-grant-to-advance-blockchain-timestamping-concept?utm_source=rss&utm_medium=rss&utm_campaign=wordproof-wins-e1-million-grant-to-advance-blockchain-timestamping-concept\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2423:\"<p><a href=\"https://wordproof.io/\">WordProof</a>, the company behind the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/wordproof-timestamp/\" target=\"_blank\">WordProof Timestamp</a> plugin for WordPress, has received a €1 million grant from the European Commission as the reward for winning a competition called “<a href=\"https://ec.europa.eu/research/eic/index.cfm?pg=prizes_blockchains\">Blockchains for Social Good</a>.” The Dutch startup beat 175 other participants from around Europe.</p>\n\n\n\n<p>The competition was designed to reward developers’ efforts in exploring decentralized applications of blockchains for social innovation. WordProof was one of five finalists selected to receive €1 million, after submitting its <a href=\"https://wordproof.io/timestamp-ecosystem/\">Timestamp Ecosystem</a> concept, which seeks to increase transparency and accountability by proving authenticity of content on the web. In addition to its WordPress plugin, the timestamping ecosystem aims to provide solutions for other content management platforms, e-commerce, and social media. </p>\n\n\n\n<p>WordProof founder <NAME> said the grant is evidence of the company gaining traction with governments and universities.</p>\n\n\n\n<p>“With the recognition and financial support from Europe, we can roll out the Timestamp Ecosystem at a higher pace and make WordProof grow even faster as a company,” <NAME> said. “This will enable Europe to define the standard for a reliable Internet for consumers and organisations.” </p>\n\n\n\n<p><NAME> said WordProof is still very much “a WordPress-focused company” and plans to use the funds to extend its timestamping plugin to work with WooCommerce. They also plan to begin working with major publishers and WooCommerce shops to integrate timestamping solutions. The company began working with Yoast two months ago on deeply integrating with Schema.org to provide <a href=\"https://wordproof.io/features/structured-data-for-seo/\">structured data for SEO</a>.</p>\n\n\n\n<p>In the coming weeks, <NAME> said the company plans to announce “a significant investment from the WordPress space.” WordProof is currently focused on advocacy with/at the European Commission to make timestamping an open source standard that would be independent from the control of any single company.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2020 15:32:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Akismet: Akismet Blocks Five Hundred Billion Spam and Counting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2075\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://blog.akismet.com/2020/07/06/akismet-five-hundred-billion-with-a-b-spam/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1165:\"<p><img /></p>\n<p>It was happening while you ate dinner. While you were at work. While you were on vacation, going for a walk, or daydreaming. It was certainly happening while you were sleeping. All this time — for nearly 15 years — Akismet has been catching and blocking spam from appearing on websites and forums the world over, and Akismet just reached an important milestone: over 500 billion pieces of spam blocked, <a href=\"https://akismet.com/#countUp\">and counting.</a></p>\n<h2>Saving countless hours for you</h2>\n<p>Think about that number: five hundred billion spam comments blocked — and not just on WordPress sites! Akismet has been ensnaring spam on other platforms including Drupal, Joomla, <a href=\"https://akismet.com/development/api/#use-a-library\">and more</a>, saving countless hours of moderation time and frustration for millions of people around the world.</p>\n<h2>To the future!</h2>\n<p>If you need spam protection for your website or forum, Akismet is here to help. Free up time spent tweezing spam comments and allow Akismet to <a href=\"https://akismet.com/plans/\">catch and block it for you</a>. Here’s to the next 500 billion!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jul 2020 15:12:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"<NAME>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 01 Aug 2020 09:19:27 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 01 Aug 2020 09:00:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1136, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1596316768', 'no'),
(1137, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1596273568', 'no'),
(1138, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1596316769', 'no'),
(1139, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2020/07/wordpress-5-5-release-candidate/\'>WordPress 5.5 Release Candidate</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/big-orange-heart-opens-2020-remote-work-wellbeing-and-mental-health-survey?utm_source=rss&utm_medium=rss&utm_campaign=big-orange-heart-opens-2020-remote-work-wellbeing-and-mental-health-survey\'>WPTavern: Big Orange Heart Opens 2020 Remote Work Wellbeing and Mental Health Survey</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-6-wish-list-homepage-post-type-selection-and-block-management?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-6-wish-list-homepage-post-type-selection-and-block-management\'>WPTavern: WordPress 5.6 Wish List: Homepage Post Type Selection and Block Management</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\'>WPTavern: WordCamp US 2020 Canceled Due to Pandemic Stress and Online Event Fatigue</a></li></ul></div>', 'no'),
(1140, '_transient_timeout__woocommerce_helper_subscriptions', '1596274472', 'no'),
(1141, '_transient__woocommerce_helper_subscriptions', 'a:0:{}', 'no'),
(1142, '_site_transient_timeout_theme_roots', '1596275372', 'no'),
(1143, '_site_transient_theme_roots', 'a:4:{s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:8:\"wpemerge\";s:7:\"/themes\";}', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(5, 6, '_wp_attached_file', 'woocommerce-placeholder.png'),
(6, 6, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7, 11, '_edit_last', '1'),
(8, 11, '_edit_lock', '1596270755:1'),
(9, 12, '_wp_attached_file', '2020/07/51ICUS2LjdL.jpg'),
(10, 12, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:320;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2020/07/51ICUS2LjdL.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"51ICUS2LjdL-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"51ICUS2LjdL-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"51ICUS2LjdL-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"51ICUS2LjdL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"51ICUS2LjdL-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"51ICUS2LjdL-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11, 11, 'total_sales', '0'),
(12, 11, '_tax_status', 'taxable'),
(13, 11, '_tax_class', ''),
(14, 11, '_manage_stock', 'no'),
(15, 11, '_backorders', 'no'),
(16, 11, '_sold_individually', 'no'),
(17, 11, '_virtual', 'no'),
(18, 11, '_downloadable', 'no'),
(19, 11, '_download_limit', '-1'),
(20, 11, '_download_expiry', '-1'),
(21, 11, '_stock', NULL),
(22, 11, '_stock_status', 'instock'),
(23, 11, '_wc_average_rating', '0'),
(24, 11, '_wc_review_count', '0'),
(25, 11, '_product_version', '4.3.1'),
(27, 11, '_regular_price', '150'),
(28, 11, '_sale_price', '99'),
(29, 11, '_price', '99'),
(30, 11, '_thumbnail_id', '12'),
(31, 14, '_edit_last', '1'),
(32, 14, '_edit_lock', '1596173933:1'),
(33, 15, '_wp_attached_file', '2020/07/download.png'),
(34, 15, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:179;s:6:\"height\";i:282;s:4:\"file\";s:20:\"2020/07/download.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"download-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"download-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"download-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35, 14, '_thumbnail_id', '15'),
(36, 14, '_regular_price', '200'),
(37, 14, '_sale_price', ''),
(38, 14, 'total_sales', '0'),
(39, 14, '_tax_status', 'taxable'),
(40, 14, '_tax_class', ''),
(41, 14, '_manage_stock', 'yes'),
(42, 14, '_backorders', 'no'),
(43, 14, '_sold_individually', 'no'),
(44, 14, '_virtual', 'no'),
(45, 14, '_downloadable', 'no'),
(46, 14, '_download_limit', '-1'),
(47, 14, '_download_expiry', '-1'),
(48, 14, '_stock', '8'),
(49, 14, '_stock_status', 'instock'),
(50, 14, '_wc_average_rating', '0'),
(51, 14, '_wc_review_count', '0'),
(52, 14, '_product_version', '4.3.1'),
(53, 14, '_price', '200'),
(54, 16, '_edit_last', '1'),
(55, 16, '_edit_lock', '1596173583:1'),
(56, 16, 'total_sales', '0'),
(57, 16, '_tax_status', 'taxable'),
(58, 16, '_tax_class', ''),
(59, 16, '_manage_stock', 'no'),
(60, 16, '_backorders', 'no'),
(61, 16, '_sold_individually', 'no'),
(62, 16, '_virtual', 'no'),
(63, 16, '_downloadable', 'no'),
(64, 16, '_download_limit', '-1'),
(65, 16, '_download_expiry', '-1'),
(66, 16, '_stock', NULL),
(67, 16, '_stock_status', 'instock'),
(68, 16, '_wc_average_rating', '0'),
(69, 16, '_wc_review_count', '0'),
(70, 16, '_product_version', '4.3.1'),
(71, 17, '_wp_attached_file', '2020/07/Office-Depot-Copy-And-Print-Paper.png'),
(72, 17, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:45:\"2020/07/Office-Depot-Copy-And-Print-Paper.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"Office-Depot-Copy-And-Print-Paper-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Office-Depot-Copy-And-Print-Paper-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"Office-Depot-Copy-And-Print-Paper-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(73, 16, '_thumbnail_id', '17'),
(74, 16, '_regular_price', '500'),
(75, 16, '_sale_price', '480'),
(76, 16, '_price', '480'),
(77, 19, '_wp_trash_meta_status', 'publish'),
(78, 19, '_wp_trash_meta_time', '1596173870'),
(79, 11, '_wp_old_slug', 'motivation-book-1'),
(80, 20, '_edit_last', '1'),
(81, 20, '_edit_lock', '1596273349:1'),
(82, 21, '_wp_attached_file', '2020/07/71hu5APlj5L.jpg'),
(83, 21, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:886;s:6:\"height\";i:1200;s:4:\"file\";s:23:\"2020/07/71hu5APlj5L.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"71hu5APlj5L-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"71hu5APlj5L-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"71hu5APlj5L-600x813.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:813;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"71hu5APlj5L-222x300.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"71hu5APlj5L-756x1024.jpg\";s:5:\"width\";i:756;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"71hu5APlj5L-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"71hu5APlj5L-768x1040.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1040;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"71hu5APlj5L-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"71hu5APlj5L-600x813.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:813;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"71hu5APlj5L-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(84, 20, '_thumbnail_id', '21'),
(85, 20, '_regular_price', '600'),
(87, 20, 'total_sales', '0'),
(88, 20, '_tax_status', 'taxable'),
(89, 20, '_tax_class', ''),
(90, 20, '_manage_stock', 'no'),
(91, 20, '_backorders', 'no'),
(92, 20, '_sold_individually', 'no'),
(93, 20, '_virtual', 'no'),
(94, 20, '_downloadable', 'no'),
(95, 20, '_download_limit', '-1'),
(96, 20, '_download_expiry', '-1'),
(97, 20, '_stock', NULL),
(98, 20, '_stock_status', 'instock'),
(99, 20, '_wc_average_rating', '0'),
(100, 20, '_wc_review_count', '0'),
(101, 20, '_product_version', '4.3.1'),
(102, 20, '_price', '600'),
(103, 23, '_edit_last', '1'),
(104, 23, '_edit_lock', '1596174478:1'),
(105, 24, '_wp_attached_file', '2020/07/81wJF7qehL._AC_UL320_.jpg'),
(106, 24, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:320;s:6:\"height\";i:213;s:4:\"file\";s:33:\"2020/07/81wJF7qehL._AC_UL320_.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"81wJF7qehL._AC_UL320_-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"81wJF7qehL._AC_UL320_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"81wJF7qehL._AC_UL320_-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"81wJF7qehL._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"81wJF7qehL._AC_UL320_-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"81wJF7qehL._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(107, 23, '_thumbnail_id', '24'),
(108, 23, '_regular_price', '200'),
(109, 23, 'total_sales', '0'),
(110, 23, '_tax_status', 'taxable'),
(111, 23, '_tax_class', ''),
(112, 23, '_manage_stock', 'no'),
(113, 23, '_backorders', 'no'),
(114, 23, '_sold_individually', 'no'),
(115, 23, '_virtual', 'no'),
(116, 23, '_downloadable', 'no'),
(117, 23, '_download_limit', '-1'),
(118, 23, '_download_expiry', '-1'),
(119, 23, '_stock', NULL),
(120, 23, '_stock_status', 'instock'),
(121, 23, '_wc_average_rating', '0'),
(122, 23, '_wc_review_count', '0'),
(123, 23, '_product_version', '4.3.1'),
(124, 23, '_price', '200'),
(125, 25, '_edit_last', '1'),
(126, 25, '_edit_lock', '1596223444:1'),
(127, 26, '_wp_attached_file', '2020/07/41Enqz144rL._AC_UL320_.jpg'),
(128, 26, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:238;s:6:\"height\";i:320;s:4:\"file\";s:34:\"2020/07/41Enqz144rL._AC_UL320_.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"41Enqz144rL._AC_UL320_-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"41Enqz144rL._AC_UL320_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"41Enqz144rL._AC_UL320_-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"41Enqz144rL._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"41Enqz144rL._AC_UL320_-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"41Enqz144rL._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(129, 25, '_thumbnail_id', '26'),
(130, 25, '_regular_price', '393'),
(131, 25, '_sale_price', '343'),
(132, 25, 'total_sales', '0'),
(133, 25, '_tax_status', 'taxable'),
(134, 25, '_tax_class', ''),
(135, 25, '_manage_stock', 'no'),
(136, 25, '_backorders', 'no'),
(137, 25, '_sold_individually', 'no'),
(138, 25, '_virtual', 'no'),
(139, 25, '_downloadable', 'no'),
(140, 25, '_download_limit', '-1'),
(141, 25, '_download_expiry', '-1'),
(142, 25, '_stock', NULL),
(143, 25, '_stock_status', 'instock'),
(144, 25, '_wc_average_rating', '0'),
(145, 25, '_wc_review_count', '0'),
(146, 25, '_product_version', '4.3.1'),
(147, 25, '_price', '343'),
(148, 27, '_edit_last', '1'),
(149, 27, '_edit_lock', '1596264934:1'),
(150, 28, '_wp_attached_file', '2020/07/51TwTX1VDVL._AC_UL320_.jpg'),
(151, 28, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:239;s:6:\"height\";i:320;s:4:\"file\";s:34:\"2020/07/51TwTX1VDVL._AC_UL320_.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"51TwTX1VDVL._AC_UL320_-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"51TwTX1VDVL._AC_UL320_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"51TwTX1VDVL._AC_UL320_-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"51TwTX1VDVL._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"51TwTX1VDVL._AC_UL320_-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"51TwTX1VDVL._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(152, 27, '_thumbnail_id', '28'),
(153, 27, '_regular_price', '999'),
(154, 27, 'total_sales', '0'),
(155, 27, '_tax_status', 'taxable'),
(156, 27, '_tax_class', ''),
(157, 27, '_manage_stock', 'no'),
(158, 27, '_backorders', 'no'),
(159, 27, '_sold_individually', 'no'),
(160, 27, '_virtual', 'no'),
(161, 27, '_downloadable', 'no'),
(162, 27, '_download_limit', '-1'),
(163, 27, '_download_expiry', '-1'),
(164, 27, '_stock', NULL),
(165, 27, '_stock_status', 'instock'),
(166, 27, '_wc_average_rating', '0'),
(167, 27, '_wc_review_count', '0'),
(168, 27, '_product_version', '4.3.1'),
(169, 27, '_price', '999'),
(170, 29, '_edit_last', '1'),
(171, 29, '_edit_lock', '1596177644:1'),
(172, 30, '_wp_attached_file', '2020/07/61ghlVjW3L._AC_UL320_.jpg'),
(173, 30, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:226;s:6:\"height\";i:320;s:4:\"file\";s:33:\"2020/07/61ghlVjW3L._AC_UL320_.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"61ghlVjW3L._AC_UL320_-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"61ghlVjW3L._AC_UL320_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"61ghlVjW3L._AC_UL320_-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"61ghlVjW3L._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"61ghlVjW3L._AC_UL320_-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"61ghlVjW3L._AC_UL320_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(174, 29, '_thumbnail_id', '30'),
(175, 29, '_regular_price', '300'),
(176, 29, 'total_sales', '0'),
(177, 29, '_tax_status', 'taxable'),
(178, 29, '_tax_class', ''),
(179, 29, '_manage_stock', 'no'),
(180, 29, '_backorders', 'no'),
(181, 29, '_sold_individually', 'no'),
(182, 29, '_virtual', 'no'),
(183, 29, '_downloadable', 'no'),
(184, 29, '_download_limit', '-1'),
(185, 29, '_download_expiry', '-1'),
(186, 29, '_stock', NULL),
(187, 29, '_stock_status', 'instock'),
(188, 29, '_wc_average_rating', '0'),
(189, 29, '_wc_review_count', '0'),
(190, 29, '_product_version', '4.3.1'),
(191, 29, '_price', '300'),
(194, 36, '_edit_last', '1'),
(195, 36, '_edit_lock', '1596178108:1'),
(196, 38, '_edit_last', '1'),
(197, 38, '_edit_lock', '1596178323:1'),
(198, 45, '_edit_last', '1'),
(199, 45, '_edit_lock', '1596178693:1'),
(200, 47, '_edit_lock', '1596178692:1'),
(201, 49, '_edit_lock', '1596178888:1'),
(202, 50, '_edit_lock', '1596178920:1'),
(203, 51, '_edit_lock', '1596179327:1'),
(204, 66, '_edit_lock', '1596186312:1'),
(205, 45, '_wp_trash_meta_status', 'draft'),
(206, 45, '_wp_trash_meta_time', '1596221180'),
(207, 45, '_wp_desired_post_slug', ''),
(208, 38, '_wp_trash_meta_status', 'draft'),
(209, 38, '_wp_trash_meta_time', '1596221187'),
(210, 38, '_wp_desired_post_slug', ''),
(211, 36, '_wp_trash_meta_status', 'draft'),
(212, 36, '_wp_trash_meta_time', '1596221198'),
(213, 36, '_wp_desired_post_slug', ''),
(214, 74, '_wp_trash_meta_status', 'publish'),
(215, 74, '_wp_trash_meta_time', '1596225366'),
(216, 77, '_wp_trash_meta_status', 'publish'),
(217, 77, '_wp_trash_meta_time', '1596225417'),
(218, 91, '_edit_last', '1'),
(219, 91, '_edit_lock', '1596260703:1'),
(220, 92, '_edit_last', '1'),
(221, 92, '_edit_lock', '1596260720:1'),
(222, 110, '_wp_attached_file', '2020/07/Demo-testing-file.pdf'),
(225, 113, '_wp_attached_file', '2020/07/PRODUCT-TESTING-FILE.pdf'),
(227, 11, 'product_pdf', '113'),
(228, 11, '_product_pdf', '113'),
(229, 20, '_product_pdf', '110');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2020-07-31 05:00:57', '2020-07-31 05:00:57', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2020-07-31 05:00:57', '2020-07-31 05:00:57', '', 0, 'http://localhost/wk/?p=1', 0, 'post', '', 1),
(2, 1, '2020-07-31 05:00:57', '2020-07-31 05:00:57', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost/wk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2020-07-31 05:00:57', '2020-07-31 05:00:57', '', 0, 'http://localhost/wk/?page_id=2', 0, 'page', '', 0),
(3, 1, '2020-07-31 05:00:57', '2020-07-31 05:00:57', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://localhost/wk.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2020-07-31 05:00:57', '2020-07-31 05:00:57', '', 0, 'http://localhost/wk/?page_id=3', 0, 'page', '', 0),
(4, 1, '2020-07-31 05:04:46', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2020-07-31 05:04:46', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?p=4', 0, 'post', '', 0),
(6, 1, '2020-07-31 05:16:04', '2020-07-31 05:16:04', '', 'woocommerce-placeholder', '', 'inherit', 'open', 'closed', '', 'woocommerce-placeholder', '', '', '2020-07-31 05:16:04', '2020-07-31 05:16:04', '', 0, 'http://localhost/wk/wp-content/uploads/2020/07/woocommerce-placeholder.png', 0, 'attachment', 'image/png', 0),
(7, 1, '2020-07-31 05:18:56', '2020-07-31 05:18:56', '', 'Shop', '', 'publish', 'closed', 'closed', '', 'shop', '', '', '2020-07-31 05:18:56', '2020-07-31 05:18:56', '', 0, 'http://localhost/wk/?page_id=7', 0, 'page', '', 0),
(8, 1, '2020-07-31 05:18:57', '2020-07-31 05:18:57', '<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->', 'Cart', '', 'publish', 'closed', 'closed', '', 'cart', '', '', '2020-07-31 05:18:57', '2020-07-31 05:18:57', '', 0, 'http://localhost/wk/?page_id=8', 0, 'page', '', 0),
(9, 1, '2020-07-31 05:18:57', '2020-07-31 05:18:57', '<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->', 'Checkout', '', 'publish', 'closed', 'closed', '', 'checkout', '', '', '2020-07-31 05:18:57', '2020-07-31 05:18:57', '', 0, 'http://localhost/wk/?page_id=9', 0, 'page', '', 0),
(10, 1, '2020-07-31 05:18:57', '2020-07-31 05:18:57', '<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->', 'My account', '', 'publish', 'closed', 'closed', '', 'my-account', '', '', '2020-07-31 05:18:57', '2020-07-31 05:18:57', '', 0, 'http://localhost/wk/?page_id=10', 0, 'page', '', 0),
(11, 1, '2020-07-31 05:28:20', '2020-07-31 05:28:20', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.', 'Motivation Book', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.', 'publish', 'open', 'closed', '', 'motivation-book', '', '', '2020-08-01 07:02:08', '2020-08-01 07:02:08', '', 0, 'http://localhost/wk/?post_type=product&p=11', 0, 'product', '', 0),
(12, 1, '2020-07-31 05:27:57', '2020-07-31 05:27:57', '', '51ICUS2LjdL', '', 'inherit', 'open', 'closed', '', '51icus2ljdl', '', '', '2020-07-31 05:27:57', '2020-07-31 05:27:57', '', 11, 'http://localhost/wk/wp-content/uploads/2020/07/51ICUS2LjdL.jpg', 0, 'attachment', 'image/jpeg', 0),
(14, 1, '2020-07-31 05:32:06', '2020-07-31 05:32:06', '', 'Thinking Power', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.', 'publish', 'open', 'closed', '', 'thinking-power', '', '', '2020-07-31 05:38:52', '2020-07-31 05:38:52', '', 0, 'http://localhost/wk/?post_type=product&p=14', 0, 'product', '', 0),
(15, 1, '2020-07-31 05:31:59', '2020-07-31 05:31:59', '', 'download', '', 'inherit', 'open', 'closed', '', 'download', '', '', '2020-07-31 05:31:59', '2020-07-31 05:31:59', '', 14, 'http://localhost/wk/wp-content/uploads/2020/07/download.png', 0, 'attachment', 'image/png', 0),
(16, 1, '2020-07-31 05:33:25', '2020-07-31 05:33:25', '', 'A White Sheet Paper', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.', 'publish', 'open', 'closed', '', 'a-white-sheet-paper', '', '', '2020-07-31 05:35:15', '2020-07-31 05:35:15', '', 0, 'http://localhost/wk/?post_type=product&p=16', 0, 'product', '', 0),
(17, 1, '2020-07-31 05:34:54', '2020-07-31 05:34:54', '', 'Office-Depot-Copy-And-Print-Paper', '', 'inherit', 'open', 'closed', '', 'office-depot-copy-and-print-paper', '', '', '2020-07-31 05:34:54', '2020-07-31 05:34:54', '', 16, 'http://localhost/wk/wp-content/uploads/2020/07/Office-Depot-Copy-And-Print-Paper.png', 0, 'attachment', 'image/png', 0),
(18, 1, '2020-07-31 05:35:25', '2020-07-31 05:35:25', '', 'A White Sheet Paper', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\n\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\n\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.', 'inherit', 'closed', 'closed', '', '16-autosave-v1', '', '', '2020-07-31 05:35:25', '2020-07-31 05:35:25', '', 16, 'http://localhost/wk/?p=18', 0, 'revision', '', 0),
(19, 1, '2020-07-31 05:37:49', '2020-07-31 05:37:49', '{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2020-07-31 05:37:49\"\n },\n \"page_on_front\": {\n \"value\": \"7\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2020-07-31 05:37:49\"\n },\n \"page_for_posts\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2020-07-31 05:37:49\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'c26bf7e7-7ec5-4eae-8834-dba96110ebfb', '', '', '2020-07-31 05:37:49', '2020-07-31 05:37:49', '', 0, 'http://localhost/wk/?p=19', 0, 'customize_changeset', '', 0),
(20, 1, '2020-07-31 05:41:58', '2020-07-31 05:41:58', '', 'Indian Cooking Book', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.', 'publish', 'open', 'closed', '', 'cook-book', '', '', '2020-08-01 08:35:32', '2020-08-01 08:35:32', '', 0, 'http://localhost/wk/?post_type=product&p=20', 0, 'product', '', 0),
(21, 1, '2020-07-31 05:41:43', '2020-07-31 05:41:43', '', '71hu5APlj5L', '', 'inherit', 'open', 'closed', '', '71hu5aplj5l', '', '', '2020-07-31 05:41:43', '2020-07-31 05:41:43', '', 20, 'http://localhost/wk/wp-content/uploads/2020/07/71hu5APlj5L.jpg', 0, 'attachment', 'image/jpeg', 0),
(23, 1, '2020-07-31 05:50:02', '2020-07-31 05:50:02', '', 'JK Easy Copier Paper', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content', 'publish', 'open', 'closed', '', 'jk-easy-copier-paper', '', '', '2020-07-31 05:50:07', '2020-07-31 05:50:07', '', 0, 'http://localhost/wk/?post_type=product&p=23', 0, 'product', '', 0),
(24, 1, '2020-07-31 05:49:51', '2020-07-31 05:49:51', '', '81wJ+F7qehL._AC_UL320_', '', 'inherit', 'open', 'closed', '', '81wjf7qehl-_ac_ul320_', '', '', '2020-07-31 05:49:51', '2020-07-31 05:49:51', '', 23, 'http://localhost/wk/wp-content/uploads/2020/07/81wJF7qehL._AC_UL320_.jpg', 0, 'attachment', 'image/jpeg', 0),
(25, 1, '2020-07-31 05:51:22', '2020-07-31 05:51:22', '', 'Blank Printing Paper', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content', 'publish', 'open', 'closed', '', 'blank-printing-paper', '', '', '2020-07-31 05:51:26', '2020-07-31 05:51:26', '', 0, 'http://localhost/wk/?post_type=product&p=25', 0, 'product', '', 0),
(26, 1, '2020-07-31 05:51:09', '2020-07-31 05:51:09', '', '41Enqz144rL._AC_UL320_', '', 'inherit', 'open', 'closed', '', '41enqz144rl-_ac_ul320_', '', '', '2020-07-31 05:51:09', '2020-07-31 05:51:09', '', 25, 'http://localhost/wk/wp-content/uploads/2020/07/41Enqz144rL._AC_UL320_.jpg', 0, 'attachment', 'image/jpeg', 0),
(27, 1, '2020-07-31 05:52:22', '2020-07-31 05:52:22', '', 'White Sticker Paper', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content', 'publish', 'open', 'closed', '', 'white-sticker-paper', '', '', '2020-08-01 06:45:52', '2020-08-01 06:45:52', '', 0, 'http://localhost/wk/?post_type=product&p=27', 0, 'product', '', 0),
(28, 1, '2020-07-31 05:52:17', '2020-07-31 05:52:17', '', '51TwTX1VDVL._AC_UL320_', '', 'inherit', 'open', 'closed', '', '51twtx1vdvl-_ac_ul320_', '', '', '2020-07-31 05:52:17', '2020-07-31 05:52:17', '', 27, 'http://localhost/wk/wp-content/uploads/2020/07/51TwTX1VDVL._AC_UL320_.jpg', 0, 'attachment', 'image/jpeg', 0),
(29, 1, '2020-07-31 05:53:30', '2020-07-31 05:53:30', '', 'Ik Copy Transfer Paper 70 GSM Copier Paper (500 Sheets)', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\r\n\r\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content', 'publish', 'open', 'closed', '', 'ik-copy-transfer-paper-70-gsm-copier-paper-500-sheets', '', '', '2020-07-31 05:53:34', '2020-07-31 05:53:34', '', 0, 'http://localhost/wk/?post_type=product&p=29', 0, 'product', '', 0),
(30, 1, '2020-07-31 05:53:13', '2020-07-31 05:53:13', '', '61ghlVj+W3L._AC_UL320_', '', 'inherit', 'open', 'closed', '', '61ghlvjw3l-_ac_ul320_', '', '', '2020-07-31 05:53:13', '2020-07-31 05:53:13', '', 29, 'http://localhost/wk/wp-content/uploads/2020/07/61ghlVjW3L._AC_UL320_.jpg', 0, 'attachment', 'image/jpeg', 0),
(31, 1, '2020-07-31 06:04:46', '2020-07-31 06:04:46', '', 'Ik Copy Transfer Paper 70 GSM Copier Paper (500 Sheets)', '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content</p><p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content</p><p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content</p>', 'inherit', 'closed', 'closed', '', '29-autosave-v1', '', '', '2020-07-31 06:04:46', '2020-07-31 06:04:46', '', 29, 'http://localhost/wk/?p=31', 0, 'revision', '', 0),
(33, 1, '2020-07-31 06:44:14', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:44:14', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=33', 0, 'product', '', 0),
(34, 1, '2020-07-31 06:46:06', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:46:06', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=34', 0, 'product', '', 0),
(35, 1, '2020-07-31 06:46:56', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:46:56', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=35', 0, 'product', '', 0),
(36, 1, '2020-07-31 18:46:38', '2020-07-31 18:46:38', '', '', '<p><br data-mce-bogus=\"1\"></p>', 'trash', 'open', 'closed', '', '__trashed-3', '', '', '2020-07-31 18:46:38', '2020-07-31 18:46:38', '', 0, 'http://localhost/wk/?post_type=product&p=36', 0, 'product', '', 0),
(37, 1, '2020-07-31 06:48:27', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:48:27', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=37', 0, 'product', '', 0),
(38, 1, '2020-07-31 18:46:27', '2020-07-31 18:46:27', '', '', '<p><br data-mce-bogus=\"1\"></p>', 'trash', 'open', 'closed', '', '__trashed-2', '', '', '2020-07-31 18:46:27', '2020-07-31 18:46:27', '', 0, 'http://localhost/wk/?post_type=product&p=38', 0, 'product', '', 0),
(39, 1, '2020-07-31 06:51:59', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:51:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=39', 0, 'product', '', 0),
(40, 1, '2020-07-31 06:52:59', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:52:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=40', 0, 'product', '', 0),
(41, 1, '2020-07-31 06:53:41', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:53:41', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=41', 0, 'product', '', 0),
(42, 1, '2020-07-31 06:54:04', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:54:04', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=42', 0, 'product', '', 0),
(43, 1, '2020-07-31 06:55:32', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:55:32', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=43', 0, 'product', '', 0),
(44, 1, '2020-07-31 06:56:23', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:56:23', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=44', 0, 'product', '', 0),
(45, 1, '2020-07-31 18:46:20', '2020-07-31 18:46:20', '', '', '<p><br data-mce-bogus=\"1\"></p>', 'trash', 'open', 'closed', '', '__trashed', '', '', '2020-07-31 18:46:20', '2020-07-31 18:46:20', '', 0, 'http://localhost/wk/?post_type=product&p=45', 0, 'product', '', 0),
(46, 1, '2020-07-31 06:58:11', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 06:58:11', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=46', 0, 'product', '', 0),
(47, 1, '2020-07-31 07:00:04', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2020-07-31 07:00:04', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?p=47', 0, 'post', '', 0),
(48, 1, '2020-07-31 07:00:04', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:00:04', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=48', 0, 'product', '', 0),
(49, 1, '2020-07-31 07:03:24', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2020-07-31 07:03:24', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?page_id=49', 0, 'page', '', 0),
(50, 1, '2020-07-31 07:04:08', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2020-07-31 07:04:08', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?page_id=50', 0, 'page', '', 0),
(51, 1, '2020-07-31 07:05:16', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2020-07-31 07:05:16', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?page_id=51', 0, 'page', '', 0),
(52, 1, '2020-07-31 07:07:25', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:07:25', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=52', 0, 'product', '', 0),
(53, 1, '2020-07-31 07:08:11', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:08:11', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=53', 0, 'product', '', 0),
(54, 1, '2020-07-31 07:12:27', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:12:27', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=54', 0, 'product', '', 0),
(55, 1, '2020-07-31 07:16:25', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:16:25', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=55', 0, 'product', '', 0),
(56, 1, '2020-07-31 07:29:18', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:29:18', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=56', 0, 'product', '', 0),
(57, 1, '2020-07-31 07:29:21', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:29:21', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=57', 0, 'product', '', 0),
(58, 1, '2020-07-31 07:30:35', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:30:35', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=58', 0, 'product', '', 0),
(59, 1, '2020-07-31 07:30:57', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:30:57', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=59', 0, 'product', '', 0),
(60, 1, '2020-07-31 07:33:24', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:33:24', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=60', 0, 'product', '', 0),
(61, 1, '2020-07-31 07:35:20', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:35:20', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=61', 0, 'product', '', 0),
(62, 1, '2020-07-31 07:42:49', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 07:42:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=62', 0, 'product', '', 0),
(63, 1, '2020-07-31 08:49:32', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 08:49:32', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=63', 0, 'product', '', 0),
(64, 1, '2020-07-31 08:50:30', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 08:50:30', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=64', 0, 'product', '', 0),
(65, 1, '2020-07-31 08:57:43', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 08:57:43', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=65', 0, 'product', '', 0),
(66, 1, '2020-07-31 08:58:00', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2020-07-31 08:58:00', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?p=66', 0, 'post', '', 0),
(67, 1, '2020-07-31 09:05:27', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 09:05:27', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=67', 0, 'product', '', 0),
(68, 1, '2020-07-31 09:07:25', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 09:07:25', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=68', 0, 'product', '', 0),
(69, 1, '2020-07-31 09:17:01', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 09:17:01', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=69', 0, 'product', '', 0),
(70, 1, '2020-07-31 09:21:27', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 09:21:27', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=70', 0, 'product', '', 0),
(71, 1, '2020-07-31 09:24:16', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 09:24:16', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=71', 0, 'product', '', 0),
(72, 1, '2020-07-31 18:46:49', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 18:46:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=72', 0, 'product', '', 0),
(73, 1, '2020-07-31 18:57:56', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-07-31 18:57:56', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=73', 0, 'product', '', 0),
(74, 1, '2020-07-31 19:56:03', '2020-07-31 19:56:03', '{\n \"custom_css[wpemerge]\": {\n \"value\": \".column {\\n float: left;\\n width: 25%;\\n padding: 0 10px;\\n}\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2020-07-31 19:56:03\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '1ec24dc3-3748-452a-bebc-0518cf6c59ae', '', '', '2020-07-31 19:56:03', '2020-07-31 19:56:03', '', 0, 'http://localhost/wk/2020/07/1ec24dc3-3748-452a-bebc-0518cf6c59ae/', 0, 'customize_changeset', '', 0),
(75, 1, '2020-07-31 19:56:04', '2020-07-31 19:56:04', '', 'wpemerge', '', 'publish', 'closed', 'closed', '', 'wpemerge', '', '', '2020-07-31 19:56:57', '2020-07-31 19:56:57', '', 0, 'http://localhost/wk/2020/07/wpemerge/', 0, 'custom_css', '', 0),
(76, 1, '2020-07-31 19:56:04', '2020-07-31 19:56:04', '.column {\n float: left;\n width: 25%;\n padding: 0 10px;\n}', 'wpemerge', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2020-07-31 19:56:04', '2020-07-31 19:56:04', '', 75, 'http://localhost/wk/2020/07/75-revision-v1/', 0, 'revision', '', 0),
(77, 1, '2020-07-31 19:56:57', '2020-07-31 19:56:57', '{\n \"custom_css[wpemerge]\": {\n \"value\": \"\",\n \"type\": \"custom_css\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2020-07-31 19:56:57\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'cb13ce11-f165-453c-99e5-9d1ac70fce02', '', '', '2020-07-31 19:56:57', '2020-07-31 19:56:57', '', 0, 'http://localhost/wk/2020/07/cb13ce11-f165-453c-99e5-9d1ac70fce02/', 0, 'customize_changeset', '', 0),
(78, 1, '2020-07-31 19:56:57', '2020-07-31 19:56:57', '', 'wpemerge', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2020-07-31 19:56:57', '2020-07-31 19:56:57', '', 75, 'http://localhost/wk/2020/07/75-revision-v1/', 0, 'revision', '', 0),
(79, 1, '2020-08-01 04:40:35', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:40:35', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=79', 0, 'product', '', 0),
(80, 1, '2020-08-01 04:41:06', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:41:06', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=80', 0, 'product', '', 0),
(81, 1, '2020-08-01 04:41:55', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:41:55', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=81', 0, 'product', '', 0),
(82, 1, '2020-08-01 04:43:31', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:43:31', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=82', 0, 'product', '', 0),
(83, 1, '2020-08-01 04:45:54', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:45:54', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=83', 0, 'product', '', 0),
(84, 1, '2020-08-01 04:55:33', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:55:33', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=84', 0, 'product', '', 0),
(85, 1, '2020-08-01 04:55:55', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:55:55', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=85', 0, 'product', '', 0),
(86, 1, '2020-08-01 04:57:12', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:57:12', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=86', 0, 'product', '', 0),
(87, 1, '2020-08-01 04:58:40', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 04:58:40', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=87', 0, 'product', '', 0),
(88, 1, '2020-08-01 05:16:50', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:16:50', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=88', 0, 'product', '', 0),
(89, 1, '2020-08-01 05:27:50', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:27:50', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=89', 0, 'product', '', 0),
(90, 1, '2020-08-01 05:39:25', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:39:25', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=90', 0, 'product', '', 0),
(91, 1, '2020-08-01 05:39:44', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:39:44', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=91', 0, 'product', '', 0),
(92, 1, '2020-08-01 05:46:55', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:46:55', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=92', 0, 'product', '', 0),
(93, 1, '2020-08-01 05:47:43', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:47:43', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=93', 0, 'product', '', 0),
(94, 1, '2020-08-01 05:52:30', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:52:30', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=94', 0, 'product', '', 0),
(95, 1, '2020-08-01 05:53:41', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:53:41', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=95', 0, 'product', '', 0),
(96, 1, '2020-08-01 05:54:07', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:54:07', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=96', 0, 'product', '', 0),
(97, 1, '2020-08-01 05:54:22', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:54:22', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=97', 0, 'product', '', 0),
(98, 1, '2020-08-01 05:54:35', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:54:35', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=98', 0, 'product', '', 0),
(99, 1, '2020-08-01 05:56:47', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:56:47', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=99', 0, 'product', '', 0),
(100, 1, '2020-08-01 05:57:15', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:57:15', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=100', 0, 'product', '', 0),
(101, 1, '2020-08-01 05:57:29', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:57:29', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=101', 0, 'product', '', 0),
(102, 1, '2020-08-01 05:59:09', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:59:09', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=102', 0, 'product', '', 0),
(103, 1, '2020-08-01 05:59:20', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 05:59:20', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=103', 0, 'product', '', 0),
(104, 1, '2020-08-01 06:24:51', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 06:24:51', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=104', 0, 'product', '', 0),
(105, 1, '2020-08-01 06:25:23', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 06:25:23', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=105', 0, 'product', '', 0),
(106, 1, '2020-08-01 06:25:43', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 06:25:43', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=106', 0, 'product', '', 0),
(107, 1, '2020-08-01 06:27:29', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 06:27:29', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=107', 0, 'product', '', 0),
(108, 1, '2020-08-01 06:28:19', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 06:28:19', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=108', 0, 'product', '', 0),
(109, 1, '2020-08-01 06:29:01', '0000-00-00 00:00:00', '', 'AUTO-DRAFT', '', 'auto-draft', 'open', 'closed', '', '', '', '', '2020-08-01 06:29:01', '0000-00-00 00:00:00', '', 0, 'http://localhost/wk/?post_type=product&p=109', 0, 'product', '', 0),
(110, 1, '2020-08-01 06:45:43', '2020-08-01 06:45:43', '', 'Demo testing file', '', 'inherit', 'open', 'closed', '', 'demo-testing-file', '', '', '2020-08-01 06:45:43', '2020-08-01 06:45:43', '', 27, 'http://localhost/wk/wp-content/uploads/2020/07/Demo-testing-file.pdf', 0, 'attachment', 'application/pdf', 0),
(112, 1, '2020-08-01 06:57:40', '2020-08-01 06:57:40', '', 'White Sticker Paper', 'In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\n\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content\n\nIn publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content', 'inherit', 'closed', 'closed', '', '27-autosave-v1', '', '', '2020-08-01 06:57:40', '2020-08-01 06:57:40', '', 27, 'http://localhost/wk/2020/08/27-autosave-v1/', 0, 'revision', '', 0),
(113, 1, '2020-08-01 06:58:40', '2020-08-01 06:58:40', '', 'PRODUCT TESTING FILE', '', 'inherit', 'open', 'closed', '', 'product-testing-file', '', '', '2020-08-01 06:58:40', '2020-08-01 06:58:40', '', 11, 'http://localhost/wk/wp-content/uploads/2020/07/PRODUCT-TESTING-FILE.pdf', 0, 'attachment', 'application/pdf', 0),
(114, 1, '2020-08-01 09:17:59', '2020-08-01 09:17:59', '', 'Indian Cooking Book', '<p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.</p><p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.</p><p>In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to demonstrate the visual form of a document or a typeface without relying on meaningful content.</p>', 'inherit', 'closed', 'closed', '', '20-autosave-v1', '', '', '2020-08-01 09:17:59', '2020-08-01 09:17:59', '', 20, 'http://localhost/wk/2020/08/20-autosave-v1/', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_termmeta`
--
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_termmeta`
--
INSERT INTO `wp_termmeta` (`meta_id`, `term_id`, `meta_key`, `meta_value`) VALUES
(1, 15, 'product_count_product_cat', '0'),
(2, 16, 'order', '0'),
(3, 16, 'display_type', ''),
(4, 16, 'thumbnail_id', '0'),
(5, 16, 'product_count_product_cat', '3'),
(6, 17, 'order', '0'),
(7, 17, 'display_type', ''),
(8, 17, 'thumbnail_id', '0'),
(9, 17, 'product_count_product_cat', '5');
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'simple', 'simple', 0),
(3, 'grouped', 'grouped', 0),
(4, 'variable', 'variable', 0),
(5, 'external', 'external', 0),
(6, 'exclude-from-search', 'exclude-from-search', 0),
(7, 'exclude-from-catalog', 'exclude-from-catalog', 0),
(8, 'featured', 'featured', 0),
(9, 'outofstock', 'outofstock', 0),
(10, 'rated-1', 'rated-1', 0),
(11, 'rated-2', 'rated-2', 0),
(12, 'rated-3', 'rated-3', 0),
(13, 'rated-4', 'rated-4', 0),
(14, 'rated-5', 'rated-5', 0),
(15, 'Uncategorized', 'uncategorized', 0),
(16, 'E book', 'e-book', 0),
(17, 'Print Paper', 'print-paper', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(11, 2, 0),
(11, 16, 0),
(14, 2, 0),
(14, 16, 0),
(16, 2, 0),
(16, 17, 0),
(20, 2, 0),
(20, 16, 0),
(23, 2, 0),
(23, 17, 0),
(25, 2, 0),
(25, 17, 0),
(27, 2, 0),
(27, 17, 0),
(29, 2, 0),
(29, 17, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'product_type', '', 0, 8),
(3, 3, 'product_type', '', 0, 0),
(4, 4, 'product_type', '', 0, 0),
(5, 5, 'product_type', '', 0, 0),
(6, 6, 'product_visibility', '', 0, 0),
(7, 7, 'product_visibility', '', 0, 0),
(8, 8, 'product_visibility', '', 0, 0),
(9, 9, 'product_visibility', '', 0, 0),
(10, 10, 'product_visibility', '', 0, 0),
(11, 11, 'product_visibility', '', 0, 0),
(12, 12, 'product_visibility', '', 0, 0),
(13, 13, 'product_visibility', '', 0, 0),
(14, 14, 'product_visibility', '', 0, 0),
(15, 15, 'product_cat', '', 0, 0),
(16, 16, 'product_cat', '', 0, 3),
(17, 17, 'product_cat', '', 0, 5);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wp_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '0'),
(17, 1, 'wp_dashboard_quick_press_last_post_id', '4'),
(18, 1, '_woocommerce_tracks_anon_id', 'woo:e/+3rQbYxp9q5XhvyFRXrg5K'),
(19, 1, 'wc_last_active', '1596240000'),
(20, 1, 'wp_user-settings', 'libraryContent=browse'),
(21, 1, 'wp_user-settings-time', '1596264350'),
(22, 1, '_woocommerce_persistent_cart_1', 'a:1:{s:4:\"cart\";a:0:{}}'),
(23, 1, 'closedpostboxes_product', 'a:0:{}'),
(24, 1, 'metaboxhidden_product', 'a:3:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";i:2;s:11:\"commentsdiv\";}'),
(25, 1, 'dismissed_no_secure_connection_notice', '1'),
(28, 1, 'session_tokens', 'a:1:{s:64:\"ddff33368466e3b211f8eda55ab9e88bd70bfa0b8276921fdaa0fb4c7cf226af\";a:4:{s:10:\"expiration\";i:1596382920;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36\";s:5:\"login\";i:1596210120;}}'),
(30, 1, 'dismissed_wp_php_min_requirements_7.2_5.2_notice', '1'),
(31, 1, '_order_count', '0');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE `wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$P$BaiBNk5uuUTAsPycPv2lrc9zLpiZ7k1', 'admin', '<EMAIL>', 'http://localhost/wk', '2020-07-31 05:00:55', '', 0, 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_admin_notes`
--
CREATE TABLE `wp_wc_admin_notes` (
`note_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`content_data` longtext COLLATE utf8mb4_unicode_ci,
`status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_reminder` datetime DEFAULT NULL,
`is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
`layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_wc_admin_notes`
--
INSERT INTO `wp_wc_admin_notes` (`note_id`, `name`, `type`, `locale`, `title`, `content`, `content_data`, `status`, `source`, `date_created`, `date_reminder`, `is_snoozable`, `layout`, `image`, `is_deleted`, `icon`) VALUES
(1, 'wc-admin-wc-helper-connection', 'info', 'en_US', 'Connect to WooCommerce.com', 'Connect to get important product notifications and updates.', '{}', 'unactioned', 'woocommerce-admin', '2020-07-31 05:16:26', NULL, 0, 'plain', '', 0, 'info'),
(2, 'wc-admin-onboarding-email-marketing', 'info', 'en_US', 'Tips, product updates, and inspiration', 'We\'re here for you - get tips, product updates and inspiration straight to your email box', '{}', 'unactioned', 'woocommerce-admin', '2020-07-31 05:16:27', NULL, 0, 'plain', '', 0, 'info'),
(3, 'wc-admin-marketing-intro', 'info', 'en_US', 'Connect with your audience', 'Grow your customer base and increase your sales with marketing tools built for WooCommerce.', '{}', 'unactioned', 'woocommerce-admin', '2020-07-31 05:16:27', NULL, 0, 'plain', '', 0, 'info'),
(4, 'wc-admin-onboarding-profiler-reminder', 'update', 'en_US', 'Welcome to WooCommerce! Set up your store and start selling', 'We\'re here to help you going through the most important steps to get your store up and running.', '{}', 'actioned', 'woocommerce-admin', '2020-07-31 05:17:11', NULL, 0, 'plain', '', 0, 'info');
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_admin_note_actions`
--
CREATE TABLE `wp_wc_admin_note_actions` (
`action_id` bigint(20) UNSIGNED NOT NULL,
`note_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_wc_admin_note_actions`
--
INSERT INTO `wp_wc_admin_note_actions` (`action_id`, `note_id`, `name`, `label`, `query`, `status`, `is_primary`) VALUES
(1, 1, 'connect', 'Connect', '?page=wc-addons§ion=helper', 'unactioned', 0),
(2, 2, 'yes-please', 'Yes please!', 'https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin', 'actioned', 0),
(3, 3, 'open-marketing-hub', 'Open marketing hub', 'http://localhost/wk/wp-admin/admin.php?page=wc-admin&path=/marketing', 'actioned', 0),
(4, 4, 'continue-profiler', 'Continue Store Setup', 'http://localhost/wk/wp-admin/admin.php?page=wc-admin&enable_onboarding=1', 'unactioned', 1),
(5, 4, 'skip-profiler', 'Skip Setup', 'http://localhost/wk/wp-admin/admin.php?page=wc-admin&reset_profiler=0', 'actioned', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_category_lookup`
--
CREATE TABLE `wp_wc_category_lookup` (
`category_tree_id` bigint(20) UNSIGNED NOT NULL,
`category_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_wc_category_lookup`
--
INSERT INTO `wp_wc_category_lookup` (`category_tree_id`, `category_id`) VALUES
(15, 15);
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_customer_lookup`
--
CREATE TABLE `wp_wc_customer_lookup` (
`customer_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_last_active` timestamp NULL DEFAULT NULL,
`date_registered` timestamp NULL DEFAULT NULL,
`country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_download_log`
--
CREATE TABLE `wp_wc_download_log` (
`download_log_id` bigint(20) UNSIGNED NOT NULL,
`timestamp` datetime NOT NULL,
`permission_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_order_coupon_lookup`
--
CREATE TABLE `wp_wc_order_coupon_lookup` (
`order_id` bigint(20) UNSIGNED NOT NULL,
`coupon_id` bigint(20) UNSIGNED NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`discount_amount` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_order_product_lookup`
--
CREATE TABLE `wp_wc_order_product_lookup` (
`order_item_id` bigint(20) UNSIGNED NOT NULL,
`order_id` bigint(20) UNSIGNED NOT NULL,
`product_id` bigint(20) UNSIGNED NOT NULL,
`variation_id` bigint(20) UNSIGNED NOT NULL,
`customer_id` bigint(20) UNSIGNED DEFAULT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`product_qty` int(11) NOT NULL,
`product_net_revenue` double NOT NULL DEFAULT '0',
`product_gross_revenue` double NOT NULL DEFAULT '0',
`coupon_amount` double NOT NULL DEFAULT '0',
`tax_amount` double NOT NULL DEFAULT '0',
`shipping_amount` double NOT NULL DEFAULT '0',
`shipping_tax_amount` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_order_stats`
--
CREATE TABLE `wp_wc_order_stats` (
`order_id` bigint(20) UNSIGNED NOT NULL,
`parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`num_items_sold` int(11) NOT NULL DEFAULT '0',
`total_sales` double NOT NULL DEFAULT '0',
`tax_total` double NOT NULL DEFAULT '0',
`shipping_total` double NOT NULL DEFAULT '0',
`net_total` double NOT NULL DEFAULT '0',
`returning_customer` tinyint(1) DEFAULT NULL,
`status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`customer_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_order_tax_lookup`
--
CREATE TABLE `wp_wc_order_tax_lookup` (
`order_id` bigint(20) UNSIGNED NOT NULL,
`tax_rate_id` bigint(20) UNSIGNED NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`shipping_tax` double NOT NULL DEFAULT '0',
`order_tax` double NOT NULL DEFAULT '0',
`total_tax` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_product_meta_lookup`
--
CREATE TABLE `wp_wc_product_meta_lookup` (
`product_id` bigint(20) NOT NULL,
`sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
`virtual` tinyint(1) DEFAULT '0',
`downloadable` tinyint(1) DEFAULT '0',
`min_price` decimal(19,4) DEFAULT NULL,
`max_price` decimal(19,4) DEFAULT NULL,
`onsale` tinyint(1) DEFAULT '0',
`stock_quantity` double DEFAULT NULL,
`stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
`rating_count` bigint(20) DEFAULT '0',
`average_rating` decimal(3,2) DEFAULT '0.00',
`total_sales` bigint(20) DEFAULT '0',
`tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
`tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_wc_product_meta_lookup`
--
INSERT INTO `wp_wc_product_meta_lookup` (`product_id`, `sku`, `virtual`, `downloadable`, `min_price`, `max_price`, `onsale`, `stock_quantity`, `stock_status`, `rating_count`, `average_rating`, `total_sales`, `tax_status`, `tax_class`) VALUES
(11, '', 0, 0, '99.0000', '99.0000', 1, NULL, 'instock', 0, '0.00', 0, 'taxable', ''),
(14, '', 0, 0, '200.0000', '200.0000', 0, 8, 'instock', 0, '0.00', 0, 'taxable', ''),
(16, '', 0, 0, '480.0000', '480.0000', 1, NULL, 'instock', 0, '0.00', 0, 'taxable', ''),
(20, '', 0, 0, '600.0000', '600.0000', 0, NULL, 'instock', 0, '0.00', 0, 'taxable', ''),
(23, '', 0, 0, '200.0000', '200.0000', 0, NULL, 'instock', 0, '0.00', 0, 'taxable', ''),
(25, '', 0, 0, '343.0000', '343.0000', 1, NULL, 'instock', 0, '0.00', 0, 'taxable', ''),
(27, '', 0, 0, '999.0000', '999.0000', 0, NULL, 'instock', 0, '0.00', 0, 'taxable', ''),
(29, '', 0, 0, '300.0000', '300.0000', 0, NULL, 'instock', 0, '0.00', 0, 'taxable', '');
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_reserved_stock`
--
CREATE TABLE `wp_wc_reserved_stock` (
`order_id` bigint(20) NOT NULL,
`product_id` bigint(20) NOT NULL,
`stock_quantity` double NOT NULL DEFAULT '0',
`timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_tax_rate_classes`
--
CREATE TABLE `wp_wc_tax_rate_classes` (
`tax_rate_class_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_wc_tax_rate_classes`
--
INSERT INTO `wp_wc_tax_rate_classes` (`tax_rate_class_id`, `name`, `slug`) VALUES
(1, 'Reduced rate', 'reduced-rate'),
(2, 'Zero rate', 'zero-rate');
-- --------------------------------------------------------
--
-- Table structure for table `wp_wc_webhooks`
--
CREATE TABLE `wp_wc_webhooks` (
`webhook_id` bigint(20) UNSIGNED NOT NULL,
`status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
`topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`api_version` smallint(4) NOT NULL,
`failure_count` smallint(10) NOT NULL DEFAULT '0',
`pending_delivery` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_api_keys`
--
CREATE TABLE `wp_woocommerce_api_keys` (
`key_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
`nonces` longtext COLLATE utf8mb4_unicode_ci,
`truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_access` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_woocommerce_api_keys`
--
INSERT INTO `wp_woocommerce_api_keys` (`key_id`, `user_id`, `description`, `permissions`, `consumer_key`, `consumer_secret`, `nonces`, `truncated_key`, `last_access`) VALUES
(2, 1, 'get product', 'read_write', '<KEY>', 'cs_b07dcafdbe32ac978edaed999800b1788764c6e4', 'a:2:{i:1596273964;s:40:\"5e893fd7516162f34c264ae86bbe6a0401a4e150\";i:1596274110;s:40:\"5256af208ad138eeaaa39d604fa6600e4fae999a\";}', '0c11e28', '2020-08-01 09:28:33');
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
`attribute_id` bigint(20) UNSIGNED NOT NULL,
`attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`attribute_public` int(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
`permission_id` bigint(20) UNSIGNED NOT NULL,
`download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_id` bigint(20) UNSIGNED NOT NULL,
`order_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_log`
--
CREATE TABLE `wp_woocommerce_log` (
`log_id` bigint(20) UNSIGNED NOT NULL,
`timestamp` datetime NOT NULL,
`level` smallint(4) NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`context` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
CREATE TABLE `wp_woocommerce_order_itemmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`order_item_id` bigint(20) UNSIGNED NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_order_items`
--
CREATE TABLE `wp_woocommerce_order_items` (
`order_item_id` bigint(20) UNSIGNED NOT NULL,
`order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
`order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`order_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`payment_token_id` bigint(20) UNSIGNED NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_payment_tokens`
--
CREATE TABLE `wp_woocommerce_payment_tokens` (
`token_id` bigint(20) UNSIGNED NOT NULL,
`gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_sessions`
--
CREATE TABLE `wp_woocommerce_sessions` (
`session_id` bigint(20) UNSIGNED NOT NULL,
`session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`session_expiry` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_woocommerce_sessions`
--
INSERT INTO `wp_woocommerce_sessions` (`session_id`, `session_key`, `session_value`, `session_expiry`) VALUES
(6, '0fc3b9acadece03d155072f532a33766', 'a:1:{s:8:\"customer\";s:706:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"MH\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"MH\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:14:\"<EMAIL>\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}', 1596347023);
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_shipping_zones`
--
CREATE TABLE `wp_woocommerce_shipping_zones` (
`zone_id` bigint(20) UNSIGNED NOT NULL,
`zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`zone_order` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
`location_id` bigint(20) UNSIGNED NOT NULL,
`zone_id` bigint(20) UNSIGNED NOT NULL,
`location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
`zone_id` bigint(20) UNSIGNED NOT NULL,
`instance_id` bigint(20) UNSIGNED NOT NULL,
`method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`method_order` bigint(20) UNSIGNED NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
CREATE TABLE `wp_woocommerce_tax_rates` (
`tax_rate_id` bigint(20) UNSIGNED NOT NULL,
`tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tax_rate_priority` bigint(20) UNSIGNED NOT NULL,
`tax_rate_compound` int(1) NOT NULL DEFAULT '0',
`tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
`tax_rate_order` bigint(20) UNSIGNED NOT NULL,
`tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
`location_id` bigint(20) UNSIGNED NOT NULL,
`location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`tax_rate_id` bigint(20) UNSIGNED NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `activations`
--
ALTER TABLE `activations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `persistences`
--
ALTER TABLE `persistences`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `persistences_code_unique` (`code`);
--
-- Indexes for table `reminders`
--
ALTER TABLE `reminders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_slug_unique` (`slug`);
--
-- Indexes for table `role_users`
--
ALTER TABLE `role_users`
ADD PRIMARY KEY (`user_id`,`role_id`);
--
-- Indexes for table `solution`
--
ALTER TABLE `solution`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `solution_product_video`
--
ALTER TABLE `solution_product_video`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `throttle`
--
ALTER TABLE `throttle`
ADD PRIMARY KEY (`id`),
ADD KEY `throttle_user_id_index` (`user_id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `wp_actionscheduler_actions`
--
ALTER TABLE `wp_actionscheduler_actions`
ADD PRIMARY KEY (`action_id`),
ADD KEY `hook` (`hook`),
ADD KEY `status` (`status`),
ADD KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
ADD KEY `args` (`args`),
ADD KEY `group_id` (`group_id`),
ADD KEY `last_attempt_gmt` (`last_attempt_gmt`),
ADD KEY `claim_id` (`claim_id`);
--
-- Indexes for table `wp_actionscheduler_claims`
--
ALTER TABLE `wp_actionscheduler_claims`
ADD PRIMARY KEY (`claim_id`),
ADD KEY `date_created_gmt` (`date_created_gmt`);
--
-- Indexes for table `wp_actionscheduler_groups`
--
ALTER TABLE `wp_actionscheduler_groups`
ADD PRIMARY KEY (`group_id`),
ADD KEY `slug` (`slug`(191));
--
-- Indexes for table `wp_actionscheduler_logs`
--
ALTER TABLE `wp_actionscheduler_logs`
ADD PRIMARY KEY (`log_id`),
ADD KEY `action_id` (`action_id`),
ADD KEY `log_date_gmt` (`log_date_gmt`);
--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10)),
ADD KEY `woo_idx_comment_type` (`comment_type`);
--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`),
ADD KEY `autoload` (`autoload`);
--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- Indexes for table `wp_wc_admin_notes`
--
ALTER TABLE `wp_wc_admin_notes`
ADD PRIMARY KEY (`note_id`);
--
-- Indexes for table `wp_wc_admin_note_actions`
--
ALTER TABLE `wp_wc_admin_note_actions`
ADD PRIMARY KEY (`action_id`),
ADD KEY `note_id` (`note_id`);
--
-- Indexes for table `wp_wc_category_lookup`
--
ALTER TABLE `wp_wc_category_lookup`
ADD PRIMARY KEY (`category_tree_id`,`category_id`);
--
-- Indexes for table `wp_wc_customer_lookup`
--
ALTER TABLE `wp_wc_customer_lookup`
ADD PRIMARY KEY (`customer_id`),
ADD UNIQUE KEY `user_id` (`user_id`),
ADD KEY `email` (`email`);
--
-- Indexes for table `wp_wc_download_log`
--
ALTER TABLE `wp_wc_download_log`
ADD PRIMARY KEY (`download_log_id`),
ADD KEY `permission_id` (`permission_id`),
ADD KEY `timestamp` (`timestamp`);
--
-- Indexes for table `wp_wc_order_coupon_lookup`
--
ALTER TABLE `wp_wc_order_coupon_lookup`
ADD PRIMARY KEY (`order_id`,`coupon_id`),
ADD KEY `coupon_id` (`coupon_id`),
ADD KEY `date_created` (`date_created`);
--
-- Indexes for table `wp_wc_order_product_lookup`
--
ALTER TABLE `wp_wc_order_product_lookup`
ADD PRIMARY KEY (`order_item_id`),
ADD KEY `order_id` (`order_id`),
ADD KEY `product_id` (`product_id`),
ADD KEY `customer_id` (`customer_id`),
ADD KEY `date_created` (`date_created`);
--
-- Indexes for table `wp_wc_order_stats`
--
ALTER TABLE `wp_wc_order_stats`
ADD PRIMARY KEY (`order_id`),
ADD KEY `date_created` (`date_created`),
ADD KEY `customer_id` (`customer_id`),
ADD KEY `status` (`status`(191));
--
-- Indexes for table `wp_wc_order_tax_lookup`
--
ALTER TABLE `wp_wc_order_tax_lookup`
ADD PRIMARY KEY (`order_id`,`tax_rate_id`),
ADD KEY `tax_rate_id` (`tax_rate_id`),
ADD KEY `date_created` (`date_created`);
--
-- Indexes for table `wp_wc_product_meta_lookup`
--
ALTER TABLE `wp_wc_product_meta_lookup`
ADD PRIMARY KEY (`product_id`),
ADD KEY `virtual` (`virtual`),
ADD KEY `downloadable` (`downloadable`),
ADD KEY `stock_status` (`stock_status`),
ADD KEY `stock_quantity` (`stock_quantity`),
ADD KEY `onsale` (`onsale`),
ADD KEY `min_max_price` (`min_price`,`max_price`);
--
-- Indexes for table `wp_wc_reserved_stock`
--
ALTER TABLE `wp_wc_reserved_stock`
ADD PRIMARY KEY (`order_id`,`product_id`);
--
-- Indexes for table `wp_wc_tax_rate_classes`
--
ALTER TABLE `wp_wc_tax_rate_classes`
ADD PRIMARY KEY (`tax_rate_class_id`),
ADD UNIQUE KEY `slug` (`slug`(191));
--
-- Indexes for table `wp_wc_webhooks`
--
ALTER TABLE `wp_wc_webhooks`
ADD PRIMARY KEY (`webhook_id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `wp_woocommerce_api_keys`
--
ALTER TABLE `wp_woocommerce_api_keys`
ADD PRIMARY KEY (`key_id`),
ADD KEY `consumer_key` (`consumer_key`),
ADD KEY `consumer_secret` (`consumer_secret`);
--
-- Indexes for table `wp_woocommerce_attribute_taxonomies`
--
ALTER TABLE `wp_woocommerce_attribute_taxonomies`
ADD PRIMARY KEY (`attribute_id`),
ADD KEY `attribute_name` (`attribute_name`(20));
--
-- Indexes for table `wp_woocommerce_downloadable_product_permissions`
--
ALTER TABLE `wp_woocommerce_downloadable_product_permissions`
ADD PRIMARY KEY (`permission_id`),
ADD KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
ADD KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
ADD KEY `order_id` (`order_id`),
ADD KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`);
--
-- Indexes for table `wp_woocommerce_log`
--
ALTER TABLE `wp_woocommerce_log`
ADD PRIMARY KEY (`log_id`),
ADD KEY `level` (`level`);
--
-- Indexes for table `wp_woocommerce_order_itemmeta`
--
ALTER TABLE `wp_woocommerce_order_itemmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `order_item_id` (`order_item_id`),
ADD KEY `meta_key` (`meta_key`(32));
--
-- Indexes for table `wp_woocommerce_order_items`
--
ALTER TABLE `wp_woocommerce_order_items`
ADD PRIMARY KEY (`order_item_id`),
ADD KEY `order_id` (`order_id`);
--
-- Indexes for table `wp_woocommerce_payment_tokenmeta`
--
ALTER TABLE `wp_woocommerce_payment_tokenmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `payment_token_id` (`payment_token_id`),
ADD KEY `meta_key` (`meta_key`(32));
--
-- Indexes for table `wp_woocommerce_payment_tokens`
--
ALTER TABLE `wp_woocommerce_payment_tokens`
ADD PRIMARY KEY (`token_id`),
ADD KEY `user_id` (`user_id`);
--
-- Indexes for table `wp_woocommerce_sessions`
--
ALTER TABLE `wp_woocommerce_sessions`
ADD PRIMARY KEY (`session_id`),
ADD UNIQUE KEY `session_key` (`session_key`);
--
-- Indexes for table `wp_woocommerce_shipping_zones`
--
ALTER TABLE `wp_woocommerce_shipping_zones`
ADD PRIMARY KEY (`zone_id`);
--
-- Indexes for table `wp_woocommerce_shipping_zone_locations`
--
ALTER TABLE `wp_woocommerce_shipping_zone_locations`
ADD PRIMARY KEY (`location_id`),
ADD KEY `location_id` (`location_id`),
ADD KEY `location_type_code` (`location_type`(10),`location_code`(20));
--
-- Indexes for table `wp_woocommerce_shipping_zone_methods`
--
ALTER TABLE `wp_woocommerce_shipping_zone_methods`
ADD PRIMARY KEY (`instance_id`);
--
-- Indexes for table `wp_woocommerce_tax_rates`
--
ALTER TABLE `wp_woocommerce_tax_rates`
ADD PRIMARY KEY (`tax_rate_id`),
ADD KEY `tax_rate_country` (`tax_rate_country`),
ADD KEY `tax_rate_state` (`tax_rate_state`(2)),
ADD KEY `tax_rate_class` (`tax_rate_class`(10)),
ADD KEY `tax_rate_priority` (`tax_rate_priority`);
--
-- Indexes for table `wp_woocommerce_tax_rate_locations`
--
ALTER TABLE `wp_woocommerce_tax_rate_locations`
ADD PRIMARY KEY (`location_id`),
ADD KEY `tax_rate_id` (`tax_rate_id`),
ADD KEY `location_type_code` (`location_type`(10),`location_code`(20));
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `activations`
--
ALTER TABLE `activations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `persistences`
--
ALTER TABLE `persistences`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `reminders`
--
ALTER TABLE `reminders`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `solution`
--
ALTER TABLE `solution`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `solution_product_video`
--
ALTER TABLE `solution_product_video`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `throttle`
--
ALTER TABLE `throttle`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_actionscheduler_actions`
--
ALTER TABLE `wp_actionscheduler_actions`
MODIFY `action_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `wp_actionscheduler_claims`
--
ALTER TABLE `wp_actionscheduler_claims`
MODIFY `claim_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=533;
--
-- AUTO_INCREMENT for table `wp_actionscheduler_groups`
--
ALTER TABLE `wp_actionscheduler_groups`
MODIFY `group_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_actionscheduler_logs`
--
ALTER TABLE `wp_actionscheduler_logs`
MODIFY `log_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1158;
--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=230;
--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=115;
--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_wc_admin_notes`
--
ALTER TABLE `wp_wc_admin_notes`
MODIFY `note_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `wp_wc_admin_note_actions`
--
ALTER TABLE `wp_wc_admin_note_actions`
MODIFY `action_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `wp_wc_customer_lookup`
--
ALTER TABLE `wp_wc_customer_lookup`
MODIFY `customer_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_wc_download_log`
--
ALTER TABLE `wp_wc_download_log`
MODIFY `download_log_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_wc_tax_rate_classes`
--
ALTER TABLE `wp_wc_tax_rate_classes`
MODIFY `tax_rate_class_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_wc_webhooks`
--
ALTER TABLE `wp_wc_webhooks`
MODIFY `webhook_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_api_keys`
--
ALTER TABLE `wp_woocommerce_api_keys`
MODIFY `key_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_woocommerce_attribute_taxonomies`
--
ALTER TABLE `wp_woocommerce_attribute_taxonomies`
MODIFY `attribute_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_downloadable_product_permissions`
--
ALTER TABLE `wp_woocommerce_downloadable_product_permissions`
MODIFY `permission_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_log`
--
ALTER TABLE `wp_woocommerce_log`
MODIFY `log_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_order_itemmeta`
--
ALTER TABLE `wp_woocommerce_order_itemmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_order_items`
--
ALTER TABLE `wp_woocommerce_order_items`
MODIFY `order_item_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_payment_tokenmeta`
--
ALTER TABLE `wp_woocommerce_payment_tokenmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_payment_tokens`
--
ALTER TABLE `wp_woocommerce_payment_tokens`
MODIFY `token_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_sessions`
--
ALTER TABLE `wp_woocommerce_sessions`
MODIFY `session_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `wp_woocommerce_shipping_zones`
--
ALTER TABLE `wp_woocommerce_shipping_zones`
MODIFY `zone_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_shipping_zone_locations`
--
ALTER TABLE `wp_woocommerce_shipping_zone_locations`
MODIFY `location_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_shipping_zone_methods`
--
ALTER TABLE `wp_woocommerce_shipping_zone_methods`
MODIFY `instance_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_tax_rates`
--
ALTER TABLE `wp_woocommerce_tax_rates`
MODIFY `tax_rate_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_woocommerce_tax_rate_locations`
--
ALTER TABLE `wp_woocommerce_tax_rate_locations`
MODIFY `location_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `wp_wc_download_log`
--
ALTER TABLE `wp_wc_download_log`
ADD CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<gh_stars>1-10
BEGIN;
CREATE OR REPLACE VIEW "liquid_feedback_version" AS
SELECT * FROM (VALUES ('3.0.3', 3, 0, 3))
AS "subquery"("string", "major", "minor", "revision");
CREATE FUNCTION "update3_0_3_add_columns_if_missing"()
RETURNS VOID
LANGUAGE 'plpgsql' AS $$
BEGIN
BEGIN
ALTER TABLE "initiative" ADD COLUMN "first_preference_votes" INT4;
EXCEPTION
WHEN duplicate_column THEN
RAISE NOTICE 'column "first_preference_votes" of relation "initiative" already exists, skipping';
END;
BEGIN
ALTER TABLE "vote" ADD COLUMN "first_preference" BOOLEAN;
EXCEPTION
WHEN duplicate_column THEN
RAISE NOTICE 'column "first_preference" of relation "vote" already exists, skipping';
END;
RETURN;
END;
$$;
SELECT "update3_0_3_add_columns_if_missing"();
DROP FUNCTION "update3_0_3_add_columns_if_missing"();
ALTER TABLE "initiative" DROP CONSTRAINT "non_admitted_initiatives_cant_contain_voting_results";
ALTER TABLE "initiative" ADD CONSTRAINT "non_admitted_initiatives_cant_contain_voting_results" CHECK (
( "admitted" NOTNULL AND "admitted" = TRUE ) OR
( "first_preference_votes" ISNULL AND
"positive_votes" ISNULL AND "negative_votes" ISNULL AND
"direct_majority" ISNULL AND "indirect_majority" ISNULL AND
"schulze_rank" ISNULL AND
"better_than_status_quo" ISNULL AND "worse_than_status_quo" ISNULL AND
"reverse_beat_path" ISNULL AND "multistage_majority" ISNULL AND
"eligible" ISNULL AND "winner" ISNULL AND "rank" ISNULL ) );
COMMENT ON COLUMN "initiative"."first_preference_votes" IS 'Number of direct and delegating voters who ranked this initiative as their first choice';
COMMENT ON COLUMN "initiative"."positive_votes" IS 'Number of direct and delegating voters who ranked this initiative better than the status quo';
COMMENT ON COLUMN "initiative"."negative_votes" IS 'Number of direct and delegating voters who ranked this initiative worse than the status quo';
-- UPDATE TABLE "vote" SET "grade" = 0 WHERE "grade" ISNULL; -- should not be necessary
ALTER TABLE "vote" ALTER COLUMN "grade" SET NOT NULL;
ALTER TABLE "vote" DROP CONSTRAINT IF EXISTS "first_preference_flag_only_set_on_positive_grades";
ALTER TABLE "vote" ADD
CONSTRAINT "first_preference_flag_only_set_on_positive_grades"
CHECK ("grade" > 0 OR "first_preference" ISNULL);
COMMENT ON COLUMN "vote"."first_preference" IS 'Value is automatically set after voting is finished. For positive grades, this value is set to true for the highest (i.e. best) grade.';
INSERT INTO "temporary_transaction_data" ("key", "value")
VALUES ('override_protection_triggers', TRUE::TEXT);
UPDATE "vote" SET "first_preference" = "subquery"."first_preference"
FROM (
SELECT
"vote"."initiative_id",
"vote"."member_id",
CASE WHEN "vote"."grade" > 0 THEN
CASE WHEN "vote"."grade" = max("agg"."grade") THEN TRUE ELSE FALSE END
ELSE NULL
END AS "first_preference"
FROM "vote"
JOIN "initiative" -- NOTE: due to missing index on issue_id
ON "vote"."issue_id" = "initiative"."issue_id"
JOIN "vote" AS "agg"
ON "initiative"."id" = "agg"."initiative_id"
AND "vote"."member_id" = "agg"."member_id"
GROUP BY "vote"."initiative_id", "vote"."member_id"
) AS "subquery"
WHERE "vote"."initiative_id" = "subquery"."initiative_id"
AND "vote"."member_id" = "subquery"."member_id";
DELETE FROM "temporary_transaction_data"
WHERE "key" = 'override_protection_triggers';
UPDATE "initiative" SET "first_preference_votes" = NULL
WHERE "first_preference_votes" = 0;
UPDATE "initiative"
SET "first_preference_votes" = "subquery"."sum"
FROM (
SELECT "vote"."initiative_id", sum("direct_voter"."weight")
FROM "vote" JOIN "direct_voter"
ON "vote"."issue_id" = "direct_voter"."issue_id"
AND "vote"."member_id" = "direct_voter"."member_id"
WHERE "vote"."first_preference"
GROUP BY "vote"."initiative_id"
) AS "subquery"
WHERE "initiative"."admitted"
AND "initiative"."id" = "subquery"."initiative_id"
AND "initiative"."first_preference_votes" ISNULL;
UPDATE "initiative" SET "first_preference_votes" = 0
WHERE "positive_votes" NOTNULL
AND "first_preference_votes" ISNULL;
-- reconstruct battle data (originating from LiquidFeedback Core before v2.0.0)
-- to avoid future data loss when executing "clean_issue" to delete voting data:
INSERT INTO "battle" (
"issue_id",
"winning_initiative_id",
"losing_initiative_id",
"count"
) SELECT
"battle_view"."issue_id",
"battle_view"."winning_initiative_id",
"battle_view"."losing_initiative_id",
"battle_view"."count"
FROM (
SELECT
"issue"."id" AS "issue_id",
"winning_initiative"."id" AS "winning_initiative_id",
"losing_initiative"."id" AS "losing_initiative_id",
sum(
CASE WHEN
coalesce("better_vote"."grade", 0) >
coalesce("worse_vote"."grade", 0)
THEN "direct_voter"."weight" ELSE 0 END
) AS "count"
FROM "issue"
LEFT JOIN "direct_voter"
ON "issue"."id" = "direct_voter"."issue_id"
JOIN "battle_participant" AS "winning_initiative"
ON "issue"."id" = "winning_initiative"."issue_id"
JOIN "battle_participant" AS "losing_initiative"
ON "issue"."id" = "losing_initiative"."issue_id"
LEFT JOIN "vote" AS "better_vote"
ON "direct_voter"."member_id" = "better_vote"."member_id"
AND "winning_initiative"."id" = "better_vote"."initiative_id"
LEFT JOIN "vote" AS "worse_vote"
ON "direct_voter"."member_id" = "worse_vote"."member_id"
AND "losing_initiative"."id" = "worse_vote"."initiative_id"
WHERE "issue"."state" IN ('finished_with_winner', 'finished_without_winner')
AND "winning_initiative"."id" != "losing_initiative"."id"
-- NOTE: comparisons with status-quo are intentionally omitted to mark
-- issues that were counted prior LiquidFeedback Core v2.0.0
GROUP BY
"issue"."id",
"winning_initiative"."id",
"losing_initiative"."id"
) AS "battle_view"
LEFT JOIN "battle"
ON "battle_view"."winning_initiative_id" = "battle"."winning_initiative_id"
AND "battle_view"."losing_initiative_id" = "battle"."losing_initiative_id"
WHERE "battle" ISNULL;
CREATE OR REPLACE FUNCTION "close_voting"("issue_id_p" "issue"."id"%TYPE)
RETURNS VOID
LANGUAGE 'plpgsql' VOLATILE AS $$
DECLARE
"area_id_v" "area"."id"%TYPE;
"unit_id_v" "unit"."id"%TYPE;
"member_id_v" "member"."id"%TYPE;
BEGIN
PERFORM "require_transaction_isolation"();
SELECT "area_id" INTO "area_id_v" FROM "issue" WHERE "id" = "issue_id_p";
SELECT "unit_id" INTO "unit_id_v" FROM "area" WHERE "id" = "area_id_v";
-- override protection triggers:
INSERT INTO "temporary_transaction_data" ("key", "value")
VALUES ('override_protection_triggers', TRUE::TEXT);
-- delete timestamp of voting comment:
UPDATE "direct_voter" SET "comment_changed" = NULL
WHERE "issue_id" = "issue_id_p";
-- delete delegating votes (in cases of manual reset of issue state):
DELETE FROM "delegating_voter"
WHERE "issue_id" = "issue_id_p";
-- delete votes from non-privileged voters:
DELETE FROM "direct_voter"
USING (
SELECT
"direct_voter"."member_id"
FROM "direct_voter"
JOIN "member" ON "direct_voter"."member_id" = "member"."id"
LEFT JOIN "privilege"
ON "privilege"."unit_id" = "unit_id_v"
AND "privilege"."member_id" = "direct_voter"."member_id"
WHERE "direct_voter"."issue_id" = "issue_id_p" AND (
"member"."active" = FALSE OR
"privilege"."voting_right" ISNULL OR
"privilege"."voting_right" = FALSE
)
) AS "subquery"
WHERE "direct_voter"."issue_id" = "issue_id_p"
AND "direct_voter"."member_id" = "subquery"."member_id";
-- consider delegations:
UPDATE "direct_voter" SET "weight" = 1
WHERE "issue_id" = "issue_id_p";
PERFORM "add_vote_delegations"("issue_id_p");
-- mark first preferences:
UPDATE "vote" SET "first_preference" = "subquery"."first_preference"
FROM (
SELECT
"vote"."initiative_id",
"vote"."member_id",
CASE WHEN "vote"."grade" > 0 THEN
CASE WHEN "vote"."grade" = max("agg"."grade") THEN TRUE ELSE FALSE END
ELSE NULL
END AS "first_preference"
FROM "vote"
JOIN "initiative" -- NOTE: due to missing index on issue_id
ON "vote"."issue_id" = "initiative"."issue_id"
JOIN "vote" AS "agg"
ON "initiative"."id" = "agg"."initiative_id"
AND "vote"."member_id" = "agg"."member_id"
GROUP BY "vote"."initiative_id", "vote"."member_id", "vote"."grade"
) AS "subquery"
WHERE "vote"."issue_id" = "issue_id_p"
AND "vote"."initiative_id" = "subquery"."initiative_id"
AND "vote"."member_id" = "subquery"."member_id";
-- finish overriding protection triggers (avoids garbage):
DELETE FROM "temporary_transaction_data"
WHERE "key" = 'override_protection_triggers';
-- materialize battle_view:
-- NOTE: "closed" column of issue must be set at this point
DELETE FROM "battle" WHERE "issue_id" = "issue_id_p";
INSERT INTO "battle" (
"issue_id",
"winning_initiative_id", "losing_initiative_id",
"count"
) SELECT
"issue_id",
"winning_initiative_id", "losing_initiative_id",
"count"
FROM "battle_view" WHERE "issue_id" = "issue_id_p";
-- set voter count:
UPDATE "issue" SET
"voter_count" = (
SELECT coalesce(sum("weight"), 0)
FROM "direct_voter" WHERE "issue_id" = "issue_id_p"
)
WHERE "id" = "issue_id_p";
-- copy "positive_votes" and "negative_votes" from "battle" table:
-- NOTE: "first_preference_votes" is set to a default of 0 at this step
UPDATE "initiative" SET
"first_preference_votes" = 0,
"positive_votes" = "battle_win"."count",
"negative_votes" = "battle_lose"."count"
FROM "battle" AS "battle_win", "battle" AS "battle_lose"
WHERE
"battle_win"."issue_id" = "issue_id_p" AND
"battle_win"."winning_initiative_id" = "initiative"."id" AND
"battle_win"."losing_initiative_id" ISNULL AND
"battle_lose"."issue_id" = "issue_id_p" AND
"battle_lose"."losing_initiative_id" = "initiative"."id" AND
"battle_lose"."winning_initiative_id" ISNULL;
-- calculate "first_preference_votes":
-- NOTE: will only set values not equal to zero
UPDATE "initiative" SET "first_preference_votes" = "subquery"."sum"
FROM (
SELECT "vote"."initiative_id", sum("direct_voter"."weight")
FROM "vote" JOIN "direct_voter"
ON "vote"."issue_id" = "direct_voter"."issue_id"
AND "vote"."member_id" = "direct_voter"."member_id"
WHERE "vote"."first_preference"
GROUP BY "vote"."initiative_id"
) AS "subquery"
WHERE "initiative"."issue_id" = "issue_id_p"
AND "initiative"."admitted"
AND "initiative"."id" = "subquery"."initiative_id";
END;
$$;
COMMIT;
|
-- MySQL dump 10.13 Distrib 8.0.19, for osx10.15 (x86_64)
--
-- Host: localhost Database: hospital
-- ------------------------------------------------------
-- Server version 8.0.19
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `bills`
--
DROP TABLE IF EXISTS `bills`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bills` (
`dbill` float(10,2) NOT NULL,
`mbill` float(10,2) NOT NULL,
`rbill` float(10,2) NOT NULL,
`pid` int NOT NULL,
PRIMARY KEY (`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bills`
--
LOCK TABLES `bills` WRITE;
/*!40000 ALTER TABLE `bills` DISABLE KEYS */;
/*!40000 ALTER TABLE `bills` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `diagnostics`
--
DROP TABLE IF EXISTS `diagnostics`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `diagnostics` (
`ws_test_no` int NOT NULL AUTO_INCREMENT,
`ws_pat_id` int NOT NULL,
`ws_test_id` int NOT NULL,
`ws_diagn` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`ws_test_no`),
UNIQUE KEY `ws_test_no_UNIQUE` (`ws_test_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `diagnostics`
--
LOCK TABLES `diagnostics` WRITE;
/*!40000 ALTER TABLE `diagnostics` DISABLE KEYS */;
/*!40000 ALTER TABLE `diagnostics` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `medicines`
--
DROP TABLE IF EXISTS `medicines`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `medicines` (
`record_id` int NOT NULL AUTO_INCREMENT,
`ws_pat_id` int NOT NULL,
`ws_med_name` varchar(80) COLLATE utf8mb4_general_ci NOT NULL,
`ws_qty` int DEFAULT NULL,
PRIMARY KEY (`record_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `medicines`
--
LOCK TABLES `medicines` WRITE;
/*!40000 ALTER TABLE `medicines` DISABLE KEYS */;
INSERT INTO `medicines` VALUES (1,298292042,'Imodium',17),(2,298292042,'Zantac',5),(3,359511053,'Pepcid AC',20),(4,904048841,'Paracetamol',78);
/*!40000 ALTER TABLE `medicines` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `meds_master`
--
DROP TABLE IF EXISTS `meds_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meds_master` (
`ws_med_id` int NOT NULL,
`ws_med_name` varchar(80) COLLATE utf8mb4_general_ci DEFAULT NULL,
`ws_rate` float(10,2) DEFAULT NULL,
`ws_med_qty` int DEFAULT NULL,
PRIMARY KEY (`ws_med_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `meds_master`
--
LOCK TABLES `meds_master` WRITE;
/*!40000 ALTER TABLE `meds_master` DISABLE KEYS */;
INSERT INTO `meds_master` VALUES (11123,'Cetirizine',21.00,1000),(12345,'Paracetamol',18.00,922),(23412,'Aspirin',17.00,1000),(34598,'Imodium',13.00,983),(56432,'Naprosyn',90.00,1000),(56743,'Pepcid AC',23.00,960),(67890,'Calpol',20.00,1000),(76543,'Zantac',9.00,995),(89765,'Motrin',200.00,1000),(98765,'Saridon',13.00,1000);
/*!40000 ALTER TABLE `meds_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `patient`
--
DROP TABLE IF EXISTS `patient`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `patient` (
`ws_ssn` int NOT NULL,
`ws_pat_id` int NOT NULL,
`ws_adrs` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL,
`ws_age` int DEFAULT NULL,
`ws_doj` date DEFAULT NULL,
`ws_discharge` date DEFAULT NULL,
`ws_rtype` varchar(15) COLLATE utf8mb4_general_ci DEFAULT NULL,
`ws_status` varchar(10) COLLATE utf8mb4_general_ci DEFAULT NULL,
`ws_pat_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
`ws_pat_city` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL,
`ws_pat_state` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`ws_ssn`,`ws_pat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `patient`
--
LOCK TABLES `patient` WRITE;
/*!40000 ALTER TABLE `patient` DISABLE KEYS */;
INSERT INTO `patient` VALUES (215665572,298292042,'Park Street, Kolkata',33,'2020-06-17',NULL,'Single Room','Active','William Joseph','Kolkata','West Bengal'),(242167665,527858963,'3020 Marigold Lane',70,'2020-06-22',NULL,'Single Room','Active','<NAME>','Ft Lauderdale','Florida'),(357626773,842373821,'Guindy, Chennai',45,'2020-06-15',NULL,'Single Room','Active','Divya P','Chennai','Tamil Nadu'),(364278677,904048841,'6, Chandni Chowk',32,'2020-06-11',NULL,'General Ward','Active','Abhimanyu Roy','Delhi','Delhi'),(567098222,441980939,'<NAME>',31,'2020-06-04',NULL,'Semi Sharing','Active','Mihir Deol','Maharashtra','Mumbai'),(567577545,359511053,'Kundanahalli, Bangalore',45,'2020-05-20',NULL,'Semi Sharing','Active','Prachi Dubey','Bangalore','Karnataka'),(576565898,817542925,'4902,Dancing Dove Lane',19,'2020-05-21',NULL,'Semi Sharing','Active','<NAME>','Garden City','New York'),(686686886,943872066,'5, MG Road',67,'2020-06-11',NULL,'Semi Sharing','Active','Seema Jha','Gandhi Nagar','Gujarat'),(987453212,106381351,'<NAME>',35,'2020-06-24',NULL,'General Ward','Active','Rajat Sharma','Ranchi','Jharkhand');
/*!40000 ALTER TABLE `patient` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tests`
--
DROP TABLE IF EXISTS `tests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tests` (
`ws_test_id` int NOT NULL,
`ws_test_name` varchar(100) DEFAULT NULL,
`ws_test_chrg` float(10,2) DEFAULT NULL,
PRIMARY KEY (`ws_test_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tests`
--
LOCK TABLES `tests` WRITE;
/*!40000 ALTER TABLE `tests` DISABLE KEYS */;
INSERT INTO `tests` VALUES (34765,'Endoscopy',800.00),(45632,'Radiology',1000.00),(63703,'Calcium',350.00),(67087,'Lumbar Puncture',800.00),(67841,'Pathology',600.00),(76543,'X-Ray',100.00),(80088,'Liver Function Test',3000.00),(89075,'Genetic Testing',2000.00),(98723,'Blood Test',200.00),(438904,'Ultrasound',300.00);
/*!40000 ALTER TABLE `tests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `userstore`
--
DROP TABLE IF EXISTS `userstore`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `userstore` (
`id` varchar(100) COLLATE utf8mb4_general_ci NOT NULL,
`pass` varchar(300) COLLATE utf8mb4_general_ci NOT NULL,
`ts` timestamp NULL DEFAULT NULL,
`type` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `userstore`
--
LOCK TABLES `userstore` WRITE;
/*!40000 ALTER TABLE `userstore` DISABLE KEYS */;
INSERT INTO `userstore` VALUES ('diagnostics','2896e9aa160693d0dcfb2ead274211f0','2020-07-01 15:50:22','d'),('pharmacist','2896e9aa160693d0dcfb2ead274211f0','2020-07-01 15:50:06','p'),('receptionist','2<PASSWORD>','2020-07-01 15:49:44','r');
/*!40000 ALTER TABLE `userstore` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-07-01 21:21:25
|
<filename>common/sql/webhook.sql
select webhook.*
from webhook
join "user" using(user_id)
where webhook_id = $1
and token = $2
|
<gh_stars>1-10
use postgradDB
exec StudentRegister @first_name='ammar', @last_name='ammar', @password='<PASSWORD>',@Gucian='0',@email='<EMAIL>',
@type='Master', @faculty='Computer Science', @address='cairo', @GPA='3.5', @undergradID='123456789'
go
exec SupervisorRegister @name='<NAME>', @password='12', @faculty='Engineering',
@email='<EMAIL>'
GO
declare @out bit
exec userLogin @id='36', @password='12', @Success=@out output
print @out
go
exec addMobile @id='28', @mobile_number ='01111073467'
go
exec AdminListSup
go
exec AdminViewSupervisorProfile @supid='2'
go
exec AdminViewAllTheses
go
declare @out int
exec AdminViewOnGoingTheses @thesesCount=@out output
print @out
go
exec AdminViewStudentThesisBySupervisor
GO
exec AdminListNonGucianCourse @CourseID='1'
go
exec AdminUpdateExtension @ThesisSerialNo='1'
go
-- this insertion just for executing the AdminIssueThesisPayment proc
INSERT INTO Thesis Values(20,'Artificial Intelligence','Master','AI Real Life Applications','2021/12/20','2022/8/3','2022/8/8',80.5,null,3)
go
declare @out bit
exec AdminIssueThesisPayment @ThesisSerialNo='20', @amount=1111, @noOfInstallments=4, @fundPercentage='55.5',
@Success=@out output
go
exec AdminViewStudentProfile @sid='1'
go
-- this insertion just for executing AdminIssueInstallPayment here we insert new payment without installment and let the proc do the jop
insert into Payment(amount, no_Installments, fundPercentage) values (1122, 4, 50.5)
go
exec AdminIssueInstallPayment @paymentID=16, @InstallStartDate='2021/1/1'
GO
exec AdminListAcceptPublication
go
exec AddCourse @courseCode='508', @creditHours='8', @fee='11000.500'
go
-- here we insert new non gucian and new course and link them with proc linkCourseStudent
declare @course INT
declare @ID int
INSERT INTO Course Values(8000,12,521)
set @course =scope_identity()
INSERT INTO PostGradUser Values('<EMAIL>','Mohamed@1')
set @ID= scope_identity()
INSERT INTO NonGucianStudent Values(@ID,'Mohamed','ahmed','Master','Law','8 Mohamed Ibrahim Street,Maadi',2.6)
exec linkCourseStudent @courseID=4 , @studentID=16
go
exec addStudentCourseGrade @courseID='4' , @studentID='25' , @grade='90.00'
GO
exec ViewExamSupDefense1 @defenseDate='2022/08/10'
go
--4-)***************************Supervisor PROCs EXECUTIONS**********************************
--4)a)EvaluateProgressReport(EXECUTION)
execute EvaluateProgressReport 17,6,1,2.5;
execute EvaluateProgressReport 17,6,1,5;
select *from GUCianProgressReport
select *from NonGUCianProgressReport
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)b)ViewSupStudentsYears(EXECUTION)
execute ViewSupStudentsYears 2;
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)c)SupViewProfile(EXECUTION)
execute SupViewProfile 5;
--4)c)UpdateSupProfile(EXECUTION)
execute UpdateSupProfile 5,'dr.Mohamed','Engineering';
select *from Supervisor where Supervisor.id=5;
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)d)ViewAStudentPublications(EXECUTION)
execute ViewAStudentPublications 7;
execute ViewAStudentPublications 19;
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)e)AddDefenseGucian/AddDefenseNonGucian(EXECUTION)
update NonGucianStudentTakeCourse set grade=0 where sid=16;
execute AddDefenseGucian 5,'4/21/2023','HILTON';
execute AddDefenseNonGucian 6,'4/21/2023','INTERCONTENENTAL';
select *from Defense
select *from NonGucianStudentTakeCourse
select * from NonGucianStudentRegisterThesis;
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)f)AddExaminer(EXECUTION)
execute AddExaminer 11,'2023-09-02 00:00:00.000','Marten',1,'Mechatronics';
select*from Thesis;
select*from PostGradUser;
select*from Examiner;
select*from Defense;
select*from ExaminerEvaluateDefense;
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)g)CancelThesis(EXECUTION)
go
execute CancelThesis 2;
execute CancelThesis 19;
select * from Thesis;
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--4)h)AddGrade(EXECUTION)
go
execute AddGrade 2,99;
--*************************END OF EXECUTING ALL SUPERVISOR PROCEDURES*******************************************************
exec AddDefenseGrade 24,'2023-12-25 00:00:00.000', 94.186
exec AddCommentsGrade 27,9,'2023-12-25 00:00:00.000','ksajunkaclkasnmcksdv'
exec viewMyProfile 50
exec editMyProfile 50,'tarek','shawky','tarro2a1234','tarekshawwky456','cairoo','phd'
exec addUndergradID 10,'18h28'
exec ViewCoursesGrades 25
exec ViewCoursePaymentsInstall 25
exec ViewThesisPaymentsInstall 25
exec ViewUpcomingInstallments 13
exec AddProgressReport 22, '2022/9/20'
exec FillProgressReport 9,2,2,'jhdbcfsb ckc'
exec ViewEvalProgressReport 9,1
exec addPublication 'sefv','2021/5/9','sfcc','rttt',1
exec linkPubThesis 11,9 |
<filename>backup/mysql/2018-03-09/mtbsystem-201803090234.sql
-- MySQL dump 10.13 Distrib 5.5.57, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: mtbsystem
-- ------------------------------------------------------
-- Server version 5.5.57-0ubuntu0.14.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `actor`
--
DROP TABLE IF EXISTS `actor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `actor` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '演员编å·',
`name_cn` char(50) NOT NULL DEFAULT '',
`name_en` char(50) NOT NULL DEFAULT '',
`actor_photo` char(255) NOT NULL DEFAULT '',
`actor_country` char(50) NOT NULL DEFAULT '',
`actor_type` int(11) NOT NULL DEFAULT '1' COMMENT '演员级别,默认1演员,2是导演',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `actor`
--
LOCK TABLES `actor` WRITE;
/*!40000 ALTER TABLE `actor` DISABLE KEYS */;
INSERT INTO `actor` VALUES (1,'瑞恩·库格勒','','https://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Ryan_Coogler_by_Gage_Skidmore.jpg/220px-Ryan_Coogler_by_Gage_Skidmore.jpg','',2),(2,'查德维克·博斯曼','','https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Chadwick_Boseman_by_Gage_Skidmore_July_2017_%28cropped%29.jpg/220px-Chadwick_Boseman_by_Gage_Skidmore_July_2017_%28cropped%29.jpg','',1),(3,'露皮塔·尼永奥','','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3cAFPpINdvMRK5G_0BnG7tlpjQgZS4JC9TUgsVE4Yjqr2hZgf_Q','',1),(4,'林超贤','','https://gss0.bdstatic.com/94o3dSag_xI4khGkpoWK1HF6hhy/baike/c0%3Dbaike80%2C5%2C5%2C80%2C26/sign=9df1047fac51f3ded7bfb136f5879b7a/78310a55b319ebc4b7a2ba2c8126cffc1f1716a8.jpg','',2),(5,'张译','','http://images.china.cn/attachement/jpg/site1007/20140905/001ec949fb5915738ea401.jpg','',1),(6,'黄景瑜','','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRrAMfjlwT8uPdWkowe5hD1Zg5K69DKl8yg7ub4rSddIG8NMWSE','',1),(7,'陈思诚','','https://i2.wp.com/www.herworldplus.com/sites/default/files/2805_yangmi_embed.jpg','',2),(8,'王宝强','','https://images-na.ssl-images-amazon.com/images/M/MV5BMTQ4NzU3NTY3N15BMl5BanBnXkFtZTcwMDc2MjM1OQ@@._V1_UX214_CR0,0,214,317_AL_.jpg','',1),(9,'刘昊然','','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgW0qH9w6Zga3YdUaF_a04XlTzoG-nfLKHEAWB2HuF6hxSxwZa','',1),(10,'卫铁','','https://gss3.bdstatic.com/-Po3dSag_xI4khGkpoWK1HF6hhy/baike/c0%3Dbaike80%2C5%2C5%2C80%2C26/sign=52134e265d82b2b7b392319650c4a08a/dcc451da81cb39db45aab174d4160924ab1830ae.jpg','',2),(11,'卫铁','','https://gss3.bdstatic.com/-Po3dSag_xI4khGkpoWK1HF6hhy/baike/c0%3Dbaike80%2C5%2C5%2C80%2C26/sign=52134e265d82b2b7b392319650c4a08a/dcc451da81cb39db45aab174d4160924ab1830ae.jpg','',1),(12,'许诚毅','','https://upload.wikimedia.org/wikipedia/commons/thumb/6/66/Raman_Hui_2008.jpg/220px-Raman_Hui_2008.jpg','',2),(13,'梁朝伟','','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSLcygj-KIMb814n-EmkG2CNVhMKM_18-tAXrFDiCjDKzLI8Q4b','',1),(14,'白百何','','http://ent.news.cn/2015-08/08/128103465_14389116478221n.jpg','',1),(15,'郭德纲','','http://www.bestchinanews.com/1jrttimg/large/ac80006f052c1f98dde','',2),(16,'岳云鹏','','http://chinachristiandaily.com/data/images/full/0/35/3598.jpg','',1),(17,'吴京','','https://upload.wikimedia.org/wikipedia/commons/2/23/Wu_Jing_%28Wolf_Warrior_2%29.jpg','',1),(18,'丁亮','','http://i.ce.cn/district/newarea/sddy/201601/19/W020160119376801678857.jpg','',2),(19,'丁亮','','http://i.ce.cn/district/newarea/sddy/201601/19/W020160119376801678857.jpg','',1),(20,'林汇达','','https://img1.doubanio.com/view/celebrity/s_ratio_celebrity/public/p1492836254.8.webp','',1),(21,'郑保瑞','','http://www1.pictures.zimbio.com/gi/Accident+Photocall+66th+Venice+Film+Festival+groE2jNSlmFl.jpg','',2),(22,'郭富城','','https://images-na.ssl-images-amazon.com/images/M/MV5BMTkyOTQ0MTMyMV5BMl5BanBnXkFtZTcwMDM2Mzc3NA@@._V1_UX214_CR0,0,214,317_AL_.jpg','',1),(23,'冯绍峰','','http://ww4.sinaimg.cn/large/61e7f4aatw1dj4308roiqj.jpg','',1),(24,'瑞恩·库格勒','','https://upload.wikimedia.org/wikipedia/commons/d/df/Ryan_Coogler_at_Sundance_2013.jpg','',2),(25,'查德维克·博斯曼','','data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxATEBUTEhIVFRUWFhUVFRAQFRUVFRUVFRcWFxUVFRUYHSggGBolHRUVITEhJSkrLi4uFx8zODMtNygtLisBCgoKDg0OGBAQGi8eHSYtKy0tKy0rLSstLS0tKy0tLS0tLS0rLS0tLSstLS0tLS0tLS0tLSstKy0rKy03NystN//AABEIARMAtwMBIgACEQEDEQH/','',1),(26,'瑞恩·库格勒','','https://upload.wikimedia.org/wikipedia/commons/d/df/Ryan_Coogler_at_Sundance_2013.jpg','',2),(27,'查德维克·博斯曼','','data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxATEBUTEhIVFRUWFhUVFRAQFRUVFRUVFRcWFxUVFRUYHSggGBolHRUVITEhJSkrLi4uFx8zODMtNygtLisBCgoKDg0OGBAQGi8eHSYtKy0tKy0rLSstLS0tKy0tLS0tLS0rLS0tLSstLS0tLS0tLS0tLSstKy0rKy03NystN//AABEIARMAtwMBIgACEQEDEQH/','',1),(28,'瑞恩·库格勒','','https://upload.wikimedia.org/wikipedia/commons/d/df/Ryan_Coogler_at_Sundance_2013.jpg','',2),(29,'查德维克·博斯曼','','https://i.ytimg.com/vi/engQfhmeY3w/maxresdefault.jpg','',1),(30,'露皮塔·尼永奥','','data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxITEhUTEhIVFhUXFRUVFxUVFRUVFRcVFRYWFxcVFxUYHSggGBolHRUVITEhJSkrLi4uFx8zODMtNygtLisBCgoKDg0OGhAQGi0lHx0rLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSstLS0tLS0tKy0tLS0tLS0tLf/AABEIAQgAvwMBIgACEQEDEQH/','',1),(31,'瑞恩·库格勒','','https://upload.wikimedia.org/wikipedia/commons/d/df/Ryan_Coogler_at_Sundance_2013.jpg','',2),(32,'查德维克·博斯曼','','https://i.ytimg.com/vi/engQfhmeY3w/maxresdefault.jpg','',1),(33,'露皮塔·尼永奥','','data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxITEhUTEhIVFhUXFRUVFxUVFRUVFRcVFRYWFxcVFxUYHSggGBolHRUVITEhJSkrLi4uFx8zODMtNygtLisBCgoKDg0OGhAQGi0lHx0rLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSstLS0tLS0tKy0tLS0tLS0tLf/AABEIAQgAvwMBIgACEQEDEQH/','',1),(34,'瑞恩·库格勒','','https://upload.wikimedia.org/wikipedia/commons/d/df/Ryan_Coogler_at_Sundance_2013.jpg','',2),(35,'查德维克·博斯曼','','https://i.ytimg.com/vi/engQfhmeY3w/maxresdefault.jpg','',1),(36,'露皮塔·尼永奥','','http://image11.m1905.cn/uploadfile/2014/0113/20140113074415612349_watermark.jpg','',1),(37,'黄真真','','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQPTvzCgXf811NxBzr5bTNWTKbIt7jSwAHYrVIIeIGVRtqsqmttrA','',2),(38,'陈意涵','','https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKnY-CVovv5LOHHgAaI8RGlWQ0iBApvPDfxaucMc4fljlX_P1L','',1),(39,'薛凯琪','','http://1.bp.blogspot.com/-LocscOBFi2c/UXMOK22TflI/AAAAAAAAB24/qJ63Bwj0Lro/s1600/1+(129).jpg','',1),(40,'威尔·古勒','','https://gss3.bdstatic.com/-Po3dSag_xI4khGkpoWK1HF6hhy/baike/c0%3Dbaike80%2C5%2C5%2C80%2C26/sign=c6baf281b2fb43160e12722841cd2d46/ca1349540923dd54ad993522d109b3de9d824896.jpg','',2),(41,'詹姆斯·柯登','','https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/James_Corden_at_2015_PaleyFest.jpg/800px-James_Corden_at_2015_PaleyFest.jpg','',1),(42,'多姆纳尔·格里森','','http://img31.mtime.cn/pi/2016/05/11/162619.91319350_369X369X4.jpg','',1),(43,'保罗·维尔奇','','https://p1.meituan.net/movie/b5d2a27a9a7c0f774b0590adefe961d5159373.jpg','',2),(44,'海伦·米伦','','https://gss3.bdstatic.com/7Po3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D220/sign=634b80f2eef81a4c2232ebcbe72b6029/a2cc7cd98d1001e956792689bd0e7bec55e797ea.jpg','',1),(45,'唐纳德·萨瑟兰','','http://n.sinaimg.cn/ent/transform/20170814/rP_h-fyixias0687655.jpg','',1),(46,'克里斯托弗·兰敦','','http://img5.mtime.cn/ph/2017/07/24/173208.32631800_290X440X4.jpg','',2),(47,'杰西卡·罗瑟','','http://images.movie.xunlei.kankan.com/gallery/1495/23fd6d8a731c7eaf624fcffb172e5580.jpg','',1),(48,'伊瑟尔·布罗萨德','','http://images.miiqu.com/uploads/star/p/p_b/p_1501779768.jpg','',1);
/*!40000 ALTER TABLE `actor` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_user`
--
DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user` (
`au_id` int(11) NOT NULL AUTO_INCREMENT,
`admin_name` char(30) NOT NULL DEFAULT '' COMMENT '登陆者的åå—',
`admin_password` char(20) NOT NULL DEFAULT '' COMMENT '登录密ç ',
`admin_cinema_id` int(11) NOT NULL DEFAULT '0',
`admin_last_login_time` char(20) NOT NULL DEFAULT '' COMMENT '上次登录时间',
`admin_num` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'æƒé™,0为默认值,1为总管',
PRIMARY KEY (`au_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_user`
--
LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'admin','123456',-1,'',1),(7,'新光影城','xgyc',6,'',0),(12,'哈艺时代影城','hysdyc',11,'',0);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cinema`
--
DROP TABLE IF EXISTS `cinema`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cinema` (
`cinema_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`cinema_name` char(100) NOT NULL DEFAULT '',
`cinema_add` char(150) NOT NULL DEFAULT '',
`location_id` int(11) NOT NULL DEFAULT '0' COMMENT '影院城市对应的ä½ç½®',
`cinema_types` char(100) NOT NULL DEFAULT '',
`cinema_card` int(11) NOT NULL DEFAULT '0' COMMENT '影城å¡',
`cinema_min_price` int(11) NOT NULL DEFAULT '0' COMMENT 'å‡ å…ƒèµ·',
`cinema_support` char(200) NOT NULL DEFAULT '' COMMENT '影院æä¾›çš„æ”¯æŒï¼ŒåŒ…括退ç¾ç‰,用|隔开',
`cinema_discount` int(11) NOT NULL DEFAULT '0' COMMENT 'å½±åŸŽå¡æœ€ä½Žå‡ä»·å¤šå°‘å…ƒ',
`cinema_phone` char(15) NOT NULL DEFAULT '',
PRIMARY KEY (`cinema_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cinema`
--
LOCK TABLES `cinema` WRITE;
/*!40000 ALTER TABLE `cinema` DISABLE KEYS */;
INSERT INTO `cinema` VALUES (6,'新光影城','广州从化广州大学华软软件学院',1,'',1,8,'退签|饮料',8,'0'),(11,'哈艺时代影城','从化太平大道12号',1,'',0,8,'退签|饮料',8,'18814128405');
/*!40000 ALTER TABLE `cinema` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cinema_film`
--
DROP TABLE IF EXISTS `cinema_film`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cinema_film` (
`cf_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`cinema_id` int(11) NOT NULL DEFAULT '0',
`film_id` int(11) NOT NULL DEFAULT '0',
`hall_id` int(11) NOT NULL DEFAULT '0' COMMENT '哪个场,å³å‡ å·åŽ…',
`film_name` char(100) NOT NULL DEFAULT '' COMMENT '影片åå—',
`cinema_name` char(100) NOT NULL DEFAULT '' COMMENT '影院åå—',
`release_time_year` int(11) NOT NULL DEFAULT '0',
`release_time_month` int(11) NOT NULL DEFAULT '0',
`release_time_day` int(11) NOT NULL DEFAULT '0',
`release_time` char(20) NOT NULL DEFAULT '0',
`release_type` char(20) NOT NULL DEFAULT '' COMMENT '2D什么的',
`release_add` char(20) NOT NULL DEFAULT '',
`length` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '影片时长',
`release_discount` float NOT NULL DEFAULT '0',
PRIMARY KEY (`cf_id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cinema_film`
--
LOCK TABLES `cinema_film` WRITE;
/*!40000 ALTER TABLE `cinema_film` DISABLE KEYS */;
INSERT INTO `cinema_film` VALUES (7,6,30,2,'爱在记忆消逝前','一号厅',2018,2,28,'23:54','冒险 / 喜剧 / 剧情','',112,35),(8,6,29,2,'比得兔','一号厅',2018,2,28,'23:54','动画 / 冒险 / 喜剧','',93,35),(9,6,28,2,'闺蜜2','一号厅',2018,2,28,'23:54','喜剧 / 剧情','',109,35),(10,6,27,2,'黑豹','一号厅',2018,2,28,'23:55','动作 / 冒险 / 科幻','',134,35),(11,6,17,2,'唐人街探案2','一号厅',2018,2,28,'23:55','喜剧 / 动作 / 悬疑','',120,35),(12,6,17,2,'唐人街探案2','一号厅',2018,2,28,'23:55','喜剧 / 动作 / 悬疑','',120,35),(13,6,31,2,'忌日快乐','一号厅',2018,2,28,'00:39','恐怖 / 悬疑 / 惊悚','',96,35),(14,6,31,2,'忌日快乐','新光影城',2018,3,1,'00:58','恐怖 / 悬疑 / 惊悚','',96,35),(15,6,31,2,'忌日快乐','新光影城',2018,3,2,'00:58','恐怖 / 悬疑 / 惊悚','',96,35),(16,6,30,2,'爱在记忆消逝前','新光影城',2018,3,1,'00:58','冒险 / 喜剧 / 剧情','',112,35),(17,6,30,2,'爱在记忆消逝前','新光影城',2018,3,2,'00:58','冒险 / 喜剧 / 剧情','',112,35),(18,6,29,2,'比得兔','新光影城',2018,2,28,'00:59','动画 / 冒险 / 喜剧','',93,35),(19,6,29,2,'比得兔','新光影城',2018,3,1,'01:00','动画 / 冒险 / 喜剧','',93,35),(20,6,27,2,'黑豹','新光影城',2018,3,1,'01:00','动作 / 冒险 / 科幻','',134,35),(21,6,27,2,'黑豹','新光影城',2018,2,28,'01:00','动作 / 冒险 / 科幻','',134,35),(22,6,26,2,'黑豹','新光影城',2018,2,28,'01:00','动作 / 冒险 / 科幻','',134,35),(23,6,26,2,'黑豹','新光影城',2018,3,1,'01:00','动作 / 冒险 / 科幻','',134,35),(24,6,25,2,'黑豹','新光影城',2018,3,1,'01:00','动作 / 冒险 / 科幻','',134,35),(25,6,24,2,'黑豹','新光影城',2018,3,1,'01:00','动作 / 冒险 / 科幻','',134,35),(26,6,23,2,'黑豹','新光影城',2018,3,1,'01:00','动作 / 冒险 / 科幻','',134,35),(27,6,22,2,'西游记女儿国','新光影城',2018,3,1,'01:00','喜剧 / 爱情 / 动作','',116,35),(28,6,21,2,'熊出没·变形记','新光影城',2018,3,1,'01:00','动画 / 喜剧 / 冒险','',90,35),(29,6,20,2,'祖宗十九代','二号厅',2018,3,9,'01:00','奇幻 / 喜剧','',95,35),(30,6,19,2,'捉妖记2','二号厅',2018,3,9,'01:00','喜剧 / 奇幻 / 动作','',100,35),(31,6,17,2,'唐人街探案2','新光影城',2018,3,1,'01:00','喜剧 / 动作 / 悬疑','',120,35),(32,6,16,2,'红海行动','新光影城',2018,3,1,'01:00','动作 / 剧情','',138,35),(33,6,16,2,'红海行动','新光影城',2018,2,28,'01:01','动作 / 剧情','',138,35),(34,6,17,2,'唐人街探案2','新光影城',2018,2,28,'01:01','喜剧 / 动作 / 悬疑','',120,35),(38,6,23,4,'黑豹','新光影城',2018,3,3,'22:36','动作 / 冒险 / 科幻','',134,30),(43,6,28,4,'闺蜜2','新光影城',2018,3,3,'22:36','喜剧 / 剧情','',109,30),(44,6,29,4,'比得兔','新光影城',2018,3,3,'22:36','动画 / 冒险 / 喜剧','',93,30),(45,6,30,4,'爱在记忆消逝前','新光影城',2018,3,3,'22:36','冒险 / 喜剧 / 剧情','',112,30),(46,6,31,4,'忌日快乐','新光影城',2018,3,3,'22:36','恐怖 / 悬疑 / 惊悚','',96,30),(47,11,16,5,'红海行动','哈艺时代影城',2018,3,3,'23:22','动作 / 剧情','',138,50),(48,11,17,5,'唐人街探案2','哈艺时代影城',2018,3,3,'23:22','喜剧 / 动作 / 悬疑','',120,50),(49,11,18,5,'厉害了,我的国','哈艺时代影城',2018,3,3,'23:22','纪录片','',90,50),(50,11,19,6,'捉妖记2','哈艺时代影城',2018,3,3,'23:22','喜剧 / 奇幻 / 动作','',90,40),(51,11,21,6,'熊出没·变形记','哈艺时代影城',2018,3,3,'23:22','动画 / 喜剧 / 冒险','',90,40),(52,11,22,6,'西游记女儿国','哈艺时代影城',2018,3,3,'23:22','喜剧 / 爱情 / 动作','',116,40),(53,11,28,6,'闺蜜2','哈艺时代影城',2018,3,3,'23:22','喜剧 / 剧情','',109,40),(54,11,29,6,'比得兔','哈艺时代影城',2018,3,3,'23:22','动画 / 冒险 / 喜剧','',93,40),(55,11,30,6,'爱在记忆消逝前','哈艺时代影城',2018,3,3,'23:22','冒险 / 喜剧 / 剧情','',112,40),(56,11,31,6,'忌日快乐','哈艺时代影城',2018,3,3,'23:22','恐怖 / 悬疑 / 惊悚','',96,40);
/*!40000 ALTER TABLE `cinema_film` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `comment`
--
DROP TABLE IF EXISTS `comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comment` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT,
`film_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(150) NOT NULL DEFAULT '' COMMENT 'æ ‡é¢˜',
`content` text NOT NULL COMMENT '内容',
`head_img` varchar(100) NOT NULL DEFAULT '',
`nick_name` char(50) NOT NULL DEFAULT '',
`create_at` char(20) NOT NULL DEFAULT '',
`up_num` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `comment`
--
LOCK TABLES `comment` WRITE;
/*!40000 ALTER TABLE `comment` DISABLE KEYS */;
INSERT INTO `comment` VALUES (4,20,'','不错不错','','18814128406','2018-03-03',0);
/*!40000 ALTER TABLE `comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `film`
--
DROP TABLE IF EXISTS `film`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `film` (
`movie_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '影片编å·',
`img` char(255) DEFAULT '' COMMENT '影片logo',
`length` int(11) DEFAULT '0' COMMENT '影片时长',
`is_select_seat` int(11) DEFAULT '0' COMMENT 'æ˜¯å¦æ”¯æŒé€‰åº§',
`film_price` float DEFAULT '0' COMMENT 'å½±ç‰‡ä»·æ ¼',
`film_screenwriter` char(255) DEFAULT '' COMMENT '影片编剧',
`film_director` char(255) DEFAULT '' COMMENT '影片导演',
`comment_num` int(11) DEFAULT '0' COMMENT '评论人数',
`title_cn` char(100) DEFAULT NULL COMMENT '影片åå—',
`title_en` char(100) DEFAULT NULL COMMENT '影片åå—',
`is_support_inline_watch` int(11) DEFAULT '0' COMMENT 'æ˜¯å¦æ”¯æŒçº¿ä¸Šè§‚看',
`create_at` char(20) DEFAULT '' COMMENT '记录创建时间',
`type` char(100) DEFAULT '' COMMENT '影片ç§ç±»',
`film_drama` text COMMENT '影片剧情',
`common_special` char(255) DEFAULT '',
`user_access_times` int(11) DEFAULT '0' COMMENT '用户访问次数',
`film_boxoffice` float DEFAULT '0' COMMENT '影片票房',
`wanted_count` int(11) DEFAULT '0' COMMENT '用户想看次数',
`user_comment_times` int(11) DEFAULT '0' COMMENT '用户评分次数',
`company_issued` char(255) DEFAULT '' COMMENT 'å‘行公å¸',
`country` char(50) DEFAULT '' COMMENT 'å‘行国家',
`rating_final` float DEFAULT '0' COMMENT '评分',
`is_3D` int(11) DEFAULT '0' COMMENT '是å¦3d',
`is_DMAX` int(11) DEFAULT '0' COMMENT '是å¦is_DMAX',
`is_filter` int(11) DEFAULT '0' COMMENT '是å¦is_filter',
`is_hot` int(11) DEFAULT '0' COMMENT '是å¦çƒæ’',
`is_IMAX` int(11) DEFAULT '0' COMMENT '是å¦is_IMAX',
`is_IMAX3D` int(11) DEFAULT '0' COMMENT '是å¦is_IMAX3D',
`is_new` int(11) DEFAULT '0' COMMENT 'æ˜¯å¦æ–°ç‰‡',
`is_ticking` int(11) DEFAULT '0' COMMENT 'æ˜¯å¦æ˜¯æ£åœ¨é”€å”®',
`r_day` int(11) DEFAULT '0' COMMENT 'ä¸Šæ˜ æ—¶é—´-æ—¥',
`r_month` int(11) DEFAULT '0' COMMENT 'ä¸Šæ˜ æ—¶é—´-月',
`r_year` int(11) DEFAULT '0' COMMENT 'ä¸Šæ˜ æ—¶é—´-å¹´',
PRIMARY KEY (`movie_id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `film`
--
LOCK TABLES `film` WRITE;
/*!40000 ALTER TABLE `film` DISABLE KEYS */;
INSERT INTO `film` VALUES (16,'http://img5.mtime.cn/mt/2018/02/17/150049.57218452_1280X720X2.jpg',138,0,40,'','林超贤',0,'红海行动','Operation Red Sea',0,'2018-02-27','动作 / 剧情','\\蛟龙突击队\\演绎神兵天降','《红海行动》是一部2018年上映的軍事动作电影,根據2015年也門撤僑行動的真實事件改編。由博纳影业出品,林超贤执导,冯骥编剧,张译、海清、黄景瑜、杜江主演;张涵予、王彦霖、任达华客串演出。此片作為2018年春節賀歲電影於2018年2月16日在中國內地各大電影院上映,票房甚佳;次月1日(3月1日)於香港上映。',0,0,0,0,'博纳影业','中国',0,0,0,0,0,0,0,0,1,27,2,2018),(17,'http://img5.mtime.cn/mt/2018/02/05/093619.43082530_1280X720X2.jpg',120,0,40,'','陈思诚',0,'唐人街探案2','Detective Chinatown 2',0,'2018-02-27','喜剧 / 动作 / 悬疑','王宝强刘昊然肖央“大闹”美利坚','《唐人街探案2》是万达影视传媒有限公司、上海骋亚影视文化传媒有限公司、北京红色果实文化传播有限公司联合出品,陈思诚执导,王宝强、刘昊然领衔主演,肖央、刘承羽、尚语贤、王迅、杨金赐、王成思等主演的悬疑动作喜剧冒险系列电影,是电影《唐人街探案》的续集。',0,0,0,0,'万达影视传媒有限公司','中国',0,0,0,0,0,0,0,0,1,27,2,2018),(18,'http://img5.mtime.cn/mt/2018/02/22/142010.67656990_1280X720X2.jpg',90,0,90,'','卫铁',0,'厉害了,我的国','Amazing China',0,'2018-02-27','纪录片','厉害了,我的国','2018“厉害了我的国?改革开放40年”大型主题系列活动春节又有大动作! 对于讲究团圆的中国人来说,全家福不仅定格家庭的美好时光,也见证着祖国的历史变迁。 春节来临,快打开手机,一起来“幸福照相馆”定制独一无二的全家福吧! 众筹视频展播活动也已正式开启,想知道自己的作品上电视了没?',0,0,0,0,'国家影院','中国',0,0,0,0,0,0,0,0,1,27,2,2018),(19,'http://img5.mtime.cn/mt/2018/01/05/175658.82351501_1280X720X2.jpg',90,0,40,'','许诚毅',0,'捉妖记2','Monster Hunt 2',0,'2018-02-27','喜剧 / 奇幻 / 动作','梁朝伟胡巴笨笨组成“作妖三宝”','《捉妖记2》由无锡影都传媒有限公司、安乐(北京)电影发行有限公司、蓝色星空影业出品的喜剧奇幻片,作为《捉妖记》续集,由梁朝伟、白百何、井柏然、李宇春、杨祐宁等主演。该片讲述了天荫和小岚找回胡巴团聚一堂的合家欢故事,该片于2018年2月16日(大年初一)在中国大陆上映。',0,0,0,0,'无锡影都传媒有限公司','中国',2,0,0,0,0,0,0,0,1,27,2,2018),(20,'http://img5.mtime.cn/mt/2018/01/24/192236.63399013_1280X720X2.jpg',95,0,40,'','郭德纲',0,'祖宗十九代','The Face Of My Gene',0,'2018-02-27','奇幻 / 喜剧','岳云鹏无限穿越调配基因','《祖宗十九代》是北京德云社文化传播有限公司出品的喜剧片,由郭德纲执导、岳云鹏、吴京、吴秀波、井柏然、林志玲、王宝强等主演。该片讲述了立志成为作家却一事无成的青年小贝,在经历了一趟奇幻之旅后重拾自信,勇敢面对人生的故事。影片于2018年2月16日(大年初一)在中国内地上映',0,0,0,0,'北京德云社文化传播有限公司','中国',3.3125,0,0,0,0,0,0,0,1,27,2,2018),(21,'http://img5.mtime.cn/mt/2018/02/01/101421.62196189_1280X720X2.jpg',90,0,40,'','丁亮',0,'熊出没·变形记','Boonie Bears: The Big Shrink',0,'2018-02-27','动画 / 喜剧 / 冒险','开启“微观世界”冒险之旅','《熊出没·变形记》是《熊出没》系列第五部大电影,由丁亮、林汇达执导,于2018年2月16日在中国内地上映。影片讲述了光头强、熊大、熊二遭遇变形缩小后所展开的一段微观世界的冒险故事。',0,0,0,0,'万达国际影院','中国',0,0,0,0,0,0,0,0,2,27,2,2018),(22,'http://img5.mtime.cn/mt/2018/01/23/094118.33045114_1280X720X2.jpg',116,0,40,'','郑保瑞',0,'西游记女儿国','The Monkey King 3',0,'2018-02-27','喜剧 / 爱情 / 动作','西游最特别一难全新演绎','《西游记女儿国》是由星皓影业有限公司出品的喜剧魔幻片,由郑保瑞执导,郭富城、冯绍峰、赵丽颖、小沈阳、罗仲谦、林志玲、梁咏琪、刘涛、苑琼丹、潘斌龙、施诗领衔主演。该片讲述了唐僧师徒四人在取经路上与各路妖魔鬼怪斗智斗勇的故事。',0,0,0,0,'星皓影业有限公司','中国',0,0,0,0,0,0,0,0,2,27,2,2018),(27,'http://img5.mtime.cn/mt/2018/01/30/102123.92074166_1280X720X2.jpg',134,0,40,'','瑞恩·库格勒',0,'黑豹','Black Panther',0,'2018-02-27','动作 / 冒险 / 科幻','劇情改編自漫威漫畫旗下同名漫畫人物故事','在漫威影业的影片《黑豹》中,特查拉在其父亲——前瓦坎达国王去世之后,回到了这个科技先进但与世隔绝的非洲国家,继任成为新一任“黑豹”及国王。当旧敌重现时,作为“黑豹”及国王的特查拉身陷两难境地,眼看着瓦坎达及全世界陷于危难之中。面对背叛与危险,这位年轻的国王必须联合同盟,释放“黑豹”全部力量,奋力捍卫他的人民。',0,0,0,0,'漫威漫畫公司','美國',0,0,0,0,0,0,0,0,1,27,2,2018),(28,'http://img5.mtime.cn/mt/2018/01/10/092346.98748326_1280X720X2.jpg',109,0,40,'','黄真真',0,'闺蜜2','GIRLS 2',0,'2018-02-27','喜剧 / 剧情','该片讲述希汶、Kimmy和嘉岚在越南度过的一段疯狂的婚前冒险之旅','《閨蜜2》(英语:Girls Ⅱ)(又稱《閨蜜2之單挑越南黑幫》),是一部於2018年上映的愛情喜劇電影。是電影《閨蜜》的第二部曲,由陳意涵、薛凱琪、張鈞甯領銜主演,台灣於2018年3月2日上映。 演員列表[编辑]. 演員姓名, 角色名稱, 介紹. 陳意涵, 希汶. 薛凱琪, Kimmy. 張鈞甯, 嘉嵐. 參考資料[编辑]. 跳转^ 飛車躲黑道大鬧街頭。',0,0,0,0,'万达影业公司','中国',0,0,0,0,0,0,0,0,1,27,2,2018),(29,'http://img5.mtime.cn/mt/2018/02/27/151252.12272322_1280X720X2.jpg',93,0,40,'','威尔·古勒',0,'比得兔','<NAME>',0,'2018-02-27','动画 / 冒险 / 喜剧','比得兔,又譯彼得兔,(英语:<NAME>)是一個虛構的圖畫小說擬人角色。','比得兔,又譯彼得兔,(英语:<NAME>)是一個虛構的圖畫小說擬人角色,他的作者是英國女性作家暨插畫家碧雅翠絲·波特(<NAME>)。比得兔最早出現在1902年所出版的童書:《比得兔的故事》(The Tale of Peter Rabbit),之後,碧雅翠絲·波特又陸續出版五本和比得兔有關的童書。',0,0,0,0,'古卫儿影业','美国',0,0,0,0,0,0,0,0,1,27,2,2018),(30,'http://img5.mtime.cn/mt/2018/02/12/152914.18554032_1280X720X2.jpg',112,0,40,'','保罗·维尔奇',0,'爱在记忆消逝前','The Leisure Seeker',0,'2018-02-27','冒险 / 喜剧 / 剧情','老少女牵手健忘老暖男爱情大逃亡','该片改编自<NAME>的同名小说,讲述了一对患重病的老夫妻开着老旧的房车从马塞诸塞州出发前往海明威的故居,在旅途中回顾人生的故事。 约翰是一位文学教师和作家,海明威的死忠,尽管阿兹海默症已经让他的记忆越来越差,甚至会忘记妻子和儿女的名字,却依旧可以随口说出海明威的所有作品,《老人和海》更是他的钟爱。因为妻子艾拉患重病需要住院, 约翰就只能进入养老院,携手走过一辈子的二人面临永远分开的未来。于是,他们有了一个疯狂的决定,决心驾驶名叫“leisure seeker 求闲者”的房车,',0,0,0,0,'意大利国家影视公司','意大利',0,0,0,0,0,0,0,0,1,27,2,2018),(31,'http://img5.mtime.cn/mt/2018/01/08/104524.96607652_1280X720X2.jpg',96,0,40,'','克里斯托弗·兰敦',0,'忌日快乐','Happy Death Day',0,'2018-02-28','恐怖 / 悬疑 / 惊悚','一部2017年美國恐怖喜劇片','《忌日快樂》(英语:Happy Death Day)是一部2017年美國恐怖喜劇片,由克里斯多福·B·藍登執導,史考特·洛沃德爾(英语:Scott Lobdell)撰寫劇本。電影主演包括潔西卡·羅瑟和伊瑟瑞爾·布薩德(英语:Israel Broussard),其劇情描述一名在生日被謀殺的女大學生,竟遭遇到時間循環而不斷地重新回到那一天,使她決定藉此找出兇手。',0,0,0,0,'美国国际娱乐','美国',0,1,1,0,0,0,0,0,1,1,3,2018);
/*!40000 ALTER TABLE `film` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `film_actor`
--
DROP TABLE IF EXISTS `film_actor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `film_actor` (
`fa_id` int(11) NOT NULL AUTO_INCREMENT,
`film_id` int(11) NOT NULL DEFAULT '0',
`film_name` char(50) NOT NULL DEFAULT '',
`actor_id` int(11) NOT NULL DEFAULT '0',
`actor_name` char(50) NOT NULL DEFAULT '',
PRIMARY KEY (`fa_id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `film_actor`
--
LOCK TABLES `film_actor` WRITE;
/*!40000 ALTER TABLE `film_actor` DISABLE KEYS */;
INSERT INTO `film_actor` VALUES (5,15,'黑豹',3,'露皮塔·尼永奥'),(6,16,'红海行动',4,'林超贤'),(7,16,'红海行动',5,'张译'),(8,16,'红海行动',6,'黄景瑜'),(9,17,'唐人街探案2',7,'陈思诚'),(10,17,'唐人街探案2',8,'王宝强'),(11,17,'唐人街探案2',9,'刘昊然'),(12,18,'厉害了,我的国',10,'卫铁'),(13,18,'厉害了,我的国',10,'卫铁'),(14,19,'捉妖记2',12,'许诚毅'),(15,19,'捉妖记2',13,'梁朝伟'),(16,19,'捉妖记2',14,'白百何'),(17,20,'祖宗十九代',15,'郭德纲'),(18,20,'祖宗十九代',16,'岳云鹏'),(19,20,'祖宗十九代',17,'吴京'),(20,21,'熊出没·变形记',18,'丁亮'),(21,21,'熊出没·变形记',18,'丁亮'),(22,21,'熊出没·变形记',20,'林汇达'),(23,22,'西游记女儿国',21,'郑保瑞'),(24,22,'西游记女儿国',22,'郭富城'),(25,22,'西游记女儿国',23,'冯绍峰'),(26,23,'黑豹',24,'瑞恩·库格勒'),(27,23,'黑豹',24,'瑞恩·库格勒'),(28,23,'黑豹',24,'瑞恩·库格勒'),(29,23,'黑豹',29,'查德维克·博斯曼'),(30,23,'黑豹',24,'瑞恩·库格勒'),(31,23,'黑豹',29,'查德维克·博斯曼'),(32,23,'黑豹',24,'瑞恩·库格勒'),(33,23,'黑豹',29,'查德维克·博斯曼'),(34,23,'黑豹',36,'露皮塔·尼永奥'),(35,28,'闺蜜2',37,'黄真真'),(36,28,'闺蜜2',38,'陈意涵'),(37,28,'闺蜜2',39,'薛凯琪'),(38,29,'比得兔',40,'威尔·古勒'),(39,29,'比得兔',41,'詹姆斯·柯登'),(40,29,'比得兔',42,'多姆纳尔·格里森'),(41,30,'爱在记忆消逝前',43,'保罗·维尔奇'),(42,30,'爱在记忆消逝前',44,'海伦·米伦'),(43,30,'爱在记忆消逝前',45,'唐纳德·萨瑟兰'),(44,31,'忌日快乐',46,'克里斯托弗·兰敦'),(45,31,'忌日快乐',47,'杰西卡·罗瑟'),(46,31,'忌日快乐',48,'伊瑟尔·布罗萨德');
/*!40000 ALTER TABLE `film_actor` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `film_order`
--
DROP TABLE IF EXISTS `film_order`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `film_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`order_num` varchar(50) NOT NULL DEFAULT '' COMMENT '订å•ç¼–å·',
`order_status` int(11) NOT NULL DEFAULT '0' COMMENT '0:䏋啿œªæ”¯ä»˜ï¼Œ1ï¼šä¸‹å•æ”¯ä»˜ï¼Œ2:退å•',
`order_price` float NOT NULL DEFAULT '0',
`create_at` char(20) NOT NULL DEFAULT '0',
`pay_at` char(20) NOT NULL DEFAULT '0',
`mh_id` int(11) NOT NULL DEFAULT '0',
`order_x` int(11) NOT NULL DEFAULT '0' COMMENT 'ç¬¬å‡ åˆ—',
`order_y` int(11) NOT NULL DEFAULT '0' COMMENT 'ç¬¬å‡ è¡Œ',
`user_id` int(11) NOT NULL DEFAULT '0',
`movie_id` int(11) NOT NULL DEFAULT '0',
`order_score` int(11) NOT NULL DEFAULT '-1',
`start_time` char(20) NOT NULL DEFAULT '' COMMENT 'æ ¼å¼å¦‚:2017-07-15 20:05',
`end_time` char(20) NOT NULL DEFAULT '' COMMENT 'æ ¼å¼å¦‚:2017-07-15 20:05',
PRIMARY KEY (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `film_order`
--
LOCK TABLES `film_order` WRITE;
/*!40000 ALTER TABLE `film_order` DISABLE KEYS */;
INSERT INTO `film_order` VALUES (29,'1520072884',1,35,'2018-03-03','0',2,6,2,1,20,-1,'',''),(30,'1520072884',1,35,'2018-03-03','0',2,6,3,1,20,-1,'',''),(31,'1520074108',0,35,'2018-03-03','0',2,7,2,1,20,-1,'',''),(32,'1520074108',0,35,'2018-03-03','0',2,6,4,1,20,-1,'',''),(33,'1520074628',0,35,'2018-03-03','0',2,6,4,1,18,-1,'',''),(34,'1520074628',0,35,'2018-03-03','0',2,6,3,1,18,-1,'',''),(35,'1520074801',0,35,'2018-03-03','0',2,6,3,1,19,-1,'',''),(36,'1520074801',0,35,'2018-03-03','0',2,6,5,1,19,-1,'',''),(37,'1520075199',1,35,'2018-03-03','0',2,6,4,1,19,-1,'01:01',''),(38,'1520075199',1,35,'2018-03-03','0',2,6,5,1,19,-1,'01:01',''),(39,'1520075695',1,35,'2018-03-03','0',2,6,3,1,20,3,'01:01',''),(40,'1520075695',1,35,'2018-03-03','0',2,5,4,1,20,3,'01:01',''),(41,'1520075771',1,35,'2018-03-03','0',2,5,5,1,20,4,'01:01',''),(42,'1520075771',1,35,'2018-03-03','0',2,7,3,1,20,4,'01:01',''),(43,'1520076113',1,35,'2018-03-03','0',2,5,4,1,20,3,'01:01',''),(44,'1520076356',1,35,'2018-03-03','0',2,7,3,1,19,4,'01:01',''),(45,'1520082772',1,35,'2018-03-03','0',2,6,5,1,20,3,'01:01',''),(46,'1520562773',1,35,'2018-03-09','0',2,4,3,6,19,-1,'01:00','');
/*!40000 ALTER TABLE `film_order` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `image`
--
DROP TABLE IF EXISTS `image`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `image` (
`image_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`movie_id` int(11) NOT NULL COMMENT '影片编å·',
`image_url` char(100) NOT NULL COMMENT '影片图片',
PRIMARY KEY (`image_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `image`
--
LOCK TABLES `image` WRITE;
/*!40000 ALTER TABLE `image` DISABLE KEYS */;
/*!40000 ALTER TABLE `image` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `movie_hall`
--
DROP TABLE IF EXISTS `movie_hall`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_hall` (
`mh_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`mh_name` char(20) NOT NULL DEFAULT '' COMMENT 'å³å‡ å·åŽ…',
`mh_address` text NOT NULL COMMENT '座ä½è¡¨ï¼Œjson表示,{"x":5,"y":6,"no":["xnoy"]},其ä¸x表示列,y表示行,表示ä¸å…许åçš„ä½ç½®',
`cinema_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`mh_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `movie_hall`
--
LOCK TABLES `movie_hall` WRITE;
/*!40000 ALTER TABLE `movie_hall` DISABLE KEYS */;
INSERT INTO `movie_hall` VALUES (1,'一号厅','{\"x\":12,\"y\":12,\"no\":\"[\\\"1no1\\\",\\\"2no1\\\"]\"}',3),(2,'二号厅','{\"x\":11,\"y\":11,\"no\":\"[\\\"1no2\\\",\\\"2no3\\\"]\"}',6),(4,'一号厅','{\"x\":10,\"y\":10,\"no\":\"[\\\"1no1\\\",\\\"2no2\\\"]\"}',6),(5,'一号厅','{\"x\":10,\"y\":10,\"no\":\"[\\\"1no1\\\",\\\"5no1\\\",\\\"4no1\\\",\\\"3no1\\\",\\\"2no1\\\"]\"}',11),(6,'二号厅','{\"x\":10,\"y\":10,\"no\":\"[\\\"1no1\\\",\\\"3no1\\\",\\\"2no1\\\",\\\"4no1\\\",\\\"\\\"]\"}',11);
/*!40000 ALTER TABLE `movie_hall` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `place`
--
DROP TABLE IF EXISTS `place`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `place` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '地点编å·',
`count` int(11) DEFAULT '0' COMMENT '影片个数',
`name` char(50) DEFAULT '' COMMENT '地点åç§°',
`pinyin_full` char(50) DEFAULT '' COMMENT '全拼',
`pinyin_short` char(10) DEFAULT '' COMMENT '缩写',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `place`
--
LOCK TABLES `place` WRITE;
/*!40000 ALTER TABLE `place` DISABLE KEYS */;
INSERT INTO `place` VALUES (1,0,'从化','conghua','ch'),(2,0,'广州','guangzhou','gz');
/*!40000 ALTER TABLE `place` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `type`
--
DROP TABLE IF EXISTS `type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `type` (
`t_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '类型id',
`t_name` char(50) DEFAULT '' COMMENT '类型åç§°',
PRIMARY KEY (`t_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `type`
--
LOCK TABLES `type` WRITE;
/*!40000 ALTER TABLE `type` DISABLE KEYS */;
/*!40000 ALTER TABLE `type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`user_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '类型id',
`user_name` char(50) NOT NULL DEFAULT '' COMMENT '用户åç§°',
`password` char(50) NOT NULL DEFAULT '' COMMENT '用户的密ç ',
`create_at` char(50) NOT NULL DEFAULT '' COMMENT '用户的注册时间',
`email` char(50) NOT NULL DEFAULT '' COMMENT '用户的email',
`phone` char(12) NOT NULL DEFAULT '',
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (1,'李锡钒','3144c55546345df13cf8a36d2be16ee7','2018-03-03','111','18814128406'),(2,'ricoder','3144c55546345df13cf8a36d2be16ee7','2018-03-03','111','18814128405'),(3,'李锡钒','e10adc3949ba59abbe56e057f20f883e','2018-03-08','111',''),(4,'李锡钒','e10adc3949ba59abbe56e057f20f883e','2018-03-08','111',''),(5,'李锡钒','e10adc3949ba59abbe56e057f20f883e','2018-03-08','111',''),(6,'李锡钒','e10adc3949ba59abbe56e057f20f883e','2018-03-08','<EMAIL>','18814128406');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `want_see_record`
--
DROP TABLE IF EXISTS `want_see_record`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `want_see_record` (
`ws_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`movie_id` int(11) NOT NULL DEFAULT '0' COMMENT '影片的id',
`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '影片的id',
`create_at` char(50) NOT NULL DEFAULT '' COMMENT '记录生æˆçš„æ—¶é—´',
PRIMARY KEY (`ws_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `want_see_record`
--
LOCK TABLES `want_see_record` WRITE;
/*!40000 ALTER TABLE `want_see_record` DISABLE KEYS */;
/*!40000 ALTER TABLE `want_see_record` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-03-09 2:34:37
|
<filename>databases/schemas/ddl/drivestat/drivestat_header.sql
--
-- PostgreSQL database dump
--
SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;
--
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: products
--
COMMENT ON SCHEMA public IS 'Standard public namespace';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = true;
|
<reponame>smith750/kc
create table AWARD_SYNC_CHANGE (
AWARD_SYNC_CHANGE_ID NUMBER(22,0),
AWARD_ID NUMBER(22,0) NOT NULL,
XML_CHANGES CLOB,
CLASS_NAME VARCHAR2(100) NOT NULL,
ATTRIBUTE_NAME VARCHAR2(50),
OBJECT_DESC VARCHAR2(500),
DATA_DESC VARCHAR2(500),
SYNC_TYPE CHAR(1) NOT NULL,
SYNC_DESCEND VARCHAR2(6),
SYNC_FABRICATED_DESCEND CHAR(1) NOT NULL,
SYNC_COST_SHARE_DESCEND CHAR(1) NOT NULL,
UPDATE_TIMESTAMP DATE NOT NULL,
UPDATE_USER VARCHAR2(60) NOT NULL,
VER_NBR NUMBER(8,0) NOT NULL,
OBJ_ID VARCHAR2(36) NOT NULL
);
ALTER TABLE AWARD_SYNC_CHANGE
ADD CONSTRAINT PK_AWARD_SYNC_CHANGE
PRIMARY KEY (AWARD_SYNC_CHANGE_ID);
|
<reponame>OpenCDSS/cdss-app-tstool-test
/*
Useful SQL that can be pasted in for testing.
*/
select * from hdb_datatype, hdb_site, hdb_site_datatype where hdb_datatype.datatype_id = hdb_site_datatype.datatype_id and
hdb_site.site_id = hdb_site_datatype.site_id and hdb_site_datatype.site_datatype_id = 101351
|
<reponame>paulpierre/pp_chartvisual
DROP TABLE IF EXISTS `USDCAD_M15`;
CREATE TABLE IF NOT EXISTS `USDCAD_M15`(
`id` int(5) NOT NULL,
`bull` varchar(10) NOT NULL,
`bear` varchar(10) NOT NULL,
`buy` varchar(10) NOT NULL,
`sell` varchar(10) NOT NULL,
`av` varchar(10) NOT NULL,
`mm` varchar(10) NOT NULL,
`time` varchar(30) NOT NULL);
ALTER TABLE `USDCAD_M15` ADD PRIMARY KEY (`id`);
ALTER TABLE `USDCAD_M15` MODIFY `id` int(5) NOT NULL AUTO_INCREMENT;
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','31.26111111','13.28642857','2015.09.25 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33135825','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33259619','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33278947','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','1.33326436','0.00000000','1.33440269','0.00000000','0.00000000','2015.09.25 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326436','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33310029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33267952','1.33267952','1.33161786','0.00000000','0.00000000','0.00000000','2015.09.25 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33267952','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33339713','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','1.33428197','0.00000000','1.33478697','0.00000000','0.00000000','2015.09.25 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33428197','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33367899','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33367899','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33367899','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33326926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33028918','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33028918','1.33028918','1.32838418','0.00000000','0.00000000','0.00000000','2015.09.25 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33028918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33028918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.25 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33028918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33168289','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33168289','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33168289','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33226866','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33262036','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33268386','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33285647','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33326404','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33367680','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33376598','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33425921','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33471685','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33471685','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33547353','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33623740','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33623740','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33624199','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33698302','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33914575','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33914575','1.33914575','0.00000000','1.34090075','0.00000000','0.00000000','2015.09.24 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33914575','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33914575','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33914575','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33914575','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33850889','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33737538','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33737538','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33737538','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33715456','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33708236','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33671542','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33656318','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33594554','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33354670','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33354670','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33354670','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33354670','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33354670','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33354670','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33284695','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33284695','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33284695','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33097609','1.33097609','1.32955776','0.00000000','0.00000000','0.00000000','2015.09.24 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33097609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33138266','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33138266','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33138266','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33138266','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33138266','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33138266','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33181262','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33183858','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33217038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33254728','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33254728','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33254728','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33254728','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33261068','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33293869','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.33411943','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.24 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33411943','1.33411943','0.00000000','1.33500943','0.00000000','0.00000000','2015.09.23 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33411943','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33411943','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33411943','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33398623','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33364328','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33322502','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33277945','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33277945','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33277945','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33277945','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33277945','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33277945','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33258105','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33258105','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33258105','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33258105','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33254701','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33147036','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.33040880','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32965569','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32965569','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32784669','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32784669','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32784669','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32784669','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32784669','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32748721','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32740912','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32693288','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32460564','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32460564','1.32460564','1.32259897','0.00000000','0.00000000','0.00000000','2015.09.23 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460564','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460564','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460564','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460564','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460564','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32570361','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32637689','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32647243','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32680609','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32753974','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32753974','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32753974','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32789560','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32789560','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32789560','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32789560','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32798142','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32902814','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32902814','1.32902814','0.00000000','1.32964647','0.00000000','0.00000000','2015.09.23 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32902814','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32902814','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32902814','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32902814','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32902814','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32883924','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32847834','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32847834','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32847834','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32847834','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32847834','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32846588','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32846588','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32846588','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32846588','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32846588','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32846588','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32781246','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32731835','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32731835','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32731835','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32731835','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32710877','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32687976','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32687976','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32687976','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32687976','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32680516','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32647119','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32647119','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644889','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32529754','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.23 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32529754','1.32529754','1.32449087','0.00000000','0.00000000','0.00000000','2015.09.22 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32529754','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32529754','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32529754','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32529754','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32529754','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32650484','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32650484','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32650484','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','1.32822039','0.00000000','1.32918205','0.00000000','0.00000000','2015.09.22 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32822039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32802905','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32747118','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32602591','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32566439','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32566439','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32527482','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32514151','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32514151','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32514151','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32514151','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32491878','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32444810','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32444810','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32444810','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32417082','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32413858','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32400267','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32306663','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32306663','1.32306663','1.32207829','0.00000000','0.00000000','0.00000000','2015.09.22 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32306663','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32306663','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32306663','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32306663','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32319032','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356066','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32356733','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32366198','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32368485','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32379456','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32398284','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32398284','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32398902','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32398902','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32398902','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32399030','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','1.32503648','0.00000000','1.32560814','0.00000000','0.00000000','2015.09.22 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.22 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32503648','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32483766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32464673','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32406800','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32315614','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32243521','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32243521','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32188357','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32188357','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32188357','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32188357','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31989178','1.31989178','1.31813178','0.00000000','0.00000000','0.00000000','2015.09.21 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31989178','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','1.32080951','0.00000000','1.32181951','0.00000000','0.00000000','2015.09.21 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32080951','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32051178','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31930888','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31930888','1.31930888','1.31845221','0.00000000','0.00000000','0.00000000','2015.09.21 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31930888','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31930888','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31930888','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31930888','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31930888','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32095656','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32120055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32125982','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32143916','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32215422','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32215422','1.32215422','0.00000000','1.32275422','0.00000000','0.00000000','2015.09.21 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32215422','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32215422','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32215422','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32209875','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32203373','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32167766','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32166627','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.21 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32166627','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31859807','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725703','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725703','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725703','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725703','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31513348','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31464926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31464926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31464926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31464926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31464926','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31448617','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31170223','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31020159','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31013473','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30941808','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30941808','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30871862','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30869039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30798859','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30498346','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30384178','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.30282700','1.30282700','1.30060700','0.00000000','0.00000000','0.00000000','2015.09.18 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30282700','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30292186','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30317744','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30317744','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30697260','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30697260','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30697260','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30697260','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30697260','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30859704','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30894030','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30894030','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30895290','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.30948792','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31004523','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31004523','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31355553','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31447909','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31447909','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31447909','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31584800','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31654381','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31654381','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','1.31760343','0.00000000','1.31801176','0.00000000','0.00000000','2015.09.18 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31760343','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31751919','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31731991','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31729585','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31709943','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.18 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31579321','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31305635','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31305635','1.31305635','1.30974135','0.00000000','0.00000000','0.00000000','2015.09.17 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31305635','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31305635','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31305635','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31305635','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31305635','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31365411','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','1.31935167','0.00000000','1.32161834','0.00000000','0.00000000','2015.09.17 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31935167','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31800986','1.31800986','1.31681486','0.00000000','0.00000000','0.00000000','2015.09.17 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31800986','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31838397','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31923103','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31923103','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31923103','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31923103','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31923103','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','1.31992249','0.00000000','1.32075249','0.00000000','0.00000000','2015.09.17 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31992249','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31892921','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31892921','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31892921','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31862219','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31862219','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31862219','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31862219','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31862219','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31785783','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31741680','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31725359','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.31718776','1.31718776','1.31671609','0.00000000','0.00000000','0.00000000','2015.09.17 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31718776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31726722','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31726722','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31726722','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31739633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31739633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31739633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31739633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31739633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.17 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31740918','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31827143','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31837929','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31837929','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31837929','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.31978418','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32086686','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32086686','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32086686','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32086686','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','1.32359535','0.00000000','1.32513202','0.00000000','0.00000000','2015.09.16 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32359535','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32309039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32309039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32309039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32309039','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32239725','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32223200','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32156311','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32137578','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32137578','1.32137578','1.32075911','0.00000000','0.00000000','0.00000000','2015.09.16 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32137578','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32137578','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32137578','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32137578','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32149055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32268314','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32268314','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32296926','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32296926','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32301926','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32331504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32339444','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32340583','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32340583','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32340583','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32362229','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32362833','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32396656','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32396656','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32396656','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32401412','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32406085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32406085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32419071','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32432438','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.16 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32440764','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32493379','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32493440','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32493440','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','1.32644029','0.00000000','1.32723196','0.00000000','0.00000000','2015.09.15 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32644029','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32642949','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32642949','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32460038','1.32460038','1.32332705','0.00000000','0.00000000','0.00000000','2015.09.15 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32460038','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32461306','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464085','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32464633','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32465236','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32465236','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32465236','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32465236','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32465236','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32465236','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32477504','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','1.32592718','0.00000000','1.32659551','0.00000000','0.00000000','2015.09.15 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32592718','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32587656','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32584737','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32579486','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32579422','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32527187','1.32527187','1.32480687','0.00000000','0.00000000','0.00000000','2015.09.15 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32527187','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542055','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.15 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 23:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 23:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32560776','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 23:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 23:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','1.32664512','0.00000000','1.32730845','0.00000000','0.00000000','2015.09.14 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32664512','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','1.32522313','1.32378313','0.00000000','0.00000000','0.00000000','2015.09.14 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','1.32522313','0.00000000','1.32635646','0.00000000','0.00000000','2015.09.14 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32522313','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32512256','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32346481','1.32346481','1.32243481','0.00000000','0.00000000','0.00000000','2015.09.14 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32346481','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32387201','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32411255','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32411255','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32417202','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','1.32448490','0.00000000','1.32530157','0.00000000','0.00000000','2015.09.14 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 09:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 09:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 08:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 08:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 08:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 08:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 07:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 07:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32448490','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 07:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32428614','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 07:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32421077','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 06:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 06:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32325979','1.32325979','1.32257312','0.00000000','0.00000000','0.00000000','2015.09.14 06:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 06:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 05:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 05:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 05:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 05:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 04:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32325979','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 04:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32373009','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 04:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32373392','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 04:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32484567','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 03:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32498025','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 03:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32498025','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 03:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32498025','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 03:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32498025','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 02:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32498025','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 02:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32498025','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 02:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 02:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 01:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 01:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 01:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 01:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 00:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 00:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 00:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.14 00:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32542933','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 22:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32558853','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 22:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32591597','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 22:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32608028','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 22:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32630029','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 21:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32630029','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 21:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32630029','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 21:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32631330','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 21:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32631330','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 20:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32632551','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 20:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32663995','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 20:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 20:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','1.32886130','0.00000000','1.33051464','0.00000000','0.00000000','2015.09.11 19:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 19:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 19:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 19:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 18:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 18:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32886130','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 18:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32769735','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 18:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32597325','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 17:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32549787','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 17:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32549787','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 17:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32489087','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 17:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('1.32480754','0.00000000','-0.00135667','0.00000000','0.00000000','0.00000000','2015.09.11 16:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 16:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 16:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 16:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 15:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 15:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 15:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 15:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 14:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 14:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 14:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 14:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 13:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00109500','0.00000000','0.00000000','2015.09.11 13:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 13:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 13:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 12:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 12:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 12:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 12:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 11:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 11:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 11:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 11:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 10:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 10:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 10:15');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 10:00');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 09:45');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 09:30');
INSERT INTO `USDCAD_M15`(`bull`,`bear`,`buy`,`sell`,`av`,`mm`,`time`) VALUES('0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','0.00000000','2015.09.11 09:15');
|
-- phpMyAdmin SQL Dump
-- version 4.5.4.1deb2ubuntu2
-- http://www.phpmyadmin.net
--
-- Client : localhost
-- Généré le : Mer 21 Février 2018 à 15:25
-- Version du serveur : 5.7.21-0ubuntu0.16.04.1
-- Version de PHP : 7.0.25-0ubuntu0.16.04.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de données : `homemanager`
--
-- --------------------------------------------------------
--
-- Structure de la table `hm_Bill`
--
CREATE TABLE `hm_Bill` (
`id` int(11) NOT NULL,
`Total` varchar(100) NOT NULL,
`Echeance` int(11) NOT NULL,
`NoFacture` varchar(50) NOT NULL,
`DatePayement` int(11) DEFAULT NULL,
`Reference` varchar(500) NOT NULL,
`idx_Fournisseur` int(11) NOT NULL,
`Versement` text NOT NULL,
`EnFaveur` text NOT NULL,
`Compte` varchar(100) NOT NULL,
`RefPayement` varchar(150) NOT NULL,
`DateAjout` int(11) NOT NULL,
`uid` varchar(500) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `hm_File`
--
CREATE TABLE `hm_File` (
`id` int(11) NOT NULL,
`url` varchar(500) NOT NULL,
`date` int(11) NOT NULL,
`uid` varchar(500) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `hm_Fournisseur`
--
CREATE TABLE `hm_Fournisseur` (
`id` int(11) NOT NULL,
`Nom` varchar(50) NOT NULL,
`Devise` varchar(10) NOT NULL,
`Telephone` varchar(100) NOT NULL,
`Mail` varchar(150) NOT NULL,
`Adresse` text NOT NULL,
`Versement` varchar(150) NOT NULL,
`EnFaveur` text NOT NULL,
`Compte` varchar(100) NOT NULL,
`Echeances` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `hm_User`
--
CREATE TABLE `hm_User` (
`id` int(11) NOT NULL,
`login` varchar(150) NOT NULL,
`password` varchar(500) NOT NULL,
`name` varchar(100) NOT NULL,
`firstname` varchar(100) NOT NULL,
`theme` varchar(50) NOT NULL,
`descr` text NOT NULL,
`profilpic` varchar(150) NOT NULL,
`rights` varchar(500) NOT NULL,
`lang` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Contenu de la table `hm_User`
--
INSERT INTO `hm_User` (`id`, `login`, `password`, `name`, `firstname`, `theme`, `descr`, `profilpic`, `rights`, `lang`) VALUES
(1, '<EMAIL>', '<PASSWORD>', 'Name', 'Firstname', 'red', 'Your bio', '', '11100', 'FR');
--
-- Index pour les tables exportées
--
--
-- Index pour la table `hm_Bill`
--
ALTER TABLE `hm_Bill`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `hm_Fournisseur`
--
ALTER TABLE `hm_Fournisseur`
ADD PRIMARY KEY (`id`);
--
-- Index pour la table `hm_User`
--
ALTER TABLE `hm_User`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT pour les tables exportées
--
--
-- AUTO_INCREMENT pour la table `hm_Bill`
--
ALTER TABLE `hm_Bill`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT pour la table `hm_Fournisseur`
--
ALTER TABLE `hm_Fournisseur`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT pour la table `hm_User`
--
ALTER TABLE `hm_User`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
CREATE TABLE [dbo].[Source]
(
--From MergedXSDs XSD
--From 'Dc_Elements' Namespace
[SourceId] SMALLINT NOT NULL,
CONSTRAINT [PK_SourceId] PRIMARY KEY CLUSTERED ([SourceId] ASC)
);
|
/*
Navicat MySQL Data Transfer
Source Server : loc
Source Server Version : 50547
Source Host : localhost:3306
Source Database : ca_v1
Target Server Type : MYSQL
Target Server Version : 50547
File Encoding : 65001
Date: 2016-09-30 17:54:50
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for common_actions
-- ----------------------------
DROP TABLE IF EXISTS `common_actions`;
CREATE TABLE `common_actions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`code` varchar(255) DEFAULT NULL,
`pid` int(11) DEFAULT NULL,
`remark` varchar(255) DEFAULT NULL,
`is_group` tinyint(4) DEFAULT '1' COMMENT '是否分组',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=249 DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_actions
-- ----------------------------
INSERT INTO `common_actions` VALUES ('213', 'demo', 'demo', '0', null, '1');
INSERT INTO `common_actions` VALUES ('214', 'demo/page', 'demo/page', '213', 'demo/page', '0');
INSERT INTO `common_actions` VALUES ('215', 'demo/db', 'demo/db', '213', 'demo/db', '0');
INSERT INTO `common_actions` VALUES ('216', '删除', 'demo/delete', '213', '删除', '0');
INSERT INTO `common_actions` VALUES ('217', '权限管理', 'common.actions', '0', '', '1');
INSERT INTO `common_actions` VALUES ('218', '列表', 'common.actions/index', '217', '列表', '0');
INSERT INTO `common_actions` VALUES ('219', '添加', 'common.actions/create', '217', '添加', '0');
INSERT INTO `common_actions` VALUES ('220', '修改', 'common.actions/edit', '217', '修改', '0');
INSERT INTO `common_actions` VALUES ('221', 'common.actions/refreshAction', 'common.actions/refreshAction', '217', 'common.actions/refreshAction', '0');
INSERT INTO `common_actions` VALUES ('222', '删除', 'common.actions/delete', '217', '删除', '0');
INSERT INTO `common_actions` VALUES ('223', '管理员', 'common.admin', '0', '', '1');
INSERT INTO `common_actions` VALUES ('224', '列表', 'common.admin/index', '223', '列表', '0');
INSERT INTO `common_actions` VALUES ('225', 'common.admin/disable', 'common.admin/disable', '223', 'common.admin/disable', '0');
INSERT INTO `common_actions` VALUES ('226', 'common.admin/recovery', 'common.admin/recovery', '223', 'common.admin/recovery', '0');
INSERT INTO `common_actions` VALUES ('227', '添加', 'common.admin/create', '223', '添加', '0');
INSERT INTO `common_actions` VALUES ('228', '修改', 'common.admin/edit', '223', '修改', '0');
INSERT INTO `common_actions` VALUES ('229', 'common.admin/setPasswormodel', 'common.admin/setPasswormodel', '223', 'common.admin/setPasswormodel', '0');
INSERT INTO `common_actions` VALUES ('230', '删除', 'common.admin/delete', '223', '删除', '0');
INSERT INTO `common_actions` VALUES ('231', 'common.groups', 'common.groups', '0', null, '1');
INSERT INTO `common_actions` VALUES ('232', '列表', 'common.groups/index', '231', '列表', '0');
INSERT INTO `common_actions` VALUES ('233', '添加', 'common.groups/create', '231', '添加', '0');
INSERT INTO `common_actions` VALUES ('234', '修改', 'common.groups/edit', '231', '修改', '0');
INSERT INTO `common_actions` VALUES ('235', 'common.groups/auth', 'common.groups/auth', '231', 'common.groups/auth', '0');
INSERT INTO `common_actions` VALUES ('236', '删除', 'common.groups/delete', '231', '删除', '0');
INSERT INTO `common_actions` VALUES ('237', 'common.loginRecord', 'common.loginRecord', '0', null, '1');
INSERT INTO `common_actions` VALUES ('238', '列表', 'common.loginRecord/index', '237', '列表', '0');
INSERT INTO `common_actions` VALUES ('239', '删除', 'common.loginRecord/delete', '237', '删除', '0');
INSERT INTO `common_actions` VALUES ('240', 'common.menus', 'common.menus', '0', null, '1');
INSERT INTO `common_actions` VALUES ('241', '列表', 'common.menus/index', '240', '列表', '0');
INSERT INTO `common_actions` VALUES ('242', '添加', 'common.menus/create', '240', '添加', '0');
INSERT INTO `common_actions` VALUES ('243', '修改', 'common.menus/edit', '240', '修改', '0');
INSERT INTO `common_actions` VALUES ('244', '删除', 'common.menus/delete', '240', '删除', '0');
INSERT INTO `common_actions` VALUES ('245', 'common.operationLog', 'common.operationLog', '0', null, '1');
INSERT INTO `common_actions` VALUES ('246', '列表', 'common.operationLog/index', '245', '列表', '0');
INSERT INTO `common_actions` VALUES ('247', '查看', 'common.operationLog/read', '245', '查看', '0');
INSERT INTO `common_actions` VALUES ('248', '删除', 'common.operationLog/delete', '245', '删除', '0');
-- ----------------------------
-- Table structure for common_admin
-- ----------------------------
DROP TABLE IF EXISTS `common_admin`;
CREATE TABLE `common_admin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(10) DEFAULT NULL,
`login_name` varchar(50) DEFAULT NULL,
`password` varchar(50) DEFAULT NULL,
`salt` varchar(5) DEFAULT NULL COMMENT '密码盐',
`mobile` varchar(20) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL COMMENT '邮箱',
`last_login_ip` varchar(20) DEFAULT NULL,
`last_login_time` bigint(20) DEFAULT NULL,
`last_login_address` varchar(50) DEFAULT NULL,
`error_count` int(11) DEFAULT '0' COMMENT '密码输入异常次数',
`memo` varchar(255) DEFAULT NULL COMMENT '备注',
`status` tinyint(4) DEFAULT '1' COMMENT '状态',
`created` int(11) DEFAULT NULL COMMENT '创建时间',
`skin` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_admin
-- ----------------------------
INSERT INTO `common_admin` VALUES ('1', '超级管理员', 'admin', 'c4e8120040<PASSWORD>db42167a<PASSWORD>4', 'QETS', '13883096587', '<EMAIL>', '127.0.0.1', '1475216025', '本机地址', '0', 'sssss', '1', null, 'green');
INSERT INTO `common_admin` VALUES ('2', 'test001', 'admin1', 'bf<PASSWORD>', 'Aa8a', '', '', '127.0.0.1', '1469003696', '本机地址', '0', '12345\r\nadddddddddddddddd', '1', '1469003696', null);
INSERT INTO `common_admin` VALUES ('3', '123', '13883096587', '3e9154953e649c794cbdac4e77be9568', 'sRto', '', '', '127.0.0.1', '1469003759', '本机地址', '0', '', '1', '1469003759', null);
INSERT INTO `common_admin` VALUES ('4', '123456', '15025409035', '95173257e3c10a411d384376254a039d', '97JZ', '15025409035', '', '127.0.0.1', '1469003824', '本机地址', '0', 'asdfasdfasdfas', '2', '1469003824', null);
-- ----------------------------
-- Table structure for common_admin_group
-- ----------------------------
DROP TABLE IF EXISTS `common_admin_group`;
CREATE TABLE `common_admin_group` (
`admin_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL,
PRIMARY KEY (`admin_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_admin_group
-- ----------------------------
INSERT INTO `common_admin_group` VALUES ('1', '1');
INSERT INTO `common_admin_group` VALUES ('2', '1');
INSERT INTO `common_admin_group` VALUES ('2', '2');
INSERT INTO `common_admin_group` VALUES ('4', '2');
INSERT INTO `common_admin_group` VALUES ('6', '1');
INSERT INTO `common_admin_group` VALUES ('6', '2');
-- ----------------------------
-- Table structure for common_groups
-- ----------------------------
DROP TABLE IF EXISTS `common_groups`;
CREATE TABLE `common_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`is_sys` tinyint(4) DEFAULT '0' COMMENT '是否系统组',
`type` int(11) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`intro` varchar(255) DEFAULT NULL COMMENT '描述',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_groups
-- ----------------------------
INSERT INTO `common_groups` VALUES ('1', '管理员', '1', null, null, '所有权限1');
INSERT INTO `common_groups` VALUES ('2', '普通用户', '0', null, null, '普通用户');
INSERT INTO `common_groups` VALUES ('3', '组长', '0', null, null, '组长');
INSERT INTO `common_groups` VALUES ('7', 'asdfasdf按时发多少地方', '0', null, null, 'asdfsadf是打发斯蒂芬');
-- ----------------------------
-- Table structure for common_group_action
-- ----------------------------
DROP TABLE IF EXISTS `common_group_action`;
CREATE TABLE `common_group_action` (
`group_id` int(11) NOT NULL,
`action_id` int(11) NOT NULL,
PRIMARY KEY (`group_id`,`action_id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_group_action
-- ----------------------------
INSERT INTO `common_group_action` VALUES ('1', '213');
INSERT INTO `common_group_action` VALUES ('1', '214');
INSERT INTO `common_group_action` VALUES ('1', '215');
INSERT INTO `common_group_action` VALUES ('1', '216');
INSERT INTO `common_group_action` VALUES ('1', '217');
INSERT INTO `common_group_action` VALUES ('1', '218');
INSERT INTO `common_group_action` VALUES ('1', '219');
INSERT INTO `common_group_action` VALUES ('1', '220');
INSERT INTO `common_group_action` VALUES ('1', '221');
INSERT INTO `common_group_action` VALUES ('1', '222');
INSERT INTO `common_group_action` VALUES ('1', '223');
INSERT INTO `common_group_action` VALUES ('1', '224');
INSERT INTO `common_group_action` VALUES ('1', '225');
INSERT INTO `common_group_action` VALUES ('1', '226');
INSERT INTO `common_group_action` VALUES ('1', '227');
INSERT INTO `common_group_action` VALUES ('1', '228');
INSERT INTO `common_group_action` VALUES ('1', '229');
INSERT INTO `common_group_action` VALUES ('1', '230');
INSERT INTO `common_group_action` VALUES ('1', '231');
INSERT INTO `common_group_action` VALUES ('1', '232');
INSERT INTO `common_group_action` VALUES ('1', '233');
INSERT INTO `common_group_action` VALUES ('1', '234');
INSERT INTO `common_group_action` VALUES ('1', '235');
INSERT INTO `common_group_action` VALUES ('1', '236');
INSERT INTO `common_group_action` VALUES ('1', '237');
INSERT INTO `common_group_action` VALUES ('1', '238');
INSERT INTO `common_group_action` VALUES ('1', '239');
INSERT INTO `common_group_action` VALUES ('1', '240');
INSERT INTO `common_group_action` VALUES ('1', '241');
INSERT INTO `common_group_action` VALUES ('1', '242');
INSERT INTO `common_group_action` VALUES ('1', '243');
INSERT INTO `common_group_action` VALUES ('1', '244');
INSERT INTO `common_group_action` VALUES ('1', '245');
INSERT INTO `common_group_action` VALUES ('1', '246');
INSERT INTO `common_group_action` VALUES ('1', '247');
INSERT INTO `common_group_action` VALUES ('1', '248');
INSERT INTO `common_group_action` VALUES ('2', '1');
INSERT INTO `common_group_action` VALUES ('2', '2');
INSERT INTO `common_group_action` VALUES ('2', '3');
INSERT INTO `common_group_action` VALUES ('3', '1');
INSERT INTO `common_group_action` VALUES ('3', '2');
INSERT INTO `common_group_action` VALUES ('3', '3');
INSERT INTO `common_group_action` VALUES ('7', '1');
INSERT INTO `common_group_action` VALUES ('7', '2');
INSERT INTO `common_group_action` VALUES ('7', '3');
INSERT INTO `common_group_action` VALUES ('7', '4');
INSERT INTO `common_group_action` VALUES ('7', '5');
INSERT INTO `common_group_action` VALUES ('7', '6');
INSERT INTO `common_group_action` VALUES ('7', '7');
INSERT INTO `common_group_action` VALUES ('7', '8');
INSERT INTO `common_group_action` VALUES ('7', '9');
INSERT INTO `common_group_action` VALUES ('7', '10');
INSERT INTO `common_group_action` VALUES ('7', '11');
INSERT INTO `common_group_action` VALUES ('7', '12');
INSERT INTO `common_group_action` VALUES ('7', '13');
INSERT INTO `common_group_action` VALUES ('7', '14');
-- ----------------------------
-- Table structure for common_login_record
-- ----------------------------
DROP TABLE IF EXISTS `common_login_record`;
CREATE TABLE `common_login_record` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`admin_id` int(11) NOT NULL,
`created` int(11) DEFAULT NULL,
`ip` varchar(20) DEFAULT NULL,
`ip_address` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_login_record
-- ----------------------------
INSERT INTO `common_login_record` VALUES ('59', '1', '1475197028', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('58', '1', '1475197018', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('17', '1', '1468225527', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('16', '1', '1468221515', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('15', '1', '1467252264', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('14', '6', '1467184370', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('13', '6', '1467184321', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('12', '1', '1467182608', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('60', '1', '1475197051', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('61', '1', '1475198280', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('62', '1', '1475200502', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('63', '1', '1475200621', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('64', '1', '1475200667', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('65', '1', '1475200743', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('66', '1', '1475201316', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('67', '1', '1475216025', '127.0.0.1', '本机地址');
INSERT INTO `common_login_record` VALUES ('42', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('43', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('44', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('45', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('46', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('47', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('48', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('49', '1', null, '127.0.0.1', '未知');
INSERT INTO `common_login_record` VALUES ('50', '1', null, '127.0.0.1', '未知');
-- ----------------------------
-- Table structure for common_menus
-- ----------------------------
DROP TABLE IF EXISTS `common_menus`;
CREATE TABLE `common_menus` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`icon` varchar(255) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`action` varchar(255) DEFAULT NULL,
`pid` int(11) DEFAULT '0' COMMENT '菜单父级',
`icon_class` varchar(255) DEFAULT NULL,
`weight` int(11) DEFAULT '99' COMMENT '权重(值越大排序越前)',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=gbk;
-- ----------------------------
-- Records of common_menus
-- ----------------------------
INSERT INTO `common_menus` VALUES ('7', '登录日志', '0', 'common.loginRecord/index', 'common.loginRecord/index', '2', '', '99');
INSERT INTO `common_menus` VALUES ('2', '日志管理', '0', '', '', '0', '日志', '98');
INSERT INTO `common_menus` VALUES ('1', '管理员管理', 'Hui-iconfont-root', '', '', '0', '管理', '99');
INSERT INTO `common_menus` VALUES ('3', '管理员列表', '0', 'common.admin/Index', 'common.admin/index', '1', '', '99');
INSERT INTO `common_menus` VALUES ('4', '用户组管理', '0', 'common.groups/Index', 'common.groups/index', '1', '', '99');
INSERT INTO `common_menus` VALUES ('5', '菜单管理', '0', 'common.menus/Index', 'common.menus/index', '1', '', '99');
INSERT INTO `common_menus` VALUES ('6', '权限列表', '0', 'common.actions/Index', 'common.actions/index', '1', '', '99');
INSERT INTO `common_menus` VALUES ('8', '操作日志', '0', 'common.operationLog/Index', 'common.operationLog/index', '2', '', '99');
-- ----------------------------
-- Table structure for common_operation_log
-- ----------------------------
DROP TABLE IF EXISTS `common_operation_log`;
CREATE TABLE `common_operation_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`created` int(11) DEFAULT NULL COMMENT '创建时间戳',
`admin_id` int(11) DEFAULT NULL COMMENT '操作员编号',
`table` varchar(50) DEFAULT NULL COMMENT '操作表名称',
`type` int(11) DEFAULT '1' COMMENT '1:添加:2:修改;3:删除',
`log` text COMMENT '日志详情',
`main_id` int(11) DEFAULT '0' COMMENT '主键编号',
`msg` varchar(50) DEFAULT NULL,
`ip` varchar(50) DEFAULT NULL,
`ip_address` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=gbk COMMENT='操作日志';
-- ----------------------------
-- Records of common_operation_log
-- ----------------------------
INSERT INTO `common_operation_log` VALUES ('48', '1475215595', '1', 'CommonMenus', '2', '{\"url\":[\"common.loginRecord\\/Index\",\"common.loginRecord\\/index\"]}', '7', '修改了名为【登录日志】的菜单信息', '127.0.0.1', '本机地址');
|
-- Host: localhost
-- Generation Time: Apr 12, 2010 at 08:06 PM
-- Server version: 5.1.37
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- --------------------------------------------------------
--
-- Table structure for table `cat_location`
--
CREATE TABLE IF NOT EXISTS `cat_location` (
`locate_id` bigint(20) NOT NULL AUTO_INCREMENT,
`active` varchar(2) DEFAULT NULL,
`description` varchar(255) NOT NULL,
`lat` float DEFAULT NULL,
`level` int(11) NOT NULL,
`lng` float DEFAULT NULL,
`loc_id_type` bigint(20) NOT NULL,
PRIMARY KEY (`locate_id`),
UNIQUE KEY `locate_id` (`locate_id`),
KEY `FK8C56C1FED9C8CC22` (`loc_id_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `cat_locations_user`
--
CREATE TABLE IF NOT EXISTS `cat_locations_user` (
`sec_id_secondary` bigint(20) NOT NULL,
`cat_location_id` bigint(20) NOT NULL,
PRIMARY KEY (`sec_id_secondary`,`cat_location_id`),
KEY `FK4C9FBF95C16FD298` (`sec_id_secondary`),
KEY `FK4C9FBF95BDA0EE65` (`cat_location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `cat_location_type`
--
CREATE TABLE IF NOT EXISTS `cat_location_type` (
`loc_id_type` bigint(20) NOT NULL AUTO_INCREMENT,
`description` varchar(255) DEFAULT NULL,
`level` int(11) DEFAULT NULL,
PRIMARY KEY (`loc_id_type`),
UNIQUE KEY `loc_id_type` (`loc_id_type`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `cat_state`
--
CREATE TABLE IF NOT EXISTS `cat_state` (
`id_state` bigint(20) NOT NULL AUTO_INCREMENT,
`desc_state` varchar(255) DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id_state`),
UNIQUE KEY `id_state` (`id_state`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `client`
--
CREATE TABLE IF NOT EXISTS `client` (
`client_id` bigint(20) NOT NULL AUTO_INCREMENT,
`description` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`facebook` varchar(255) DEFAULT NULL,
`fax` varchar(255) DEFAULT NULL,
`name` varchar(255) NOT NULL,
`telephone` varchar(255) DEFAULT NULL,
`twitter` varchar(255) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`project_id` bigint(20) DEFAULT NULL,
PRIMARY KEY (`client_id`),
UNIQUE KEY `client_id` (`client_id`),
KEY `FKAF12F3CB50D897D8` (`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `poll`
--
CREATE TABLE IF NOT EXISTS `poll` (
`poll_id` bigint(20) NOT NULL AUTO_INCREMENT,
`created_at` datetime NOT NULL,
`completed` bit(1) NOT NULL,
`poll_hash` varchar(255) NOT NULL,
`uid` bigint(20) NOT NULL,
`qid` bigint(20) NOT NULL,
PRIMARY KEY (`poll_id`),
UNIQUE KEY `poll_id` (`poll_id`),
KEY `FK3497BF74931F89` (`uid`),
KEY `FK3497BF103367D7` (`qid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `poll_result`
--
CREATE TABLE IF NOT EXISTS `poll_result` (
`poll_resultId` bigint(20) NOT NULL AUTO_INCREMENT,
`ip_address` varchar(255) NOT NULL,
`votation_date` datetime NOT NULL,
`q_answer_id` bigint(20) NOT NULL,
`poll_id` bigint(20) NOT NULL,
PRIMARY KEY (`poll_resultId`),
UNIQUE KEY `poll_resultId` (`poll_resultId`),
KEY `FKD981C89D7500CE58` (`q_answer_id`),
KEY `FKD981C89D4AC2255C` (`poll_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `project`
--
CREATE TABLE IF NOT EXISTS `project` (
`project_id` bigint(20) NOT NULL AUTO_INCREMENT,
`hide_project` bit(1) DEFAULT NULL,
`notify_members` bit(1) DEFAULT NULL,
`priority` varchar(255) DEFAULT NULL,
`date_finish` datetime DEFAULT NULL,
`date_start` datetime NOT NULL,
`description` varchar(255) NOT NULL,
`info` varchar(255) NOT NULL,
`lead_uid` bigint(20) DEFAULT NULL,
`cat_state_id` bigint(20) NOT NULL,
`users_uid` bigint(20) DEFAULT NULL,
PRIMARY KEY (`project_id`),
UNIQUE KEY `project_id` (`project_id`),
KEY `FKED904B19B3444B07` (`lead_uid`),
KEY `FKED904B19A965732F` (`cat_state_id`),
KEY `FKED904B1989DE98D2` (`users_uid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `project_locations`
--
CREATE TABLE IF NOT EXISTS `project_locations` (
`cat_id_loc` bigint(20) NOT NULL,
`cat_id_project` bigint(20) NOT NULL,
PRIMARY KEY (`cat_id_project`,`cat_id_loc`),
KEY `FK242951B8D3065BD5` (`cat_id_project`),
KEY `FK242951B86C2E620E` (`cat_id_loc`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `questions`
--
CREATE TABLE IF NOT EXISTS `questions` (
`qid` bigint(20) NOT NULL AUTO_INCREMENT,
`qid_key` varchar(255) DEFAULT NULL,
`question` varchar(255) DEFAULT NULL,
`shared_question` bit(1) DEFAULT NULL,
`id_state` bigint(20) DEFAULT NULL,
`id_question_pattern` bigint(20) DEFAULT NULL,
`uid` bigint(20) NOT NULL,
PRIMARY KEY (`qid`),
UNIQUE KEY `qid` (`qid`),
KEY `FK95C5414D74931F89` (`uid`),
KEY `FK95C5414D2DBDEDCA` (`id_state`),
KEY `FK95C5414D2A2E9A63` (`id_question_pattern`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `questions_answers`
--
CREATE TABLE IF NOT EXISTS `questions_answers` (
`q_answer_id` bigint(20) NOT NULL AUTO_INCREMENT,
`answer` varchar(255) DEFAULT NULL,
`answerType` int(11) DEFAULT NULL,
`answer_hash` varchar(255) DEFAULT NULL,
`id_question_answer` bigint(20) NOT NULL,
PRIMARY KEY (`q_answer_id`),
UNIQUE KEY `q_answer_id` (`q_answer_id`),
KEY `FK539703833DA1719E` (`id_question_answer`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
-- --------------------------------------------------------
--
-- Table structure for table `questions_pattern`
--
CREATE TABLE IF NOT EXISTS `questions_pattern` (
`pattenr_id` bigint(20) NOT NULL AUTO_INCREMENT,
`class` varchar(50) NOT NULL,
`des_qid` varchar(50) NOT NULL,
`finallity` longtext,
`label_qid` varchar(255) NOT NULL,
`level` int(11) DEFAULT NULL,
`template_patron` varchar(25) DEFAULT NULL,
`type_pattern` varchar(25) NOT NULL,
PRIMARY KEY (`pattenr_id`),
UNIQUE KEY `pattenr_id` (`pattenr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `question_collection`
--
CREATE TABLE IF NOT EXISTS `question_collection` (
`id_q_colection` bigint(20) NOT NULL AUTO_INCREMENT,
`creation_date` datetime NOT NULL,
`des_coleccion` varchar(255) NOT NULL,
`uid` bigint(20) NOT NULL,
PRIMARY KEY (`id_q_colection`),
UNIQUE KEY `id_q_colection` (`id_q_colection`),
KEY `FKB4097C9774931F89` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `question_relations`
--
CREATE TABLE IF NOT EXISTS `question_relations` (
`question_id` bigint(20) NOT NULL,
`id_q_colection` bigint(20) NOT NULL,
PRIMARY KEY (`question_id`,`id_q_colection`),
KEY `FK217954DE15ECCA7B` (`id_q_colection`),
KEY `FK217954DE49AB969F` (`question_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `sec_groups`
--
CREATE TABLE IF NOT EXISTS `sec_groups` (
`group_id` bigint(20) NOT NULL AUTO_INCREMENT,
`des_info` varchar(255) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`id_state` bigint(20) NOT NULL,
PRIMARY KEY (`group_id`),
UNIQUE KEY `group_id` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `sec_group_permission`
--
CREATE TABLE IF NOT EXISTS `sec_group_permission` (
`sec_id_permission` bigint(20) NOT NULL,
`sec_id_group` bigint(20) NOT NULL,
PRIMARY KEY (`sec_id_group`,`sec_id_permission`),
KEY `FK5B8E21BDA3C8594C` (`sec_id_group`),
KEY `FK5B8E21BD7DBA1B43` (`sec_id_permission`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `sec_permission`
--
CREATE TABLE IF NOT EXISTS `sec_permission` (
`id_permission` bigint(20) NOT NULL AUTO_INCREMENT,
`permission` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id_permission`),
UNIQUE KEY `id_permission` (`id_permission`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `sec_project_group`
--
CREATE TABLE IF NOT EXISTS `sec_project_group` (
`sec_id_group` bigint(20) NOT NULL,
`cat_id_project` bigint(20) NOT NULL,
PRIMARY KEY (`cat_id_project`,`sec_id_group`),
KEY `FK93685A6BA3C8594C` (`sec_id_group`),
KEY `FK93685A6BD3065BD5` (`cat_id_project`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `sec_user`
--
CREATE TABLE IF NOT EXISTS `sec_user` (
`uid` bigint(20) NOT NULL AUTO_INCREMENT,
`twitter_consumer_key` varchar(255) DEFAULT NULL,
`twitter_consumer_secret` varchar(255) DEFAULT NULL,
`twitter_account` varchar(18) DEFAULT NULL,
`twitter_password` varchar(18) DEFAULT NULL,
`twitter_pin` int(11) DEFAULT NULL,
PRIMARY KEY (`uid`),
UNIQUE KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `sec_user_group`
--
CREATE TABLE IF NOT EXISTS `sec_user_group` (
`sec_id_secondary` bigint(20) NOT NULL,
`sec_id_group` bigint(20) NOT NULL,
PRIMARY KEY (`sec_id_group`,`sec_id_secondary`),
KEY `FK3D8D6DB9A3C8594C` (`sec_id_group`),
KEY `FK3D8D6DB9C16FD298` (`sec_id_secondary`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `sec_user_permission`
--
CREATE TABLE IF NOT EXISTS `sec_user_permission` (
`sec_id_secondary` bigint(20) NOT NULL,
`sec_id_permission` bigint(20) NOT NULL,
PRIMARY KEY (`sec_id_permission`,`sec_id_secondary`),
KEY `FK8A4C2D57DBA1B43` (`sec_id_permission`),
KEY `FK8A4C2D5C16FD298` (`sec_id_secondary`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `sec_user_project`
--
CREATE TABLE IF NOT EXISTS `sec_user_project` (
`sec_id_secondary` bigint(20) NOT NULL,
`cat_id_project` bigint(20) NOT NULL,
PRIMARY KEY (`cat_id_project`,`sec_id_secondary`),
KEY `FKEBFBDBD3D3065BD5` (`cat_id_project`),
KEY `FKEBFBDBD3C16FD298` (`sec_id_secondary`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `sec_user_secondary`
--
CREATE TABLE IF NOT EXISTS `sec_user_secondary` (
`uid` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`date_new` datetime DEFAULT NULL,
`invite_code` varchar(255) DEFAULT NULL,
`owner` bit(1) DEFAULT NULL,
`password` varchar(255) NOT NULL,
`publisher` bit(1) DEFAULT NULL,
`email` varchar(100) NOT NULL,
`status` bit(1) DEFAULT NULL,
`twitter` varchar(2) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`secUser_uid` bigint(20) DEFAULT NULL,
PRIMARY KEY (`uid`),
UNIQUE KEY `uid` (`uid`),
UNIQUE KEY `email` (`email`),
KEY `FKE10EBBAEFEE13866` (`secUser_uid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `surveys`
--
CREATE TABLE IF NOT EXISTS `surveys` (
`sid` bigint(20) NOT NULL AUTO_INCREMENT,
`complete` varchar(2) DEFAULT NULL,
`date_interview` date DEFAULT NULL,
`end_date` datetime NOT NULL,
`start_date` datetime NOT NULL,
`ticket` int(11) NOT NULL,
`uid` bigint(20) NOT NULL,
`id_sid_format` bigint(20) NOT NULL,
PRIMARY KEY (`sid`),
UNIQUE KEY `sid` (`sid`),
KEY `FK9191445974931F89` (`uid`),
KEY `FK919144593A63AC1F` (`id_sid_format`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `survey_format`
--
CREATE TABLE IF NOT EXISTS `survey_format` (
`id_sid_format` bigint(20) NOT NULL AUTO_INCREMENT,
`date_created` datetime DEFAULT NULL,
`name` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id_sid_format`),
UNIQUE KEY `id_sid_format` (`id_sid_format`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `survey_group`
--
CREATE TABLE IF NOT EXISTS `survey_group` (
`sg_id` bigint(20) NOT NULL AUTO_INCREMENT,
`date_create` datetime DEFAULT NULL,
`group_name` varchar(60) DEFAULT NULL,
`cat_state_id_survey_group` bigint(20) NOT NULL,
PRIMARY KEY (`sg_id`),
UNIQUE KEY `sg_id` (`sg_id`),
KEY `FK4638955A697F0404` (`cat_state_id_survey_group`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `survey_group_format`
--
CREATE TABLE IF NOT EXISTS `survey_group_format` (
`sg_id` bigint(20) NOT NULL,
`id_sid_format` bigint(20) NOT NULL,
PRIMARY KEY (`id_sid_format`,`sg_id`),
KEY `FKB4DF867CB998D3E9` (`sg_id`),
KEY `FKB4DF867C3A63AC1F` (`id_sid_format`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `survey_group_project`
--
CREATE TABLE IF NOT EXISTS `survey_group_project` (
`id_sid_format` bigint(20) NOT NULL,
`cat_id_project` bigint(20) NOT NULL,
PRIMARY KEY (`cat_id_project`,`id_sid_format`),
KEY `FKFD028D34D3065BD5` (`cat_id_project`),
KEY `FKFD028D343FE96F2F` (`id_sid_format`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `survey_result`
--
CREATE TABLE IF NOT EXISTS `survey_result` (
`rid` bigint(20) NOT NULL AUTO_INCREMENT,
`resp` varchar(255) NOT NULL,
`survey_id` bigint(20) NOT NULL,
PRIMARY KEY (`rid`),
UNIQUE KEY `rid` (`rid`),
KEY `FK92EA04A2DC964137` (`survey_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `survey_section`
--
CREATE TABLE IF NOT EXISTS `survey_section` (
`ssid` bigint(20) NOT NULL AUTO_INCREMENT,
`desc_section` varchar(255) DEFAULT NULL,
`id_state` bigint(20) NOT NULL,
PRIMARY KEY (`ssid`),
UNIQUE KEY `ssid` (`ssid`),
KEY `FKFE5AD3002DBDEDCA` (`id_state`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `tweetPoll`
--
CREATE TABLE IF NOT EXISTS `tweetPoll` (
`tweet_poll_id` bigint(20) NOT NULL AUTO_INCREMENT,
`allow_live_results` bit(1) DEFAULT NULL,
`close_notification` bit(1) DEFAULT NULL,
`completed` bit(1) NOT NULL,
`publication_date_tweet` datetime DEFAULT NULL,
`publish` bit(1) DEFAULT NULL,
`result_notification` bit(1) DEFAULT NULL,
`schedule_date_tweet` datetime NOT NULL,
`schedule` bit(1) DEFAULT NULL,
`tweet_id` bigint(20) DEFAULT NULL,
`qid` bigint(20) NOT NULL,
`uid` bigint(20) NOT NULL,
PRIMARY KEY (`tweet_poll_id`),
UNIQUE KEY `tweet_poll_id` (`tweet_poll_id`),
UNIQUE KEY `tweet_id` (`tweet_id`),
KEY `FKA65B1D074931F89` (`uid`),
KEY `FKA65B1D0103367D7` (`qid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `tweetpoll_result`
--
CREATE TABLE IF NOT EXISTS `tweetpoll_result` (
`tweetpoll_resultId` bigint(20) NOT NULL AUTO_INCREMENT,
`ip_vote` varchar(18) DEFAULT NULL,
`tweet_date_response` datetime NOT NULL,
`tweetpoll_switch_id` bigint(20) NOT NULL,
PRIMARY KEY (`tweetpoll_resultId`),
UNIQUE KEY `tweetpoll_resultId` (`tweetpoll_resultId`),
KEY `FK8749C18C81599E19` (`tweetpoll_switch_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=225 ;
-- --------------------------------------------------------
--
-- Table structure for table `tweetpoll_switch`
--
CREATE TABLE IF NOT EXISTS `tweetpoll_switch` (
`tweetpoll_switch_id` bigint(20) NOT NULL AUTO_INCREMENT,
`tweet_code` varchar(255) NOT NULL,
`q_answer_id` bigint(20) NOT NULL,
`tweet_poll_id` bigint(20) NOT NULL,
PRIMARY KEY (`tweetpoll_switch_id`),
UNIQUE KEY `tweetpoll_switch_id` (`tweetpoll_switch_id`),
UNIQUE KEY `tweet_code` (`tweet_code`),
KEY `FK89F7B0A3EED35CDB` (`tweet_poll_id`),
KEY `FK89F7B0A37500CE58` (`q_answer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `cat_location`
--
ALTER TABLE `cat_location`
ADD CONSTRAINT `FK8C56C1FED9C8CC22` FOREIGN KEY (`loc_id_type`) REFERENCES `cat_location_type` (`loc_id_type`);
--
-- Constraints for table `cat_locations_user`
--
ALTER TABLE `cat_locations_user`
ADD CONSTRAINT `FK4C9FBF95BDA0EE65` FOREIGN KEY (`cat_location_id`) REFERENCES `cat_location` (`locate_id`),
ADD CONSTRAINT `FK4C9FBF95C16FD298` FOREIGN KEY (`sec_id_secondary`) REFERENCES `sec_user_secondary` (`uid`);
--
-- Constraints for table `client`
--
ALTER TABLE `client`
ADD CONSTRAINT `FKAF12F3CB50D897D8` FOREIGN KEY (`project_id`) REFERENCES `project` (`project_id`);
--
-- Constraints for table `poll`
--
ALTER TABLE `poll`
ADD CONSTRAINT `FK3497BF103367D7` FOREIGN KEY (`qid`) REFERENCES `questions` (`qid`),
ADD CONSTRAINT `FK3497BF74931F89` FOREIGN KEY (`uid`) REFERENCES `sec_user` (`uid`);
--
-- Constraints for table `poll_result`
--
ALTER TABLE `poll_result`
ADD CONSTRAINT `FKD981C89D4AC2255C` FOREIGN KEY (`poll_id`) REFERENCES `poll` (`poll_id`),
ADD CONSTRAINT `FKD981C89D7500CE58` FOREIGN KEY (`q_answer_id`) REFERENCES `questions_answers` (`q_answer_id`);
--
-- Constraints for table `project`
--
ALTER TABLE `project`
ADD CONSTRAINT `FKED904B1989DE98D2` FOREIGN KEY (`users_uid`) REFERENCES `sec_user` (`uid`),
ADD CONSTRAINT `FKED904B19A965732F` FOREIGN KEY (`cat_state_id`) REFERENCES `cat_state` (`id_state`),
ADD CONSTRAINT `FKED904B19B3444B07` FOREIGN KEY (`lead_uid`) REFERENCES `sec_user_secondary` (`uid`);
--
-- Constraints for table `project_locations`
--
ALTER TABLE `project_locations`
ADD CONSTRAINT `FK242951B86C2E620E` FOREIGN KEY (`cat_id_loc`) REFERENCES `cat_location` (`locate_id`),
ADD CONSTRAINT `FK242951B8D3065BD5` FOREIGN KEY (`cat_id_project`) REFERENCES `project` (`project_id`);
--
-- Constraints for table `questions`
--
ALTER TABLE `questions`
ADD CONSTRAINT `FK95C5414D2A2E9A63` FOREIGN KEY (`id_question_pattern`) REFERENCES `questions_pattern` (`pattenr_id`),
ADD CONSTRAINT `FK95C5414D2DBDEDCA` FOREIGN KEY (`id_state`) REFERENCES `cat_state` (`id_state`),
ADD CONSTRAINT `FK95C5414D74931F89` FOREIGN KEY (`uid`) REFERENCES `sec_user` (`uid`);
--
-- Constraints for table `questions_answers`
--
ALTER TABLE `questions_answers`
ADD CONSTRAINT `FK539703833DA1719E` FOREIGN KEY (`id_question_answer`) REFERENCES `questions` (`qid`);
--
-- Constraints for table `question_collection`
--
ALTER TABLE `question_collection`
ADD CONSTRAINT `FKB4097C9774931F89` FOREIGN KEY (`uid`) REFERENCES `sec_user` (`uid`);
--
-- Constraints for table `question_relations`
--
ALTER TABLE `question_relations`
ADD CONSTRAINT `FK217954DE15ECCA7B` FOREIGN KEY (`id_q_colection`) REFERENCES `question_collection` (`id_q_colection`),
ADD CONSTRAINT `FK217954DE49AB969F` FOREIGN KEY (`question_id`) REFERENCES `questions` (`qid`);
--
-- Constraints for table `sec_group_permission`
--
ALTER TABLE `sec_group_permission`
ADD CONSTRAINT `FK5B8E21BD7DBA1B43` FOREIGN KEY (`sec_id_permission`) REFERENCES `sec_permission` (`id_permission`),
ADD CONSTRAINT `FK5B8E21BDA3C8594C` FOREIGN KEY (`sec_id_group`) REFERENCES `sec_groups` (`group_id`);
--
-- Constraints for table `sec_project_group`
--
ALTER TABLE `sec_project_group`
ADD CONSTRAINT `FK93685A6BA3C8594C` FOREIGN KEY (`sec_id_group`) REFERENCES `sec_groups` (`group_id`),
ADD CONSTRAINT `FK93685A6BD3065BD5` FOREIGN KEY (`cat_id_project`) REFERENCES `project` (`project_id`);
--
-- Constraints for table `sec_user_group`
--
ALTER TABLE `sec_user_group`
ADD CONSTRAINT `FK3D8D6DB9A3C8594C` FOREIGN KEY (`sec_id_group`) REFERENCES `sec_groups` (`group_id`),
ADD CONSTRAINT `FK3D8D6DB9C16FD298` FOREIGN KEY (`sec_id_secondary`) REFERENCES `sec_user_secondary` (`uid`);
--
-- Constraints for table `sec_user_permission`
--
ALTER TABLE `sec_user_permission`
ADD CONSTRAINT `FK8A4C2D57DBA1B43` FOREIGN KEY (`sec_id_permission`) REFERENCES `sec_permission` (`id_permission`),
ADD CONSTRAINT `FK8A4C2D5C16FD298` FOREIGN KEY (`sec_id_secondary`) REFERENCES `sec_user_secondary` (`uid`);
--
-- Constraints for table `sec_user_project`
--
ALTER TABLE `sec_user_project`
ADD CONSTRAINT `FKEBFBDBD3C16FD298` FOREIGN KEY (`sec_id_secondary`) REFERENCES `sec_user_secondary` (`uid`),
ADD CONSTRAINT `FKEBFBDBD3D3065BD5` FOREIGN KEY (`cat_id_project`) REFERENCES `project` (`project_id`);
--
-- Constraints for table `sec_user_secondary`
--
ALTER TABLE `sec_user_secondary`
ADD CONSTRAINT `FKE10EBBAEFEE13866` FOREIGN KEY (`secUser_uid`) REFERENCES `sec_user` (`uid`);
--
-- Constraints for table `surveys`
--
ALTER TABLE `surveys`
ADD CONSTRAINT `FK919144593A63AC1F` FOREIGN KEY (`id_sid_format`) REFERENCES `survey_format` (`id_sid_format`),
ADD CONSTRAINT `FK9191445974931F89` FOREIGN KEY (`uid`) REFERENCES `sec_user` (`uid`);
--
-- Constraints for table `survey_group`
--
ALTER TABLE `survey_group`
ADD CONSTRAINT `FK4638955A697F0404` FOREIGN KEY (`cat_state_id_survey_group`) REFERENCES `cat_state` (`id_state`);
--
-- Constraints for table `survey_group_format`
--
ALTER TABLE `survey_group_format`
ADD CONSTRAINT `FKB4DF867C3A63AC1F` FOREIGN KEY (`id_sid_format`) REFERENCES `survey_format` (`id_sid_format`),
ADD CONSTRAINT `FKB4DF867CB998D3E9` FOREIGN KEY (`sg_id`) REFERENCES `survey_group` (`sg_id`);
--
-- Constraints for table `survey_group_project`
--
ALTER TABLE `survey_group_project`
ADD CONSTRAINT `FKFD028D343FE96F2F` FOREIGN KEY (`id_sid_format`) REFERENCES `survey_group` (`sg_id`),
ADD CONSTRAINT `FKFD028D34D3065BD5` FOREIGN KEY (`cat_id_project`) REFERENCES `project` (`project_id`);
--
-- Constraints for table `survey_result`
--
ALTER TABLE `survey_result`
ADD CONSTRAINT `FK92EA04A2DC964137` FOREIGN KEY (`survey_id`) REFERENCES `surveys` (`sid`);
--
-- Constraints for table `survey_section`
--
ALTER TABLE `survey_section`
ADD CONSTRAINT `FKFE5AD3002DBDEDCA` FOREIGN KEY (`id_state`) REFERENCES `cat_state` (`id_state`);
--
-- Constraints for table `tweetPoll`
--
ALTER TABLE `tweetPoll`
ADD CONSTRAINT `FKA65B1D0103367D7` FOREIGN KEY (`qid`) REFERENCES `questions` (`qid`),
ADD CONSTRAINT `FKA65B1D074931F89` FOREIGN KEY (`uid`) REFERENCES `sec_user` (`uid`);
--
-- Constraints for table `tweetpoll_result`
--
ALTER TABLE `tweetpoll_result`
ADD CONSTRAINT `FK8749C18C81599E19` FOREIGN KEY (`tweetpoll_switch_id`) REFERENCES `tweetpoll_switch` (`tweetpoll_switch_id`);
--
-- Constraints for table `tweetpoll_switch`
--
ALTER TABLE `tweetpoll_switch`
ADD CONSTRAINT `FK89F7B0A37500CE58` FOREIGN KEY (`q_answer_id`) REFERENCES `questions_answers` (`q_answer_id`),
ADD CONSTRAINT `FK89F7B0A3EED35CDB` FOREIGN KEY (`tweet_poll_id`) REFERENCES `tweetPoll` (`tweet_poll_id`);
|
<reponame>DaMSL/K3<gh_stars>10-100
(TABLE pg_result EXCEPT TABLE k3_result) UNION ALL (TABLE k3_result EXCEPT TABLE pg_result);
|
UPDATE users SET feature_level = 'released' WHERE feature_level = 'nopreproduction'; |
DROP TABLE IF EXISTS tests; |
CREATE OR REPLACE VIEW olympiad_sterility_session_property_vw AS
SELECT spv.session_id
,MAX(IF(strcmp(spv.type,'effector'),NULL,spv.value)) AS effector
,MAX(IF(strcmp(spv.type,'genotype'),NULL,spv.value)) AS genotype
,MAX(IF(strcmp(spv.type,'rearing'),NULL,spv.value)) AS rearing
,MAX(IF(strcmp(spv.type,'gender'),NULL,spv.value)) AS gender
FROM session_property_vw spv
JOIN olympiad_sterility_session_vw sv ON (spv.session_id = sv.session_id)
GROUP BY 1
;
|
<reponame>ahrasis/ISPConfig3<gh_stars>1-10
ALTER TABLE `web_domain` ADD COLUMN `ssl_letsencrypt_exclude` enum('n','y') NOT NULL DEFAULT 'n' AFTER `ssl_letsencrypt`;
ALTER TABLE `remote_user` ADD `remote_access` ENUM('y','n') NOT NULL DEFAULT 'y' AFTER `remote_password`;
ALTER TABLE `remote_user` ADD `remote_ips` TEXT AFTER `remote_access`;
ALTER TABLE `server_php` ADD `active` enum('y','n') NOT NULL DEFAULT 'y' AFTER `php_fpm_pool_dir`;
ALTER TABLE `web_domain` CHANGE `log_retention` `log_retention` INT(11) NOT NULL DEFAULT '10';
|
<gh_stars>1-10
create table t(i int,j int,primary key(i,j));
create index i_mod_j_2 on t(mod(j,2));
select /*+ recompile*/ * from t where i=0 and mod(j,2)=1 using index i_mod_j_2;
select /*+ recompile*/ * from t where i=0 and mod(j,2)=1 using index i_mod_j_2(+);
alter table t partition by hash(j) partitions 3;
insert into t values(1,11),(0,3);
select /*+ recompile*/ * from t where i=0 and mod(j,2)=1 using index i_mod_j_2;
select /*+ recompile*/ * from t where i=0 and mod(j,2)=1 using index i_mod_j_2(+);
drop t;
|
<gh_stars>0
-- *** one-off per database ***
-- needed to delay foreign-key constraint validation - until after transaction
-- get list of foreign keys
-- SELECT conname,tb.relname,pg_get_constraintdef(c.oid,true) FROM pg_constraint c
-- JOIN pg_class tb ON tb.oid = c.conrelid
-- JOIN pg_namespace ns ON ns.oid = tb.relnamespace
-- WHERE ns.nspname IN ('public') AND contype='f'
-- ORDER BY relname;
-- actual foreign key ids may be different
-- fk_rails_37572502ce | ppatients | FOREIGN KEY (e_batch_id) REFERENCES e_batch(e_batchid)
-- fk_rails_973312a1aa | ppatients | FOREIGN KEY (ppatient_rawdata_id) REFERENCES ppatient_rawdata(ppatient_rawdataid)
-- fk_rails_3dd8aff4eb | prescription_data | FOREIGN KEY (ppatient_id) REFERENCES ppatients(id) ON DELETE CASCADE
ALTER TABLE ppatients DROP CONSTRAINT fk_rails_973312a1aa;
ALTER TABLE ppatients ADD CONSTRAINT fk_rails_973312a1aa
FOREIGN KEY (ppatient_rawdata_id) REFERENCES ppatient_rawdata(ppatient_rawdataid)
DEFERRABLE INITIALLY DEFERRED;
ALTER TABLE ppatients DROP CONSTRAINT fk_rails_37572502ce;
ALTER TABLE ppatients ADD CONSTRAINT fk_rails_37572502ce
FOREIGN KEY (e_batch_id) REFERENCES e_batch(e_batchid)
DEFERRABLE INITIALLY DEFERRED;
ALTER TABLE prescription_data DROP CONSTRAINT fk_rails_3dd8aff4eb;
ALTER TABLE prescription_data ADD CONSTRAINT fk_rails_3dd8aff4eb
FOREIGN KEY (ppatient_id) REFERENCES ppatients(id) ON DELETE CASCADE
DEFERRABLE INITIALLY DEFERRED;
|
<filename>sql_files/archive/playgroundmay1.sql
-- MySQL dump 10.13 Distrib 5.7.21, for Linux (x86_64)
--
-- Host: localhost Database: playgroundapr8
-- ------------------------------------------------------
-- Server version 5.7.21-0ubuntu0.16.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `Friendships`
--
DROP TABLE IF EXISTS `Friendships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Friendships` (
`user_id_a` int(11) DEFAULT NULL,
`user_id_b` int(11) DEFAULT NULL,
`status` bit(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Friendships`
--
LOCK TABLES `Friendships` WRITE;
/*!40000 ALTER TABLE `Friendships` DISABLE KEYS */;
INSERT INTO `Friendships` VALUES (3,2,''),(4,2,'\0'),(5,2,'\0'),(6,2,'\0'),(7,2,''),(8,2,''),(9,2,''),(1,4,''),(4,8,'\0'),(1,7,'\0'),(1,6,''),(3,5,''),(1,3,''),(1,1,'\0'),(3,9,'\0'),(3,8,'\0'),(4,7,'');
/*!40000 ALTER TABLE `Friendships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Posts`
--
DROP TABLE IF EXISTS `Posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Posts` (
`post_id` int(11) NOT NULL AUTO_INCREMENT,
`user_a` int(11) DEFAULT NULL,
`user_b` int(11) DEFAULT NULL,
`username_a` varchar(30) DEFAULT NULL,
`username_b` varchar(30) DEFAULT NULL,
`timestamp` datetime DEFAULT NULL,
`content` text,
PRIMARY KEY (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Posts`
--
LOCK TABLES `Posts` WRITE;
/*!40000 ALTER TABLE `Posts` DISABLE KEYS */;
INSERT INTO `Posts` VALUES (1,3,1,'scheng829','cwei3','2018-04-30 16:26:00','once upon a time'),(2,4,1,'enigmamemory','cwei3','2018-04-30 16:26:00','there was a person'),(3,7,1,'sabooap','cwei3','2018-04-30 16:26:00','who wanted to eat '),(5,4,1,'enigmamemory','cwei3','2018-04-30 16:26:00','and his name was........ exdee'),(6,3,2,'scheng829','jtangqt','2018-04-30 18:29:44','once upon a time'),(7,2,2,'jtangqt','jtangqt','2018-04-30 18:29:44','there was a person'),(8,7,2,'sabooap','jtangqt','2018-04-30 18:29:44','who wanted to eat '),(9,6,2,'tritus','jtangqt','2018-04-30 18:29:44','cup noooooodles all the time'),(10,5,2,'squishybluewristbutt','jtangqt','2018-04-30 18:29:44','and his name was........ exdee'),(11,4,4,'enigmamemory','enigmamemory','2018-04-30 18:29:44','and his name was........ exdee'),(12,1,4,'cwei3','enigmamemory','2018-04-30 18:29:44','and his name was........ exdee'),(13,1,2,'cwei3','jtangqt','2018-04-30 18:29:44','and his name was........ exdee'),(14,19,13,'solarien','jtangqt','2018-04-30 18:29:44','YA LIKE JAZZ?'),(15,8,2,'solarien','jtangqt','2018-04-30 18:29:44','i know you do'),(16,7,4,'sabooap','enigmamemory','2018-04-30 21:38:25','i know you do'),(17,7,4,'sabooap','enigmamemory','2018-04-30 21:38:25','HEH');
/*!40000 ALTER TABLE `Posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `User`
--
DROP TABLE IF EXISTS `User`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `User` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(20) DEFAULT NULL,
`last_name` varchar(30) DEFAULT NULL,
`username` varchar(30) DEFAULT NULL,
`password` varchar(30) DEFAULT NULL,
`pro_pic` varchar(30) DEFAULT NULL,
`about` varchar(150) DEFAULT NULL,
`occupation` varchar(100) DEFAULT NULL,
`bday` date DEFAULT NULL,
`email` varchar(30) DEFAULT NULL,
`signup_date` datetime DEFAULT NULL,
`active` bit(1) DEFAULT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `User`
--
LOCK TABLES `User` WRITE;
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
INSERT INTO `User` VALUES (1,'Cardy','Wei','cwei3','cardywei','','5V ground','UNDERWATER DOLPHIN CHARMER','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(2,'Jasmine','Tang','jtangqt','jasminetang','','Friends dont harrass other friends.','supermodel','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(3,'sam','cheng','scheng829','samcheng','','Watch my dance moves','professional dancer','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(4,'alex','hu','enigmamemory','alexhu','','AHH NLP','cooper union student','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(5,'casey','he','squishybluewristbutt','caseyhe','','ROCK CLIMBING','ALIVE','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(6,'joey','benghaasllkfdldaflaf','tritus','joey','','@everyone, league???','miner in data','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(7,'jeremiah','pratt','sabooap','jeremiahpratt','','Again, our sincere apologies to the families who went home disappointed.','politician','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(8,'dan','park','solarien','danpark','','Join the army with me!','General of the ONE Korean Army','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(9,'dongkyu','kim','dongkyu0419','dongkyukim','','TRIVIAL','Professor Kirtman :POGGERS:','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(10,'minyoung','na','BSEintruder','minyoungna','','REEEEEEEEEEEEE','i want to be a puppy','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(11,'brian','hong','th0m4s','brianhong','','66k+ groups','thomas','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(12,'paul','kang','cheeseheadpk','paulkang','','I own a burger joint','Construction Worker/Bob the Builder','2016-05-09','<EMAIL>','2018-05-01 01:17:28',''),(13,'chris','watkins','WATGOIN','chriswatkins','','I am a front end developer','full stack developer','2016-05-09','<EMAIL>','2018-05-01 01:17:28','');
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-05-01 1:22:26
|
<filename>application/views/backup/backup_2016-06-06_08_39_34.sql<gh_stars>0
DROP TABLE IF EXISTS artikel;
CREATE TABLE `artikel` (
`id_artikel` int(10) NOT NULL AUTO_INCREMENT,
`judul` varchar(255) COLLATE latin1_general_ci NOT NULL,
`judul_seo` varchar(100) COLLATE latin1_general_ci NOT NULL,
`isi` text COLLATE latin1_general_ci NOT NULL,
`gambar` varchar(255) COLLATE latin1_general_ci NOT NULL,
`hari` varchar(20) COLLATE latin1_general_ci NOT NULL,
`tanggal` date NOT NULL,
`jam` time NOT NULL,
`id_user` int(5) NOT NULL,
`kategori` int(5) NOT NULL,
`tag` varchar(100) COLLATE latin1_general_ci NOT NULL,
`hits` int(10) NOT NULL,
PRIMARY KEY (`id_artikel`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO artikel (`id_artikel`,`judul`,`judul_seo`,`isi`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`kategori`,`tag`,`hits`) VALUES (20);
INSERT INTO artikel (`id_artikel`,`judul`,`judul_seo`,`isi`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`kategori`,`tag`,`hits`) VALUES (32);
INSERT INTO artikel (`id_artikel`,`judul`,`judul_seo`,`isi`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`kategori`,`tag`,`hits`) VALUES (136);
INSERT INTO artikel (`id_artikel`,`judul`,`judul_seo`,`isi`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`kategori`,`tag`,`hits`) VALUES (1);
INSERT INTO artikel (`id_artikel`,`judul`,`judul_seo`,`isi`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`kategori`,`tag`,`hits`) VALUES (88);
INSERT INTO artikel (`id_artikel`,`judul`,`judul_seo`,`isi`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`kategori`,`tag`,`hits`) VALUES (0);
DROP TABLE IF EXISTS halaman;
CREATE TABLE `halaman` (
`id_halaman` int(10) NOT NULL AUTO_INCREMENT,
`judul` varchar(255) COLLATE latin1_general_ci NOT NULL,
`judul_seo` varchar(100) COLLATE latin1_general_ci NOT NULL,
`isi` text COLLATE latin1_general_ci NOT NULL,
`id_modul` int(5) NOT NULL,
`gambar` varchar(255) COLLATE latin1_general_ci NOT NULL,
`hari` varchar(20) COLLATE latin1_general_ci NOT NULL,
`tanggal` date NOT NULL,
`jam` time NOT NULL,
`id_user` int(5) NOT NULL,
`hits` int(10) NOT NULL,
PRIMARY KEY (`id_halaman`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO halaman (`id_halaman`,`judul`,`judul_seo`,`isi`,`id_modul`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`hits`) VALUES (0);
INSERT INTO halaman (`id_halaman`,`judul`,`judul_seo`,`isi`,`id_modul`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`hits`) VALUES (0);
INSERT INTO halaman (`id_halaman`,`judul`,`judul_seo`,`isi`,`id_modul`,`gambar`,`hari`,`tanggal`,`jam`,`id_user`,`hits`) VALUES (0);
DROP TABLE IF EXISTS kategori;
CREATE TABLE `kategori` (
`id_kategori` int(5) NOT NULL AUTO_INCREMENT,
`kategori` varchar(50) COLLATE latin1_general_ci NOT NULL,
`kategori_seo` varchar(100) COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_kategori`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (movie);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (entertainment);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (how-to);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (health);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (science);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (technology);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (relationship);
INSERT INTO kategori (`id_kategori`,`kategori`,`kategori_seo`) VALUES (business);
DROP TABLE IF EXISTS komentar;
CREATE TABLE `komentar` (
`id_komentar` int(10) NOT NULL AUTO_INCREMENT,
`nama` varchar(50) COLLATE latin1_general_ci NOT NULL,
`email` varchar(50) COLLATE latin1_general_ci NOT NULL,
`komentar` text COLLATE latin1_general_ci NOT NULL,
`tanggal` date NOT NULL,
`id_artikel` int(10) NOT NULL,
PRIMARY KEY (`id_komentar`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (12);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (5);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (5);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (6);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (6);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (7);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (7);
INSERT INTO komentar (`id_komentar`,`nama`,`email`,`komentar`,`tanggal`,`id_artikel`) VALUES (11);
DROP TABLE IF EXISTS layout;
CREATE TABLE `layout` (
`id_layout` int(5) NOT NULL AUTO_INCREMENT,
`judul` varchar(50) COLLATE latin1_general_ci NOT NULL,
`tipe` varchar(10) COLLATE latin1_general_ci NOT NULL,
`layout` int(2) NOT NULL,
`kategori_1` int(5) NOT NULL,
`kategori_2` int(5) NOT NULL,
`halaman` int(5) NOT NULL,
`batas` int(5) NOT NULL,
`urut` int(2) NOT NULL,
`aktif` enum('Y','N') COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_layout`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO layout (`id_layout`,`judul`,`tipe`,`layout`,`kategori_1`,`kategori_2`,`halaman`,`batas`,`urut`,`aktif`) VALUES (Y);
INSERT INTO layout (`id_layout`,`judul`,`tipe`,`layout`,`kategori_1`,`kategori_2`,`halaman`,`batas`,`urut`,`aktif`) VALUES (Y);
DROP TABLE IF EXISTS md_social;
CREATE TABLE `md_social` (
`id_social` int(10) NOT NULL AUTO_INCREMENT,
`judul` varchar(50) COLLATE latin1_general_ci NOT NULL,
`website` varchar(100) COLLATE latin1_general_ci NOT NULL,
`link` text COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_social`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO md_social (`id_social`,`judul`,`website`,`link`) VALUES ();
INSERT INTO md_social (`id_social`,`judul`,`website`,`link`) VALUES ();
INSERT INTO md_social (`id_social`,`judul`,`website`,`link`) VALUES ();
INSERT INTO md_social (`id_social`,`judul`,`website`,`link`) VALUES ();
INSERT INTO md_social (`id_social`,`judul`,`website`,`link`) VALUES ();
INSERT INTO md_social (`id_social`,`judul`,`website`,`link`) VALUES ();
DROP TABLE IF EXISTS menu;
CREATE TABLE `menu` (
`id_menu` int(5) NOT NULL AUTO_INCREMENT,
`judul` varchar(50) COLLATE latin1_general_ci NOT NULL,
`kategori_menu` varchar(50) COLLATE latin1_general_ci NOT NULL,
`jenis_link` varchar(50) COLLATE latin1_general_ci NOT NULL,
`link` varchar(100) COLLATE latin1_general_ci NOT NULL,
`induk` int(5) NOT NULL,
`urut` int(5) NOT NULL,
PRIMARY KEY (`id_menu`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (6);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (1);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (4);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (1);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (1);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (0);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (3);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (2);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (5);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (7);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (8);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (9);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (10);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (1);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (0);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (3);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (6);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (5);
INSERT INTO menu (`id_menu`,`judul`,`kategori_menu`,`jenis_link`,`link`,`induk`,`urut`) VALUES (4);
DROP TABLE IF EXISTS modul;
CREATE TABLE `modul` (
`id_modul` int(5) NOT NULL AUTO_INCREMENT,
`judul` varchar(50) COLLATE latin1_general_ci NOT NULL,
`folder` varchar(50) COLLATE latin1_general_ci NOT NULL,
`menu` enum('N','Y') COLLATE latin1_general_ci NOT NULL,
`konten` enum('N','Y') COLLATE latin1_general_ci NOT NULL,
`sidebar` enum('N','Y') COLLATE latin1_general_ci NOT NULL,
`aktif` enum('Y','N') COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_modul`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO modul (`id_modul`,`judul`,`folder`,`menu`,`konten`,`sidebar`,`aktif`) VALUES (Y);
INSERT INTO modul (`id_modul`,`judul`,`folder`,`menu`,`konten`,`sidebar`,`aktif`) VALUES (Y);
INSERT INTO modul (`id_modul`,`judul`,`folder`,`menu`,`konten`,`sidebar`,`aktif`) VALUES (N);
DROP TABLE IF EXISTS setting;
CREATE TABLE `setting` (
`id_setting` int(5) NOT NULL AUTO_INCREMENT,
`parameter` varchar(50) COLLATE latin1_general_ci NOT NULL,
`nilai` text COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_setting`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO setting (`id_setting`,`parameter`,`nilai`) VALUES (maxNews);
INSERT INTO setting (`id_setting`,`parameter`,`nilai`) VALUES (Website berita terlengkap);
INSERT INTO setting (`id_setting`,`parameter`,`nilai`) VALUES (http://localhost/pixart);
INSERT INTO setting (`id_setting`,`parameter`,`nilai`) VALUES (oke/002.jpg);
INSERT INTO setting (`id_setting`,`parameter`,`nilai`) VALUES (business, movie, music, health);
INSERT INTO setting (`id_setting`,`parameter`,`nilai`) VALUES (/pixart);
DROP TABLE IF EXISTS sidebar;
CREATE TABLE `sidebar` (
`id_sidebar` int(5) NOT NULL AUTO_INCREMENT,
`judul` varchar(50) COLLATE latin1_general_ci NOT NULL,
`tipe` varchar(10) COLLATE latin1_general_ci NOT NULL,
`konten` text COLLATE latin1_general_ci NOT NULL,
`posisi` int(2) NOT NULL,
`urut` int(2) NOT NULL,
`aktif` enum('Y','N') COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_sidebar`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
INSERT INTO sidebar (`id_sidebar`,`judul`,`tipe`,`konten`,`posisi`,`urut`,`aktif`) VALUES (Y);
DROP TABLE IF EXISTS tag;
CREATE TABLE `tag` (
`id_tag` int(5) NOT NULL AUTO_INCREMENT,
`tag` varchar(50) COLLATE latin1_general_ci NOT NULL,
`tag_seo` varchar(100) COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_tag`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (movie);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (entertainment);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (how-to);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (health);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (science);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (technology);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (relationship);
INSERT INTO tag (`id_tag`,`tag`,`tag_seo`) VALUES (business);
DROP TABLE IF EXISTS template;
CREATE TABLE `template` (
`id_template` int(5) NOT NULL AUTO_INCREMENT,
`judul` varchar(50) COLLATE latin1_general_ci NOT NULL,
`folder` varchar(50) COLLATE latin1_general_ci NOT NULL,
`aktif` enum('Y','N') COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_template`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO template (`id_template`,`judul`,`folder`,`aktif`) VALUES (N);
INSERT INTO template (`id_template`,`judul`,`folder`,`aktif`) VALUES (Y);
DROP TABLE IF EXISTS user;
CREATE TABLE `user` (
`id_user` int(5) NOT NULL AUTO_INCREMENT,
`nama_lengkap` varchar(100) COLLATE latin1_general_ci NOT NULL,
`email` varchar(100) COLLATE latin1_general_ci NOT NULL,
`username` varchar(30) COLLATE latin1_general_ci NOT NULL,
`password` varchar(50) COLLATE latin1_general_ci NOT NULL,
`level` varchar(10) COLLATE latin1_general_ci NOT NULL,
PRIMARY KEY (`id_user`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
INSERT INTO user (`id_user`,`nama_lengkap`,`email`,`username`,`password`,`level`) VALUES (admin);
INSERT INTO user (`id_user`,`nama_lengkap`,`email`,`username`,`password`,`level`) VALUES (author);
|
<reponame>gordonIanJ/vagrant-oracle-cloud-insfrastructure<filename>MySQL_Support_Exercise/working_directories/6_mu/create_procedure.sql
DROP DATABASE IF EXISTS mu;
CREATE DATABASE mu;
USE mu;
DROP TABLE IF EXISTS musers;
CREATE TABLE musers
(
muser_id INT NOT NULL AUTO_INCREMENT,
muser_name VARCHAR(30) NOT NULL,
muser_data VARCHAR(30) NOT NULL,
muser_group INT NOT NULL,
PRIMARY KEY (muser_id),
INDEX (muser_name)
) ENGINE=MyISAM;
INSERT INTO musers (muser_name, muser_data, muser_group) VALUES ('City Track', '0001', 1), ('Person Track', '0002', 2), ('Vehicle Track', '0003', 2);
DROP TABLE IF EXISTS mu_0001;
CREATE TABLE mu_0001
(
city_id INT NOT NULL AUTO_INCREMENT,
city_name VARCHAR(30),
city_state CHAR(2),
city_primary_code INT,
PRIMARY KEY (city_id),
INDEX (city_state),
INDEX (city_primary_code)
) ENGINE=MyISAM;
INSERT INTO mu_0001 (city_name, city_state, city_primary_code) VALUES ('Clarksville', 'TN', 37040), ('Cupertino', 'CA', 94025), ('Long Island City', 'NY', 11101);
DROP TABLE IF EXISTS mu_0002;
CREATE TABLE mu_0002
(
person_id INT NOT NULL AUTO_INCREMENT,
person_name VARCHAR(100),
person_salary DECIMAL(8,2),
person_jobdesc TEXT,
PRIMARY KEY (person_id),
INDEX (person_name)
) ENGINE=MyISAM;
INSERT INTO mu_0002 (person_name, person_salary, person_jobdesc) VALUES ('<NAME>', 14000.00, 'Gardener'), ('<NAME>', 250000.00, 'Sitar Tuner'), ('<NAME>', 35000.00, 'Greeter');
DROP TABLE IF EXISTS mu_0003;
CREATE TABLE mu_0003
(
vehicle_id INT NOT NULL AUTO_INCREMENT,
vehicle_type INT NOT NULL,
vehicle_color INT NOT NULL,
vehicle_year INT NOT NULL,
vehicle_price DECIMAL(8,2),
PRIMARY KEY (vehicle_id),
INDEX (vehicle_type),
INDEX (vehicle_year),
INDEX (vehicle_color)
) ENGINE=MyISAM;
INSERT INTO mu_0003 (vehicle_type, vehicle_color, vehicle_year, vehicle_price) VALUES (1, 2, 1979, 1000.00), (1, 1, 1984, 250.00), (3,18,2006,35749.00);
-- mu_fetch( in_muser_group INT, mdata VARCHAR(30) )
-- If mdata is provided, return results for the mu_ table with that suffix
-- Otherwise, retrieve muser_data from musers for all users that
-- belong to the specified muser_group.
DELIMITER $$
DROP PROCEDURE IF EXISTS mu_fetch$$
CREATE PROCEDURE mu_fetch( in_muser_group INT, mdata VARCHAR(30) )
BEGIN
DECLARE done INT DEFAULT 0;
DECLARE psql VARCHAR(200);
DECLARE cr CURSOR FOR
SELECT muser_data FROM musers
WHERE muser_group = in_muser_group;
DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET done=1;
IF mdata <> '' THEN
SET @psql= CONCAT('SELECT * FROM mu_', mdata);
PREPARE stmt FROM @psql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
ELSE
OPEN cr;
REPEAT
FETCH cr INTO mdata;
IF NOT done THEN
SET @psql= CONCAT('SELECT muser_data FROM musers WHERE muser_group = ', mdata);
PREPARE stmt FROM @psql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END IF;
UNTIL done
END REPEAT;
CLOSE cr;
END IF;
END$$
|
ALTER TABLE [dbo].[Requirements]
ADD CONSTRAINT [DF_Requirements_IsComplete] DEFAULT ((0)) FOR [IsComplete];
|
<filename>Database/Stored Procedures/UpdateKingdomPassword.sql
/****** Object: Stored Procedure dbo.UpdateKingdomPassword Script Date: 5/1/2004 6:12:39 PM ******/
CREATE PROCEDURE dbo.UpdateKingdomPassword
(
@Number nvarchar(24),
@kdID int
)
AS
UPDATE Accounts SET Password = @Number WHERE kdID = @kdID
|
<gh_stars>1-10
CREATE PROC usp_GetTownsStartingWith (@parameter VARCHAR(40))
AS
SELECT [Name] FROM Towns
WHERE [Name] LIKE @parameter + '%'
GO
EXEC dbo.usp_GetTownsStartingWith 'b' |
begin
execute immediate q'[
create type oracle_tools.t_named_object authid current_user under oracle_tools.t_schema_object
( object_name$ varchar2(4000 char)
, overriding final member function object_name return varchar2 deterministic
, final static procedure create_named_object
( p_object_type in varchar2
, p_object_schema in varchar2
, p_object_name in varchar2
, p_named_object out nocopy oracle_tools.t_schema_object
)
, final static function create_named_object
( p_object_type in varchar2
, p_object_schema in varchar2
, p_object_name in varchar2
)
return oracle_tools.t_named_object
, overriding member procedure chk
( self in oracle_tools.t_named_object
, p_schema in varchar2
)
)
not instantiable
not final]';
end;
/
|
<filename>src/test/resources/wal.test_36.sql
-- wal.test
--
-- execsql {
-- PRAGMA journal_mode = WAL;
-- CREATE TABLE t1(a, b);
-- INSERT INTO t1 VALUES('a', 'b');
-- }
PRAGMA journal_mode = WAL;
CREATE TABLE t1(a, b);
INSERT INTO t1 VALUES('a', 'b'); |
-- lock.test
--
-- execsql {ROLLBACK}
ROLLBACK |
-- 2020-03-25T08:37:40.282Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Column (AD_Client_ID,AD_Column_ID,AD_Element_ID,AD_Org_ID,AD_Reference_ID,AD_Table_ID,ColumnName,Created,CreatedBy,DDL_NoForeignKey,DefaultValue,Description,EntityType,FacetFilterSeqNo,FieldLength,IsActive,IsAdvancedText,IsAllowLogging,IsAlwaysUpdateable,IsAutoApplyValidationRule,IsAutocomplete,IsCalculated,IsDimension,IsDLMPartitionBoundary,IsEncrypted,IsFacetFilter,IsForceIncludeInGeneratedModel,IsGenericZoomKeyColumn,IsGenericZoomOrigin,IsIdentifier,IsKey,IsLazyLoading,IsMandatory,IsParent,IsRangeFilter,IsSelectionColumn,IsShowFilterIncrementButtons,IsStaleable,IsSyncDatabase,IsTranslated,IsUpdateable,IsUseDocSequence,MaxFacetsToFetch,Name,SelectionColumnSeqNo,SeqNo,Updated,UpdatedBy,Version) VALUES (0,570155,1105,0,20,426,'IsReconciled',TO_TIMESTAMP('2020-03-25 10:37:40','YYYY-MM-DD HH24:MI:SS'),100,'N','N','Zeigt an ob eine Zahlung bereits mit einem Kontoauszug abgeglichen wurde','D',0,1,'Y','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N','N','N','N','N','N','N','Y','N',0,'Abgeglichen',0,0,TO_TIMESTAMP('2020-03-25 10:37:40','YYYY-MM-DD HH24:MI:SS'),100,0)
;
-- 2020-03-25T08:37:40.406Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Column_Trl (AD_Language,AD_Column_ID, Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Column_ID, t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Column t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Column_ID=570155 AND NOT EXISTS (SELECT 1 FROM AD_Column_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Column_ID=t.AD_Column_ID)
;
-- 2020-03-25T08:37:40.412Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_Column_Translation_From_AD_Element(1105)
;
-- 2020-03-25T08:37:43.693Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ SELECT public.db_alter_table('C_PaySelection','ALTER TABLE public.C_PaySelection ADD COLUMN IsReconciled CHAR(1) DEFAULT ''N'' CHECK (IsReconciled IN (''Y'',''N'')) NOT NULL')
;
-- 2020-03-25T08:38:05.747Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsDisplayed,IsDisplayedGrid,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,Updated,UpdatedBy) VALUES (0,570155,598520,0,352,TO_TIMESTAMP('2020-03-25 10:38:05','YYYY-MM-DD HH24:MI:SS'),100,'Zeigt an ob eine Zahlung bereits mit einem Kontoauszug abgeglichen wurde',1,'D','Y','N','N','N','N','N','N','N','Abgeglichen',TO_TIMESTAMP('2020-03-25 10:38:05','YYYY-MM-DD HH24:MI:SS'),100)
;
-- 2020-03-25T08:38:05.764Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Field_ID=598520 AND NOT EXISTS (SELECT 1 FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID)
;
-- 2020-03-25T08:38:05.769Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select update_FieldTranslation_From_AD_Name_Element(1105)
;
-- 2020-03-25T08:38:05.780Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
DELETE FROM AD_Element_Link WHERE AD_Field_ID=598520
;
-- 2020-03-25T08:38:05.787Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
/* DDL */ select AD_Element_Link_Create_Missing_Field(598520)
;
-- 2020-03-25T08:38:42.036Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
INSERT INTO AD_UI_Element (AD_Client_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,AD_UI_Element_ID,AD_UI_ElementGroup_ID,Created,CreatedBy,Description,IsActive,IsAdvancedField,IsDisplayed,IsDisplayed_SideList,IsDisplayedGrid,Name,SeqNo,SeqNo_SideList,SeqNoGrid,Updated,UpdatedBy) VALUES (0,598520,0,352,566624,541026,TO_TIMESTAMP('2020-03-25 10:38:41','YYYY-MM-DD HH24:MI:SS'),100,'Zeigt an ob eine Zahlung bereits mit einem Kontoauszug abgeglichen wurde','Y','N','Y','N','N','Abgeglichen',50,0,0,TO_TIMESTAMP('2020-03-25 10:38:41','YYYY-MM-DD HH24:MI:SS'),100)
;
-- 2020-03-25T08:39:03.583Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=50,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=563122
;
-- 2020-03-25T08:39:03.593Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=60,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4404
;
-- 2020-03-25T08:39:03.599Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=70,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4412
;
-- 2020-03-25T08:39:03.604Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=80,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4415
;
-- 2020-03-25T08:39:03.609Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=90,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=4435
;
-- 2020-03-25T08:39:03.616Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=110,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=543271
;
-- 2020-03-25T08:39:03.620Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=120,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=543272
;
-- 2020-03-25T08:39:03.625Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=130,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=560422
;
-- 2020-03-25T08:39:03.630Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=140,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=560423
;
-- 2020-03-25T08:39:03.635Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsDisplayedGrid='Y', SeqNoGrid=150,Updated=TO_TIMESTAMP('2020-03-25 10:39:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=598520
;
-- 2020-03-26T10:07:47.919Z
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2020-03-26 12:07:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=598520
;
|
<reponame>slaus/community-theme-16-dev
CREATE TABLE IF NOT EXISTS `{{ db_prefix }}ct_top_menu_item` (
`id_ct_top_menu_item` INT(11) NOT NULL AUTO_INCREMENT,
`type` TINYINT(1) NOT NULL,
`entity_id` VARCHAR(11) DEFAULT 0,
`icon` VARCHAR(64) NULL,
`class` VARCHAR(64) NULL,
`tree_max_depth` TINYINT(1) DEFAULT 0,
`no_follow` TINYINT(1) DEFAULT 0,
`active` TINYINT(1) DEFAULT 1,
/* Bug: allow PrestaShop to insert dummy values here */
`position` INT(10) DEFAULT 0,
PRIMARY KEY (`id_ct_top_menu_item`)
) ENGINE = {{ mysql_engine }} DEFAULT CHARSET = UTF8;
CREATE TABLE IF NOT EXISTS `{{ db_prefix }}ct_top_menu_item_lang` (
`id_ct_top_menu_item` INT(11) NOT NULL,
`id_lang` INT(11) NOT NULL,
`url` TEXT NULL,
`title` VARCHAR(64) NULL,
`name` VARCHAR(64) NULL,
PRIMARY KEY (`id_ct_top_menu_item`, `id_lang`)
) ENGINE = {{ mysql_engine }} DEFAULT CHARSET = UTF8;
CREATE TABLE IF NOT EXISTS `{{ db_prefix }}ct_top_menu_item_shop` (
`id_ct_top_menu_item` INT(11) NOT NULL,
`id_shop` INT(11) NOT NULL,
`position` INT(10) DEFAULT 0,
PRIMARY KEY (`id_ct_top_menu_item`, `id_shop`)
) ENGINE = {{ mysql_engine }} DEFAULT CHARSET = UTF8;
/* Keys for sorting and indexing */
|
/*
Copyright 2016 <NAME>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------
PROJECT NAME: ChiRho https://github.com/AaronMorelli/ChiRho
PROJECT DESCRIPTION: A T-SQL toolkit for troubleshooting performance and stability problems on SQL Server instances
FILE NAME: CoreXR.OrdinalCachePosition.Table.sql
TABLE NAME: CoreXR.OrdinalCachePosition
AUTHOR: <NAME>
<EMAIL>
@sqlcrossjoin
sql<EMAIL>
PURPOSE: Holds the current ordinal position within a given cache from the
CaptureOrdinalCache table. An ordinal cache is identified by the combination
of columns: StartTime/EndTime/session_id, and the CurrentPosition is valid
for the range of ordinals found in CaptureOrdinalCache for the matching
start/end/session_id.
*/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [CoreXR].[OrdinalCachePosition](
[Utility] [nvarchar](30) NOT NULL,
[CollectionInitiatorID] [tinyint] NOT NULL,
[StartTime] [datetime] NOT NULL,
[EndTime] [datetime] NOT NULL,
[session_id] [smallint] NOT NULL,
[CurrentPosition] [int] NOT NULL,
[LastOptionsHash] [varbinary](64) NOT NULL,
CONSTRAINT [PKOrdinalCachePosition] PRIMARY KEY CLUSTERED
(
[Utility] ASC,
[CollectionInitiatorID] ASC,
[StartTime] ASC,
[EndTime] ASC,
[session_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
|
version https://git-lfs.github.com/spec/v1
oid sha256:3ee5f39cf6324e3bff103cfcf495e772ce6a8c7cf4f2ed081f8b27d43d5e9700
size 70
|
<filename>hive-testbench/ddl-tpch/bin_flat/region.sql<gh_stars>0
create database if not exists ${DB};
use ${DB};
drop table if exists region;
create table region
stored as ${FILE}
as select distinct * from ${SOURCE}.region;
|
select
services.service,
services.addon,
services.addon_name,
apps.app,
services.plan,
services.plan_name,
services.price,
services.foreign_key,
services.created,
services.updated,
services.deleted,
service_attachments.service_attachment,
service_attachments.owned,
service_attachments.name,
service_attachments.primary,
count(all_attached.*) attachments
from
services
join service_attachments on service_attachments.service = services.service and services.deleted = false
join apps on service_attachments.app = apps.app and apps.deleted = false
left join service_attachments all_attached on (all_attached.service = services.service and all_attached.deleted = false)
where
apps.app = $1
and service_attachments.owned = true
and service_attachments.deleted = false
group by
service_attachments.service_attachment,
services.service,
services.addon,
services.addon_name,
apps.app,
services.plan,
services.plan_name,
services.price,
services.foreign_key,
services.created,
services.updated,
services.deleted,
service_attachments.name,
service_attachments.owned,
service_attachments.primary |
<filename>resources/yugmdm-dbsetupscripts-oracle/DataImport/CONFIG_TXN_REGISTRY.sql<gh_stars>1-10
SET DEFINE OFF;
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('146', 0, 'findAllRefPersonnameTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonnameTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:47:24.713000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:47:24.713000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('147', 0, 'createRefPersonTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:48:58.256000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:48:58.256000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('148', 0, 'updateRefPersonTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:48:58.319000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:48:58.319000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('149', 0, 'retrieveRefPersonTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:48:58.407000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:48:58.407000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('150', 0, 'findRefPersonTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPersonTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:48:58.475000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:48:58.475000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('151', 0, 'findAllRefPersonTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:48:58.535000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:48:58.535000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('152', 0, 'createRefPhoneSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneSubtypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:50:09.251000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:50:09.251000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('153', 0, 'updateRefPhoneSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneSubtypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:50:09.311000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:50:09.311000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('154', 0, 'retrieveRefPhoneSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneSubtypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:50:09.393000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:50:09.393000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('155', 0, 'findRefPhoneSubtypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneSubtypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:50:09.455000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:50:09.455000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('156', 0, 'findAllRefPhoneSubtypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneSubtypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:50:09.515000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:50:09.515000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('157', 0, 'createRefPhoneTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:51:17.853000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:51:17.853000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('158', 0, 'updateRefPhoneTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:51:17.907000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:51:17.907000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('159', 0, 'retrieveRefPhoneTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:51:17.973000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:51:17.973000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('160', 0, 'findRefPhoneTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:51:18.016000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:51:18.016000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('161', 0, 'findAllRefPhoneTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPhoneTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:51:18.065000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:51:18.065000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('162', 0, 'createRefPrefixNameBase', 'com.yugandhar.mdm.corecomponentref.RefPrefixNameService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:52:51.689000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:52:51.689000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('163', 0, 'updateRefPrefixNameBase', 'com.yugandhar.mdm.corecomponentref.RefPrefixNameService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:52:51.759000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:52:51.759000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('164', 0, 'retrieveRefPrefixNameBase', 'com.yugandhar.mdm.corecomponentref.RefPrefixNameService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:52:51.833000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:52:51.833000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('165', 0, 'findRefPrefixNameByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPrefixNameService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:52:51.907000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:52:51.907000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('166', 0, 'findAllRefPrefixNameByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPrefixNameService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:52:52.050000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:52:52.050000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('172', 0, 'createRefPropertyLeReltypeBase', 'com.yugandhar.mdm.corecomponentref.RefPropertyLeReltypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:01:32.994000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:01:32.994000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('173', 0, 'updateRefPropertyLeReltypeBase', 'com.yugandhar.mdm.corecomponentref.RefPropertyLeReltypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:01:33.052000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:01:33.052000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('174', 0, 'retrieveRefPropertyLeReltypeBase', 'com.yugandhar.mdm.corecomponentref.RefPropertyLeReltypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:01:33.129000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:01:33.129000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('175', 0, 'findRefPropertyLeReltypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPropertyLeReltypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:01:33.224000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:01:33.224000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('176', 0, 'findAllRefPropertyLeReltypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPropertyLeReltypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:01:33.297000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:01:33.297000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('177', 0, 'createRefRelationshipStatusBase', 'com.yugandhar.mdm.corecomponentref.RefRelationshipStatusService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:02:53.772000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:02:53.772000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('178', 0, 'updateRefRelationshipStatusBase', 'com.yugandhar.mdm.corecomponentref.RefRelationshipStatusService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:02:53.832000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:02:53.832000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('179', 0, 'retrieveRefRelationshipStatusBase', 'com.yugandhar.mdm.corecomponentref.RefRelationshipStatusService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:02:53.901000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:02:53.901000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('180', 0, 'findRefRelationshipStatusByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefRelationshipStatusService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:02:53.953000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:02:53.953000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('181', 0, 'findAllRefRelationshipStatusByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefRelationshipStatusService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:02:54.031000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:02:54.031000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('182', 0, 'createRefSourceSystemBase', 'com.yugandhar.mdm.corecomponentref.RefSourceSystemService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:05:10.775000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:05:10.775000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('5', 0, 'createConfigErrorcodeRegistryBase', 'com.yugandhar.mdm.config.errorcoderegistry.ConfigErrorcodeRegistryService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 3:33:00.715000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 3:33:00.715000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('6', 0, 'updateConfigErrorcodeRegistryBase', 'com.yugandhar.mdm.config.errorcoderegistry.ConfigErrorcodeRegistryService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 3:33:00.759000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 3:33:00.759000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('7', 0, 'retrieveConfigErrorcodeRegistryBase', 'com.yugandhar.mdm.config.errorcoderegistry.ConfigErrorcodeRegistryService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 3:33:00.785000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 3:33:00.785000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('1', 0, 'createConfigTxnRegistryBase', 'com.yugandhar.mdm.config.txnregistry.ConfigTxnRegistryService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 1:15:10.867000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 1:15:10.867000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('8', 0, 'findConfigErrorcodeRegistryByBusinessKeyBase', 'com.yugandhar.mdm.config.errorcoderegistry.ConfigErrorcodeRegistryService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 3:33:00.808000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 3:33:00.808000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('9', 0, 'findAllConfigErrorcodeRegistryByLanguageCodeBase', 'com.yugandhar.mdm.config.errorcoderegistry.ConfigErrorcodeRegistryService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('6/15/2017 5:57:30.185000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/15/2017 5:57:30.185000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('16', 0, 'retrieveLegalentityBase', 'com.yugandhar.mdm.corecomponent.LegalentityService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/28/2017 1:02:16.253000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/28/2017 1:02:16.253000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('14', 0, 'createLegalentityBase', 'com.yugandhar.mdm.corecomponent.LegalentityService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/28/2017 1:02:16.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/28/2017 1:02:16.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('17', 0, 'createRefEntityObjectTypeBase', 'com.yugandhar.mdm.corecomponentref.RefEntityObjectTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/30/2017 12:50:57.242000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/30/2017 12:50:57.242000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('2', 0, 'updateConfigTxnRegistryBase', 'com.yugandhar.mdm.config.txnregistry.ConfigTxnRegistryService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 1:15:10.888000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 1:15:10.888000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('3', 0, 'retrieveConfigTxnRegistryBase', 'com.yugandhar.mdm.config.txnregistry.ConfigTxnRegistryService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 1:15:10.914000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 1:15:10.914000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('4', 0, 'findConfigTxnRegistryByBusinessKeyBase', 'com.yugandhar.mdm.config.txnregistry.ConfigTxnRegistryService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/13/2017 1:15:10.940000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/13/2017 1:15:10.940000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('18', 0, 'updateRefEntityObjectTypeBase', 'com.yugandhar.mdm.corecomponentref.RefEntityObjectTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/30/2017 12:50:57.339000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/30/2017 12:50:57.339000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('15', 0, 'updateLegalentityBase', 'com.yugandhar.mdm.corecomponent.LegalentityService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/28/2017 1:02:16.145000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/28/2017 1:02:16.145000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('19', 0, 'retrieveRefEntityObjectTypeBase', 'com.yugandhar.mdm.corecomponentref.RefEntityObjectTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/30/2017 12:50:57.393000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/30/2017 12:50:57.393000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('20', 0, 'findRefEntityObjectTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefEntityObjectTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('6/30/2017 12:50:57.471000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/30/2017 12:50:57.471000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('21', 0, 'findAllRefEntityObjectTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefEntityObjectTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('6/30/2017 12:50:57.560000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('6/30/2017 12:50:57.560000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('31', 0, 'createAccountBase', 'com.yugandhar.mdm.corecomponent.AccountService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:21:47.498000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:21:47.498000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('32', 0, 'updateAccountBase', 'com.yugandhar.mdm.corecomponent.AccountService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:21:47.627000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:21:47.627000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('33', 0, 'retrieveAccountBase', 'com.yugandhar.mdm.corecomponent.AccountService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:21:47.659000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:21:47.659000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('34', 0, 'createAccountAddressAssocBase', 'com.yugandhar.mdm.corecomponent.AccountAddressAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:22:42.423000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:22:42.423000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('35', 0, 'updateAccountAddressAssocBase', 'com.yugandhar.mdm.corecomponent.AccountAddressAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:22:42.445000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:22:42.445000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('36', 0, 'retrieveAccountAddressAssocBase', 'com.yugandhar.mdm.corecomponent.AccountAddressAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:22:42.468000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:22:42.468000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('38', 0, 'createAccountPhoneAssocBase', 'com.yugandhar.mdm.corecomponent.AccountPhoneAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:23:54.096000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:23:54.096000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('39', 0, 'updateAccountPhoneAssocBase', 'com.yugandhar.mdm.corecomponent.AccountPhoneAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:23:54.120000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:23:54.120000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('40', 0, 'retrieveAccountPhoneAssocBase', 'com.yugandhar.mdm.corecomponent.AccountPhoneAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:23:54.143000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:23:54.143000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('41', 0, 'createAddressBase', 'com.yugandhar.mdm.corecomponent.AddressService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:24:53.652000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:24:53.652000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('42', 0, 'updateAddressBase', 'com.yugandhar.mdm.corecomponent.AddressService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:24:53.681000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:24:53.681000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('43', 0, 'retrieveAddressBase', 'com.yugandhar.mdm.corecomponent.AddressService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:24:53.704000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:24:53.704000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('44', 0, 'createCorporationnamesBase', 'com.yugandhar.mdm.corecomponent.CorporationnamesService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:25:33.848000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:25:33.848000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('45', 0, 'updateCorporationnamesBase', 'com.yugandhar.mdm.corecomponent.CorporationnamesService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:25:33.872000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:25:33.872000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('46', 0, 'retrieveCorporationnamesBase', 'com.yugandhar.mdm.corecomponent.CorporationnamesService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:25:33.896000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:25:33.896000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('47', 0, 'createEntityGroupBase', 'com.yugandhar.mdm.corecomponent.EntityGroupService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:26:18.856000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:26:18.856000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('48', 0, 'updateEntityGroupBase', 'com.yugandhar.mdm.corecomponent.EntityGroupService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:26:18.879000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:26:18.879000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('49', 0, 'retrieveEntityGroupBase', 'com.yugandhar.mdm.corecomponent.EntityGroupService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:26:18.932000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:26:18.932000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('50', 0, 'createEntityGroupAssocBase', 'com.yugandhar.mdm.corecomponent.EntityGroupAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:27:06.266000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:27:06.266000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('51', 0, 'updateEntityGroupAssocBase', 'com.yugandhar.mdm.corecomponent.EntityGroupAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:27:06.291000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:27:06.291000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('52', 0, 'retrieveEntityGroupAssocBase', 'com.yugandhar.mdm.corecomponent.EntityGroupAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:27:06.312000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:27:06.312000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('53', 0, 'createLeAccountAssocBase', 'com.yugandhar.mdm.corecomponent.LeAccountAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:27:55.526000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:27:55.526000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('54', 0, 'updateLeAccountAssocBase', 'com.yugandhar.mdm.corecomponent.LeAccountAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:27:55.549000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:27:55.549000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('55', 0, 'retrieveLeAccountAssocBase', 'com.yugandhar.mdm.corecomponent.LeAccountAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:27:55.573000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:27:55.573000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('56', 0, 'createLeAddressAssocBase', 'com.yugandhar.mdm.corecomponent.LeAddressAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:28:49.361000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:28:49.361000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('57', 0, 'updateLeAddressAssocBase', 'com.yugandhar.mdm.corecomponent.LeAddressAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:28:49.382000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:28:49.382000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('58', 0, 'retrieveLeAddressAssocBase', 'com.yugandhar.mdm.corecomponent.LeAddressAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:28:49.406000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:28:49.406000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('59', 0, 'createLeCorporationBase', 'com.yugandhar.mdm.corecomponent.LeCorporationService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:29:29.440000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:29:29.440000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('60', 0, 'updateLeCorporationBase', 'com.yugandhar.mdm.corecomponent.LeCorporationService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:29:29.479000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:29:29.479000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('61', 0, 'retrieveLeCorporationBase', 'com.yugandhar.mdm.corecomponent.LeCorporationService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:29:29.503000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:29:29.503000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('62', 0, 'createLeIdentifierKycRegistryBase', 'com.yugandhar.mdm.corecomponent.LeIdentifierKycRegistryService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:30:07.956000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:30:07.956000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('63', 0, 'updateLeIdentifierKycRegistryBase', 'com.yugandhar.mdm.corecomponent.LeIdentifierKycRegistryService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:30:07.978000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:30:07.978000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('64', 0, 'retrieveLeIdentifierKycRegistryBase', 'com.yugandhar.mdm.corecomponent.LeIdentifierKycRegistryService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:30:08.001000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:30:08.001000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('65', 0, 'createLePersonBase', 'com.yugandhar.mdm.corecomponent.LePersonService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:30:59.301000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:30:59.301000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('66', 0, 'updateLePersonBase', 'com.yugandhar.mdm.corecomponent.LePersonService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:30:59.324000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:30:59.324000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('67', 0, 'retrieveLePersonBase', 'com.yugandhar.mdm.corecomponent.LePersonService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:30:59.349000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:30:59.349000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('68', 0, 'createLePhoneAssocBase', 'com.yugandhar.mdm.corecomponent.LePhoneAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:31:42.002000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:31:42.002000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('69', 0, 'updateLePhoneAssocBase', 'com.yugandhar.mdm.corecomponent.LePhoneAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:31:42.026000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:31:42.026000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('70', 0, 'retrieveLePhoneAssocBase', 'com.yugandhar.mdm.corecomponent.LePhoneAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:31:42.050000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:31:42.050000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('71', 0, 'createLePreferencesBase', 'com.yugandhar.mdm.corecomponent.LePreferencesService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:33:10.788000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:33:10.788000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('72', 0, 'updateLePreferencesBase', 'com.yugandhar.mdm.corecomponent.LePreferencesService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:33:10.814000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:33:10.814000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('73', 0, 'retrieveLePreferencesBase', 'com.yugandhar.mdm.corecomponent.LePreferencesService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:33:10.839000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:33:10.839000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('74', 0, 'createLePropertyAssocBase', 'com.yugandhar.mdm.corecomponent.LePropertyAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:34:03.168000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:34:03.168000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('75', 0, 'updateLePropertyAssocBase', 'com.yugandhar.mdm.corecomponent.LePropertyAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:34:03.190000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:34:03.190000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('76', 0, 'retrieveLePropertyAssocBase', 'com.yugandhar.mdm.corecomponent.LePropertyAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:34:03.212000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:34:03.212000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('77', 0, 'createLeSystemKeysRegistryBase', 'com.yugandhar.mdm.corecomponent.LeSystemKeysRegistryService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:34:51.069000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:34:51.069000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('78', 0, 'updateLeSystemKeysRegistryBase', 'com.yugandhar.mdm.corecomponent.LeSystemKeysRegistryService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:34:51.092000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:34:51.092000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('79', 0, 'retrieveLeSystemKeysRegistryBase', 'com.yugandhar.mdm.corecomponent.LeSystemKeysRegistryService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:34:51.114000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:34:51.114000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('80', 0, 'createLeToLeRelationshipBase', 'com.yugandhar.mdm.corecomponent.LeToLeRelationshipService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:35:22.331000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:35:22.331000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('81', 0, 'updateLeToLeRelationshipBase', 'com.yugandhar.mdm.corecomponent.LeToLeRelationshipService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:35:22.355000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:35:22.355000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('82', 0, 'retrieveLeToLeRelationshipBase', 'com.yugandhar.mdm.corecomponent.LeToLeRelationshipService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:35:22.378000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:35:22.378000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('83', 0, 'createLeVehicleAssocBase', 'com.yugandhar.mdm.corecomponent.LeVehicleAssocService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:35:57.409000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:35:57.409000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('84', 0, 'updateLeVehicleAssocBase', 'com.yugandhar.mdm.corecomponent.LeVehicleAssocService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:35:57.433000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:35:57.433000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('85', 0, 'retrieveLeVehicleAssocBase', 'com.yugandhar.mdm.corecomponent.LeVehicleAssocService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:35:57.495000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:35:57.495000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('86', 0, 'createMiscellaneousInfoBase', 'com.yugandhar.mdm.corecomponent.MiscellaneousInfoService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:36:27.328000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:36:27.328000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('87', 0, 'updateMiscellaneousInfoBase', 'com.yugandhar.mdm.corecomponent.MiscellaneousInfoService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:36:27.352000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:36:27.352000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('88', 0, 'retrieveMiscellaneousInfoBase', 'com.yugandhar.mdm.corecomponent.MiscellaneousInfoService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:36:27.376000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:36:27.376000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('89', 0, 'createPersonnamesBase', 'com.yugandhar.mdm.corecomponent.PersonnamesService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:36:57.034000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:36:57.034000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('90', 0, 'updatePersonnamesBase', 'com.yugandhar.mdm.corecomponent.PersonnamesService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:36:57.057000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:36:57.057000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('91', 0, 'retrievePersonnamesBase', 'com.yugandhar.mdm.corecomponent.PersonnamesService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:36:57.081000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:36:57.081000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('92', 0, 'createPhoneStandardizedBase', 'com.yugandhar.mdm.corecomponent.PhoneStandardizedService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:37:24.174000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:37:24.174000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('93', 0, 'updatePhoneStandardizedBase', 'com.yugandhar.mdm.corecomponent.PhoneStandardizedService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:37:24.198000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:37:24.198000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('94', 0, 'retrievePhoneStandardizedBase', 'com.yugandhar.mdm.corecomponent.PhoneStandardizedService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:37:24.222000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:37:24.222000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('95', 0, 'createPropertyBase', 'com.yugandhar.mdm.corecomponent.PropertyService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:37:57.794000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:37:57.794000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('96', 0, 'updatePropertyBase', 'com.yugandhar.mdm.corecomponent.PropertyService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:37:57.818000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:37:57.818000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('97', 0, 'retrievePropertyBase', 'com.yugandhar.mdm.corecomponent.PropertyService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:37:57.843000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:37:57.843000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('98', 0, 'createVehicleBase', 'com.yugandhar.mdm.corecomponent.VehicleService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:38:26.651000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:38:26.651000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('99', 0, 'updateVehicleBase', 'com.yugandhar.mdm.corecomponent.VehicleService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:38:26.674000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:38:26.674000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('100', 0, 'retrieveVehicleBase', 'com.yugandhar.mdm.corecomponent.VehicleService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 3:38:26.698000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 3:38:26.698000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('101', 0, 'createRefIdentificationTypeBase', 'com.yugandhar.mdm.corecomponentref.RefIdentificationTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:27:56.333000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:27:56.333000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('102', 0, 'updateRefIdentificationTypeBase', 'com.yugandhar.mdm.corecomponentref.RefIdentificationTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:27:56.385000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:27:56.385000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('103', 0, 'retrieveRefIdentificationTypeBase', 'com.yugandhar.mdm.corecomponentref.RefIdentificationTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:27:56.466000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:27:56.466000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('104', 0, 'findRefIdentificationTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefIdentificationTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:27:56.532000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:27:56.532000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('105', 0, 'findAllRefIdentificationTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefIdentificationTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:27:56.591000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:27:56.591000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('106', 0, 'createRefImportanceTypeBase', 'com.yugandhar.mdm.corecomponentref.RefImportanceTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:30:19.497000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:30:19.497000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('107', 0, 'updateRefImportanceTypeBase', 'com.yugandhar.mdm.corecomponentref.RefImportanceTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:30:19.564000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:30:19.564000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('108', 0, 'retrieveRefImportanceTypeBase', 'com.yugandhar.mdm.corecomponentref.RefImportanceTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:30:19.638000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:30:19.638000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('109', 0, 'findRefImportanceTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefImportanceTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:30:19.697000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:30:19.697000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('110', 0, 'findAllRefImportanceTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefImportanceTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:30:19.749000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:30:19.749000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('111', 0, 'createRefIndustryCodeBase', 'com.yugandhar.mdm.corecomponentref.RefIndustryCodeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:31:42.816000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:31:42.816000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('113', 0, 'updateRefIndustryCodeBase', 'com.yugandhar.mdm.corecomponentref.RefIndustryCodeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:32:02.979000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:32:02.979000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('114', 0, 'retrieveRefIndustryCodeBase', 'com.yugandhar.mdm.corecomponentref.RefIndustryCodeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:32:03.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:32:03.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('115', 0, 'findRefIndustryCodeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefIndustryCodeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:32:03.085000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:32:03.085000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('116', 0, 'findAllRefIndustryCodeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefIndustryCodeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:32:03.160000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:32:03.160000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('117', 0, 'createRefLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLanguageCodeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:39:23.748000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:39:23.748000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('118', 0, 'updateRefLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLanguageCodeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:39:23.819000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:39:23.819000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('119', 0, 'retrieveRefLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLanguageCodeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:39:23.890000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:39:23.890000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('120', 0, 'findRefLanguageCodeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefLanguageCodeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:39:23.948000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:39:23.948000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('121', 0, 'findAllRefLanguageCodeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLanguageCodeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:39:24.011000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:39:24.011000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('122', 0, 'createRefLeRatingBase', 'com.yugandhar.mdm.corecomponentref.RefLeRatingService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:41:22.069000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:41:22.069000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('123', 0, 'updateRefLeRatingBase', 'com.yugandhar.mdm.corecomponentref.RefLeRatingService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:41:22.121000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:41:22.121000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('124', 0, 'retrieveRefLeRatingBase', 'com.yugandhar.mdm.corecomponentref.RefLeRatingService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:41:22.189000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:41:22.189000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('125', 0, 'findRefLeRatingByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefLeRatingService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:41:22.263000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:41:22.263000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('126', 0, 'findAllRefLeRatingByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRatingService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:41:22.307000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:41:22.307000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('127', 0, 'createRefLeRelationshipTypeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRelationshipTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:42:55.538000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:42:55.538000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('128', 0, 'updateRefLeRelationshipTypeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRelationshipTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:42:55.585000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:42:55.585000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('129', 0, 'retrieveRefLeRelationshipTypeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRelationshipTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:42:55.659000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:42:55.659000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('130', 0, 'findRefLeRelationshipTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefLeRelationshipTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:42:55.718000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:42:55.718000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('131', 0, 'findAllRefLeRelationshipTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRelationshipTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:42:55.797000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:42:55.797000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('132', 0, 'createRefLeRoletypeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRoletypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:44:20.789000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:44:20.789000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('133', 0, 'updateRefLeRoletypeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRoletypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:44:20.879000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:44:20.879000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('134', 0, 'retrieveRefLeRoletypeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRoletypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:44:20.958000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:44:20.958000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('135', 0, 'findRefLeRoletypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefLeRoletypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:44:21.022000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:44:21.022000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('136', 0, 'findAllRefLeRoletypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLeRoletypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:44:21.076000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:44:21.076000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('137', 0, 'createRefLobtypeBase', 'com.yugandhar.mdm.corecomponentref.RefLobtypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:45:54.394000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:45:54.394000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('138', 0, 'updateRefLobtypeBase', 'com.yugandhar.mdm.corecomponentref.RefLobtypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:45:54.434000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:45:54.434000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('139', 0, 'retrieveRefLobtypeBase', 'com.yugandhar.mdm.corecomponentref.RefLobtypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:45:54.497000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:45:54.497000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('140', 0, 'findRefLobtypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefLobtypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:45:54.565000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:45:54.565000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('141', 0, 'findAllRefLobtypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefLobtypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 9:45:54.640000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:45:54.640000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('142', 0, 'createRefPersonnameTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonnameTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:47:24.456000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:47:24.456000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('143', 0, 'updateRefPersonnameTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonnameTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:47:24.513000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:47:24.513000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('144', 0, 'retrieveRefPersonnameTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPersonnameTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:47:24.586000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:47:24.586000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('145', 0, 'findRefPersonnameTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPersonnameTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 9:47:24.672000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 9:47:24.672000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('215', 0, 'findRefAccountMdmStatusByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefAccountMdmStatusService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:13:20.406000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:13:20.406000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('216', 0, 'findAllRefAccountMdmStatusByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefAccountMdmStatusService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:13:20.480000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:13:20.480000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('217', 0, 'createRefAccountSourceStatusBase', 'com.yugandhar.mdm.corecomponentref.RefAccountSourceStatusService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:14:34.169000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:14:34.169000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('218', 0, 'updateRefAccountSourceStatusBase', 'com.yugandhar.mdm.corecomponentref.RefAccountSourceStatusService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:14:34.233000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:14:34.233000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('219', 0, 'retrieveRefAccountSourceStatusBase', 'com.yugandhar.mdm.corecomponentref.RefAccountSourceStatusService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:14:34.301000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:14:34.301000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('220', 0, 'findRefAccountSourceStatusByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefAccountSourceStatusService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:14:34.378000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:14:34.378000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('221', 0, 'findAllRefAccountSourceStatusByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefAccountSourceStatusService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:14:34.454000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:14:34.454000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('222', 0, 'createRefAddressSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressSubtypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:15:43.541000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:15:43.541000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('223', 0, 'updateRefAddressSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressSubtypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:15:43.619000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:15:43.619000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('224', 0, 'retrieveRefAddressSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressSubtypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:15:43.698000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:15:43.698000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('225', 0, 'findRefAddressSubtypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefAddressSubtypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:15:43.766000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:15:43.766000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('226', 0, 'findAllRefAddressSubtypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressSubtypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:15:43.831000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:15:43.831000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('227', 0, 'createRefAddressTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:17:11.523000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:17:11.523000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('228', 0, 'updateRefAddressTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:17:11.582000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:17:11.582000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('229', 0, 'retrieveRefAddressTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:17:11.642000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:17:11.642000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('230', 0, 'findRefAddressTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefAddressTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:17:11.704000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:17:11.704000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('231', 0, 'findAllRefAddressTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefAddressTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:17:11.760000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:17:11.760000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('232', 0, 'createRefAgreementTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAgreementTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:18:22.200000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:18:22.200000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('233', 0, 'updateRefAgreementTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAgreementTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:18:22.257000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:18:22.257000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('234', 0, 'retrieveRefAgreementTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAgreementTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:18:22.340000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:18:22.340000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('235', 0, 'findRefAgreementTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefAgreementTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:18:22.397000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:18:22.397000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('236', 0, 'findAllRefAgreementTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefAgreementTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:18:22.478000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:18:22.478000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('237', 0, 'createRefAssocTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAssocTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:19:27.649000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:19:27.649000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('238', 0, 'updateRefAssocTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAssocTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:19:27.705000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:19:27.705000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('239', 0, 'retrieveRefAssocTypeBase', 'com.yugandhar.mdm.corecomponentref.RefAssocTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:19:27.776000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:19:27.776000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('240', 0, 'findRefAssocTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefAssocTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:19:27.843000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:19:27.843000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('241', 0, 'findAllRefAssocTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefAssocTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:19:27.929000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:19:27.929000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('242', 0, 'createRefBillingModeTypeBase', 'com.yugandhar.mdm.corecomponentref.RefBillingModeTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:20:38.497000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:20:38.497000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('243', 0, 'updateRefBillingModeTypeBase', 'com.yugandhar.mdm.corecomponentref.RefBillingModeTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:20:38.556000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:20:38.556000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('244', 0, 'retrieveRefBillingModeTypeBase', 'com.yugandhar.mdm.corecomponentref.RefBillingModeTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:20:38.671000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:20:38.671000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('245', 0, 'findRefBillingModeTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefBillingModeTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:20:38.734000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:20:38.734000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('246', 0, 'findAllRefBillingModeTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefBillingModeTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:20:38.788000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:20:38.788000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('247', 0, 'createRefBranchCodeBase', 'com.yugandhar.mdm.corecomponentref.RefBranchCodeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:21:43.199000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:21:43.199000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('377', 0, 'findAllAccountPhoneAssocByAccountIdPkBase', 'com.yugandhar.mdm.corecomponent.AccountPhoneAssocService', 'findByAccountIdPk',
'find all account phone associations based on accountIdPk', TO_TIMESTAMP('7/25/2017 2:22:27.056000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/25/2017 2:22:27.056000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('378', 0, 'findAllAccountAddressAssocByAccountIdPkBase', 'com.yugandhar.mdm.corecomponent.AccountAddressAssocService', 'findByAccountIdPk',
'find all account address associations based on accountIdPk', TO_TIMESTAMP('7/25/2017 2:31:04.337000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/25/2017 2:31:04.337000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('379', 0, 'findAllAccountAddressAssocByAccountId', 'com.yugandhar.mdm.composite.service.FindAllAccountAddressAssocByAccountIdService', 'process',
'find all account address associations alongwith addressDO based on accountIdPk', TO_TIMESTAMP('7/25/2017 3:03:05.129000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/25/2017 3:03:05.129000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('380', 0, 'findAllAccountPhoneAssocByAccountId', 'com.yugandhar.mdm.composite.service.FindAllAccountPhoneAssocByAccountIdService', 'process',
'find all account phone associations alongwith phoneStandardizedDO based on accountIdPk', TO_TIMESTAMP('7/25/2017 3:03:56.617000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/25/2017 3:03:56.617000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('381', 0, 'retrieveAccountByAccountId', 'com.yugandhar.mdm.composite.service.RetrieveAccountByAccountIdService', 'process',
'retrieve the account alongwith its associated address and Phones', TO_TIMESTAMP('7/25/2017 4:01:29.944000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/25/2017 4:01:29.944000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('387', 0, 'createAccount', 'com.yugandhar.mdm.composite.service.CreateAccountService', 'process',
'create account along with address and phone association', TO_TIMESTAMP('7/26/2017 1:03:39.072000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/26/2017 1:03:39.072000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('388', 0, 'updateAccount', 'com.yugandhar.mdm.composite.service.UpdateAccountService', 'process',
'update account along with address and phone association', TO_TIMESTAMP('7/26/2017 1:04:47.736000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/26/2017 1:04:47.736000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('389', 0, 'findAllMiscellaneousInfoByEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.MiscellaneousInfoService', 'findByEntityIdPk',
'find All MiscellaneousInfo By EntityIdPk', TO_TIMESTAMP('7/26/2017 4:13:31.263000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/26/2017 4:13:31.263000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('390', 0, 'findEntityGroupAssocByEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.EntityGroupAssocService', 'findByEntityIdPk',
'find All EntityGroupAssoc By EntityIdPk', TO_TIMESTAMP('7/27/2017 11:38:55.570000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/27/2017 11:38:55.570000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('391', 0, 'findEntityGroupAssocByEntityGroupIdpkBase', 'com.yugandhar.mdm.corecomponent.EntityGroupAssocService', 'findByEntityGroupIdpk',
'find All EntityGroupAssoc By entityGroupIdpk', TO_TIMESTAMP('7/27/2017 12:02:10.363000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/27/2017 12:02:10.363000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('397', 0, 'createEntityGroup', 'com.yugandhar.mdm.composite.service.CreateEntityGroupService', 'process',
'create EntityGroup alongwith entityGroupAssociations if present', TO_TIMESTAMP('7/27/2017 2:51:46.671000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/27/2017 2:51:46.671000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('398', 0, 'updateEntityGroup', 'com.yugandhar.mdm.composite.service.UpdateEntityGroupService', 'process',
'update EntityGroup alongwith entityGroupAssociations if present', TO_TIMESTAMP('7/27/2017 3:01:17.715000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/27/2017 3:01:17.715000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('399', 0, 'retrieveEntityGroupByEntityGroupId', 'com.yugandhar.mdm.composite.service.RetrieveEntityGroupByEntityGroupIdService', 'process',
'retrieve EntityGroup alongwith entityGroupAssociations if present', TO_TIMESTAMP('7/27/2017 3:12:41.855000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/27/2017 3:12:41.855000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('400', 0, 'findLeToLeRelationshipByLegalentityIdpkBase', 'com.yugandhar.mdm.corecomponent.LeToLeRelationshipService', 'findByLegalentityIdpk',
'findLeToLeRelationshipByLegalentityIdpk', TO_TIMESTAMP('7/28/2017 12:31:09.871000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/28/2017 12:31:09.871000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('407', 0, 'createConfigAppPropertiesBase', 'com.yugandhar.mdm.config.app.properties.ConfigAppPropertiesService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/7/2017 4:19:05.655000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/7/2017 4:19:05.655000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('408', 0, 'updateConfigAppPropertiesBase', 'com.yugandhar.mdm.config.app.properties.ConfigAppPropertiesService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/7/2017 4:19:05.802000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/7/2017 4:19:05.802000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('409', 0, 'retrieveConfigAppPropertiesBase', 'com.yugandhar.mdm.config.app.properties.ConfigAppPropertiesService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/7/2017 4:19:05.845000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/7/2017 4:19:05.845000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('410', 0, 'findConfigAppPropertiesByBusinessKeyBase', 'com.yugandhar.mdm.config.app.properties.ConfigAppPropertiesService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/7/2017 4:19:05.887000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/7/2017 4:19:05.887000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('417', 0, 'createConfigLanguageCodeBase', 'com.yugandhar.mdm.config.langcode.ConfigLanguageCodeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/8/2017 3:49:47.708000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/8/2017 3:49:47.708000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('418', 0, 'updateConfigLanguageCodeBase', 'com.yugandhar.mdm.config.langcode.ConfigLanguageCodeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/8/2017 3:49:47.839000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/8/2017 3:49:47.839000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('419', 0, 'retrieveConfigLanguageCodeBase', 'com.yugandhar.mdm.config.langcode.ConfigLanguageCodeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/8/2017 3:49:47.876000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/8/2017 3:49:47.876000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('420', 0, 'findConfigLanguageCodeByBusinessKeyBase', 'com.yugandhar.mdm.config.langcode.ConfigLanguageCodeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/8/2017 3:49:47.900000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/8/2017 3:49:47.900000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('421', 0, 'findAllConfigLanguageCodesBase', 'com.yugandhar.mdm.config.langcode.ConfigLanguageCodeService', 'findAllRecords',
'find All records by language code', TO_TIMESTAMP('8/8/2017 3:49:47.935000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/8/2017 3:49:47.935000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('428', 0, 'createRefPreferenceTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPreferenceTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/21/2017 5:15:41.168000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/21/2017 5:15:41.168000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('429', 0, 'updateRefPreferenceTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPreferenceTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/21/2017 5:15:41.195000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/21/2017 5:15:41.195000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('430', 0, 'retrieveRefPreferenceTypeBase', 'com.yugandhar.mdm.corecomponentref.RefPreferenceTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/21/2017 5:15:41.219000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/21/2017 5:15:41.219000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('431', 0, 'findRefPreferenceTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefPreferenceTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/21/2017 5:15:41.324000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/21/2017 5:15:41.324000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('432', 0, 'findAllRefPreferenceTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefPreferenceTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('8/21/2017 5:15:41.461000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/21/2017 5:15:41.461000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('437', 0, 'createConfigInquiryLevelsBase', 'com.yugandhar.mdm.config.inqlevel.ConfigInquiryLevelsService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/22/2017 5:52:50.942000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/22/2017 5:52:50.942000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('438', 0, 'updateConfigInquiryLevelsBase', 'com.yugandhar.mdm.config.inqlevel.ConfigInquiryLevelsService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/22/2017 5:52:51.077000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/22/2017 5:52:51.077000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('439', 0, 'retrieveConfigInquiryLevelsBase', 'com.yugandhar.mdm.config.inqlevel.ConfigInquiryLevelsService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/22/2017 5:52:51.115000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/22/2017 5:52:51.115000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('440', 0, 'findAllConfigInquiryLevelsByBusinessKeyBase', 'com.yugandhar.mdm.config.inqlevel.ConfigInquiryLevelsService', 'findAllByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('8/22/2017 5:52:51.147000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/22/2017 5:52:51.147000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('533', 0, 'findAllRefMatchScoreByMatchEntityObjectName', 'com.yugandhar.mdm.match.componentref.RefMatchScoreService', 'findAllRecordsByMatchEntityObjectName',
'find All records by language code', TO_TIMESTAMP('10/30/2017 2:35:23.103000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 2:35:23.103000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('534', 0, 'createRefMatchThresholdBase', 'com.yugandhar.mdm.match.componentref.RefMatchThresholdService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 3:00:03.566000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:00:03.566000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('535', 0, 'updateRefMatchThresholdBase', 'com.yugandhar.mdm.match.componentref.RefMatchThresholdService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:00:03.597000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:00:03.597000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('536', 0, 'retrieveRefMatchThresholdBase', 'com.yugandhar.mdm.match.componentref.RefMatchThresholdService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:00:03.622000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:00:03.622000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('537', 0, 'findRefMatchThresholdByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefMatchThresholdService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 3:00:03.646000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:00:03.646000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('538', 0, 'findAllRefMatchThresholdBase', 'com.yugandhar.mdm.match.componentref.RefMatchThresholdService', 'findAllRecords',
'find All records by language code', TO_TIMESTAMP('10/30/2017 3:00:03.668000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:00:03.668000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('539', 0, 'createRefInactivationReasonBase', 'com.yugandhar.mdm.match.componentref.RefInactivationReasonService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 3:01:58.655000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:01:58.655000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('540', 0, 'updateRefInactivationReasonBase', 'com.yugandhar.mdm.match.componentref.RefInactivationReasonService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:01:58.689000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:01:58.689000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('541', 0, 'retrieveRefInactivationReasonBase', 'com.yugandhar.mdm.match.componentref.RefInactivationReasonService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:01:58.714000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:01:58.714000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('542', 0, 'findRefInactivationReasonByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefInactivationReasonService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 3:01:58.737000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:01:58.737000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('543', 0, 'findAllRefInactivationReasonByLanguageCodeBase', 'com.yugandhar.mdm.match.componentref.RefInactivationReasonService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('10/30/2017 3:01:58.761000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:01:58.761000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('544', 0, 'createRefMatchActionstatusBase', 'com.yugandhar.mdm.match.componentref.RefMatchActionstatusService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 3:03:07.925000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:03:07.925000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('545', 0, 'updateRefMatchActionstatusBase', 'com.yugandhar.mdm.match.componentref.RefMatchActionstatusService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:03:07.949000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:03:07.949000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('546', 0, 'retrieveRefMatchActionstatusBase', 'com.yugandhar.mdm.match.componentref.RefMatchActionstatusService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:03:07.975000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:03:07.975000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('547', 0, 'findRefMatchActionstatusByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefMatchActionstatusService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 3:03:07.999000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:03:07.999000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('548', 0, 'findAllRefMatchActionstatusByLanguageCodeBase', 'com.yugandhar.mdm.match.componentref.RefMatchActionstatusService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('10/30/2017 3:03:08.027000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:03:08.027000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('549', 0, 'createRefMatchProposedActionBase', 'com.yugandhar.mdm.match.componentref.RefMatchProposedActionService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 3:04:08.260000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:08.260000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('550', 0, 'updateRefMatchProposedActionBase', 'com.yugandhar.mdm.match.componentref.RefMatchProposedActionService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:04:08.288000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:08.288000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('551', 0, 'retrieveRefMatchProposedActionBase', 'com.yugandhar.mdm.match.componentref.RefMatchProposedActionService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:04:08.316000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:08.316000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('552', 0, 'findRefMatchProposedActionByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefMatchProposedActionService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 3:04:08.341000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:08.341000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('553', 0, 'findAllRefMatchProposedActionByLanguageCodeBase', 'com.yugandhar.mdm.match.componentref.RefMatchProposedActionService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('10/30/2017 3:04:08.366000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:08.366000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('554', 0, 'createRefMatchResultBase', 'com.yugandhar.mdm.match.componentref.RefMatchResultService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 3:04:50.481000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:50.481000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('555', 0, 'updateRefMatchResultBase', 'com.yugandhar.mdm.match.componentref.RefMatchResultService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:04:50.508000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:50.508000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('556', 0, 'retrieveRefMatchResultBase', 'com.yugandhar.mdm.match.componentref.RefMatchResultService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:04:50.534000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:50.534000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('557', 0, 'findRefMatchResultByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefMatchResultService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 3:04:50.562000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:50.562000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('558', 0, 'findAllRefMatchResultByLanguageCodeBase', 'com.yugandhar.mdm.match.componentref.RefMatchResultService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('10/30/2017 3:04:50.586000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:04:50.586000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('559', 0, 'createRefMergeReasonBase', 'com.yugandhar.mdm.match.componentref.RefMergeReasonService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 3:05:31.513000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:05:31.513000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('560', 0, 'updateRefMergeReasonBase', 'com.yugandhar.mdm.match.componentref.RefMergeReasonService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:05:31.543000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:05:31.543000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('561', 0, 'retrieveRefMergeReasonBase', 'com.yugandhar.mdm.match.componentref.RefMergeReasonService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 3:05:31.569000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:05:31.569000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('562', 0, 'findRefMergeReasonByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefMergeReasonService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 3:05:31.591000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:05:31.591000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('563', 0, 'findAllRefMergeReasonByLanguageCodeBase', 'com.yugandhar.mdm.match.componentref.RefMergeReasonService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('10/30/2017 3:05:31.615000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 3:05:31.615000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('564', 0, 'createInactiveLeRegistryBase', 'com.yugandhar.mdm.match.component.InactiveLeRegistryService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 5:57:18.513000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:18.513000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('441', 0, 'findAllConfigInquiryLevelsBase', 'com.yugandhar.mdm.config.inqlevel.ConfigInquiryLevelsService', 'findAllRecords',
'find All records', TO_TIMESTAMP('8/22/2017 5:52:51.201000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/22/2017 5:52:51.201000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('447', 0, 'findLeAccountAssocByAccountIdPkBase', 'com.yugandhar.mdm.corecomponent.LeAccountAssocService', 'findByAccountIdPk',
'find LeAccountAssoc by accountIdpk', TO_TIMESTAMP('8/29/2017 3:51:45.811000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('8/29/2017 3:51:45.811000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('457', 0, 'searchLegalEntityByLEAttributes', 'com.yugandhar.mdm.composite.service.SearchLegalEntityByLEAttributesService', 'process',
'Search Legal Entity Service', TO_TIMESTAMP('9/12/2017 2:39:43.567000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('9/12/2017 2:39:43.567000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('467', 0, 'searchLegalEntityByAccountAttributes', 'com.yugandhar.mdm.composite.service.SearchLegalEntityByAccountAttributesService', 'process',
'search LegalEntity By Account Attributes', TO_TIMESTAMP('9/19/2017 2:38:44.092000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('9/19/2017 2:38:44.092000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('477', 0, 'searchAccountByLEAttributes', 'com.yugandhar.mdm.composite.service.SearchAccountByLEAttributesService', 'process',
'search Account By LE Attributes', TO_TIMESTAMP('9/20/2017 1:11:23.095000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('9/20/2017 1:11:23.095000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('478', 0, 'searchAccountByAccountAttributes', 'com.yugandhar.mdm.composite.service.SearchAccountByAccountAttributesService', 'process',
'search Account By Account Attributes', TO_TIMESTAMP('9/20/2017 1:29:36.462000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('9/20/2017 1:29:36.462000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('479', 0, 'createAuthRolesRegistryBase', 'com.yugandhar.mdm.auth.AuthRolesRegistryService', 'add',
'create record in database', TO_TIMESTAMP('10/2/2017 3:17:51.645000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:17:51.645000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('480', 0, 'updateAuthRolesRegistryBase', 'com.yugandhar.mdm.auth.AuthRolesRegistryService', 'merge',
'update the record in database based on idpk', TO_TIMESTAMP('10/2/2017 3:17:51.739000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:17:51.739000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('481', 0, 'retrieveAuthRolesRegistryBase', 'com.yugandhar.mdm.auth.AuthRolesRegistryService', 'findById',
'find the record based on primary key i.e. idpk', TO_TIMESTAMP('10/2/2017 3:17:51.769000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:17:51.769000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('482', 0, 'findAuthRolesRegistryByBusinessKeyBase', 'com.yugandhar.mdm.auth.AuthRolesRegistryService', 'findByBusinessKey',
'find by business key method search properties based on roleName', TO_TIMESTAMP('10/2/2017 3:17:51.813000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:17:51.813000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('483', 0, 'createAuthUserRegistryBase', 'com.yugandhar.mdm.auth.AuthUserRegistryService', 'add',
'create record in database', TO_TIMESTAMP('10/2/2017 3:19:34.234000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:19:34.234000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('484', 0, 'updateAuthUserRegistryBase', 'com.yugandhar.mdm.auth.AuthUserRegistryService', 'merge',
'update the record in database based on idpk', TO_TIMESTAMP('10/2/2017 3:19:34.259000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:19:34.259000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('485', 0, 'retrieveAuthUserRegistryBase', 'com.yugandhar.mdm.auth.AuthUserRegistryService', 'findById',
'find the record based on primary key i.e. idpk', TO_TIMESTAMP('10/2/2017 3:19:34.284000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:19:34.284000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('486', 0, 'findAuthUserRegistryByBusinessKeyBase', 'com.yugandhar.mdm.auth.AuthUserRegistryService', 'findByBusinessKey',
'find by business key method search properties based on UserName', TO_TIMESTAMP('10/2/2017 3:19:34.306000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:19:34.306000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('487', 0, 'createAuthUserroleAccesscontrolBase', 'com.yugandhar.mdm.auth.AuthUserroleAccesscontrolService', 'add',
'create record in database. if profiletype is USER then provide the AuthUserRegistryIdpk else if profile type is ROLE then provide AuthRolesRegistryIdpk', TO_TIMESTAMP('10/2/2017 3:22:20.052000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:22:20.052000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('488', 0, 'updateAuthUserroleAccesscontrolBase', 'com.yugandhar.mdm.auth.AuthUserroleAccesscontrolService', 'merge',
'update the record in database based on idpk. if profiletype is USER then provide the AuthUserRegistryIdpk else if profile type is ROLE then provide AuthRolesRegistryIdpk', TO_TIMESTAMP('10/2/2017 3:22:20.082000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:22:20.082000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('489', 0, 'retrieveAuthUserroleAccesscontrolBase', 'com.yugandhar.mdm.auth.AuthUserroleAccesscontrolService', 'findById',
'find the record based on primary key i.e. idpk. if profiletype is USER then provide the AuthUserRegistryIdpk else if profile type is ROLE then provide AuthRolesRegistryIdpk', TO_TIMESTAMP('10/2/2017 3:22:20.127000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:22:20.127000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('494', 0, 'findAuthUserroleAccesscontrolByBusinessKeyBase', 'com.yugandhar.mdm.auth.AuthUserroleAccesscontrolService', 'findByBusinessKey',
'find by business key method search properties based on profileType, authUserRoleRegistryIdpk and configTxnRegistryIdpk', TO_TIMESTAMP('10/2/2017 3:23:27.452000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:23:27.452000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('495', 0, 'findAuthUserroleAccesscontrolByRegistryIdpkBase', 'com.yugandhar.mdm.auth.AuthUserroleAccesscontrolService', 'findAuthUserroleAccesscontrolByRegistryIdpk',
'find All records by ProfileType and AuthUserRoleRegistryIdpk. if profiletype is USER then provide the AuthUserRegistryIdpk else if profile type is ROLE then provide AuthRolesRegistryIdpk', TO_TIMESTAMP('10/2/2017 3:23:27.477000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:23:27.477000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('496', 0, 'createAuthUserRoleAssocBase', 'com.yugandhar.mdm.auth.AuthUserRoleAssocService', 'add',
'create record in database', TO_TIMESTAMP('10/2/2017 3:50:38.126000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:50:38.126000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('497', 0, 'updateAuthUserRoleAssocBase', 'com.yugandhar.mdm.auth.AuthUserRoleAssocService', 'merge',
'update the record in database based on idpk', TO_TIMESTAMP('10/2/2017 3:50:38.149000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:50:38.149000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('498', 0, 'retrieveAuthUserRoleAssocBase', 'com.yugandhar.mdm.auth.AuthUserRoleAssocService', 'findById',
'find the record based on primary key i.e. idpk', TO_TIMESTAMP('10/2/2017 3:50:38.175000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:50:38.175000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('499', 0, 'findAuthUserRoleAssocByBusinessKeyBase', 'com.yugandhar.mdm.auth.AuthUserRoleAssocService', 'findByBusinessKey',
'find by business key method search properties based on authRolesRegistryIdpk and authUserRoleAssocIdpk', TO_TIMESTAMP('10/2/2017 3:50:38.198000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:50:38.198000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('500', 0, 'findAllRecordsByAuthUserRegistryIdpkBase', 'com.yugandhar.mdm.auth.AuthUserRoleAssocService', 'findAllRecordsByAuthUserRegistryIdpk',
'find All records by authUserRegistryIdpkBase', TO_TIMESTAMP('10/2/2017 3:50:38.220000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:50:38.220000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('501', 0, 'findAllRecordsByAuthRolesRegistryIdpkBase', 'com.yugandhar.mdm.auth.AuthUserRoleAssocService', 'findAllRecordsByAuthRolesRegistryIdpk',
'find All records by AuthRolesRegistryIdpk', TO_TIMESTAMP('10/2/2017 3:50:38.243000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/2/2017 3:50:38.243000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('509', 0, 'searchAuthRoles', 'com.yugandhar.mdm.auth.SearchAuthRolesService', 'process',
'find the Auth roles based on userName or roleName', TO_TIMESTAMP('10/6/2017 4:18:36.340000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/6/2017 4:18:36.340000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('510', 0, 'searchAuthUsers', 'com.yugandhar.mdm.auth.searchAuthUsersService', 'process',
'find the Auth users based on userName or roleName', TO_TIMESTAMP('10/6/2017 4:52:17.399000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/6/2017 4:52:17.399000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('519', 0, 'searchAuthAccessControl', 'com.yugandhar.mdm.auth.searchAuthAccessControlService', 'process',
'searches if user is authorized to for given transaction. Wildcard searches are not allowed in this transaction considering the fact that this transaction is used for performing authorization', TO_TIMESTAMP('10/9/2017 6:22:25.240000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/9/2017 6:22:25.240000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('529', 0, 'createRefMatchScoreBase', 'com.yugandhar.mdm.match.componentref.RefMatchScoreService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 2:35:22.917000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 2:35:22.917000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('530', 0, 'updateRefMatchScoreBase', 'com.yugandhar.mdm.match.componentref.RefMatchScoreService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 2:35:23.005000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 2:35:23.005000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('531', 0, 'retrieveRefMatchScoreBase', 'com.yugandhar.mdm.match.componentref.RefMatchScoreService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 2:35:23.034000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 2:35:23.034000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('532', 0, 'findRefMatchScoreByBusinessKeyBase', 'com.yugandhar.mdm.match.componentref.RefMatchScoreService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('10/30/2017 2:35:23.079000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 2:35:23.079000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('248', 0, 'updateRefBranchCodeBase', 'com.yugandhar.mdm.corecomponentref.RefBranchCodeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:21:43.255000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:21:43.255000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('249', 0, 'retrieveRefBranchCodeBase', 'com.yugandhar.mdm.corecomponentref.RefBranchCodeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:21:43.324000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:21:43.324000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('250', 0, 'findRefBranchCodeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefBranchCodeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:21:43.384000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:21:43.384000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('251', 0, 'findAllRefBranchCodeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefBranchCodeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:21:43.436000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:21:43.436000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('252', 0, 'createRefClassificationCodeBase', 'com.yugandhar.mdm.corecomponentref.RefClassificationCodeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:22:56.231000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:22:56.231000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('253', 0, 'updateRefClassificationCodeBase', 'com.yugandhar.mdm.corecomponentref.RefClassificationCodeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:22:56.299000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:22:56.299000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('254', 0, 'retrieveRefClassificationCodeBase', 'com.yugandhar.mdm.corecomponentref.RefClassificationCodeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:22:56.363000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:22:56.363000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('255', 0, 'findRefClassificationCodeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefClassificationCodeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:22:56.432000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:22:56.432000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('256', 0, 'findAllRefClassificationCodeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefClassificationCodeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:22:56.510000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:22:56.510000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('257', 0, 'createRefCorporationNameTypeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationNameTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:24:03.547000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:24:03.547000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('258', 0, 'updateRefCorporationNameTypeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationNameTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:24:03.644000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:24:03.644000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('259', 0, 'retrieveRefCorporationNameTypeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationNameTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:24:03.719000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:24:03.719000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('260', 0, 'findRefCorporationNameTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationNameTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:24:03.775000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:24:03.775000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('261', 0, 'findAllRefCorporationNameTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationNameTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:24:03.869000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:24:03.869000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('262', 0, 'createRefCorporationTypeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:25:25.282000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:25:25.282000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('263', 0, 'updateRefCorporationTypeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:25:25.354000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:25:25.354000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('264', 0, 'retrieveRefCorporationTypeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:25:25.532000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:25:25.532000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('265', 0, 'findRefCorporationTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:25:25.613000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:25:25.613000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('266', 0, 'findAllRefCorporationTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefCorporationTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:25:25.681000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:25:25.681000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('267', 0, 'createRefCountryIsoBase', 'com.yugandhar.mdm.corecomponentref.RefCountryIsoService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:26:30.589000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:26:30.589000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('268', 0, 'updateRefCountryIsoBase', 'com.yugandhar.mdm.corecomponentref.RefCountryIsoService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:26:30.648000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:26:30.648000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('269', 0, 'retrieveRefCountryIsoBase', 'com.yugandhar.mdm.corecomponentref.RefCountryIsoService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:26:30.720000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:26:30.720000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('270', 0, 'findRefCountryIsoByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefCountryIsoService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:26:30.777000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:26:30.777000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('271', 0, 'findAllRefCountryIsoByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefCountryIsoService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:26:30.837000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:26:30.837000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('272', 0, 'createRefCurrencyBase', 'com.yugandhar.mdm.corecomponentref.RefCurrencyService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:27:39.491000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:27:39.491000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('273', 0, 'updateRefCurrencyBase', 'com.yugandhar.mdm.corecomponentref.RefCurrencyService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:27:39.557000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:27:39.557000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('274', 0, 'retrieveRefCurrencyBase', 'com.yugandhar.mdm.corecomponentref.RefCurrencyService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:27:39.628000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:27:39.628000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('275', 0, 'findRefCurrencyByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefCurrencyService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:27:39.688000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:27:39.688000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('276', 0, 'findAllRefCurrencyByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefCurrencyService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:27:39.750000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:27:39.750000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('277', 0, 'createRefDeactivationReasonBase', 'com.yugandhar.mdm.corecomponentref.RefDeactivationReasonService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:28:46.954000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:28:46.954000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('278', 0, 'updateRefDeactivationReasonBase', 'com.yugandhar.mdm.corecomponentref.RefDeactivationReasonService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:28:47.030000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:28:47.030000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('279', 0, 'retrieveRefDeactivationReasonBase', 'com.yugandhar.mdm.corecomponentref.RefDeactivationReasonService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:28:47.115000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:28:47.115000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('280', 0, 'findRefDeactivationReasonByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefDeactivationReasonService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:28:47.158000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:28:47.158000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('281', 0, 'findAllRefDeactivationReasonByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefDeactivationReasonService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:28:47.239000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:28:47.239000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('282', 0, 'createRefGenderBase', 'com.yugandhar.mdm.corecomponentref.RefGenderService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:29:50.523000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:29:50.523000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('283', 0, 'updateRefGenderBase', 'com.yugandhar.mdm.corecomponentref.RefGenderService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:29:50.586000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:29:50.586000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('284', 0, 'retrieveRefGenderBase', 'com.yugandhar.mdm.corecomponentref.RefGenderService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:29:50.678000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:29:50.678000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('285', 0, 'findRefGenderByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefGenderService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:29:50.748000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:29:50.748000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('286', 0, 'findAllRefGenderByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefGenderService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:29:50.813000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:29:50.813000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('287', 0, 'createRefGroupSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupSubtypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:30:51.509000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:30:51.509000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('288', 0, 'updateRefGroupSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupSubtypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:30:51.558000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:30:51.558000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('289', 0, 'retrieveRefGroupSubtypeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupSubtypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:30:51.624000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:30:51.624000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('290', 0, 'findRefGroupSubtypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefGroupSubtypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:30:51.679000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:30:51.679000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('291', 0, 'findAllRefGroupSubtypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupSubtypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:30:51.743000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:30:51.743000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('292', 0, 'createRefGroupTypeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:32:24.167000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:32:24.167000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('293', 0, 'updateRefGroupTypeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:32:24.226000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:32:24.226000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('294', 0, 'retrieveRefGroupTypeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:32:24.314000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:32:24.314000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('295', 0, 'findRefGroupTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefGroupTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:32:24.389000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:32:24.389000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('296', 0, 'findAllRefGroupTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefGroupTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:32:24.455000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:32:24.455000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('297', 0, 'createRefHighestEduQualBase', 'com.yugandhar.mdm.corecomponentref.RefHighestEduQualService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:33:39.160000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:33:39.160000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('298', 0, 'updateRefHighestEduQualBase', 'com.yugandhar.mdm.corecomponentref.RefHighestEduQualService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:33:39.223000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:33:39.223000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('299', 0, 'retrieveRefHighestEduQualBase', 'com.yugandhar.mdm.corecomponentref.RefHighestEduQualService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:33:39.300000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:33:39.300000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('300', 0, 'findRefHighestEduQualByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefHighestEduQualService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:33:39.377000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:33:39.377000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('301', 0, 'findAllRefHighestEduQualByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefHighestEduQualService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:33:39.427000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:33:39.427000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('311', 0, 'createLegalEntity', 'com.yugandhar.mdm.composite.service.CreateLegalEntityService', 'process',
'create Legal Entity composite Service', TO_TIMESTAMP('7/3/2017 3:51:38.238000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/3/2017 3:51:38.238000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('312', 0, 'createLePerson', 'com.yugandhar.mdm.composite.service.CreateLePersonService', 'process',
'create Legal Entity of person type', TO_TIMESTAMP('7/3/2017 4:47:01.482000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/3/2017 4:47:01.482000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('313', 0, 'retrieveLePersonByLegalEntityId', 'com.yugandhar.mdm.composite.service.RetrieveLePersonByLegalEntityIdService', 'process',
'Retrieve Person by Legal Entity Id', TO_TIMESTAMP('7/5/2017 4:37:16.239000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/5/2017 4:37:16.239000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('314', 0, 'retrieveLegalEntityByLegalEntityId', 'com.yugandhar.mdm.composite.service.RetrieveLegalEntityByLegalEntityIdService', 'process',
'Retrieve Legal Entity by Legal Entity Id', TO_TIMESTAMP('7/5/2017 4:56:11.341000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/5/2017 4:56:11.341000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('315', 0, 'findPersonnamesByLegalEntityIdBase', 'com.yugandhar.mdm.corecomponent.PersonnamesService', 'findByLegalEntityIdPk',
'Retrieve Legal Entity by Legal Entity Id', TO_TIMESTAMP('7/7/2017 5:35:16.130000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/7/2017 5:35:16.130000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('316', 0, 'updateLePerson', 'com.yugandhar.mdm.composite.service.UpdateLePersonService', 'process',
'update LE Person by Legal Entity Id', TO_TIMESTAMP('7/10/2017 1:52:56.007000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/10/2017 1:52:56.007000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('317', 0, 'updateLegalEntity', 'com.yugandhar.mdm.composite.service.UpdateLegalEntityService', 'process',
'update LE by Legal Entity Id', TO_TIMESTAMP('7/10/2017 6:00:04.091000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/10/2017 6:00:04.091000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('318', 0, 'findCorporationnamesByLegalEntityIdBase', 'com.yugandhar.mdm.corecomponent.CorporationnamesService', 'findByLegalEntityIdPk',
'find Corporation names By Legal Entity Idpk', TO_TIMESTAMP('7/11/2017 12:48:49.973000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/11/2017 12:48:49.973000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('319', 0, 'updateLeCorporation', 'com.yugandhar.mdm.composite.service.UpdateLeCorporationService', 'process',
'update Corporation type of Legal Entity', TO_TIMESTAMP('7/11/2017 12:49:56.954000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/11/2017 12:49:56.954000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('320', 0, 'createLeCorporation', 'com.yugandhar.mdm.composite.service.CreateLeCorporationService', 'process',
'create Corporation type of Legal Entity', TO_TIMESTAMP('7/11/2017 12:56:58.771000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/11/2017 12:56:58.771000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('321', 0, 'retrieveLeCorporationByLegalEntityId', 'com.yugandhar.mdm.composite.service.RetrieveLeCorporationByLegalEntityIdService', 'process',
'Retrieve Corporation type of Legal Entity', TO_TIMESTAMP('7/11/2017 12:59:22.578000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/11/2017 12:59:22.578000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('322', 0, 'createLeAddressAssociation', 'com.yugandhar.mdm.composite.service.CreateLeAddressService', 'process',
'create an address association for Legal Entity', TO_TIMESTAMP('7/11/2017 5:53:33.798000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/11/2017 5:53:33.798000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('323', 0, 'updateLeAddressAssociation', 'com.yugandhar.mdm.composite.service.UpdateLeAddressService', 'process',
'updates an address association for Legal Entity', TO_TIMESTAMP('7/12/2017 3:34:24.565000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/12/2017 3:34:24.565000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('324', 0, 'retrieveLeAddressByLeAddressAssocId', 'com.yugandhar.mdm.composite.service.RetrieveLeAddressByLeAddressAssocIdService', 'process',
'Retrieve LE address association by LeAddressAssocIdPk', TO_TIMESTAMP('7/13/2017 12:36:03.438000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/13/2017 12:36:03.438000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('325', 0, 'findLeAddressByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LeAddressAssocService', 'findByLegalEntityIdPk',
'Retrieve LE address association by LegalentityIdPk', TO_TIMESTAMP('7/13/2017 1:52:14.538000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/13/2017 1:52:14.538000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('326', 0, 'findAllLeAddressAssocByLegalEntityId', 'com.yugandhar.mdm.composite.service.FindAllLeAddressByLegalEntityIdService', 'process',
'Find All address association for the LE by LegalentityIdPk', TO_TIMESTAMP('7/13/2017 2:38:01.870000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/13/2017 2:38:01.870000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('327', 0, 'createLePhoneAssociation', 'com.yugandhar.mdm.composite.service.CreateLePhoneService', 'process',
'create LE to phone association also stores standardized phone number if present', TO_TIMESTAMP('7/13/2017 4:35:01.357000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/13/2017 4:35:01.357000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('329', 0, 'retrieveLePhoneByLePhoneAssocId', 'com.yugandhar.mdm.composite.service.RetrieveLePhoneByLePhoneAssocIdService', 'process',
'Retrieve LE to phone association also retrieves standardized phone number if present', TO_TIMESTAMP('7/14/2017 12:06:15.001000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/14/2017 12:06:15.001000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('330', 0, 'findLePhoneAssocByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LePhoneAssocService', 'findByLegalEntityIdPk',
'Find all LE to phone association by legal entity Id', TO_TIMESTAMP('7/14/2017 12:23:46.489000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/14/2017 12:23:46.489000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('331', 0, 'findAllLePhoneAssocByLegalEntityId', 'com.yugandhar.mdm.composite.service.FindAllLePhoneByLegalEntityIdService', 'process',
'Find all LE to phone association by legal entity Id and retrieve the PhoneStandardized DO if present', TO_TIMESTAMP('7/14/2017 12:39:19.736000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/14/2017 12:39:19.736000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('333', 0, 'findLeSystemKeysRegistryByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LeSystemKeysRegistryService', 'findByLegalEntityIdPk',
'Retrieve LE to phone association also retrieves standardized phone number if present', TO_TIMESTAMP('7/14/2017 10:32:55.923000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/14/2017 10:32:55.923000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('337', 0, 'findLePreferencesByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LePreferencesService', 'findByLegalEntityIdPk',
'Retrieve LE preferences by Legal Entity Id', TO_TIMESTAMP('7/15/2017 2:38:09.459000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 2:38:09.459000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('338', 0, 'findLeIdentifierKycRegistryByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LeIdentifierKycRegistryService', 'findByLegalEntityIdPk',
'Retrieve LeIdentifierKycRegistry by Legal Entity Id', TO_TIMESTAMP('7/15/2017 2:45:06.492000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 2:45:06.492000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('339', 0, 'findLeAccountAssocByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LeAccountAssocService', 'findByLegalEntityIdPk',
'find LeAccountAssoc by Legal Entity Id', TO_TIMESTAMP('7/15/2017 3:44:11.394000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 3:44:11.394000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('340', 0, 'findLePropertyAssocByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LePropertyAssocService', 'findByLegalEntityIdPk',
'find LePropertyAssoc by Legal Entity Id', TO_TIMESTAMP('7/15/2017 3:50:01.823000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 3:50:01.823000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('341', 0, 'findLeVehicleAssocByLegalEntityIdPkBase', 'com.yugandhar.mdm.corecomponent.LeVehicleAssocService', 'findByLegalEntityIdPk',
'find LeVehicleAssoc by Legal Entity Id', TO_TIMESTAMP('7/15/2017 3:55:41.028000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 3:55:41.028000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('342', 0, 'retrieveLeAccountLeAccountAssocId', 'com.yugandhar.mdm.composite.service.RetrieveLeAccountByLeAccountAssocIdService', 'process',
'retrieve LE account association with AccountDO object', TO_TIMESTAMP('7/15/2017 4:26:37.467000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 4:26:37.467000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('343', 0, 'retrieveLePropertyByLePropertyAssocId', 'com.yugandhar.mdm.composite.service.RetrieveLePropertyByLePropertyAssocIdService', 'process',
'retrieve LE property association with PropertyDO object', TO_TIMESTAMP('7/15/2017 4:28:10.978000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 4:28:10.978000 AM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('347', 0, 'retrieveLeVehicleLeVehicleAssocId', 'com.yugandhar.mdm.composite.service.RetrieveLeVehicleLeVehicleAssocIdService', 'process',
'retrieve LeVehicle association with VehicleDO object', TO_TIMESTAMP('7/15/2017 11:37:51.946000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/15/2017 11:37:51.946000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('357', 0, 'findAllLeAccountAssocByLegalEntityId', 'com.yugandhar.mdm.composite.service.FindAllLeAccountByLegalEntityIdService', 'process',
'find All LeAccount By LegalEntityIdPk', TO_TIMESTAMP('7/16/2017 1:19:41.572000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 1:19:41.572000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('358', 0, 'findAllLePropertyAssocByLegalEntityId', 'com.yugandhar.mdm.composite.service.FindAllLePropertyByLegalEntityIdService', 'process',
'find All LeProperty By LegalEntityIdPk', TO_TIMESTAMP('7/16/2017 1:20:12.500000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 1:20:12.500000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('359', 0, 'findAllLeVehicleAssocByLegalEntityId', 'com.yugandhar.mdm.composite.service.FindAllLeVehicleByLegalEntityIdService', 'process',
'find All LeVehicle By LegalEntityIdPk', TO_TIMESTAMP('7/16/2017 1:20:37.855000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 1:20:37.855000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('360', 0, 'createLeAccountAssociation', 'com.yugandhar.mdm.composite.service.CreateLeAccountService', 'process',
'create LeAccount association along with AccountDO record if present', TO_TIMESTAMP('7/16/2017 2:18:21.464000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 2:18:21.464000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('361', 0, 'createLeVehicleAssociation', 'com.yugandhar.mdm.composite.service.CreateLeVehicleService', 'process',
'create LeVehicle association along withVehicleDO record if present', TO_TIMESTAMP('7/16/2017 2:18:21.554000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 2:18:21.554000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('362', 0, 'createLePropertyAssociation', 'com.yugandhar.mdm.composite.service.CreateLePropertyService', 'process',
'create LeProperty association along with PropertyDO record if present', TO_TIMESTAMP('7/16/2017 2:18:21.585000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 2:18:21.585000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('364', 0, 'updateLeAccountAssociation', 'com.yugandhar.mdm.composite.service.UpdateLeAccountService', 'process',
'updates LeAccount association along with AccountDO record if present', TO_TIMESTAMP('7/16/2017 2:34:41.680000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 2:34:41.680000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('365', 0, 'updateLeVehicleAssociation', 'com.yugandhar.mdm.composite.service.UpdateLeVehicleService', 'process',
'updates LeVehicle association along withVehicleDO record if present', TO_TIMESTAMP('7/16/2017 2:34:41.719000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 2:34:41.719000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('366', 0, 'updateLePropertyAssociation', 'com.yugandhar.mdm.composite.service.UpdateLePropertyService', 'process',
'updates LeProperty association along with PropertyDO record if present', TO_TIMESTAMP('7/16/2017 2:34:41.743000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/16/2017 2:34:41.743000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('367', 0, 'createAccountAddressAssociation', 'com.yugandhar.mdm.composite.service.CreateAccountAddressService', 'process',
'create account address', TO_TIMESTAMP('7/23/2017 1:55:41.101000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/23/2017 1:55:41.101000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('368', 0, 'createAccountPhoneAssociation', 'com.yugandhar.mdm.composite.service.CreateAccountPhoneService', 'process',
'create account phone association', TO_TIMESTAMP('7/23/2017 2:01:37.574000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/23/2017 2:01:37.574000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('369', 0, 'retrieveAccountAddressByAccountAddressAssocId', 'com.yugandhar.mdm.composite.service.RetrieveAccountAddressByAccountAddressAssocIdService', 'process',
'retrieve account Address association', TO_TIMESTAMP('7/23/2017 3:44:36.871000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/23/2017 3:44:36.871000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('370', 0, 'retrieveAccountPhoneByAccountPhoneAssocId', 'com.yugandhar.mdm.composite.service.RetrieveAccountPhoneByAccountPhoneAssocIdService', 'process',
'retrieve account Phone association', TO_TIMESTAMP('7/23/2017 3:45:19.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/23/2017 3:45:19.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('371', 0, 'updateLePhoneAssociation', 'com.yugandhar.mdm.composite.service.UpdateLePhoneService', 'process',
'update Le Phone association', TO_TIMESTAMP('7/24/2017 12:52:24.403000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/24/2017 12:52:24.403000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('373', 0, 'updateAccountPhoneAssociation', 'com.yugandhar.mdm.composite.service.UpdateAccountPhoneService', 'process',
'update Account Phone association', TO_TIMESTAMP('7/24/2017 12:52:58.839000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/24/2017 12:52:58.839000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('374', 0, 'updateAccountAddressAssociation', 'com.yugandhar.mdm.composite.service.UpdateAccountAddressService', 'process',
'update Account Address association', TO_TIMESTAMP('7/24/2017 2:11:38.139000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/24/2017 2:11:38.139000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('183', 0, 'updateRefSourceSystemBase', 'com.yugandhar.mdm.corecomponentref.RefSourceSystemService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:05:10.835000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:05:10.835000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('184', 0, 'retrieveRefSourceSystemBase', 'com.yugandhar.mdm.corecomponentref.RefSourceSystemService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:05:10.903000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:05:10.903000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('185', 0, 'findRefSourceSystemByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefSourceSystemService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:05:10.965000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:05:10.965000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('186', 0, 'findAllRefSourceSystemByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefSourceSystemService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:05:11.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:05:11.032000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('187', 0, 'createRefStateProvinceBase', 'com.yugandhar.mdm.corecomponentref.RefStateProvinceService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:06:41.352000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:06:41.352000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('188', 0, 'updateRefStateProvinceBase', 'com.yugandhar.mdm.corecomponentref.RefStateProvinceService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:06:41.406000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:06:41.406000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('189', 0, 'retrieveRefStateProvinceBase', 'com.yugandhar.mdm.corecomponentref.RefStateProvinceService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:06:41.528000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:06:41.528000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('190', 0, 'findRefStateProvinceByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefStateProvinceService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:06:41.592000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:06:41.592000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('191', 0, 'findAllRefStateProvinceByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefStateProvinceService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:06:41.679000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:06:41.679000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('192', 0, 'createRefStatusInSourceBase', 'com.yugandhar.mdm.corecomponentref.RefStatusInSourceService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:08:03.828000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:08:03.828000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('193', 0, 'updateRefStatusInSourceBase', 'com.yugandhar.mdm.corecomponentref.RefStatusInSourceService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:08:03.894000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:08:03.894000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('194', 0, 'retrieveRefStatusInSourceBase', 'com.yugandhar.mdm.corecomponentref.RefStatusInSourceService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:08:03.966000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:08:03.966000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('195', 0, 'findRefStatusInSourceByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefStatusInSourceService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:08:04.023000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:08:04.023000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('196', 0, 'findAllRefStatusInSourceByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefStatusInSourceService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:08:04.102000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:08:04.102000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('197', 0, 'createRefStatusTypeBase', 'com.yugandhar.mdm.corecomponentref.RefStatusTypeService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:09:13.327000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:09:13.327000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('198', 0, 'updateRefStatusTypeBase', 'com.yugandhar.mdm.corecomponentref.RefStatusTypeService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:09:13.395000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:09:13.395000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('199', 0, 'retrieveRefStatusTypeBase', 'com.yugandhar.mdm.corecomponentref.RefStatusTypeService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:09:13.478000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:09:13.478000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('200', 0, 'findRefStatusTypeByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefStatusTypeService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:09:13.535000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:09:13.535000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('201', 0, 'findAllRefStatusTypeByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefStatusTypeService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:09:13.577000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:09:13.577000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('202', 0, 'createRefSuffixNameBase', 'com.yugandhar.mdm.corecomponentref.RefSuffixNameService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:10:37.950000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:10:37.950000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('203', 0, 'updateRefSuffixNameBase', 'com.yugandhar.mdm.corecomponentref.RefSuffixNameService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:10:38.004000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:10:38.004000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('204', 0, 'retrieveRefSuffixNameBase', 'com.yugandhar.mdm.corecomponentref.RefSuffixNameService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:10:38.112000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:10:38.112000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('205', 0, 'findRefSuffixNameByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefSuffixNameService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:10:38.202000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:10:38.202000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('206', 0, 'findAllRefSuffixNameByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefSuffixNameService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:10:38.265000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:10:38.265000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('207', 0, 'createRefTerminationReasonBase', 'com.yugandhar.mdm.corecomponentref.RefTerminationReasonService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:12:04.219000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:12:04.219000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('208', 0, 'updateRefTerminationReasonBase', 'com.yugandhar.mdm.corecomponentref.RefTerminationReasonService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:12:04.294000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:12:04.294000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('209', 0, 'retrieveRefTerminationReasonBase', 'com.yugandhar.mdm.corecomponentref.RefTerminationReasonService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:12:04.357000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:12:04.357000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('210', 0, 'findRefTerminationReasonByBusinessKeyBase', 'com.yugandhar.mdm.corecomponentref.RefTerminationReasonService', 'findByBusinessKey',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:12:04.430000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:12:04.430000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('211', 0, 'findAllRefTerminationReasonByLanguageCodeBase', 'com.yugandhar.mdm.corecomponentref.RefTerminationReasonService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('7/1/2017 10:12:04.515000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:12:04.515000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('212', 0, 'createRefAccountMdmStatusBase', 'com.yugandhar.mdm.corecomponentref.RefAccountMdmStatusService', 'add',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:13:20.200000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:13:20.200000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('213', 0, 'updateRefAccountMdmStatusBase', 'com.yugandhar.mdm.corecomponentref.RefAccountMdmStatusService', 'merge',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:13:20.251000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:13:20.251000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('214', 0, 'retrieveRefAccountMdmStatusBase', 'com.yugandhar.mdm.corecomponentref.RefAccountMdmStatusService', 'findById',
'find by business key method search properties based on transaction Name', TO_TIMESTAMP('7/1/2017 10:13:20.327000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('7/1/2017 10:13:20.327000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('565', 0, 'updateInactiveLeRegistryBase', 'com.yugandhar.mdm.match.component.InactiveLeRegistryService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 5:57:18.545000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:18.545000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('566', 0, 'retrieveInactiveLeRegistryBase', 'com.yugandhar.mdm.match.component.InactiveLeRegistryService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 5:57:18.579000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:18.579000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('567', 0, 'createMatchCandidateLeRegistryBase', 'com.yugandhar.mdm.match.component.MatchCandidateLeRegistryService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 5:57:32.140000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:32.140000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('568', 0, 'updateMatchCandidateLeRegistryBase', 'com.yugandhar.mdm.match.component.MatchCandidateLeRegistryService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 5:57:32.162000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:32.162000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('569', 0, 'retrieveMatchCandidateLeRegistryBase', 'com.yugandhar.mdm.match.component.MatchCandidateLeRegistryService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 5:57:32.186000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:32.186000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('570', 0, 'createMatchMergedLeAssocBase', 'com.yugandhar.mdm.match.component.MatchMergedLeAssocService', 'add',
'create record in the database', TO_TIMESTAMP('10/30/2017 5:57:41.235000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:41.235000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('571', 0, 'updateMatchMergedLeAssocBase', 'com.yugandhar.mdm.match.component.MatchMergedLeAssocService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 5:57:41.257000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:41.257000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('572', 0, 'retrieveMatchMergedLeAssocBase', 'com.yugandhar.mdm.match.component.MatchMergedLeAssocService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('10/30/2017 5:57:41.281000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('10/30/2017 5:57:41.281000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('573', 0, 'searchInactiveLeRegistryBase', 'com.yugandhar.mdm.composite.service.SearchInactiveLeRegistryBase', 'process',
'search all records of INACTIVE_LE_REGISTRY table based on LegalentityIdpk or inactivationReasonRefkey or both ', TO_TIMESTAMP('11/2/2017 2:57:32.071000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('11/2/2017 2:57:32.071000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('574', 0, 'searchMatchCandidateLeRegistryBase', 'com.yugandhar.mdm.composite.service.SearchMatchCandidateLeRegistryBase', 'process',
'search all records of MATCH_CANDIDATE_LE_REGISTRY table based on legalentityidpk candidateLegalentityidpk or matchPattern or matchProposedActionRefkey or matchActionstatusRefkey or all attributes', TO_TIMESTAMP('11/2/2017 4:19:13.545000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('11/2/2017 4:19:13.545000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('575', 0, 'searchMatchMergedLeAssocBase', 'com.yugandhar.mdm.composite.service.SearchMatchMergedLeAssocBase', 'process',
'search all records of MATCH_MERGED_LE_ASSOC table based on survivorLegalentityIdpk or mergedLegalentityIdpk or mergeReasonRefkey or all ', TO_TIMESTAMP('11/2/2017 4:56:47.199000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('11/2/2017 4:56:47.199000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('576', 0, 'searchMatchCandidateLE', 'com.yugandhar.mdm.composite.service.SearchMatchCandidateLEService', 'process',
'searchMatchCandidateLEService', TO_TIMESTAMP('11/3/2017 7:45:48.047000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('11/3/2017 7:45:48.047000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('577', 0, 'performLeMatch', 'com.yugandhar.mdm.composite.service.PerformLeMatchService', 'process',
'Performs the Legal Entity matching and create candidates', TO_TIMESTAMP('12/11/2017 1:37:37.809000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/11/2017 1:37:37.809000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('579', 0, 'createBatchEntityToProcessBase', 'com.yugandhar.mdm.batch.component.BatchEntityToProcessService', 'add',
'create record in the database', TO_TIMESTAMP('12/12/2017 6:48:55.137000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 6:48:55.137000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('580', 0, 'updateBatchEntityToProcessBase', 'com.yugandhar.mdm.batch.component.BatchEntityToProcessService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('12/12/2017 6:48:55.164000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 6:48:55.164000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('581', 0, 'retrieveBatchEntityToProcessBase', 'com.yugandhar.mdm.batch.component.BatchEntityToProcessService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('12/12/2017 6:48:55.298000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 6:48:55.298000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('582', 0, 'createRefBatchActionStatusBase', 'com.yugandhar.mdm.batch.componentref.RefBatchActionStatusService', 'add',
'create record in the database', TO_TIMESTAMP('12/12/2017 7:06:03.907000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:03.907000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('583', 0, 'updateRefBatchActionStatusBase', 'com.yugandhar.mdm.batch.componentref.RefBatchActionStatusService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('12/12/2017 7:06:03.943000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:03.943000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('584', 0, 'retrieveRefBatchActionStatusBase', 'com.yugandhar.mdm.batch.componentref.RefBatchActionStatusService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('12/12/2017 7:06:03.973000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:03.973000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('585', 0, 'findRefBatchActionStatusByBusinessKeyBase', 'com.yugandhar.mdm.batch.componentref.RefBatchActionStatusService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('12/12/2017 7:06:04.000000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:04.000000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('586', 0, 'findAllRefBatchActionStatusByLanguageCodeBase', 'com.yugandhar.mdm.batch.componentref.RefBatchActionStatusService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('12/12/2017 7:06:04.045000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:04.045000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('587', 0, 'createRefBatchProposedActionBase', 'com.yugandhar.mdm.batch.componentref.RefBatchProposedActionService', 'add',
'create record in the database', TO_TIMESTAMP('12/12/2017 7:06:24.778000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:24.778000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('588', 0, 'updateRefBatchProposedActionBase', 'com.yugandhar.mdm.batch.componentref.RefBatchProposedActionService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('12/12/2017 7:06:24.810000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:24.810000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('589', 0, 'retrieveRefBatchProposedActionBase', 'com.yugandhar.mdm.batch.componentref.RefBatchProposedActionService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('12/12/2017 7:06:24.837000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:24.837000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('590', 0, 'findRefBatchProposedActionByBusinessKeyBase', 'com.yugandhar.mdm.batch.componentref.RefBatchProposedActionService', 'findByBusinessKey',
'find the unique record from dababase based on by business key', TO_TIMESTAMP('12/12/2017 7:06:24.860000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:24.860000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('591', 0, 'findAllRefBatchProposedActionByLanguageCodeBase', 'com.yugandhar.mdm.batch.componentref.RefBatchProposedActionService', 'findAllRecordsByLanguageCode',
'find All records by language code', TO_TIMESTAMP('12/12/2017 7:06:24.885000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('12/12/2017 7:06:24.885000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('100000', 0, 'createFacilitydemoBase', 'com.yugandhar.mdm.facilitydemo.FacilitydemoService', 'add',
'create record in the database', TO_TIMESTAMP('1/3/2018 1:50:40.855000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('1/3/2018 1:50:40.855000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('100001', 0, 'updateFacilitydemoBase', 'com.yugandhar.mdm.facilitydemo.FacilitydemoService', 'merge',
'update the database record based on primary key i.e. idpk', TO_TIMESTAMP('1/3/2018 1:50:41.260000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('1/3/2018 1:50:41.260000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
Insert into YUG_OWNER.CONFIG_TXN_REGISTRY
(ID_PK, VERSION, TXNSERVICE_NAME, TXNSERVICE_CLASS, TXNSERVICE_CLASSMETHOD, DESCRIPTION, CREATED_TS, UPDATED_TS, UPDATED_BY_USER, UPDATED_TXN_REF_ID)
Values
('100002', 0, 'retrieveFacilitydemoBase', 'com.yugandhar.mdm.facilitydemo.FacilitydemoService', 'findById',
'retrieve the record from database based on primary key i.e. idpk', TO_TIMESTAMP('1/3/2018 1:50:41.290000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), TO_TIMESTAMP('1/3/2018 1:50:41.290000 PM','fmMMfm/fmDDfm/YYYY fmHH12fm:MI:SS.FF AM'), 'Generator', '000000000');
COMMIT;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.