diff --git a/README.md b/README.md index c3d229d..67bbbce 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ Obsahuje skripty pre vytvorenie a konfiguráciu lokálnej VM prostredníctvom [m ## Inicializácia Stiahnutie skriptov a konfiguračných súborov do cieľového adresára ``. -``` +```bash git clone https://gitea.egroup.sk/development/zdc-tools --depth 1 --branch master /zdc-tools ``` ### Nastavenie oprávnení -``` +```bash cd /zdc-tools chmod +x *.sh @@ -40,7 +40,7 @@ Prostrednícvom skriptu sú príkazmi `multipass exec` konfigurované jednotliv ### Spustenie skriptu -``` +```bash ./vm-create.sh ``` @@ -48,28 +48,47 @@ Prostrednícvom skriptu sú príkazmi `multipass exec` konfigurované jednotliv ## Vytvorenie novej databázy ### Popis skriptu -Skript `vm-new-db.sh` umožňuje vytvoriť novú databázu zo šablóny. +Skript `vm-db-create.sh` umožňuje vytvoriť novú databázu zo šablóny. ### Parametre skriptu - `` - názov existujúceho virtuálneho servera - `` - názov novej databázy ### Spustenie skriptu -``` -./vm-new-db.sh +```bash +./vm-db-create.sh ``` -## Aktualizácia kódu z gitea repozitára +## Aktualizácia kódu platformy z gitea repozitára ### Popis skriptu -Skript `vm-update-git.sh` umožňuje vytvoriť aktualizovať inštalácie zdc-odoo a zdc-oca-addons z gitea repositára. +Skript `vm-zdc-update.sh` umožňuje aktualizovať existujúce inštalácie **zdc-core-addons** a **zdc-oca-addons** z gitea repozitára. ### Parametre skriptu - `` - názov existujúceho virtuálneho servera ### Spustenie skriptu -``` -./vm-update-git.sh +```bash +./vm-zdc-update.sh + +``` + +## Aktualizácia development z gitea repozitára + +### Popis skriptu +Pri novej inštalácii sa vývojový adresár inicializuje z **master** vetvy. Skript `vm-dev-update.sh` umožňuje aktualizovať vývojový adresár z **dev** vetvy gitea repozitára. Pri vývoji si každý vývojár vytvorí vlastnú vetvu, v ktorej priebežne zapisuje svoje zmeny a následne ju spojí do **dev** vetvy. Spojenie do **master** vetvy môže potvrdiť len administrátor. + +### Parametre skriptu +- `` - názov existujúceho virtuálneho servera + +### Interné premenné +Slúžia na vlastné prispôsobenie skriptu pre nastavenie aktuálne používaného repozitára pre vývoj. +- `` - názov používaného repozitára pre vývoj +- `` - názov používanej vetvy (branch) + +### Spustenie skriptu +```bash +./vm-dev-update.sh ``` diff --git a/cloud-init/zdc-odoo-init.yaml b/cloud-init/zdc-odoo-init.yaml index af42483..8bdd731 100755 --- a/cloud-init/zdc-odoo-init.yaml +++ b/cloud-init/zdc-odoo-init.yaml @@ -10,6 +10,7 @@ packages: - curl - git - wget +- unzip - python3-pip - build-essential - python3-dev @@ -26,11 +27,12 @@ packages: # boot commands # These are like 'runcmd', but run very early in the boot process & run on every boot by default. bootcmd: - - echo $(whoami) > /root/boot.txt +- echo $(whoami) > /root/boot.txt runcmd: # enable postgres - systemctl enable --now postgresql.service +# create db user - su - postgres -c "createuser -s ubuntu" # setup directories - sudo -u ubuntu mkdir /home/ubuntu/config diff --git a/config/odoo12.conf b/config/odoo12.conf index 2f99cbd..404c5fc 100644 --- a/config/odoo12.conf +++ b/config/odoo12.conf @@ -3,4 +3,4 @@ db_host = False db_port = False db_user = ubuntu db_password = False -addons_path = /home/ubuntu/odoo12/addons,/home/ubuntu/custom/zdc-oca-addons,/home/ubuntu/custom/dev-addons +addons_path = /home/ubuntu/custom/zdc-core-addons,/home/ubuntu/custom/zdc-oca-addons,/home/ubuntu/custom/dev-addons diff --git a/config/venv-install.sh b/config/venv-install.sh index 1eda867..6b0dda5 100644 --- a/config/venv-install.sh +++ b/config/venv-install.sh @@ -76,4 +76,11 @@ if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then fi pip3 install wheel -pip3 install -r /home/ubuntu/odoo12/requirements.txt +pip3 install -r /home/ubuntu/odoo12/requirements.txt ## for zdc-odoo +pip3 install python-ldap ## for ldap addons +pip3 install cerberus pyquerystring parse-accept-language ## for rest addons +pip3 install cachetools ## for connector addons +pip3 install altair bokeh ## for kpi dashboard addons +pip3 install zxcvbn ## for password security +pip3 install xlsxwriter xlrd ## for xlsx export +pip3 install sqlalchemy ## for mysql coonnection diff --git a/db/zdc-db-dump-v1.sql.gz b/db/zdc-db-dump-v1.sql.gz new file mode 100644 index 0000000..e4361a2 Binary files /dev/null and b/db/zdc-db-dump-v1.sql.gz differ diff --git a/db/zdc-db-filestore-v1.zip b/db/zdc-db-filestore-v1.zip new file mode 100644 index 0000000..5234297 Binary files /dev/null and b/db/zdc-db-filestore-v1.zip differ diff --git a/db/zdc-template-db.sql b/db/zdc-template-db.sql deleted file mode 100644 index 5aeee7f..0000000 --- a/db/zdc-template-db.sql +++ /dev/null @@ -1,24983 +0,0 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 10.14 (Ubuntu 10.14-0ubuntu0.18.04.1) --- Dumped by pg_dump version 10.14 (Ubuntu 10.14-0ubuntu0.18.04.1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: --- - -CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; - - --- --- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; - - --- --- Name: base_cache_signaling; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_cache_signaling - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_cache_signaling OWNER TO ubuntu; - -SET default_tablespace = ''; - -SET default_with_oids = false; - --- --- Name: base_import_import; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_import ( - id integer NOT NULL, - res_model character varying, - file bytea, - file_name character varying, - file_type character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_import OWNER TO ubuntu; - --- --- Name: TABLE base_import_import; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_import IS 'Base Import'; - - --- --- Name: COLUMN base_import_import.res_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.res_model IS 'Model'; - - --- --- Name: COLUMN base_import_import.file; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.file IS 'File'; - - --- --- Name: COLUMN base_import_import.file_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.file_name IS 'File Name'; - - --- --- Name: COLUMN base_import_import.file_type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.file_type IS 'File Type'; - - --- --- Name: COLUMN base_import_import.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_import.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_import.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_import.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_import.write_date IS 'Last Updated on'; - - --- --- Name: base_import_import_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_import_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_import_id_seq OWNER TO ubuntu; - --- --- Name: base_import_import_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_import_id_seq OWNED BY public.base_import_import.id; - - --- --- Name: base_import_mapping; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_mapping ( - id integer NOT NULL, - res_model character varying, - column_name character varying, - field_name character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_mapping OWNER TO ubuntu; - --- --- Name: TABLE base_import_mapping; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_mapping IS 'Base Import Mapping'; - - --- --- Name: COLUMN base_import_mapping.res_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.res_model IS 'Res Model'; - - --- --- Name: COLUMN base_import_mapping.column_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.column_name IS 'Column Name'; - - --- --- Name: COLUMN base_import_mapping.field_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.field_name IS 'Field Name'; - - --- --- Name: COLUMN base_import_mapping.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_mapping.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_mapping.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_mapping.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_mapping.write_date IS 'Last Updated on'; - - --- --- Name: base_import_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_mapping_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_mapping_id_seq OWNER TO ubuntu; - --- --- Name: base_import_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_mapping_id_seq OWNED BY public.base_import_mapping.id; - - --- --- Name: base_import_tests_models_char; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_char ( - id integer NOT NULL, - value character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_char OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_char; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_char IS 'Tests : Base Import Model, Character'; - - --- --- Name: COLUMN base_import_tests_models_char.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_char.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_char.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_char.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_char.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_char_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_char_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_char_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_char_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_char_id_seq OWNED BY public.base_import_tests_models_char.id; - - --- --- Name: base_import_tests_models_char_noreadonly; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_char_noreadonly ( - id integer NOT NULL, - value character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_char_noreadonly OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_char_noreadonly; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_char_noreadonly IS 'Tests : Base Import Model, Character No readonly'; - - --- --- Name: COLUMN base_import_tests_models_char_noreadonly.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_noreadonly.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_char_noreadonly.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_noreadonly.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_char_noreadonly.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_noreadonly.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_char_noreadonly.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_noreadonly.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_char_noreadonly.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_noreadonly.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_char_noreadonly_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_char_noreadonly_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_char_noreadonly_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_char_noreadonly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_char_noreadonly_id_seq OWNED BY public.base_import_tests_models_char_noreadonly.id; - - --- --- Name: base_import_tests_models_char_readonly; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_char_readonly ( - id integer NOT NULL, - value character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_char_readonly OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_char_readonly; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_char_readonly IS 'Tests : Base Import Model, Character readonly'; - - --- --- Name: COLUMN base_import_tests_models_char_readonly.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_readonly.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_char_readonly.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_readonly.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_char_readonly.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_readonly.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_char_readonly.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_readonly.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_char_readonly.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_readonly.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_char_readonly_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_char_readonly_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_char_readonly_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_char_readonly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_char_readonly_id_seq OWNED BY public.base_import_tests_models_char_readonly.id; - - --- --- Name: base_import_tests_models_char_required; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_char_required ( - id integer NOT NULL, - value character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_char_required OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_char_required; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_char_required IS 'Tests : Base Import Model, Character required'; - - --- --- Name: COLUMN base_import_tests_models_char_required.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_required.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_char_required.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_required.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_char_required.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_required.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_char_required.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_required.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_char_required.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_required.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_char_required_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_char_required_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_char_required_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_char_required_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_char_required_id_seq OWNED BY public.base_import_tests_models_char_required.id; - - --- --- Name: base_import_tests_models_char_states; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_char_states ( - id integer NOT NULL, - value character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_char_states OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_char_states; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_char_states IS 'Tests : Base Import Model, Character states'; - - --- --- Name: COLUMN base_import_tests_models_char_states.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_states.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_char_states.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_states.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_char_states.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_states.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_char_states.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_states.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_char_states.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_states.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_char_states_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_char_states_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_char_states_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_char_states_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_char_states_id_seq OWNED BY public.base_import_tests_models_char_states.id; - - --- --- Name: base_import_tests_models_char_stillreadonly; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_char_stillreadonly ( - id integer NOT NULL, - value character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_char_stillreadonly OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_char_stillreadonly; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_char_stillreadonly IS 'Tests : Base Import Model, Character still readonly'; - - --- --- Name: COLUMN base_import_tests_models_char_stillreadonly.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_stillreadonly.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_char_stillreadonly.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_stillreadonly.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_char_stillreadonly.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_stillreadonly.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_char_stillreadonly.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_stillreadonly.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_char_stillreadonly.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_char_stillreadonly.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_char_stillreadonly_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_char_stillreadonly_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_char_stillreadonly_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_char_stillreadonly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_char_stillreadonly_id_seq OWNED BY public.base_import_tests_models_char_stillreadonly.id; - - --- --- Name: base_import_tests_models_complex; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_complex ( - id integer NOT NULL, - f double precision, - m numeric, - c character varying, - currency_id integer, - d date, - dt timestamp without time zone, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_complex OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_complex; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_complex IS 'Tests: Base Import Model Complex'; - - --- --- Name: COLUMN base_import_tests_models_complex.f; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.f IS 'F'; - - --- --- Name: COLUMN base_import_tests_models_complex.m; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.m IS 'M'; - - --- --- Name: COLUMN base_import_tests_models_complex.c; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.c IS 'C'; - - --- --- Name: COLUMN base_import_tests_models_complex.currency_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.currency_id IS 'Currency'; - - --- --- Name: COLUMN base_import_tests_models_complex.d; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.d IS 'D'; - - --- --- Name: COLUMN base_import_tests_models_complex.dt; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.dt IS 'Dt'; - - --- --- Name: COLUMN base_import_tests_models_complex.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_complex.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_complex.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_complex.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_complex.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_complex_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_complex_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_complex_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_complex_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_complex_id_seq OWNED BY public.base_import_tests_models_complex.id; - - --- --- Name: base_import_tests_models_float; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_float ( - id integer NOT NULL, - value double precision, - value2 numeric, - currency_id integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_float OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_float; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_float IS 'Tests: Base Import Model Float'; - - --- --- Name: COLUMN base_import_tests_models_float.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_float.value2; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.value2 IS 'Value2'; - - --- --- Name: COLUMN base_import_tests_models_float.currency_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.currency_id IS 'Currency'; - - --- --- Name: COLUMN base_import_tests_models_float.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_float.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_float.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_float.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_float.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_float_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_float_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_float_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_float_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_float_id_seq OWNED BY public.base_import_tests_models_float.id; - - --- --- Name: base_import_tests_models_m2o; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_m2o ( - id integer NOT NULL, - value integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_m2o OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_m2o; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_m2o IS 'Tests : Base Import Model, Many to One'; - - --- --- Name: COLUMN base_import_tests_models_m2o.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_m2o.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_m2o.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_m2o.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_m2o.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_m2o_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_m2o_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_m2o_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_m2o_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_m2o_id_seq OWNED BY public.base_import_tests_models_m2o.id; - - --- --- Name: base_import_tests_models_m2o_related; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_m2o_related ( - id integer NOT NULL, - value integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_m2o_related OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_m2o_related; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_m2o_related IS 'Tests : Base Import Model, Many to One related'; - - --- --- Name: COLUMN base_import_tests_models_m2o_related.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_related.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_m2o_related.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_related.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_m2o_related.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_related.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_m2o_related.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_related.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_m2o_related.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_related.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_m2o_related_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_m2o_related_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_m2o_related_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_m2o_related_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_m2o_related_id_seq OWNED BY public.base_import_tests_models_m2o_related.id; - - --- --- Name: base_import_tests_models_m2o_required; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_m2o_required ( - id integer NOT NULL, - value integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_m2o_required OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_m2o_required; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_m2o_required IS 'Tests : Base Import Model, Many to One required'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_m2o_required_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_m2o_required_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_m2o_required_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_m2o_required_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_m2o_required_id_seq OWNED BY public.base_import_tests_models_m2o_required.id; - - --- --- Name: base_import_tests_models_m2o_required_related; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_m2o_required_related ( - id integer NOT NULL, - value integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_m2o_required_related OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_m2o_required_related; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_m2o_required_related IS 'Tests : Base Import Model, Many to One required related'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required_related.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required_related.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required_related.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required_related.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required_related.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required_related.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required_related.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required_related.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_m2o_required_related.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_m2o_required_related.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_m2o_required_related_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_m2o_required_related_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_m2o_required_related_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_m2o_required_related_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_m2o_required_related_id_seq OWNED BY public.base_import_tests_models_m2o_required_related.id; - - --- --- Name: base_import_tests_models_o2m; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_o2m ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_o2m OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_o2m; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_o2m IS 'Tests : Base Import Model, One to Many'; - - --- --- Name: COLUMN base_import_tests_models_o2m.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_o2m.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_o2m.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_o2m.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_o2m_child; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_o2m_child ( - id integer NOT NULL, - parent_id integer, - value integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_o2m_child OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_o2m_child; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_o2m_child IS 'Tests : Base Import Model, One to Many child'; - - --- --- Name: COLUMN base_import_tests_models_o2m_child.parent_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m_child.parent_id IS 'Parent'; - - --- --- Name: COLUMN base_import_tests_models_o2m_child.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m_child.value IS 'Value'; - - --- --- Name: COLUMN base_import_tests_models_o2m_child.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m_child.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_o2m_child.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m_child.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_o2m_child.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m_child.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_o2m_child.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_o2m_child.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_o2m_child_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_o2m_child_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_o2m_child_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_o2m_child_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_o2m_child_id_seq OWNED BY public.base_import_tests_models_o2m_child.id; - - --- --- Name: base_import_tests_models_o2m_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_o2m_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_o2m_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_o2m_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_o2m_id_seq OWNED BY public.base_import_tests_models_o2m.id; - - --- --- Name: base_import_tests_models_preview; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_import_tests_models_preview ( - id integer NOT NULL, - name character varying, - somevalue integer NOT NULL, - othervalue integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_import_tests_models_preview OWNER TO ubuntu; - --- --- Name: TABLE base_import_tests_models_preview; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_import_tests_models_preview IS 'Tests : Base Import Model Preview'; - - --- --- Name: COLUMN base_import_tests_models_preview.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.name IS 'Name'; - - --- --- Name: COLUMN base_import_tests_models_preview.somevalue; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.somevalue IS 'Some Value'; - - --- --- Name: COLUMN base_import_tests_models_preview.othervalue; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.othervalue IS 'Other Variable'; - - --- --- Name: COLUMN base_import_tests_models_preview.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_import_tests_models_preview.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.create_date IS 'Created on'; - - --- --- Name: COLUMN base_import_tests_models_preview.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_import_tests_models_preview.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_import_tests_models_preview.write_date IS 'Last Updated on'; - - --- --- Name: base_import_tests_models_preview_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_import_tests_models_preview_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_import_tests_models_preview_id_seq OWNER TO ubuntu; - --- --- Name: base_import_tests_models_preview_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_import_tests_models_preview_id_seq OWNED BY public.base_import_tests_models_preview.id; - - --- --- Name: base_language_export; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_language_export ( - id integer NOT NULL, - name character varying, - lang character varying NOT NULL, - format character varying NOT NULL, - data bytea, - state character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_language_export OWNER TO ubuntu; - --- --- Name: TABLE base_language_export; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_language_export IS 'Language Export'; - - --- --- Name: COLUMN base_language_export.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.name IS 'File Name'; - - --- --- Name: COLUMN base_language_export.lang; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.lang IS 'Language'; - - --- --- Name: COLUMN base_language_export.format; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.format IS 'File Format'; - - --- --- Name: COLUMN base_language_export.data; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.data IS 'File'; - - --- --- Name: COLUMN base_language_export.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.state IS 'State'; - - --- --- Name: COLUMN base_language_export.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_language_export.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.create_date IS 'Created on'; - - --- --- Name: COLUMN base_language_export.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_language_export.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_export.write_date IS 'Last Updated on'; - - --- --- Name: base_language_export_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_language_export_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_language_export_id_seq OWNER TO ubuntu; - --- --- Name: base_language_export_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_language_export_id_seq OWNED BY public.base_language_export.id; - - --- --- Name: base_language_import; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_language_import ( - id integer NOT NULL, - name character varying NOT NULL, - code character varying(6) NOT NULL, - data bytea NOT NULL, - filename character varying NOT NULL, - overwrite boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_language_import OWNER TO ubuntu; - --- --- Name: TABLE base_language_import; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_language_import IS 'Language Import'; - - --- --- Name: COLUMN base_language_import.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.name IS 'Language Name'; - - --- --- Name: COLUMN base_language_import.code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.code IS 'ISO Code'; - - --- --- Name: COLUMN base_language_import.data; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.data IS 'File'; - - --- --- Name: COLUMN base_language_import.filename; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.filename IS 'File Name'; - - --- --- Name: COLUMN base_language_import.overwrite; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.overwrite IS 'Overwrite Existing Terms'; - - --- --- Name: COLUMN base_language_import.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_language_import.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.create_date IS 'Created on'; - - --- --- Name: COLUMN base_language_import.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_language_import.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_import.write_date IS 'Last Updated on'; - - --- --- Name: base_language_import_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_language_import_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_language_import_id_seq OWNER TO ubuntu; - --- --- Name: base_language_import_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_language_import_id_seq OWNED BY public.base_language_import.id; - - --- --- Name: base_language_install; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_language_install ( - id integer NOT NULL, - lang character varying NOT NULL, - overwrite boolean, - state character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_language_install OWNER TO ubuntu; - --- --- Name: TABLE base_language_install; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_language_install IS 'Install Language'; - - --- --- Name: COLUMN base_language_install.lang; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.lang IS 'Language'; - - --- --- Name: COLUMN base_language_install.overwrite; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.overwrite IS 'Overwrite Existing Terms'; - - --- --- Name: COLUMN base_language_install.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.state IS 'Status'; - - --- --- Name: COLUMN base_language_install.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_language_install.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.create_date IS 'Created on'; - - --- --- Name: COLUMN base_language_install.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_language_install.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_language_install.write_date IS 'Last Updated on'; - - --- --- Name: base_language_install_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_language_install_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_language_install_id_seq OWNER TO ubuntu; - --- --- Name: base_language_install_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_language_install_id_seq OWNED BY public.base_language_install.id; - - --- --- Name: base_module_uninstall; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_module_uninstall ( - id integer NOT NULL, - show_all boolean, - module_id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_module_uninstall OWNER TO ubuntu; - --- --- Name: TABLE base_module_uninstall; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_module_uninstall IS 'Module Uninstall'; - - --- --- Name: COLUMN base_module_uninstall.show_all; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_uninstall.show_all IS 'Show All'; - - --- --- Name: COLUMN base_module_uninstall.module_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_uninstall.module_id IS 'Module'; - - --- --- Name: COLUMN base_module_uninstall.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_uninstall.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_module_uninstall.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_uninstall.create_date IS 'Created on'; - - --- --- Name: COLUMN base_module_uninstall.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_uninstall.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_module_uninstall.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_uninstall.write_date IS 'Last Updated on'; - - --- --- Name: base_module_uninstall_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_module_uninstall_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_module_uninstall_id_seq OWNER TO ubuntu; - --- --- Name: base_module_uninstall_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_module_uninstall_id_seq OWNED BY public.base_module_uninstall.id; - - --- --- Name: base_module_update; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_module_update ( - id integer NOT NULL, - updated integer, - added integer, - state character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_module_update OWNER TO ubuntu; - --- --- Name: TABLE base_module_update; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_module_update IS 'Update Module'; - - --- --- Name: COLUMN base_module_update.updated; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.updated IS 'Number of modules updated'; - - --- --- Name: COLUMN base_module_update.added; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.added IS 'Number of modules added'; - - --- --- Name: COLUMN base_module_update.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.state IS 'Status'; - - --- --- Name: COLUMN base_module_update.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_module_update.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.create_date IS 'Created on'; - - --- --- Name: COLUMN base_module_update.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_module_update.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_update.write_date IS 'Last Updated on'; - - --- --- Name: base_module_update_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_module_update_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_module_update_id_seq OWNER TO ubuntu; - --- --- Name: base_module_update_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_module_update_id_seq OWNED BY public.base_module_update.id; - - --- --- Name: base_module_upgrade; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_module_upgrade ( - id integer NOT NULL, - module_info text, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_module_upgrade OWNER TO ubuntu; - --- --- Name: TABLE base_module_upgrade; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_module_upgrade IS 'Upgrade Module'; - - --- --- Name: COLUMN base_module_upgrade.module_info; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_upgrade.module_info IS 'Apps to Update'; - - --- --- Name: COLUMN base_module_upgrade.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_upgrade.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_module_upgrade.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_upgrade.create_date IS 'Created on'; - - --- --- Name: COLUMN base_module_upgrade.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_upgrade.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_module_upgrade.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_module_upgrade.write_date IS 'Last Updated on'; - - --- --- Name: base_module_upgrade_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_module_upgrade_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_module_upgrade_id_seq OWNER TO ubuntu; - --- --- Name: base_module_upgrade_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_module_upgrade_id_seq OWNED BY public.base_module_upgrade.id; - - --- --- Name: base_partner_merge_automatic_wizard; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_partner_merge_automatic_wizard ( - id integer NOT NULL, - group_by_email boolean, - group_by_name boolean, - group_by_is_company boolean, - group_by_vat boolean, - group_by_parent_id boolean, - state character varying NOT NULL, - number_group integer, - current_line_id integer, - dst_partner_id integer, - exclude_contact boolean, - exclude_journal_item boolean, - maximum_group integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_partner_merge_automatic_wizard OWNER TO ubuntu; - --- --- Name: TABLE base_partner_merge_automatic_wizard; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_partner_merge_automatic_wizard IS 'Merge Partner Wizard'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.group_by_email; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.group_by_email IS 'Email'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.group_by_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.group_by_name IS 'Name'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.group_by_is_company; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.group_by_is_company IS 'Is Company'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.group_by_vat; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.group_by_vat IS 'VAT'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.group_by_parent_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.group_by_parent_id IS 'Parent Company'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.state IS 'State'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.number_group; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.number_group IS 'Group of Contacts'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.current_line_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.current_line_id IS 'Current Line'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.dst_partner_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.dst_partner_id IS 'Destination Contact'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.exclude_contact; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.exclude_contact IS 'A user associated to the contact'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.exclude_journal_item; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.exclude_journal_item IS 'Journal Items associated to the contact'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.maximum_group; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.maximum_group IS 'Maximum of Group of Contacts'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.create_date IS 'Created on'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_partner_merge_automatic_wizard.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_automatic_wizard.write_date IS 'Last Updated on'; - - --- --- Name: base_partner_merge_automatic_wizard_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_partner_merge_automatic_wizard_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_partner_merge_automatic_wizard_id_seq OWNER TO ubuntu; - --- --- Name: base_partner_merge_automatic_wizard_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_partner_merge_automatic_wizard_id_seq OWNED BY public.base_partner_merge_automatic_wizard.id; - - --- --- Name: base_partner_merge_automatic_wizard_res_partner_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_partner_merge_automatic_wizard_res_partner_rel ( - base_partner_merge_automatic_wizard_id integer NOT NULL, - res_partner_id integer NOT NULL -); - - -ALTER TABLE public.base_partner_merge_automatic_wizard_res_partner_rel OWNER TO ubuntu; - --- --- Name: TABLE base_partner_merge_automatic_wizard_res_partner_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_partner_merge_automatic_wizard_res_partner_rel IS 'RELATION BETWEEN base_partner_merge_automatic_wizard AND res_partner'; - - --- --- Name: base_partner_merge_line; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_partner_merge_line ( - id integer NOT NULL, - wizard_id integer, - min_id integer, - aggr_ids character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_partner_merge_line OWNER TO ubuntu; - --- --- Name: TABLE base_partner_merge_line; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_partner_merge_line IS 'Merge Partner Line'; - - --- --- Name: COLUMN base_partner_merge_line.wizard_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.wizard_id IS 'Wizard'; - - --- --- Name: COLUMN base_partner_merge_line.min_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.min_id IS 'MinID'; - - --- --- Name: COLUMN base_partner_merge_line.aggr_ids; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.aggr_ids IS 'Ids'; - - --- --- Name: COLUMN base_partner_merge_line.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_partner_merge_line.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.create_date IS 'Created on'; - - --- --- Name: COLUMN base_partner_merge_line.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_partner_merge_line.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_partner_merge_line.write_date IS 'Last Updated on'; - - --- --- Name: base_partner_merge_line_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_partner_merge_line_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_partner_merge_line_id_seq OWNER TO ubuntu; - --- --- Name: base_partner_merge_line_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_partner_merge_line_id_seq OWNED BY public.base_partner_merge_line.id; - - --- --- Name: base_registry_signaling; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_registry_signaling - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_registry_signaling OWNER TO ubuntu; - --- --- Name: base_update_translations; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.base_update_translations ( - id integer NOT NULL, - lang character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.base_update_translations OWNER TO ubuntu; - --- --- Name: TABLE base_update_translations; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.base_update_translations IS 'Update Translations'; - - --- --- Name: COLUMN base_update_translations.lang; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_update_translations.lang IS 'Language'; - - --- --- Name: COLUMN base_update_translations.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_update_translations.create_uid IS 'Created by'; - - --- --- Name: COLUMN base_update_translations.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_update_translations.create_date IS 'Created on'; - - --- --- Name: COLUMN base_update_translations.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_update_translations.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN base_update_translations.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.base_update_translations.write_date IS 'Last Updated on'; - - --- --- Name: base_update_translations_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.base_update_translations_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.base_update_translations_id_seq OWNER TO ubuntu; - --- --- Name: base_update_translations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.base_update_translations_id_seq OWNED BY public.base_update_translations.id; - - --- --- Name: change_password_user; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.change_password_user ( - id integer NOT NULL, - wizard_id integer NOT NULL, - user_id integer NOT NULL, - user_login character varying, - new_passwd character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.change_password_user OWNER TO ubuntu; - --- --- Name: TABLE change_password_user; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.change_password_user IS 'User, Change Password Wizard'; - - --- --- Name: COLUMN change_password_user.wizard_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.wizard_id IS 'Wizard'; - - --- --- Name: COLUMN change_password_user.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.user_id IS 'User'; - - --- --- Name: COLUMN change_password_user.user_login; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.user_login IS 'User Login'; - - --- --- Name: COLUMN change_password_user.new_passwd; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.new_passwd IS 'New Password'; - - --- --- Name: COLUMN change_password_user.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.create_uid IS 'Created by'; - - --- --- Name: COLUMN change_password_user.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.create_date IS 'Created on'; - - --- --- Name: COLUMN change_password_user.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN change_password_user.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_user.write_date IS 'Last Updated on'; - - --- --- Name: change_password_user_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.change_password_user_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.change_password_user_id_seq OWNER TO ubuntu; - --- --- Name: change_password_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.change_password_user_id_seq OWNED BY public.change_password_user.id; - - --- --- Name: change_password_wizard; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.change_password_wizard ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.change_password_wizard OWNER TO ubuntu; - --- --- Name: TABLE change_password_wizard; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.change_password_wizard IS 'Change Password Wizard'; - - --- --- Name: COLUMN change_password_wizard.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_wizard.create_uid IS 'Created by'; - - --- --- Name: COLUMN change_password_wizard.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_wizard.create_date IS 'Created on'; - - --- --- Name: COLUMN change_password_wizard.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_wizard.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN change_password_wizard.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.change_password_wizard.write_date IS 'Last Updated on'; - - --- --- Name: change_password_wizard_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.change_password_wizard_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.change_password_wizard_id_seq OWNER TO ubuntu; - --- --- Name: change_password_wizard_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.change_password_wizard_id_seq OWNED BY public.change_password_wizard.id; - - --- --- Name: ir_actions; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_actions ( - id integer NOT NULL, - name character varying NOT NULL, - type character varying NOT NULL, - help text, - binding_model_id integer, - binding_type character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_actions OWNER TO ubuntu; - --- --- Name: COLUMN ir_actions.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.name IS 'Name'; - - --- --- Name: COLUMN ir_actions.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.type IS 'Action Type'; - - --- --- Name: COLUMN ir_actions.help; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.help IS 'Action Description'; - - --- --- Name: COLUMN ir_actions.binding_model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.binding_model_id IS 'Binding Model'; - - --- --- Name: COLUMN ir_actions.binding_type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.binding_type IS 'Binding Type'; - - --- --- Name: COLUMN ir_actions.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_actions.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_actions.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_actions.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions.write_date IS 'Last Updated on'; - - --- --- Name: ir_act_client; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_client ( - tag character varying NOT NULL, - target character varying, - res_model character varying, - context character varying NOT NULL, - params_store bytea -) -INHERITS (public.ir_actions); - - -ALTER TABLE public.ir_act_client OWNER TO ubuntu; - --- --- Name: COLUMN ir_act_client.tag; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_client.tag IS 'Client action tag'; - - --- --- Name: COLUMN ir_act_client.target; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_client.target IS 'Target Window'; - - --- --- Name: COLUMN ir_act_client.res_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_client.res_model IS 'Destination Model'; - - --- --- Name: COLUMN ir_act_client.context; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_client.context IS 'Context Value'; - - --- --- Name: COLUMN ir_act_client.params_store; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_client.params_store IS 'Params storage'; - - --- --- Name: ir_act_report_xml; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_report_xml ( - model character varying NOT NULL, - report_type character varying NOT NULL, - report_name character varying NOT NULL, - report_file character varying, - multi boolean, - paperformat_id integer, - print_report_name character varying, - attachment_use boolean, - attachment character varying -) -INHERITS (public.ir_actions); - - -ALTER TABLE public.ir_act_report_xml OWNER TO ubuntu; - --- --- Name: COLUMN ir_act_report_xml.model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.model IS 'Model Name'; - - --- --- Name: COLUMN ir_act_report_xml.report_type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.report_type IS 'Report Type'; - - --- --- Name: COLUMN ir_act_report_xml.report_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.report_name IS 'Template Name'; - - --- --- Name: COLUMN ir_act_report_xml.report_file; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.report_file IS 'Report File'; - - --- --- Name: COLUMN ir_act_report_xml.multi; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.multi IS 'On Multiple Doc.'; - - --- --- Name: COLUMN ir_act_report_xml.paperformat_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.paperformat_id IS 'Paper Format'; - - --- --- Name: COLUMN ir_act_report_xml.print_report_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.print_report_name IS 'Printed Report Name'; - - --- --- Name: COLUMN ir_act_report_xml.attachment_use; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.attachment_use IS 'Reload from Attachment'; - - --- --- Name: COLUMN ir_act_report_xml.attachment; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_report_xml.attachment IS 'Save as Attachment Prefix'; - - --- --- Name: ir_act_server; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_server ( - usage character varying NOT NULL, - state character varying NOT NULL, - sequence integer, - model_id integer NOT NULL, - model_name character varying, - code text, - crud_model_id integer, - link_field_id integer -) -INHERITS (public.ir_actions); - - -ALTER TABLE public.ir_act_server OWNER TO ubuntu; - --- --- Name: COLUMN ir_act_server.usage; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.usage IS 'Usage'; - - --- --- Name: COLUMN ir_act_server.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.state IS 'Action To Do'; - - --- --- Name: COLUMN ir_act_server.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.sequence IS 'Sequence'; - - --- --- Name: COLUMN ir_act_server.model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.model_id IS 'Model'; - - --- --- Name: COLUMN ir_act_server.model_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.model_name IS 'Model Name'; - - --- --- Name: COLUMN ir_act_server.code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.code IS 'Python Code'; - - --- --- Name: COLUMN ir_act_server.crud_model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.crud_model_id IS 'Create/Write Target Model'; - - --- --- Name: COLUMN ir_act_server.link_field_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_server.link_field_id IS 'Link using field'; - - --- --- Name: ir_act_url; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_url ( - url text NOT NULL, - target character varying NOT NULL -) -INHERITS (public.ir_actions); - - -ALTER TABLE public.ir_act_url OWNER TO ubuntu; - --- --- Name: COLUMN ir_act_url.url; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_url.url IS 'Action URL'; - - --- --- Name: COLUMN ir_act_url.target; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_url.target IS 'Action Target'; - - --- --- Name: ir_act_window; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_window ( - view_id integer, - domain character varying, - context character varying NOT NULL, - res_id integer, - res_model character varying NOT NULL, - src_model character varying, - target character varying, - view_mode character varying NOT NULL, - view_type character varying NOT NULL, - usage character varying, - "limit" integer, - search_view_id integer, - filter boolean, - auto_search boolean, - multi boolean -) -INHERITS (public.ir_actions); - - -ALTER TABLE public.ir_act_window OWNER TO ubuntu; - --- --- Name: COLUMN ir_act_window.view_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.view_id IS 'View Ref.'; - - --- --- Name: COLUMN ir_act_window.domain; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.domain IS 'Domain Value'; - - --- --- Name: COLUMN ir_act_window.context; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.context IS 'Context Value'; - - --- --- Name: COLUMN ir_act_window.res_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.res_id IS 'Record ID'; - - --- --- Name: COLUMN ir_act_window.res_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.res_model IS 'Destination Model'; - - --- --- Name: COLUMN ir_act_window.src_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.src_model IS 'Source Model'; - - --- --- Name: COLUMN ir_act_window.target; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.target IS 'Target Window'; - - --- --- Name: COLUMN ir_act_window.view_mode; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.view_mode IS 'View Mode'; - - --- --- Name: COLUMN ir_act_window.view_type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.view_type IS 'View Type'; - - --- --- Name: COLUMN ir_act_window.usage; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.usage IS 'Action Usage'; - - --- --- Name: COLUMN ir_act_window."limit"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window."limit" IS 'Limit'; - - --- --- Name: COLUMN ir_act_window.search_view_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.search_view_id IS 'Search View Ref.'; - - --- --- Name: COLUMN ir_act_window.filter; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.filter IS 'Filter'; - - --- --- Name: COLUMN ir_act_window.auto_search; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.auto_search IS 'Auto Search'; - - --- --- Name: COLUMN ir_act_window.multi; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window.multi IS 'Restrict to lists'; - - --- --- Name: ir_act_window_group_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_window_group_rel ( - act_id integer NOT NULL, - gid integer NOT NULL -); - - -ALTER TABLE public.ir_act_window_group_rel OWNER TO ubuntu; - --- --- Name: TABLE ir_act_window_group_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_act_window_group_rel IS 'RELATION BETWEEN ir_act_window AND res_groups'; - - --- --- Name: ir_act_window_view; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_act_window_view ( - id integer NOT NULL, - sequence integer, - view_id integer, - view_mode character varying NOT NULL, - act_window_id integer, - multi boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_act_window_view OWNER TO ubuntu; - --- --- Name: TABLE ir_act_window_view; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_act_window_view IS 'Action Window View'; - - --- --- Name: COLUMN ir_act_window_view.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.sequence IS 'Sequence'; - - --- --- Name: COLUMN ir_act_window_view.view_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.view_id IS 'View'; - - --- --- Name: COLUMN ir_act_window_view.view_mode; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.view_mode IS 'View Type'; - - --- --- Name: COLUMN ir_act_window_view.act_window_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.act_window_id IS 'Action'; - - --- --- Name: COLUMN ir_act_window_view.multi; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.multi IS 'On Multiple Doc.'; - - --- --- Name: COLUMN ir_act_window_view.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_act_window_view.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_act_window_view.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_act_window_view.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_act_window_view.write_date IS 'Last Updated on'; - - --- --- Name: ir_act_window_view_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_act_window_view_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_act_window_view_id_seq OWNER TO ubuntu; - --- --- Name: ir_act_window_view_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_act_window_view_id_seq OWNED BY public.ir_act_window_view.id; - - --- --- Name: ir_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_actions_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_actions_id_seq OWNER TO ubuntu; - --- --- Name: ir_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_actions_id_seq OWNED BY public.ir_actions.id; - - --- --- Name: ir_actions_todo; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_actions_todo ( - id integer NOT NULL, - action_id integer NOT NULL, - sequence integer, - state character varying NOT NULL, - name character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_actions_todo OWNER TO ubuntu; - --- --- Name: TABLE ir_actions_todo; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_actions_todo IS 'Configuration Wizards'; - - --- --- Name: COLUMN ir_actions_todo.action_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.action_id IS 'Action'; - - --- --- Name: COLUMN ir_actions_todo.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.sequence IS 'Sequence'; - - --- --- Name: COLUMN ir_actions_todo.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.state IS 'Status'; - - --- --- Name: COLUMN ir_actions_todo.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.name IS 'Name'; - - --- --- Name: COLUMN ir_actions_todo.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_actions_todo.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_actions_todo.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_actions_todo.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_actions_todo.write_date IS 'Last Updated on'; - - --- --- Name: ir_actions_todo_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_actions_todo_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_actions_todo_id_seq OWNER TO ubuntu; - --- --- Name: ir_actions_todo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_actions_todo_id_seq OWNED BY public.ir_actions_todo.id; - - --- --- Name: ir_attachment; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_attachment ( - id integer NOT NULL, - name character varying NOT NULL, - datas_fname character varying, - description text, - res_name character varying, - res_model character varying, - res_model_name character varying, - res_field character varying, - res_id integer, - company_id integer, - type character varying NOT NULL, - url character varying(1024), - public boolean, - access_token character varying, - db_datas bytea, - store_fname character varying, - file_size integer, - checksum character varying(40), - mimetype character varying, - index_content text, - active boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_attachment OWNER TO ubuntu; - --- --- Name: TABLE ir_attachment; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_attachment IS 'Attachment'; - - --- --- Name: COLUMN ir_attachment.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.name IS 'Name'; - - --- --- Name: COLUMN ir_attachment.datas_fname; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.datas_fname IS 'Filename'; - - --- --- Name: COLUMN ir_attachment.description; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.description IS 'Description'; - - --- --- Name: COLUMN ir_attachment.res_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.res_name IS 'Resource Name'; - - --- --- Name: COLUMN ir_attachment.res_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.res_model IS 'Resource Model'; - - --- --- Name: COLUMN ir_attachment.res_model_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.res_model_name IS 'Res Model Name'; - - --- --- Name: COLUMN ir_attachment.res_field; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.res_field IS 'Resource Field'; - - --- --- Name: COLUMN ir_attachment.res_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.res_id IS 'Resource ID'; - - --- --- Name: COLUMN ir_attachment.company_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.company_id IS 'Company'; - - --- --- Name: COLUMN ir_attachment.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.type IS 'Type'; - - --- --- Name: COLUMN ir_attachment.url; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.url IS 'Url'; - - --- --- Name: COLUMN ir_attachment.public; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.public IS 'Is public document'; - - --- --- Name: COLUMN ir_attachment.access_token; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.access_token IS 'Access Token'; - - --- --- Name: COLUMN ir_attachment.db_datas; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.db_datas IS 'Database Data'; - - --- --- Name: COLUMN ir_attachment.store_fname; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.store_fname IS 'Stored Filename'; - - --- --- Name: COLUMN ir_attachment.file_size; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.file_size IS 'File Size'; - - --- --- Name: COLUMN ir_attachment.checksum; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.checksum IS 'Checksum/SHA1'; - - --- --- Name: COLUMN ir_attachment.mimetype; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.mimetype IS 'Mime Type'; - - --- --- Name: COLUMN ir_attachment.index_content; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.index_content IS 'Indexed Content'; - - --- --- Name: COLUMN ir_attachment.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.active IS 'Active'; - - --- --- Name: COLUMN ir_attachment.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_attachment.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_attachment.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_attachment.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_attachment.write_date IS 'Last Updated on'; - - --- --- Name: ir_attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_attachment_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_attachment_id_seq OWNER TO ubuntu; - --- --- Name: ir_attachment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_attachment_id_seq OWNED BY public.ir_attachment.id; - - --- --- Name: ir_config_parameter; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_config_parameter ( - id integer NOT NULL, - key character varying NOT NULL, - value text NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_config_parameter OWNER TO ubuntu; - --- --- Name: TABLE ir_config_parameter; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_config_parameter IS 'System Parameter'; - - --- --- Name: COLUMN ir_config_parameter.key; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_config_parameter.key IS 'Key'; - - --- --- Name: COLUMN ir_config_parameter.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_config_parameter.value IS 'Value'; - - --- --- Name: COLUMN ir_config_parameter.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_config_parameter.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_config_parameter.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_config_parameter.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_config_parameter.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_config_parameter.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_config_parameter.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_config_parameter.write_date IS 'Last Updated on'; - - --- --- Name: ir_config_parameter_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_config_parameter_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_config_parameter_id_seq OWNER TO ubuntu; - --- --- Name: ir_config_parameter_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_config_parameter_id_seq OWNED BY public.ir_config_parameter.id; - - --- --- Name: ir_cron; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_cron ( - id integer NOT NULL, - ir_actions_server_id integer NOT NULL, - cron_name character varying, - user_id integer NOT NULL, - active boolean, - interval_number integer, - interval_type character varying, - numbercall integer, - doall boolean, - nextcall timestamp without time zone NOT NULL, - priority integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_cron OWNER TO ubuntu; - --- --- Name: TABLE ir_cron; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_cron IS 'Scheduled Actions'; - - --- --- Name: COLUMN ir_cron.ir_actions_server_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.ir_actions_server_id IS 'Server action'; - - --- --- Name: COLUMN ir_cron.cron_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.cron_name IS 'Name'; - - --- --- Name: COLUMN ir_cron.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.user_id IS 'Scheduler User'; - - --- --- Name: COLUMN ir_cron.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.active IS 'Active'; - - --- --- Name: COLUMN ir_cron.interval_number; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.interval_number IS 'Interval Number'; - - --- --- Name: COLUMN ir_cron.interval_type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.interval_type IS 'Interval Unit'; - - --- --- Name: COLUMN ir_cron.numbercall; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.numbercall IS 'Number of Calls'; - - --- --- Name: COLUMN ir_cron.doall; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.doall IS 'Repeat Missed'; - - --- --- Name: COLUMN ir_cron.nextcall; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.nextcall IS 'Next Execution Date'; - - --- --- Name: COLUMN ir_cron.priority; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.priority IS 'Priority'; - - --- --- Name: COLUMN ir_cron.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_cron.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_cron.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_cron.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_cron.write_date IS 'Last Updated on'; - - --- --- Name: ir_cron_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_cron_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_cron_id_seq OWNER TO ubuntu; - --- --- Name: ir_cron_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_cron_id_seq OWNED BY public.ir_cron.id; - - --- --- Name: ir_default; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_default ( - id integer NOT NULL, - field_id integer NOT NULL, - user_id integer, - company_id integer, - condition character varying, - json_value character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_default OWNER TO ubuntu; - --- --- Name: TABLE ir_default; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_default IS 'Default Values'; - - --- --- Name: COLUMN ir_default.field_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.field_id IS 'Field'; - - --- --- Name: COLUMN ir_default.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.user_id IS 'User'; - - --- --- Name: COLUMN ir_default.company_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.company_id IS 'Company'; - - --- --- Name: COLUMN ir_default.condition; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.condition IS 'Condition'; - - --- --- Name: COLUMN ir_default.json_value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.json_value IS 'Default Value (JSON format)'; - - --- --- Name: COLUMN ir_default.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_default.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_default.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_default.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_default.write_date IS 'Last Updated on'; - - --- --- Name: ir_default_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_default_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_default_id_seq OWNER TO ubuntu; - --- --- Name: ir_default_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_default_id_seq OWNED BY public.ir_default.id; - - --- --- Name: ir_demo; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_demo ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_demo OWNER TO ubuntu; - --- --- Name: TABLE ir_demo; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_demo IS 'Demo'; - - --- --- Name: COLUMN ir_demo.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_demo.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_demo.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_demo.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo.write_date IS 'Last Updated on'; - - --- --- Name: ir_demo_failure; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_demo_failure ( - id integer NOT NULL, - module_id integer NOT NULL, - error character varying, - wizard_id integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_demo_failure OWNER TO ubuntu; - --- --- Name: TABLE ir_demo_failure; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_demo_failure IS 'Demo failure'; - - --- --- Name: COLUMN ir_demo_failure.module_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.module_id IS 'Module'; - - --- --- Name: COLUMN ir_demo_failure.error; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.error IS 'Error'; - - --- --- Name: COLUMN ir_demo_failure.wizard_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.wizard_id IS 'Wizard'; - - --- --- Name: COLUMN ir_demo_failure.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_demo_failure.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_demo_failure.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_demo_failure.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure.write_date IS 'Last Updated on'; - - --- --- Name: ir_demo_failure_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_demo_failure_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_demo_failure_id_seq OWNER TO ubuntu; - --- --- Name: ir_demo_failure_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_demo_failure_id_seq OWNED BY public.ir_demo_failure.id; - - --- --- Name: ir_demo_failure_wizard; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_demo_failure_wizard ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_demo_failure_wizard OWNER TO ubuntu; - --- --- Name: TABLE ir_demo_failure_wizard; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_demo_failure_wizard IS 'Demo Failure wizard'; - - --- --- Name: COLUMN ir_demo_failure_wizard.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure_wizard.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_demo_failure_wizard.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure_wizard.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_demo_failure_wizard.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure_wizard.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_demo_failure_wizard.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_demo_failure_wizard.write_date IS 'Last Updated on'; - - --- --- Name: ir_demo_failure_wizard_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_demo_failure_wizard_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_demo_failure_wizard_id_seq OWNER TO ubuntu; - --- --- Name: ir_demo_failure_wizard_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_demo_failure_wizard_id_seq OWNED BY public.ir_demo_failure_wizard.id; - - --- --- Name: ir_demo_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_demo_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_demo_id_seq OWNER TO ubuntu; - --- --- Name: ir_demo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_demo_id_seq OWNED BY public.ir_demo.id; - - --- --- Name: ir_exports; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_exports ( - id integer NOT NULL, - name character varying, - resource character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_exports OWNER TO ubuntu; - --- --- Name: TABLE ir_exports; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_exports IS 'Exports'; - - --- --- Name: COLUMN ir_exports.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports.name IS 'Export Name'; - - --- --- Name: COLUMN ir_exports.resource; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports.resource IS 'Resource'; - - --- --- Name: COLUMN ir_exports.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_exports.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_exports.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_exports.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports.write_date IS 'Last Updated on'; - - --- --- Name: ir_exports_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_exports_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_exports_id_seq OWNER TO ubuntu; - --- --- Name: ir_exports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_exports_id_seq OWNED BY public.ir_exports.id; - - --- --- Name: ir_exports_line; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_exports_line ( - id integer NOT NULL, - name character varying, - export_id integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_exports_line OWNER TO ubuntu; - --- --- Name: TABLE ir_exports_line; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_exports_line IS 'Exports Line'; - - --- --- Name: COLUMN ir_exports_line.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports_line.name IS 'Field Name'; - - --- --- Name: COLUMN ir_exports_line.export_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports_line.export_id IS 'Export'; - - --- --- Name: COLUMN ir_exports_line.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports_line.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_exports_line.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports_line.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_exports_line.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports_line.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_exports_line.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_exports_line.write_date IS 'Last Updated on'; - - --- --- Name: ir_exports_line_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_exports_line_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_exports_line_id_seq OWNER TO ubuntu; - --- --- Name: ir_exports_line_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_exports_line_id_seq OWNED BY public.ir_exports_line.id; - - --- --- Name: ir_filters; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_filters ( - id integer NOT NULL, - name character varying NOT NULL, - user_id integer, - domain text NOT NULL, - context text NOT NULL, - sort text NOT NULL, - model_id character varying NOT NULL, - is_default boolean, - action_id integer, - active boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_filters OWNER TO ubuntu; - --- --- Name: TABLE ir_filters; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_filters IS 'Filters'; - - --- --- Name: COLUMN ir_filters.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.name IS 'Filter Name'; - - --- --- Name: COLUMN ir_filters.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.user_id IS 'User'; - - --- --- Name: COLUMN ir_filters.domain; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.domain IS 'Domain'; - - --- --- Name: COLUMN ir_filters.context; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.context IS 'Context'; - - --- --- Name: COLUMN ir_filters.sort; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.sort IS 'Sort'; - - --- --- Name: COLUMN ir_filters.model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.model_id IS 'Model'; - - --- --- Name: COLUMN ir_filters.is_default; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.is_default IS 'Default Filter'; - - --- --- Name: COLUMN ir_filters.action_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.action_id IS 'Action'; - - --- --- Name: COLUMN ir_filters.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.active IS 'Active'; - - --- --- Name: COLUMN ir_filters.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_filters.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_filters.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_filters.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_filters.write_date IS 'Last Updated on'; - - --- --- Name: ir_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_filters_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_filters_id_seq OWNER TO ubuntu; - --- --- Name: ir_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_filters_id_seq OWNED BY public.ir_filters.id; - - --- --- Name: ir_logging; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_logging ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone, - name character varying NOT NULL, - type character varying NOT NULL, - dbname character varying, - level character varying, - message text NOT NULL, - path character varying NOT NULL, - func character varying NOT NULL, - line character varying NOT NULL -); - - -ALTER TABLE public.ir_logging OWNER TO ubuntu; - --- --- Name: TABLE ir_logging; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_logging IS 'Logging'; - - --- --- Name: COLUMN ir_logging.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_logging.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_logging.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_logging.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.write_date IS 'Last Updated on'; - - --- --- Name: COLUMN ir_logging.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.name IS 'Name'; - - --- --- Name: COLUMN ir_logging.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.type IS 'Type'; - - --- --- Name: COLUMN ir_logging.dbname; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.dbname IS 'Database Name'; - - --- --- Name: COLUMN ir_logging.level; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.level IS 'Level'; - - --- --- Name: COLUMN ir_logging.message; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.message IS 'Message'; - - --- --- Name: COLUMN ir_logging.path; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.path IS 'Path'; - - --- --- Name: COLUMN ir_logging.func; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.func IS 'Function'; - - --- --- Name: COLUMN ir_logging.line; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_logging.line IS 'Line'; - - --- --- Name: ir_logging_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_logging_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_logging_id_seq OWNER TO ubuntu; - --- --- Name: ir_logging_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_logging_id_seq OWNED BY public.ir_logging.id; - - --- --- Name: ir_mail_server; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_mail_server ( - id integer NOT NULL, - name character varying NOT NULL, - smtp_host character varying NOT NULL, - smtp_port integer NOT NULL, - smtp_user character varying, - smtp_pass character varying, - smtp_encryption character varying NOT NULL, - smtp_debug boolean, - sequence integer, - active boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_mail_server OWNER TO ubuntu; - --- --- Name: TABLE ir_mail_server; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_mail_server IS 'Mail Server'; - - --- --- Name: COLUMN ir_mail_server.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.name IS 'Description'; - - --- --- Name: COLUMN ir_mail_server.smtp_host; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.smtp_host IS 'SMTP Server'; - - --- --- Name: COLUMN ir_mail_server.smtp_port; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.smtp_port IS 'SMTP Port'; - - --- --- Name: COLUMN ir_mail_server.smtp_user; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.smtp_user IS 'Username'; - - --- --- Name: COLUMN ir_mail_server.smtp_pass; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.smtp_pass IS 'Password'; - - --- --- Name: COLUMN ir_mail_server.smtp_encryption; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.smtp_encryption IS 'Connection Security'; - - --- --- Name: COLUMN ir_mail_server.smtp_debug; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.smtp_debug IS 'Debugging'; - - --- --- Name: COLUMN ir_mail_server.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.sequence IS 'Priority'; - - --- --- Name: COLUMN ir_mail_server.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.active IS 'Active'; - - --- --- Name: COLUMN ir_mail_server.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_mail_server.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_mail_server.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_mail_server.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_mail_server.write_date IS 'Last Updated on'; - - --- --- Name: ir_mail_server_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_mail_server_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_mail_server_id_seq OWNER TO ubuntu; - --- --- Name: ir_mail_server_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_mail_server_id_seq OWNED BY public.ir_mail_server.id; - - --- --- Name: ir_model; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model ( - id integer NOT NULL, - name character varying NOT NULL, - model character varying NOT NULL, - info text, - state character varying, - transient boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_model OWNER TO ubuntu; - --- --- Name: TABLE ir_model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_model IS 'Models'; - - --- --- Name: COLUMN ir_model.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.name IS 'Model Description'; - - --- --- Name: COLUMN ir_model.model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.model IS 'Model'; - - --- --- Name: COLUMN ir_model.info; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.info IS 'Information'; - - --- --- Name: COLUMN ir_model.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.state IS 'Type'; - - --- --- Name: COLUMN ir_model.transient; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.transient IS 'Transient Model'; - - --- --- Name: COLUMN ir_model.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_model.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_model.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_model.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model.write_date IS 'Last Updated on'; - - --- --- Name: ir_model_access; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model_access ( - id integer NOT NULL, - name character varying NOT NULL, - active boolean, - model_id integer NOT NULL, - group_id integer, - perm_read boolean, - perm_write boolean, - perm_create boolean, - perm_unlink boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_model_access OWNER TO ubuntu; - --- --- Name: TABLE ir_model_access; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_model_access IS 'Model Access'; - - --- --- Name: COLUMN ir_model_access.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.name IS 'Name'; - - --- --- Name: COLUMN ir_model_access.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.active IS 'Active'; - - --- --- Name: COLUMN ir_model_access.model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.model_id IS 'Object'; - - --- --- Name: COLUMN ir_model_access.group_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.group_id IS 'Group'; - - --- --- Name: COLUMN ir_model_access.perm_read; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.perm_read IS 'Read Access'; - - --- --- Name: COLUMN ir_model_access.perm_write; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.perm_write IS 'Write Access'; - - --- --- Name: COLUMN ir_model_access.perm_create; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.perm_create IS 'Create Access'; - - --- --- Name: COLUMN ir_model_access.perm_unlink; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.perm_unlink IS 'Delete Access'; - - --- --- Name: COLUMN ir_model_access.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_model_access.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_model_access.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_model_access.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_access.write_date IS 'Last Updated on'; - - --- --- Name: ir_model_access_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_model_access_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_model_access_id_seq OWNER TO ubuntu; - --- --- Name: ir_model_access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_model_access_id_seq OWNED BY public.ir_model_access.id; - - --- --- Name: ir_model_constraint; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model_constraint ( - id integer NOT NULL, - name character varying NOT NULL, - definition character varying, - model integer NOT NULL, - module integer NOT NULL, - type character varying(1) NOT NULL, - date_update timestamp without time zone, - date_init timestamp without time zone, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_model_constraint OWNER TO ubuntu; - --- --- Name: TABLE ir_model_constraint; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_model_constraint IS 'Model Constraint'; - - --- --- Name: COLUMN ir_model_constraint.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.name IS 'Constraint'; - - --- --- Name: COLUMN ir_model_constraint.definition; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.definition IS 'Definition'; - - --- --- Name: COLUMN ir_model_constraint.model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.model IS 'Model'; - - --- --- Name: COLUMN ir_model_constraint.module; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.module IS 'Module'; - - --- --- Name: COLUMN ir_model_constraint.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.type IS 'Constraint Type'; - - --- --- Name: COLUMN ir_model_constraint.date_update; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.date_update IS 'Update Date'; - - --- --- Name: COLUMN ir_model_constraint.date_init; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.date_init IS 'Initialization Date'; - - --- --- Name: COLUMN ir_model_constraint.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_model_constraint.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_model_constraint.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_model_constraint.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_constraint.write_date IS 'Last Updated on'; - - --- --- Name: ir_model_constraint_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_model_constraint_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_model_constraint_id_seq OWNER TO ubuntu; - --- --- Name: ir_model_constraint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_model_constraint_id_seq OWNED BY public.ir_model_constraint.id; - - --- --- Name: ir_model_data; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model_data ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_date timestamp without time zone, - write_uid integer, - noupdate boolean, - name character varying NOT NULL, - date_init timestamp without time zone, - date_update timestamp without time zone, - module character varying NOT NULL, - model character varying NOT NULL, - res_id integer -); - - -ALTER TABLE public.ir_model_data OWNER TO ubuntu; - --- --- Name: ir_model_data_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_model_data_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_model_data_id_seq OWNER TO ubuntu; - --- --- Name: ir_model_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_model_data_id_seq OWNED BY public.ir_model_data.id; - - --- --- Name: ir_model_fields; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model_fields ( - id integer NOT NULL, - name character varying NOT NULL, - complete_name character varying, - model character varying NOT NULL, - relation character varying, - relation_field character varying, - relation_field_id integer, - model_id integer NOT NULL, - field_description character varying NOT NULL, - help text, - ttype character varying NOT NULL, - selection character varying, - copied boolean, - related character varying, - related_field_id integer, - required boolean, - readonly boolean, - index boolean, - translate boolean, - size integer, - state character varying NOT NULL, - on_delete character varying, - domain character varying, - selectable boolean, - relation_table character varying, - column1 character varying, - column2 character varying, - compute text, - depends character varying, - store boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone, - CONSTRAINT ir_model_fields_size_gt_zero CHECK ((size >= 0)) -); - - -ALTER TABLE public.ir_model_fields OWNER TO ubuntu; - --- --- Name: TABLE ir_model_fields; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_model_fields IS 'Fields'; - - --- --- Name: COLUMN ir_model_fields.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.name IS 'Field Name'; - - --- --- Name: COLUMN ir_model_fields.complete_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.complete_name IS 'Complete Name'; - - --- --- Name: COLUMN ir_model_fields.model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.model IS 'Object Name'; - - --- --- Name: COLUMN ir_model_fields.relation; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.relation IS 'Object Relation'; - - --- --- Name: COLUMN ir_model_fields.relation_field; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.relation_field IS 'Relation Field'; - - --- --- Name: COLUMN ir_model_fields.relation_field_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.relation_field_id IS 'Relation field'; - - --- --- Name: COLUMN ir_model_fields.model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.model_id IS 'Model'; - - --- --- Name: COLUMN ir_model_fields.field_description; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.field_description IS 'Field Label'; - - --- --- Name: COLUMN ir_model_fields.help; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.help IS 'Field Help'; - - --- --- Name: COLUMN ir_model_fields.ttype; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.ttype IS 'Field Type'; - - --- --- Name: COLUMN ir_model_fields.selection; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.selection IS 'Selection Options'; - - --- --- Name: COLUMN ir_model_fields.copied; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.copied IS 'Copied'; - - --- --- Name: COLUMN ir_model_fields.related; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.related IS 'Related Field'; - - --- --- Name: COLUMN ir_model_fields.related_field_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.related_field_id IS 'Related field'; - - --- --- Name: COLUMN ir_model_fields.required; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.required IS 'Required'; - - --- --- Name: COLUMN ir_model_fields.readonly; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.readonly IS 'Readonly'; - - --- --- Name: COLUMN ir_model_fields.index; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.index IS 'Indexed'; - - --- --- Name: COLUMN ir_model_fields.translate; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.translate IS 'Translatable'; - - --- --- Name: COLUMN ir_model_fields.size; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.size IS 'Size'; - - --- --- Name: COLUMN ir_model_fields.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.state IS 'Type'; - - --- --- Name: COLUMN ir_model_fields.on_delete; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.on_delete IS 'On Delete'; - - --- --- Name: COLUMN ir_model_fields.domain; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.domain IS 'Domain'; - - --- --- Name: COLUMN ir_model_fields.selectable; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.selectable IS 'Selectable'; - - --- --- Name: COLUMN ir_model_fields.relation_table; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.relation_table IS 'Relation Table'; - - --- --- Name: COLUMN ir_model_fields.column1; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.column1 IS 'Column 1'; - - --- --- Name: COLUMN ir_model_fields.column2; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.column2 IS 'Column 2'; - - --- --- Name: COLUMN ir_model_fields.compute; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.compute IS 'Compute'; - - --- --- Name: COLUMN ir_model_fields.depends; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.depends IS 'Dependencies'; - - --- --- Name: COLUMN ir_model_fields.store; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.store IS 'Stored'; - - --- --- Name: COLUMN ir_model_fields.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_model_fields.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_model_fields.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_model_fields.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_fields.write_date IS 'Last Updated on'; - - --- --- Name: CONSTRAINT ir_model_fields_size_gt_zero ON ir_model_fields; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT ir_model_fields_size_gt_zero ON public.ir_model_fields IS 'CHECK (size>=0)'; - - --- --- Name: ir_model_fields_group_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model_fields_group_rel ( - field_id integer NOT NULL, - group_id integer NOT NULL -); - - -ALTER TABLE public.ir_model_fields_group_rel OWNER TO ubuntu; - --- --- Name: TABLE ir_model_fields_group_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_model_fields_group_rel IS 'RELATION BETWEEN ir_model_fields AND res_groups'; - - --- --- Name: ir_model_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_model_fields_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_model_fields_id_seq OWNER TO ubuntu; - --- --- Name: ir_model_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_model_fields_id_seq OWNED BY public.ir_model_fields.id; - - --- --- Name: ir_model_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_model_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_model_id_seq OWNER TO ubuntu; - --- --- Name: ir_model_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_model_id_seq OWNED BY public.ir_model.id; - - --- --- Name: ir_model_relation; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_model_relation ( - id integer NOT NULL, - name character varying NOT NULL, - model integer NOT NULL, - module integer NOT NULL, - date_update timestamp without time zone, - date_init timestamp without time zone, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_model_relation OWNER TO ubuntu; - --- --- Name: TABLE ir_model_relation; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_model_relation IS 'Relation Model'; - - --- --- Name: COLUMN ir_model_relation.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.name IS 'Relation Name'; - - --- --- Name: COLUMN ir_model_relation.model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.model IS 'Model'; - - --- --- Name: COLUMN ir_model_relation.module; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.module IS 'Module'; - - --- --- Name: COLUMN ir_model_relation.date_update; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.date_update IS 'Update Date'; - - --- --- Name: COLUMN ir_model_relation.date_init; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.date_init IS 'Initialization Date'; - - --- --- Name: COLUMN ir_model_relation.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_model_relation.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_model_relation.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_model_relation.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_model_relation.write_date IS 'Last Updated on'; - - --- --- Name: ir_model_relation_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_model_relation_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_model_relation_id_seq OWNER TO ubuntu; - --- --- Name: ir_model_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_model_relation_id_seq OWNED BY public.ir_model_relation.id; - - --- --- Name: ir_module_category; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_module_category ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_date timestamp without time zone, - write_uid integer, - parent_id integer, - name character varying NOT NULL, - description text, - sequence integer, - visible boolean, - exclusive boolean -); - - -ALTER TABLE public.ir_module_category OWNER TO ubuntu; - --- --- Name: COLUMN ir_module_category.description; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_category.description IS 'Description'; - - --- --- Name: COLUMN ir_module_category.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_category.sequence IS 'Sequence'; - - --- --- Name: COLUMN ir_module_category.visible; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_category.visible IS 'Visible'; - - --- --- Name: COLUMN ir_module_category.exclusive; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_category.exclusive IS 'Exclusive'; - - --- --- Name: ir_module_category_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_module_category_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_module_category_id_seq OWNER TO ubuntu; - --- --- Name: ir_module_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_module_category_id_seq OWNED BY public.ir_module_category.id; - - --- --- Name: ir_module_module; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_module_module ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_date timestamp without time zone, - write_uid integer, - website character varying, - summary character varying, - name character varying NOT NULL, - author character varying, - icon character varying, - state character varying(16), - latest_version character varying, - shortdesc character varying, - category_id integer, - description text, - application boolean DEFAULT false, - demo boolean DEFAULT false, - web boolean DEFAULT false, - license character varying(32), - sequence integer DEFAULT 100, - auto_install boolean DEFAULT false, - to_buy boolean DEFAULT false, - maintainer character varying, - contributors text, - published_version character varying, - url character varying, - menus_by_module text, - reports_by_module text, - views_by_module text -); - - -ALTER TABLE public.ir_module_module OWNER TO ubuntu; - --- --- Name: COLUMN ir_module_module.maintainer; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.maintainer IS 'Maintainer'; - - --- --- Name: COLUMN ir_module_module.contributors; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.contributors IS 'Contributors'; - - --- --- Name: COLUMN ir_module_module.published_version; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.published_version IS 'Published Version'; - - --- --- Name: COLUMN ir_module_module.url; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.url IS 'URL'; - - --- --- Name: COLUMN ir_module_module.menus_by_module; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.menus_by_module IS 'Menus'; - - --- --- Name: COLUMN ir_module_module.reports_by_module; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.reports_by_module IS 'Reports'; - - --- --- Name: COLUMN ir_module_module.views_by_module; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module.views_by_module IS 'Views'; - - --- --- Name: ir_module_module_dependency; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_module_module_dependency ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_date timestamp without time zone, - write_uid integer, - name character varying, - module_id integer -); - - -ALTER TABLE public.ir_module_module_dependency OWNER TO ubuntu; - --- --- Name: ir_module_module_dependency_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_module_module_dependency_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_module_module_dependency_id_seq OWNER TO ubuntu; - --- --- Name: ir_module_module_dependency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_module_module_dependency_id_seq OWNED BY public.ir_module_module_dependency.id; - - --- --- Name: ir_module_module_exclusion; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_module_module_exclusion ( - id integer NOT NULL, - name character varying, - module_id integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_module_module_exclusion OWNER TO ubuntu; - --- --- Name: TABLE ir_module_module_exclusion; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_module_module_exclusion IS 'Module exclusion'; - - --- --- Name: COLUMN ir_module_module_exclusion.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module_exclusion.name IS 'Name'; - - --- --- Name: COLUMN ir_module_module_exclusion.module_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module_exclusion.module_id IS 'Module'; - - --- --- Name: COLUMN ir_module_module_exclusion.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module_exclusion.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_module_module_exclusion.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module_exclusion.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_module_module_exclusion.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module_exclusion.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_module_module_exclusion.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_module_module_exclusion.write_date IS 'Last Updated on'; - - --- --- Name: ir_module_module_exclusion_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_module_module_exclusion_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_module_module_exclusion_id_seq OWNER TO ubuntu; - --- --- Name: ir_module_module_exclusion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_module_module_exclusion_id_seq OWNED BY public.ir_module_module_exclusion.id; - - --- --- Name: ir_module_module_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_module_module_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_module_module_id_seq OWNER TO ubuntu; - --- --- Name: ir_module_module_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_module_module_id_seq OWNED BY public.ir_module_module.id; - - --- --- Name: ir_property; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_property ( - id integer NOT NULL, - name character varying, - res_id character varying, - company_id integer, - fields_id integer NOT NULL, - value_float double precision, - value_integer integer, - value_text text, - value_binary bytea, - value_reference character varying, - value_datetime timestamp without time zone, - type character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_property OWNER TO ubuntu; - --- --- Name: TABLE ir_property; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_property IS 'Company Property'; - - --- --- Name: COLUMN ir_property.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.name IS 'Name'; - - --- --- Name: COLUMN ir_property.res_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.res_id IS 'Resource'; - - --- --- Name: COLUMN ir_property.company_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.company_id IS 'Company'; - - --- --- Name: COLUMN ir_property.fields_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.fields_id IS 'Field'; - - --- --- Name: COLUMN ir_property.value_float; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.value_float IS 'Value Float'; - - --- --- Name: COLUMN ir_property.value_integer; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.value_integer IS 'Value Integer'; - - --- --- Name: COLUMN ir_property.value_text; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.value_text IS 'Value Text'; - - --- --- Name: COLUMN ir_property.value_binary; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.value_binary IS 'Value Binary'; - - --- --- Name: COLUMN ir_property.value_reference; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.value_reference IS 'Value Reference'; - - --- --- Name: COLUMN ir_property.value_datetime; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.value_datetime IS 'Value Datetime'; - - --- --- Name: COLUMN ir_property.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.type IS 'Type'; - - --- --- Name: COLUMN ir_property.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_property.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_property.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_property.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_property.write_date IS 'Last Updated on'; - - --- --- Name: ir_property_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_property_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_property_id_seq OWNER TO ubuntu; - --- --- Name: ir_property_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_property_id_seq OWNED BY public.ir_property.id; - - --- --- Name: ir_rule; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_rule ( - id integer NOT NULL, - name character varying, - active boolean, - model_id integer NOT NULL, - domain_force text, - perm_read boolean, - perm_write boolean, - perm_create boolean, - perm_unlink boolean, - global boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone, - CONSTRAINT ir_rule_no_access_rights CHECK (((perm_read <> false) OR (perm_write <> false) OR (perm_create <> false) OR (perm_unlink <> false))) -); - - -ALTER TABLE public.ir_rule OWNER TO ubuntu; - --- --- Name: TABLE ir_rule; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_rule IS 'Record Rule'; - - --- --- Name: COLUMN ir_rule.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.name IS 'Name'; - - --- --- Name: COLUMN ir_rule.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.active IS 'Active'; - - --- --- Name: COLUMN ir_rule.model_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.model_id IS 'Object'; - - --- --- Name: COLUMN ir_rule.domain_force; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.domain_force IS 'Domain'; - - --- --- Name: COLUMN ir_rule.perm_read; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.perm_read IS 'Apply for Read'; - - --- --- Name: COLUMN ir_rule.perm_write; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.perm_write IS 'Apply for Write'; - - --- --- Name: COLUMN ir_rule.perm_create; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.perm_create IS 'Apply for Create'; - - --- --- Name: COLUMN ir_rule.perm_unlink; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.perm_unlink IS 'Apply for Delete'; - - --- --- Name: COLUMN ir_rule.global; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.global IS 'Global'; - - --- --- Name: COLUMN ir_rule.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_rule.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_rule.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_rule.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_rule.write_date IS 'Last Updated on'; - - --- --- Name: CONSTRAINT ir_rule_no_access_rights ON ir_rule; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT ir_rule_no_access_rights ON public.ir_rule IS 'CHECK (perm_read!=False or perm_write!=False or perm_create!=False or perm_unlink!=False)'; - - --- --- Name: ir_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_rule_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_rule_id_seq OWNER TO ubuntu; - --- --- Name: ir_rule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_rule_id_seq OWNED BY public.ir_rule.id; - - --- --- Name: ir_sequence; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_sequence ( - id integer NOT NULL, - name character varying NOT NULL, - code character varying, - implementation character varying NOT NULL, - active boolean, - prefix character varying, - suffix character varying, - number_next integer NOT NULL, - number_increment integer NOT NULL, - padding integer NOT NULL, - company_id integer, - use_date_range boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_sequence OWNER TO ubuntu; - --- --- Name: TABLE ir_sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_sequence IS 'Sequence'; - - --- --- Name: COLUMN ir_sequence.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.name IS 'Name'; - - --- --- Name: COLUMN ir_sequence.code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.code IS 'Sequence Code'; - - --- --- Name: COLUMN ir_sequence.implementation; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.implementation IS 'Implementation'; - - --- --- Name: COLUMN ir_sequence.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.active IS 'Active'; - - --- --- Name: COLUMN ir_sequence.prefix; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.prefix IS 'Prefix'; - - --- --- Name: COLUMN ir_sequence.suffix; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.suffix IS 'Suffix'; - - --- --- Name: COLUMN ir_sequence.number_next; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.number_next IS 'Next Number'; - - --- --- Name: COLUMN ir_sequence.number_increment; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.number_increment IS 'Step'; - - --- --- Name: COLUMN ir_sequence.padding; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.padding IS 'Sequence Size'; - - --- --- Name: COLUMN ir_sequence.company_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.company_id IS 'Company'; - - --- --- Name: COLUMN ir_sequence.use_date_range; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.use_date_range IS 'Use subsequences per date_range'; - - --- --- Name: COLUMN ir_sequence.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_sequence.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_sequence.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_sequence.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence.write_date IS 'Last Updated on'; - - --- --- Name: ir_sequence_date_range; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_sequence_date_range ( - id integer NOT NULL, - date_from date NOT NULL, - date_to date NOT NULL, - sequence_id integer NOT NULL, - number_next integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_sequence_date_range OWNER TO ubuntu; - --- --- Name: TABLE ir_sequence_date_range; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_sequence_date_range IS 'Sequence Date Range'; - - --- --- Name: COLUMN ir_sequence_date_range.date_from; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.date_from IS 'From'; - - --- --- Name: COLUMN ir_sequence_date_range.date_to; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.date_to IS 'To'; - - --- --- Name: COLUMN ir_sequence_date_range.sequence_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.sequence_id IS 'Main Sequence'; - - --- --- Name: COLUMN ir_sequence_date_range.number_next; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.number_next IS 'Next Number'; - - --- --- Name: COLUMN ir_sequence_date_range.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_sequence_date_range.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_sequence_date_range.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_sequence_date_range.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_sequence_date_range.write_date IS 'Last Updated on'; - - --- --- Name: ir_sequence_date_range_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_sequence_date_range_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_sequence_date_range_id_seq OWNER TO ubuntu; - --- --- Name: ir_sequence_date_range_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_sequence_date_range_id_seq OWNED BY public.ir_sequence_date_range.id; - - --- --- Name: ir_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_sequence_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_sequence_id_seq OWNER TO ubuntu; - --- --- Name: ir_sequence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_sequence_id_seq OWNED BY public.ir_sequence.id; - - --- --- Name: ir_server_object_lines; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_server_object_lines ( - id integer NOT NULL, - server_id integer, - col1 integer NOT NULL, - value text NOT NULL, - type character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_server_object_lines OWNER TO ubuntu; - --- --- Name: TABLE ir_server_object_lines; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_server_object_lines IS 'Server Action value mapping'; - - --- --- Name: COLUMN ir_server_object_lines.server_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.server_id IS 'Related Server Action'; - - --- --- Name: COLUMN ir_server_object_lines.col1; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.col1 IS 'Field'; - - --- --- Name: COLUMN ir_server_object_lines.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.value IS 'Value'; - - --- --- Name: COLUMN ir_server_object_lines.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.type IS 'Evaluation Type'; - - --- --- Name: COLUMN ir_server_object_lines.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_server_object_lines.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_server_object_lines.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_server_object_lines.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_server_object_lines.write_date IS 'Last Updated on'; - - --- --- Name: ir_server_object_lines_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_server_object_lines_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_server_object_lines_id_seq OWNER TO ubuntu; - --- --- Name: ir_server_object_lines_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_server_object_lines_id_seq OWNED BY public.ir_server_object_lines.id; - - --- --- Name: ir_translation; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_translation ( - id integer NOT NULL, - name character varying NOT NULL, - res_id integer, - lang character varying, - type character varying, - src text, - value text, - module character varying, - state character varying, - comments text -); - - -ALTER TABLE public.ir_translation OWNER TO ubuntu; - --- --- Name: TABLE ir_translation; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_translation IS 'Translation'; - - --- --- Name: COLUMN ir_translation.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.name IS 'Translated field'; - - --- --- Name: COLUMN ir_translation.res_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.res_id IS 'Record ID'; - - --- --- Name: COLUMN ir_translation.lang; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.lang IS 'Language'; - - --- --- Name: COLUMN ir_translation.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.type IS 'Type'; - - --- --- Name: COLUMN ir_translation.src; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.src IS 'Internal Source'; - - --- --- Name: COLUMN ir_translation.value; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.value IS 'Translation Value'; - - --- --- Name: COLUMN ir_translation.module; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.module IS 'Module'; - - --- --- Name: COLUMN ir_translation.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.state IS 'Status'; - - --- --- Name: COLUMN ir_translation.comments; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_translation.comments IS 'Translation comments'; - - --- --- Name: ir_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_translation_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_translation_id_seq OWNER TO ubuntu; - --- --- Name: ir_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_translation_id_seq OWNED BY public.ir_translation.id; - - --- --- Name: ir_ui_menu; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_ui_menu ( - id integer NOT NULL, - parent_path character varying, - name character varying NOT NULL, - active boolean, - sequence integer, - parent_id integer, - web_icon character varying, - action character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_ui_menu OWNER TO ubuntu; - --- --- Name: TABLE ir_ui_menu; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_ui_menu IS 'Menu'; - - --- --- Name: COLUMN ir_ui_menu.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.name IS 'Menu'; - - --- --- Name: COLUMN ir_ui_menu.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.active IS 'Active'; - - --- --- Name: COLUMN ir_ui_menu.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.sequence IS 'Sequence'; - - --- --- Name: COLUMN ir_ui_menu.parent_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.parent_id IS 'Parent Menu'; - - --- --- Name: COLUMN ir_ui_menu.web_icon; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.web_icon IS 'Web Icon File'; - - --- --- Name: COLUMN ir_ui_menu.action; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.action IS 'Action'; - - --- --- Name: COLUMN ir_ui_menu.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_ui_menu.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_ui_menu.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_ui_menu.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_menu.write_date IS 'Last Updated on'; - - --- --- Name: ir_ui_menu_group_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_ui_menu_group_rel ( - menu_id integer NOT NULL, - gid integer NOT NULL -); - - -ALTER TABLE public.ir_ui_menu_group_rel OWNER TO ubuntu; - --- --- Name: TABLE ir_ui_menu_group_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_ui_menu_group_rel IS 'RELATION BETWEEN ir_ui_menu AND res_groups'; - - --- --- Name: ir_ui_menu_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_ui_menu_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_ui_menu_id_seq OWNER TO ubuntu; - --- --- Name: ir_ui_menu_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_ui_menu_id_seq OWNED BY public.ir_ui_menu.id; - - --- --- Name: ir_ui_view; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_ui_view ( - id integer NOT NULL, - name character varying NOT NULL, - model character varying, - key character varying, - priority integer NOT NULL, - type character varying, - arch_db text, - arch_fs character varying, - inherit_id integer, - field_parent character varying, - mode character varying NOT NULL, - active boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone, - CONSTRAINT ir_ui_view_inheritance_mode CHECK ((((mode)::text <> 'extension'::text) OR (inherit_id IS NOT NULL))), - CONSTRAINT ir_ui_view_qweb_required_key CHECK ((((type)::text <> 'qweb'::text) OR (key IS NOT NULL))) -); - - -ALTER TABLE public.ir_ui_view OWNER TO ubuntu; - --- --- Name: TABLE ir_ui_view; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_ui_view IS 'View'; - - --- --- Name: COLUMN ir_ui_view.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.name IS 'View Name'; - - --- --- Name: COLUMN ir_ui_view.model; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.model IS 'Model'; - - --- --- Name: COLUMN ir_ui_view.key; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.key IS 'Key'; - - --- --- Name: COLUMN ir_ui_view.priority; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.priority IS 'Sequence'; - - --- --- Name: COLUMN ir_ui_view.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.type IS 'View Type'; - - --- --- Name: COLUMN ir_ui_view.arch_db; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.arch_db IS 'Arch Blob'; - - --- --- Name: COLUMN ir_ui_view.arch_fs; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.arch_fs IS 'Arch Filename'; - - --- --- Name: COLUMN ir_ui_view.inherit_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.inherit_id IS 'Inherited View'; - - --- --- Name: COLUMN ir_ui_view.field_parent; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.field_parent IS 'Child Field'; - - --- --- Name: COLUMN ir_ui_view.mode; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.mode IS 'View inheritance mode'; - - --- --- Name: COLUMN ir_ui_view.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.active IS 'Active'; - - --- --- Name: COLUMN ir_ui_view.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_ui_view.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_ui_view.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_ui_view.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view.write_date IS 'Last Updated on'; - - --- --- Name: CONSTRAINT ir_ui_view_inheritance_mode ON ir_ui_view; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT ir_ui_view_inheritance_mode ON public.ir_ui_view IS 'CHECK (mode != ''extension'' OR inherit_id IS NOT NULL)'; - - --- --- Name: CONSTRAINT ir_ui_view_qweb_required_key ON ir_ui_view; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT ir_ui_view_qweb_required_key ON public.ir_ui_view IS 'CHECK (type != ''qweb'' OR key IS NOT NULL)'; - - --- --- Name: ir_ui_view_custom; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_ui_view_custom ( - id integer NOT NULL, - ref_id integer NOT NULL, - user_id integer NOT NULL, - arch text NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.ir_ui_view_custom OWNER TO ubuntu; - --- --- Name: TABLE ir_ui_view_custom; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_ui_view_custom IS 'Custom View'; - - --- --- Name: COLUMN ir_ui_view_custom.ref_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.ref_id IS 'Original View'; - - --- --- Name: COLUMN ir_ui_view_custom.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.user_id IS 'User'; - - --- --- Name: COLUMN ir_ui_view_custom.arch; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.arch IS 'View Architecture'; - - --- --- Name: COLUMN ir_ui_view_custom.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.create_uid IS 'Created by'; - - --- --- Name: COLUMN ir_ui_view_custom.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.create_date IS 'Created on'; - - --- --- Name: COLUMN ir_ui_view_custom.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN ir_ui_view_custom.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.ir_ui_view_custom.write_date IS 'Last Updated on'; - - --- --- Name: ir_ui_view_custom_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_ui_view_custom_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_ui_view_custom_id_seq OWNER TO ubuntu; - --- --- Name: ir_ui_view_custom_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_ui_view_custom_id_seq OWNED BY public.ir_ui_view_custom.id; - - --- --- Name: ir_ui_view_group_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.ir_ui_view_group_rel ( - view_id integer NOT NULL, - group_id integer NOT NULL -); - - -ALTER TABLE public.ir_ui_view_group_rel OWNER TO ubuntu; - --- --- Name: TABLE ir_ui_view_group_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.ir_ui_view_group_rel IS 'RELATION BETWEEN ir_ui_view AND res_groups'; - - --- --- Name: ir_ui_view_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.ir_ui_view_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.ir_ui_view_id_seq OWNER TO ubuntu; - --- --- Name: ir_ui_view_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.ir_ui_view_id_seq OWNED BY public.ir_ui_view.id; - - --- --- Name: rel_modules_langexport; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.rel_modules_langexport ( - wiz_id integer NOT NULL, - module_id integer NOT NULL -); - - -ALTER TABLE public.rel_modules_langexport OWNER TO ubuntu; - --- --- Name: TABLE rel_modules_langexport; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.rel_modules_langexport IS 'RELATION BETWEEN base_language_export AND ir_module_module'; - - --- --- Name: rel_server_actions; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.rel_server_actions ( - server_id integer NOT NULL, - action_id integer NOT NULL -); - - -ALTER TABLE public.rel_server_actions OWNER TO ubuntu; - --- --- Name: TABLE rel_server_actions; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.rel_server_actions IS 'RELATION BETWEEN ir_act_server AND ir_act_server'; - - --- --- Name: report_layout; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.report_layout ( - id integer NOT NULL, - view_id integer NOT NULL, - image character varying, - pdf character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.report_layout OWNER TO ubuntu; - --- --- Name: TABLE report_layout; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.report_layout IS 'Report Layout'; - - --- --- Name: COLUMN report_layout.view_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.view_id IS 'Document Template'; - - --- --- Name: COLUMN report_layout.image; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.image IS 'Preview image src'; - - --- --- Name: COLUMN report_layout.pdf; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.pdf IS 'Preview pdf src'; - - --- --- Name: COLUMN report_layout.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.create_uid IS 'Created by'; - - --- --- Name: COLUMN report_layout.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.create_date IS 'Created on'; - - --- --- Name: COLUMN report_layout.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN report_layout.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_layout.write_date IS 'Last Updated on'; - - --- --- Name: report_layout_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.report_layout_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.report_layout_id_seq OWNER TO ubuntu; - --- --- Name: report_layout_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.report_layout_id_seq OWNED BY public.report_layout.id; - - --- --- Name: report_paperformat; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.report_paperformat ( - id integer NOT NULL, - name character varying NOT NULL, - "default" boolean, - format character varying, - margin_top double precision, - margin_bottom double precision, - margin_left double precision, - margin_right double precision, - page_height integer, - page_width integer, - orientation character varying, - header_line boolean, - header_spacing integer, - dpi integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.report_paperformat OWNER TO ubuntu; - --- --- Name: TABLE report_paperformat; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.report_paperformat IS 'Paper Format Config'; - - --- --- Name: COLUMN report_paperformat.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.name IS 'Name'; - - --- --- Name: COLUMN report_paperformat."default"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat."default" IS 'Default paper format ?'; - - --- --- Name: COLUMN report_paperformat.format; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.format IS 'Paper size'; - - --- --- Name: COLUMN report_paperformat.margin_top; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.margin_top IS 'Top Margin (mm)'; - - --- --- Name: COLUMN report_paperformat.margin_bottom; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.margin_bottom IS 'Bottom Margin (mm)'; - - --- --- Name: COLUMN report_paperformat.margin_left; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.margin_left IS 'Left Margin (mm)'; - - --- --- Name: COLUMN report_paperformat.margin_right; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.margin_right IS 'Right Margin (mm)'; - - --- --- Name: COLUMN report_paperformat.page_height; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.page_height IS 'Page height (mm)'; - - --- --- Name: COLUMN report_paperformat.page_width; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.page_width IS 'Page width (mm)'; - - --- --- Name: COLUMN report_paperformat.orientation; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.orientation IS 'Orientation'; - - --- --- Name: COLUMN report_paperformat.header_line; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.header_line IS 'Display a header line'; - - --- --- Name: COLUMN report_paperformat.header_spacing; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.header_spacing IS 'Header spacing'; - - --- --- Name: COLUMN report_paperformat.dpi; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.dpi IS 'Output DPI'; - - --- --- Name: COLUMN report_paperformat.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.create_uid IS 'Created by'; - - --- --- Name: COLUMN report_paperformat.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.create_date IS 'Created on'; - - --- --- Name: COLUMN report_paperformat.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN report_paperformat.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.report_paperformat.write_date IS 'Last Updated on'; - - --- --- Name: report_paperformat_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.report_paperformat_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.report_paperformat_id_seq OWNER TO ubuntu; - --- --- Name: report_paperformat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.report_paperformat_id_seq OWNED BY public.report_paperformat.id; - - --- --- Name: res_bank; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_bank ( - id integer NOT NULL, - name character varying NOT NULL, - street character varying, - street2 character varying, - zip character varying, - city character varying, - state integer, - country integer, - email character varying, - phone character varying, - active boolean, - bic character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_bank OWNER TO ubuntu; - --- --- Name: TABLE res_bank; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_bank IS 'Bank'; - - --- --- Name: COLUMN res_bank.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.name IS 'Name'; - - --- --- Name: COLUMN res_bank.street; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.street IS 'Street'; - - --- --- Name: COLUMN res_bank.street2; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.street2 IS 'Street2'; - - --- --- Name: COLUMN res_bank.zip; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.zip IS 'Zip'; - - --- --- Name: COLUMN res_bank.city; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.city IS 'City'; - - --- --- Name: COLUMN res_bank.state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.state IS 'Fed. State'; - - --- --- Name: COLUMN res_bank.country; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.country IS 'Country'; - - --- --- Name: COLUMN res_bank.email; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.email IS 'Email'; - - --- --- Name: COLUMN res_bank.phone; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.phone IS 'Phone'; - - --- --- Name: COLUMN res_bank.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.active IS 'Active'; - - --- --- Name: COLUMN res_bank.bic; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.bic IS 'Bank Identifier Code'; - - --- --- Name: COLUMN res_bank.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_bank.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.create_date IS 'Created on'; - - --- --- Name: COLUMN res_bank.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_bank.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_bank.write_date IS 'Last Updated on'; - - --- --- Name: res_bank_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_bank_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_bank_id_seq OWNER TO ubuntu; - --- --- Name: res_bank_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_bank_id_seq OWNED BY public.res_bank.id; - - --- --- Name: res_company; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_company ( - id integer NOT NULL, - name character varying NOT NULL, - partner_id integer NOT NULL, - currency_id integer NOT NULL, - sequence integer, - create_date timestamp without time zone, - parent_id integer, - report_header text, - report_footer text, - logo_web bytea, - account_no character varying, - email character varying, - phone character varying, - company_registry character varying, - paperformat_id integer, - external_report_layout_id integer, - base_onboarding_company_state character varying, - create_uid integer, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_company OWNER TO ubuntu; - --- --- Name: COLUMN res_company.parent_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.parent_id IS 'Parent Company'; - - --- --- Name: COLUMN res_company.report_header; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.report_header IS 'Company Tagline'; - - --- --- Name: COLUMN res_company.report_footer; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.report_footer IS 'Report Footer'; - - --- --- Name: COLUMN res_company.logo_web; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.logo_web IS 'Logo Web'; - - --- --- Name: COLUMN res_company.account_no; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.account_no IS 'Account No.'; - - --- --- Name: COLUMN res_company.email; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.email IS 'Email'; - - --- --- Name: COLUMN res_company.phone; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.phone IS 'Phone'; - - --- --- Name: COLUMN res_company.company_registry; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.company_registry IS 'Company Registry'; - - --- --- Name: COLUMN res_company.paperformat_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.paperformat_id IS 'Paper format'; - - --- --- Name: COLUMN res_company.external_report_layout_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.external_report_layout_id IS 'Document Template'; - - --- --- Name: COLUMN res_company.base_onboarding_company_state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.base_onboarding_company_state IS 'State of the onboarding company step'; - - --- --- Name: COLUMN res_company.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_company.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_company.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_company.write_date IS 'Last Updated on'; - - --- --- Name: res_company_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_company_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_company_id_seq OWNER TO ubuntu; - --- --- Name: res_company_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_company_id_seq OWNED BY public.res_company.id; - - --- --- Name: res_company_users_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_company_users_rel ( - cid integer NOT NULL, - user_id integer NOT NULL -); - - -ALTER TABLE public.res_company_users_rel OWNER TO ubuntu; - --- --- Name: TABLE res_company_users_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_company_users_rel IS 'RELATION BETWEEN res_company AND res_users'; - - --- --- Name: res_config; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_config ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_config OWNER TO ubuntu; - --- --- Name: TABLE res_config; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_config IS 'Config'; - - --- --- Name: COLUMN res_config.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_config.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config.create_date IS 'Created on'; - - --- --- Name: COLUMN res_config.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_config.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config.write_date IS 'Last Updated on'; - - --- --- Name: res_config_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_config_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_config_id_seq OWNER TO ubuntu; - --- --- Name: res_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_config_id_seq OWNED BY public.res_config.id; - - --- --- Name: res_config_installer; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_config_installer ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_config_installer OWNER TO ubuntu; - --- --- Name: TABLE res_config_installer; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_config_installer IS 'Config Installer'; - - --- --- Name: COLUMN res_config_installer.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_installer.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_config_installer.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_installer.create_date IS 'Created on'; - - --- --- Name: COLUMN res_config_installer.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_installer.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_config_installer.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_installer.write_date IS 'Last Updated on'; - - --- --- Name: res_config_installer_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_config_installer_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_config_installer_id_seq OWNER TO ubuntu; - --- --- Name: res_config_installer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_config_installer_id_seq OWNED BY public.res_config_installer.id; - - --- --- Name: res_config_settings; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_config_settings ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_config_settings OWNER TO ubuntu; - --- --- Name: TABLE res_config_settings; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_config_settings IS 'Config Settings'; - - --- --- Name: COLUMN res_config_settings.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_settings.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_config_settings.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_settings.create_date IS 'Created on'; - - --- --- Name: COLUMN res_config_settings.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_settings.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_config_settings.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_config_settings.write_date IS 'Last Updated on'; - - --- --- Name: res_config_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_config_settings_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_config_settings_id_seq OWNER TO ubuntu; - --- --- Name: res_config_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_config_settings_id_seq OWNED BY public.res_config_settings.id; - - --- --- Name: res_country; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_country ( - id integer NOT NULL, - name character varying NOT NULL, - code character varying(2), - address_format text, - address_view_id integer, - currency_id integer, - phone_code integer, - name_position character varying, - vat_label character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_country OWNER TO ubuntu; - --- --- Name: TABLE res_country; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_country IS 'Country'; - - --- --- Name: COLUMN res_country.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.name IS 'Country Name'; - - --- --- Name: COLUMN res_country.code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.code IS 'Country Code'; - - --- --- Name: COLUMN res_country.address_format; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.address_format IS 'Layout in Reports'; - - --- --- Name: COLUMN res_country.address_view_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.address_view_id IS 'Input View'; - - --- --- Name: COLUMN res_country.currency_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.currency_id IS 'Currency'; - - --- --- Name: COLUMN res_country.phone_code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.phone_code IS 'Country Calling Code'; - - --- --- Name: COLUMN res_country.name_position; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.name_position IS 'Customer Name Position'; - - --- --- Name: COLUMN res_country.vat_label; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.vat_label IS 'Vat Label'; - - --- --- Name: COLUMN res_country.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_country.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.create_date IS 'Created on'; - - --- --- Name: COLUMN res_country.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_country.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country.write_date IS 'Last Updated on'; - - --- --- Name: res_country_group; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_country_group ( - id integer NOT NULL, - name character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_country_group OWNER TO ubuntu; - --- --- Name: TABLE res_country_group; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_country_group IS 'Country Group'; - - --- --- Name: COLUMN res_country_group.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_group.name IS 'Name'; - - --- --- Name: COLUMN res_country_group.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_group.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_country_group.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_group.create_date IS 'Created on'; - - --- --- Name: COLUMN res_country_group.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_group.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_country_group.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_group.write_date IS 'Last Updated on'; - - --- --- Name: res_country_group_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_country_group_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_country_group_id_seq OWNER TO ubuntu; - --- --- Name: res_country_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_country_group_id_seq OWNED BY public.res_country_group.id; - - --- --- Name: res_country_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_country_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_country_id_seq OWNER TO ubuntu; - --- --- Name: res_country_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_country_id_seq OWNED BY public.res_country.id; - - --- --- Name: res_country_res_country_group_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_country_res_country_group_rel ( - res_country_id integer NOT NULL, - res_country_group_id integer NOT NULL -); - - -ALTER TABLE public.res_country_res_country_group_rel OWNER TO ubuntu; - --- --- Name: TABLE res_country_res_country_group_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_country_res_country_group_rel IS 'RELATION BETWEEN res_country AND res_country_group'; - - --- --- Name: res_country_state; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_country_state ( - id integer NOT NULL, - country_id integer NOT NULL, - name character varying NOT NULL, - code character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_country_state OWNER TO ubuntu; - --- --- Name: TABLE res_country_state; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_country_state IS 'Country state'; - - --- --- Name: COLUMN res_country_state.country_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.country_id IS 'Country'; - - --- --- Name: COLUMN res_country_state.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.name IS 'State Name'; - - --- --- Name: COLUMN res_country_state.code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.code IS 'State Code'; - - --- --- Name: COLUMN res_country_state.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_country_state.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.create_date IS 'Created on'; - - --- --- Name: COLUMN res_country_state.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_country_state.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_country_state.write_date IS 'Last Updated on'; - - --- --- Name: res_country_state_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_country_state_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_country_state_id_seq OWNER TO ubuntu; - --- --- Name: res_country_state_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_country_state_id_seq OWNED BY public.res_country_state.id; - - --- --- Name: res_currency; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_currency ( - id integer NOT NULL, - name character varying NOT NULL, - symbol character varying NOT NULL, - rounding numeric, - decimal_places integer, - active boolean, - "position" character varying, - currency_unit_label character varying, - currency_subunit_label character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone, - CONSTRAINT res_currency_rounding_gt_zero CHECK ((rounding > (0)::numeric)) -); - - -ALTER TABLE public.res_currency OWNER TO ubuntu; - --- --- Name: COLUMN res_currency.rounding; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.rounding IS 'Rounding Factor'; - - --- --- Name: COLUMN res_currency.decimal_places; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.decimal_places IS 'Decimal Places'; - - --- --- Name: COLUMN res_currency.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.active IS 'Active'; - - --- --- Name: COLUMN res_currency."position"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency."position" IS 'Symbol Position'; - - --- --- Name: COLUMN res_currency.currency_unit_label; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.currency_unit_label IS 'Currency Unit'; - - --- --- Name: COLUMN res_currency.currency_subunit_label; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.currency_subunit_label IS 'Currency Subunit'; - - --- --- Name: COLUMN res_currency.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_currency.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.create_date IS 'Created on'; - - --- --- Name: COLUMN res_currency.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_currency.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency.write_date IS 'Last Updated on'; - - --- --- Name: CONSTRAINT res_currency_rounding_gt_zero ON res_currency; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT res_currency_rounding_gt_zero ON public.res_currency IS 'CHECK (rounding>0)'; - - --- --- Name: res_currency_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_currency_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_currency_id_seq OWNER TO ubuntu; - --- --- Name: res_currency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_currency_id_seq OWNED BY public.res_currency.id; - - --- --- Name: res_currency_rate; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_currency_rate ( - id integer NOT NULL, - name date NOT NULL, - rate numeric, - currency_id integer, - company_id integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone, - CONSTRAINT res_currency_rate_currency_rate_check CHECK ((rate > (0)::numeric)) -); - - -ALTER TABLE public.res_currency_rate OWNER TO ubuntu; - --- --- Name: TABLE res_currency_rate; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_currency_rate IS 'Currency Rate'; - - --- --- Name: COLUMN res_currency_rate.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.name IS 'Date'; - - --- --- Name: COLUMN res_currency_rate.rate; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.rate IS 'Rate'; - - --- --- Name: COLUMN res_currency_rate.currency_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.currency_id IS 'Currency'; - - --- --- Name: COLUMN res_currency_rate.company_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.company_id IS 'Company'; - - --- --- Name: COLUMN res_currency_rate.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_currency_rate.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.create_date IS 'Created on'; - - --- --- Name: COLUMN res_currency_rate.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_currency_rate.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_currency_rate.write_date IS 'Last Updated on'; - - --- --- Name: CONSTRAINT res_currency_rate_currency_rate_check ON res_currency_rate; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT res_currency_rate_currency_rate_check ON public.res_currency_rate IS 'CHECK (rate>0)'; - - --- --- Name: res_currency_rate_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_currency_rate_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_currency_rate_id_seq OWNER TO ubuntu; - --- --- Name: res_currency_rate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_currency_rate_id_seq OWNED BY public.res_currency_rate.id; - - --- --- Name: res_groups; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_groups ( - id integer NOT NULL, - name character varying NOT NULL, - comment text, - category_id integer, - color integer, - share boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_groups OWNER TO ubuntu; - --- --- Name: COLUMN res_groups.comment; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.comment IS 'Comment'; - - --- --- Name: COLUMN res_groups.category_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.category_id IS 'Application'; - - --- --- Name: COLUMN res_groups.color; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.color IS 'Color Index'; - - --- --- Name: COLUMN res_groups.share; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.share IS 'Share Group'; - - --- --- Name: COLUMN res_groups.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_groups.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.create_date IS 'Created on'; - - --- --- Name: COLUMN res_groups.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_groups.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_groups.write_date IS 'Last Updated on'; - - --- --- Name: res_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_groups_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_groups_id_seq OWNER TO ubuntu; - --- --- Name: res_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_groups_id_seq OWNED BY public.res_groups.id; - - --- --- Name: res_groups_implied_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_groups_implied_rel ( - gid integer NOT NULL, - hid integer NOT NULL -); - - -ALTER TABLE public.res_groups_implied_rel OWNER TO ubuntu; - --- --- Name: TABLE res_groups_implied_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_groups_implied_rel IS 'RELATION BETWEEN res_groups AND res_groups'; - - --- --- Name: res_groups_report_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_groups_report_rel ( - uid integer NOT NULL, - gid integer NOT NULL -); - - -ALTER TABLE public.res_groups_report_rel OWNER TO ubuntu; - --- --- Name: TABLE res_groups_report_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_groups_report_rel IS 'RELATION BETWEEN ir_act_report_xml AND res_groups'; - - --- --- Name: res_groups_users_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_groups_users_rel ( - gid integer NOT NULL, - uid integer NOT NULL -); - - -ALTER TABLE public.res_groups_users_rel OWNER TO ubuntu; - --- --- Name: TABLE res_groups_users_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_groups_users_rel IS 'RELATION BETWEEN res_groups AND res_users'; - - --- --- Name: res_lang; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_lang ( - id integer NOT NULL, - name character varying NOT NULL, - code character varying NOT NULL, - iso_code character varying, - translatable boolean, - active boolean, - direction character varying NOT NULL, - date_format character varying NOT NULL, - time_format character varying NOT NULL, - week_start integer NOT NULL, - "grouping" character varying NOT NULL, - decimal_point character varying NOT NULL, - thousands_sep character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_lang OWNER TO ubuntu; - --- --- Name: TABLE res_lang; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_lang IS 'Languages'; - - --- --- Name: COLUMN res_lang.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.name IS 'Name'; - - --- --- Name: COLUMN res_lang.code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.code IS 'Locale Code'; - - --- --- Name: COLUMN res_lang.iso_code; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.iso_code IS 'ISO code'; - - --- --- Name: COLUMN res_lang.translatable; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.translatable IS 'Translatable'; - - --- --- Name: COLUMN res_lang.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.active IS 'Active'; - - --- --- Name: COLUMN res_lang.direction; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.direction IS 'Direction'; - - --- --- Name: COLUMN res_lang.date_format; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.date_format IS 'Date Format'; - - --- --- Name: COLUMN res_lang.time_format; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.time_format IS 'Time Format'; - - --- --- Name: COLUMN res_lang.week_start; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.week_start IS 'First Day of Week'; - - --- --- Name: COLUMN res_lang."grouping"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang."grouping" IS 'Separator Format'; - - --- --- Name: COLUMN res_lang.decimal_point; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.decimal_point IS 'Decimal Separator'; - - --- --- Name: COLUMN res_lang.thousands_sep; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.thousands_sep IS 'Thousands Separator'; - - --- --- Name: COLUMN res_lang.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_lang.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.create_date IS 'Created on'; - - --- --- Name: COLUMN res_lang.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_lang.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_lang.write_date IS 'Last Updated on'; - - --- --- Name: res_lang_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_lang_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_lang_id_seq OWNER TO ubuntu; - --- --- Name: res_lang_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_lang_id_seq OWNED BY public.res_lang.id; - - --- --- Name: res_partner; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_partner ( - id integer NOT NULL, - name character varying, - company_id integer, - create_date timestamp without time zone, - display_name character varying, - date date, - title integer, - parent_id integer, - ref character varying, - lang character varying, - tz character varying, - user_id integer, - vat character varying, - website character varying, - comment text, - credit_limit double precision, - barcode character varying, - active boolean, - customer boolean, - supplier boolean, - employee boolean, - function character varying, - type character varying, - street character varying, - street2 character varying, - zip character varying, - city character varying, - state_id integer, - country_id integer, - email character varying, - phone character varying, - mobile character varying, - is_company boolean, - industry_id integer, - color integer, - partner_share boolean, - commercial_partner_id integer, - commercial_company_name character varying, - company_name character varying, - create_uid integer, - write_uid integer, - write_date timestamp without time zone, - CONSTRAINT res_partner_check_name CHECK (((((type)::text = 'contact'::text) AND (name IS NOT NULL)) OR ((type)::text <> 'contact'::text))) -); - - -ALTER TABLE public.res_partner OWNER TO ubuntu; - --- --- Name: COLUMN res_partner.display_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.display_name IS 'Display Name'; - - --- --- Name: COLUMN res_partner.date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.date IS 'Date'; - - --- --- Name: COLUMN res_partner.title; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.title IS 'Title'; - - --- --- Name: COLUMN res_partner.parent_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.parent_id IS 'Related Company'; - - --- --- Name: COLUMN res_partner.ref; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.ref IS 'Internal Reference'; - - --- --- Name: COLUMN res_partner.lang; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.lang IS 'Language'; - - --- --- Name: COLUMN res_partner.tz; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.tz IS 'Timezone'; - - --- --- Name: COLUMN res_partner.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.user_id IS 'Salesperson'; - - --- --- Name: COLUMN res_partner.vat; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.vat IS 'Tax ID'; - - --- --- Name: COLUMN res_partner.website; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.website IS 'Website'; - - --- --- Name: COLUMN res_partner.comment; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.comment IS 'Notes'; - - --- --- Name: COLUMN res_partner.credit_limit; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.credit_limit IS 'Credit Limit'; - - --- --- Name: COLUMN res_partner.barcode; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.barcode IS 'Barcode'; - - --- --- Name: COLUMN res_partner.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.active IS 'Active'; - - --- --- Name: COLUMN res_partner.customer; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.customer IS 'Is a Customer'; - - --- --- Name: COLUMN res_partner.supplier; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.supplier IS 'Is a Vendor'; - - --- --- Name: COLUMN res_partner.employee; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.employee IS 'Employee'; - - --- --- Name: COLUMN res_partner.function; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.function IS 'Job Position'; - - --- --- Name: COLUMN res_partner.type; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.type IS 'Address Type'; - - --- --- Name: COLUMN res_partner.street; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.street IS 'Street'; - - --- --- Name: COLUMN res_partner.street2; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.street2 IS 'Street2'; - - --- --- Name: COLUMN res_partner.zip; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.zip IS 'Zip'; - - --- --- Name: COLUMN res_partner.city; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.city IS 'City'; - - --- --- Name: COLUMN res_partner.state_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.state_id IS 'State'; - - --- --- Name: COLUMN res_partner.country_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.country_id IS 'Country'; - - --- --- Name: COLUMN res_partner.email; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.email IS 'Email'; - - --- --- Name: COLUMN res_partner.phone; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.phone IS 'Phone'; - - --- --- Name: COLUMN res_partner.mobile; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.mobile IS 'Mobile'; - - --- --- Name: COLUMN res_partner.is_company; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.is_company IS 'Is a Company'; - - --- --- Name: COLUMN res_partner.industry_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.industry_id IS 'Industry'; - - --- --- Name: COLUMN res_partner.color; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.color IS 'Color Index'; - - --- --- Name: COLUMN res_partner.partner_share; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.partner_share IS 'Share Partner'; - - --- --- Name: COLUMN res_partner.commercial_partner_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.commercial_partner_id IS 'Commercial Entity'; - - --- --- Name: COLUMN res_partner.commercial_company_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.commercial_company_name IS 'Company Name Entity'; - - --- --- Name: COLUMN res_partner.company_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.company_name IS 'Company Name'; - - --- --- Name: COLUMN res_partner.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_partner.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_partner.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner.write_date IS 'Last Updated on'; - - --- --- Name: CONSTRAINT res_partner_check_name ON res_partner; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON CONSTRAINT res_partner_check_name ON public.res_partner IS 'CHECK( (type=''contact'' AND name IS NOT NULL) or (type!=''contact'') )'; - - --- --- Name: res_partner_bank; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_partner_bank ( - id integer NOT NULL, - acc_number character varying NOT NULL, - sanitized_acc_number character varying, - acc_holder_name character varying, - partner_id integer NOT NULL, - bank_id integer, - sequence integer, - currency_id integer, - company_id integer, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_partner_bank OWNER TO ubuntu; - --- --- Name: TABLE res_partner_bank; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_partner_bank IS 'Bank Accounts'; - - --- --- Name: COLUMN res_partner_bank.acc_number; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.acc_number IS 'Account Number'; - - --- --- Name: COLUMN res_partner_bank.sanitized_acc_number; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.sanitized_acc_number IS 'Sanitized Account Number'; - - --- --- Name: COLUMN res_partner_bank.acc_holder_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.acc_holder_name IS 'Account Holder Name'; - - --- --- Name: COLUMN res_partner_bank.partner_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.partner_id IS 'Account Holder'; - - --- --- Name: COLUMN res_partner_bank.bank_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.bank_id IS 'Bank'; - - --- --- Name: COLUMN res_partner_bank.sequence; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.sequence IS 'Sequence'; - - --- --- Name: COLUMN res_partner_bank.currency_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.currency_id IS 'Currency'; - - --- --- Name: COLUMN res_partner_bank.company_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.company_id IS 'Company'; - - --- --- Name: COLUMN res_partner_bank.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_partner_bank.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.create_date IS 'Created on'; - - --- --- Name: COLUMN res_partner_bank.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_partner_bank.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_bank.write_date IS 'Last Updated on'; - - --- --- Name: res_partner_bank_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_partner_bank_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_partner_bank_id_seq OWNER TO ubuntu; - --- --- Name: res_partner_bank_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_partner_bank_id_seq OWNED BY public.res_partner_bank.id; - - --- --- Name: res_partner_category; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_partner_category ( - id integer NOT NULL, - parent_path character varying, - name character varying NOT NULL, - color integer, - parent_id integer, - active boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_partner_category OWNER TO ubuntu; - --- --- Name: TABLE res_partner_category; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_partner_category IS 'Partner Tags'; - - --- --- Name: COLUMN res_partner_category.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.name IS 'Tag Name'; - - --- --- Name: COLUMN res_partner_category.color; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.color IS 'Color Index'; - - --- --- Name: COLUMN res_partner_category.parent_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.parent_id IS 'Parent Category'; - - --- --- Name: COLUMN res_partner_category.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.active IS 'Active'; - - --- --- Name: COLUMN res_partner_category.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_partner_category.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.create_date IS 'Created on'; - - --- --- Name: COLUMN res_partner_category.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_partner_category.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_category.write_date IS 'Last Updated on'; - - --- --- Name: res_partner_category_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_partner_category_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_partner_category_id_seq OWNER TO ubuntu; - --- --- Name: res_partner_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_partner_category_id_seq OWNED BY public.res_partner_category.id; - - --- --- Name: res_partner_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_partner_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_partner_id_seq OWNER TO ubuntu; - --- --- Name: res_partner_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_partner_id_seq OWNED BY public.res_partner.id; - - --- --- Name: res_partner_industry; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_partner_industry ( - id integer NOT NULL, - name character varying, - full_name character varying, - active boolean, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_partner_industry OWNER TO ubuntu; - --- --- Name: TABLE res_partner_industry; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_partner_industry IS 'Industry'; - - --- --- Name: COLUMN res_partner_industry.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.name IS 'Name'; - - --- --- Name: COLUMN res_partner_industry.full_name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.full_name IS 'Full Name'; - - --- --- Name: COLUMN res_partner_industry.active; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.active IS 'Active'; - - --- --- Name: COLUMN res_partner_industry.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_partner_industry.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.create_date IS 'Created on'; - - --- --- Name: COLUMN res_partner_industry.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_partner_industry.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_industry.write_date IS 'Last Updated on'; - - --- --- Name: res_partner_industry_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_partner_industry_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_partner_industry_id_seq OWNER TO ubuntu; - --- --- Name: res_partner_industry_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_partner_industry_id_seq OWNED BY public.res_partner_industry.id; - - --- --- Name: res_partner_res_partner_category_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_partner_res_partner_category_rel ( - category_id integer NOT NULL, - partner_id integer NOT NULL -); - - -ALTER TABLE public.res_partner_res_partner_category_rel OWNER TO ubuntu; - --- --- Name: TABLE res_partner_res_partner_category_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_partner_res_partner_category_rel IS 'RELATION BETWEEN res_partner_category AND res_partner'; - - --- --- Name: res_partner_title; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_partner_title ( - id integer NOT NULL, - name character varying NOT NULL, - shortcut character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_partner_title OWNER TO ubuntu; - --- --- Name: TABLE res_partner_title; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_partner_title IS 'Partner Title'; - - --- --- Name: COLUMN res_partner_title.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_title.name IS 'Title'; - - --- --- Name: COLUMN res_partner_title.shortcut; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_title.shortcut IS 'Abbreviation'; - - --- --- Name: COLUMN res_partner_title.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_title.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_partner_title.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_title.create_date IS 'Created on'; - - --- --- Name: COLUMN res_partner_title.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_title.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_partner_title.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_partner_title.write_date IS 'Last Updated on'; - - --- --- Name: res_partner_title_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_partner_title_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_partner_title_id_seq OWNER TO ubuntu; - --- --- Name: res_partner_title_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_partner_title_id_seq OWNED BY public.res_partner_title.id; - - --- --- Name: res_users; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_users ( - id integer NOT NULL, - active boolean DEFAULT true, - login character varying NOT NULL, - password character varying, - company_id integer NOT NULL, - partner_id integer NOT NULL, - create_date timestamp without time zone, - signature text, - action_id integer, - share boolean, - create_uid integer, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_users OWNER TO ubuntu; - --- --- Name: COLUMN res_users.signature; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users.signature IS 'Signature'; - - --- --- Name: COLUMN res_users.action_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users.action_id IS 'Home Action'; - - --- --- Name: COLUMN res_users.share; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users.share IS 'Share User'; - - --- --- Name: COLUMN res_users.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_users.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_users.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users.write_date IS 'Last Updated on'; - - --- --- Name: res_users_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_users_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_users_id_seq OWNER TO ubuntu; - --- --- Name: res_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_users_id_seq OWNED BY public.res_users.id; - - --- --- Name: res_users_log; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.res_users_log ( - id integer NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.res_users_log OWNER TO ubuntu; - --- --- Name: TABLE res_users_log; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.res_users_log IS 'Users Log'; - - --- --- Name: COLUMN res_users_log.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users_log.create_uid IS 'Created by'; - - --- --- Name: COLUMN res_users_log.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users_log.create_date IS 'Created on'; - - --- --- Name: COLUMN res_users_log.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users_log.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN res_users_log.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.res_users_log.write_date IS 'Last Updated on'; - - --- --- Name: res_users_log_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.res_users_log_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.res_users_log_id_seq OWNER TO ubuntu; - --- --- Name: res_users_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.res_users_log_id_seq OWNED BY public.res_users_log.id; - - --- --- Name: rule_group_rel; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.rule_group_rel ( - rule_group_id integer NOT NULL, - group_id integer NOT NULL -); - - -ALTER TABLE public.rule_group_rel OWNER TO ubuntu; - --- --- Name: TABLE rule_group_rel; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.rule_group_rel IS 'RELATION BETWEEN ir_rule AND res_groups'; - - --- --- Name: web_editor_converter_test; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.web_editor_converter_test ( - id integer NOT NULL, - "char" character varying, - "integer" integer, - "float" double precision, - "numeric" numeric, - many2one integer, - "binary" bytea, - date date, - datetime timestamp without time zone, - selection integer, - selection_str character varying, - html text, - text text, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.web_editor_converter_test OWNER TO ubuntu; - --- --- Name: TABLE web_editor_converter_test; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.web_editor_converter_test IS 'Web Editor Converter Test'; - - --- --- Name: COLUMN web_editor_converter_test."char"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test."char" IS 'Char'; - - --- --- Name: COLUMN web_editor_converter_test."integer"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test."integer" IS 'Integer'; - - --- --- Name: COLUMN web_editor_converter_test."float"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test."float" IS 'Float'; - - --- --- Name: COLUMN web_editor_converter_test."numeric"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test."numeric" IS 'Numeric'; - - --- --- Name: COLUMN web_editor_converter_test.many2one; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.many2one IS 'Many2One'; - - --- --- Name: COLUMN web_editor_converter_test."binary"; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test."binary" IS 'Binary'; - - --- --- Name: COLUMN web_editor_converter_test.date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.date IS 'Date'; - - --- --- Name: COLUMN web_editor_converter_test.datetime; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.datetime IS 'Datetime'; - - --- --- Name: COLUMN web_editor_converter_test.selection; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.selection IS 'Selection'; - - --- --- Name: COLUMN web_editor_converter_test.selection_str; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.selection_str IS 'Lorsqu''un pancake prend l''avion à destination de Toronto et qu''il fait une escale technique à St Claude, on dit:'; - - --- --- Name: COLUMN web_editor_converter_test.html; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.html IS 'Html'; - - --- --- Name: COLUMN web_editor_converter_test.text; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.text IS 'Text'; - - --- --- Name: COLUMN web_editor_converter_test.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.create_uid IS 'Created by'; - - --- --- Name: COLUMN web_editor_converter_test.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.create_date IS 'Created on'; - - --- --- Name: COLUMN web_editor_converter_test.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN web_editor_converter_test.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test.write_date IS 'Last Updated on'; - - --- --- Name: web_editor_converter_test_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.web_editor_converter_test_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.web_editor_converter_test_id_seq OWNER TO ubuntu; - --- --- Name: web_editor_converter_test_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.web_editor_converter_test_id_seq OWNED BY public.web_editor_converter_test.id; - - --- --- Name: web_editor_converter_test_sub; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.web_editor_converter_test_sub ( - id integer NOT NULL, - name character varying, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.web_editor_converter_test_sub OWNER TO ubuntu; - --- --- Name: TABLE web_editor_converter_test_sub; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.web_editor_converter_test_sub IS 'Web Editor Converter Subtest'; - - --- --- Name: COLUMN web_editor_converter_test_sub.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test_sub.name IS 'Name'; - - --- --- Name: COLUMN web_editor_converter_test_sub.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test_sub.create_uid IS 'Created by'; - - --- --- Name: COLUMN web_editor_converter_test_sub.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test_sub.create_date IS 'Created on'; - - --- --- Name: COLUMN web_editor_converter_test_sub.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test_sub.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN web_editor_converter_test_sub.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_editor_converter_test_sub.write_date IS 'Last Updated on'; - - --- --- Name: web_editor_converter_test_sub_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.web_editor_converter_test_sub_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.web_editor_converter_test_sub_id_seq OWNER TO ubuntu; - --- --- Name: web_editor_converter_test_sub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.web_editor_converter_test_sub_id_seq OWNED BY public.web_editor_converter_test_sub.id; - - --- --- Name: web_tour_tour; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.web_tour_tour ( - id integer NOT NULL, - name character varying NOT NULL, - user_id integer -); - - -ALTER TABLE public.web_tour_tour OWNER TO ubuntu; - --- --- Name: TABLE web_tour_tour; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.web_tour_tour IS 'Tours'; - - --- --- Name: COLUMN web_tour_tour.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_tour_tour.name IS 'Tour name'; - - --- --- Name: COLUMN web_tour_tour.user_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.web_tour_tour.user_id IS 'Consumed by'; - - --- --- Name: web_tour_tour_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.web_tour_tour_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.web_tour_tour_id_seq OWNER TO ubuntu; - --- --- Name: web_tour_tour_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.web_tour_tour_id_seq OWNED BY public.web_tour_tour.id; - - --- --- Name: wizard_ir_model_menu_create; Type: TABLE; Schema: public; Owner: ubuntu --- - -CREATE TABLE public.wizard_ir_model_menu_create ( - id integer NOT NULL, - menu_id integer NOT NULL, - name character varying NOT NULL, - create_uid integer, - create_date timestamp without time zone, - write_uid integer, - write_date timestamp without time zone -); - - -ALTER TABLE public.wizard_ir_model_menu_create OWNER TO ubuntu; - --- --- Name: TABLE wizard_ir_model_menu_create; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON TABLE public.wizard_ir_model_menu_create IS 'Create Menu Wizard'; - - --- --- Name: COLUMN wizard_ir_model_menu_create.menu_id; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.wizard_ir_model_menu_create.menu_id IS 'Parent Menu'; - - --- --- Name: COLUMN wizard_ir_model_menu_create.name; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.wizard_ir_model_menu_create.name IS 'Menu Name'; - - --- --- Name: COLUMN wizard_ir_model_menu_create.create_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.wizard_ir_model_menu_create.create_uid IS 'Created by'; - - --- --- Name: COLUMN wizard_ir_model_menu_create.create_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.wizard_ir_model_menu_create.create_date IS 'Created on'; - - --- --- Name: COLUMN wizard_ir_model_menu_create.write_uid; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.wizard_ir_model_menu_create.write_uid IS 'Last Updated by'; - - --- --- Name: COLUMN wizard_ir_model_menu_create.write_date; Type: COMMENT; Schema: public; Owner: ubuntu --- - -COMMENT ON COLUMN public.wizard_ir_model_menu_create.write_date IS 'Last Updated on'; - - --- --- Name: wizard_ir_model_menu_create_id_seq; Type: SEQUENCE; Schema: public; Owner: ubuntu --- - -CREATE SEQUENCE public.wizard_ir_model_menu_create_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.wizard_ir_model_menu_create_id_seq OWNER TO ubuntu; - --- --- Name: wizard_ir_model_menu_create_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ubuntu --- - -ALTER SEQUENCE public.wizard_ir_model_menu_create_id_seq OWNED BY public.wizard_ir_model_menu_create.id; - - --- --- Name: base_import_import id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_import ALTER COLUMN id SET DEFAULT nextval('public.base_import_import_id_seq'::regclass); - - --- --- Name: base_import_mapping id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_mapping ALTER COLUMN id SET DEFAULT nextval('public.base_import_mapping_id_seq'::regclass); - - --- --- Name: base_import_tests_models_char id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_char ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_char_id_seq'::regclass); - - --- --- Name: base_import_tests_models_char_noreadonly id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_char_noreadonly ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_char_noreadonly_id_seq'::regclass); - - --- --- Name: base_import_tests_models_char_readonly id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_char_readonly ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_char_readonly_id_seq'::regclass); - - --- --- Name: base_import_tests_models_char_required id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_char_required ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_char_required_id_seq'::regclass); - - --- --- Name: base_import_tests_models_char_states id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_char_states ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_char_states_id_seq'::regclass); - - --- --- Name: base_import_tests_models_char_stillreadonly id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_char_stillreadonly ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_char_stillreadonly_id_seq'::regclass); - - --- --- Name: base_import_tests_models_complex id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_complex ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_complex_id_seq'::regclass); - - --- --- Name: base_import_tests_models_float id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_float ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_float_id_seq'::regclass); - - --- --- Name: base_import_tests_models_m2o id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_m2o ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_m2o_id_seq'::regclass); - - --- --- Name: base_import_tests_models_m2o_related id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_m2o_related ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_m2o_related_id_seq'::regclass); - - --- --- Name: base_import_tests_models_m2o_required id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_m2o_required ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_m2o_required_id_seq'::regclass); - - --- --- Name: base_import_tests_models_m2o_required_related id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_m2o_required_related ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_m2o_required_related_id_seq'::regclass); - - --- --- Name: base_import_tests_models_o2m id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_o2m ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_o2m_id_seq'::regclass); - - --- --- Name: base_import_tests_models_o2m_child id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_o2m_child ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_o2m_child_id_seq'::regclass); - - --- --- Name: base_import_tests_models_preview id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_import_tests_models_preview ALTER COLUMN id SET DEFAULT nextval('public.base_import_tests_models_preview_id_seq'::regclass); - - --- --- Name: base_language_export id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_language_export ALTER COLUMN id SET DEFAULT nextval('public.base_language_export_id_seq'::regclass); - - --- --- Name: base_language_import id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_language_import ALTER COLUMN id SET DEFAULT nextval('public.base_language_import_id_seq'::regclass); - - --- --- Name: base_language_install id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_language_install ALTER COLUMN id SET DEFAULT nextval('public.base_language_install_id_seq'::regclass); - - --- --- Name: base_module_uninstall id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_module_uninstall ALTER COLUMN id SET DEFAULT nextval('public.base_module_uninstall_id_seq'::regclass); - - --- --- Name: base_module_update id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_module_update ALTER COLUMN id SET DEFAULT nextval('public.base_module_update_id_seq'::regclass); - - --- --- Name: base_module_upgrade id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_module_upgrade ALTER COLUMN id SET DEFAULT nextval('public.base_module_upgrade_id_seq'::regclass); - - --- --- Name: base_partner_merge_automatic_wizard id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_partner_merge_automatic_wizard ALTER COLUMN id SET DEFAULT nextval('public.base_partner_merge_automatic_wizard_id_seq'::regclass); - - --- --- Name: base_partner_merge_line id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_partner_merge_line ALTER COLUMN id SET DEFAULT nextval('public.base_partner_merge_line_id_seq'::regclass); - - --- --- Name: base_update_translations id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.base_update_translations ALTER COLUMN id SET DEFAULT nextval('public.base_update_translations_id_seq'::regclass); - - --- --- Name: change_password_user id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.change_password_user ALTER COLUMN id SET DEFAULT nextval('public.change_password_user_id_seq'::regclass); - - --- --- Name: change_password_wizard id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.change_password_wizard ALTER COLUMN id SET DEFAULT nextval('public.change_password_wizard_id_seq'::regclass); - - --- --- Name: ir_act_client id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_act_client ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_id_seq'::regclass); - - --- --- Name: ir_act_report_xml id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_act_report_xml ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_id_seq'::regclass); - - --- --- Name: ir_act_server id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_act_server ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_id_seq'::regclass); - - --- --- Name: ir_act_url id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_act_url ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_id_seq'::regclass); - - --- --- Name: ir_act_window id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_act_window ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_id_seq'::regclass); - - --- --- Name: ir_act_window_view id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_act_window_view ALTER COLUMN id SET DEFAULT nextval('public.ir_act_window_view_id_seq'::regclass); - - --- --- Name: ir_actions id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_actions ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_id_seq'::regclass); - - --- --- Name: ir_actions_todo id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_actions_todo ALTER COLUMN id SET DEFAULT nextval('public.ir_actions_todo_id_seq'::regclass); - - --- --- Name: ir_attachment id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_attachment ALTER COLUMN id SET DEFAULT nextval('public.ir_attachment_id_seq'::regclass); - - --- --- Name: ir_config_parameter id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_config_parameter ALTER COLUMN id SET DEFAULT nextval('public.ir_config_parameter_id_seq'::regclass); - - --- --- Name: ir_cron id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_cron ALTER COLUMN id SET DEFAULT nextval('public.ir_cron_id_seq'::regclass); - - --- --- Name: ir_default id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_default ALTER COLUMN id SET DEFAULT nextval('public.ir_default_id_seq'::regclass); - - --- --- Name: ir_demo id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_demo ALTER COLUMN id SET DEFAULT nextval('public.ir_demo_id_seq'::regclass); - - --- --- Name: ir_demo_failure id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_demo_failure ALTER COLUMN id SET DEFAULT nextval('public.ir_demo_failure_id_seq'::regclass); - - --- --- Name: ir_demo_failure_wizard id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_demo_failure_wizard ALTER COLUMN id SET DEFAULT nextval('public.ir_demo_failure_wizard_id_seq'::regclass); - - --- --- Name: ir_exports id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_exports ALTER COLUMN id SET DEFAULT nextval('public.ir_exports_id_seq'::regclass); - - --- --- Name: ir_exports_line id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_exports_line ALTER COLUMN id SET DEFAULT nextval('public.ir_exports_line_id_seq'::regclass); - - --- --- Name: ir_filters id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_filters ALTER COLUMN id SET DEFAULT nextval('public.ir_filters_id_seq'::regclass); - - --- --- Name: ir_logging id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_logging ALTER COLUMN id SET DEFAULT nextval('public.ir_logging_id_seq'::regclass); - - --- --- Name: ir_mail_server id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_mail_server ALTER COLUMN id SET DEFAULT nextval('public.ir_mail_server_id_seq'::regclass); - - --- --- Name: ir_model id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_model ALTER COLUMN id SET DEFAULT nextval('public.ir_model_id_seq'::regclass); - - --- --- Name: ir_model_access id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_model_access ALTER COLUMN id SET DEFAULT nextval('public.ir_model_access_id_seq'::regclass); - - --- --- Name: ir_model_constraint id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_model_constraint ALTER COLUMN id SET DEFAULT nextval('public.ir_model_constraint_id_seq'::regclass); - - --- --- Name: ir_model_data id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_model_data ALTER COLUMN id SET DEFAULT nextval('public.ir_model_data_id_seq'::regclass); - - --- --- Name: ir_model_fields id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_model_fields ALTER COLUMN id SET DEFAULT nextval('public.ir_model_fields_id_seq'::regclass); - - --- --- Name: ir_model_relation id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_model_relation ALTER COLUMN id SET DEFAULT nextval('public.ir_model_relation_id_seq'::regclass); - - --- --- Name: ir_module_category id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_module_category ALTER COLUMN id SET DEFAULT nextval('public.ir_module_category_id_seq'::regclass); - - --- --- Name: ir_module_module id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_module_module ALTER COLUMN id SET DEFAULT nextval('public.ir_module_module_id_seq'::regclass); - - --- --- Name: ir_module_module_dependency id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_module_module_dependency ALTER COLUMN id SET DEFAULT nextval('public.ir_module_module_dependency_id_seq'::regclass); - - --- --- Name: ir_module_module_exclusion id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_module_module_exclusion ALTER COLUMN id SET DEFAULT nextval('public.ir_module_module_exclusion_id_seq'::regclass); - - --- --- Name: ir_property id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_property ALTER COLUMN id SET DEFAULT nextval('public.ir_property_id_seq'::regclass); - - --- --- Name: ir_rule id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_rule ALTER COLUMN id SET DEFAULT nextval('public.ir_rule_id_seq'::regclass); - - --- --- Name: ir_sequence id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_sequence ALTER COLUMN id SET DEFAULT nextval('public.ir_sequence_id_seq'::regclass); - - --- --- Name: ir_sequence_date_range id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_sequence_date_range ALTER COLUMN id SET DEFAULT nextval('public.ir_sequence_date_range_id_seq'::regclass); - - --- --- Name: ir_server_object_lines id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_server_object_lines ALTER COLUMN id SET DEFAULT nextval('public.ir_server_object_lines_id_seq'::regclass); - - --- --- Name: ir_translation id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_translation ALTER COLUMN id SET DEFAULT nextval('public.ir_translation_id_seq'::regclass); - - --- --- Name: ir_ui_menu id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_ui_menu ALTER COLUMN id SET DEFAULT nextval('public.ir_ui_menu_id_seq'::regclass); - - --- --- Name: ir_ui_view id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_ui_view ALTER COLUMN id SET DEFAULT nextval('public.ir_ui_view_id_seq'::regclass); - - --- --- Name: ir_ui_view_custom id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.ir_ui_view_custom ALTER COLUMN id SET DEFAULT nextval('public.ir_ui_view_custom_id_seq'::regclass); - - --- --- Name: report_layout id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.report_layout ALTER COLUMN id SET DEFAULT nextval('public.report_layout_id_seq'::regclass); - - --- --- Name: report_paperformat id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.report_paperformat ALTER COLUMN id SET DEFAULT nextval('public.report_paperformat_id_seq'::regclass); - - --- --- Name: res_bank id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_bank ALTER COLUMN id SET DEFAULT nextval('public.res_bank_id_seq'::regclass); - - --- --- Name: res_company id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_company ALTER COLUMN id SET DEFAULT nextval('public.res_company_id_seq'::regclass); - - --- --- Name: res_config id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_config ALTER COLUMN id SET DEFAULT nextval('public.res_config_id_seq'::regclass); - - --- --- Name: res_config_installer id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_config_installer ALTER COLUMN id SET DEFAULT nextval('public.res_config_installer_id_seq'::regclass); - - --- --- Name: res_config_settings id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_config_settings ALTER COLUMN id SET DEFAULT nextval('public.res_config_settings_id_seq'::regclass); - - --- --- Name: res_country id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_country ALTER COLUMN id SET DEFAULT nextval('public.res_country_id_seq'::regclass); - - --- --- Name: res_country_group id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_country_group ALTER COLUMN id SET DEFAULT nextval('public.res_country_group_id_seq'::regclass); - - --- --- Name: res_country_state id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_country_state ALTER COLUMN id SET DEFAULT nextval('public.res_country_state_id_seq'::regclass); - - --- --- Name: res_currency id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_currency ALTER COLUMN id SET DEFAULT nextval('public.res_currency_id_seq'::regclass); - - --- --- Name: res_currency_rate id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_currency_rate ALTER COLUMN id SET DEFAULT nextval('public.res_currency_rate_id_seq'::regclass); - - --- --- Name: res_groups id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_groups ALTER COLUMN id SET DEFAULT nextval('public.res_groups_id_seq'::regclass); - - --- --- Name: res_lang id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_lang ALTER COLUMN id SET DEFAULT nextval('public.res_lang_id_seq'::regclass); - - --- --- Name: res_partner id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_partner ALTER COLUMN id SET DEFAULT nextval('public.res_partner_id_seq'::regclass); - - --- --- Name: res_partner_bank id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_partner_bank ALTER COLUMN id SET DEFAULT nextval('public.res_partner_bank_id_seq'::regclass); - - --- --- Name: res_partner_category id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_partner_category ALTER COLUMN id SET DEFAULT nextval('public.res_partner_category_id_seq'::regclass); - - --- --- Name: res_partner_industry id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_partner_industry ALTER COLUMN id SET DEFAULT nextval('public.res_partner_industry_id_seq'::regclass); - - --- --- Name: res_partner_title id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_partner_title ALTER COLUMN id SET DEFAULT nextval('public.res_partner_title_id_seq'::regclass); - - --- --- Name: res_users id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_users ALTER COLUMN id SET DEFAULT nextval('public.res_users_id_seq'::regclass); - - --- --- Name: res_users_log id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.res_users_log ALTER COLUMN id SET DEFAULT nextval('public.res_users_log_id_seq'::regclass); - - --- --- Name: web_editor_converter_test id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.web_editor_converter_test ALTER COLUMN id SET DEFAULT nextval('public.web_editor_converter_test_id_seq'::regclass); - - --- --- Name: web_editor_converter_test_sub id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.web_editor_converter_test_sub ALTER COLUMN id SET DEFAULT nextval('public.web_editor_converter_test_sub_id_seq'::regclass); - - --- --- Name: web_tour_tour id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.web_tour_tour ALTER COLUMN id SET DEFAULT nextval('public.web_tour_tour_id_seq'::regclass); - - --- --- Name: wizard_ir_model_menu_create id; Type: DEFAULT; Schema: public; Owner: ubuntu --- - -ALTER TABLE ONLY public.wizard_ir_model_menu_create ALTER COLUMN id SET DEFAULT nextval('public.wizard_ir_model_menu_create_id_seq'::regclass); - - --- --- Data for Name: base_import_import; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_import (id, res_model, file, file_name, file_type, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_mapping; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_mapping (id, res_model, column_name, field_name, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_char; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_char (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_char_noreadonly; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_char_noreadonly (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_char_readonly; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_char_readonly (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_char_required; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_char_required (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_char_states; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_char_states (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_char_stillreadonly; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_char_stillreadonly (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_complex; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_complex (id, f, m, c, currency_id, d, dt, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_float; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_float (id, value, value2, currency_id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_m2o; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_m2o (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_m2o_related; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_m2o_related (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_m2o_required; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_m2o_required (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_m2o_required_related; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_m2o_required_related (id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_o2m; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_o2m (id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_o2m_child; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_o2m_child (id, parent_id, value, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_import_tests_models_preview; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_import_tests_models_preview (id, name, somevalue, othervalue, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_language_export; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_language_export (id, name, lang, format, data, state, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_language_import; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_language_import (id, name, code, data, filename, overwrite, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_language_install; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_language_install (id, lang, overwrite, state, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_module_uninstall; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_module_uninstall (id, show_all, module_id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_module_update; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_module_update (id, updated, added, state, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_module_upgrade; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_module_upgrade (id, module_info, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_partner_merge_automatic_wizard; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_partner_merge_automatic_wizard (id, group_by_email, group_by_name, group_by_is_company, group_by_vat, group_by_parent_id, state, number_group, current_line_id, dst_partner_id, exclude_contact, exclude_journal_item, maximum_group, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_partner_merge_automatic_wizard_res_partner_rel; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_partner_merge_automatic_wizard_res_partner_rel (base_partner_merge_automatic_wizard_id, res_partner_id) FROM stdin; -\. - - --- --- Data for Name: base_partner_merge_line; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_partner_merge_line (id, wizard_id, min_id, aggr_ids, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: base_update_translations; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.base_update_translations (id, lang, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: change_password_user; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.change_password_user (id, wizard_id, user_id, user_login, new_passwd, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: change_password_wizard; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.change_password_wizard (id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_act_client; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_client (id, name, type, help, binding_model_id, binding_type, create_uid, create_date, write_uid, write_date, tag, target, res_model, context, params_store) FROM stdin; -2 Open Settings Menu ir.actions.client \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 reload current \N {} \\x7b276d656e755f6964273a20347d -33 App Store ir.actions.client \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 apps current \N {} \N -34 Updates ir.actions.client \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 apps.updates current \N {} \\x7b7d -77 Dashboard ir.actions.client \N \N action 1 2020-10-28 19:01:06.19769 1 2020-10-28 19:01:06.19769 web_settings_dashboard.main current \N {} \N -\. - - --- --- Data for Name: ir_act_report_xml; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_report_xml (id, name, type, help, binding_model_id, binding_type, create_uid, create_date, write_uid, write_date, model, report_type, report_name, report_file, multi, paperformat_id, print_report_name, attachment_use, attachment) FROM stdin; -30 Model Overview ir.actions.report \N 3 report 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 ir.model qweb-pdf base.report_irmodeloverview base.report_irmodeloverview f \N \N f \N -35 Technical guide ir.actions.report \N 60 report 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 ir.module.module qweb-pdf base.report_irmodulereference base.report_irmodulereference f \N \N f \N -75 Preview Internal Report ir.actions.report \N 83 report 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 res.company qweb-pdf web.preview_internalreport web.preview_internalreport f \N \N f \N -76 Preview External Report ir.actions.report \N 83 report 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 res.company qweb-pdf web.preview_externalreport web.preview_externalreport f \N \N f \N -\. - - --- --- Data for Name: ir_act_server; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_server (id, name, type, help, binding_model_id, binding_type, create_uid, create_date, write_uid, write_date, usage, state, sequence, model_id, model_name, code, crud_model_id, link_field_id) FROM stdin; -9 Config: Run Remaining Action Todo ir.actions.server \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 ir_actions_server code 5 78 res.config \nconfig = model.next() or {}\nif config.get('type') not in ('ir.actions.act_window_close',):\n action = config\n \N \N -29 Base: Auto-vacuum internal data ir.actions.server \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 ir_cron code 5 34 ir.autovacuum model.power_on() \N \N -45 Install Modules ir.actions.server \N 60 action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 ir_actions_server code 5 60 ir.module.module records.button_immediate_install() \N \N -46 Failed to install demo data for some modules, demo disabled ir.actions.server \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 ir_actions_server code 5 65 ir.demo_failure.wizard \nfailures = env['ir.demo_failure'].search([\n ('wizard_id', '=', False),\n])\nrecord = model.create({\n 'failure_ids': [(6, 0, failures.ids)],\n})\naction = {\n 'type': 'ir.actions.act_window',\n 'res_id': record.id,\n 'res_model': 'ir.demo_failure.wizard',\n 'target': 'new',\n 'views': [(env.ref('base.demo_failures_dialog').id, 'form')],\n}\n \N \N -\. - - --- --- Data for Name: ir_act_url; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_url (id, name, type, help, binding_model_id, binding_type, create_uid, create_date, write_uid, write_date, url, target) FROM stdin; -3 Home Menu ir.actions.act_url \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 /web self -\. - - --- --- Data for Name: ir_act_window; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_window (id, name, type, help, binding_model_id, binding_type, create_uid, create_date, write_uid, write_date, view_id, domain, context, res_id, res_model, src_model, target, view_mode, view_type, usage, "limit", search_view_id, filter, auto_search, multi) FROM stdin; -1 Load demo data ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.demo \N new form form \N 80 \N f t f -4 Actions ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 5 \N {} \N ir.actions.actions \N current tree,form form \N 80 6 f t f -5 Reports ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 8 \N {} \N ir.actions.report \N current tree,form form \N 80 9 f t f -6 Window Actions ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.actions.act_window \N current tree,form form \N 80 12 f t f -7 Server Actions ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 14 \N {'key':'server_action'} \N ir.actions.server \N current tree,form form \N 80 15 f t f -8 Configuration Wizards ir.actions.act_window

The configuration wizards are used to help you configure a new instance of Odoo. They are launched during the installation of new modules, but you can choose to restart some wizards manually from this menu.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 16 \N {} \N ir.actions.todo \N current tree,form form \N 80 \N f t f -10 System Parameters ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {} \N ir.config_parameter \N current tree,form form \N 0 \N f t f -11 Scheduled Actions ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 23 \N {'search_default_all': 1} \N ir.cron \N current tree,form,calendar form \N 80 \N f t f -12 User-defined Filters ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.filters \N current tree,form form \N 80 \N f t f -13 Outgoing Mail Servers ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 30 \N {} \N ir.mail_server \N current tree,form form \N 80 31 f t f -14 Create Menu ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {'model_id': active_id} \N wizard.ir.model.menu.create \N new form form \N 0 \N f t f -15 Models ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 34 \N {} \N ir.model \N current tree,form form \N 80 \N f t f -16 Fields ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 37 \N {} \N ir.model.fields \N current tree,form form \N 80 \N f t f -17 External Identifiers ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 40 \N {} \N ir.model.data \N current tree,form form \N 80 \N f t f -18 Model Constraints ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 43 \N {} \N ir.model.constraint \N current tree,form form \N 80 \N f t f -19 ManyToMany Relations ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 45 \N {} \N ir.model.relation \N current tree,form form \N 80 \N f t f -20 Access Rights ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 46 \N {} \N ir.model.access \N current tree,form form \N 80 48 f t f -21 Attachments ir.actions.act_window

\n Create a new document\n

\n

\n Also you will find here all the related documents and download it by clicking on any individual document.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.attachment \N current tree,form form \N 80 51 f t f -22 Record Rules ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 53 \N {} \N ir.rule \N current tree,form form \N 80 54 f t f -23 Sequences ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 56 \N {'active_test': False} \N ir.sequence \N current tree,form form \N 80 \N f t f -24 Translated Terms ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 60 \N {} \N ir.translation \N current tree,form form \N 80 \N f t f -25 Menu Items ir.actions.act_window

Manage and customize the items available and displayed in your Odoo system menu. You can delete an item by clicking on the box at the beginning of each line and then delete it through the button that appeared. Items can be assigned to specific groups in order to make them accessible to some users within the system.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 64 \N {'ir.ui.menu.full_list':True} \N ir.ui.menu \N current tree,form form \N 80 65 f t f -26 Views ir.actions.act_window

Views allows you to personalize each view of Odoo. You can add new fields, move fields, rename them or delete the ones that you do not need.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 67 \N {'search_default_active': 1} \N ir.ui.view \N current tree,form form \N 80 \N f t f -27 Customized Views ir.actions.act_window

Create a customized view

Customized views are used when users reorganize the content of their dashboard views (via web client)

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.ui.view.custom \N current tree,form form \N 80 \N f t f -28 User-defined Defaults ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.default \N current tree,form form \N 80 74 f t f -31 Logging ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.logging \N current tree,form form \N 80 78 f t f -32 Apps ir.actions.act_window

\n No website module found!\n

\n You should try other search criteria.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {'search_default_app':1} \N ir.module.module \N current kanban,tree,form form \N 80 83 f t f -36 Module Update ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N base.module.update \N new form form \N 80 \N f t f -37 Load a Translation ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N base.language.install \N new form form \N 80 \N f t f -38 Import Translation ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N base.language.import \N new form form \N 80 \N f t f -39 Apply Schedule Upgrade ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N base.module.upgrade \N new form form \N 80 \N f t f -40 Module Upgrade Install ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 92 \N {} \N base.module.upgrade \N new form form \N 80 \N f t f -41 Export Translation ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N base.language.export \N new form form \N 80 \N f t f -42 Generate Missing Terms ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N base.update.translations \N new form form \N 80 \N f t f -43 Deduplicate Contacts ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {'active_test': False} \N base.partner.merge.automatic.wizard \N new form form \N 80 \N f t f -44 Merge Contacts ir.actions.act_window \N 74 action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {} \N base.partner.merge.automatic.wizard res.partner new form form \N 0 \N f t t -47 Companies ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [('id','=',active_id)] {} \N res.company \N current tree,form form \N 80 \N f t f -74 Set your company data ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 160 \N {} \N res.company \N new form form \N 80 \N f t f -48 Companies ir.actions.act_window

\n Create a new company\n

\n Create and manage the companies that will be managed by Odoo from here. Shops or subsidiaries can be created and maintained from here.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.company \N current tree,kanban,form form \N 80 \N f t f -49 Languages ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {'active_test': False} \N res.lang \N current tree,form form \N 80 106 f t f -50 Contact Titles ir.actions.act_window

Manage the contact titles you want to have available in your system and the way you want to print them in letters and other documents. Some example: Mr., Mrs.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {} \N res.partner.title \N current tree,form form \N 80 \N f t f -51 Customers ir.actions.act_window

\n Create a new customer in your address book\n

\n Odoo helps you easily track all activities related to a customer.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {"search_default_customer":1} \N res.partner \N current kanban,tree,form form \N 80 115 f t f -52 Customers ir.actions.act_window

\n Create a new customer in your address book\n

\n Odoo helps you easily track all activities related to a customer.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {'default_customer':1, 'search_default_customer':1, 'default_is_company': True} \N res.partner \N current kanban,tree,form form \N 80 \N t t f -53 Vendors ir.actions.act_window

\n Create a new vendor in your address book\n

\n Odoo helps you easily track all activities related to a vendor.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {'search_default_supplier': 1,'default_customer': 0,'default_supplier': 1, 'default_is_company': True} \N res.partner \N current kanban,tree,form form \N 80 \N t t f -54 Employees ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [('employee','=',1)] {'default_customer':0, 'default_supplier':0 , 'default_employee':1} \N res.partner \N current tree,form form \N 80 \N t t f -55 Other Partners ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [('supplier','!=',1),('customer','!=',1)] {} \N res.partner \N current tree,form form \N 80 \N t t f -56 Contact Tags ir.actions.act_window

\n Create a new contact tag\n

\n Manage contact tags to better classify them for tracking and analysis purposes.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.partner.category \N current tree,form form \N 80 \N f t f -57 Industry ir.actions.act_window

\n Create a new industry\n

\n Manage sectors of activity to better classify partners for tracking and analysis purposes.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.partner.industry \N current tree,form form \N 80 \N f t f -58 Banks ir.actions.act_window

\n Create a new bank\n

\n Manage bank records you want to be used in the system.\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.bank \N current tree,form form \N 80 \N f t f -59 Bank Accounts ir.actions.act_window

\n Create a bank account\n

\n \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.partner.bank \N current tree,form form \N 80 \N f t f -60 Countries ir.actions.act_window

Display and manage the list of all countries that can be assigned to your partner records. You can create or delete countries to make sure the ones you are working on will be maintained.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.country \N current tree,form form \N 80 \N f t f -61 Country Group ir.actions.act_window

Display and manage the list of all countries group. You can create or delete country group to make sure the ones you are working on will be maintained.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.country.group \N current tree,form form \N 80 \N f t f -62 Fed. States ir.actions.act_window

If you are working on the American market, you can manage the different federal states you are working on from here. Each state is attached to one country.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 130 \N {} \N res.country.state \N current tree,form form \N 80 \N f t f -63 Currency Rates ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 133 [('currency_id', '=', active_id)] {'default_currency_id': active_id} \N res.currency.rate \N current tree,form form \N 0 \N f t f -64 Currencies ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {'active_test': False, 'search_default_active': 1} \N res.currency \N current tree,kanban,form form \N 80 135 f t f -65 Currencies ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {'active_test': False} \N res.currency \N current tree,kanban,form form \N 80 135 f t f -66 Change Password ir.actions.act_window \N 86 action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N [] {} \N change.password.wizard res.users new form form \N 0 \N f t f -67 Groups ir.actions.act_window

A group is a set of functional areas that will be assigned to the user in order to give them access and rights to specific applications and tasks in the system. You can create custom groups or edit the ones existing by default in order to customize the view of the menu that users will be able to see. Whether they can have a read, write, create and delete access right can be managed from here.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {'search_default_no_share': 1} \N res.groups \N current tree,form form \N 80 \N f t f -68 Users ir.actions.act_window

Create and manage users that will connect to the system. Users can be deactivated should there be a period of time during which they will/should not connect to the system. You can assign them groups in order to give them specific access to the applications they need to use in the system.

\N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 145 \N {'search_default_no_share': 1} \N res.users \N current tree,kanban,form form \N 80 147 f t f -69 Change My Preferences ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.users \N new form form \N 80 \N f t f -70 Company Properties ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 152 \N {} \N ir.property \N current tree,form form \N 80 \N f t f -71 Settings ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N res.config.settings \N inline form form \N 80 \N f t f -72 Paper Format General Configuration ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N report.paperformat \N current tree,form form \N 80 \N f t f -73 Reports ir.actions.act_window \N \N action 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 \N \N {} \N ir.actions.report \N current tree,form form \N 80 \N f t f -78 Tours ir.actions.act_window \N \N action 1 2020-10-28 19:01:06.450813 1 2020-10-28 19:01:06.450813 223 \N {} \N web_tour.tour \N current tree,form form \N 80 224 f t f -\. - - --- --- Data for Name: ir_act_window_group_rel; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_window_group_rel (act_id, gid) FROM stdin; -66 2 -\. - - --- --- Data for Name: ir_act_window_view; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_act_window_view (id, sequence, view_id, view_mode, act_window_id, multi, create_uid, create_date, write_uid, write_date) FROM stdin; -1 1 10 tree 6 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -2 2 11 form 6 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -3 0 116 kanban 51 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -4 2 113 form 51 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -5 1 109 tree 51 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -6 1 116 kanban 52 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -7 2 109 tree 52 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -8 3 113 form 52 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -9 1 116 kanban 53 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -10 2 109 tree 53 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -11 3 113 form 53 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -12 10 145 tree 68 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -13 20 144 form 68 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -14 10 149 form 69 f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -\. - - --- --- Data for Name: ir_actions; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_actions (id, name, type, help, binding_model_id, binding_type, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_actions_todo; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_actions_todo (id, action_id, sequence, state, name, create_uid, create_date, write_uid, write_date) FROM stdin; -1 2 100 done \N 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -2 46 1 done Demo Failure Notification 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -\. - - --- --- Data for Name: ir_attachment; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_attachment (id, name, datas_fname, description, res_name, res_model, res_model_name, res_field, res_id, company_id, type, url, public, access_token, db_datas, store_fname, file_size, checksum, mimetype, index_content, active, create_uid, create_date, write_uid, write_date) FROM stdin; -255 /web/content/255-bdc63cb/web.assets_frontend.0.css web.assets_frontend.0.css \N \N ir.ui.view View \N 0 1 binary /web/content/255-bdc63cb/web.assets_frontend.0.css t \N \N 18/180dffb1e228cd4353fba7c75408337a63237ceb 178565 180dffb1e228cd4353fba7c75408337a63237ceb text/css /* /web/static/lib/bootstrap/scss/_functions.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/lib/bootstrap/scss/_mixins.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/utils.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/bs_mixins_overrides.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/primary_variables.scss defined in bundle 'web.assets_frontend' */\n/* /web_editor/static/src/scss/web_editor.variables.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/secondary_variables.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/bootstrap_overridden_frontend.scss defined in bundle 'web.assets_frontend' */\n/* /web_editor/static/src/scss/bootstrap_overridden.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/import_bootstrap_part1.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/bs_mixins_overrides.scss defined in bundle 'web.assets_frontend' */\n/* /web/static/src/scss/import_bootstrap_part2.scss defined in bundle 'web.assets_frontend' */\n :root{--blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #dc3545; --orange: #fd7e14; --yellow: #ffc107; --green: #28a745; --teal: #20c997; --cyan: #17a2b8; --white: #FFFFFF; --gray: #6c757d; --gray-dark: #343a40; --primary: #00A09D; --secondary: #875A7B; --success: #28a745; --info: #17a2b8; --warning: #ffc107; --danger: #dc3545; --light: #f6f9f9; --dark: #141f1e; --alpha: #00A09D; --beta: #875A7B; --gamma: #5C5B80; --delta: #5B899E; --epsilon: #E46F78; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;} *, *::before, *::after{box-sizing: border-box;} html{font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: transparent;} @-ms-viewport{width: device-width;} article, aside, figcaption, figure, footer, header, hgroup, main, nav, section{display: block;} body{margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-size: 0.875rem; font-weight: 400; line-height: 1.5; color: #212529; text-align: left; background-color: #FFFFFF;} [tabindex="-1"]:focus{outline: 0 !important;} hr{box-sizing: content-box; height: 0; overflow: visible;} h1, h2, h3, h4, h5, h6{margin-top: 0; margin-bottom: 0.5rem;} p{margin-top: 0; margin-bottom: 1rem;} abbr[title], abbr[data-original-title]{text-decoration: underline; text-decoration: underline dotted; cursor: help; border-bottom: 0;} address{margin-bottom: 1rem; font-style: normal; line-height: inherit;} ol, ul, dl{margin-top: 0; margin-bottom: 1rem;} ol ol, ul ul, ol ul, ul ol{margin-bottom: 0;} dt{font-weight: 700;} dd{margin-bottom: .5rem; margin-left: 0;} blockquote{margin: 0 0 1rem;} dfn{font-style: italic;} b, strong{font-weight: bolder;} small{font-size: 80%;} sub, sup{position: relative; font-size: 75%; line-height: 0; vertical-align: baseline;} sub{bottom: -.25em;} sup{top: -.5em;} a{color: #00A09D; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects;} a:hover{color: #005452; text-decoration: underline;} a:not([href]):not([tabindex]){color: inherit; text-decoration: none;} a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus{color: inherit; text-decoration: none;} a:not([href]):not([tabindex]):focus{outline: 0;} pre, code, kbd, samp{font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 1em;} pre{margin-top: 0; margin-bottom: 1rem; overflow: auto; -ms-overflow-style: scrollbar;} figure{margin: 0 0 1rem;} img{vertical-align: middle; border-style: none;} svg{overflow: hidden; vertical-align: middle;} table{border-collapse: collapse;} caption{padding-top: 0.75rem; padding-bottom: 0.75rem; color: #6c757d; text-align: left; caption-side: bottom;} th{text-align: inherit;} label{display: inline-block; margin-bottom: 0.5rem;} button{border-radius: 0;} button:focus{outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color;} input, button, select, optgroup, textarea{margin: 0; font-family: inherit; font-size: inherit; line-height: inherit;} button, input{overflow: visible;} button, select{text-transform: none;} button, html [type="button"], [type="reset"], [type="submit"]{-webkit--webkit-appearance: button; -moz-appearance: button; appearance: button;} button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner{padding: 0; border-style: none;} input[type="radio"], input[type="checkbox"]{box-sizing: border-box; padding: 0;} input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"]{-webkit--webkit-appearance: listbox; -moz-appearance: listbox; appearance: listbox;} textarea{overflow: auto; resize: vertical;} fieldset{min-width: 0; padding: 0; margin: 0; border: 0;} legend{display: block; width: 100%; max-width: 100%; padding: 0; margin-bottom: .5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal;} progress{vertical-align: baseline;} [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button{height: auto;} [type="search"]{outline-offset: -2px; -webkit--webkit-appearance: none; -moz-appearance: none; appearance: none;} [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration{-webkit--webkit-appearance: none; -moz-appearance: none; appearance: none;} ::-webkit-file-upload-button{font: inherit; -webkit--webkit-appearance: button; -moz-appearance: button; appearance: button;} output{display: inline-block;} summary{display: list-item; cursor: pointer;} template{display: none;} [hidden]{display: none !important;} h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{margin-bottom: 0.5rem; font-family: inherit; font-weight: 500; line-height: 1.2; color: inherit;} h1, .h1{font-size: 2.1875rem;} h2, .h2{font-size: 1.75rem;} h3, .h3{font-size: 1.53125rem;} h4, .h4{font-size: 1.3125rem;} h5, .h5{font-size: 1.09375rem;} h6, .h6{font-size: 0.875rem;} .lead{font-size: 1.09375rem; font-weight: 300;} .display-1{font-size: 6rem; font-weight: 300; line-height: 1.2;} .display-2{font-size: 5.5rem; font-weight: 300; line-height: 1.2;} .display-3{font-size: 4.5rem; font-weight: 300; line-height: 1.2;} .display-4{font-size: 3.5rem; font-weight: 300; line-height: 1.2;} hr{margin-top: 1rem; margin-bottom: 1rem; border: 0; border-top: 1px solid rgba(0, 0, 0, 0.1);} small, .small{font-size: 80%; font-weight: 400;} mark, .mark{padding: 0.2em; background-color: #fcf8e3;} .list-unstyled{padding-left: 0; list-style: none;} .list-inline{padding-left: 0; list-style: none;} .list-inline-item{display: inline-block;} .list-inline-item:not(:last-child){margin-right: 0.5rem;} .initialism{font-size: 90%; text-transform: uppercase;} .blockquote{margin-bottom: 1rem; font-size: 1.09375rem;} .blockquote-footer{display: block; font-size: 80%; color: #6c757d;} .blockquote-footer::before{content: "\\2014 \\00A0";} .img-fluid{max-width: 100%; height: auto;} .img-thumbnail{padding: 0.25rem; background-color: #FFFFFF; border: 1px solid #dee2e6; border-radius: 0.25rem; max-width: 100%; height: auto;} .figure{display: inline-block;} .figure-img{margin-bottom: 0.5rem; line-height: 1;} .figure-caption{font-size: 90%; color: #6c757d;} code{font-size: 87.5%; color: #e83e8c; word-break: break-word;} a > code{color: inherit;} kbd{padding: 0.2rem 0.4rem; font-size: 87.5%; color: #FFFFFF; background-color: #212529; border-radius: 0.2rem;} kbd kbd{padding: 0; font-size: 100%; font-weight: 700;} pre{display: block; font-size: 87.5%; color: #212529;} pre code{font-size: inherit; color: inherit; word-break: normal;} .pre-scrollable{max-height: 340px; overflow-y: scroll;} .container{width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto;} @media (min-width: 576px){.container{max-width: 540px;}} @media (min-width: 768px){.container{max-width: 720px;}} @media (min-width: 992px){.container{max-width: 960px;}} @media (min-width: 1200px){.container{max-width: 1140px;}} .container-fluid{width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto;} .row{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px;} .no-gutters{margin-right: 0; margin-left: 0;} .no-gutters > .col, .no-gutters > [class*="col-"]{padding-right: 0; padding-left: 0;} .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto{position: relative; width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px;} .col{flex-basis: 0; flex-grow: 1; max-width: 100%;} .col-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;} .col-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;} .col-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;} .col-3{flex: 0 0 25%; max-width: 25%;} .col-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;} .col-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;} .col-6{flex: 0 0 50%; max-width: 50%;} .col-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;} .col-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;} .col-9{flex: 0 0 75%; max-width: 75%;} .col-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;} .col-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;} .col-12{flex: 0 0 100%; max-width: 100%;} .order-first{order: -1;} .order-last{order: 13;} .order-0{order: 0;} .order-1{order: 1;} .order-2{order: 2;} .order-3{order: 3;} .order-4{order: 4;} .order-5{order: 5;} .order-6{order: 6;} .order-7{order: 7;} .order-8{order: 8;} .order-9{order: 9;} .order-10{order: 10;} .order-11{order: 11;} .order-12{order: 12;} .offset-1{margin-left: 8.33333333%;} .offset-2{margin-left: 16.66666667%;} .offset-3{margin-left: 25%;} .offset-4{margin-left: 33.33333333%;} .offset-5{margin-left: 41.66666667%;} .offset-6{margin-left: 50%;} .offset-7{margin-left: 58.33333333%;} .offset-8{margin-left: 66.66666667%;} .offset-9{margin-left: 75%;} .offset-10{margin-left: 83.33333333%;} .offset-11{margin-left: 91.66666667%;} @media (min-width: 576px){.col-sm{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-sm-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-sm-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-sm-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-sm-3{flex: 0 0 25%; max-width: 25%;}.col-sm-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-sm-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-sm-6{flex: 0 0 50%; max-width: 50%;}.col-sm-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-sm-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-sm-9{flex: 0 0 75%; max-width: 75%;}.col-sm-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-sm-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-sm-12{flex: 0 0 100%; max-width: 100%;}.order-sm-first{order: -1;}.order-sm-last{order: 13;}.order-sm-0{order: 0;}.order-sm-1{order: 1;}.order-sm-2{order: 2;}.order-sm-3{order: 3;}.order-sm-4{order: 4;}.order-sm-5{order: 5;}.order-sm-6{order: 6;}.order-sm-7{order: 7;}.order-sm-8{order: 8;}.order-sm-9{order: 9;}.order-sm-10{order: 10;}.order-sm-11{order: 11;}.order-sm-12{order: 12;}.offset-sm-0{margin-left: 0;}.offset-sm-1{margin-left: 8.33333333%;}.offset-sm-2{margin-left: 16.66666667%;}.offset-sm-3{margin-left: 25%;}.offset-sm-4{margin-left: 33.33333333%;}.offset-sm-5{margin-left: 41.66666667%;}.offset-sm-6{margin-left: 50%;}.offset-sm-7{margin-left: 58.33333333%;}.offset-sm-8{margin-left: 66.66666667%;}.offset-sm-9{margin-left: 75%;}.offset-sm-10{margin-left: 83.33333333%;}.offset-sm-11{margin-left: 91.66666667%;}} @media (min-width: 768px){.col-md{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-md-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-md-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-md-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-md-3{flex: 0 0 25%; max-width: 25%;}.col-md-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-md-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-md-6{flex: 0 0 50%; max-width: 50%;}.col-md-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-md-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-md-9{flex: 0 0 75%; max-width: 75%;}.col-md-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-md-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-md-12{flex: 0 0 100%; max-width: 100%;}.order-md-first{order: -1;}.order-md-last{order: 13;}.order-md-0{order: 0;}.order-md-1{order: 1;}.order-md-2{order: 2;}.order-md-3{order: 3;}.order-md-4{order: 4;}.order-md-5{order: 5;}.order-md-6{order: 6;}.order-md-7{order: 7;}.order-md-8{order: 8;}.order-md-9{order: 9;}.order-md-10{order: 10;}.order-md-11{order: 11;}.order-md-12{order: 12;}.offset-md-0{margin-left: 0;}.offset-md-1{margin-left: 8.33333333%;}.offset-md-2{margin-left: 16.66666667%;}.offset-md-3{margin-left: 25%;}.offset-md-4{margin-left: 33.33333333%;}.offset-md-5{margin-left: 41.66666667%;}.offset-md-6{margin-left: 50%;}.offset-md-7{margin-left: 58.33333333%;}.offset-md-8{margin-left: 66.66666667%;}.offset-md-9{margin-left: 75%;}.offset-md-10{margin-left: 83.33333333%;}.offset-md-11{margin-left: 91.66666667%;}} @media (min-width: 992px){.col-lg{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-lg-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-lg-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-lg-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-lg-3{flex: 0 0 25%; max-width: 25%;}.col-lg-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-lg-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-lg-6{flex: 0 0 50%; max-width: 50%;}.col-lg-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-lg-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-lg-9{flex: 0 0 75%; max-width: 75%;}.col-lg-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-lg-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-lg-12{flex: 0 0 100%; max-width: 100%;}.order-lg-first{order: -1;}.order-lg-last{order: 13;}.order-lg-0{order: 0;}.order-lg-1{order: 1;}.order-lg-2{order: 2;}.order-lg-3{order: 3;}.order-lg-4{order: 4;}.order-lg-5{order: 5;}.order-lg-6{order: 6;}.order-lg-7{order: 7;}.order-lg-8{order: 8;}.order-lg-9{order: 9;}.order-lg-10{order: 10;}.order-lg-11{order: 11;}.order-lg-12{order: 12;}.offset-lg-0{margin-left: 0;}.offset-lg-1{margin-left: 8.33333333%;}.offset-lg-2{margin-left: 16.66666667%;}.offset-lg-3{margin-left: 25%;}.offset-lg-4{margin-left: 33.33333333%;}.offset-lg-5{margin-left: 41.66666667%;}.offset-lg-6{margin-left: 50%;}.offset-lg-7{margin-left: 58.33333333%;}.offset-lg-8{margin-left: 66.66666667%;}.offset-lg-9{margin-left: 75%;}.offset-lg-10{margin-left: 83.33333333%;}.offset-lg-11{margin-left: 91.66666667%;}} @media (min-width: 1200px){.col-xl{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-xl-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-xl-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-xl-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-xl-3{flex: 0 0 25%; max-width: 25%;}.col-xl-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-xl-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-xl-6{flex: 0 0 50%; max-width: 50%;}.col-xl-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-xl-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-xl-9{flex: 0 0 75%; max-width: 75%;}.col-xl-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-xl-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-xl-12{flex: 0 0 100%; max-width: 100%;}.order-xl-first{order: -1;}.order-xl-last{order: 13;}.order-xl-0{order: 0;}.order-xl-1{order: 1;}.order-xl-2{order: 2;}.order-xl-3{order: 3;}.order-xl-4{order: 4;}.order-xl-5{order: 5;}.order-xl-6{order: 6;}.order-xl-7{order: 7;}.order-xl-8{order: 8;}.order-xl-9{order: 9;}.order-xl-10{order: 10;}.order-xl-11{order: 11;}.order-xl-12{order: 12;}.offset-xl-0{margin-left: 0;}.offset-xl-1{margin-left: 8.33333333%;}.offset-xl-2{margin-left: 16.66666667%;}.offset-xl-3{margin-left: 25%;}.offset-xl-4{margin-left: 33.33333333%;}.offset-xl-5{margin-left: 41.66666667%;}.offset-xl-6{margin-left: 50%;}.offset-xl-7{margin-left: 58.33333333%;}.offset-xl-8{margin-left: 66.66666667%;}.offset-xl-9{margin-left: 75%;}.offset-xl-10{margin-left: 83.33333333%;}.offset-xl-11{margin-left: 91.66666667%;}} .table{width: 100%; margin-bottom: 1rem; background-color: transparent;} .table th, .table td{padding: 0.75rem; vertical-align: top; border-top: 1px solid #dee2e6;} .table thead th{vertical-align: bottom; border-bottom: 2px solid #dee2e6;} .table tbody + tbody{border-top: 2px solid #dee2e6;} .table .table{background-color: #FFFFFF;} .table-sm th, .table-sm td{padding: 0.3rem;} .table-bordered{border: 1px solid #dee2e6;} .table-bordered th, .table-bordered td{border: 1px solid #dee2e6;} .table-bordered thead th, .table-bordered thead td{border-bottom-width: 2px;} .table-borderless th, .table-borderless td, .table-borderless thead th, .table-borderless tbody + tbody{border: 0;} .table-striped tbody tr:nth-of-type(odd){background-color: rgba(0, 0, 0, 0.05);} .table-hover tbody tr:hover{background-color: rgba(0, 0, 0, 0.075);} .table-primary, .table-primary > th, .table-primary > td{background-color: #b8e4e4;} .table-hover .table-primary:hover{background-color: #a6dddd;} .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th{background-color: #a6dddd;} .table-secondary, .table-secondary > th, .table-secondary > td{background-color: #ddd1da;} .table-hover .table-secondary:hover{background-color: #d2c2ce;} .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th{background-color: #d2c2ce;} .table-success, .table-success > th, .table-success > td{background-color: #c3e6cb;} .table-hover .table-success:hover{background-color: #b1dfbb;} .table-hover .table-success:hover > td, .table-hover .table-success:hover > th{background-color: #b1dfbb;} .table-info, .table-info > th, .table-info > td{background-color: #bee5eb;} .table-hover .table-info:hover{background-color: #abdde5;} .table-hover .table-info:hover > td, .table-hover .table-info:hover > th{background-color: #abdde5;} .table-warning, .table-warning > th, .table-warning > td{background-color: #ffeeba;} .table-hover .table-warning:hover{background-color: #ffe8a1;} .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th{background-color: #ffe8a1;} .table-danger, .table-danger > th, .table-danger > td{background-color: #f5c6cb;} .table-hover .table-danger:hover{background-color: #f1b0b7;} .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th{background-color: #f1b0b7;} .table-light, .table-light > th, .table-light > td{background-color: #fcfdfd;} .table-hover .table-light:hover{background-color: #edf3f3;} .table-hover .table-light:hover > td, .table-hover .table-light:hover > th{background-color: #edf3f3;} .table-dark, .table-dark > th, .table-dark > td{background-color: #bdc0c0;} .table-hover .table-dark:hover{background-color: #b0b4b4;} .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th{background-color: #b0b4b4;} .table-alpha, .table-alpha > th, .table-alpha > td{background-color: #b8e4e4;} .table-hover .table-alpha:hover{background-color: #a6dddd;} .table-hover .table-alpha:hover > td, .table-hover .table-alpha:hover > th{background-color: #a6dddd;} .table-beta, .table-beta > th, .table-beta > td{background-color: #ddd1da;} .table-hover .table-beta:hover{background-color: #d2c2ce;} .table-hover .table-beta:hover > td, .table-hover .table-beta:hover > th{background-color: #d2c2ce;} .table-gamma, .table-gamma > th, .table-gamma > td{background-color: #d1d1db;} .table-hover .table-gamma:hover{background-color: #c3c3d0;} .table-hover .table-gamma:hover > td, .table-hover .table-gamma:hover > th{background-color: #c3c3d0;} .table-delta, .table-delta > th, .table-delta > td{background-color: #d1dee4;} .table-hover .table-delta:hover{background-color: #c1d2db;} .table-hover .table-delta:hover > td, .table-hover .table-delta:hover > th{background-color: #c1d2db;} .table-epsilon, .table-epsilon > th, .table-epsilon > td{background-color: #f7d7d9;} .table-hover .table-epsilon:hover{background-color: #f3c2c5;} .table-hover .table-epsilon:hover > td, .table-hover .table-epsilon:hover > th{background-color: #f3c2c5;} .table-active, .table-active > th, .table-active > td{background-color: rgba(0, 0, 0, 0.075);} .table-hover .table-active:hover{background-color: rgba(0, 0, 0, 0.075);} .table-hover .table-active:hover > td, .table-hover .table-active:hover > th{background-color: rgba(0, 0, 0, 0.075);} .table .thead-dark th{color: #FFFFFF; background-color: #212529; border-color: #32383e;} .table .thead-light th{color: #495057; background-color: #e9ecef; border-color: #dee2e6;} .table-dark{color: #FFFFFF; background-color: #212529;} .table-dark th, .table-dark td, .table-dark thead th{border-color: #32383e;} .table-dark.table-bordered{border: 0;} .table-dark.table-striped tbody tr:nth-of-type(odd){background-color: rgba(255, 255, 255, 0.05);} .table-dark.table-hover tbody tr:hover{background-color: rgba(255, 255, 255, 0.075);} @media (max-width: 575.98px){.table-responsive-sm{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-sm > .table-bordered{border: 0;}} @media (max-width: 767.98px){.table-responsive-md{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-md > .table-bordered{border: 0;}} @media (max-width: 991.98px){.table-responsive-lg{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-lg > .table-bordered{border: 0;}} @media (max-width: 1199.98px){.table-responsive-xl{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-xl > .table-bordered{border: 0;}} .table-responsive{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;} .table-responsive > .table-bordered{border: 0;} .form-control{display: block; width: 100%; height: calc(2.0625rem + 2px); padding: 0.375rem 0.75rem; font-size: 0.875rem; line-height: 1.5; color: #495057; background-color: #FFFFFF; background-clip: padding-box; border: 1px solid #ced4da; border-radius: 0.25rem; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;} @media screen and (prefers-reduced-motion: reduce){.form-control{transition: none;}} .form-control::-ms-expand{background-color: transparent; border: 0;} .form-control:focus{color: #495057; background-color: #FFFFFF; border-color: #21fffb; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .form-control::placeholder{color: #6c757d; opacity: 1;} .form-control:disabled, .form-control[readonly]{background-color: #e9ecef; opacity: 1;} select.form-control:focus::-ms-value{color: #495057; background-color: #FFFFFF;} .form-control-file, .form-control-range{display: block; width: 100%;} .col-form-label{padding-top: calc(0.375rem + 1px); padding-bottom: calc(0.375rem + 1px); margin-bottom: 0; font-size: inherit; line-height: 1.5;} .col-form-label-lg{padding-top: calc(0.5rem + 1px); padding-bottom: calc(0.5rem + 1px); font-size: 1.09375rem; line-height: 1.5;} .col-form-label-sm{padding-top: calc(0.25rem + 1px); padding-bottom: calc(0.25rem + 1px); font-size: 0.765625rem; line-height: 1.5;} .form-control-plaintext{display: block; width: 100%; padding-top: 0.375rem; padding-bottom: 0.375rem; margin-bottom: 0; line-height: 1.5; color: #212529; background-color: transparent; border: solid transparent; border-width: 1px 0;} .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg{padding-right: 0; padding-left: 0;} .form-control-sm{height: calc(1.6484375rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0.2rem;} .form-control-lg{height: calc(2.640625rem + 2px); padding: 0.5rem 1rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0.3rem;} select.form-control[size], select.form-control[multiple]{height: auto;} textarea.form-control{height: auto;} .form-group{margin-bottom: 1rem;} .form-text{display: block; margin-top: 0.25rem;} .form-row{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; margin-right: -5px; margin-left: -5px;} .form-row > .col, .form-row > [class*="col-"]{padding-right: 5px; padding-left: 5px;} .form-check{position: relative; display: block; padding-left: 1.25rem;} .form-check-input{position: absolute; margin-top: 0.3rem; margin-left: -1.25rem;} .form-check-input:disabled ~ .form-check-label{color: #6c757d;} .form-check-label{margin-bottom: 0;} .form-check-inline{display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; align-items: center; padding-left: 0; margin-right: 0.75rem;} .form-check-inline .form-check-input{position: static; margin-top: 0; margin-right: 0.3125rem; margin-left: 0;} .valid-feedback{display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: #28a745;} .valid-tooltip{position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: .1rem; font-size: 0.765625rem; line-height: 1.5; color: #FFFFFF; background-color: rgba(40, 167, 69, 0.9); border-radius: 0.25rem;} .was-validated .form-control:valid, .form-control.is-valid, .was-validated .custom-select:valid, .custom-select.is-valid{border-color: #28a745;} .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus{border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);} .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip{display: block;} .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip{display: block;} .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label{color: #28a745;} .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip{display: block;} .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label{color: #28a745;} .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before{background-color: #71dd8a;} .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip{display: block;} .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before{background-color: #34ce57;} .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);} .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label{border-color: #28a745;} .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after{border-color: inherit;} .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip{display: block;} .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);} .invalid-feedback{display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: #dc3545;} .invalid-tooltip{position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: .1rem; font-size: 0.765625rem; line-height: 1.5; color: #FFFFFF; background-color: rgba(220, 53, 69, 0.9); border-radius: 0.25rem;} .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid{border-color: #dc3545;} .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus{border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);} .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label{color: #dc3545;} .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label{color: #dc3545;} .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before{background-color: #efa2a9;} .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before{background-color: #e4606d;} .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);} .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label{border-color: #dc3545;} .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after{border-color: inherit;} .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);} .form-inline{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; align-items: center;} .form-inline .form-check{width: 100%;} @media (min-width: 576px){.form-inline label{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; margin-bottom: 0;}.form-inline .form-group{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; -webkit-flex-flow: row wrap; flex-flow: row wrap; align-items: center; margin-bottom: 0;}.form-inline .form-control{display: inline-block; width: auto; vertical-align: middle;}.form-inline .form-control-plaintext{display: inline-block;}.form-inline .input-group, .form-inline .custom-select{width: auto;}.form-inline .form-check{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; width: auto; padding-left: 0;}.form-inline .form-check-input{position: relative; margin-top: 0; margin-right: 0.25rem; margin-left: 0;}.form-inline .custom-control{align-items: center; justify-content: center;}.form-inline .custom-control-label{margin-bottom: 0;}} .btn{display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0.25rem; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;} @media screen and (prefers-reduced-motion: reduce){.btn{transition: none;}} .btn:hover, .btn:focus{text-decoration: none;} .btn:focus, .btn.focus{outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .btn.disabled, .btn:disabled{opacity: 0.65;} .btn:not(:disabled):not(.disabled){cursor: pointer;} a.btn.disabled, fieldset:disabled a.btn{pointer-events: none;} .btn-primary{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-primary:hover{color: #FFFFFF; background-color: #007a77; border-color: #006d6b;} .btn-primary:focus, .btn-primary.focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-primary.disabled, .btn-primary:disabled{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle{color: #FFFFFF; background-color: #006d6b; border-color: #00605e;} .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-secondary{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-secondary:hover{color: #FFFFFF; background-color: #704b66; border-color: #68465f;} .btn-secondary:focus, .btn-secondary.focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-secondary.disabled, .btn-secondary:disabled{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle{color: #FFFFFF; background-color: #68465f; border-color: #614158;} .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-success{color: #FFFFFF; background-color: #28a745; border-color: #28a745;} .btn-success:hover{color: #FFFFFF; background-color: #218838; border-color: #1e7e34;} .btn-success:focus, .btn-success.focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-success.disabled, .btn-success:disabled{color: #FFFFFF; background-color: #28a745; border-color: #28a745;} .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle{color: #FFFFFF; background-color: #1e7e34; border-color: #1c7430;} .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-info{color: #FFFFFF; background-color: #17a2b8; border-color: #17a2b8;} .btn-info:hover{color: #FFFFFF; background-color: #138496; border-color: #117a8b;} .btn-info:focus, .btn-info.focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-info.disabled, .btn-info:disabled{color: #FFFFFF; background-color: #17a2b8; border-color: #17a2b8;} .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle{color: #FFFFFF; background-color: #117a8b; border-color: #10707f;} .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-warning{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-warning:hover{color: #212529; background-color: #e0a800; border-color: #d39e00;} .btn-warning:focus, .btn-warning.focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-warning.disabled, .btn-warning:disabled{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle{color: #212529; background-color: #d39e00; border-color: #c69500;} .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-danger{color: #FFFFFF; background-color: #dc3545; border-color: #dc3545;} .btn-danger:hover{color: #FFFFFF; background-color: #c82333; border-color: #bd2130;} .btn-danger:focus, .btn-danger.focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-danger.disabled, .btn-danger:disabled{color: #FFFFFF; background-color: #dc3545; border-color: #dc3545;} .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle{color: #FFFFFF; background-color: #bd2130; border-color: #b21f2d;} .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-light{color: #212529; background-color: #f6f9f9; border-color: #f6f9f9;} .btn-light:hover{color: #212529; background-color: #dfeae9; border-color: #d7e4e4;} .btn-light:focus, .btn-light.focus{box-shadow: 0 0 0 0.2rem rgba(246, 249, 249, 0.5);} .btn-light.disabled, .btn-light:disabled{color: #212529; background-color: #f6f9f9; border-color: #f6f9f9;} .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle{color: #212529; background-color: #d7e4e4; border-color: #d0dfdf;} .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(246, 249, 249, 0.5);} .btn-dark{color: #FFFFFF; background-color: #141f1e; border-color: #141f1e;} .btn-dark:hover{color: #FFFFFF; background-color: #050808; border-color: black;} .btn-dark:focus, .btn-dark.focus{box-shadow: 0 0 0 0.2rem rgba(20, 31, 30, 0.5);} .btn-dark.disabled, .btn-dark:disabled{color: #FFFFFF; background-color: #141f1e; border-color: #141f1e;} .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle{color: #FFFFFF; background-color: black; border-color: black;} .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(20, 31, 30, 0.5);} .btn-alpha{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-alpha:hover{color: #FFFFFF; background-color: #007a77; border-color: #006d6b;} .btn-alpha:focus, .btn-alpha.focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-alpha.disabled, .btn-alpha:disabled{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-alpha:not(:disabled):not(.disabled):active, .btn-alpha:not(:disabled):not(.disabled).active, .show > .btn-alpha.dropdown-toggle{color: #FFFFFF; background-color: #006d6b; border-color: #00605e;} .btn-alpha:not(:disabled):not(.disabled):active:focus, .btn-alpha:not(:disabled):not(.disabled).active:focus, .show > .btn-alpha.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-beta{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-beta:hover{color: #FFFFFF; background-color: #704b66; border-color: #68465f;} .btn-beta:focus, .btn-beta.focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-beta.disabled, .btn-beta:disabled{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-beta:not(:disabled):not(.disabled):active, .btn-beta:not(:disabled):not(.disabled).active, .show > .btn-beta.dropdown-toggle{color: #FFFFFF; background-color: #68465f; border-color: #614158;} .btn-beta:not(:disabled):not(.disabled):active:focus, .btn-beta:not(:disabled):not(.disabled).active:focus, .show > .btn-beta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-gamma{color: #FFFFFF; background-color: #5C5B80; border-color: #5C5B80;} .btn-gamma:hover{color: #FFFFFF; background-color: #4c4b6a; border-color: #474662;} .btn-gamma:focus, .btn-gamma.focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-gamma.disabled, .btn-gamma:disabled{color: #FFFFFF; background-color: #5C5B80; border-color: #5C5B80;} .btn-gamma:not(:disabled):not(.disabled):active, .btn-gamma:not(:disabled):not(.disabled).active, .show > .btn-gamma.dropdown-toggle{color: #FFFFFF; background-color: #474662; border-color: #41415b;} .btn-gamma:not(:disabled):not(.disabled):active:focus, .btn-gamma:not(:disabled):not(.disabled).active:focus, .show > .btn-gamma.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-delta{color: #FFFFFF; background-color: #5B899E; border-color: #5B899E;} .btn-delta:hover{color: #FFFFFF; background-color: #4d7486; border-color: #486d7e;} .btn-delta:focus, .btn-delta.focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-delta.disabled, .btn-delta:disabled{color: #FFFFFF; background-color: #5B899E; border-color: #5B899E;} .btn-delta:not(:disabled):not(.disabled):active, .btn-delta:not(:disabled):not(.disabled).active, .show > .btn-delta.dropdown-toggle{color: #FFFFFF; background-color: #486d7e; border-color: #446676;} .btn-delta:not(:disabled):not(.disabled):active:focus, .btn-delta:not(:disabled):not(.disabled).active:focus, .show > .btn-delta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-epsilon{color: #FFFFFF; background-color: #E46F78; border-color: #E46F78;} .btn-epsilon:hover{color: #FFFFFF; background-color: #de4f5a; border-color: #dc4450;} .btn-epsilon:focus, .btn-epsilon.focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-epsilon.disabled, .btn-epsilon:disabled{color: #FFFFFF; background-color: #E46F78; border-color: #E46F78;} .btn-epsilon:not(:disabled):not(.disabled):active, .btn-epsilon:not(:disabled):not(.disabled).active, .show > .btn-epsilon.dropdown-toggle{color: #FFFFFF; background-color: #dc4450; border-color: #da3946;} .btn-epsilon:not(:disabled):not(.disabled):active:focus, .btn-epsilon:not(:disabled):not(.disabled).active:focus, .show > .btn-epsilon.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-outline-primary{color: #00A09D; background-color: transparent; background-image: none; border-color: #00A09D;} .btn-outline-primary:hover{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-outline-primary:focus, .btn-outline-primary.focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-outline-primary.disabled, .btn-outline-primary:disabled{color: #00A09D; background-color: transparent;} .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-outline-secondary{color: #875A7B; background-color: transparent; background-image: none; border-color: #875A7B;} .btn-outline-secondary:hover{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-outline-secondary:focus, .btn-outline-secondary.focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-outline-secondary.disabled, .btn-outline-secondary:disabled{color: #875A7B; background-color: transparent;} .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-outline-success{color: #28a745; background-color: transparent; background-image: none; border-color: #28a745;} .btn-outline-success:hover{color: #FFFFFF; background-color: #28a745; border-color: #28a745;} .btn-outline-success:focus, .btn-outline-success.focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-outline-success.disabled, .btn-outline-success:disabled{color: #28a745; background-color: transparent;} .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle{color: #FFFFFF; background-color: #28a745; border-color: #28a745;} .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-outline-info{color: #17a2b8; background-color: transparent; background-image: none; border-color: #17a2b8;} .btn-outline-info:hover{color: #FFFFFF; background-color: #17a2b8; border-color: #17a2b8;} .btn-outline-info:focus, .btn-outline-info.focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-outline-info.disabled, .btn-outline-info:disabled{color: #17a2b8; background-color: transparent;} .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle{color: #FFFFFF; background-color: #17a2b8; border-color: #17a2b8;} .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-outline-warning{color: #ffc107; background-color: transparent; background-image: none; border-color: #ffc107;} .btn-outline-warning:hover{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-outline-warning:focus, .btn-outline-warning.focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-outline-warning.disabled, .btn-outline-warning:disabled{color: #ffc107; background-color: transparent;} .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-outline-danger{color: #dc3545; background-color: transparent; background-image: none; border-color: #dc3545;} .btn-outline-danger:hover{color: #FFFFFF; background-color: #dc3545; border-color: #dc3545;} .btn-outline-danger:focus, .btn-outline-danger.focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-outline-danger.disabled, .btn-outline-danger:disabled{color: #dc3545; background-color: transparent;} .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle{color: #FFFFFF; background-color: #dc3545; border-color: #dc3545;} .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-outline-light{color: #f6f9f9; background-color: transparent; background-image: none; border-color: #f6f9f9;} .btn-outline-light:hover{color: #212529; background-color: #f6f9f9; border-color: #f6f9f9;} .btn-outline-light:focus, .btn-outline-light.focus{box-shadow: 0 0 0 0.2rem rgba(246, 249, 249, 0.5);} .btn-outline-light.disabled, .btn-outline-light:disabled{color: #f6f9f9; background-color: transparent;} .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle{color: #212529; background-color: #f6f9f9; border-color: #f6f9f9;} .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(246, 249, 249, 0.5);} .btn-outline-dark{color: #141f1e; background-color: transparent; background-image: none; border-color: #141f1e;} .btn-outline-dark:hover{color: #FFFFFF; background-color: #141f1e; border-color: #141f1e;} .btn-outline-dark:focus, .btn-outline-dark.focus{box-shadow: 0 0 0 0.2rem rgba(20, 31, 30, 0.5);} .btn-outline-dark.disabled, .btn-outline-dark:disabled{color: #141f1e; background-color: transparent;} .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle{color: #FFFFFF; background-color: #141f1e; border-color: #141f1e;} .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(20, 31, 30, 0.5);} .btn-outline-alpha{color: #00A09D; background-color: transparent; background-image: none; border-color: #00A09D;} .btn-outline-alpha:hover{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-outline-alpha:focus, .btn-outline-alpha.focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-outline-alpha.disabled, .btn-outline-alpha:disabled{color: #00A09D; background-color: transparent;} .btn-outline-alpha:not(:disabled):not(.disabled):active, .btn-outline-alpha:not(:disabled):not(.disabled).active, .show > .btn-outline-alpha.dropdown-toggle{color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .btn-outline-alpha:not(:disabled):not(.disabled):active:focus, .btn-outline-alpha:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-alpha.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-outline-beta{color: #875A7B; background-color: transparent; background-image: none; border-color: #875A7B;} .btn-outline-beta:hover{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-outline-beta:focus, .btn-outline-beta.focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-outline-beta.disabled, .btn-outline-beta:disabled{color: #875A7B; background-color: transparent;} .btn-outline-beta:not(:disabled):not(.disabled):active, .btn-outline-beta:not(:disabled):not(.disabled).active, .show > .btn-outline-beta.dropdown-toggle{color: #FFFFFF; background-color: #875A7B; border-color: #875A7B;} .btn-outline-beta:not(:disabled):not(.disabled):active:focus, .btn-outline-beta:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-beta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-outline-gamma{color: #5C5B80; background-color: transparent; background-image: none; border-color: #5C5B80;} .btn-outline-gamma:hover{color: #FFFFFF; background-color: #5C5B80; border-color: #5C5B80;} .btn-outline-gamma:focus, .btn-outline-gamma.focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-outline-gamma.disabled, .btn-outline-gamma:disabled{color: #5C5B80; background-color: transparent;} .btn-outline-gamma:not(:disabled):not(.disabled):active, .btn-outline-gamma:not(:disabled):not(.disabled).active, .show > .btn-outline-gamma.dropdown-toggle{color: #FFFFFF; background-color: #5C5B80; border-color: #5C5B80;} .btn-outline-gamma:not(:disabled):not(.disabled):active:focus, .btn-outline-gamma:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-gamma.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-outline-delta{color: #5B899E; background-color: transparent; background-image: none; border-color: #5B899E;} .btn-outline-delta:hover{color: #FFFFFF; background-color: #5B899E; border-color: #5B899E;} .btn-outline-delta:focus, .btn-outline-delta.focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-outline-delta.disabled, .btn-outline-delta:disabled{color: #5B899E; background-color: transparent;} .btn-outline-delta:not(:disabled):not(.disabled):active, .btn-outline-delta:not(:disabled):not(.disabled).active, .show > .btn-outline-delta.dropdown-toggle{color: #FFFFFF; background-color: #5B899E; border-color: #5B899E;} .btn-outline-delta:not(:disabled):not(.disabled):active:focus, .btn-outline-delta:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-delta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-outline-epsilon{color: #E46F78; background-color: transparent; background-image: none; border-color: #E46F78;} .btn-outline-epsilon:hover{color: #FFFFFF; background-color: #E46F78; border-color: #E46F78;} .btn-outline-epsilon:focus, .btn-outline-epsilon.focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-outline-epsilon.disabled, .btn-outline-epsilon:disabled{color: #E46F78; background-color: transparent;} .btn-outline-epsilon:not(:disabled):not(.disabled):active, .btn-outline-epsilon:not(:disabled):not(.disabled).active, .show > .btn-outline-epsilon.dropdown-toggle{color: #FFFFFF; background-color: #E46F78; border-color: #E46F78;} .btn-outline-epsilon:not(:disabled):not(.disabled):active:focus, .btn-outline-epsilon:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-epsilon.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-link{font-weight: 400; color: #00A09D; background-color: transparent;} .btn-link:hover{color: #005452; text-decoration: underline; background-color: transparent; border-color: transparent;} .btn-link:focus, .btn-link.focus{text-decoration: underline; border-color: transparent; box-shadow: none;} .btn-link:disabled, .btn-link.disabled{color: #6c757d; pointer-events: none;} .btn-lg, .btn-group-lg > .btn{padding: 0.5rem 1rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0.3rem;} .btn-sm, .btn-group-sm > .btn{padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0.2rem;} .btn-block{display: block; width: 100%;} .btn-block + .btn-block{margin-top: 0.5rem;} input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block{width: 100%;} .fade{transition: opacity 0.15s linear;} @media screen and (prefers-reduced-motion: reduce){.fade{transition: none;}} .fade:not(.show){opacity: 0;} .collapse:not(.show){display: none;} .collapsing{position: relative; height: 0; overflow: hidden; transition: height 0.35s ease;} @media screen and (prefers-reduced-motion: reduce){.collapsing{transition: none;}} .dropup, .dropright, .dropdown, .dropleft{position: relative;} .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid; border-right: 0.3em solid transparent; border-bottom: 0; border-left: 0.3em solid transparent;} .dropdown-toggle:empty::after{margin-left: 0;} .dropdown-menu{position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: 0.5rem 0; margin: 0.125rem 0 0; font-size: 0.875rem; color: #212529; text-align: left; list-style: none; background-color: #FFFFFF; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0.25rem;} .dropdown-menu-right{right: 0; left: auto;} .dropup .dropdown-menu{top: auto; bottom: 100%; margin-top: 0; margin-bottom: 0.125rem;} .dropup .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0; border-right: 0.3em solid transparent; border-bottom: 0.3em solid; border-left: 0.3em solid transparent;} .dropup .dropdown-toggle:empty::after{margin-left: 0;} .dropright .dropdown-menu{top: 0; right: auto; left: 100%; margin-top: 0; margin-left: 0.125rem;} .dropright .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0; border-bottom: 0.3em solid transparent; border-left: 0.3em solid;} .dropright .dropdown-toggle:empty::after{margin-left: 0;} .dropright .dropdown-toggle::after{vertical-align: 0;} .dropleft .dropdown-menu{top: 0; right: 100%; left: auto; margin-top: 0; margin-right: 0.125rem;} .dropleft .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: "";} .dropleft .dropdown-toggle::after{display: none;} .dropleft .dropdown-toggle::before{display: inline-block; width: 0; height: 0; margin-right: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0.3em solid; border-bottom: 0.3em solid transparent;} .dropleft .dropdown-toggle:empty::after{margin-left: 0;} .dropleft .dropdown-toggle::before{vertical-align: 0;} .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"]{right: auto; bottom: auto;} .dropdown-divider{height: 0; margin: 0.5rem 0; overflow: hidden; border-top: 1px solid #e9ecef;} .dropdown-item{display: block; width: 100%; padding: 0.25rem 1.5rem; clear: both; font-weight: 400; color: #212529; text-align: inherit; white-space: nowrap; background-color: transparent; border: 0;} .dropdown-item:hover, .dropdown-item:focus{color: #16181b; text-decoration: none; background-color: #f8f9fa;} .dropdown-item.active, .dropdown-item:active{color: #FFFFFF; text-decoration: none; background-color: #00A09D;} .dropdown-item.disabled, .dropdown-item:disabled{color: #6c757d; background-color: transparent;} .dropdown-menu.show{display: block;} .dropdown-header{display: block; padding: 0.5rem 1.5rem; margin-bottom: 0; font-size: 0.765625rem; color: #6c757d; white-space: nowrap;} .dropdown-item-text{display: block; padding: 0.25rem 1.5rem; color: #212529;} .btn-group, .btn-group-vertical{position: relative; display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; vertical-align: middle;} .btn-group > .btn, .btn-group-vertical > .btn{position: relative; -webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto;} .btn-group > .btn:hover, .btn-group-vertical > .btn:hover{z-index: 1;} .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active{z-index: 1;} .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group{margin-left: -1px;} .btn-toolbar{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; justify-content: flex-start;} .btn-toolbar .input-group{width: auto;} .btn-group > .btn:first-child{margin-left: 0;} .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn{border-top-right-radius: 0; border-bottom-right-radius: 0;} .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn{border-top-left-radius: 0; border-bottom-left-radius: 0;} .dropdown-toggle-split{padding-right: 0.5625rem; padding-left: 0.5625rem;} .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after{margin-left: 0;} .dropleft .dropdown-toggle-split::before{margin-right: 0;} .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split{padding-right: 0.375rem; padding-left: 0.375rem;} .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split{padding-right: 0.75rem; padding-left: 0.75rem;} .btn-group-vertical{-webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; align-items: flex-start; justify-content: center;} .btn-group-vertical .btn, .btn-group-vertical .btn-group{width: 100%;} .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group{margin-top: -1px; margin-left: 0;} .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn{border-bottom-right-radius: 0; border-bottom-left-radius: 0;} .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) > .btn{border-top-left-radius: 0; border-top-right-radius: 0;} .btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn{margin-bottom: 0;} .btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .btn input[type="checkbox"], .btn-group-toggle > .btn-group > .btn input[type="radio"], .btn-group-toggle > .btn-group > .btn input[type="checkbox"]{position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none;} .input-group{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; align-items: stretch; width: 100%;} .input-group > .form-control, .input-group > .custom-select, .input-group > .custom-file{position: relative; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; width: 1%; margin-bottom: 0;} .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, .input-group > .custom-select + .form-control, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .custom-file, .input-group > .custom-file + .form-control, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .custom-file{margin-left: -1px;} .input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label{z-index: 3;} .input-group > .custom-file .custom-file-input:focus{z-index: 4;} .input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child){border-top-right-radius: 0; border-bottom-right-radius: 0;} .input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child){border-top-left-radius: 0; border-bottom-left-radius: 0;} .input-group > .custom-file{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center;} .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius: 0; border-bottom-right-radius: 0;} .input-group > .custom-file:not(:first-child) .custom-file-label{border-top-left-radius: 0; border-bottom-left-radius: 0;} .input-group-prepend, .input-group-append{display: -webkit-box; display: -webkit-flex; display: flex;} .input-group-prepend .btn, .input-group-append .btn{position: relative; z-index: 2;} .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .input-group-text, .input-group-append .input-group-text + .btn{margin-left: -1px;} .input-group-prepend{margin-right: -1px;} .input-group-append{margin-left: -1px;} .input-group-text{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; padding: 0.375rem 0.75rem; margin-bottom: 0; font-size: 0.875rem; font-weight: 400; line-height: 1.5; color: #495057; text-align: center; white-space: nowrap; background-color: #e9ecef; border: 1px solid #ced4da; border-radius: 0.25rem;} .input-group-text input[type="radio"], .input-group-text input[type="checkbox"]{margin-top: 0;} .input-group-lg > .form-control, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn{height: calc(2.640625rem + 2px); padding: 0.5rem 1rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0.3rem;} .input-group-sm > .form-control, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn{height: calc(1.6484375rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0.2rem;} .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child){border-top-right-radius: 0; border-bottom-right-radius: 0;} .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child){border-top-left-radius: 0; border-bottom-left-radius: 0;} .custom-control{position: relative; display: block; min-height: 1.3125rem; padding-left: 1.5rem;} .custom-control-inline{display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; margin-right: 1rem;} .custom-control-input{position: absolute; z-index: -1; opacity: 0;} .custom-control-input:checked ~ .custom-control-label::before{color: #FFFFFF; background-color: #00A09D;} .custom-control-input:focus ~ .custom-control-label::before{box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .custom-control-input:active ~ .custom-control-label::before{color: #FFFFFF; background-color: #54fffc;} .custom-control-input:disabled ~ .custom-control-label{color: #6c757d;} .custom-control-input:disabled ~ .custom-control-label::before{background-color: #e9ecef;} .custom-control-label{position: relative; margin-bottom: 0;} .custom-control-label::before{position: absolute; top: 0.15625rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; pointer-events: none; content: ""; user-select: none; background-color: #dee2e6;} .custom-control-label::after{position: absolute; top: 0.15625rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; content: ""; background-repeat: no-repeat; background-position: center center; background-size: 50% 50%;} .custom-checkbox .custom-control-label::before{border-radius: 0.25rem;} .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{background-color: #00A09D;} .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23FFFFFF' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");} .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{background-color: #00A09D;} .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23FFFFFF' d='M0 2h4'/%3E%3C/svg%3E");} .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color: rgba(0, 160, 157, 0.5);} .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color: rgba(0, 160, 157, 0.5);} .custom-radio .custom-control-label::before{border-radius: 50%;} .custom-radio .custom-control-input:checked ~ .custom-control-label::before{background-color: #00A09D;} .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23FFFFFF'/%3E%3C/svg%3E");} .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color: rgba(0, 160, 157, 0.5);} .custom-select{display: inline-block; width: 100%; height: calc(2.0625rem + 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; line-height: 1.5; color: #495057; vertical-align: middle; background: #FFFFFF url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; background-size: 8px 10px; border: 1px solid #ced4da; border-radius: 0.25rem; -webkit-appearance: none; -moz-appearance: none; appearance: none;} .custom-select:focus{border-color: #21fffb; outline: 0; box-shadow: 0 0 0 0.2rem rgba(33, 255, 251, 0.5);} .custom-select:focus::-ms-value{color: #495057; background-color: #FFFFFF;} .custom-select[multiple], .custom-select[size]:not([size="1"]){height: auto; padding-right: 0.75rem; background-image: none;} .custom-select:disabled{color: #6c757d; background-color: #e9ecef;} .custom-select::-ms-expand{opacity: 0;} .custom-select-sm{height: calc(1.6484375rem + 2px); padding-top: 0.375rem; padding-bottom: 0.375rem; font-size: 75%;} .custom-select-lg{height: calc(2.640625rem + 2px); padding-top: 0.375rem; padding-bottom: 0.375rem; font-size: 125%;} .custom-file{position: relative; display: inline-block; width: 100%; height: calc(2.0625rem + 2px); margin-bottom: 0;} .custom-file-input{position: relative; z-index: 2; width: 100%; height: calc(2.0625rem + 2px); margin: 0; opacity: 0;} .custom-file-input:focus ~ .custom-file-label{border-color: #21fffb; box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .custom-file-input:focus ~ .custom-file-label::after{border-color: #21fffb;} .custom-file-input:disabled ~ .custom-file-label{background-color: #e9ecef;} .custom-file-input:lang(en) ~ .custom-file-label::after{content: "Browse";} .custom-file-label{position: absolute; top: 0; right: 0; left: 0; z-index: 1; height: calc(2.0625rem + 2px); padding: 0.375rem 0.75rem; line-height: 1.5; color: #495057; background-color: #FFFFFF; border: 1px solid #ced4da; border-radius: 0.25rem;} .custom-file-label::after{position: absolute; top: 0; right: 0; bottom: 0; z-index: 3; display: block; height: 2.0625rem; padding: 0.375rem 0.75rem; line-height: 1.5; color: #495057; content: "Browse"; background-color: #e9ecef; border-left: 1px solid #ced4da; border-radius: 0 0.25rem 0.25rem 0;} .custom-range{width: 100%; padding-left: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none;} .custom-range:focus{outline: none;} .custom-range:focus::-webkit-slider-thumb{box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .custom-range:focus::-moz-range-thumb{box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .custom-range:focus::-ms-thumb{box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .custom-range::-moz-focus-outer{border: 0;} .custom-range::-webkit-slider-thumb{width: 1rem; height: 1rem; margin-top: -0.25rem; background-color: #00A09D; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -webkit-appearance: none; -moz-appearance: none; appearance: none;} @media screen and (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition: none;}} .custom-range::-webkit-slider-thumb:active{background-color: #54fffc;} .custom-range::-webkit-slider-runnable-track{width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: #dee2e6; border-color: transparent; border-radius: 1rem;} .custom-range::-moz-range-thumb{width: 1rem; height: 1rem; background-color: #00A09D; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -webkit-appearance: none; -moz-appearance: none; appearance: none;} @media screen and (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition: none;}} .custom-range::-moz-range-thumb:active{background-color: #54fffc;} .custom-range::-moz-range-track{width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: #dee2e6; border-color: transparent; border-radius: 1rem;} .custom-range::-ms-thumb{width: 1rem; height: 1rem; margin-top: 0; margin-right: 0.2rem; margin-left: 0.2rem; background-color: #00A09D; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -webkit-appearance: none; -moz-appearance: none; appearance: none;} @media screen and (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition: none;}} .custom-range::-ms-thumb:active{background-color: #54fffc;} .custom-range::-ms-track{width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: transparent; border-color: transparent; border-width: 0.5rem;} .custom-range::-ms-fill-lower{background-color: #dee2e6; border-radius: 1rem;} .custom-range::-ms-fill-upper{margin-right: 15px; background-color: #dee2e6; border-radius: 1rem;} .custom-control-label::before, .custom-file-label, .custom-select{transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;} @media screen and (prefers-reduced-motion: reduce){.custom-control-label::before, .custom-file-label, .custom-select{transition: none;}} .nav{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none;} .nav-link{display: block; padding: 0.5rem 1rem;} .nav-link:hover, .nav-link:focus{text-decoration: none;} .nav-link.disabled{color: #6c757d;} .nav-tabs{border-bottom: 1px solid #dee2e6;} .nav-tabs .nav-item{margin-bottom: -1px;} .nav-tabs .nav-link{border: 1px solid transparent; border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem;} .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus{border-color: #e9ecef #e9ecef #dee2e6;} .nav-tabs .nav-link.disabled{color: #6c757d; background-color: transparent; border-color: transparent;} .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{color: #495057; background-color: #FFFFFF; border-color: #dee2e6 #dee2e6 #FFFFFF;} .nav-tabs .dropdown-menu{margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0;} .nav-pills .nav-link{border-radius: 0.25rem;} .nav-pills .nav-link.active, .nav-pills .show > .nav-link{color: #FFFFFF; background-color: #00A09D;} .nav-fill .nav-item{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; text-align: center;} .nav-justified .nav-item{flex-basis: 0; flex-grow: 1; text-align: center;} .tab-content > .tab-pane{display: none;} .tab-content > .active{display: block;} .navbar{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0.5rem 1rem;} .navbar > .container, .navbar > .container-fluid{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; align-items: center; justify-content: space-between;} .navbar-brand{display: inline-block; padding-top: 0.3359375rem; padding-bottom: 0.3359375rem; margin-right: 1rem; font-size: 1.09375rem; line-height: inherit; white-space: nowrap;} .navbar-brand:hover, .navbar-brand:focus{text-decoration: none;} .navbar-nav{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none;} .navbar-nav .nav-link{padding-right: 0; padding-left: 0;} .navbar-nav .dropdown-menu{position: static; float: none;} .navbar-text{display: inline-block; padding-top: 0.5rem; padding-bottom: 0.5rem;} .navbar-collapse{flex-basis: 100%; flex-grow: 1; align-items: center;} .navbar-toggler{padding: 0.25rem 0.75rem; font-size: 1.09375rem; line-height: 1; background-color: transparent; border: 1px solid transparent; border-radius: 0.25rem;} .navbar-toggler:hover, .navbar-toggler:focus{text-decoration: none;} .navbar-toggler:not(:disabled):not(.disabled){cursor: pointer;} .navbar-toggler-icon{display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; content: ""; background: no-repeat center center; background-size: 100% 100%;} @media (max-width: 575.98px){.navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 576px){.navbar-expand-sm{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-sm .navbar-nav{flex-direction: row;}.navbar-expand-sm .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-sm .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-sm .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-sm .navbar-toggler{display: none;}} @media (max-width: 767.98px){.navbar-expand-md > .container, .navbar-expand-md > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 768px){.navbar-expand-md{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-md .navbar-nav{flex-direction: row;}.navbar-expand-md .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-md .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-md > .container, .navbar-expand-md > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-md .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-md .navbar-toggler{display: none;}} @media (max-width: 991.98px){.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 992px){.navbar-expand-lg{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-lg .navbar-nav{flex-direction: row;}.navbar-expand-lg .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-lg .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-lg .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-lg .navbar-toggler{display: none;}} @media (max-width: 1199.98px){.navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 1200px){.navbar-expand-xl{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-xl .navbar-nav{flex-direction: row;}.navbar-expand-xl .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-xl .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-xl .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-xl .navbar-toggler{display: none;}} .navbar-expand{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;} .navbar-expand > .container, .navbar-expand > .container-fluid{padding-right: 0; padding-left: 0;} .navbar-expand .navbar-nav{flex-direction: row;} .navbar-expand .navbar-nav .dropdown-menu{position: absolute;} .navbar-expand .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;} .navbar-expand > .container, .navbar-expand > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;} .navbar-expand .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;} .navbar-expand .navbar-toggler{display: none;} .navbar-light .navbar-brand{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-nav .nav-link{color: rgba(0, 0, 0, 0.5);} .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus{color: rgba(0, 0, 0, 0.7);} .navbar-light .navbar-nav .nav-link.disabled{color: rgba(0, 0, 0, 0.3);} .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-toggler{color: rgba(0, 0, 0, 0.5); border-color: rgba(0, 0, 0, 0.1);} .navbar-light .navbar-toggler-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");} .navbar-light .navbar-text{color: rgba(0, 0, 0, 0.5);} .navbar-light .navbar-text a{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus{color: rgba(0, 0, 0, 0.9);} .navbar-dark .navbar-brand{color: #FFFFFF;} .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus{color: #FFFFFF;} .navbar-dark .navbar-nav .nav-link{color: rgba(255, 255, 255, 0.5);} .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus{color: rgba(255, 255, 255, 0.75);} .navbar-dark .navbar-nav .nav-link.disabled{color: rgba(255, 255, 255, 0.25);} .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active{color: #FFFFFF;} .navbar-dark .navbar-toggler{color: rgba(255, 255, 255, 0.5); border-color: rgba(255, 255, 255, 0.1);} .navbar-dark .navbar-toggler-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");} .navbar-dark .navbar-text{color: rgba(255, 255, 255, 0.5);} .navbar-dark .navbar-text a{color: #FFFFFF;} .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus{color: #FFFFFF;} .card{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #FFFFFF; background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0.25rem;} .card > hr{margin-right: 0; margin-left: 0;} .card > .list-group:first-child .list-group-item:first-child{border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem;} .card > .list-group:last-child .list-group-item:last-child{border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem;} .card-body{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; padding: 1.25rem;} .card-title{margin-bottom: 0.75rem;} .card-subtitle{margin-top: -0.375rem; margin-bottom: 0;} .card-text:last-child{margin-bottom: 0;} .card-link:hover{text-decoration: none;} .card-link + .card-link{margin-left: 1.25rem;} .card-header{padding: 0.75rem 1.25rem; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.03); border-bottom: 1px solid rgba(0, 0, 0, 0.125);} .card-header:first-child{border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;} .card-header + .list-group .list-group-item:first-child{border-top: 0;} .card-footer{padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); border-top: 1px solid rgba(0, 0, 0, 0.125);} .card-footer:last-child{border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);} .card-header-tabs{margin-right: -0.625rem; margin-bottom: -0.75rem; margin-left: -0.625rem; border-bottom: 0;} .card-header-pills{margin-right: -0.625rem; margin-left: -0.625rem;} .card-img-overlay{position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 1.25rem;} .card-img{width: 100%; border-radius: calc(0.25rem - 1px);} .card-img-top{width: 100%; border-top-left-radius: calc(0.25rem - 1px); border-top-right-radius: calc(0.25rem - 1px);} .card-img-bottom{width: 100%; border-bottom-right-radius: calc(0.25rem - 1px); border-bottom-left-radius: calc(0.25rem - 1px);} .card-deck{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column;} .card-deck .card{margin-bottom: 15px;} @media (min-width: 576px){.card-deck{-webkit-flex-flow: row wrap; flex-flow: row wrap; margin-right: -15px; margin-left: -15px;}.card-deck .card{display: -webkit-box; display: -webkit-flex; display: flex; flex: 1 0 0%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; margin-right: 15px; margin-bottom: 0; margin-left: 15px;}} .card-group{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column;} .card-group > .card{margin-bottom: 15px;} @media (min-width: 576px){.card-group{-webkit-flex-flow: row wrap; flex-flow: row wrap;}.card-group > .card{flex: 1 0 0%; margin-bottom: 0;}.card-group > .card + .card{margin-left: 0; border-left: 0;}.card-group > .card:first-child{border-top-right-radius: 0; border-bottom-right-radius: 0;}.card-group > .card:first-child .card-img-top, .card-group > .card:first-child .card-header{border-top-right-radius: 0;}.card-group > .card:first-child .card-img-bottom, .card-group > .card:first-child .card-footer{border-bottom-right-radius: 0;}.card-group > .card:last-child{border-top-left-radius: 0; border-bottom-left-radius: 0;}.card-group > .card:last-child .card-img-top, .card-group > .card:last-child .card-header{border-top-left-radius: 0;}.card-group > .card:last-child .card-img-bottom, .card-group > .card:last-child .card-footer{border-bottom-left-radius: 0;}.card-group > .card:only-child{border-radius: 0.25rem;}.card-group > .card:only-child .card-img-top, .card-group > .card:only-child .card-header{border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem;}.card-group > .card:only-child .card-img-bottom, .card-group > .card:only-child .card-footer{border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem;}.card-group > .card:not(:first-child):not(:last-child):not(:only-child){border-radius: 0;}.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer{border-radius: 0;}} .card-columns .card{margin-bottom: 0.75rem;} @media (min-width: 576px){.card-columns{column-count: 3; column-gap: 1.25rem; orphans: 1; widows: 1;}.card-columns .card{display: inline-block; width: 100%;}} .accordion .card:not(:first-of-type):not(:last-of-type){border-bottom: 0; border-radius: 0;} .accordion .card:not(:first-of-type) .card-header:first-child{border-radius: 0;} .accordion .card:first-of-type{border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0;} .accordion .card:last-of-type{border-top-left-radius: 0; border-top-right-radius: 0;} .breadcrumb{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; padding: 0.75rem 1rem; margin-bottom: 1rem; list-style: none; background-color: #e9ecef; border-radius: 0.25rem;} .breadcrumb-item + .breadcrumb-item{padding-left: 0.5rem;} .breadcrumb-item + .breadcrumb-item::before{display: inline-block; padding-right: 0.5rem; color: #6c757d; content: "/";} .breadcrumb-item + .breadcrumb-item:hover::before{text-decoration: underline;} .breadcrumb-item + .breadcrumb-item:hover::before{text-decoration: none;} .breadcrumb-item.active{color: #6c757d;} .pagination{display: -webkit-box; display: -webkit-flex; display: flex; padding-left: 0; list-style: none; border-radius: 0.25rem;} .page-link{position: relative; display: block; padding: 0.5rem 0.75rem; margin-left: -1px; line-height: 1.25; color: #00A09D; background-color: #FFFFFF; border: 1px solid #dee2e6;} .page-link:hover{z-index: 2; color: #005452; text-decoration: none; background-color: #e9ecef; border-color: #dee2e6;} .page-link:focus{z-index: 2; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.25);} .page-link:not(:disabled):not(.disabled){cursor: pointer;} .page-item:first-child .page-link{margin-left: 0; border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem;} .page-item:last-child .page-link{border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem;} .page-item.active .page-link{z-index: 1; color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .page-item.disabled .page-link{color: #6c757d; pointer-events: none; cursor: auto; background-color: #FFFFFF; border-color: #dee2e6;} .pagination-lg .page-link{padding: 0.75rem 1.5rem; font-size: 1.09375rem; line-height: 1.5;} .pagination-lg .page-item:first-child .page-link{border-top-left-radius: 0.3rem; border-bottom-left-radius: 0.3rem;} .pagination-lg .page-item:last-child .page-link{border-top-right-radius: 0.3rem; border-bottom-right-radius: 0.3rem;} .pagination-sm .page-link{padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5;} .pagination-sm .page-item:first-child .page-link{border-top-left-radius: 0.2rem; border-bottom-left-radius: 0.2rem;} .pagination-sm .page-item:last-child .page-link{border-top-right-radius: 0.2rem; border-bottom-right-radius: 0.2rem;} .badge{display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem;} .badge:empty{display: none;} .btn .badge{position: relative; top: -1px;} .badge-pill{padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem;} .badge-primary{color: #FFFFFF; background-color: #00A09D;} .badge-primary[href]:hover, .badge-primary[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #006d6b;} .badge-secondary{color: #FFFFFF; background-color: #875A7B;} .badge-secondary[href]:hover, .badge-secondary[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #68465f;} .badge-success{color: #FFFFFF; background-color: #28a745;} .badge-success[href]:hover, .badge-success[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #1e7e34;} .badge-info{color: #FFFFFF; background-color: #17a2b8;} .badge-info[href]:hover, .badge-info[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #117a8b;} .badge-warning{color: #212529; background-color: #ffc107;} .badge-warning[href]:hover, .badge-warning[href]:focus{color: #212529; text-decoration: none; background-color: #d39e00;} .badge-danger{color: #FFFFFF; background-color: #dc3545;} .badge-danger[href]:hover, .badge-danger[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #bd2130;} .badge-light{color: #212529; background-color: #f6f9f9;} .badge-light[href]:hover, .badge-light[href]:focus{color: #212529; text-decoration: none; background-color: #d7e4e4;} .badge-dark{color: #FFFFFF; background-color: #141f1e;} .badge-dark[href]:hover, .badge-dark[href]:focus{color: #FFFFFF; text-decoration: none; background-color: black;} .badge-alpha{color: #FFFFFF; background-color: #00A09D;} .badge-alpha[href]:hover, .badge-alpha[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #006d6b;} .badge-beta{color: #FFFFFF; background-color: #875A7B;} .badge-beta[href]:hover, .badge-beta[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #68465f;} .badge-gamma{color: #FFFFFF; background-color: #5C5B80;} .badge-gamma[href]:hover, .badge-gamma[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #474662;} .badge-delta{color: #FFFFFF; background-color: #5B899E;} .badge-delta[href]:hover, .badge-delta[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #486d7e;} .badge-epsilon{color: #FFFFFF; background-color: #E46F78;} .badge-epsilon[href]:hover, .badge-epsilon[href]:focus{color: #FFFFFF; text-decoration: none; background-color: #dc4450;} .jumbotron{padding: 2rem 1rem; margin-bottom: 2rem; background-color: #e9ecef; border-radius: 0.3rem;} @media (min-width: 576px){.jumbotron{padding: 4rem 2rem;}} .jumbotron-fluid{padding-right: 0; padding-left: 0; border-radius: 0;} .alert{position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.25rem;} .alert-heading{color: inherit;} .alert-link{font-weight: 700;} .alert-dismissible{padding-right: 3.8125rem;} .alert-dismissible .close{position: absolute; top: 0; right: 0; padding: 0.75rem 1.25rem; color: inherit;} .alert-primary{color: #005352; background-color: #cceceb; border-color: #b8e4e4;} .alert-primary hr{border-top-color: #a6dddd;} .alert-primary .alert-link{color: #002020;} .alert-secondary{color: #462f40; background-color: #e7dee5; border-color: #ddd1da;} .alert-secondary hr{border-top-color: #d2c2ce;} .alert-secondary .alert-link{color: #271b24;} .alert-success{color: #155724; background-color: #d4edda; border-color: #c3e6cb;} .alert-success hr{border-top-color: #b1dfbb;} .alert-success .alert-link{color: #0b2e13;} .alert-info{color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb;} .alert-info hr{border-top-color: #abdde5;} .alert-info .alert-link{color: #062c33;} .alert-warning{color: #856404; background-color: #fff3cd; border-color: #ffeeba;} .alert-warning hr{border-top-color: #ffe8a1;} .alert-warning .alert-link{color: #533f03;} .alert-danger{color: #721c24; background-color: #f8d7da; border-color: #f5c6cb;} .alert-danger hr{border-top-color: #f1b0b7;} .alert-danger .alert-link{color: #491217;} .alert-light{color: #808181; background-color: #fdfefe; border-color: #fcfdfd;} .alert-light hr{border-top-color: #edf3f3;} .alert-light .alert-link{color: #676767;} .alert-dark{color: #0b1010; background-color: #d0d2d2; border-color: #bdc0c0;} .alert-dark hr{border-top-color: #b0b4b4;} .alert-dark .alert-link{color: black;} .alert-alpha{color: #005352; background-color: #cceceb; border-color: #b8e4e4;} .alert-alpha hr{border-top-color: #a6dddd;} .alert-alpha .alert-link{color: #002020;} .alert-beta{color: #462f40; background-color: #e7dee5; border-color: #ddd1da;} .alert-beta hr{border-top-color: #d2c2ce;} .alert-beta .alert-link{color: #271b24;} .alert-gamma{color: #302f43; background-color: #dedee6; border-color: #d1d1db;} .alert-gamma hr{border-top-color: #c3c3d0;} .alert-gamma .alert-link{color: #1b1a25;} .alert-delta{color: #2f4752; background-color: #dee7ec; border-color: #d1dee4;} .alert-delta hr{border-top-color: #c1d2db;} .alert-delta .alert-link{color: #1c2b32;} .alert-epsilon{color: #773a3e; background-color: #fae2e4; border-color: #f7d7d9;} .alert-epsilon hr{border-top-color: #f3c2c5;} .alert-epsilon .alert-link{color: #55292c;} @keyframes progress-bar-stripes{from{background-position: 1rem 0;}to{background-position: 0 0;}} .progress{display: -webkit-box; display: -webkit-flex; display: flex; height: 1rem; overflow: hidden; font-size: 0.65625rem; background-color: #e9ecef; border-radius: 0.25rem;} .progress-bar{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; justify-content: center; color: #FFFFFF; text-align: center; white-space: nowrap; background-color: #00A09D; transition: width 0.6s ease;} @media screen and (prefers-reduced-motion: reduce){.progress-bar{transition: none;}} .progress-bar-striped{background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem;} .progress-bar-animated{animation: progress-bar-stripes 1s linear infinite;} .media{display: -webkit-box; display: -webkit-flex; display: flex; align-items: flex-start;} .media-body{flex: 1;} .list-group{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0;} .list-group-item-action{width: 100%; color: #495057; text-align: inherit;} .list-group-item-action:hover, .list-group-item-action:focus{color: #495057; text-decoration: none; background-color: #f8f9fa;} .list-group-item-action:active{color: #212529; background-color: #e9ecef;} .list-group-item{position: relative; display: block; padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.125);} .list-group-item:first-child{border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem;} .list-group-item:last-child{margin-bottom: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem;} .list-group-item:hover, .list-group-item:focus{z-index: 1; text-decoration: none;} .list-group-item.disabled, .list-group-item:disabled{color: #6c757d; background-color: #FFFFFF;} .list-group-item.active{z-index: 2; color: #FFFFFF; background-color: #00A09D; border-color: #00A09D;} .list-group-flush .list-group-item{border-right: 0; border-left: 0; border-radius: 0;} .list-group-flush:first-child .list-group-item:first-child{border-top: 0;} .list-group-flush:last-child .list-group-item:last-child{border-bottom: 0;} .list-group-item-primary{color: #005352; background-color: #b8e4e4;} .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus{color: #005352; background-color: #a6dddd;} .list-group-item-primary.list-group-item-action.active{color: #FFFFFF; background-color: #005352; border-color: #005352;} .list-group-item-secondary{color: #462f40; background-color: #ddd1da;} .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus{color: #462f40; background-color: #d2c2ce;} .list-group-item-secondary.list-group-item-action.active{color: #FFFFFF; background-color: #462f40; border-color: #462f40;} .list-group-item-success{color: #155724; background-color: #c3e6cb;} .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus{color: #155724; background-color: #b1dfbb;} .list-group-item-success.list-group-item-action.active{color: #FFFFFF; background-color: #155724; border-color: #155724;} .list-group-item-info{color: #0c5460; background-color: #bee5eb;} .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus{color: #0c5460; background-color: #abdde5;} .list-group-item-info.list-group-item-action.active{color: #FFFFFF; background-color: #0c5460; border-color: #0c5460;} .list-group-item-warning{color: #856404; background-color: #ffeeba;} .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus{color: #856404; background-color: #ffe8a1;} .list-group-item-warning.list-group-item-action.active{color: #FFFFFF; background-color: #856404; border-color: #856404;} .list-group-item-danger{color: #721c24; background-color: #f5c6cb;} .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus{color: #721c24; background-color: #f1b0b7;} .list-group-item-danger.list-group-item-action.active{color: #FFFFFF; background-color: #721c24; border-color: #721c24;} .list-group-item-light{color: #808181; background-color: #fcfdfd;} .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus{color: #808181; background-color: #edf3f3;} .list-group-item-light.list-group-item-action.active{color: #FFFFFF; background-color: #808181; border-color: #808181;} .list-group-item-dark{color: #0b1010; background-color: #bdc0c0;} .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus{color: #0b1010; background-color: #b0b4b4;} .list-group-item-dark.list-group-item-action.active{color: #FFFFFF; background-color: #0b1010; border-color: #0b1010;} .list-group-item-alpha{color: #005352; background-color: #b8e4e4;} .list-group-item-alpha.list-group-item-action:hover, .list-group-item-alpha.list-group-item-action:focus{color: #005352; background-color: #a6dddd;} .list-group-item-alpha.list-group-item-action.active{color: #FFFFFF; background-color: #005352; border-color: #005352;} .list-group-item-beta{color: #462f40; background-color: #ddd1da;} .list-group-item-beta.list-group-item-action:hover, .list-group-item-beta.list-group-item-action:focus{color: #462f40; background-color: #d2c2ce;} .list-group-item-beta.list-group-item-action.active{color: #FFFFFF; background-color: #462f40; border-color: #462f40;} .list-group-item-gamma{color: #302f43; background-color: #d1d1db;} .list-group-item-gamma.list-group-item-action:hover, .list-group-item-gamma.list-group-item-action:focus{color: #302f43; background-color: #c3c3d0;} .list-group-item-gamma.list-group-item-action.active{color: #FFFFFF; background-color: #302f43; border-color: #302f43;} .list-group-item-delta{color: #2f4752; background-color: #d1dee4;} .list-group-item-delta.list-group-item-action:hover, .list-group-item-delta.list-group-item-action:focus{color: #2f4752; background-color: #c1d2db;} .list-group-item-delta.list-group-item-action.active{color: #FFFFFF; background-color: #2f4752; border-color: #2f4752;} .list-group-item-epsilon{color: #773a3e; background-color: #f7d7d9;} .list-group-item-epsilon.list-group-item-action:hover, .list-group-item-epsilon.list-group-item-action:focus{color: #773a3e; background-color: #f3c2c5;} .list-group-item-epsilon.list-group-item-action.active{color: #FFFFFF; background-color: #773a3e; border-color: #773a3e;} .close{float: right; font-size: 1.3125rem; font-weight: 700; line-height: 1; color: #000000; text-shadow: 0 1px 0 #FFFFFF; opacity: .5;} .close:not(:disabled):not(.disabled){cursor: pointer;} .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus{color: #000000; text-decoration: none; opacity: .75;} button.close{padding: 0; background-color: transparent; border: 0; -webkit--webkit-appearance: none; -moz-appearance: none; appearance: none;} .modal-open{overflow: hidden;} .modal-open .modal{overflow-x: hidden; overflow-y: auto;} .modal{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; outline: 0;} .modal-dialog{position: relative; width: auto; margin: 0.5rem; pointer-events: none;} .modal.fade .modal-dialog{transition: transform 0.3s ease-out; transform: translate(0, -25%);} @media screen and (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition: none;}} .modal.show .modal-dialog{transform: translate(0, 0);} .modal-dialog-centered{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; min-height: calc(100% - (0.5rem * 2));} .modal-dialog-centered::before{display: block; height: calc(100vh - (0.5rem * 2)); content: "";} .modal-content{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-color: #FFFFFF; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; outline: 0;} .modal-backdrop{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000;} .modal-backdrop.fade{opacity: 0;} .modal-backdrop.show{opacity: 0.5;} .modal-header{display: -webkit-box; display: -webkit-flex; display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #e9ecef; border-top-left-radius: 0.3rem; border-top-right-radius: 0.3rem;} .modal-header .close{padding: 1rem; margin: -1rem -1rem -1rem auto;} .modal-title{margin-bottom: 0; line-height: 1.5;} .modal-body{position: relative; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; padding: 1rem;} .modal-footer{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; -webkit-box-pack: end; justify-content: flex-end; padding: 1rem; border-top: 1px solid #e9ecef;} .modal-footer > :not(:first-child){margin-left: .25rem;} .modal-footer > :not(:last-child){margin-right: .25rem;} .modal-scrollbar-measure{position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll;} @media (min-width: 576px){.modal-dialog{max-width: 500px; margin: 1.75rem auto;}.modal-dialog-centered{min-height: calc(100% - (1.75rem * 2));}.modal-dialog-centered::before{height: calc(100vh - (1.75rem * 2));}.modal-sm{max-width: 300px;}} @media (min-width: 992px){.modal-lg{max-width: 800px;}} .tooltip{position: absolute; z-index: 1070; display: block; margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-weight: 400; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.765625rem; word-wrap: break-word; opacity: 0;} .tooltip.show{opacity: 0.9;} .tooltip .arrow{position: absolute; display: block; width: 0.8rem; height: 0.4rem;} .tooltip .arrow::before{position: absolute; content: ""; border-color: transparent; border-style: solid;} .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"]{padding: 0.4rem 0;} .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow{bottom: 0;} .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before{top: 0; border-width: 0.4rem 0.4rem 0; border-top-color: #000000;} .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"]{padding: 0 0.4rem;} .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow{left: 0; width: 0.4rem; height: 0.8rem;} .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before{right: 0; border-width: 0.4rem 0.4rem 0.4rem 0; border-right-color: #000000;} .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"]{padding: 0.4rem 0;} .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow{top: 0;} .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom: 0; border-width: 0 0.4rem 0.4rem; border-bottom-color: #000000;} .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"]{padding: 0 0.4rem;} .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow{right: 0; width: 0.4rem; height: 0.8rem;} .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before{left: 0; border-width: 0.4rem 0 0.4rem 0.4rem; border-left-color: #000000;} .tooltip-inner{max-width: 200px; padding: 0.25rem 0.5rem; color: #FFFFFF; text-align: center; background-color: #000000; border-radius: 0.25rem;} .popover{position: absolute; top: 0; left: 0; z-index: 1060; display: block; max-width: 276px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-style: normal; font-weight: 400; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.765625rem; word-wrap: break-word; background-color: #FFFFFF; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem;} .popover .arrow{position: absolute; display: block; width: 1rem; height: 0.5rem; margin: 0 0.3rem;} .popover .arrow::before, .popover .arrow::after{position: absolute; display: block; content: ""; border-color: transparent; border-style: solid;} .bs-popover-top, .bs-popover-auto[x-placement^="top"]{margin-bottom: 0.5rem;} .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow{bottom: calc((0.5rem + 1px) * -1);} .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after{border-width: 0.5rem 0.5rem 0;} .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before{bottom: 0; border-top-color: rgba(0, 0, 0, 0.25);} .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after{bottom: 1px; border-top-color: #FFFFFF;} .bs-popover-right, .bs-popover-auto[x-placement^="right"]{margin-left: 0.5rem;} .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow{left: calc((0.5rem + 1px) * -1); width: 0.5rem; height: 1rem; margin: 0.3rem 0;} .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after{border-width: 0.5rem 0.5rem 0.5rem 0;} .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before{left: 0; border-right-color: rgba(0, 0, 0, 0.25);} .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after{left: 1px; border-right-color: #FFFFFF;} .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"]{margin-top: 0.5rem;} .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow{top: calc((0.5rem + 1px) * -1);} .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after{border-width: 0 0.5rem 0.5rem 0.5rem;} .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before{top: 0; border-bottom-color: rgba(0, 0, 0, 0.25);} .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after{top: 1px; border-bottom-color: #FFFFFF;} .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position: absolute; top: 0; left: 50%; display: block; width: 1rem; margin-left: -0.5rem; content: ""; border-bottom: 1px solid #f7f7f7;} .bs-popover-left, .bs-popover-auto[x-placement^="left"]{margin-right: 0.5rem;} .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow{right: calc((0.5rem + 1px) * -1); width: 0.5rem; height: 1rem; margin: 0.3rem 0;} .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after{border-width: 0.5rem 0 0.5rem 0.5rem;} .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before{right: 0; border-left-color: rgba(0, 0, 0, 0.25);} .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after{right: 1px; border-left-color: #FFFFFF;} .popover-header{padding: 0.5rem 0.75rem; margin-bottom: 0; font-size: 0.875rem; color: inherit; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-top-left-radius: calc(0.3rem - 1px); border-top-right-radius: calc(0.3rem - 1px);} .popover-header:empty{display: none;} .popover-body{padding: 0.5rem 0.75rem; color: #212529;} .carousel{position: relative;} .carousel-inner{position: relative; width: 100%; overflow: hidden;} .carousel-item{position: relative; display: none; align-items: center; width: 100%; backface-visibility: hidden; perspective: 1000px;} .carousel-item.active, .carousel-item-next, .carousel-item-prev{display: block; transition: transform 0.6s ease;} @media screen and (prefers-reduced-motion: reduce){.carousel-item.active, .carousel-item-next, .carousel-item-prev{transition: none;}} .carousel-item-next, .carousel-item-prev{position: absolute; top: 0;} .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right{transform: translateX(0);} @supports (transform-style: preserve-3d){.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right{transform: translate3d(0, 0, 0);}} .carousel-item-next, .active.carousel-item-right{transform: translateX(100%);} @supports (transform-style: preserve-3d){.carousel-item-next, .active.carousel-item-right{transform: translate3d(100%, 0, 0);}} .carousel-item-prev, .active.carousel-item-left{transform: translateX(-100%);} @supports (transform-style: preserve-3d){.carousel-item-prev, .active.carousel-item-left{transform: translate3d(-100%, 0, 0);}} .carousel-fade .carousel-item{opacity: 0; transition-duration: .6s; transition-property: opacity;} .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right{opacity: 1;} .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right{opacity: 0;} .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev{transform: translateX(0);} @supports (transform-style: preserve-3d){.carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev{transform: translate3d(0, 0, 0);}} .carousel-control-prev, .carousel-control-next{position: absolute; top: 0; bottom: 0; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; width: 15%; color: #FFFFFF; text-align: center; opacity: 0.5;} .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus{color: #FFFFFF; text-decoration: none; outline: 0; opacity: .9;} .carousel-control-prev{left: 0;} .carousel-control-next{right: 0;} .carousel-control-prev-icon, .carousel-control-next-icon{display: inline-block; width: 20px; height: 20px; background: transparent no-repeat center center; background-size: 100% 100%;} .carousel-control-prev-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");} .carousel-control-next-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");} .carousel-indicators{position: absolute; right: 0; bottom: 10px; left: 0; z-index: 15; display: -webkit-box; display: -webkit-flex; display: flex; justify-content: center; padding-left: 0; margin-right: 15%; margin-left: 15%; list-style: none;} .carousel-indicators li{position: relative; -webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: rgba(255, 255, 255, 0.5);} .carousel-indicators li::before{position: absolute; top: -10px; left: 0; display: inline-block; width: 100%; height: 10px; content: "";} .carousel-indicators li::after{position: absolute; bottom: -10px; left: 0; display: inline-block; width: 100%; height: 10px; content: "";} .carousel-indicators .active{background-color: #FFFFFF;} .carousel-caption{position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #FFFFFF; text-align: center;} .align-baseline{vertical-align: baseline !important;} .align-top{vertical-align: top !important;} .align-middle{vertical-align: middle !important;} .align-bottom{vertical-align: bottom !important;} .align-text-bottom{vertical-align: text-bottom !important;} .align-text-top{vertical-align: text-top !important;} .bg-primary{background-color: #00A09D !important; color: #FFFFFF;} .bg-primary .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus{background-color: #006d6b !important; color: #FFFFFF;} .bg-secondary{background-color: #875A7B !important; color: #FFFFFF;} .bg-secondary .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus{background-color: #68465f !important; color: #FFFFFF;} .bg-success{background-color: #28a745 !important; color: #FFFFFF;} .bg-success .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus{background-color: #1e7e34 !important; color: #FFFFFF;} .bg-info{background-color: #17a2b8 !important; color: #FFFFFF;} .bg-info .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus{background-color: #117a8b !important; color: #FFFFFF;} .bg-warning{background-color: #ffc107 !important; color: #212529;} .bg-warning .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-warning:hover, a.bg-warning:focus, button.bg-warning:hover, button.bg-warning:focus{background-color: #d39e00 !important; color: #212529;} .bg-danger{background-color: #dc3545 !important; color: #FFFFFF;} .bg-danger .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-danger:hover, a.bg-danger:focus, button.bg-danger:hover, button.bg-danger:focus{background-color: #bd2130 !important; color: #FFFFFF;} .bg-light{background-color: #f6f9f9 !important; color: #212529;} .bg-light .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus{background-color: #d7e4e4 !important; color: #212529;} .bg-dark{background-color: #141f1e !important; color: #FFFFFF;} .bg-dark .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus{background-color: black !important; color: #FFFFFF;} .bg-alpha{background-color: #00A09D !important; color: #FFFFFF;} .bg-alpha .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-alpha:hover, a.bg-alpha:focus, button.bg-alpha:hover, button.bg-alpha:focus{background-color: #006d6b !important; color: #FFFFFF;} .bg-beta{background-color: #875A7B !important; color: #FFFFFF;} .bg-beta .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-beta:hover, a.bg-beta:focus, button.bg-beta:hover, button.bg-beta:focus{background-color: #68465f !important; color: #FFFFFF;} .bg-gamma{background-color: #5C5B80 !important; color: #FFFFFF;} .bg-gamma .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-gamma:hover, a.bg-gamma:focus, button.bg-gamma:hover, button.bg-gamma:focus{background-color: #474662 !important; color: #FFFFFF;} .bg-delta{background-color: #5B899E !important; color: #FFFFFF;} .bg-delta .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-delta:hover, a.bg-delta:focus, button.bg-delta:hover, button.bg-delta:focus{background-color: #486d7e !important; color: #FFFFFF;} .bg-epsilon{background-color: #E46F78 !important; color: #FFFFFF;} .bg-epsilon .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-epsilon:hover, a.bg-epsilon:focus, button.bg-epsilon:hover, button.bg-epsilon:focus{background-color: #dc4450 !important; color: #FFFFFF;} .bg-white{background-color: #FFFFFF !important;} .bg-transparent{background-color: transparent !important;} .border{border: 1px solid #dee2e6 !important;} .border-top{border-top: 1px solid #dee2e6 !important;} .border-right{border-right: 1px solid #dee2e6 !important;} .border-bottom{border-bottom: 1px solid #dee2e6 !important;} .border-left{border-left: 1px solid #dee2e6 !important;} .border-0{border: 0 !important;} .border-top-0{border-top: 0 !important;} .border-right-0{border-right: 0 !important;} .border-bottom-0{border-bottom: 0 !important;} .border-left-0{border-left: 0 !important;} .border-primary{border-color: #00A09D !important;} .border-secondary{border-color: #875A7B !important;} .border-success{border-color: #28a745 !important;} .border-info{border-color: #17a2b8 !important;} .border-warning{border-color: #ffc107 !important;} .border-danger{border-color: #dc3545 !important;} .border-light{border-color: #f6f9f9 !important;} .border-dark{border-color: #141f1e !important;} .border-alpha{border-color: #00A09D !important;} .border-beta{border-color: #875A7B !important;} .border-gamma{border-color: #5C5B80 !important;} .border-delta{border-color: #5B899E !important;} .border-epsilon{border-color: #E46F78 !important;} .border-white{border-color: #FFFFFF !important;} .rounded{border-radius: 0.25rem !important;} .rounded-top{border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important;} .rounded-right{border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important;} .rounded-bottom{border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important;} .rounded-left{border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important;} .rounded-circle{border-radius: 50% !important;} .rounded-0{border-radius: 0 !important;} .clearfix::after{display: block; clear: both; content: "";} .d-none{display: none !important;} .d-inline{display: inline !important;} .d-inline-block{display: inline-block !important;} .d-block{display: block !important;} .d-table{display: table !important;} .d-table-row{display: table-row !important;} .d-table-cell{display: table-cell !important;} .d-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;} .d-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;} @media (min-width: 576px){.d-sm-none{display: none !important;}.d-sm-inline{display: inline !important;}.d-sm-inline-block{display: inline-block !important;}.d-sm-block{display: block !important;}.d-sm-table{display: table !important;}.d-sm-table-row{display: table-row !important;}.d-sm-table-cell{display: table-cell !important;}.d-sm-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-sm-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media (min-width: 768px){.d-md-none{display: none !important;}.d-md-inline{display: inline !important;}.d-md-inline-block{display: inline-block !important;}.d-md-block{display: block !important;}.d-md-table{display: table !important;}.d-md-table-row{display: table-row !important;}.d-md-table-cell{display: table-cell !important;}.d-md-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-md-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media (min-width: 992px){.d-lg-none{display: none !important;}.d-lg-inline{display: inline !important;}.d-lg-inline-block{display: inline-block !important;}.d-lg-block{display: block !important;}.d-lg-table{display: table !important;}.d-lg-table-row{display: table-row !important;}.d-lg-table-cell{display: table-cell !important;}.d-lg-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-lg-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media (min-width: 1200px){.d-xl-none{display: none !important;}.d-xl-inline{display: inline !important;}.d-xl-inline-block{display: inline-block !important;}.d-xl-block{display: block !important;}.d-xl-table{display: table !important;}.d-xl-table-row{display: table-row !important;}.d-xl-table-cell{display: table-cell !important;}.d-xl-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-xl-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media print{.d-print-none{display: none !important;}.d-print-inline{display: inline !important;}.d-print-inline-block{display: inline-block !important;}.d-print-block{display: block !important;}.d-print-table{display: table !important;}.d-print-table-row{display: table-row !important;}.d-print-table-cell{display: table-cell !important;}.d-print-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-print-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} .embed-responsive{position: relative; display: block; width: 100%; padding: 0; overflow: hidden;} .embed-responsive::before{display: block; content: "";} .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video{position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0;} .embed-responsive-21by9::before{padding-top: 42.85714286%;} .embed-responsive-16by9::before{padding-top: 56.25%;} .embed-responsive-4by3::before{padding-top: 75%;} .embed-responsive-1by1::before{padding-top: 100%;} .flex-row{flex-direction: row !important;} .flex-column{flex-direction: column !important;} .flex-row-reverse{flex-direction: row-reverse !important;} .flex-column-reverse{flex-direction: column-reverse !important;} .flex-wrap{flex-wrap: wrap !important;} .flex-nowrap{flex-wrap: nowrap !important;} .flex-wrap-reverse{flex-wrap: wrap-reverse !important;} .flex-fill{flex: 1 1 auto !important;} .flex-grow-0{flex-grow: 0 !important;} .flex-grow-1{flex-grow: 1 !important;} .flex-shrink-0{flex-shrink: 0 !important;} .flex-shrink-1{flex-shrink: 1 !important;} .justify-content-start{-webkit-box-pack: start !important; justify-content: flex-start !important;} .justify-content-end{-webkit-box-pack: end !important; justify-content: flex-end !important;} .justify-content-center{justify-content: center !important;} .justify-content-between{justify-content: space-between !important;} .justify-content-around{justify-content: space-around !important;} .align-items-start{align-items: flex-start !important;} .align-items-end{align-items: flex-end !important;} .align-items-center{align-items: center !important;} .align-items-baseline{align-items: baseline !important;} .align-items-stretch{align-items: stretch !important;} .align-content-start{align-content: flex-start !important;} .align-content-end{align-content: flex-end !important;} .align-content-center{align-content: center !important;} .align-content-between{align-content: space-between !important;} .align-content-around{align-content: space-around !important;} .align-content-stretch{align-content: stretch !important;} .align-self-auto{align-self: auto !important;} .align-self-start{align-self: flex-start !important;} .align-self-end{align-self: flex-end !important;} .align-self-center{align-self: center !important;} .align-self-baseline{align-self: baseline !important;} .align-self-stretch{align-self: stretch !important;} @media (min-width: 576px){.flex-sm-row{flex-direction: row !important;}.flex-sm-column{flex-direction: column !important;}.flex-sm-row-reverse{flex-direction: row-reverse !important;}.flex-sm-column-reverse{flex-direction: column-reverse !important;}.flex-sm-wrap{flex-wrap: wrap !important;}.flex-sm-nowrap{flex-wrap: nowrap !important;}.flex-sm-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-sm-fill{flex: 1 1 auto !important;}.flex-sm-grow-0{flex-grow: 0 !important;}.flex-sm-grow-1{flex-grow: 1 !important;}.flex-sm-shrink-0{flex-shrink: 0 !important;}.flex-sm-shrink-1{flex-shrink: 1 !important;}.justify-content-sm-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-sm-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-sm-center{justify-content: center !important;}.justify-content-sm-between{justify-content: space-between !important;}.justify-content-sm-around{justify-content: space-around !important;}.align-items-sm-start{align-items: flex-start !important;}.align-items-sm-end{align-items: flex-end !important;}.align-items-sm-center{align-items: center !important;}.align-items-sm-baseline{align-items: baseline !important;}.align-items-sm-stretch{align-items: stretch !important;}.align-content-sm-start{align-content: flex-start !important;}.align-content-sm-end{align-content: flex-end !important;}.align-content-sm-center{align-content: center !important;}.align-content-sm-between{align-content: space-between !important;}.align-content-sm-around{align-content: space-around !important;}.align-content-sm-stretch{align-content: stretch !important;}.align-self-sm-auto{align-self: auto !important;}.align-self-sm-start{align-self: flex-start !important;}.align-self-sm-end{align-self: flex-end !important;}.align-self-sm-center{align-self: center !important;}.align-self-sm-baseline{align-self: baseline !important;}.align-self-sm-stretch{align-self: stretch !important;}} @media (min-width: 768px){.flex-md-row{flex-direction: row !important;}.flex-md-column{flex-direction: column !important;}.flex-md-row-reverse{flex-direction: row-reverse !important;}.flex-md-column-reverse{flex-direction: column-reverse !important;}.flex-md-wrap{flex-wrap: wrap !important;}.flex-md-nowrap{flex-wrap: nowrap !important;}.flex-md-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-md-fill{flex: 1 1 auto !important;}.flex-md-grow-0{flex-grow: 0 !important;}.flex-md-grow-1{flex-grow: 1 !important;}.flex-md-shrink-0{flex-shrink: 0 !important;}.flex-md-shrink-1{flex-shrink: 1 !important;}.justify-content-md-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-md-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-md-center{justify-content: center !important;}.justify-content-md-between{justify-content: space-between !important;}.justify-content-md-around{justify-content: space-around !important;}.align-items-md-start{align-items: flex-start !important;}.align-items-md-end{align-items: flex-end !important;}.align-items-md-center{align-items: center !important;}.align-items-md-baseline{align-items: baseline !important;}.align-items-md-stretch{align-items: stretch !important;}.align-content-md-start{align-content: flex-start !important;}.align-content-md-end{align-content: flex-end !important;}.align-content-md-center{align-content: center !important;}.align-content-md-between{align-content: space-between !important;}.align-content-md-around{align-content: space-around !important;}.align-content-md-stretch{align-content: stretch !important;}.align-self-md-auto{align-self: auto !important;}.align-self-md-start{align-self: flex-start !important;}.align-self-md-end{align-self: flex-end !important;}.align-self-md-center{align-self: center !important;}.align-self-md-baseline{align-self: baseline !important;}.align-self-md-stretch{align-self: stretch !important;}} @media (min-width: 992px){.flex-lg-row{flex-direction: row !important;}.flex-lg-column{flex-direction: column !important;}.flex-lg-row-reverse{flex-direction: row-reverse !important;}.flex-lg-column-reverse{flex-direction: column-reverse !important;}.flex-lg-wrap{flex-wrap: wrap !important;}.flex-lg-nowrap{flex-wrap: nowrap !important;}.flex-lg-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-lg-fill{flex: 1 1 auto !important;}.flex-lg-grow-0{flex-grow: 0 !important;}.flex-lg-grow-1{flex-grow: 1 !important;}.flex-lg-shrink-0{flex-shrink: 0 !important;}.flex-lg-shrink-1{flex-shrink: 1 !important;}.justify-content-lg-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-lg-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-lg-center{justify-content: center !important;}.justify-content-lg-between{justify-content: space-between !important;}.justify-content-lg-around{justify-content: space-around !important;}.align-items-lg-start{align-items: flex-start !important;}.align-items-lg-end{align-items: flex-end !important;}.align-items-lg-center{align-items: center !important;}.align-items-lg-baseline{align-items: baseline !important;}.align-items-lg-stretch{align-items: stretch !important;}.align-content-lg-start{align-content: flex-start !important;}.align-content-lg-end{align-content: flex-end !important;}.align-content-lg-center{align-content: center !important;}.align-content-lg-between{align-content: space-between !important;}.align-content-lg-around{align-content: space-around !important;}.align-content-lg-stretch{align-content: stretch !important;}.align-self-lg-auto{align-self: auto !important;}.align-self-lg-start{align-self: flex-start !important;}.align-self-lg-end{align-self: flex-end !important;}.align-self-lg-center{align-self: center !important;}.align-self-lg-baseline{align-self: baseline !important;}.align-self-lg-stretch{align-self: stretch !important;}} @media (min-width: 1200px){.flex-xl-row{flex-direction: row !important;}.flex-xl-column{flex-direction: column !important;}.flex-xl-row-reverse{flex-direction: row-reverse !important;}.flex-xl-column-reverse{flex-direction: column-reverse !important;}.flex-xl-wrap{flex-wrap: wrap !important;}.flex-xl-nowrap{flex-wrap: nowrap !important;}.flex-xl-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-xl-fill{flex: 1 1 auto !important;}.flex-xl-grow-0{flex-grow: 0 !important;}.flex-xl-grow-1{flex-grow: 1 !important;}.flex-xl-shrink-0{flex-shrink: 0 !important;}.flex-xl-shrink-1{flex-shrink: 1 !important;}.justify-content-xl-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-xl-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-xl-center{justify-content: center !important;}.justify-content-xl-between{justify-content: space-between !important;}.justify-content-xl-around{justify-content: space-around !important;}.align-items-xl-start{align-items: flex-start !important;}.align-items-xl-end{align-items: flex-end !important;}.align-items-xl-center{align-items: center !important;}.align-items-xl-baseline{align-items: baseline !important;}.align-items-xl-stretch{align-items: stretch !important;}.align-content-xl-start{align-content: flex-start !important;}.align-content-xl-end{align-content: flex-end !important;}.align-content-xl-center{align-content: center !important;}.align-content-xl-between{align-content: space-between !important;}.align-content-xl-around{align-content: space-around !important;}.align-content-xl-stretch{align-content: stretch !important;}.align-self-xl-auto{align-self: auto !important;}.align-self-xl-start{align-self: flex-start !important;}.align-self-xl-end{align-self: flex-end !important;}.align-self-xl-center{align-self: center !important;}.align-self-xl-baseline{align-self: baseline !important;}.align-self-xl-stretch{align-self: stretch !important;}} .float-left{float: left !important;} .float-right{float: right !important;} .float-none{float: none !important;} @media (min-width: 576px){.float-sm-left{float: left !important;}.float-sm-right{float: right !important;}.float-sm-none{float: none !important;}} @media (min-width: 768px){.float-md-left{float: left !important;}.float-md-right{float: right !important;}.float-md-none{float: none !important;}} @media (min-width: 992px){.float-lg-left{float: left !important;}.float-lg-right{float: right !important;}.float-lg-none{float: none !important;}} @media (min-width: 1200px){.float-xl-left{float: left !important;}.float-xl-right{float: right !important;}.float-xl-none{float: none !important;}} .position-static{position: static !important;} .position-relative{position: relative !important;} .position-absolute{position: absolute !important;} .position-fixed{position: fixed !important;} .position-sticky{position: sticky !important;} .fixed-top{position: fixed; top: 0; right: 0; left: 0; z-index: 1030;} .fixed-bottom{position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030;} @supports (position: sticky){.sticky-top{position: sticky; top: 0; z-index: 1020;}} .sr-only{position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;} .sr-only-focusable:active, .sr-only-focusable:focus{position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal;} .shadow-sm{box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;} .shadow{box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;} .shadow-lg{box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;} .shadow-none{box-shadow: none !important;} .w-25{width: 25% !important;} .w-50{width: 50% !important;} .w-75{width: 75% !important;} .w-100{width: 100% !important;} .w-auto{width: auto !important;} .h-25{height: 25% !important;} .h-50{height: 50% !important;} .h-75{height: 75% !important;} .h-100{height: 100% !important;} .h-auto{height: auto !important;} .mw-100{max-width: 100% !important;} .mh-100{max-height: 100% !important;} .m-0{margin: 0 !important;} .mt-0, .my-0{margin-top: 0 !important;} .mr-0, .mx-0{margin-right: 0 !important;} .mb-0, .my-0{margin-bottom: 0 !important;} .ml-0, .mx-0{margin-left: 0 !important;} .m-1{margin: 0.25rem !important;} .mt-1, .my-1{margin-top: 0.25rem !important;} .mr-1, .mx-1{margin-right: 0.25rem !important;} .mb-1, .my-1{margin-bottom: 0.25rem !important;} .ml-1, .mx-1{margin-left: 0.25rem !important;} .m-2{margin: 0.5rem !important;} .mt-2, .my-2{margin-top: 0.5rem !important;} .mr-2, .mx-2{margin-right: 0.5rem !important;} .mb-2, .my-2{margin-bottom: 0.5rem !important;} .ml-2, .mx-2{margin-left: 0.5rem !important;} .m-3{margin: 1rem !important;} .mt-3, .my-3{margin-top: 1rem !important;} .mr-3, .mx-3{margin-right: 1rem !important;} .mb-3, .my-3{margin-bottom: 1rem !important;} .ml-3, .mx-3{margin-left: 1rem !important;} .m-4{margin: 1.5rem !important;} .mt-4, .my-4{margin-top: 1.5rem !important;} .mr-4, .mx-4{margin-right: 1.5rem !important;} .mb-4, .my-4{margin-bottom: 1.5rem !important;} .ml-4, .mx-4{margin-left: 1.5rem !important;} .m-5{margin: 3rem !important;} .mt-5, .my-5{margin-top: 3rem !important;} .mr-5, .mx-5{margin-right: 3rem !important;} .mb-5, .my-5{margin-bottom: 3rem !important;} .ml-5, .mx-5{margin-left: 3rem !important;} .p-0{padding: 0 !important;} .pt-0, .py-0{padding-top: 0 !important;} .pr-0, .px-0{padding-right: 0 !important;} .pb-0, .py-0{padding-bottom: 0 !important;} .pl-0, .px-0{padding-left: 0 !important;} .p-1{padding: 0.25rem !important;} .pt-1, .py-1{padding-top: 0.25rem !important;} .pr-1, .px-1{padding-right: 0.25rem !important;} .pb-1, .py-1{padding-bottom: 0.25rem !important;} .pl-1, .px-1{padding-left: 0.25rem !important;} .p-2{padding: 0.5rem !important;} .pt-2, .py-2{padding-top: 0.5rem !important;} .pr-2, .px-2{padding-right: 0.5rem !important;} .pb-2, .py-2{padding-bottom: 0.5rem !important;} .pl-2, .px-2{padding-left: 0.5rem !important;} .p-3{padding: 1rem !important;} .pt-3, .py-3{padding-top: 1rem !important;} .pr-3, .px-3{padding-right: 1rem !important;} .pb-3, .py-3{padding-bottom: 1rem !important;} .pl-3, .px-3{padding-left: 1rem !important;} .p-4{padding: 1.5rem !important;} .pt-4, .py-4{padding-top: 1.5rem !important;} .pr-4, .px-4{padding-right: 1.5rem !important;} .pb-4, .py-4{padding-bottom: 1.5rem !important;} .pl-4, .px-4{padding-left: 1.5rem !important;} .p-5{padding: 3rem !important;} .pt-5, .py-5{padding-top: 3rem !important;} .pr-5, .px-5{padding-right: 3rem !important;} .pb-5, .py-5{padding-bottom: 3rem !important;} .pl-5, .px-5{padding-left: 3rem !important;} .m-auto{margin: auto !important;} .mt-auto, .my-auto{margin-top: auto !important;} .mr-auto, .mx-auto{margin-right: auto !important;} .mb-auto, .my-auto{margin-bottom: auto !important;} .ml-auto, .mx-auto{margin-left: auto !important;} @media (min-width: 576px){.m-sm-0{margin: 0 !important;}.mt-sm-0, .my-sm-0{margin-top: 0 !important;}.mr-sm-0, .mx-sm-0{margin-right: 0 !important;}.mb-sm-0, .my-sm-0{margin-bottom: 0 !important;}.ml-sm-0, .mx-sm-0{margin-left: 0 !important;}.m-sm-1{margin: 0.25rem !important;}.mt-sm-1, .my-sm-1{margin-top: 0.25rem !important;}.mr-sm-1, .mx-sm-1{margin-right: 0.25rem !important;}.mb-sm-1, .my-sm-1{margin-bottom: 0.25rem !important;}.ml-sm-1, .mx-sm-1{margin-left: 0.25rem !important;}.m-sm-2{margin: 0.5rem !important;}.mt-sm-2, .my-sm-2{margin-top: 0.5rem !important;}.mr-sm-2, .mx-sm-2{margin-right: 0.5rem !important;}.mb-sm-2, .my-sm-2{margin-bottom: 0.5rem !important;}.ml-sm-2, .mx-sm-2{margin-left: 0.5rem !important;}.m-sm-3{margin: 1rem !important;}.mt-sm-3, .my-sm-3{margin-top: 1rem !important;}.mr-sm-3, .mx-sm-3{margin-right: 1rem !important;}.mb-sm-3, .my-sm-3{margin-bottom: 1rem !important;}.ml-sm-3, .mx-sm-3{margin-left: 1rem !important;}.m-sm-4{margin: 1.5rem !important;}.mt-sm-4, .my-sm-4{margin-top: 1.5rem !important;}.mr-sm-4, .mx-sm-4{margin-right: 1.5rem !important;}.mb-sm-4, .my-sm-4{margin-bottom: 1.5rem !important;}.ml-sm-4, .mx-sm-4{margin-left: 1.5rem !important;}.m-sm-5{margin: 3rem !important;}.mt-sm-5, .my-sm-5{margin-top: 3rem !important;}.mr-sm-5, .mx-sm-5{margin-right: 3rem !important;}.mb-sm-5, .my-sm-5{margin-bottom: 3rem !important;}.ml-sm-5, .mx-sm-5{margin-left: 3rem !important;}.p-sm-0{padding: 0 !important;}.pt-sm-0, .py-sm-0{padding-top: 0 !important;}.pr-sm-0, .px-sm-0{padding-right: 0 !important;}.pb-sm-0, .py-sm-0{padding-bottom: 0 !important;}.pl-sm-0, .px-sm-0{padding-left: 0 !important;}.p-sm-1{padding: 0.25rem !important;}.pt-sm-1, .py-sm-1{padding-top: 0.25rem !important;}.pr-sm-1, .px-sm-1{padding-right: 0.25rem !important;}.pb-sm-1, .py-sm-1{padding-bottom: 0.25rem !important;}.pl-sm-1, .px-sm-1{padding-left: 0.25rem !important;}.p-sm-2{padding: 0.5rem !important;}.pt-sm-2, .py-sm-2{padding-top: 0.5rem !important;}.pr-sm-2, .px-sm-2{padding-right: 0.5rem !important;}.pb-sm-2, .py-sm-2{padding-bottom: 0.5rem !important;}.pl-sm-2, .px-sm-2{padding-left: 0.5rem !important;}.p-sm-3{padding: 1rem !important;}.pt-sm-3, .py-sm-3{padding-top: 1rem !important;}.pr-sm-3, .px-sm-3{padding-right: 1rem !important;}.pb-sm-3, .py-sm-3{padding-bottom: 1rem !important;}.pl-sm-3, .px-sm-3{padding-left: 1rem !important;}.p-sm-4{padding: 1.5rem !important;}.pt-sm-4, .py-sm-4{padding-top: 1.5rem !important;}.pr-sm-4, .px-sm-4{padding-right: 1.5rem !important;}.pb-sm-4, .py-sm-4{padding-bottom: 1.5rem !important;}.pl-sm-4, .px-sm-4{padding-left: 1.5rem !important;}.p-sm-5{padding: 3rem !important;}.pt-sm-5, .py-sm-5{padding-top: 3rem !important;}.pr-sm-5, .px-sm-5{padding-right: 3rem !important;}.pb-sm-5, .py-sm-5{padding-bottom: 3rem !important;}.pl-sm-5, .px-sm-5{padding-left: 3rem !important;}.m-sm-auto{margin: auto !important;}.mt-sm-auto, .my-sm-auto{margin-top: auto !important;}.mr-sm-auto, .mx-sm-auto{margin-right: auto !important;}.mb-sm-auto, .my-sm-auto{margin-bottom: auto !important;}.ml-sm-auto, .mx-sm-auto{margin-left: auto !important;}} @media (min-width: 768px){.m-md-0{margin: 0 !important;}.mt-md-0, .my-md-0{margin-top: 0 !important;}.mr-md-0, .mx-md-0{margin-right: 0 !important;}.mb-md-0, .my-md-0{margin-bottom: 0 !important;}.ml-md-0, .mx-md-0{margin-left: 0 !important;}.m-md-1{margin: 0.25rem !important;}.mt-md-1, .my-md-1{margin-top: 0.25rem !important;}.mr-md-1, .mx-md-1{margin-right: 0.25rem !important;}.mb-md-1, .my-md-1{margin-bottom: 0.25rem !important;}.ml-md-1, .mx-md-1{margin-left: 0.25rem !important;}.m-md-2{margin: 0.5rem !important;}.mt-md-2, .my-md-2{margin-top: 0.5rem !important;}.mr-md-2, .mx-md-2{margin-right: 0.5rem !important;}.mb-md-2, .my-md-2{margin-bottom: 0.5rem !important;}.ml-md-2, .mx-md-2{margin-left: 0.5rem !important;}.m-md-3{margin: 1rem !important;}.mt-md-3, .my-md-3{margin-top: 1rem !important;}.mr-md-3, .mx-md-3{margin-right: 1rem !important;}.mb-md-3, .my-md-3{margin-bottom: 1rem !important;}.ml-md-3, .mx-md-3{margin-left: 1rem !important;}.m-md-4{margin: 1.5rem !important;}.mt-md-4, .my-md-4{margin-top: 1.5rem !important;}.mr-md-4, .mx-md-4{margin-right: 1.5rem !important;}.mb-md-4, .my-md-4{margin-bottom: 1.5rem !important;}.ml-md-4, .mx-md-4{margin-left: 1.5rem !important;}.m-md-5{margin: 3rem !important;}.mt-md-5, .my-md-5{margin-top: 3rem !important;}.mr-md-5, .mx-md-5{margin-right: 3rem !important;}.mb-md-5, .my-md-5{margin-bottom: 3rem !important;}.ml-md-5, .mx-md-5{margin-left: 3rem !important;}.p-md-0{padding: 0 !important;}.pt-md-0, .py-md-0{padding-top: 0 !important;}.pr-md-0, .px-md-0{padding-right: 0 !important;}.pb-md-0, .py-md-0{padding-bottom: 0 !important;}.pl-md-0, .px-md-0{padding-left: 0 !important;}.p-md-1{padding: 0.25rem !important;}.pt-md-1, .py-md-1{padding-top: 0.25rem !important;}.pr-md-1, .px-md-1{padding-right: 0.25rem !important;}.pb-md-1, .py-md-1{padding-bottom: 0.25rem !important;}.pl-md-1, .px-md-1{padding-left: 0.25rem !important;}.p-md-2{padding: 0.5rem !important;}.pt-md-2, .py-md-2{padding-top: 0.5rem !important;}.pr-md-2, .px-md-2{padding-right: 0.5rem !important;}.pb-md-2, .py-md-2{padding-bottom: 0.5rem !important;}.pl-md-2, .px-md-2{padding-left: 0.5rem !important;}.p-md-3{padding: 1rem !important;}.pt-md-3, .py-md-3{padding-top: 1rem !important;}.pr-md-3, .px-md-3{padding-right: 1rem !important;}.pb-md-3, .py-md-3{padding-bottom: 1rem !important;}.pl-md-3, .px-md-3{padding-left: 1rem !important;}.p-md-4{padding: 1.5rem !important;}.pt-md-4, .py-md-4{padding-top: 1.5rem !important;}.pr-md-4, .px-md-4{padding-right: 1.5rem !important;}.pb-md-4, .py-md-4{padding-bottom: 1.5rem !important;}.pl-md-4, .px-md-4{padding-left: 1.5rem !important;}.p-md-5{padding: 3rem !important;}.pt-md-5, .py-md-5{padding-top: 3rem !important;}.pr-md-5, .px-md-5{padding-right: 3rem !important;}.pb-md-5, .py-md-5{padding-bottom: 3rem !important;}.pl-md-5, .px-md-5{padding-left: 3rem !important;}.m-md-auto{margin: auto !important;}.mt-md-auto, .my-md-auto{margin-top: auto !important;}.mr-md-auto, .mx-md-auto{margin-right: auto !important;}.mb-md-auto, .my-md-auto{margin-bottom: auto !important;}.ml-md-auto, .mx-md-auto{margin-left: auto !important;}} @media (min-width: 992px){.m-lg-0{margin: 0 !important;}.mt-lg-0, .my-lg-0{margin-top: 0 !important;}.mr-lg-0, .mx-lg-0{margin-right: 0 !important;}.mb-lg-0, .my-lg-0{margin-bottom: 0 !important;}.ml-lg-0, .mx-lg-0{margin-left: 0 !important;}.m-lg-1{margin: 0.25rem !important;}.mt-lg-1, .my-lg-1{margin-top: 0.25rem !important;}.mr-lg-1, .mx-lg-1{margin-right: 0.25rem !important;}.mb-lg-1, .my-lg-1{margin-bottom: 0.25rem !important;}.ml-lg-1, .mx-lg-1{margin-left: 0.25rem !important;}.m-lg-2{margin: 0.5rem !important;}.mt-lg-2, .my-lg-2{margin-top: 0.5rem !important;}.mr-lg-2, .mx-lg-2{margin-right: 0.5rem !important;}.mb-lg-2, .my-lg-2{margin-bottom: 0.5rem !important;}.ml-lg-2, .mx-lg-2{margin-left: 0.5rem !important;}.m-lg-3{margin: 1rem !important;}.mt-lg-3, .my-lg-3{margin-top: 1rem !important;}.mr-lg-3, .mx-lg-3{margin-right: 1rem !important;}.mb-lg-3, .my-lg-3{margin-bottom: 1rem !important;}.ml-lg-3, .mx-lg-3{margin-left: 1rem !important;}.m-lg-4{margin: 1.5rem !important;}.mt-lg-4, .my-lg-4{margin-top: 1.5rem !important;}.mr-lg-4, .mx-lg-4{margin-right: 1.5rem !important;}.mb-lg-4, .my-lg-4{margin-bottom: 1.5rem !important;}.ml-lg-4, .mx-lg-4{margin-left: 1.5rem !important;}.m-lg-5{margin: 3rem !important;}.mt-lg-5, .my-lg-5{margin-top: 3rem !important;}.mr-lg-5, .mx-lg-5{margin-right: 3rem !important;}.mb-lg-5, .my-lg-5{margin-bottom: 3rem !important;}.ml-lg-5, .mx-lg-5{margin-left: 3rem !important;}.p-lg-0{padding: 0 !important;}.pt-lg-0, .py-lg-0{padding-top: 0 !important;}.pr-lg-0, .px-lg-0{padding-right: 0 !important;}.pb-lg-0, .py-lg-0{padding-bottom: 0 !important;}.pl-lg-0, .px-lg-0{padding-left: 0 !important;}.p-lg-1{padding: 0.25rem !important;}.pt-lg-1, .py-lg-1{padding-top: 0.25rem !important;}.pr-lg-1, .px-lg-1{padding-right: 0.25rem !important;}.pb-lg-1, .py-lg-1{padding-bottom: 0.25rem !important;}.pl-lg-1, .px-lg-1{padding-left: 0.25rem !important;}.p-lg-2{padding: 0.5rem !important;}.pt-lg-2, .py-lg-2{padding-top: 0.5rem !important;}.pr-lg-2, .px-lg-2{padding-right: 0.5rem !important;}.pb-lg-2, .py-lg-2{padding-bottom: 0.5rem !important;}.pl-lg-2, .px-lg-2{padding-left: 0.5rem !important;}.p-lg-3{padding: 1rem !important;}.pt-lg-3, .py-lg-3{padding-top: 1rem !important;}.pr-lg-3, .px-lg-3{padding-right: 1rem !important;}.pb-lg-3, .py-lg-3{padding-bottom: 1rem !important;}.pl-lg-3, .px-lg-3{padding-left: 1rem !important;}.p-lg-4{padding: 1.5rem !important;}.pt-lg-4, .py-lg-4{padding-top: 1.5rem !important;}.pr-lg-4, .px-lg-4{padding-right: 1.5rem !important;}.pb-lg-4, .py-lg-4{padding-bottom: 1.5rem !important;}.pl-lg-4, .px-lg-4{padding-left: 1.5rem !important;}.p-lg-5{padding: 3rem !important;}.pt-lg-5, .py-lg-5{padding-top: 3rem !important;}.pr-lg-5, .px-lg-5{padding-right: 3rem !important;}.pb-lg-5, .py-lg-5{padding-bottom: 3rem !important;}.pl-lg-5, .px-lg-5{padding-left: 3rem !important;}.m-lg-auto{margin: auto !important;}.mt-lg-auto, .my-lg-auto{margin-top: auto !important;}.mr-lg-auto, .mx-lg-auto{margin-right: auto !important;}.mb-lg-auto, .my-lg-auto{margin-bottom: auto !important;}.ml-lg-auto, .mx-lg-auto{margin-left: auto !important;}} @media (min-width: 1200px){.m-xl-0{margin: 0 !important;}.mt-xl-0, .my-xl-0{margin-top: 0 !important;}.mr-xl-0, .mx-xl-0{margin-right: 0 !important;}.mb-xl-0, .my-xl-0{margin-bottom: 0 !important;}.ml-xl-0, .mx-xl-0{margin-left: 0 !important;}.m-xl-1{margin: 0.25rem !important;}.mt-xl-1, .my-xl-1{margin-top: 0.25rem !important;}.mr-xl-1, .mx-xl-1{margin-right: 0.25rem !important;}.mb-xl-1, .my-xl-1{margin-bottom: 0.25rem !important;}.ml-xl-1, .mx-xl-1{margin-left: 0.25rem !important;}.m-xl-2{margin: 0.5rem !important;}.mt-xl-2, .my-xl-2{margin-top: 0.5rem !important;}.mr-xl-2, .mx-xl-2{margin-right: 0.5rem !important;}.mb-xl-2, .my-xl-2{margin-bottom: 0.5rem !important;}.ml-xl-2, .mx-xl-2{margin-left: 0.5rem !important;}.m-xl-3{margin: 1rem !important;}.mt-xl-3, .my-xl-3{margin-top: 1rem !important;}.mr-xl-3, .mx-xl-3{margin-right: 1rem !important;}.mb-xl-3, .my-xl-3{margin-bottom: 1rem !important;}.ml-xl-3, .mx-xl-3{margin-left: 1rem !important;}.m-xl-4{margin: 1.5rem !important;}.mt-xl-4, .my-xl-4{margin-top: 1.5rem !important;}.mr-xl-4, .mx-xl-4{margin-right: 1.5rem !important;}.mb-xl-4, .my-xl-4{margin-bottom: 1.5rem !important;}.ml-xl-4, .mx-xl-4{margin-left: 1.5rem !important;}.m-xl-5{margin: 3rem !important;}.mt-xl-5, .my-xl-5{margin-top: 3rem !important;}.mr-xl-5, .mx-xl-5{margin-right: 3rem !important;}.mb-xl-5, .my-xl-5{margin-bottom: 3rem !important;}.ml-xl-5, .mx-xl-5{margin-left: 3rem !important;}.p-xl-0{padding: 0 !important;}.pt-xl-0, .py-xl-0{padding-top: 0 !important;}.pr-xl-0, .px-xl-0{padding-right: 0 !important;}.pb-xl-0, .py-xl-0{padding-bottom: 0 !important;}.pl-xl-0, .px-xl-0{padding-left: 0 !important;}.p-xl-1{padding: 0.25rem !important;}.pt-xl-1, .py-xl-1{padding-top: 0.25rem !important;}.pr-xl-1, .px-xl-1{padding-right: 0.25rem !important;}.pb-xl-1, .py-xl-1{padding-bottom: 0.25rem !important;}.pl-xl-1, .px-xl-1{padding-left: 0.25rem !important;}.p-xl-2{padding: 0.5rem !important;}.pt-xl-2, .py-xl-2{padding-top: 0.5rem !important;}.pr-xl-2, .px-xl-2{padding-right: 0.5rem !important;}.pb-xl-2, .py-xl-2{padding-bottom: 0.5rem !important;}.pl-xl-2, .px-xl-2{padding-left: 0.5rem !important;}.p-xl-3{padding: 1rem !important;}.pt-xl-3, .py-xl-3{padding-top: 1rem !important;}.pr-xl-3, .px-xl-3{padding-right: 1rem !important;}.pb-xl-3, .py-xl-3{padding-bottom: 1rem !important;}.pl-xl-3, .px-xl-3{padding-left: 1rem !important;}.p-xl-4{padding: 1.5rem !important;}.pt-xl-4, .py-xl-4{padding-top: 1.5rem !important;}.pr-xl-4, .px-xl-4{padding-right: 1.5rem !important;}.pb-xl-4, .py-xl-4{padding-bottom: 1.5rem !important;}.pl-xl-4, .px-xl-4{padding-left: 1.5rem !important;}.p-xl-5{padding: 3rem !important;}.pt-xl-5, .py-xl-5{padding-top: 3rem !important;}.pr-xl-5, .px-xl-5{padding-right: 3rem !important;}.pb-xl-5, .py-xl-5{padding-bottom: 3rem !important;}.pl-xl-5, .px-xl-5{padding-left: 3rem !important;}.m-xl-auto{margin: auto !important;}.mt-xl-auto, .my-xl-auto{margin-top: auto !important;}.mr-xl-auto, .mx-xl-auto{margin-right: auto !important;}.mb-xl-auto, .my-xl-auto{margin-bottom: auto !important;}.ml-xl-auto, .mx-xl-auto{margin-left: auto !important;}} .text-monospace{font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;} .text-justify{text-align: justify !important;} .text-nowrap{white-space: nowrap !important;} .text-truncate{overflow: hidden; text-overflow: ellipsis; white-space: nowrap;} .text-left{text-align: left !important;} .text-right{text-align: right !important;} .text-center{text-align: center !important;} @media (min-width: 576px){.text-sm-left{text-align: left !important;}.text-sm-right{text-align: right !important;}.text-sm-center{text-align: center !important;}} @media (min-width: 768px){.text-md-left{text-align: left !important;}.text-md-right{text-align: right !important;}.text-md-center{text-align: center !important;}} @media (min-width: 992px){.text-lg-left{text-align: left !important;}.text-lg-right{text-align: right !important;}.text-lg-center{text-align: center !important;}} @media (min-width: 1200px){.text-xl-left{text-align: left !important;}.text-xl-right{text-align: right !important;}.text-xl-center{text-align: center !important;}} .text-lowercase{text-transform: lowercase !important;} .text-uppercase{text-transform: uppercase !important;} .text-capitalize{text-transform: capitalize !important;} .font-weight-light{font-weight: 300 !important;} .font-weight-normal{font-weight: 400 !important;} .font-weight-bold{font-weight: 700 !important;} .font-italic{font-style: italic !important;} .text-white{color: #FFFFFF !important;} .text-primary{color: #00A09D !important;} a.text-primary:hover, a.text-primary:focus{color: #006d6b !important;} .text-secondary{color: #875A7B !important;} a.text-secondary:hover, a.text-secondary:focus{color: #68465f !important;} .text-success{color: #28a745 !important;} a.text-success:hover, a.text-success:focus{color: #1e7e34 !important;} .text-info{color: #17a2b8 !important;} a.text-info:hover, a.text-info:focus{color: #117a8b !important;} .text-warning{color: #ffc107 !important;} a.text-warning:hover, a.text-warning:focus{color: #d39e00 !important;} .text-danger{color: #dc3545 !important;} a.text-danger:hover, a.text-danger:focus{color: #bd2130 !important;} .text-light{color: #f6f9f9 !important;} a.text-light:hover, a.text-light:focus{color: #d7e4e4 !important;} .text-dark{color: #141f1e !important;} a.text-dark:hover, a.text-dark:focus{color: black !important;} .text-alpha{color: #00A09D !important;} a.text-alpha:hover, a.text-alpha:focus{color: #006d6b !important;} .text-beta{color: #875A7B !important;} a.text-beta:hover, a.text-beta:focus{color: #68465f !important;} .text-gamma{color: #5C5B80 !important;} a.text-gamma:hover, a.text-gamma:focus{color: #474662 !important;} .text-delta{color: #5B899E !important;} a.text-delta:hover, a.text-delta:focus{color: #486d7e !important;} .text-epsilon{color: #E46F78 !important;} a.text-epsilon:hover, a.text-epsilon:focus{color: #dc4450 !important;} .text-body{color: #212529 !important;} .text-muted{color: #6c757d !important;} .text-black-50{color: rgba(0, 0, 0, 0.5) !important;} .text-white-50{color: rgba(255, 255, 255, 0.5) !important;} .text-hide{font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0;} .visible{visibility: visible !important;} .invisible{visibility: hidden !important;} @media print{*, *::before, *::after{text-shadow: none !important; box-shadow: none !important;}a:not(.btn){text-decoration: underline;}abbr[title]::after{content: " (" attr(title) ")";}pre{white-space: pre-wrap !important;}pre, blockquote{border: 1px solid #adb5bd; page-break-inside: avoid;}thead{display: table-header-group;}tr, img{page-break-inside: avoid;}p, h2, h3{orphans: 3; widows: 3;}h2, h3{page-break-after: avoid;}@page{size: a3;}body{min-width: 992px !important;}.container{min-width: 992px !important;}.navbar{display: none;}.badge{border: 1px solid #000000;}.table{border-collapse: collapse !important;}.table td, .table th{background-color: #FFFFFF !important;}.table-bordered th, .table-bordered td{border: 1px solid #dee2e6 !important;}.table-dark{color: inherit;}.table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody{border-color: #dee2e6;}.table .thead-dark th{color: inherit; border-color: #dee2e6;}} \n/* /web/static/src/scss/bootstrap_review.scss defined in bundle 'web.assets_frontend' */\n .alert{clear: both;} \n/* /web/static/src/scss/navbar_mobile.scss defined in bundle 'web.assets_frontend' */\n @media (max-width: 767.98px){.o_main_navbar .o_app{float: none; margin: 0; border-bottom: 1px solid #5f5e97; color: transparent !important;}} @media (max-width: 767.98px){.o_main_navbar > .o_menu_brand{float: none; margin: 0; border-bottom: 1px solid #5f5e97; color: transparent !important;}} @media (max-width: 767.98px){.o_main_navbar{transition: height 200ms linear 0s; position: relative; height: 46px;}.o_main_navbar > ul > li{float: none;}.o_main_navbar > ul > li .dropdown-backdrop{display: none;}.o_main_navbar > ul > li .dropdown-menu.show{max-height: none;}.o_main_navbar > ul.o_menu_sections{width: 100%; display: none;}.o_main_navbar > ul.o_menu_sections .dropdown-menu.show{position: static; float: none; background-color: transparent; box-shadow: none; border: none; overflow: visible;}.o_main_navbar > ul.o_menu_sections .dropdown-menu.show > .dropdown-item{background-color: transparent; color: inherit;}.o_main_navbar > ul.o_menu_systray{position: absolute; top: 0px; left: 46px; bottom: auto; right: 46px; height: 46px; text-align: right;}.o_main_navbar > ul.o_menu_systray > li{display: inline-block;}.o_main_navbar > ul.o_menu_systray > li .dropdown-menu.show{position: absolute; top: 46px; left: 0; bottom: 0; right: 0; position: fixed; width: auto;}.o_main_navbar > ul.o_menu_systray .o_user_menu .oe_topbar_name{display: none;}} @media (max-width: 767.98px){body.o_mobile_menu_opened > .o_main_navbar{height: 100%; overflow: auto;}body.o_mobile_menu_opened > .o_main_navbar .o_menu_sections{display: block;}} @media (max-width: 767.98px){.o_switch_company_menu > .dropdown-menu{padding-top: 0px;}.o_switch_company_menu > .dropdown-menu .bg-info{padding: 10px;}} \n/* /web_editor/static/src/scss/web_editor.common.scss defined in bundle 'web.assets_frontend' */\n html, body{position: relative; width: 100%; height: 100%;} .css_non_editable_mode_hidden{display: none !important;} .editor_enable .css_editable_mode_hidden{display: none !important;} .note-toolbar{margin-left: 0 !important;} .note-popover .popover > .arrow{display: none;} #wrapwrap table.table.table-bordered, .o_editable table.table.table-bordered{table-layout: fixed;} #wrapwrap table.table.table-bordered td, .o_editable table.table.table-bordered td{min-width: 20px;} @media (max-width: 767.98px){#wrapwrap .table-responsive > table.table, .o_editable .table-responsive > table.table{table-layout: auto;}} img.shadow{box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);} img.padding-small, .img.padding-small, span.fa.padding-small, iframe.padding-small{padding: 4px;} img.padding-medium, .img.padding-medium, span.fa.padding-medium, iframe.padding-medium{padding: 8px;} img.padding-large, .img.padding-large, span.fa.padding-large, iframe.padding-large{padding: 16px;} img.padding-xl, .img.padding-xl, span.fa.padding-xl, iframe.padding-xl{padding: 32px;} .fa-6x{font-size: 6em;} .fa-7x{font-size: 7em;} .fa-8x{font-size: 8em;} .fa-9x{font-size: 9em;} .fa-10x{font-size: 10em;} .fa.d-block.mx-auto{text-align: center;} div.media_iframe_video{margin: 0 auto; text-align: center; position: relative; overflow: hidden;} div.media_iframe_video iframe{width: 100%; height: 100%; position: absolute; top: 0; left: auto; bottom: auto; right: auto; margin: 0 auto; margin-left: -50%;} div.media_iframe_video.padding-small iframe{padding: 4px;} div.media_iframe_video.padding-medium iframe{padding: 8px;} div.media_iframe_video.padding-large iframe{padding: 16px;} div.media_iframe_video.padding-xl iframe{padding: 32px;} div.media_iframe_video .media_iframe_video_size{padding-bottom: 66.5%; position: relative; width: 100%; height: 0;} div.media_iframe_video .css_editable_mode_display{position: absolute; top: auto; left: auto; bottom: auto; right: auto; width: 100%; height: 100%; display: none; z-index: 2;} html[data-browser^="msie"] div.media_iframe_video iframe{margin-left: 0;} @media (max-width: 767.98px){img, .media_iframe_video, span.fa, i.fa{transform: none !important;}} address .fa.fa-mobile-phone{margin: 0 3px 0 2px;} address .fa.fa-file-text-o{margin-right: 1px;} span[data-oe-type="monetary"]{white-space: nowrap;} ul.oe_menu_editor .oe_menu_placeholder{outline: 1px dashed #4183C4;} ul.oe_menu_editor ul{list-style: none;} ul.oe_menu_editor li div{cursor: move;} .mt0{margin-top: 0px !important;} .mb0{margin-bottom: 0px !important;} .pt0{padding-top: 0px !important;} .pb0{padding-bottom: 0px !important;} .mt8{margin-top: 8px !important;} .mb8{margin-bottom: 8px !important;} .pt8{padding-top: 8px !important;} .pb8{padding-bottom: 8px !important;} .mt16{margin-top: 16px !important;} .mb16{margin-bottom: 16px !important;} .pt16{padding-top: 16px !important;} .pb16{padding-bottom: 16px !important;} .mt24{margin-top: 24px !important;} .mb24{margin-bottom: 24px !important;} .pt24{padding-top: 24px !important;} .pb24{padding-bottom: 24px !important;} .mt32{margin-top: 32px !important;} .mb32{margin-bottom: 32px !important;} .pt32{padding-top: 32px !important;} .pb32{padding-bottom: 32px !important;} .mt40{margin-top: 40px !important;} .mb40{margin-bottom: 40px !important;} .pt40{padding-top: 40px !important;} .pb40{padding-bottom: 40px !important;} .mt48{margin-top: 48px !important;} .mb48{margin-bottom: 48px !important;} .pt48{padding-top: 48px !important;} .pb48{padding-bottom: 48px !important;} .mt56{margin-top: 56px !important;} .mb56{margin-bottom: 56px !important;} .pt56{padding-top: 56px !important;} .pb56{padding-bottom: 56px !important;} .mt64{margin-top: 64px !important;} .mb64{margin-bottom: 64px !important;} .pt64{padding-top: 64px !important;} .pb64{padding-bottom: 64px !important;} .mt72{margin-top: 72px !important;} .mb72{margin-bottom: 72px !important;} .pt72{padding-top: 72px !important;} .pb72{padding-bottom: 72px !important;} .mt80{margin-top: 80px !important;} .mb80{margin-bottom: 80px !important;} .pt80{padding-top: 80px !important;} .pb80{padding-bottom: 80px !important;} .mt88{margin-top: 88px !important;} .mb88{margin-bottom: 88px !important;} .pt88{padding-top: 88px !important;} .pb88{padding-bottom: 88px !important;} .mt96{margin-top: 96px !important;} .mb96{margin-bottom: 96px !important;} .pt96{padding-top: 96px !important;} .pb96{padding-bottom: 96px !important;} .mt104{margin-top: 104px !important;} .mb104{margin-bottom: 104px !important;} .pt104{padding-top: 104px !important;} .pb104{padding-bottom: 104px !important;} .mt112{margin-top: 112px !important;} .mb112{margin-bottom: 112px !important;} .pt112{padding-top: 112px !important;} .pb112{padding-bottom: 112px !important;} .mt120{margin-top: 120px !important;} .mb120{margin-bottom: 120px !important;} .pt120{padding-top: 120px !important;} .pb120{padding-bottom: 120px !important;} .mt128{margin-top: 128px !important;} .mb128{margin-bottom: 128px !important;} .pt128{padding-top: 128px !important;} .pb128{padding-bottom: 128px !important;} .mt136{margin-top: 136px !important;} .mb136{margin-bottom: 136px !important;} .pt136{padding-top: 136px !important;} .pb136{padding-bottom: 136px !important;} .mt144{margin-top: 144px !important;} .mb144{margin-bottom: 144px !important;} .pt144{padding-top: 144px !important;} .pb144{padding-bottom: 144px !important;} .mt152{margin-top: 152px !important;} .mb152{margin-bottom: 152px !important;} .pt152{padding-top: 152px !important;} .pb152{padding-bottom: 152px !important;} .mt160{margin-top: 160px !important;} .mb160{margin-bottom: 160px !important;} .pt160{padding-top: 160px !important;} .pb160{padding-bottom: 160px !important;} .mt168{margin-top: 168px !important;} .mb168{margin-bottom: 168px !important;} .pt168{padding-top: 168px !important;} .pb168{padding-bottom: 168px !important;} .mt176{margin-top: 176px !important;} .mb176{margin-bottom: 176px !important;} .pt176{padding-top: 176px !important;} .pb176{padding-bottom: 176px !important;} .mt184{margin-top: 184px !important;} .mb184{margin-bottom: 184px !important;} .pt184{padding-top: 184px !important;} .pb184{padding-bottom: 184px !important;} .mt192{margin-top: 192px !important;} .mb192{margin-bottom: 192px !important;} .pt192{padding-top: 192px !important;} .pb192{padding-bottom: 192px !important;} .mt200{margin-top: 200px !important;} .mb200{margin-bottom: 200px !important;} .pt200{padding-top: 200px !important;} .pb200{padding-bottom: 200px !important;} .mt208{margin-top: 208px !important;} .mb208{margin-bottom: 208px !important;} .pt208{padding-top: 208px !important;} .pb208{padding-bottom: 208px !important;} .mt216{margin-top: 216px !important;} .mb216{margin-bottom: 216px !important;} .pt216{padding-top: 216px !important;} .pb216{padding-bottom: 216px !important;} .mt224{margin-top: 224px !important;} .mb224{margin-bottom: 224px !important;} .pt224{padding-top: 224px !important;} .pb224{padding-bottom: 224px !important;} .mt232{margin-top: 232px !important;} .mb232{margin-bottom: 232px !important;} .pt232{padding-top: 232px !important;} .pb232{padding-bottom: 232px !important;} .mt240{margin-top: 240px !important;} .mb240{margin-bottom: 240px !important;} .pt240{padding-top: 240px !important;} .pb240{padding-bottom: 240px !important;} .mt248{margin-top: 248px !important;} .mb248{margin-bottom: 248px !important;} .pt248{padding-top: 248px !important;} .pb248{padding-bottom: 248px !important;} .mt256{margin-top: 256px !important;} .mb256{margin-bottom: 256px !important;} .pt256{padding-top: 256px !important;} .pb256{padding-bottom: 256px !important;} .mt4{margin-top: 4px !important;} .mb4{margin-bottom: 4px !important;} .pt4{padding-top: 4px !important;} .pb4{padding-bottom: 4px !important;} .mt92{margin-top: 92px !important;} .mb92{margin-bottom: 92px !important;} .ml0{margin-left: 0px !important;} .mr0{margin-right: 0px !important;} .ml4{margin-left: 4px !important;} .mr4{margin-right: 4px !important;} .ml8{margin-left: 8px !important;} .mr8{margin-right: 8px !important;} .ml16{margin-left: 16px !important;} .mr16{margin-right: 16px !important;} .ml32{margin-left: 32px !important;} .mr32{margin-right: 32px !important;} .ml64{margin-left: 64px !important;} .mr64{margin-right: 64px !important;} a.o_underline{text-decoration: underline;} a.o_underline:hover{text-decoration: underline;} .bg-100{background-color: #f8f9fa !important; color: #212529;} .bg-100 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-100:hover, a.bg-100:focus, button.bg-100:hover, button.bg-100:focus{background-color: #dae0e5 !important; color: #212529;} .text-100{color: #f8f9fa !important;} a.text-100:hover, a.text-100:focus{color: #dae0e5 !important;} .bg-200{background-color: #e9ecef !important; color: #212529;} .bg-200 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-200:hover, a.bg-200:focus, button.bg-200:hover, button.bg-200:focus{background-color: #cbd3da !important; color: #212529;} .text-200{color: #e9ecef !important;} a.text-200:hover, a.text-200:focus{color: #cbd3da !important;} .bg-300{background-color: #dee2e6 !important; color: #212529;} .bg-300 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-300:hover, a.bg-300:focus, button.bg-300:hover, button.bg-300:focus{background-color: #c1c9d0 !important; color: #212529;} .text-300{color: #dee2e6 !important;} a.text-300:hover, a.text-300:focus{color: #c1c9d0 !important;} .bg-400{background-color: #ced4da !important; color: #212529;} .bg-400 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-400:hover, a.bg-400:focus, button.bg-400:hover, button.bg-400:focus{background-color: #b1bbc4 !important; color: #212529;} .text-400{color: #ced4da !important;} a.text-400:hover, a.text-400:focus{color: #b1bbc4 !important;} .bg-500{background-color: #adb5bd !important; color: #212529;} .bg-500 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-500:hover, a.bg-500:focus, button.bg-500:hover, button.bg-500:focus{background-color: #919ca6 !important; color: #212529;} .text-500{color: #adb5bd !important;} a.text-500:hover, a.text-500:focus{color: #919ca6 !important;} .bg-600{background-color: #6c757d !important; color: #FFFFFF;} .bg-600 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-600:hover, a.bg-600:focus, button.bg-600:hover, button.bg-600:focus{background-color: #545b62 !important; color: #FFFFFF;} .text-600{color: #6c757d !important;} a.text-600:hover, a.text-600:focus{color: #545b62 !important;} .bg-700{background-color: #495057 !important; color: #FFFFFF;} .bg-700 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-700:hover, a.bg-700:focus, button.bg-700:hover, button.bg-700:focus{background-color: #32373b !important; color: #FFFFFF;} .text-700{color: #495057 !important;} a.text-700:hover, a.text-700:focus{color: #32373b !important;} .bg-800{background-color: #343a40 !important; color: #FFFFFF;} .bg-800 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-800:hover, a.bg-800:focus, button.bg-800:hover, button.bg-800:focus{background-color: #1d2124 !important; color: #FFFFFF;} .text-800{color: #343a40 !important;} a.text-800:hover, a.text-800:focus{color: #1d2124 !important;} .bg-900{background-color: #212529 !important; color: #FFFFFF;} .bg-900 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-900:hover, a.bg-900:focus, button.bg-900:hover, button.bg-900:focus{background-color: #0a0c0d !important; color: #FFFFFF;} .text-900{color: #212529 !important;} a.text-900:hover, a.text-900:focus{color: #0a0c0d !important;} .bg-black-25{background-color: rgba(0, 0, 0, 0.25) !important; color: #212529;} .bg-black-25 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-black-25:hover, a.bg-black-25:focus, button.bg-black-25:hover, button.bg-black-25:focus{background-color: rgba(0, 0, 0, 0.25) !important; color: #212529;} .text-black-25{color: rgba(0, 0, 0, 0.25) !important;} a.text-black-25:hover, a.text-black-25:focus{color: rgba(0, 0, 0, 0.25) !important;} .bg-black-50{background-color: rgba(0, 0, 0, 0.5) !important; color: #FFFFFF;} .bg-black-50 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-black-50:hover, a.bg-black-50:focus, button.bg-black-50:hover, button.bg-black-50:focus{background-color: rgba(0, 0, 0, 0.5) !important; color: #FFFFFF;} .text-black-50{color: rgba(0, 0, 0, 0.5) !important;} a.text-black-50:hover, a.text-black-50:focus{color: rgba(0, 0, 0, 0.5) !important;} .bg-black-75{background-color: rgba(0, 0, 0, 0.75) !important; color: #FFFFFF;} .bg-black-75 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-black-75:hover, a.bg-black-75:focus, button.bg-black-75:hover, button.bg-black-75:focus{background-color: rgba(0, 0, 0, 0.75) !important; color: #FFFFFF;} .text-black-75{color: rgba(0, 0, 0, 0.75) !important;} a.text-black-75:hover, a.text-black-75:focus{color: rgba(0, 0, 0, 0.75) !important;} .bg-white-25{background-color: rgba(255, 255, 255, 0.25) !important; color: #212529;} .bg-white-25 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white-25:hover, a.bg-white-25:focus, button.bg-white-25:hover, button.bg-white-25:focus{background-color: rgba(230, 229, 229, 0.25) !important; color: #212529;} .text-white-25{color: rgba(255, 255, 255, 0.25) !important;} a.text-white-25:hover, a.text-white-25:focus{color: rgba(230, 229, 229, 0.25) !important;} .bg-white-50{background-color: rgba(255, 255, 255, 0.5) !important; color: #212529;} .bg-white-50 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white-50:hover, a.bg-white-50:focus, button.bg-white-50:hover, button.bg-white-50:focus{background-color: rgba(230, 229, 229, 0.5) !important; color: #212529;} .text-white-50{color: rgba(255, 255, 255, 0.5) !important;} a.text-white-50:hover, a.text-white-50:focus{color: rgba(230, 229, 229, 0.5) !important;} .bg-white-75{background-color: rgba(255, 255, 255, 0.75) !important; color: #212529;} .bg-white-75 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white-75:hover, a.bg-white-75:focus, button.bg-white-75:hover, button.bg-white-75:focus{background-color: rgba(230, 229, 229, 0.75) !important; color: #212529;} .text-white-75{color: rgba(255, 255, 255, 0.75) !important;} a.text-white-75:hover, a.text-white-75:focus{color: rgba(230, 229, 229, 0.75) !important;} .bg-white{background-color: #FFFFFF !important; color: #212529;} .bg-white .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white:hover, a.bg-white:focus, button.bg-white:hover, button.bg-white:focus{background-color: #e6e5e5 !important; color: #212529;} .text-white{color: #FFFFFF !important;} a.text-white:hover, a.text-white:focus{color: #e6e5e5 !important;} .bg-black{background-color: #000000 !important; color: #FFFFFF;} .bg-black .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-black:hover, a.bg-black:focus, button.bg-black:hover, button.bg-black:focus{background-color: black !important; color: #FFFFFF;} .text-black{color: #000000 !important;} a.text-black:hover, a.text-black:focus{color: black !important;} t 1 2020-10-30 09:23:58.808652 1 2020-10-30 09:23:58.808652 -1 image \N \N My Company res.partner Contact image 1 1 binary \N f \N \N d5/d5cce68bf4bb4ab57beaf766f3fb775cf8df0c83 15310 d5cce68bf4bb4ab57beaf766f3fb775cf8df0c83 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -2 image_medium \N \N My Company res.partner Contact image_medium 1 1 binary \N f \N \N c8/c85d9425dda3028106e657fee05080f58c08e284 8072 c85d9425dda3028106e657fee05080f58c08e284 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -3 image_small \N \N My Company res.partner Contact image_small 1 1 binary \N f \N \N 1b/1bc391c80a5cfd7997fb70ad9ae53e6c86e8c6ae 2860 1bc391c80a5cfd7997fb70ad9ae53e6c86e8c6ae image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -256 /web/content/256-bdc63cb/web.assets_frontend.js web.assets_frontend.js \N \N ir.ui.view View \N 0 1 binary /web/content/256-bdc63cb/web.assets_frontend.js t \N \N 8f/8fd261380bb6ee08b6c6689fc66910690993ebcf 3890 8fd261380bb6ee08b6c6689fc66910690993ebcf application/javascript application t 1 2020-10-30 09:23:58.808652 1 2020-10-30 09:23:58.808652 -4 image \N \N Administrator res.partner Contact image 3 1 binary \N f \N \N 87/87b6fa847f7aec80258acf28c6a247ff67ff281c 22372 87b6fa847f7aec80258acf28c6a247ff67ff281c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -5 image_medium \N \N Administrator res.partner Contact image_medium 3 1 binary \N f \N \N 16/161637922ddc2919e18fabcd4b72aa63c8033173 14660 161637922ddc2919e18fabcd4b72aa63c8033173 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -6 image_small \N \N Administrator res.partner Contact image_small 3 1 binary \N f \N \N ed/ed0dd8839bc6a8b0211fda0de146d014050c4472 4733 ed0dd8839bc6a8b0211fda0de146d014050c4472 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -7 image \N \N Andorra res.country Country image 1 1 binary \N f \N \N fc/fc78476ab1658bfedda7dde9b515d1c705472c1f 10684 fc78476ab1658bfedda7dde9b515d1c705472c1f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -8 image \N \N United Arab Emirates res.country Country image 2 1 binary \N f \N \N 97/97d5689a6bd71e33f9439f8235d54855a69134f3 565 97d5689a6bd71e33f9439f8235d54855a69134f3 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -9 image \N \N Afghanistan res.country Country image 3 1 binary \N f \N \N c5/c5fd52fe3cf431f70c6d778c555f027c97a0ac09 12999 c5fd52fe3cf431f70c6d778c555f027c97a0ac09 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -10 image \N \N Antigua and Barbuda res.country Country image 4 1 binary \N f \N \N d9/d94ae9131ef7206051953f57417bedce760cc7a8 6076 d94ae9131ef7206051953f57417bedce760cc7a8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -11 image \N \N Anguilla res.country Country image 5 1 binary \N f \N \N 37/37d7215fdebf94cfa0e5cf50f777a30137d96862 5016 37d7215fdebf94cfa0e5cf50f777a30137d96862 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -12 image \N \N Albania res.country Country image 6 1 binary \N f \N \N 53/5371c9f9ad9f70bbc8872e72891cd8139bf5a221 10091 5371c9f9ad9f70bbc8872e72891cd8139bf5a221 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -13 image \N \N Armenia res.country Country image 7 1 binary \N f \N \N 06/06b5dcd0c33344d3f8531e2f5b74c83a787b6dc1 516 06b5dcd0c33344d3f8531e2f5b74c83a787b6dc1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -14 image \N \N Angola res.country Country image 8 1 binary \N f \N \N 53/5308a31e4c724b36f36a29e4194aa2e2ef4ac278 5651 5308a31e4c724b36f36a29e4194aa2e2ef4ac278 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -15 image \N \N Argentina res.country Country image 10 1 binary \N f \N \N 8b/8bd3b3e26feb00ddc41a8f4be58ad5d4eef43998 5200 8bd3b3e26feb00ddc41a8f4be58ad5d4eef43998 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -16 image \N \N American Samoa res.country Country image 11 1 binary \N f \N \N 79/79a882269e95c0202d58446b81517a379ba90377 9621 79a882269e95c0202d58446b81517a379ba90377 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -17 image \N \N Austria res.country Country image 12 1 binary \N f \N \N 18/185739a111942c62dd42e81d936faa13747db58e 621 185739a111942c62dd42e81d936faa13747db58e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -18 image \N \N Australia res.country Country image 13 1 binary \N f \N \N 55/5545b377758adf1b9328a9ec0bc679315fabc7a3 4913 5545b377758adf1b9328a9ec0bc679315fabc7a3 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -19 image \N \N Aruba res.country Country image 14 1 binary \N f \N \N 28/28ef9c3165eec3cebd618ffea4aa043cf9dbf967 2623 28ef9c3165eec3cebd618ffea4aa043cf9dbf967 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -20 image \N \N Åland Islands res.country Country image 15 1 binary \N f \N \N 1e/1e770e318133d35b28df1ef1a9c60b6b6979e38c 805 1e770e318133d35b28df1ef1a9c60b6b6979e38c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -21 image \N \N Azerbaijan res.country Country image 16 1 binary \N f \N \N 88/88dcdce6e8caea2a56b10c43f3ac3009bcf7a82f 2410 88dcdce6e8caea2a56b10c43f3ac3009bcf7a82f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -22 image \N \N Bosnia and Herzegovina res.country Country image 17 1 binary \N f \N \N 3d/3d000adf2fdd1db1b895bd60311d1551cbff03ee 5032 3d000adf2fdd1db1b895bd60311d1551cbff03ee image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -23 image \N \N Barbados res.country Country image 18 1 binary \N f \N \N 7c/7cae029bb9538fe9c41b20cdcd00d93c52ab0501 3045 7cae029bb9538fe9c41b20cdcd00d93c52ab0501 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -24 image \N \N Bangladesh res.country Country image 19 1 binary \N f \N \N be/be725aede51f12136f17b2a60e8418edbae57846 2675 be725aede51f12136f17b2a60e8418edbae57846 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -25 image \N \N Belgium res.country Country image 20 1 binary \N f \N \N f3/f3a5ec7808a0c096ed4991a55f2d250ad9109120 620 f3a5ec7808a0c096ed4991a55f2d250ad9109120 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -26 image \N \N Burkina Faso res.country Country image 21 1 binary \N f \N \N c4/c48a8efc9dc2ede0ce0c1fc08eed6d1ad9e37122 1816 c48a8efc9dc2ede0ce0c1fc08eed6d1ad9e37122 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -27 image \N \N Bulgaria res.country Country image 22 1 binary \N f \N \N 07/076efb9d4a7c915f3ec9007a1119d8ada7f12e69 577 076efb9d4a7c915f3ec9007a1119d8ada7f12e69 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -28 image \N \N Bahrain res.country Country image 23 1 binary \N f \N \N 18/18c264e1d9b97ec932d4e09c010f399c84c13e5a 1265 18c264e1d9b97ec932d4e09c010f399c84c13e5a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -29 image \N \N Burundi res.country Country image 24 1 binary \N f \N \N 56/56f2be7abab47f6f993093fa73605aae2fb17231 4827 56f2be7abab47f6f993093fa73605aae2fb17231 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -30 image \N \N Benin res.country Country image 25 1 binary \N f \N \N ce/cecdd3a35a268684ba238905be59bf731a518554 643 cecdd3a35a268684ba238905be59bf731a518554 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -31 image \N \N Saint Barthélémy res.country Country image 26 1 binary \N f \N \N d5/d56e0f0a283058611f04c911c2c2b0fcb6380f2a 624 d56e0f0a283058611f04c911c2c2b0fcb6380f2a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -32 image \N \N Bermuda res.country Country image 27 1 binary \N f \N \N a4/a489254755f42531df0373248de069177ead595e 8987 a489254755f42531df0373248de069177ead595e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -33 image \N \N Brunei Darussalam res.country Country image 28 1 binary \N f \N \N d0/d0c1881d66a0d08edb324fa7e4705af62a8eaae6 8668 d0c1881d66a0d08edb324fa7e4705af62a8eaae6 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -34 image \N \N Bolivia res.country Country image 29 1 binary \N f \N \N 27/2706743e8d036813fdeafd01c6fcde35bf352a87 658 2706743e8d036813fdeafd01c6fcde35bf352a87 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -35 image \N \N Brazil res.country Country image 31 1 binary \N f \N \N 54/54562e6079551e987daf395a5037836985d980c4 10118 54562e6079551e987daf395a5037836985d980c4 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -36 image \N \N Bahamas res.country Country image 32 1 binary \N f \N \N 12/12d55e298ea8a606f3fe01d5df0f22c2b7863652 1091 12d55e298ea8a606f3fe01d5df0f22c2b7863652 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -37 image \N \N Bhutan res.country Country image 33 1 binary \N f \N \N 90/907ea4ff880a2b8ad3073eab1b7a3ffefa0213a0 22551 907ea4ff880a2b8ad3073eab1b7a3ffefa0213a0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -38 image \N \N Botswana res.country Country image 35 1 binary \N f \N \N b9/b9305d0b59e46ddd6b3e00c55816934de39fd49f 670 b9305d0b59e46ddd6b3e00c55816934de39fd49f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -39 image \N \N Belarus res.country Country image 36 1 binary \N f \N \N e0/e0cf658fedf609fcf9da26f0d69335247c9fbed0 7583 e0cf658fedf609fcf9da26f0d69335247c9fbed0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -40 image \N \N Belize res.country Country image 37 1 binary \N f \N \N 7d/7d8e53f5c8a10b937d1798211d31c256863b1a95 27280 7d8e53f5c8a10b937d1798211d31c256863b1a95 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -41 image \N \N Canada res.country Country image 38 1 binary \N f \N \N 6b/6be00cab4372c2c66eb2ed1f3afc00995cdcbcc2 2819 6be00cab4372c2c66eb2ed1f3afc00995cdcbcc2 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -42 image \N \N Cocos (Keeling) Islands res.country Country image 39 1 binary \N f \N \N fa/face1d1e2647e7416f3fca12cc9690dd90ce77de 5689 face1d1e2647e7416f3fca12cc9690dd90ce77de image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -43 image \N \N Central African Republic res.country Country image 40 1 binary \N f \N \N 6e/6ecc2c20bcc94c389f2e135bfcbf8051d78ad617 1871 6ecc2c20bcc94c389f2e135bfcbf8051d78ad617 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -44 image \N \N Democratic Republic of the Congo res.country Country image 41 1 binary \N f \N \N f7/f74ae1b0193da2e8b8ef8f8a71ef439d1b002ac9 9807 f74ae1b0193da2e8b8ef8f8a71ef439d1b002ac9 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -45 image \N \N Congo res.country Country image 42 1 binary \N f \N \N 84/8468aeff52f5e338dcaf9000cae16013f6ee793b 2972 8468aeff52f5e338dcaf9000cae16013f6ee793b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -46 image \N \N Switzerland res.country Country image 43 1 binary \N f \N \N 14/146a10869ddf61178fbfbf89abf631e69abba989 1041 146a10869ddf61178fbfbf89abf631e69abba989 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -47 image \N \N Côte d'Ivoire res.country Country image 44 1 binary \N f \N \N 67/6700d7cdf41b750e7c787bf7cbeb36ce168cc05a 640 6700d7cdf41b750e7c787bf7cbeb36ce168cc05a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -48 image \N \N Cook Islands res.country Country image 45 1 binary \N f \N \N 82/822b5bf9dbba254cec7c97111b427db7d76c0850 8201 822b5bf9dbba254cec7c97111b427db7d76c0850 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -49 image \N \N Chile res.country Country image 46 1 binary \N f \N \N a4/a4f748f591431f9e4a70406399418d5178c79142 1801 a4f748f591431f9e4a70406399418d5178c79142 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -50 image \N \N Cameroon res.country Country image 47 1 binary \N f \N \N 79/7920afcfe2d9f3fd1a5559078c3b1b39c7737ffa 1666 7920afcfe2d9f3fd1a5559078c3b1b39c7737ffa image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -51 image \N \N China res.country Country image 48 1 binary \N f \N \N 57/57387079baaca44f97a9a05ea72e49c22b0210fb 3130 57387079baaca44f97a9a05ea72e49c22b0210fb image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -52 image \N \N Colombia res.country Country image 49 1 binary \N f \N \N ae/aed01a9aea8da445c05073e091c079bdb1083dc8 635 aed01a9aea8da445c05073e091c079bdb1083dc8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -53 image \N \N Costa Rica res.country Country image 50 1 binary \N f \N \N d3/d3978c7b1a1eac3d552864831330b48eb24bb1f5 585 d3978c7b1a1eac3d552864831330b48eb24bb1f5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -54 image \N \N Cuba res.country Country image 51 1 binary \N f \N \N 2b/2b6c39cc1dfa6144daa9d33ae760f570a5400c6a 3339 2b6c39cc1dfa6144daa9d33ae760f570a5400c6a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -55 image \N \N Cape Verde res.country Country image 52 1 binary \N f \N \N d4/d45d3804fff9b59e7f0d80738bf751d0d8deacc0 3844 d45d3804fff9b59e7f0d80738bf751d0d8deacc0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -56 image \N \N Curaçao res.country Country image 53 1 binary \N f \N \N 1b/1bfd3bdf679dc07d30e8800acdd200a80853ed9e 2300 1bfd3bdf679dc07d30e8800acdd200a80853ed9e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -57 image \N \N Christmas Island res.country Country image 54 1 binary \N f \N \N b5/b570dbe4d96f79e01d3dc24a6c99e028c8e43673 6690 b570dbe4d96f79e01d3dc24a6c99e028c8e43673 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -58 image \N \N Cyprus res.country Country image 55 1 binary \N f \N \N 91/91bc282e43a444af0994c27129812a2c602d5b38 5491 91bc282e43a444af0994c27129812a2c602d5b38 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -59 image \N \N Czech Republic res.country Country image 56 1 binary \N f \N \N cb/cbbf23db3fb9ff947bdf1a2fddaa7b8f98c8848b 3034 cbbf23db3fb9ff947bdf1a2fddaa7b8f98c8848b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -60 image \N \N Germany res.country Country image 57 1 binary \N f \N \N 8b/8bfb3c95d75ff98f039260f960e8dcf518aa27a9 552 8bfb3c95d75ff98f039260f960e8dcf518aa27a9 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -61 image \N \N Djibouti res.country Country image 58 1 binary \N f \N \N 35/359b257ee0452651276a8a5293f862070e3c5be8 3929 359b257ee0452651276a8a5293f862070e3c5be8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -62 image \N \N Denmark res.country Country image 59 1 binary \N f \N \N ef/eff4b087e57aad9eb29c05120003b9432bab1043 717 eff4b087e57aad9eb29c05120003b9432bab1043 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -63 image \N \N Dominica res.country Country image 60 1 binary \N f \N \N 04/0454645c85e773618f7ce75079b2db66264de6a7 5442 0454645c85e773618f7ce75079b2db66264de6a7 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -64 image \N \N Dominican Republic res.country Country image 61 1 binary \N f \N \N fd/fd912c23b77a2075c405b35ae932365f10a0d002 4924 fd912c23b77a2075c405b35ae932365f10a0d002 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -65 image \N \N Algeria res.country Country image 62 1 binary \N f \N \N 8c/8c88c3e5b91042ae12f0494c6b3145072d47f2b1 4153 8c88c3e5b91042ae12f0494c6b3145072d47f2b1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -66 image \N \N Ecuador res.country Country image 63 1 binary \N f \N \N 6d/6df23a59ad8df12faad8725de41f787f19083252 11466 6df23a59ad8df12faad8725de41f787f19083252 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -67 image \N \N Estonia res.country Country image 64 1 binary \N f \N \N b0/b053775659b11e2ca971b473cf3482ec854ca4de 599 b053775659b11e2ca971b473cf3482ec854ca4de image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -68 image \N \N Egypt res.country Country image 65 1 binary \N f \N \N 5f/5fa45152c057c3c8973a7fd3f784f8e26140794d 4982 5fa45152c057c3c8973a7fd3f784f8e26140794d image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -69 image \N \N Eritrea res.country Country image 67 1 binary \N f \N \N 17/17cf89651afa19f87be184d6c8426acb9cc6ab17 6905 17cf89651afa19f87be184d6c8426acb9cc6ab17 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -70 image \N \N Spain res.country Country image 68 1 binary \N f \N \N 3e/3e9258f2145fd1b26ae520a58f2c0faaf6cf48b7 7593 3e9258f2145fd1b26ae520a58f2c0faaf6cf48b7 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -71 image \N \N Ethiopia res.country Country image 69 1 binary \N f \N \N 99/99a91c169f34f4ca29810b62592f8b020c4a1acf 6440 99a91c169f34f4ca29810b62592f8b020c4a1acf image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -72 image \N \N Finland res.country Country image 70 1 binary \N f \N \N be/be0317f0951238afd32d1d02a9e6501fb3292b3c 714 be0317f0951238afd32d1d02a9e6501fb3292b3c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -73 image \N \N Fiji res.country Country image 71 1 binary \N f \N \N 46/464b0caa074bdb67470c0b879b937e62b97ca8fa 7890 464b0caa074bdb67470c0b879b937e62b97ca8fa image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -74 image \N \N Falkland Islands res.country Country image 72 1 binary \N f \N \N a5/a5a2d5c6d63b61a47fcda3cfdcff99b2cf5a0f25 10970 a5a2d5c6d63b61a47fcda3cfdcff99b2cf5a0f25 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -75 image \N \N Micronesia res.country Country image 73 1 binary \N f \N \N 08/086dd5b409d2753d894ac5acdff9023a91e3b35e 2875 086dd5b409d2753d894ac5acdff9023a91e3b35e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -76 image \N \N Faroe Islands res.country Country image 74 1 binary \N f \N \N 27/27b5bae71e8d863bc741a1604b810fce2c7112cb 929 27b5bae71e8d863bc741a1604b810fce2c7112cb image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -77 image \N \N France res.country Country image 75 1 binary \N f \N \N d5/d56e0f0a283058611f04c911c2c2b0fcb6380f2a 624 d56e0f0a283058611f04c911c2c2b0fcb6380f2a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -78 image \N \N Gabon res.country Country image 76 1 binary \N f \N \N 24/2430e9028e67a9defa8f4dd113918d81e6c0ca93 709 2430e9028e67a9defa8f4dd113918d81e6c0ca93 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -79 image \N \N Grenada res.country Country image 77 1 binary \N f \N \N 4e/4e045328e56934c778b1cba31cab5fc88c4ff5a6 6094 4e045328e56934c778b1cba31cab5fc88c4ff5a6 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -80 image \N \N Georgia res.country Country image 78 1 binary \N f \N \N 08/083cb8a43fc57e84ff0b881c05df61d20b4fed78 2977 083cb8a43fc57e84ff0b881c05df61d20b4fed78 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -81 image \N \N Ghana res.country Country image 80 1 binary \N f \N \N ba/ba01653d5ddd8f4ab9d959624da1f67cbb079c00 1974 ba01653d5ddd8f4ab9d959624da1f67cbb079c00 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -82 image \N \N Gibraltar res.country Country image 81 1 binary \N f \N \N be/beec00f2b555f547d0f3237bc8f5c340b0d5aed0 4575 beec00f2b555f547d0f3237bc8f5c340b0d5aed0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -83 image \N \N Guernsey res.country Country image 82 1 binary \N f \N \N 31/3107d94f904e39dd4ba18dbda25e0bd18667e967 1475 3107d94f904e39dd4ba18dbda25e0bd18667e967 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -84 image \N \N Greenland res.country Country image 83 1 binary \N f \N \N 1d/1da162c5005f8f7c9a583a512ac303bf657a9344 3200 1da162c5005f8f7c9a583a512ac303bf657a9344 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -85 image \N \N Gambia res.country Country image 84 1 binary \N f \N \N 03/03da9332a5cf3a9d34ca06f871566c002d5cd5af 659 03da9332a5cf3a9d34ca06f871566c002d5cd5af image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -86 image \N \N Guinea res.country Country image 85 1 binary \N f \N \N 3e/3e0f0b8aaace4cd88cde651e302a271c67edddf1 646 3e0f0b8aaace4cd88cde651e302a271c67edddf1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -87 image \N \N Equatorial Guinea res.country Country image 87 1 binary \N f \N \N ec/ec9c1058351c3415ed991b8728969581621dde42 5765 ec9c1058351c3415ed991b8728969581621dde42 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -88 image \N \N Greece res.country Country image 88 1 binary \N f \N \N 2f/2f8d90ac092595d6a464ab3c23aa6e7d4221a50f 924 2f8d90ac092595d6a464ab3c23aa6e7d4221a50f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -89 image \N \N South Georgia and the South Sandwich Islands res.country Country image 89 1 binary \N f \N \N 77/7732804f48dfe4c45bde319a6a71234a3381ccdf 13470 7732804f48dfe4c45bde319a6a71234a3381ccdf image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -90 image \N \N Guatemala res.country Country image 90 1 binary \N f \N \N 04/04d355853cc5298d2c99ce88dbc70131f4cceab6 6494 04d355853cc5298d2c99ce88dbc70131f4cceab6 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -91 image \N \N Guam res.country Country image 91 1 binary \N f \N \N e5/e570e74e4f3ff70b30099d760bd6ae21d6d505b9 6044 e570e74e4f3ff70b30099d760bd6ae21d6d505b9 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -92 image \N \N Guinea-Bissau res.country Country image 92 1 binary \N f \N \N 31/31e01ef67e1b776ee706f026f0cbcd0d0c0bc269 1564 31e01ef67e1b776ee706f026f0cbcd0d0c0bc269 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -93 image \N \N Guyana res.country Country image 93 1 binary \N f \N \N 58/58243c56026fc3ace55f88e5c569b7300a82657f 3201 58243c56026fc3ace55f88e5c569b7300a82657f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -94 image \N \N Hong Kong res.country Country image 94 1 binary \N f \N \N c6/c6670c8f46ca7c3c7b102eb2993671a83248713b 7104 c6670c8f46ca7c3c7b102eb2993671a83248713b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -95 image \N \N Honduras res.country Country image 96 1 binary \N f \N \N a1/a1bc0abcf559d1df24a123f65bd5513187184a0c 2119 a1bc0abcf559d1df24a123f65bd5513187184a0c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -96 image \N \N Croatia res.country Country image 97 1 binary \N f \N \N 3b/3b07d638f16a1db8bfee461ede9d721c10ae0265 4483 3b07d638f16a1db8bfee461ede9d721c10ae0265 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -97 image \N \N Haiti res.country Country image 98 1 binary \N f \N \N ed/ed8a8b1dbcbe5f2ac1a194ba5c7f0914e22156e9 4889 ed8a8b1dbcbe5f2ac1a194ba5c7f0914e22156e9 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -98 image \N \N Hungary res.country Country image 99 1 binary \N f \N \N 1e/1e5ace31dd39e50a1c4023bfb569ffb2c4dcda6a 530 1e5ace31dd39e50a1c4023bfb569ffb2c4dcda6a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -99 image \N \N Indonesia res.country Country image 100 1 binary \N f \N \N 9a/9a73cebc6da0b72858928daa02525081c6455bae 627 9a73cebc6da0b72858928daa02525081c6455bae image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -100 image \N \N Ireland res.country Country image 101 1 binary \N f \N \N 2e/2ea4c74950fd8de83170eb9f8658fa9366b1eae0 524 2ea4c74950fd8de83170eb9f8658fa9366b1eae0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -101 image \N \N Israel res.country Country image 102 1 binary \N f \N \N e5/e55133192c625967353f8489796fe47eb78bcebc 3622 e55133192c625967353f8489796fe47eb78bcebc image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -102 image \N \N Isle of Man res.country Country image 103 1 binary \N f \N \N 74/74444c21db0ccc88fd8ba274637e0ebd7557d7fc 5583 74444c21db0ccc88fd8ba274637e0ebd7557d7fc image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -103 image \N \N India res.country Country image 104 1 binary \N f \N \N ba/ba2751d70beca5b1e32033b79bdb1f9ec23ba6a8 4993 ba2751d70beca5b1e32033b79bdb1f9ec23ba6a8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -104 image \N \N British Indian Ocean Territory res.country Country image 105 1 binary \N f \N \N 91/911fe2d78473c94078b0083ba558e7989ded10f1 22981 911fe2d78473c94078b0083ba558e7989ded10f1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -105 image \N \N Iraq res.country Country image 106 1 binary \N f \N \N bb/bb3dcf61b537f53e8d93eca3e137c95568e98edd 3262 bb3dcf61b537f53e8d93eca3e137c95568e98edd image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -106 image \N \N Iran res.country Country image 107 1 binary \N f \N \N ed/ed9e3a95a587b273f1759c8796af4b47a9bcf9f6 9740 ed9e3a95a587b273f1759c8796af4b47a9bcf9f6 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -107 image \N \N Iceland res.country Country image 108 1 binary \N f \N \N f5/f59ac1d6f8f461425c71f6e49dcbfab67ecf76e2 710 f59ac1d6f8f461425c71f6e49dcbfab67ecf76e2 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -108 image \N \N Italy res.country Country image 109 1 binary \N f \N \N 51/510ed2c3fb716e1f2a94925b176b6f8924e34989 628 510ed2c3fb716e1f2a94925b176b6f8924e34989 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -109 image \N \N Jersey res.country Country image 110 1 binary \N f \N \N e1/e1e4e841f50e803ab8c1d6a002b8840ed728f76b 9668 e1e4e841f50e803ab8c1d6a002b8840ed728f76b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -110 image \N \N Jamaica res.country Country image 111 1 binary \N f \N \N aa/aa2893ebf94dbbf8aa585e1e6ffccc1673f05cdf 1361 aa2893ebf94dbbf8aa585e1e6ffccc1673f05cdf image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -111 image \N \N Jordan res.country Country image 112 1 binary \N f \N \N d0/d009c56624cd5d853c5c7b7dacdad2c3b48428d2 1544 d009c56624cd5d853c5c7b7dacdad2c3b48428d2 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -112 image \N \N Japan res.country Country image 113 1 binary \N f \N \N b8/b8aea1499825b793c93efc0b92885ed6475ee437 3017 b8aea1499825b793c93efc0b92885ed6475ee437 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -113 image \N \N Kenya res.country Country image 114 1 binary \N f \N \N da/daff81bcaa7c21ad4716a9545286e8f7a6321b64 5372 daff81bcaa7c21ad4716a9545286e8f7a6321b64 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -114 image \N \N Kyrgyzstan res.country Country image 115 1 binary \N f \N \N 1e/1e7200bf95bd92b3f3a2024df771130214b403fe 11240 1e7200bf95bd92b3f3a2024df771130214b403fe image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -115 image \N \N Cambodia res.country Country image 116 1 binary \N f \N \N 58/58ee2224b4e0d42d1ed0c318c816c6ff11eb8877 8625 58ee2224b4e0d42d1ed0c318c816c6ff11eb8877 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -116 image \N \N Kiribati res.country Country image 117 1 binary \N f \N \N 1a/1a11b609123ed1438a3464e90c15413bb824147e 7003 1a11b609123ed1438a3464e90c15413bb824147e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -117 image \N \N Comoros res.country Country image 118 1 binary \N f \N \N 60/60def83dde11f6610856306fc9428cc64e8fe749 4185 60def83dde11f6610856306fc9428cc64e8fe749 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -118 image \N \N Saint Kitts and Nevis res.country Country image 119 1 binary \N f \N \N c3/c3c4315f8a53cf55c4aca88db8e398017d3f8f7c 8605 c3c4315f8a53cf55c4aca88db8e398017d3f8f7c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -119 image \N \N North Korea res.country Country image 120 1 binary \N f \N \N e0/e042585e95472df6fff84a6466874f4017d1d0e8 2936 e042585e95472df6fff84a6466874f4017d1d0e8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -120 image \N \N South Korea res.country Country image 121 1 binary \N f \N \N ec/ec395e5157f557438f6a4d217b6f0cbdece9ff2c 10230 ec395e5157f557438f6a4d217b6f0cbdece9ff2c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -121 image \N \N Kuwait res.country Country image 122 1 binary \N f \N \N 16/16420f452d92de98c3f67445a9a5b1e507477821 917 16420f452d92de98c3f67445a9a5b1e507477821 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -122 image \N \N Cayman Islands res.country Country image 123 1 binary \N f \N \N 2e/2e0bb9e7cf41c87f4a1b856dba26e53b0a767a0f 10270 2e0bb9e7cf41c87f4a1b856dba26e53b0a767a0f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -123 image \N \N Kazakhstan res.country Country image 124 1 binary \N f \N \N ab/abcf7ebefc75fdbabee97d5a40af8638fbabe368 12241 abcf7ebefc75fdbabee97d5a40af8638fbabe368 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -124 image \N \N Laos res.country Country image 125 1 binary \N f \N \N 4b/4be573aada92d0d2b06fd3abbffcbc7bcbd52008 2312 4be573aada92d0d2b06fd3abbffcbc7bcbd52008 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -125 image \N \N Lebanon res.country Country image 126 1 binary \N f \N \N 32/32202c837503c2baa52d98774b6dc0491fe5a7b1 5871 32202c837503c2baa52d98774b6dc0491fe5a7b1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -126 image \N \N Saint Lucia res.country Country image 127 1 binary \N f \N \N 2c/2c8014f11fee5e470e396361f3cfaf81d1d0caeb 3366 2c8014f11fee5e470e396361f3cfaf81d1d0caeb image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -127 image \N \N Liechtenstein res.country Country image 128 1 binary \N f \N \N 75/75f89e69ba1ec7cd5f377b3bbb3dd987253930d1 4894 75f89e69ba1ec7cd5f377b3bbb3dd987253930d1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -128 image \N \N Sri Lanka res.country Country image 129 1 binary \N f \N \N c4/c4a824618c6ad23d4180cab2e1a637e70c5bb0c8 10643 c4a824618c6ad23d4180cab2e1a637e70c5bb0c8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -129 image \N \N Liberia res.country Country image 130 1 binary \N f \N \N 54/544abec5df4b8cf1fb4961cd7fcae70296b33e72 1605 544abec5df4b8cf1fb4961cd7fcae70296b33e72 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -130 image \N \N Lesotho res.country Country image 131 1 binary \N f \N \N 43/43a49ec6a9befb84c4d5f116b1b92e98c5b50107 3716 43a49ec6a9befb84c4d5f116b1b92e98c5b50107 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -131 image \N \N Lithuania res.country Country image 132 1 binary \N f \N \N 42/424b2bcaddc89a0f81aa9e1c16028a0e1f8d954a 580 424b2bcaddc89a0f81aa9e1c16028a0e1f8d954a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -132 image \N \N Luxembourg res.country Country image 133 1 binary \N f \N \N 0d/0da07c4691b12e821585c5ef634a7543bd7d2017 577 0da07c4691b12e821585c5ef634a7543bd7d2017 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -133 image \N \N Latvia res.country Country image 134 1 binary \N f \N \N 93/933b15b530906480292bfb46a3c3cc8d9f6a6bf9 501 933b15b530906480292bfb46a3c3cc8d9f6a6bf9 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -134 image \N \N Libya res.country Country image 135 1 binary \N f \N \N 1f/1f6fb1a6420857cab8e60dbbfec08466651ca674 1818 1f6fb1a6420857cab8e60dbbfec08466651ca674 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -135 image \N \N Morocco res.country Country image 136 1 binary \N f \N \N 7e/7ef3bc524639d842fe30b0ff2bb13d7633491ec1 2410 7ef3bc524639d842fe30b0ff2bb13d7633491ec1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -136 image \N \N Monaco res.country Country image 137 1 binary \N f \N \N 0b/0b9c3fc792c7328877e485ed1f4df2c6ab954952 344 0b9c3fc792c7328877e485ed1f4df2c6ab954952 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -137 image \N \N Moldova res.country Country image 138 1 binary \N f \N \N 0e/0e16f3e3e2bf0d08e22ee4133b3ea88c7d32f0d1 7071 0e16f3e3e2bf0d08e22ee4133b3ea88c7d32f0d1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -138 image \N \N Montenegro res.country Country image 139 1 binary \N f \N \N 6f/6fe1fc481fc5030fa404189495f11748a0016db5 10461 6fe1fc481fc5030fa404189495f11748a0016db5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -139 image \N \N Madagascar res.country Country image 141 1 binary \N f \N \N cb/cb6b5296ee0bef67ff3e3ab9df5313c6b89135d3 653 cb6b5296ee0bef67ff3e3ab9df5313c6b89135d3 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -140 image \N \N Marshall Islands res.country Country image 142 1 binary \N f \N \N a0/a030e071ffedfc77feaa1d3d80ec24b3d2f8a9d1 9616 a030e071ffedfc77feaa1d3d80ec24b3d2f8a9d1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -141 image \N \N Macedonia, the former Yugoslav Republic of res.country Country image 143 1 binary \N f \N \N b0/b01174bb537694110820cfe3dae41573a15957e3 5122 b01174bb537694110820cfe3dae41573a15957e3 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -142 image \N \N Mali res.country Country image 144 1 binary \N f \N \N b9/b969553815815db2f68abb9a33bbf02698939310 646 b969553815815db2f68abb9a33bbf02698939310 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -143 image \N \N Myanmar res.country Country image 145 1 binary \N f \N \N 84/844ebf4ec389573d0963533315feeebbffbb6d1a 3437 844ebf4ec389573d0963533315feeebbffbb6d1a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -144 image \N \N Mongolia res.country Country image 146 1 binary \N f \N \N 15/15224db1908c41699946c4af05f0464f0d2779f4 3307 15224db1908c41699946c4af05f0464f0d2779f4 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -145 image \N \N Macau res.country Country image 147 1 binary \N f \N \N 8e/8eaf31b575ed498c745503ef8d0d8a17228a5b15 6937 8eaf31b575ed498c745503ef8d0d8a17228a5b15 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -146 image \N \N Northern Mariana Islands res.country Country image 148 1 binary \N f \N \N 58/586282639d2eabf41e447782f14cea16635114aa 18512 586282639d2eabf41e447782f14cea16635114aa image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -147 image \N \N Martinique res.country Country image 149 1 binary \N f \N \N 11/111f19eb7ba97806bb82e9706b89261b842c753c 15014 111f19eb7ba97806bb82e9706b89261b842c753c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -148 image \N \N Mauritania res.country Country image 150 1 binary \N f \N \N c7/c765b797d230cb2de702d5d8f52453670bff7913 3990 c765b797d230cb2de702d5d8f52453670bff7913 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -149 image \N \N Montserrat res.country Country image 151 1 binary \N f \N \N fd/fdf73470f4810f290cb283fbb20068a4ffb19bc9 5368 fdf73470f4810f290cb283fbb20068a4ffb19bc9 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -150 image \N \N Malta res.country Country image 152 1 binary \N f \N \N 60/6054ef01d1c7183a7d5c34d7ebbfad2b5f4ab0d4 2428 6054ef01d1c7183a7d5c34d7ebbfad2b5f4ab0d4 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -151 image \N \N Mauritius res.country Country image 153 1 binary \N f \N \N a2/a2dab6f59952486425a48073fc083fb05abaf0be 651 a2dab6f59952486425a48073fc083fb05abaf0be image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -152 image \N \N Maldives res.country Country image 154 1 binary \N f \N \N e8/e8f20385766ddbefe6925800ccaafd3fd38c021a 2211 e8f20385766ddbefe6925800ccaafd3fd38c021a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -153 image \N \N Malawi res.country Country image 155 1 binary \N f \N \N 43/436bbe1eced6a4b83f12eaac35137a3a10e83356 6473 436bbe1eced6a4b83f12eaac35137a3a10e83356 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -154 image \N \N Mexico res.country Country image 156 1 binary \N f \N \N 17/1750c2d289fa99c6b414ebad8974991e1e8059f0 8638 1750c2d289fa99c6b414ebad8974991e1e8059f0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -155 image \N \N Malaysia res.country Country image 157 1 binary \N f \N \N 2b/2be4779f543ae2b444dd8a8247657d94f6d64fbd 4669 2be4779f543ae2b444dd8a8247657d94f6d64fbd image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -156 image \N \N Mozambique res.country Country image 158 1 binary \N f \N \N cf/cf037a6492f74d14e8280f7fd4d6c23a3d48da29 7438 cf037a6492f74d14e8280f7fd4d6c23a3d48da29 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -157 image \N \N Namibia res.country Country image 159 1 binary \N f \N \N d6/d6bc92d1655cc98ee4f6a4061bd3883ca89e0162 10245 d6bc92d1655cc98ee4f6a4061bd3883ca89e0162 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -158 image \N \N New Caledonia res.country Country image 160 1 binary \N f \N \N 1b/1bb5a4c6c56a790b1ea1e2f8a5438008336ef2d1 5162 1bb5a4c6c56a790b1ea1e2f8a5438008336ef2d1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -159 image \N \N Niger res.country Country image 161 1 binary \N f \N \N 7e/7ee30b6c56dadf735150a3e08e9a3997c293d89d 2301 7ee30b6c56dadf735150a3e08e9a3997c293d89d image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -160 image \N \N Norfolk Island res.country Country image 162 1 binary \N f \N \N 6f/6fb2d43162f16ad151039fdb643b60006b0d84a4 8480 6fb2d43162f16ad151039fdb643b60006b0d84a4 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -161 image \N \N Nigeria res.country Country image 163 1 binary \N f \N \N 1d/1db763ae5a9d80910ad17995fa671ae50ff47961 521 1db763ae5a9d80910ad17995fa671ae50ff47961 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -162 image \N \N Nicaragua res.country Country image 164 1 binary \N f \N \N 16/16200cdad8125792b7c6ebd100ab46bdc04bd5c0 3935 16200cdad8125792b7c6ebd100ab46bdc04bd5c0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -163 image \N \N Netherlands res.country Country image 165 1 binary \N f \N \N e5/e5c77c8c25b8a35a014d78ac3d7fb6b19c7c2a49 644 e5c77c8c25b8a35a014d78ac3d7fb6b19c7c2a49 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -164 image \N \N Norway res.country Country image 166 1 binary \N f \N \N e9/e9bc6591940e8b4a6424390ceab5d262c816f626 923 e9bc6591940e8b4a6424390ceab5d262c816f626 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -165 image \N \N Nepal res.country Country image 167 1 binary \N f \N \N 01/016db1ae999d0b5a3f22f864a95131403cd71023 9477 016db1ae999d0b5a3f22f864a95131403cd71023 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -166 image \N \N Nauru res.country Country image 168 1 binary \N f \N \N 06/0612121a0580366261ca94edc44b31f1541e231c 2301 0612121a0580366261ca94edc44b31f1541e231c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -167 image \N \N Niue res.country Country image 169 1 binary \N f \N \N 82/8250e24fa706a302025a5ad743efd12cf1385c45 3661 8250e24fa706a302025a5ad743efd12cf1385c45 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -168 image \N \N New Zealand res.country Country image 170 1 binary \N f \N \N cf/cf143ab416cd0cfeb7c0d02e5c4070cd93a50e16 4179 cf143ab416cd0cfeb7c0d02e5c4070cd93a50e16 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -169 image \N \N Oman res.country Country image 171 1 binary \N f \N \N cc/cc73e17d857d175c363382aee62eeafc9e78462c 3018 cc73e17d857d175c363382aee62eeafc9e78462c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -170 image \N \N Panama res.country Country image 172 1 binary \N f \N \N 00/00fb4c413200cd65df61b6f2ad614d47b49451d5 2695 00fb4c413200cd65df61b6f2ad614d47b49451d5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -171 image \N \N Peru res.country Country image 173 1 binary \N f \N \N ce/ce97f437d5853a887e6ba433b28e93178618f98d 626 ce97f437d5853a887e6ba433b28e93178618f98d image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -172 image \N \N French Polynesia res.country Country image 174 1 binary \N f \N \N 9d/9d10153df45f5e2ee49e65bbef89bce2fe8326c0 8044 9d10153df45f5e2ee49e65bbef89bce2fe8326c0 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -173 image \N \N Papua New Guinea res.country Country image 175 1 binary \N f \N \N 8e/8e4431d6666ae1e8d23ec164d7995dd3167f9947 9189 8e4431d6666ae1e8d23ec164d7995dd3167f9947 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -174 image \N \N Philippines res.country Country image 176 1 binary \N f \N \N 23/23f977ac11c242143843e8607cc8a6a3507b3a6b 5714 23f977ac11c242143843e8607cc8a6a3507b3a6b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -175 image \N \N Pakistan res.country Country image 177 1 binary \N f \N \N e0/e0cf9673128ae1e3719572aae808d96a5f363660 4347 e0cf9673128ae1e3719572aae808d96a5f363660 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -176 image \N \N Poland res.country Country image 178 1 binary \N f \N \N 62/621ae7b7e181a27049be09db7d6f266948539fee 566 621ae7b7e181a27049be09db7d6f266948539fee image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -177 image \N \N Saint Pierre and Miquelon res.country Country image 179 1 binary \N f \N \N a1/a1aed485902ee329e77b3d8f63bda76b509f2a3f 47044 a1aed485902ee329e77b3d8f63bda76b509f2a3f image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -178 image \N \N Pitcairn Islands res.country Country image 180 1 binary \N f \N \N f1/f16e21cc329e644dcdc300304a0d91447e794649 12876 f16e21cc329e644dcdc300304a0d91447e794649 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -179 image \N \N Puerto Rico res.country Country image 181 1 binary \N f \N \N 1a/1a9c358ef4aaa3b820b209035e48ce34a18789bb 4263 1a9c358ef4aaa3b820b209035e48ce34a18789bb image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -180 image \N \N Portugal res.country Country image 183 1 binary \N f \N \N 2d/2ddc1e58903f60bdda8870a951b7496b9d5f79a2 10133 2ddc1e58903f60bdda8870a951b7496b9d5f79a2 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -181 image \N \N Palau res.country Country image 184 1 binary \N f \N \N 2d/2d6c0cf52f8afb439ca7acbf0bb214ab24d6f937 2797 2d6c0cf52f8afb439ca7acbf0bb214ab24d6f937 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -182 image \N \N Paraguay res.country Country image 185 1 binary \N f \N \N a6/a6d364b94120ffd485b4396e65eb91df15f22141 4690 a6d364b94120ffd485b4396e65eb91df15f22141 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -183 image \N \N Qatar res.country Country image 186 1 binary \N f \N \N 31/310d239932db60985e96fa36aefa2e7e528a8bf2 1864 310d239932db60985e96fa36aefa2e7e528a8bf2 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -184 image \N \N Romania res.country Country image 188 1 binary \N f \N \N bd/bdd3aec91863bb70dbfc051823b475f302ded810 646 bdd3aec91863bb70dbfc051823b475f302ded810 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -185 image \N \N Serbia res.country Country image 189 1 binary \N f \N \N 62/627090759f9a66678c28c1bc3c3039b37f40f66e 15497 627090759f9a66678c28c1bc3c3039b37f40f66e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -186 image \N \N Russian Federation res.country Country image 190 1 binary \N f \N \N fb/fb0553aeebdb495401cc29a42c950c49f7b05982 609 fb0553aeebdb495401cc29a42c950c49f7b05982 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -187 image \N \N Rwanda res.country Country image 191 1 binary \N f \N \N fa/fa088da91a4e669fe1ca15c756546a83405c1ef6 5152 fa088da91a4e669fe1ca15c756546a83405c1ef6 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -188 image \N \N Saudi Arabia res.country Country image 192 1 binary \N f \N \N ef/ef6b627769cd44672fce24139789069404bf926a 11354 ef6b627769cd44672fce24139789069404bf926a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -189 image \N \N Solomon Islands res.country Country image 193 1 binary \N f \N \N 26/26121def9dd485db5e4b5ef13a75bca9345b7ee6 3935 26121def9dd485db5e4b5ef13a75bca9345b7ee6 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -190 image \N \N Seychelles res.country Country image 194 1 binary \N f \N \N b8/b842933a7b10cbf1ac9291c3aa20312e72632455 1738 b842933a7b10cbf1ac9291c3aa20312e72632455 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -191 image \N \N Sudan res.country Country image 195 1 binary \N f \N \N 3d/3d1afd48d60a3c487b38a19aa543c02aadf871cb 1268 3d1afd48d60a3c487b38a19aa543c02aadf871cb image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -192 image \N \N Sweden res.country Country image 196 1 binary \N f \N \N a6/a63f65dd20dd82c78932048f66b08c24842b6fd3 701 a63f65dd20dd82c78932048f66b08c24842b6fd3 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -193 image \N \N Singapore res.country Country image 197 1 binary \N f \N \N b9/b972de309340176ca5c17e9c401ca80d43446665 3652 b972de309340176ca5c17e9c401ca80d43446665 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -194 image \N \N Saint Helena, Ascension and Tristan da Cunha res.country Country image 198 1 binary \N f \N \N b3/b3b548eaf97ff614cb8a0ef07b30ce095c1aed48 9050 b3b548eaf97ff614cb8a0ef07b30ce095c1aed48 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -195 image \N \N Slovenia res.country Country image 199 1 binary \N f \N \N d0/d09dc6ca12d3c3faa07800e0bfdee621a7cbd33d 2735 d09dc6ca12d3c3faa07800e0bfdee621a7cbd33d image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -196 image \N \N Slovakia res.country Country image 201 1 binary \N f \N \N c7/c7e62f2d137604baf9cae56bd99ca821b267199a 4718 c7e62f2d137604baf9cae56bd99ca821b267199a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -197 image \N \N Sierra Leone res.country Country image 202 1 binary \N f \N \N 9e/9e57797b8794080c35d8de7738589a02d27fffa4 650 9e57797b8794080c35d8de7738589a02d27fffa4 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -198 image \N \N San Marino res.country Country image 203 1 binary \N f \N \N 76/76b52df765f3624b46cdf32d6cfe856401d43759 20023 76b52df765f3624b46cdf32d6cfe856401d43759 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -199 image \N \N Senegal res.country Country image 204 1 binary \N f \N \N 5c/5c7b3ba37f987555c48586e16df3b8325d37a782 1816 5c7b3ba37f987555c48586e16df3b8325d37a782 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -200 image \N \N Somalia res.country Country image 205 1 binary \N f \N \N b3/b316956646396995ddc29e3e2c0342a321015c28 2424 b316956646396995ddc29e3e2c0342a321015c28 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -201 image \N \N Suriname res.country Country image 206 1 binary \N f \N \N 23/235858ad94322b474db15ba150702ac0a41c3da5 2262 235858ad94322b474db15ba150702ac0a41c3da5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -202 image \N \N South Sudan res.country Country image 207 1 binary \N f \N \N 43/432535665a0dc982192de82fb6784782f85ed36c 3272 432535665a0dc982192de82fb6784782f85ed36c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -203 image \N \N São Tomé and Príncipe res.country Country image 208 1 binary \N f \N \N 46/46f3fa179e7bc2085d237081c1dc219f62994880 2226 46f3fa179e7bc2085d237081c1dc219f62994880 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -204 image \N \N El Salvador res.country Country image 209 1 binary \N f \N \N cd/cd6c42b651367bcf37a493ec3bd67caf631df663 4898 cd6c42b651367bcf37a493ec3bd67caf631df663 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -205 image \N \N Sint Maarten (Dutch part) res.country Country image 210 1 binary \N f \N \N 4d/4da9e3121e607449b17117992a948f58faeb5ef5 9464 4da9e3121e607449b17117992a948f58faeb5ef5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -206 image \N \N Syria res.country Country image 211 1 binary \N f \N \N 39/3965ec4bc7d992d9d8eae700e89289545ea3204c 1693 3965ec4bc7d992d9d8eae700e89289545ea3204c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -207 image \N \N Swaziland res.country Country image 212 1 binary \N f \N \N c1/c1ea7b18f6a235e71a98280aabb6bba4d24cb275 8428 c1ea7b18f6a235e71a98280aabb6bba4d24cb275 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -208 image \N \N Turks and Caicos Islands res.country Country image 213 1 binary \N f \N \N 2b/2b41ffe15ab73a9c87cc69ec8b26b1e9ca08c1b8 5539 2b41ffe15ab73a9c87cc69ec8b26b1e9ca08c1b8 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -209 image \N \N Chad res.country Country image 214 1 binary \N f \N \N ef/efb7f18627b8000b1cf28b4fa4944b766a2ad113 643 efb7f18627b8000b1cf28b4fa4944b766a2ad113 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -210 image \N \N French Southern Territories res.country Country image 215 1 binary \N f \N \N 3f/3f12e344154afa2fb588cb7e8dcb28606e3a63b1 4766 3f12e344154afa2fb588cb7e8dcb28606e3a63b1 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -211 image \N \N Togo res.country Country image 216 1 binary \N f \N \N ff/ff4fe2a9ad4a0a960dae7a6e895b00c34f61e25a 2216 ff4fe2a9ad4a0a960dae7a6e895b00c34f61e25a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -212 image \N \N Thailand res.country Country image 217 1 binary \N f \N \N 36/363886d106b5380aaf6f0723b4cc6f04a425deb7 645 363886d106b5380aaf6f0723b4cc6f04a425deb7 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -213 image \N \N Tajikistan res.country Country image 218 1 binary \N f \N \N 3a/3a592f02d0aea64519a63241e56bd3cba19ad28d 2872 3a592f02d0aea64519a63241e56bd3cba19ad28d image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -214 image \N \N Tokelau res.country Country image 219 1 binary \N f \N \N 65/659bc7ded3378bdf6ff0a5fa17c85e0930092694 4943 659bc7ded3378bdf6ff0a5fa17c85e0930092694 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -215 image \N \N Turkmenistan res.country Country image 220 1 binary \N f \N \N 7b/7b4ca1215d91c733c61a49eb3b42b3183213a312 19625 7b4ca1215d91c733c61a49eb3b42b3183213a312 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -216 image \N \N Tunisia res.country Country image 221 1 binary \N f \N \N f0/f011ddadc02810cea77f1f0318b143b05ebbba31 5062 f011ddadc02810cea77f1f0318b143b05ebbba31 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -217 image \N \N Tonga res.country Country image 222 1 binary \N f \N \N b4/b4119b8e8a6fe400c6771db501e3cb608f7956ac 757 b4119b8e8a6fe400c6771db501e3cb608f7956ac image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -218 image \N \N Timor-Leste res.country Country image 223 1 binary \N f \N \N 91/91a7e71640fa963b39908cd91b434cf395c12969 2602 91a7e71640fa963b39908cd91b434cf395c12969 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -219 image \N \N Turkey res.country Country image 224 1 binary \N f \N \N a1/a179f5df75bce1da4af1ab9263ee8e2806d1f972 4157 a179f5df75bce1da4af1ab9263ee8e2806d1f972 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -220 image \N \N Trinidad and Tobago res.country Country image 225 1 binary \N f \N \N 4a/4aea7b5061c1e128f4a9c7b7789ed057fee53e8c 9007 4aea7b5061c1e128f4a9c7b7789ed057fee53e8c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -221 image \N \N Tuvalu res.country Country image 226 1 binary \N f \N \N f2/f2e4e3751789f309644a147c53e3aa51a6291458 5977 f2e4e3751789f309644a147c53e3aa51a6291458 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -222 image \N \N Tanzania res.country Country image 228 1 binary \N f \N \N de/debaadcf8602a25e44206d899a52db159caf469e 6370 debaadcf8602a25e44206d899a52db159caf469e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -223 image \N \N Ukraine res.country Country image 229 1 binary \N f \N \N bf/bf9e3c14da881d8d662b50aff76a98f951d019f5 628 bf9e3c14da881d8d662b50aff76a98f951d019f5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -224 image \N \N Uganda res.country Country image 230 1 binary \N f \N \N 65/65daa4e9862f2dc67da7594c8d457279f83e0e12 4199 65daa4e9862f2dc67da7594c8d457279f83e0e12 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -225 image \N \N United Kingdom res.country Country image 231 1 binary \N f \N \N fb/fb1a2b7cf287adc73b164079389502d10bb8be46 1830 fb1a2b7cf287adc73b164079389502d10bb8be46 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -226 image \N \N United States res.country Country image 233 1 binary \N f \N \N b5/b5272aa96f9c0efc486129306f52eae1a6ae23e7 8477 b5272aa96f9c0efc486129306f52eae1a6ae23e7 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -227 image \N \N Uruguay res.country Country image 234 1 binary \N f \N \N 5e/5ecaba56ca51cc853eefeac66320eb0eb2a339b2 8347 5ecaba56ca51cc853eefeac66320eb0eb2a339b2 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -228 image \N \N Uzbekistan res.country Country image 235 1 binary \N f \N \N 06/064d41df037975327e38ac78ce0adfd6c988cfde 1552 064d41df037975327e38ac78ce0adfd6c988cfde image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -229 image \N \N Holy See (Vatican City State) res.country Country image 236 1 binary \N f \N \N 2e/2ea84e686d0b1e7a304e516d412d19f72e005650 14564 2ea84e686d0b1e7a304e516d412d19f72e005650 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -230 image \N \N Saint Vincent and the Grenadines res.country Country image 237 1 binary \N f \N \N 27/27f00ac0b0aa70ff444609cc914ef43bc9b1f1ba 2681 27f00ac0b0aa70ff444609cc914ef43bc9b1f1ba image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -231 image \N \N Venezuela res.country Country image 238 1 binary \N f \N \N 30/308470b29452e6caa802d2baa6154b782d4e5337 3851 308470b29452e6caa802d2baa6154b782d4e5337 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -232 image \N \N Virgin Islands (British) res.country Country image 239 1 binary \N f \N \N 76/766eb78ec60d2577675a1cb6cf577fda07e6b0fc 10430 766eb78ec60d2577675a1cb6cf577fda07e6b0fc image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -233 image \N \N Virgin Islands (USA) res.country Country image 240 1 binary \N f \N \N 5f/5f143ee08138c756a5db88099100b8959f7de1a7 22969 5f143ee08138c756a5db88099100b8959f7de1a7 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -234 image \N \N Vietnam res.country Country image 241 1 binary \N f \N \N b6/b61e8bd9e2859d66cac2161066ae25e47d454a7b 2734 b61e8bd9e2859d66cac2161066ae25e47d454a7b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -235 image \N \N Vanuatu res.country Country image 242 1 binary \N f \N \N 5f/5fce0d5064a9e755c00ddab5e0a2446dac65cf67 7570 5fce0d5064a9e755c00ddab5e0a2446dac65cf67 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -236 image \N \N Samoa res.country Country image 244 1 binary \N f \N \N 17/1723a6d1199242cda82c657fa517f3e066267d7b 2261 1723a6d1199242cda82c657fa517f3e066267d7b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -237 image \N \N Yemen res.country Country image 245 1 binary \N f \N \N 0c/0c45faf5b09ce9b7c9fbb6bd1a7787f24d24ab86 617 0c45faf5b09ce9b7c9fbb6bd1a7787f24d24ab86 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -238 image \N \N South Africa res.country Country image 247 1 binary \N f \N \N ff/ff98b7370bc86126f47410cb904eed6f1905f348 5823 ff98b7370bc86126f47410cb904eed6f1905f348 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -239 image \N \N Zambia res.country Country image 248 1 binary \N f \N \N a1/a14c1deedef19394c69d5b706dfb3fef638f143e 3924 a14c1deedef19394c69d5b706dfb3fef638f143e image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -240 image \N \N Zimbabwe res.country Country image 249 1 binary \N f \N \N 70/70f1563175ceebf5671eccbcab49b4d38d30345c 4570 70f1563175ceebf5671eccbcab49b4d38d30345c image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -241 image \N \N Kosovo res.country Country image 250 1 binary \N f \N \N 6c/6cf0e8002c646e1fbd42bc75d4c82de01b4c8290 2581 6cf0e8002c646e1fbd42bc75d4c82de01b4c8290 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -242 web_icon_data \N \N Dashboards ir.ui.menu Menu web_icon_data 1 1 binary \N f \N \N ab/ab7e6730db0c9255c1a5c4373a2dec39f94058e5 9168 ab7e6730db0c9255c1a5c4373a2dec39f94058e5 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -243 web_icon_data \N \N Settings ir.ui.menu Menu web_icon_data 4 1 binary \N f \N \N b8/b8f9001425cfd0ef0315797909281b912817643a 9020 b8f9001425cfd0ef0315797909281b912817643a image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -244 web_icon_data \N \N Apps ir.ui.menu Menu web_icon_data 5 1 binary \N f \N \N a3/a330920abcef2433621d6bb985bc24828d77f77b 9180 a330920abcef2433621d6bb985bc24828d77f77b image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -245 web_icon_data \N \N Tests ir.ui.menu Menu web_icon_data 18 1 binary \N f \N \N b8/b859f7412e47ac25d7bdc270d6ae08156fc61e77 7636 b859f7412e47ac25d7bdc270d6ae08156fc61e77 image/png image t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -246 /web/content/246-91bd38d/web.assets_common.0.css web.assets_common.0.css \N \N ir.ui.view View \N 0 1 binary /web/content/246-91bd38d/web.assets_common.0.css t \N \N 5e/5ea665b139e346ae0bfd471630b9f64e48f4f11c 134403 5ea665b139e346ae0bfd471630b9f64e48f4f11c text/css /* /web/static/lib/bootstrap/scss/_functions.scss defined in bundle 'web.assets_common' */\n/* /web/static/lib/bootstrap/scss/_mixins.scss defined in bundle 'web.assets_common' */\n/* /web/static/src/scss/utils.scss defined in bundle 'web.assets_common' */\n/* /web/static/src/scss/bs_mixins_overrides.scss defined in bundle 'web.assets_common' */\n/* /web/static/src/scss/primary_variables.scss defined in bundle 'web.assets_common' */\n/* /web_editor/static/src/scss/web_editor.variables.scss defined in bundle 'web.assets_common' */\n/* /web/static/src/scss/secondary_variables.scss defined in bundle 'web.assets_common' */\n/* /web/static/lib/bootstrap/scss/_variables.scss defined in bundle 'web.assets_common' */\n/* /web/static/lib/jquery.ui/jquery-ui.css defined in bundle 'web.assets_common' */\n .ui-helper-hidden{display: none;} .ui-helper-hidden-accessible{border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;} .ui-helper-reset{margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;} .ui-helper-clearfix:before, .ui-helper-clearfix:after{content: ""; display: table; border-collapse: collapse;} .ui-helper-clearfix:after{clear: both;} .ui-helper-clearfix{min-height: 0;} .ui-helper-zfix{width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0);} .ui-front{z-index: 100;} .ui-state-disabled{cursor: default !important;} .ui-icon{display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat;} .ui-widget-overlay{position: fixed; top: 0; left: 0; width: 100%; height: 100%;} .ui-draggable-handle{-ms-touch-action: none; touch-action: none;} .ui-resizable{position: relative;} .ui-resizable-handle{position: absolute; font-size: 0.1px; display: block; -ms-touch-action: none; touch-action: none;} .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle{display: none;} .ui-resizable-n{cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0;} .ui-resizable-s{cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0;} .ui-resizable-e{cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%;} .ui-resizable-w{cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%;} .ui-resizable-se{cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px;} .ui-resizable-sw{cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px;} .ui-resizable-nw{cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px;} .ui-resizable-ne{cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} .ui-selectable{-ms-touch-action: none; touch-action: none;} .ui-selectable-helper{position: absolute; z-index: 100; border: 1px dotted black;} .ui-sortable-handle{-ms-touch-action: none; touch-action: none;} .ui-autocomplete{position: absolute; top: 0; left: 0; cursor: default;} .ui-datepicker{width: 17em; padding: .2em .2em 0; display: none;} .ui-datepicker .ui-datepicker-header{position: relative; padding: .2em 0;} .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{position: absolute; top: 2px; width: 1.8em; height: 1.8em;} .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover{top: 1px;} .ui-datepicker .ui-datepicker-prev{left: 2px;} .ui-datepicker .ui-datepicker-next{right: 2px;} .ui-datepicker .ui-datepicker-prev-hover{left: 1px;} .ui-datepicker .ui-datepicker-next-hover{right: 1px;} .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px;} .ui-datepicker .ui-datepicker-title{margin: 0 2.3em; line-height: 1.8em; text-align: center;} .ui-datepicker .ui-datepicker-title select{font-size: 1em; margin: 1px 0;} .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{width: 45%;} .ui-datepicker table{width: 100%; font-size: .9em; border-collapse: collapse; margin: 0 0 .4em;} .ui-datepicker th{padding: .7em .3em; text-align: center; font-weight: bold; border: 0;} .ui-datepicker td{border: 0; padding: 1px;} .ui-datepicker td span, .ui-datepicker td a{display: block; padding: .2em; text-align: right; text-decoration: none;} .ui-datepicker .ui-datepicker-buttonpane{background-image: none; margin: .7em 0 0 0; padding: 0 .2em; border-left: 0; border-right: 0; border-bottom: 0;} .ui-datepicker .ui-datepicker-buttonpane button{float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width: auto; overflow: visible;} .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float: left;} .ui-datepicker.ui-datepicker-multi{width: auto;} .ui-datepicker-multi .ui-datepicker-group{float: left;} .ui-datepicker-multi .ui-datepicker-group table{width: 95%; margin: 0 auto .4em;} .ui-datepicker-multi-2 .ui-datepicker-group{width: 50%;} .ui-datepicker-multi-3 .ui-datepicker-group{width: 33.3%;} .ui-datepicker-multi-4 .ui-datepicker-group{width: 25%;} .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width: 0;} .ui-datepicker-multi .ui-datepicker-buttonpane{clear: left;} .ui-datepicker-row-break{clear: both; width: 100%; font-size: 0;} .ui-datepicker-rtl{direction: rtl;} .ui-datepicker-rtl .ui-datepicker-prev{right: 2px; left: auto;} .ui-datepicker-rtl .ui-datepicker-next{left: 2px; right: auto;} .ui-datepicker-rtl .ui-datepicker-prev:hover{right: 1px; left: auto;} .ui-datepicker-rtl .ui-datepicker-next:hover{left: 1px; right: auto;} .ui-datepicker-rtl .ui-datepicker-buttonpane{clear: right;} .ui-datepicker-rtl .ui-datepicker-buttonpane button{float: left;} .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group{float: right;} .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width: 0; border-left-width: 1px;} .ui-menu{list-style: none; padding: 0; margin: 0; display: block; outline: none;} .ui-menu .ui-menu{position: absolute;} .ui-menu .ui-menu-item{position: relative; margin: 0; padding: 3px 1em 3px .4em; cursor: pointer; min-height: 0; list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");} .ui-menu .ui-menu-divider{margin: 5px 0; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0;} .ui-menu .ui-state-focus, .ui-menu .ui-state-active{margin: -1px;} .ui-menu-icons{position: relative;} .ui-menu-icons .ui-menu-item{padding-left: 2em;} .ui-menu .ui-icon{position: absolute; top: 0; bottom: 0; left: .2em; margin: auto 0;} .ui-menu .ui-menu-icon{left: auto; right: 0;} .ui-tooltip{padding: 8px; position: absolute; z-index: 9999; max-width: 300px; -webkit-box-shadow: 0 0 5px #aaa; box-shadow: 0 0 5px #aaa;} body .ui-tooltip{border-width: 2px;} .ui-widget{font-family: Arial,Helvetica,sans-serif; font-size: 1em;} .ui-widget .ui-widget{font-size: 1em;} .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button{font-family: Arial,Helvetica,sans-serif; font-size: 1em;} .ui-widget-content{border: 1px solid #dddddd; background: #ffffff; color: #333333;} .ui-widget-content a{color: #333333;} .ui-widget-header{border: 1px solid #dddddd; background: #e9e9e9; color: #333333; font-weight: bold;} .ui-widget-header a{color: #333333;} .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{border: 1px solid #c5c5c5; background: #f6f6f6; font-weight: normal; color: #454545;} .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited{color: #454545; text-decoration: none;} .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus{border: 1px solid #cccccc; background: #ededed; font-weight: normal; color: #2b2b2b;} .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited{color: #2b2b2b; text-decoration: none;} .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active{border: 1px solid #003eff; background: #007fff; font-weight: normal; color: #ffffff;} .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited{color: #ffffff; text-decoration: none;} .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight{border: 1px solid #dad55e; background: #fffa90; color: #777620;} .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a{color: #777620;} .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error{border: 1px solid #f1a899; background: #fddfdf; color: #5f3f3f;} .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a{color: #5f3f3f;} .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text{color: #5f3f3f;} .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary{font-weight: bold;} .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary{opacity: .7; filter:Alpha(Opacity=70); font-weight: normal;} .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled{opacity: .35; filter:Alpha(Opacity=35); background-image: none;} .ui-state-disabled .ui-icon{filter:Alpha(Opacity=35);} .ui-icon{width: 16px; height: 16px;} .ui-icon, .ui-widget-content .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_444444_256x240.png");} .ui-widget-header .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_444444_256x240.png");} .ui-state-default .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_777777_256x240.png");} .ui-state-hover .ui-icon, .ui-state-focus .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_555555_256x240.png");} .ui-state-active .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_ffffff_256x240.png");} .ui-state-highlight .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_777620_256x240.png");} .ui-state-error .ui-icon, .ui-state-error-text .ui-icon{background-image: url("/web/static/lib/jquery.ui/images/ui-icons_cc0000_256x240.png");} .ui-icon-blank{background-position: 16px 16px;} .ui-icon-carat-1-n{background-position: 0 0;} .ui-icon-carat-1-ne{background-position: -16px 0;} .ui-icon-carat-1-e{background-position: -32px 0;} .ui-icon-carat-1-se{background-position: -48px 0;} .ui-icon-carat-1-s{background-position: -64px 0;} .ui-icon-carat-1-sw{background-position: -80px 0;} .ui-icon-carat-1-w{background-position: -96px 0;} .ui-icon-carat-1-nw{background-position: -112px 0;} .ui-icon-carat-2-n-s{background-position: -128px 0;} .ui-icon-carat-2-e-w{background-position: -144px 0;} .ui-icon-triangle-1-n{background-position: 0 -16px;} .ui-icon-triangle-1-ne{background-position: -16px -16px;} .ui-icon-triangle-1-e{background-position: -32px -16px;} .ui-icon-triangle-1-se{background-position: -48px -16px;} .ui-icon-triangle-1-s{background-position: -64px -16px;} .ui-icon-triangle-1-sw{background-position: -80px -16px;} .ui-icon-triangle-1-w{background-position: -96px -16px;} .ui-icon-triangle-1-nw{background-position: -112px -16px;} .ui-icon-triangle-2-n-s{background-position: -128px -16px;} .ui-icon-triangle-2-e-w{background-position: -144px -16px;} .ui-icon-arrow-1-n{background-position: 0 -32px;} .ui-icon-arrow-1-ne{background-position: -16px -32px;} .ui-icon-arrow-1-e{background-position: -32px -32px;} .ui-icon-arrow-1-se{background-position: -48px -32px;} .ui-icon-arrow-1-s{background-position: -64px -32px;} .ui-icon-arrow-1-sw{background-position: -80px -32px;} .ui-icon-arrow-1-w{background-position: -96px -32px;} .ui-icon-arrow-1-nw{background-position: -112px -32px;} .ui-icon-arrow-2-n-s{background-position: -128px -32px;} .ui-icon-arrow-2-ne-sw{background-position: -144px -32px;} .ui-icon-arrow-2-e-w{background-position: -160px -32px;} .ui-icon-arrow-2-se-nw{background-position: -176px -32px;} .ui-icon-arrowstop-1-n{background-position: -192px -32px;} .ui-icon-arrowstop-1-e{background-position: -208px -32px;} .ui-icon-arrowstop-1-s{background-position: -224px -32px;} .ui-icon-arrowstop-1-w{background-position: -240px -32px;} .ui-icon-arrowthick-1-n{background-position: 0 -48px;} .ui-icon-arrowthick-1-ne{background-position: -16px -48px;} .ui-icon-arrowthick-1-e{background-position: -32px -48px;} .ui-icon-arrowthick-1-se{background-position: -48px -48px;} .ui-icon-arrowthick-1-s{background-position: -64px -48px;} .ui-icon-arrowthick-1-sw{background-position: -80px -48px;} .ui-icon-arrowthick-1-w{background-position: -96px -48px;} .ui-icon-arrowthick-1-nw{background-position: -112px -48px;} .ui-icon-arrowthick-2-n-s{background-position: -128px -48px;} .ui-icon-arrowthick-2-ne-sw{background-position: -144px -48px;} .ui-icon-arrowthick-2-e-w{background-position: -160px -48px;} .ui-icon-arrowthick-2-se-nw{background-position: -176px -48px;} .ui-icon-arrowthickstop-1-n{background-position: -192px -48px;} .ui-icon-arrowthickstop-1-e{background-position: -208px -48px;} .ui-icon-arrowthickstop-1-s{background-position: -224px -48px;} .ui-icon-arrowthickstop-1-w{background-position: -240px -48px;} .ui-icon-arrowreturnthick-1-w{background-position: 0 -64px;} .ui-icon-arrowreturnthick-1-n{background-position: -16px -64px;} .ui-icon-arrowreturnthick-1-e{background-position: -32px -64px;} .ui-icon-arrowreturnthick-1-s{background-position: -48px -64px;} .ui-icon-arrowreturn-1-w{background-position: -64px -64px;} .ui-icon-arrowreturn-1-n{background-position: -80px -64px;} .ui-icon-arrowreturn-1-e{background-position: -96px -64px;} .ui-icon-arrowreturn-1-s{background-position: -112px -64px;} .ui-icon-arrowrefresh-1-w{background-position: -128px -64px;} .ui-icon-arrowrefresh-1-n{background-position: -144px -64px;} .ui-icon-arrowrefresh-1-e{background-position: -160px -64px;} .ui-icon-arrowrefresh-1-s{background-position: -176px -64px;} .ui-icon-arrow-4{background-position: 0 -80px;} .ui-icon-arrow-4-diag{background-position: -16px -80px;} .ui-icon-extlink{background-position: -32px -80px;} .ui-icon-newwin{background-position: -48px -80px;} .ui-icon-refresh{background-position: -64px -80px;} .ui-icon-shuffle{background-position: -80px -80px;} .ui-icon-transfer-e-w{background-position: -96px -80px;} .ui-icon-transferthick-e-w{background-position: -112px -80px;} .ui-icon-folder-collapsed{background-position: 0 -96px;} .ui-icon-folder-open{background-position: -16px -96px;} .ui-icon-document{background-position: -32px -96px;} .ui-icon-document-b{background-position: -48px -96px;} .ui-icon-note{background-position: -64px -96px;} .ui-icon-mail-closed{background-position: -80px -96px;} .ui-icon-mail-open{background-position: -96px -96px;} .ui-icon-suitcase{background-position: -112px -96px;} .ui-icon-comment{background-position: -128px -96px;} .ui-icon-person{background-position: -144px -96px;} .ui-icon-print{background-position: -160px -96px;} .ui-icon-trash{background-position: -176px -96px;} .ui-icon-locked{background-position: -192px -96px;} .ui-icon-unlocked{background-position: -208px -96px;} .ui-icon-bookmark{background-position: -224px -96px;} .ui-icon-tag{background-position: -240px -96px;} .ui-icon-home{background-position: 0 -112px;} .ui-icon-flag{background-position: -16px -112px;} .ui-icon-calendar{background-position: -32px -112px;} .ui-icon-cart{background-position: -48px -112px;} .ui-icon-pencil{background-position: -64px -112px;} .ui-icon-clock{background-position: -80px -112px;} .ui-icon-disk{background-position: -96px -112px;} .ui-icon-calculator{background-position: -112px -112px;} .ui-icon-zoomin{background-position: -128px -112px;} .ui-icon-zoomout{background-position: -144px -112px;} .ui-icon-search{background-position: -160px -112px;} .ui-icon-wrench{background-position: -176px -112px;} .ui-icon-gear{background-position: -192px -112px;} .ui-icon-heart{background-position: -208px -112px;} .ui-icon-star{background-position: -224px -112px;} .ui-icon-link{background-position: -240px -112px;} .ui-icon-cancel{background-position: 0 -128px;} .ui-icon-plus{background-position: -16px -128px;} .ui-icon-plusthick{background-position: -32px -128px;} .ui-icon-minus{background-position: -48px -128px;} .ui-icon-minusthick{background-position: -64px -128px;} .ui-icon-close{background-position: -80px -128px;} .ui-icon-closethick{background-position: -96px -128px;} .ui-icon-key{background-position: -112px -128px;} .ui-icon-lightbulb{background-position: -128px -128px;} .ui-icon-scissors{background-position: -144px -128px;} .ui-icon-clipboard{background-position: -160px -128px;} .ui-icon-copy{background-position: -176px -128px;} .ui-icon-contact{background-position: -192px -128px;} .ui-icon-image{background-position: -208px -128px;} .ui-icon-video{background-position: -224px -128px;} .ui-icon-script{background-position: -240px -128px;} .ui-icon-alert{background-position: 0 -144px;} .ui-icon-info{background-position: -16px -144px;} .ui-icon-notice{background-position: -32px -144px;} .ui-icon-help{background-position: -48px -144px;} .ui-icon-check{background-position: -64px -144px;} .ui-icon-bullet{background-position: -80px -144px;} .ui-icon-radio-on{background-position: -96px -144px;} .ui-icon-radio-off{background-position: -112px -144px;} .ui-icon-pin-w{background-position: -128px -144px;} .ui-icon-pin-s{background-position: -144px -144px;} .ui-icon-play{background-position: 0 -160px;} .ui-icon-pause{background-position: -16px -160px;} .ui-icon-seek-next{background-position: -32px -160px;} .ui-icon-seek-prev{background-position: -48px -160px;} .ui-icon-seek-end{background-position: -64px -160px;} .ui-icon-seek-start{background-position: -80px -160px;} .ui-icon-seek-first{background-position: -80px -160px;} .ui-icon-stop{background-position: -96px -160px;} .ui-icon-eject{background-position: -112px -160px;} .ui-icon-volume-off{background-position: -128px -160px;} .ui-icon-volume-on{background-position: -144px -160px;} .ui-icon-power{background-position: 0 -176px;} .ui-icon-signal-diag{background-position: -16px -176px;} .ui-icon-signal{background-position: -32px -176px;} .ui-icon-battery-0{background-position: -48px -176px;} .ui-icon-battery-1{background-position: -64px -176px;} .ui-icon-battery-2{background-position: -80px -176px;} .ui-icon-battery-3{background-position: -96px -176px;} .ui-icon-circle-plus{background-position: 0 -192px;} .ui-icon-circle-minus{background-position: -16px -192px;} .ui-icon-circle-close{background-position: -32px -192px;} .ui-icon-circle-triangle-e{background-position: -48px -192px;} .ui-icon-circle-triangle-s{background-position: -64px -192px;} .ui-icon-circle-triangle-w{background-position: -80px -192px;} .ui-icon-circle-triangle-n{background-position: -96px -192px;} .ui-icon-circle-arrow-e{background-position: -112px -192px;} .ui-icon-circle-arrow-s{background-position: -128px -192px;} .ui-icon-circle-arrow-w{background-position: -144px -192px;} .ui-icon-circle-arrow-n{background-position: -160px -192px;} .ui-icon-circle-zoomin{background-position: -176px -192px;} .ui-icon-circle-zoomout{background-position: -192px -192px;} .ui-icon-circle-check{background-position: -208px -192px;} .ui-icon-circlesmall-plus{background-position: 0 -208px;} .ui-icon-circlesmall-minus{background-position: -16px -208px;} .ui-icon-circlesmall-close{background-position: -32px -208px;} .ui-icon-squaresmall-plus{background-position: -48px -208px;} .ui-icon-squaresmall-minus{background-position: -64px -208px;} .ui-icon-squaresmall-close{background-position: -80px -208px;} .ui-icon-grip-dotted-vertical{background-position: 0 -224px;} .ui-icon-grip-dotted-horizontal{background-position: -16px -224px;} .ui-icon-grip-solid-vertical{background-position: -32px -224px;} .ui-icon-grip-solid-horizontal{background-position: -48px -224px;} .ui-icon-gripsmall-diagonal-se{background-position: -64px -224px;} .ui-icon-grip-diagonal-se{background-position: -80px -224px;} .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl{border-top-left-radius: 3px;} .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr{border-top-right-radius: 3px;} .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl{border-bottom-left-radius: 3px;} .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br{border-bottom-right-radius: 3px;} .ui-widget-overlay{background: #aaaaaa; opacity: .3; filter: Alpha(Opacity=30);} .ui-widget-shadow{margin: 0px 0 0 0px; padding: 5px; background: #666666; opacity: .3; filter: Alpha(Opacity=30); border-radius: 8px;} \n/* /web/static/lib/fontawesome/css/font-awesome.css defined in bundle 'web.assets_common' */\n @font-face{font-family: 'FontAwesome'; src: url('/web/static/lib/fontawesome/css/../fonts/fontawesome-webfont.eot?v=4.7.0'); src: url('/web/static/lib/fontawesome/css/../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('/web/static/lib/fontawesome/css/../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('/web/static/lib/fontawesome/css/../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/web/static/lib/fontawesome/css/../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('/web/static/lib/fontawesome/css/../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); font-weight: normal; font-style: normal;} .fa{display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;} .fa-lg{font-size: 1.33333333em; line-height: 0.75em; vertical-align: -15%;} .fa-2x{font-size: 2em;} .fa-3x{font-size: 3em;} .fa-4x{font-size: 4em;} .fa-5x{font-size: 5em;} .fa-fw{width: 1.28571429em; text-align: center;} .fa-ul{padding-left: 0; margin-left: 2.14285714em; list-style-type: none;} .fa-ul > li{position: relative;} .fa-li{position: absolute; left: -2.14285714em; width: 2.14285714em; top: 0.14285714em; text-align: center;} .fa-li.fa-lg{left: -1.85714286em;} .fa-border{padding: .2em .25em .15em; border: solid 0.08em #eeeeee; border-radius: .1em;} .fa-pull-left{float: left;} .fa-pull-right{float: right;} .fa.fa-pull-left{margin-right: .3em;} .fa.fa-pull-right{margin-left: .3em;} .pull-right{float: right;} .pull-left{float: left;} .fa.pull-left{margin-right: .3em;} .fa.pull-right{margin-left: .3em;} .fa-spin{-webkit-animation: fa-spin 2s infinite linear; animation: fa-spin 2s infinite linear;} .fa-pulse{-webkit-animation: fa-spin 1s infinite steps(8); animation: fa-spin 1s infinite steps(8);} @-webkit-keyframes fa-spin{0%{-webkit-transform: rotate(0deg); transform: rotate(0deg);}100%{-webkit-transform: rotate(359deg); transform: rotate(359deg);}} @keyframes fa-spin{0%{-webkit-transform: rotate(0deg); transform: rotate(0deg);}100%{-webkit-transform: rotate(359deg); transform: rotate(359deg);}} .fa-rotate-90{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg);} .fa-rotate-180{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg);} .fa-rotate-270{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg);} .fa-flip-horizontal{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; -webkit-transform: scale(-1, 1); -ms-transform: scale(-1, 1); transform: scale(-1, 1);} .fa-flip-vertical{-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(1, -1); -ms-transform: scale(1, -1); transform: scale(1, -1);} :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical{filter: none;} .fa-stack{position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle;} .fa-stack-1x, .fa-stack-2x{position: absolute; left: 0; width: 100%; text-align: center;} .fa-stack-1x{line-height: inherit;} .fa-stack-2x{font-size: 2em;} .fa-inverse{color: #ffffff;} .fa-glass:before{content: "\\f000";} .fa-music:before{content: "\\f001";} .fa-search:before{content: "\\f002";} .fa-envelope-o:before{content: "\\f003";} .fa-heart:before{content: "\\f004";} .fa-star:before{content: "\\f005";} .fa-star-o:before{content: "\\f006";} .fa-user:before{content: "\\f007";} .fa-film:before{content: "\\f008";} .fa-th-large:before{content: "\\f009";} .fa-th:before{content: "\\f00a";} .fa-th-list:before{content: "\\f00b";} .fa-check:before{content: "\\f00c";} .fa-remove:before, .fa-close:before, .fa-times:before{content: "\\f00d";} .fa-search-plus:before{content: "\\f00e";} .fa-search-minus:before{content: "\\f010";} .fa-power-off:before{content: "\\f011";} .fa-signal:before{content: "\\f012";} .fa-gear:before, .fa-cog:before{content: "\\f013";} .fa-trash-o:before{content: "\\f014";} .fa-home:before{content: "\\f015";} .fa-file-o:before{content: "\\f016";} .fa-clock-o:before{content: "\\f017";} .fa-road:before{content: "\\f018";} .fa-download:before{content: "\\f019";} .fa-arrow-circle-o-down:before{content: "\\f01a";} .fa-arrow-circle-o-up:before{content: "\\f01b";} .fa-inbox:before{content: "\\f01c";} .fa-play-circle-o:before{content: "\\f01d";} .fa-rotate-right:before, .fa-repeat:before{content: "\\f01e";} .fa-refresh:before{content: "\\f021";} .fa-list-alt:before{content: "\\f022";} .fa-lock:before{content: "\\f023";} .fa-flag:before{content: "\\f024";} .fa-headphones:before{content: "\\f025";} .fa-volume-off:before{content: "\\f026";} .fa-volume-down:before{content: "\\f027";} .fa-volume-up:before{content: "\\f028";} .fa-qrcode:before{content: "\\f029";} .fa-barcode:before{content: "\\f02a";} .fa-tag:before{content: "\\f02b";} .fa-tags:before{content: "\\f02c";} .fa-book:before{content: "\\f02d";} .fa-bookmark:before{content: "\\f02e";} .fa-print:before{content: "\\f02f";} .fa-camera:before{content: "\\f030";} .fa-font:before{content: "\\f031";} .fa-bold:before{content: "\\f032";} .fa-italic:before{content: "\\f033";} .fa-text-height:before{content: "\\f034";} .fa-text-width:before{content: "\\f035";} .fa-align-left:before{content: "\\f036";} .fa-align-center:before{content: "\\f037";} .fa-align-right:before{content: "\\f038";} .fa-align-justify:before{content: "\\f039";} .fa-list:before{content: "\\f03a";} .fa-dedent:before, .fa-outdent:before{content: "\\f03b";} .fa-indent:before{content: "\\f03c";} .fa-video-camera:before{content: "\\f03d";} .fa-photo:before, .fa-image:before, .fa-picture-o:before{content: "\\f03e";} .fa-pencil:before{content: "\\f040";} .fa-map-marker:before{content: "\\f041";} .fa-adjust:before{content: "\\f042";} .fa-tint:before{content: "\\f043";} .fa-edit:before, .fa-pencil-square-o:before{content: "\\f044";} .fa-share-square-o:before{content: "\\f045";} .fa-check-square-o:before{content: "\\f046";} .fa-arrows:before{content: "\\f047";} .fa-step-backward:before{content: "\\f048";} .fa-fast-backward:before{content: "\\f049";} .fa-backward:before{content: "\\f04a";} .fa-play:before{content: "\\f04b";} .fa-pause:before{content: "\\f04c";} .fa-stop:before{content: "\\f04d";} .fa-forward:before{content: "\\f04e";} .fa-fast-forward:before{content: "\\f050";} .fa-step-forward:before{content: "\\f051";} .fa-eject:before{content: "\\f052";} .fa-chevron-left:before{content: "\\f053";} .fa-chevron-right:before{content: "\\f054";} .fa-plus-circle:before{content: "\\f055";} .fa-minus-circle:before{content: "\\f056";} .fa-times-circle:before{content: "\\f057";} .fa-check-circle:before{content: "\\f058";} .fa-question-circle:before{content: "\\f059";} .fa-info-circle:before{content: "\\f05a";} .fa-crosshairs:before{content: "\\f05b";} .fa-times-circle-o:before{content: "\\f05c";} .fa-check-circle-o:before{content: "\\f05d";} .fa-ban:before{content: "\\f05e";} .fa-arrow-left:before{content: "\\f060";} .fa-arrow-right:before{content: "\\f061";} .fa-arrow-up:before{content: "\\f062";} .fa-arrow-down:before{content: "\\f063";} .fa-mail-forward:before, .fa-share:before{content: "\\f064";} .fa-expand:before{content: "\\f065";} .fa-compress:before{content: "\\f066";} .fa-plus:before{content: "\\f067";} .fa-minus:before{content: "\\f068";} .fa-asterisk:before{content: "\\f069";} .fa-exclamation-circle:before{content: "\\f06a";} .fa-gift:before{content: "\\f06b";} .fa-leaf:before{content: "\\f06c";} .fa-fire:before{content: "\\f06d";} .fa-eye:before{content: "\\f06e";} .fa-eye-slash:before{content: "\\f070";} .fa-warning:before, .fa-exclamation-triangle:before{content: "\\f071";} .fa-plane:before{content: "\\f072";} .fa-calendar:before{content: "\\f073";} .fa-random:before{content: "\\f074";} .fa-comment:before{content: "\\f075";} .fa-magnet:before{content: "\\f076";} .fa-chevron-up:before{content: "\\f077";} .fa-chevron-down:before{content: "\\f078";} .fa-retweet:before{content: "\\f079";} .fa-shopping-cart:before{content: "\\f07a";} .fa-folder:before{content: "\\f07b";} .fa-folder-open:before{content: "\\f07c";} .fa-arrows-v:before{content: "\\f07d";} .fa-arrows-h:before{content: "\\f07e";} .fa-bar-chart-o:before, .fa-bar-chart:before{content: "\\f080";} .fa-twitter-square:before{content: "\\f081";} .fa-facebook-square:before{content: "\\f082";} .fa-camera-retro:before{content: "\\f083";} .fa-key:before{content: "\\f084";} .fa-gears:before, .fa-cogs:before{content: "\\f085";} .fa-comments:before{content: "\\f086";} .fa-thumbs-o-up:before{content: "\\f087";} .fa-thumbs-o-down:before{content: "\\f088";} .fa-star-half:before{content: "\\f089";} .fa-heart-o:before{content: "\\f08a";} .fa-sign-out:before{content: "\\f08b";} .fa-linkedin-square:before{content: "\\f08c";} .fa-thumb-tack:before{content: "\\f08d";} .fa-external-link:before{content: "\\f08e";} .fa-sign-in:before{content: "\\f090";} .fa-trophy:before{content: "\\f091";} .fa-github-square:before{content: "\\f092";} .fa-upload:before{content: "\\f093";} .fa-lemon-o:before{content: "\\f094";} .fa-phone:before{content: "\\f095";} .fa-square-o:before{content: "\\f096";} .fa-bookmark-o:before{content: "\\f097";} .fa-phone-square:before{content: "\\f098";} .fa-twitter:before{content: "\\f099";} .fa-facebook-f:before, .fa-facebook:before{content: "\\f09a";} .fa-github:before{content: "\\f09b";} .fa-unlock:before{content: "\\f09c";} .fa-credit-card:before{content: "\\f09d";} .fa-feed:before, .fa-rss:before{content: "\\f09e";} .fa-hdd-o:before{content: "\\f0a0";} .fa-bullhorn:before{content: "\\f0a1";} .fa-bell:before{content: "\\f0f3";} .fa-certificate:before{content: "\\f0a3";} .fa-hand-o-right:before{content: "\\f0a4";} .fa-hand-o-left:before{content: "\\f0a5";} .fa-hand-o-up:before{content: "\\f0a6";} .fa-hand-o-down:before{content: "\\f0a7";} .fa-arrow-circle-left:before{content: "\\f0a8";} .fa-arrow-circle-right:before{content: "\\f0a9";} .fa-arrow-circle-up:before{content: "\\f0aa";} .fa-arrow-circle-down:before{content: "\\f0ab";} .fa-globe:before{content: "\\f0ac";} .fa-wrench:before{content: "\\f0ad";} .fa-tasks:before{content: "\\f0ae";} .fa-filter:before{content: "\\f0b0";} .fa-briefcase:before{content: "\\f0b1";} .fa-arrows-alt:before{content: "\\f0b2";} .fa-group:before, .fa-users:before{content: "\\f0c0";} .fa-chain:before, .fa-link:before{content: "\\f0c1";} .fa-cloud:before{content: "\\f0c2";} .fa-flask:before{content: "\\f0c3";} .fa-cut:before, .fa-scissors:before{content: "\\f0c4";} .fa-copy:before, .fa-files-o:before{content: "\\f0c5";} .fa-paperclip:before{content: "\\f0c6";} .fa-save:before, .fa-floppy-o:before{content: "\\f0c7";} .fa-square:before{content: "\\f0c8";} .fa-navicon:before, .fa-reorder:before, .fa-bars:before{content: "\\f0c9";} .fa-list-ul:before{content: "\\f0ca";} .fa-list-ol:before{content: "\\f0cb";} .fa-strikethrough:before{content: "\\f0cc";} .fa-underline:before{content: "\\f0cd";} .fa-table:before{content: "\\f0ce";} .fa-magic:before{content: "\\f0d0";} .fa-truck:before{content: "\\f0d1";} .fa-pinterest:before{content: "\\f0d2";} .fa-pinterest-square:before{content: "\\f0d3";} .fa-google-plus-square:before{content: "\\f0d4";} .fa-google-plus:before{content: "\\f0d5";} .fa-money:before{content: "\\f0d6";} .fa-caret-down:before{content: "\\f0d7";} .fa-caret-up:before{content: "\\f0d8";} .fa-caret-left:before{content: "\\f0d9";} .fa-caret-right:before{content: "\\f0da";} .fa-columns:before{content: "\\f0db";} .fa-unsorted:before, .fa-sort:before{content: "\\f0dc";} .fa-sort-down:before, .fa-sort-desc:before{content: "\\f0dd";} .fa-sort-up:before, .fa-sort-asc:before{content: "\\f0de";} .fa-envelope:before{content: "\\f0e0";} .fa-linkedin:before{content: "\\f0e1";} .fa-rotate-left:before, .fa-undo:before{content: "\\f0e2";} .fa-legal:before, .fa-gavel:before{content: "\\f0e3";} .fa-dashboard:before, .fa-tachometer:before{content: "\\f0e4";} .fa-comment-o:before{content: "\\f0e5";} .fa-comments-o:before{content: "\\f0e6";} .fa-flash:before, .fa-bolt:before{content: "\\f0e7";} .fa-sitemap:before{content: "\\f0e8";} .fa-umbrella:before{content: "\\f0e9";} .fa-paste:before, .fa-clipboard:before{content: "\\f0ea";} .fa-lightbulb-o:before{content: "\\f0eb";} .fa-exchange:before{content: "\\f0ec";} .fa-cloud-download:before{content: "\\f0ed";} .fa-cloud-upload:before{content: "\\f0ee";} .fa-user-md:before{content: "\\f0f0";} .fa-stethoscope:before{content: "\\f0f1";} .fa-suitcase:before{content: "\\f0f2";} .fa-bell-o:before{content: "\\f0a2";} .fa-coffee:before{content: "\\f0f4";} .fa-cutlery:before{content: "\\f0f5";} .fa-file-text-o:before{content: "\\f0f6";} .fa-building-o:before{content: "\\f0f7";} .fa-hospital-o:before{content: "\\f0f8";} .fa-ambulance:before{content: "\\f0f9";} .fa-medkit:before{content: "\\f0fa";} .fa-fighter-jet:before{content: "\\f0fb";} .fa-beer:before{content: "\\f0fc";} .fa-h-square:before{content: "\\f0fd";} .fa-plus-square:before{content: "\\f0fe";} .fa-angle-double-left:before{content: "\\f100";} .fa-angle-double-right:before{content: "\\f101";} .fa-angle-double-up:before{content: "\\f102";} .fa-angle-double-down:before{content: "\\f103";} .fa-angle-left:before{content: "\\f104";} .fa-angle-right:before{content: "\\f105";} .fa-angle-up:before{content: "\\f106";} .fa-angle-down:before{content: "\\f107";} .fa-desktop:before{content: "\\f108";} .fa-laptop:before{content: "\\f109";} .fa-tablet:before{content: "\\f10a";} .fa-mobile-phone:before, .fa-mobile:before{content: "\\f10b";} .fa-circle-o:before{content: "\\f10c";} .fa-quote-left:before{content: "\\f10d";} .fa-quote-right:before{content: "\\f10e";} .fa-spinner:before{content: "\\f110";} .fa-circle:before{content: "\\f111";} .fa-mail-reply:before, .fa-reply:before{content: "\\f112";} .fa-github-alt:before{content: "\\f113";} .fa-folder-o:before{content: "\\f114";} .fa-folder-open-o:before{content: "\\f115";} .fa-smile-o:before{content: "\\f118";} .fa-frown-o:before{content: "\\f119";} .fa-meh-o:before{content: "\\f11a";} .fa-gamepad:before{content: "\\f11b";} .fa-keyboard-o:before{content: "\\f11c";} .fa-flag-o:before{content: "\\f11d";} .fa-flag-checkered:before{content: "\\f11e";} .fa-terminal:before{content: "\\f120";} .fa-code:before{content: "\\f121";} .fa-mail-reply-all:before, .fa-reply-all:before{content: "\\f122";} .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before{content: "\\f123";} .fa-location-arrow:before{content: "\\f124";} .fa-crop:before{content: "\\f125";} .fa-code-fork:before{content: "\\f126";} .fa-unlink:before, .fa-chain-broken:before{content: "\\f127";} .fa-question:before{content: "\\f128";} .fa-info:before{content: "\\f129";} .fa-exclamation:before{content: "\\f12a";} .fa-superscript:before{content: "\\f12b";} .fa-subscript:before{content: "\\f12c";} .fa-eraser:before{content: "\\f12d";} .fa-puzzle-piece:before{content: "\\f12e";} .fa-microphone:before{content: "\\f130";} .fa-microphone-slash:before{content: "\\f131";} .fa-shield:before{content: "\\f132";} .fa-calendar-o:before{content: "\\f133";} .fa-fire-extinguisher:before{content: "\\f134";} .fa-rocket:before{content: "\\f135";} .fa-maxcdn:before{content: "\\f136";} .fa-chevron-circle-left:before{content: "\\f137";} .fa-chevron-circle-right:before{content: "\\f138";} .fa-chevron-circle-up:before{content: "\\f139";} .fa-chevron-circle-down:before{content: "\\f13a";} .fa-html5:before{content: "\\f13b";} .fa-css3:before{content: "\\f13c";} .fa-anchor:before{content: "\\f13d";} .fa-unlock-alt:before{content: "\\f13e";} .fa-bullseye:before{content: "\\f140";} .fa-ellipsis-h:before{content: "\\f141";} .fa-ellipsis-v:before{content: "\\f142";} .fa-rss-square:before{content: "\\f143";} .fa-play-circle:before{content: "\\f144";} .fa-ticket:before{content: "\\f145";} .fa-minus-square:before{content: "\\f146";} .fa-minus-square-o:before{content: "\\f147";} .fa-level-up:before{content: "\\f148";} .fa-level-down:before{content: "\\f149";} .fa-check-square:before{content: "\\f14a";} .fa-pencil-square:before{content: "\\f14b";} .fa-external-link-square:before{content: "\\f14c";} .fa-share-square:before{content: "\\f14d";} .fa-compass:before{content: "\\f14e";} .fa-toggle-down:before, .fa-caret-square-o-down:before{content: "\\f150";} .fa-toggle-up:before, .fa-caret-square-o-up:before{content: "\\f151";} .fa-toggle-right:before, .fa-caret-square-o-right:before{content: "\\f152";} .fa-euro:before, .fa-eur:before{content: "\\f153";} .fa-gbp:before{content: "\\f154";} .fa-dollar:before, .fa-usd:before{content: "\\f155";} .fa-rupee:before, .fa-inr:before{content: "\\f156";} .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before{content: "\\f157";} .fa-ruble:before, .fa-rouble:before, .fa-rub:before{content: "\\f158";} .fa-won:before, .fa-krw:before{content: "\\f159";} .fa-bitcoin:before, .fa-btc:before{content: "\\f15a";} .fa-file:before{content: "\\f15b";} .fa-file-text:before{content: "\\f15c";} .fa-sort-alpha-asc:before{content: "\\f15d";} .fa-sort-alpha-desc:before{content: "\\f15e";} .fa-sort-amount-asc:before{content: "\\f160";} .fa-sort-amount-desc:before{content: "\\f161";} .fa-sort-numeric-asc:before{content: "\\f162";} .fa-sort-numeric-desc:before{content: "\\f163";} .fa-thumbs-up:before{content: "\\f164";} .fa-thumbs-down:before{content: "\\f165";} .fa-youtube-square:before{content: "\\f166";} .fa-youtube:before{content: "\\f167";} .fa-xing:before{content: "\\f168";} .fa-xing-square:before{content: "\\f169";} .fa-youtube-play:before{content: "\\f16a";} .fa-dropbox:before{content: "\\f16b";} .fa-stack-overflow:before{content: "\\f16c";} .fa-instagram:before{content: "\\f16d";} .fa-flickr:before{content: "\\f16e";} .fa-adn:before{content: "\\f170";} .fa-bitbucket:before{content: "\\f171";} .fa-bitbucket-square:before{content: "\\f172";} .fa-tumblr:before{content: "\\f173";} .fa-tumblr-square:before{content: "\\f174";} .fa-long-arrow-down:before{content: "\\f175";} .fa-long-arrow-up:before{content: "\\f176";} .fa-long-arrow-left:before{content: "\\f177";} .fa-long-arrow-right:before{content: "\\f178";} .fa-apple:before{content: "\\f179";} .fa-windows:before{content: "\\f17a";} .fa-android:before{content: "\\f17b";} .fa-linux:before{content: "\\f17c";} .fa-dribbble:before{content: "\\f17d";} .fa-skype:before{content: "\\f17e";} .fa-foursquare:before{content: "\\f180";} .fa-trello:before{content: "\\f181";} .fa-female:before{content: "\\f182";} .fa-male:before{content: "\\f183";} .fa-gittip:before, .fa-gratipay:before{content: "\\f184";} .fa-sun-o:before{content: "\\f185";} .fa-moon-o:before{content: "\\f186";} .fa-archive:before{content: "\\f187";} .fa-bug:before{content: "\\f188";} .fa-vk:before{content: "\\f189";} .fa-weibo:before{content: "\\f18a";} .fa-renren:before{content: "\\f18b";} .fa-pagelines:before{content: "\\f18c";} .fa-stack-exchange:before{content: "\\f18d";} .fa-arrow-circle-o-right:before{content: "\\f18e";} .fa-arrow-circle-o-left:before{content: "\\f190";} .fa-toggle-left:before, .fa-caret-square-o-left:before{content: "\\f191";} .fa-dot-circle-o:before{content: "\\f192";} .fa-wheelchair:before{content: "\\f193";} .fa-vimeo-square:before{content: "\\f194";} .fa-turkish-lira:before, .fa-try:before{content: "\\f195";} .fa-plus-square-o:before{content: "\\f196";} .fa-space-shuttle:before{content: "\\f197";} .fa-slack:before{content: "\\f198";} .fa-envelope-square:before{content: "\\f199";} .fa-wordpress:before{content: "\\f19a";} .fa-openid:before{content: "\\f19b";} .fa-institution:before, .fa-bank:before, .fa-university:before{content: "\\f19c";} .fa-mortar-board:before, .fa-graduation-cap:before{content: "\\f19d";} .fa-yahoo:before{content: "\\f19e";} .fa-google:before{content: "\\f1a0";} .fa-reddit:before{content: "\\f1a1";} .fa-reddit-square:before{content: "\\f1a2";} .fa-stumbleupon-circle:before{content: "\\f1a3";} .fa-stumbleupon:before{content: "\\f1a4";} .fa-delicious:before{content: "\\f1a5";} .fa-digg:before{content: "\\f1a6";} .fa-pied-piper-pp:before{content: "\\f1a7";} .fa-pied-piper-alt:before{content: "\\f1a8";} .fa-drupal:before{content: "\\f1a9";} .fa-joomla:before{content: "\\f1aa";} .fa-language:before{content: "\\f1ab";} .fa-fax:before{content: "\\f1ac";} .fa-building:before{content: "\\f1ad";} .fa-child:before{content: "\\f1ae";} .fa-paw:before{content: "\\f1b0";} .fa-spoon:before{content: "\\f1b1";} .fa-cube:before{content: "\\f1b2";} .fa-cubes:before{content: "\\f1b3";} .fa-behance:before{content: "\\f1b4";} .fa-behance-square:before{content: "\\f1b5";} .fa-steam:before{content: "\\f1b6";} .fa-steam-square:before{content: "\\f1b7";} .fa-recycle:before{content: "\\f1b8";} .fa-automobile:before, .fa-car:before{content: "\\f1b9";} .fa-cab:before, .fa-taxi:before{content: "\\f1ba";} .fa-tree:before{content: "\\f1bb";} .fa-spotify:before{content: "\\f1bc";} .fa-deviantart:before{content: "\\f1bd";} .fa-soundcloud:before{content: "\\f1be";} .fa-database:before{content: "\\f1c0";} .fa-file-pdf-o:before{content: "\\f1c1";} .fa-file-word-o:before{content: "\\f1c2";} .fa-file-excel-o:before{content: "\\f1c3";} .fa-file-powerpoint-o:before{content: "\\f1c4";} .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before{content: "\\f1c5";} .fa-file-zip-o:before, .fa-file-archive-o:before{content: "\\f1c6";} .fa-file-sound-o:before, .fa-file-audio-o:before{content: "\\f1c7";} .fa-file-movie-o:before, .fa-file-video-o:before{content: "\\f1c8";} .fa-file-code-o:before{content: "\\f1c9";} .fa-vine:before{content: "\\f1ca";} .fa-codepen:before{content: "\\f1cb";} .fa-jsfiddle:before{content: "\\f1cc";} .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before{content: "\\f1cd";} .fa-circle-o-notch:before{content: "\\f1ce";} .fa-ra:before, .fa-resistance:before, .fa-rebel:before{content: "\\f1d0";} .fa-ge:before, .fa-empire:before{content: "\\f1d1";} .fa-git-square:before{content: "\\f1d2";} .fa-git:before{content: "\\f1d3";} .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before{content: "\\f1d4";} .fa-tencent-weibo:before{content: "\\f1d5";} .fa-qq:before{content: "\\f1d6";} .fa-wechat:before, .fa-weixin:before{content: "\\f1d7";} .fa-send:before, .fa-paper-plane:before{content: "\\f1d8";} .fa-send-o:before, .fa-paper-plane-o:before{content: "\\f1d9";} .fa-history:before{content: "\\f1da";} .fa-circle-thin:before{content: "\\f1db";} .fa-header:before{content: "\\f1dc";} .fa-paragraph:before{content: "\\f1dd";} .fa-sliders:before{content: "\\f1de";} .fa-share-alt:before{content: "\\f1e0";} .fa-share-alt-square:before{content: "\\f1e1";} .fa-bomb:before{content: "\\f1e2";} .fa-soccer-ball-o:before, .fa-futbol-o:before{content: "\\f1e3";} .fa-tty:before{content: "\\f1e4";} .fa-binoculars:before{content: "\\f1e5";} .fa-plug:before{content: "\\f1e6";} .fa-slideshare:before{content: "\\f1e7";} .fa-twitch:before{content: "\\f1e8";} .fa-yelp:before{content: "\\f1e9";} .fa-newspaper-o:before{content: "\\f1ea";} .fa-wifi:before{content: "\\f1eb";} .fa-calculator:before{content: "\\f1ec";} .fa-paypal:before{content: "\\f1ed";} .fa-google-wallet:before{content: "\\f1ee";} .fa-cc-visa:before{content: "\\f1f0";} .fa-cc-mastercard:before{content: "\\f1f1";} .fa-cc-discover:before{content: "\\f1f2";} .fa-cc-amex:before{content: "\\f1f3";} .fa-cc-paypal:before{content: "\\f1f4";} .fa-cc-stripe:before{content: "\\f1f5";} .fa-bell-slash:before{content: "\\f1f6";} .fa-bell-slash-o:before{content: "\\f1f7";} .fa-trash:before{content: "\\f1f8";} .fa-copyright:before{content: "\\f1f9";} .fa-at:before{content: "\\f1fa";} .fa-eyedropper:before{content: "\\f1fb";} .fa-paint-brush:before{content: "\\f1fc";} .fa-birthday-cake:before{content: "\\f1fd";} .fa-area-chart:before{content: "\\f1fe";} .fa-pie-chart:before{content: "\\f200";} .fa-line-chart:before{content: "\\f201";} .fa-lastfm:before{content: "\\f202";} .fa-lastfm-square:before{content: "\\f203";} .fa-toggle-off:before{content: "\\f204";} .fa-toggle-on:before{content: "\\f205";} .fa-bicycle:before{content: "\\f206";} .fa-bus:before{content: "\\f207";} .fa-ioxhost:before{content: "\\f208";} .fa-angellist:before{content: "\\f209";} .fa-cc:before{content: "\\f20a";} .fa-shekel:before, .fa-sheqel:before, .fa-ils:before{content: "\\f20b";} .fa-meanpath:before{content: "\\f20c";} .fa-buysellads:before{content: "\\f20d";} .fa-connectdevelop:before{content: "\\f20e";} .fa-dashcube:before{content: "\\f210";} .fa-forumbee:before{content: "\\f211";} .fa-leanpub:before{content: "\\f212";} .fa-sellsy:before{content: "\\f213";} .fa-shirtsinbulk:before{content: "\\f214";} .fa-simplybuilt:before{content: "\\f215";} .fa-skyatlas:before{content: "\\f216";} .fa-cart-plus:before{content: "\\f217";} .fa-cart-arrow-down:before{content: "\\f218";} .fa-diamond:before{content: "\\f219";} .fa-ship:before{content: "\\f21a";} .fa-user-secret:before{content: "\\f21b";} .fa-motorcycle:before{content: "\\f21c";} .fa-street-view:before{content: "\\f21d";} .fa-heartbeat:before{content: "\\f21e";} .fa-venus:before{content: "\\f221";} .fa-mars:before{content: "\\f222";} .fa-mercury:before{content: "\\f223";} .fa-intersex:before, .fa-transgender:before{content: "\\f224";} .fa-transgender-alt:before{content: "\\f225";} .fa-venus-double:before{content: "\\f226";} .fa-mars-double:before{content: "\\f227";} .fa-venus-mars:before{content: "\\f228";} .fa-mars-stroke:before{content: "\\f229";} .fa-mars-stroke-v:before{content: "\\f22a";} .fa-mars-stroke-h:before{content: "\\f22b";} .fa-neuter:before{content: "\\f22c";} .fa-genderless:before{content: "\\f22d";} .fa-facebook-official:before{content: "\\f230";} .fa-pinterest-p:before{content: "\\f231";} .fa-whatsapp:before{content: "\\f232";} .fa-server:before{content: "\\f233";} .fa-user-plus:before{content: "\\f234";} .fa-user-times:before{content: "\\f235";} .fa-hotel:before, .fa-bed:before{content: "\\f236";} .fa-viacoin:before{content: "\\f237";} .fa-train:before{content: "\\f238";} .fa-subway:before{content: "\\f239";} .fa-medium:before{content: "\\f23a";} .fa-yc:before, .fa-y-combinator:before{content: "\\f23b";} .fa-optin-monster:before{content: "\\f23c";} .fa-opencart:before{content: "\\f23d";} .fa-expeditedssl:before{content: "\\f23e";} .fa-battery-4:before, .fa-battery:before, .fa-battery-full:before{content: "\\f240";} .fa-battery-3:before, .fa-battery-three-quarters:before{content: "\\f241";} .fa-battery-2:before, .fa-battery-half:before{content: "\\f242";} .fa-battery-1:before, .fa-battery-quarter:before{content: "\\f243";} .fa-battery-0:before, .fa-battery-empty:before{content: "\\f244";} .fa-mouse-pointer:before{content: "\\f245";} .fa-i-cursor:before{content: "\\f246";} .fa-object-group:before{content: "\\f247";} .fa-object-ungroup:before{content: "\\f248";} .fa-sticky-note:before{content: "\\f249";} .fa-sticky-note-o:before{content: "\\f24a";} .fa-cc-jcb:before{content: "\\f24b";} .fa-cc-diners-club:before{content: "\\f24c";} .fa-clone:before{content: "\\f24d";} .fa-balance-scale:before{content: "\\f24e";} .fa-hourglass-o:before{content: "\\f250";} .fa-hourglass-1:before, .fa-hourglass-start:before{content: "\\f251";} .fa-hourglass-2:before, .fa-hourglass-half:before{content: "\\f252";} .fa-hourglass-3:before, .fa-hourglass-end:before{content: "\\f253";} .fa-hourglass:before{content: "\\f254";} .fa-hand-grab-o:before, .fa-hand-rock-o:before{content: "\\f255";} .fa-hand-stop-o:before, .fa-hand-paper-o:before{content: "\\f256";} .fa-hand-scissors-o:before{content: "\\f257";} .fa-hand-lizard-o:before{content: "\\f258";} .fa-hand-spock-o:before{content: "\\f259";} .fa-hand-pointer-o:before{content: "\\f25a";} .fa-hand-peace-o:before{content: "\\f25b";} .fa-trademark:before{content: "\\f25c";} .fa-registered:before{content: "\\f25d";} .fa-creative-commons:before{content: "\\f25e";} .fa-gg:before{content: "\\f260";} .fa-gg-circle:before{content: "\\f261";} .fa-tripadvisor:before{content: "\\f262";} .fa-odnoklassniki:before{content: "\\f263";} .fa-odnoklassniki-square:before{content: "\\f264";} .fa-get-pocket:before{content: "\\f265";} .fa-wikipedia-w:before{content: "\\f266";} .fa-safari:before{content: "\\f267";} .fa-chrome:before{content: "\\f268";} .fa-firefox:before{content: "\\f269";} .fa-opera:before{content: "\\f26a";} .fa-internet-explorer:before{content: "\\f26b";} .fa-tv:before, .fa-television:before{content: "\\f26c";} .fa-contao:before{content: "\\f26d";} .fa-500px:before{content: "\\f26e";} .fa-amazon:before{content: "\\f270";} .fa-calendar-plus-o:before{content: "\\f271";} .fa-calendar-minus-o:before{content: "\\f272";} .fa-calendar-times-o:before{content: "\\f273";} .fa-calendar-check-o:before{content: "\\f274";} .fa-industry:before{content: "\\f275";} .fa-map-pin:before{content: "\\f276";} .fa-map-signs:before{content: "\\f277";} .fa-map-o:before{content: "\\f278";} .fa-map:before{content: "\\f279";} .fa-commenting:before{content: "\\f27a";} .fa-commenting-o:before{content: "\\f27b";} .fa-houzz:before{content: "\\f27c";} .fa-vimeo:before{content: "\\f27d";} .fa-black-tie:before{content: "\\f27e";} .fa-fonticons:before{content: "\\f280";} .fa-reddit-alien:before{content: "\\f281";} .fa-edge:before{content: "\\f282";} .fa-credit-card-alt:before{content: "\\f283";} .fa-codiepie:before{content: "\\f284";} .fa-modx:before{content: "\\f285";} .fa-fort-awesome:before{content: "\\f286";} .fa-usb:before{content: "\\f287";} .fa-product-hunt:before{content: "\\f288";} .fa-mixcloud:before{content: "\\f289";} .fa-scribd:before{content: "\\f28a";} .fa-pause-circle:before{content: "\\f28b";} .fa-pause-circle-o:before{content: "\\f28c";} .fa-stop-circle:before{content: "\\f28d";} .fa-stop-circle-o:before{content: "\\f28e";} .fa-shopping-bag:before{content: "\\f290";} .fa-shopping-basket:before{content: "\\f291";} .fa-hashtag:before{content: "\\f292";} .fa-bluetooth:before{content: "\\f293";} .fa-bluetooth-b:before{content: "\\f294";} .fa-percent:before{content: "\\f295";} .fa-gitlab:before{content: "\\f296";} .fa-wpbeginner:before{content: "\\f297";} .fa-wpforms:before{content: "\\f298";} .fa-envira:before{content: "\\f299";} .fa-universal-access:before{content: "\\f29a";} .fa-wheelchair-alt:before{content: "\\f29b";} .fa-question-circle-o:before{content: "\\f29c";} .fa-blind:before{content: "\\f29d";} .fa-audio-description:before{content: "\\f29e";} .fa-volume-control-phone:before{content: "\\f2a0";} .fa-braille:before{content: "\\f2a1";} .fa-assistive-listening-systems:before{content: "\\f2a2";} .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before{content: "\\f2a3";} .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before{content: "\\f2a4";} .fa-glide:before{content: "\\f2a5";} .fa-glide-g:before{content: "\\f2a6";} .fa-signing:before, .fa-sign-language:before{content: "\\f2a7";} .fa-low-vision:before{content: "\\f2a8";} .fa-viadeo:before{content: "\\f2a9";} .fa-viadeo-square:before{content: "\\f2aa";} .fa-snapchat:before{content: "\\f2ab";} .fa-snapchat-ghost:before{content: "\\f2ac";} .fa-snapchat-square:before{content: "\\f2ad";} .fa-pied-piper:before{content: "\\f2ae";} .fa-first-order:before{content: "\\f2b0";} .fa-yoast:before{content: "\\f2b1";} .fa-themeisle:before{content: "\\f2b2";} .fa-google-plus-circle:before, .fa-google-plus-official:before{content: "\\f2b3";} .fa-fa:before, .fa-font-awesome:before{content: "\\f2b4";} .fa-handshake-o:before{content: "\\f2b5";} .fa-envelope-open:before{content: "\\f2b6";} .fa-envelope-open-o:before{content: "\\f2b7";} .fa-linode:before{content: "\\f2b8";} .fa-address-book:before{content: "\\f2b9";} .fa-address-book-o:before{content: "\\f2ba";} .fa-vcard:before, .fa-address-card:before{content: "\\f2bb";} .fa-vcard-o:before, .fa-address-card-o:before{content: "\\f2bc";} .fa-user-circle:before{content: "\\f2bd";} .fa-user-circle-o:before{content: "\\f2be";} .fa-user-o:before{content: "\\f2c0";} .fa-id-badge:before{content: "\\f2c1";} .fa-drivers-license:before, .fa-id-card:before{content: "\\f2c2";} .fa-drivers-license-o:before, .fa-id-card-o:before{content: "\\f2c3";} .fa-quora:before{content: "\\f2c4";} .fa-free-code-camp:before{content: "\\f2c5";} .fa-telegram:before{content: "\\f2c6";} .fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before{content: "\\f2c7";} .fa-thermometer-3:before, .fa-thermometer-three-quarters:before{content: "\\f2c8";} .fa-thermometer-2:before, .fa-thermometer-half:before{content: "\\f2c9";} .fa-thermometer-1:before, .fa-thermometer-quarter:before{content: "\\f2ca";} .fa-thermometer-0:before, .fa-thermometer-empty:before{content: "\\f2cb";} .fa-shower:before{content: "\\f2cc";} .fa-bathtub:before, .fa-s15:before, .fa-bath:before{content: "\\f2cd";} .fa-podcast:before{content: "\\f2ce";} .fa-window-maximize:before{content: "\\f2d0";} .fa-window-minimize:before{content: "\\f2d1";} .fa-window-restore:before{content: "\\f2d2";} .fa-times-rectangle:before, .fa-window-close:before{content: "\\f2d3";} .fa-times-rectangle-o:before, .fa-window-close-o:before{content: "\\f2d4";} .fa-bandcamp:before{content: "\\f2d5";} .fa-grav:before{content: "\\f2d6";} .fa-etsy:before{content: "\\f2d7";} .fa-imdb:before{content: "\\f2d8";} .fa-ravelry:before{content: "\\f2d9";} .fa-eercast:before{content: "\\f2da";} .fa-microchip:before{content: "\\f2db";} .fa-snowflake-o:before{content: "\\f2dc";} .fa-superpowers:before{content: "\\f2dd";} .fa-wpexplorer:before{content: "\\f2de";} .fa-meetup:before{content: "\\f2e0";} .sr-only{position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;} .sr-only-focusable:active, .sr-only-focusable:focus{position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto;} \n/* /web/static/lib/select2/select2.css defined in bundle 'web.assets_common' */\n .select2-container{margin: 0; position: relative; display: inline-block; zoom: 1; *display: inline; vertical-align: middle;} .select2-container, .select2-drop, .select2-search, .select2-search input{-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;} .select2-container .select2-choice{display: block; height: 26px; padding: 0 0 0 8px; overflow: hidden; position: relative; border: 1px solid #aaa; white-space: nowrap; line-height: 26px; color: #444; text-decoration: none; border-radius: 4px; background-clip: padding-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #fff; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff)); background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%); background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0); background-image: linear-gradient(to top, #eee 0%, #fff 50%);} html[dir="rtl"] .select2-container .select2-choice{padding: 0 8px 0 0;} .select2-container.select2-drop-above .select2-choice{border-bottom-color: #aaa; border-radius: 0 0 4px 4px; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff)); background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%); background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);} .select2-container.select2-allowclear .select2-choice .select2-chosen{margin-right: 42px;} .select2-container .select2-choice > .select2-chosen{margin-right: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; float: none; width: auto;} html[dir="rtl"] .select2-container .select2-choice > .select2-chosen{margin-left: 26px; margin-right: 0;} .select2-container .select2-choice abbr{display: none; width: 12px; height: 12px; position: absolute; right: 24px; top: 8px; font-size: 1px; text-decoration: none; border: 0; background: url('/web/static/lib/select2/select2.png') right top no-repeat; cursor: pointer; outline: 0;} .select2-container.select2-allowclear .select2-choice abbr{display: inline-block;} .select2-container .select2-choice abbr:hover{background-position: right -11px; cursor: pointer;} .select2-drop-mask{border: 0; margin: 0; padding: 0; position: fixed; left: 0; top: 0; min-height: 100%; min-width: 100%; height: auto; width: auto; opacity: 0; z-index: 9998; background-color: #fff; filter: alpha(opacity=0);} .select2-drop{width: 100%; margin-top: -1px; position: absolute; z-index: 9999; top: 100%; background: #fff; color: #000; border: 1px solid #aaa; border-top: 0; border-radius: 0 0 4px 4px; -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15); box-shadow: 0 4px 5px rgba(0, 0, 0, .15);} .select2-drop.select2-drop-above{margin-top: 1px; border-top: 1px solid #aaa; border-bottom: 0; border-radius: 4px 4px 0 0; -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);} .select2-drop-active{border: 1px solid #5897fb; border-top: none;} .select2-drop.select2-drop-above.select2-drop-active{border-top: 1px solid #5897fb;} .select2-drop-auto-width{border-top: 1px solid #aaa; width: auto;} .select2-drop-auto-width .select2-search{padding-top: 4px;} .select2-container .select2-choice .select2-arrow{display: inline-block; width: 18px; height: 100%; position: absolute; right: 0; top: 0; border-left: 1px solid #aaa; border-radius: 0 4px 4px 0; background-clip: padding-box; background: #ccc; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee)); background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%); background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0); background-image: linear-gradient(to top, #ccc 0%, #eee 60%);} html[dir="rtl"] .select2-container .select2-choice .select2-arrow{left: 0; right: auto; border-left: none; border-right: 1px solid #aaa; border-radius: 4px 0 0 4px;} .select2-container .select2-choice .select2-arrow b{display: block; width: 100%; height: 100%; background: url('/web/static/lib/select2/select2.png') no-repeat 0 1px;} html[dir="rtl"] .select2-container .select2-choice .select2-arrow b{background-position: 2px 1px;} .select2-search{display: inline-block; width: 100%; min-height: 26px; margin: 0; padding-left: 4px; padding-right: 4px; position: relative; z-index: 10000; white-space: nowrap;} .select2-search input{width: 100%; height: auto !important; min-height: 26px; padding: 4px 20px 4px 5px; margin: 0; outline: 0; font-family: sans-serif; font-size: 1em; border: 1px solid #aaa; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; background: #fff url('/web/static/lib/select2/select2.png') no-repeat 100% -22px; background: url('/web/static/lib/select2/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: url('/web/static/lib/select2/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url('/web/static/lib/select2/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url('/web/static/lib/select2/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;} html[dir="rtl"] .select2-search input{padding: 4px 5px 4px 20px; background: #fff url('/web/static/lib/select2/select2.png') no-repeat -37px -22px; background: url('/web/static/lib/select2/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: url('/web/static/lib/select2/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url('/web/static/lib/select2/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url('/web/static/lib/select2/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;} .select2-drop.select2-drop-above .select2-search input{margin-top: 4px;} .select2-search input.select2-active{background: #fff url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100%; background: url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); background: url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); background: url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;} .select2-container-active .select2-choice, .select2-container-active .select2-choices{border: 1px solid #5897fb; outline: none; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); box-shadow: 0 0 5px rgba(0, 0, 0, .3);} .select2-dropdown-open .select2-choice{border-bottom-color: transparent; -webkit-box-shadow: 0 1px 0 #fff inset; box-shadow: 0 1px 0 #fff inset; border-bottom-left-radius: 0; border-bottom-right-radius: 0; background-color: #eee; background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee)); background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%); background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); background-image: linear-gradient(to top, #fff 0%, #eee 50%);} .select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices{border: 1px solid #5897fb; border-top-color: transparent; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee)); background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%); background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);} .select2-dropdown-open .select2-choice .select2-arrow{background: transparent; border-left: none; filter: none;} html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow{border-right: none;} .select2-dropdown-open .select2-choice .select2-arrow b{background-position: -18px 1px;} html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b{background-position: -16px 1px;} .select2-hidden-accessible{border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;} .select2-results{max-height: 200px; padding: 0 0 0 4px; margin: 4px 4px 4px 0; position: relative; overflow-x: hidden; overflow-y: auto; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);} html[dir="rtl"] .select2-results{padding: 0 4px 0 0; margin: 4px 0 4px 4px;} .select2-results ul.select2-result-sub{margin: 0; padding-left: 0;} .select2-results li{list-style: none; display: list-item; background-image: none;} .select2-results li.select2-result-with-children > .select2-result-label{font-weight: bold;} .select2-results .select2-result-label{padding: 3px 7px 4px; margin: 0; cursor: pointer; min-height: 1em; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;} .select2-results-dept-1 .select2-result-label{padding-left: 20px} .select2-results-dept-2 .select2-result-label{padding-left: 40px} .select2-results-dept-3 .select2-result-label{padding-left: 60px} .select2-results-dept-4 .select2-result-label{padding-left: 80px} .select2-results-dept-5 .select2-result-label{padding-left: 100px} .select2-results-dept-6 .select2-result-label{padding-left: 110px} .select2-results-dept-7 .select2-result-label{padding-left: 120px} .select2-results .select2-highlighted{background: #3875d7; color: #fff;} .select2-results li em{background: #feffde; font-style: normal;} .select2-results .select2-highlighted em{background: transparent;} .select2-results .select2-highlighted ul{background: #fff; color: #000;} .select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-ajax-error, .select2-results .select2-selection-limit{background: #f4f4f4; display: list-item; padding-left: 5px;} .select2-results .select2-disabled.select2-highlighted{color: #666; background: #f4f4f4; display: list-item; cursor: default;} .select2-results .select2-disabled{background: #f4f4f4; display: list-item; cursor: default;} .select2-results .select2-selected{display: none;} .select2-more-results.select2-active{background: #f4f4f4 url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100%;} .select2-results .select2-ajax-error{background: rgba(255, 50, 50, .2);} .select2-more-results{background: #f4f4f4; display: list-item;} .select2-container.select2-container-disabled .select2-choice{background-color: #f4f4f4; background-image: none; border: 1px solid #ddd; cursor: default;} .select2-container.select2-container-disabled .select2-choice .select2-arrow{background-color: #f4f4f4; background-image: none; border-left: 0;} .select2-container.select2-container-disabled .select2-choice abbr{display: none;} .select2-container-multi .select2-choices{height: auto !important; height: 1%; margin: 0; padding: 0 5px 0 0; position: relative; border: 1px solid #aaa; cursor: text; overflow: hidden; background-color: #fff; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff)); background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%); background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%); background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);} html[dir="rtl"] .select2-container-multi .select2-choices{padding: 0 0 0 5px;} .select2-locked{padding: 3px 5px 3px 5px !important;} .select2-container-multi .select2-choices{min-height: 26px;} .select2-container-multi.select2-container-active .select2-choices{border: 1px solid #5897fb; outline: none; -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); box-shadow: 0 0 5px rgba(0, 0, 0, .3);} .select2-container-multi .select2-choices li{float: left; list-style: none;} html[dir="rtl"] .select2-container-multi .select2-choices li{float: right;} .select2-container-multi .select2-choices .select2-search-field{margin: 0; padding: 0; white-space: nowrap;} .select2-container-multi .select2-choices .select2-search-field input{padding: 5px; margin: 1px 0; font-family: sans-serif; font-size: 100%; color: #666; outline: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; background: transparent !important;} .select2-container-multi .select2-choices .select2-search-field input.select2-active{background: #fff url('/web/static/lib/select2/select2-spinner.gif') no-repeat 100% !important;} .select2-default{color: #999 !important;} .select2-container-multi .select2-choices .select2-search-choice{padding: 3px 5px 3px 18px; margin: 3px 0 3px 5px; position: relative; line-height: 13px; color: #333; cursor: default; border: 1px solid #aaaaaa; border-radius: 3px; -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); background-clip: padding-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #e4e4e4; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);} html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice{margin: 3px 5px 3px 0; padding: 3px 18px 3px 5px;} .select2-container-multi .select2-choices .select2-search-choice .select2-chosen{cursor: default;} .select2-container-multi .select2-choices .select2-search-choice-focus{background: #d4d4d4;} .select2-search-choice-close{display: block; width: 12px; height: 13px; position: absolute; right: 3px; top: 4px; font-size: 1px; outline: none; background: url('/web/static/lib/select2/select2.png') right top no-repeat;} html[dir="rtl"] .select2-search-choice-close{right: auto; left: 3px;} .select2-container-multi .select2-search-choice-close{left: 3px;} html[dir="rtl"] .select2-container-multi .select2-search-choice-close{left: auto; right: 2px;} .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover{background-position: right -11px;} .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close{background-position: right -11px;} .select2-container-multi.select2-container-disabled .select2-choices{background-color: #f4f4f4; background-image: none; border: 1px solid #ddd; cursor: default;} .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{padding: 3px 5px 3px 5px; border: 1px solid #ddd; background-image: none; background-color: #f4f4f4;} .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display: none; background: none;} .select2-result-selectable .select2-match, .select2-result-unselectable .select2-match{text-decoration: underline;} .select2-offscreen, .select2-offscreen:focus{clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; border: 0 !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; position: absolute !important; outline: 0 !important; left: 0px !important; top: 0px !important;} .select2-display-none{display: none;} .select2-measure-scrollbar{position: absolute; top: -10000px; left: -10000px; width: 100px; height: 100px; overflow: scroll;} @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx){.select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b{background-image: url('/web/static/lib/select2/select2x2.png') !important; background-repeat: no-repeat !important; background-size: 60px 40px !important;}.select2-search input{background-position: 100% -21px !important;}} \n/* /web/static/lib/select2-bootstrap-css/select2-bootstrap.css defined in bundle 'web.assets_common' */\n .form-control .select2-choice{border: 0; border-radius: 2px;} .form-control .select2-choice .select2-arrow{border-radius: 0 2px 2px 0;} .form-control.select2-container{height: auto !important; padding: 0;} .form-control.select2-container.select2-dropdown-open{border-color: #5897FB; border-radius: 3px 3px 0 0;} .form-control .select2-container.select2-dropdown-open .select2-choices{border-radius: 3px 3px 0 0;} .form-control.select2-container .select2-choices{border: 0 !important; border-radius: 3px;} .control-group.warning .select2-container .select2-choice, .control-group.warning .select2-container .select2-choices, .control-group.warning .select2-container-active .select2-choice, .control-group.warning .select2-container-active .select2-choices, .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.warning .select2-container-multi.select2-container-active .select2-choices{border: 1px solid #C09853 !important;} .control-group.warning .select2-container .select2-choice div{border-left: 1px solid #C09853 !important; background: #FCF8E3 !important;} .control-group.error .select2-container .select2-choice, .control-group.error .select2-container .select2-choices, .control-group.error .select2-container-active .select2-choice, .control-group.error .select2-container-active .select2-choices, .control-group.error .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.error .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.error .select2-container-multi.select2-container-active .select2-choices{border: 1px solid #B94A48 !important;} .control-group.error .select2-container .select2-choice div{border-left: 1px solid #B94A48 !important; background: #F2DEDE !important;} .control-group.info .select2-container .select2-choice, .control-group.info .select2-container .select2-choices, .control-group.info .select2-container-active .select2-choice, .control-group.info .select2-container-active .select2-choices, .control-group.info .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.info .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.info .select2-container-multi.select2-container-active .select2-choices{border: 1px solid #3A87AD !important;} .control-group.info .select2-container .select2-choice div{border-left: 1px solid #3A87AD !important; background: #D9EDF7 !important;} .control-group.success .select2-container .select2-choice, .control-group.success .select2-container .select2-choices, .control-group.success .select2-container-active .select2-choice, .control-group.success .select2-container-active .select2-choices, .control-group.success .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.success .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.success .select2-container-multi.select2-container-active .select2-choices{border: 1px solid #468847 !important;} .control-group.success .select2-container .select2-choice div{border-left: 1px solid #468847 !important; background: #DFF0D8 !important;} \n/* /web/static/lib/tempusdominus/tempusdominus.scss defined in bundle 'web.assets_common' */\n .bootstrap-datetimepicker-widget{list-style: none;} .bootstrap-datetimepicker-widget.dropdown-menu{display: block; margin: 2px 0; padding: 4px; width: 14rem;} @media (min-width: 576px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width: 38em;}} @media (min-width: 768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width: 38em;}} @media (min-width: 992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width: 38em;}} .bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after{content: ''; display: inline-block; position: absolute;} .bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; border-bottom-color: rgba(0, 0, 0, 0.2); top: -7px; left: 7px;} .bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; top: -6px; left: 8px;} .bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 7px solid #ccc; border-top-color: rgba(0, 0, 0, 0.2); bottom: -7px; left: 6px;} .bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid white; bottom: -6px; left: 7px;} .bootstrap-datetimepicker-widget.dropdown-menu.float-right:before{left: auto; right: 6px;} .bootstrap-datetimepicker-widget.dropdown-menu.float-right:after{left: auto; right: 7px;} .bootstrap-datetimepicker-widget.dropdown-menu.wider{width: 16rem;} .bootstrap-datetimepicker-widget .list-unstyled{margin: 0;} .bootstrap-datetimepicker-widget a[data-action]{padding: 6px 0;} .bootstrap-datetimepicker-widget a[data-action]:active{box-shadow: none;} .bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second{width: 54px; font-weight: bold; font-size: 1.2em; margin: 0;} .bootstrap-datetimepicker-widget button[data-action]{padding: 6px;} .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{content: "Increment Hours";} .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{content: "Increment Minutes";} .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{content: "Decrement Hours";} .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{content: "Decrement Minutes";} .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{content: "Show Hours";} .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{content: "Show Minutes";} .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{content: "Toggle AM/PM";} .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{content: "Clear the picker";} .bootstrap-datetimepicker-widget .btn[data-action="today"]::after{content: "Set the date to today";} .bootstrap-datetimepicker-widget .picker-switch{text-align: center;} .bootstrap-datetimepicker-widget .picker-switch::after{content: "Toggle Date and Time Screens";} .bootstrap-datetimepicker-widget .picker-switch td{padding: 0; margin: 0; height: auto; width: auto; line-height: inherit;} .bootstrap-datetimepicker-widget .picker-switch td span{line-height: 2.5; height: 2.5em; width: 100%;} .bootstrap-datetimepicker-widget table{width: 100%; margin: 0;} .bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table th{text-align: center; border-radius: 0.25rem;} .bootstrap-datetimepicker-widget table th{height: 20px; line-height: 20px; width: 20px;} .bootstrap-datetimepicker-widget table th.picker-switch{width: 145px;} .bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover{background: none; color: #6c757d; cursor: not-allowed;} .bootstrap-datetimepicker-widget table th.prev::after{content: "Previous Month";} .bootstrap-datetimepicker-widget table th.next::after{content: "Next Month";} .bootstrap-datetimepicker-widget table thead tr:first-child th{cursor: pointer;} .bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background: #e9ecef;} .bootstrap-datetimepicker-widget table td{height: 54px; line-height: 54px; width: 54px;} .bootstrap-datetimepicker-widget table td.cw{font-size: .8em; height: 20px; line-height: 20px; color: #6c757d;} .bootstrap-datetimepicker-widget table td.day{height: 20px; line-height: 20px; width: 20px;} .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover{background: #e9ecef; cursor: pointer;} .bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new{color: #6c757d;} .bootstrap-datetimepicker-widget table td.today{position: relative;} .bootstrap-datetimepicker-widget table td.today:before{content: ''; display: inline-block; border: solid transparent; border-width: 0 0 7px 7px; border-bottom-color: #007bff; border-top-color: rgba(0, 0, 0, 0.2); position: absolute; bottom: 4px; right: 4px;} .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover{background-color: #007bff; color: #fff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);} .bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color: #fff;} .bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover{background: none; color: #6c757d; cursor: not-allowed;} .bootstrap-datetimepicker-widget table td span{display: inline-block; width: 54px; height: 54px; line-height: 54px; margin: 2px 1.5px; cursor: pointer; border-radius: 0.25rem;} .bootstrap-datetimepicker-widget table td span:hover{background: #e9ecef;} .bootstrap-datetimepicker-widget table td span.active{background-color: #007bff; color: #fff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);} .bootstrap-datetimepicker-widget table td span.old{color: #6c757d;} .bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover{background: none; color: #6c757d; cursor: not-allowed;} .bootstrap-datetimepicker-widget.usetwentyfour td.hour{height: 27px; line-height: 27px;} .input-group [data-toggle="datetimepicker"]{cursor: pointer;} \n/* /web/static/src/scss/fonts.scss defined in bundle 'web.assets_common' */\n @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Hai.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Hai.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Hai.ttf") format("truetype"); font-weight: 100; font-style: normal; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Hai.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Hai.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Hai.ttf") format("truetype"); font-weight: 100; font-style: normal; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Hai.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Hai.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Hai.ttf") format("truetype"); font-weight: 100; font-style: normal; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.svg#Lato") format("svg"); font-weight: 100; font-style: normal;} @font-face{font-family: "Lato-Hai"; src: url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Hai-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-HaiIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-HaiIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-HaiIta.ttf") format("truetype"); font-weight: 100; font-style: italic; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-HaiIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-HaiIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-HaiIta.ttf") format("truetype"); font-weight: 100; font-style: italic; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-HaiIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-HaiIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-HaiIta.ttf") format("truetype"); font-weight: 100; font-style: italic; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.svg#Lato") format("svg"); font-weight: 100; font-style: italic;} @font-face{font-family: "Lato-HaiIta"; src: url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-HaiIta-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Lig.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Lig.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Lig.ttf") format("truetype"); font-weight: 300; font-style: normal; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Lig.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Lig.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Lig.ttf") format("truetype"); font-weight: 300; font-style: normal; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Lig.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Lig.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Lig.ttf") format("truetype"); font-weight: 300; font-style: normal; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.svg#Lato") format("svg"); font-weight: 300; font-style: normal;} @font-face{font-family: "Lato-Lig"; src: url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Lig-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-LigIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-LigIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-LigIta.ttf") format("truetype"); font-weight: 300; font-style: italic; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-LigIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-LigIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-LigIta.ttf") format("truetype"); font-weight: 300; font-style: italic; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-LigIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-LigIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-LigIta.ttf") format("truetype"); font-weight: 300; font-style: italic; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.svg#Lato") format("svg"); font-weight: 300; font-style: italic;} @font-face{font-family: "Lato-LigIta"; src: url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-LigIta-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Reg.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Reg.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Reg.ttf") format("truetype"); font-weight: 400; font-style: normal; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Reg.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Reg.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Reg.ttf") format("truetype"); font-weight: 400; font-style: normal; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Reg.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Reg.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Reg.ttf") format("truetype"); font-weight: 400; font-style: normal; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.svg#Lato") format("svg"); font-weight: 400; font-style: normal;} @font-face{font-family: "Lato-Reg"; src: url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Reg-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-RegIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-RegIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-RegIta.ttf") format("truetype"); font-weight: 400; font-style: italic; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-RegIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-RegIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-RegIta.ttf") format("truetype"); font-weight: 400; font-style: italic; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-RegIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-RegIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-RegIta.ttf") format("truetype"); font-weight: 400; font-style: italic; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.svg#Lato") format("svg"); font-weight: 400; font-style: italic;} @font-face{font-family: "Lato-RegIta"; src: url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-RegIta-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Bol.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Bol.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Bol.ttf") format("truetype"); font-weight: 700; font-style: normal; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Bol.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Bol.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Bol.ttf") format("truetype"); font-weight: 700; font-style: normal; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Bol.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Bol.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Bol.ttf") format("truetype"); font-weight: 700; font-style: normal; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.svg#Lato") format("svg"); font-weight: 700; font-style: normal;} @font-face{font-family: "Lato-Bol"; src: url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Bol-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-BolIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-BolIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-BolIta.ttf") format("truetype"); font-weight: 700; font-style: italic; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-BolIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-BolIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-BolIta.ttf") format("truetype"); font-weight: 700; font-style: italic; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-BolIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-BolIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-BolIta.ttf") format("truetype"); font-weight: 700; font-style: italic; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.svg#Lato") format("svg"); font-weight: 700; font-style: italic;} @font-face{font-family: "Lato-BolIta"; src: url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-BolIta-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Bla.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Bla.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-Bla.ttf") format("truetype"); font-weight: 900; font-style: normal; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Bla.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Bla.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-Bla.ttf") format("truetype"); font-weight: 900; font-style: normal; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Bla.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Bla.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-Bla.ttf") format("truetype"); font-weight: 900; font-style: normal; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.svg#Lato") format("svg"); font-weight: 900; font-style: normal;} @font-face{font-family: "Lato-Bla"; src: url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-Bla-webfont.svg#Roboto") format("svg");} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSans-BlaIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-BlaIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSans-BlaIta.ttf") format("truetype"); font-weight: 900; font-style: italic; unicode-range: U+0400-04FF, U+0500-052F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-BlaIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-BlaIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansHebrew-BlaIta.ttf") format("truetype"); font-weight: 900; font-style: italic; unicode-range: U+0590-05FF, U+FB1D-FB4F;} @font-face{font-family: 'Noto'; src: url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-BlaIta.woff2") format("woff2"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-BlaIta.woff") format("woff"), url("https://fonts.odoocdn.com/fonts/noto/NotoSansArabic-BlaIta.ttf") format("truetype"); font-weight: 900; font-style: italic; unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF;} @font-face{font-family: 'Lato'; src: url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.svg#Lato") format("svg"); font-weight: 900; font-style: italic;} @font-face{font-family: "Lato-BlaIta"; src: url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.eot"); src: url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.eot?#iefix") format("embedded-opentype"), url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.woff") format("woff"), url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.ttf") format("truetype"), url("/web/static/src/scss/../fonts/lato/Lato-BlaIta-webfont.svg#Roboto") format("svg");} \n/* /web/static/src/scss/ui.scss defined in bundle 'web.assets_common' */\n .o_hidden{display: none !important;} .o_text_overflow{display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top;} .ui-autocomplete{z-index: 1051;} [aria-hidden="true"], [aria-hidden="1"]{display: none !important;} .dropdown-toggle{white-space: nowrap;} .dropdown-toggle.o-no-caret::before, .dropdown-toggle.o-no-caret::after{content: normal;} :not(.collapsed) > .o-collapsed-label, .collapsed > .o-not-collapsed-label{display: none;} .o_rtl .ui-autocomplete{direction: ltr; right: 0; left: auto;} .o_rtl .ui-datepicker-next, .o_rtl .ui-datepicker-prev{-webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg);} .custom-control.custom-checkbox .custom-control-input:not(:checked):not(:indeterminate) ~ .custom-control-label:before{background: none; outline: 1px solid #4c4c4c;} .custom-control.custom-checkbox .custom-control-input:not(:checked):not(:indeterminate):disabled ~ .custom-control-label:before{background: #e2e2e0; opacity: 0.25;} @media print{.custom-control.custom-checkbox{-webkit-print-color-adjust: exact !important; color-adjust: exact !important;}} .o_catch_attention{position: relative; z-index: 1; animation: catchAttention 200ms ease 0s infinite normal;} @keyframes catchAttention{0%{outline: 0px solid #7c7bad;}100%{outline: 20px solid rgba(124, 123, 173, 0);}} .o_debounce_disabled{pointer-events: none;} span.o_force_ltr{display: inline-block;} .o_force_ltr, .o_field_phone{unicode-bidi: embed; direction: ltr;} \n/* /web/static/src/scss/ui_extra.scss defined in bundle 'web.assets_common' */\n/* /web/static/src/scss/navbar.scss defined in bundle 'web.assets_common' */\n body.o_is_superuser .o_menu_systray{background: repeating-linear-gradient(135deg, #d9b904, #d9b904 10px, #373435 10px, #373435 20px); border-bottom-left-radius: 20px;} body.o_is_superuser .o_menu_systray > li > a:hover, body.o_is_superuser .o_menu_systray > li > label:hover{background-color: rgba(95, 94, 151, 0.5);} body.o_is_superuser .o_menu_systray .show .dropdown-toggle{background-color: rgba(95, 94, 151, 0.5);} .o_main_navbar{position: relative; height: 46px; border-bottom: 1px solid #5f5e97; background-color: #7C7BAD; color: white;} .o_main_navbar > a, .o_main_navbar > button{float: left; height: 46px; border: none; padding: 0 12px 0 16px; line-height: 46px; background-color: transparent; text-align: center; color: inherit; font-size: 18px; user-select: none;} .o_main_navbar > a:hover, .o_main_navbar > a:focus, .o_main_navbar > button:hover, .o_main_navbar > button:focus{background-color: #5f5e97; color: inherit;} .o_main_navbar > a:focus, .o_main_navbar > a:active, .o_main_navbar > a:focus:active, .o_main_navbar > button:focus, .o_main_navbar > button:active, .o_main_navbar > button:focus:active{outline: none;} .o_main_navbar .o_app{cursor: pointer;} .o_main_navbar > .o_menu_brand{display: block; float: left; margin-right: 35px; user-select: none; color: white; font-size: 22px; font-weight: 500; line-height: 46px; cursor: pointer;} .o_main_navbar > .o_menu_toggle{margin-right: 5px;} .o_main_navbar > ul{display: block; float: left; margin: 0; padding: 0; list-style: none;} .o_main_navbar > ul > li{position: relative; display: block; float: left;} .o_main_navbar > ul > li > a{display: block;} .o_main_navbar > ul > li > a:focus, .o_main_navbar > ul > li > a:active, .o_main_navbar > ul > li > a:focus:active{outline: none;} .o_main_navbar > ul > li > a, .o_main_navbar > ul > li > label{height: 46px; padding: 0 10px; color: white; line-height: 46px;} .o_main_navbar > ul > li > a:hover, .o_main_navbar > ul > li > label:hover{background-color: #5f5e97;} .o_main_navbar > ul > li.o_extra_menu_items > a{width: 46px; text-align: center;} .o_main_navbar > ul > li.o_extra_menu_items.show > ul{padding: 0;} .o_main_navbar > ul > li.o_extra_menu_items.show > ul > li > a{background-color: #7C7BAD; color: white; border-bottom: 1px solid #e2e2e0;} .o_main_navbar > ul > li.o_extra_menu_items.show > ul > li > a.dropdown-toggle{background-color: #abaaca; pointer-events: none;} .o_main_navbar > ul > li.o_extra_menu_items.show > ul > li > .dropdown-menu{position: static; float: none; display: block; border: none; box-shadow: none; max-height: none;} .o_main_navbar > ul.o_menu_systray{float: right;} .o_main_navbar .dropdown-menu.show{max-height: 90vh; min-width: 100%; overflow: auto; margin-top: 0;} .o_main_navbar .dropdown-menu.show .o_menu_header_lvl_3, .o_main_navbar .dropdown-menu.show .o_menu_entry_lvl_3{padding-left: 32px;} .o_main_navbar .dropdown-menu.show .o_menu_header_lvl_4, .o_main_navbar .dropdown-menu.show .o_menu_entry_lvl_4{padding-left: 44px;} .o_main_navbar .dropdown-menu.show .o_menu_header_lvl_5, .o_main_navbar .dropdown-menu.show .o_menu_entry_lvl_5{padding-left: 56px;} .o_main_navbar .show .dropdown-toggle{background-color: #5f5e97;} .o_main_navbar .o_user_menu{margin-left: 6px;} .o_main_navbar .o_user_menu > a{padding-right: 16px;} .o_main_navbar .o_user_menu .oe_topbar_avatar{height: 17px; transform: translateY(-2px);} \n/* /web/static/src/scss/mimetypes.scss defined in bundle 'web.assets_common' */\n .o_image{display: inline-block; width: 38px; height: 38px; background-image: url("/web/static/src/img/mimetypes/unknown.svg"); background-size: contain;} .o_image[data-mimetype^='image']{background-image: url("/web/static/src/img/mimetypes/image.svg");} .o_image[data-mimetype^='audio']{background-image: url("/web/static/src/img/mimetypes/audio.svg");} .o_image[data-mimetype^='text'], .o_image[data-mimetype$='rtf']{background-image: url("/web/static/src/img/mimetypes/text.svg");} .o_image[data-mimetype*='octet-stream'], .o_image[data-mimetype*='download'], .o_image[data-mimetype*='python']{background-image: url("/web/static/src/img/mimetypes/binary.svg");} .o_image[data-mimetype^='video'], .o_image[title$='.mp4'], .o_image[title$='.avi']{background-image: url("/web/static/src/img/mimetypes/video.svg");} .o_image[data-mimetype$='archive'], .o_image[data-mimetype$='compressed'], .o_image[data-mimetype*='zip'], .o_image[data-mimetype$='tar'], .o_image[data-mimetype*='package']{background-image: url("/web/static/src/img/mimetypes/archive.svg");} .o_image[data-mimetype='application/pdf']{background-image: url("/web/static/src/img/mimetypes/pdf.svg");} .o_image[data-mimetype^='text-master'], .o_image[data-mimetype*='document'], .o_image[data-mimetype*='msword'], .o_image[data-mimetype*='wordprocessing']{background-image: url("/web/static/src/img/mimetypes/document.svg");} .o_image[data-mimetype*='application/xml'], .o_image[data-mimetype$='html']{background-image: url("/web/static/src/img/mimetypes/web_code.svg");} .o_image[data-mimetype$='css'], .o_image[data-mimetype$='less'], .o_image[data-ext$='less']{background-image: url("/web/static/src/img/mimetypes/web_style.svg");} .o_image[data-mimetype*='-image'], .o_image[data-mimetype*='diskimage'], .o_image[data-ext$='dmg']{background-image: url("/web/static/src/img/mimetypes/disk.svg");} .o_image[data-mimetype$='csv'], .o_image[data-mimetype*='vc'], .o_image[data-mimetype*='excel'], .o_image[data-mimetype$='numbers'], .o_image[data-mimetype$='calc'], .o_image[data-mimetype*='mods'], .o_image[data-mimetype*='spreadsheet']{background-image: url("/web/static/src/img/mimetypes/spreadsheet.svg");} .o_image[data-mimetype^='key']{background-image: url("/web/static/src/img/mimetypes/certificate.svg");} .o_image[data-mimetype*='presentation'], .o_image[data-mimetype*='keynote'], .o_image[data-mimetype*='teacher'], .o_image[data-mimetype*='slideshow'], .o_image[data-mimetype*='powerpoint']{background-image: url("/web/static/src/img/mimetypes/presentation.svg");} .o_image[data-mimetype*='cert'], .o_image[data-mimetype*='rules'], .o_image[data-mimetype*='pkcs'], .o_image[data-mimetype$='stl'], .o_image[data-mimetype$='crl']{background-image: url("/web/static/src/img/mimetypes/certificate.svg");} .o_image[data-mimetype*='-font'], .o_image[data-mimetype*='font-'], .o_image[data-ext$='ttf']{background-image: url("/web/static/src/img/mimetypes/font.svg");} .o_image[data-mimetype*='-dvi']{background-image: url("/web/static/src/img/mimetypes/print.svg");} .o_image[data-mimetype*='script'], .o_image[data-mimetype*='x-sh'], .o_image[data-ext*='bat'], .o_image[data-mimetype$='bat'], .o_image[data-mimetype$='cgi'], .o_image[data-mimetype$='-c'], .o_image[data-mimetype*='java'], .o_image[data-mimetype*='ruby']{background-image: url("/web/static/src/img/mimetypes/script.svg");} .o_image[data-mimetype*='javascript']{background-image: url("/web/static/src/img/mimetypes/javascript.svg");} .o_image[data-mimetype*='calendar'], .o_image[data-mimetype$='ldif']{background-image: url("/web/static/src/img/mimetypes/calendar.svg");} .o_image[data-mimetype$='postscript'], .o_image[data-mimetype$='cdr'], .o_image[data-mimetype$='xara'], .o_image[data-mimetype$='cgm'], .o_image[data-mimetype$='graphics'], .o_image[data-mimetype$='draw'], .o_image[data-mimetype*='svg']{background-image: url("/web/static/src/img/mimetypes/vector.svg");} \n/* /web/static/src/scss/modal.scss defined in bundle 'web.assets_common' */\n .modal.o_technical_modal .modal-content{border-radius: 0;} .modal.o_technical_modal .modal-content .modal-header .o_subtitle{margin-left: 10px;} .modal.o_technical_modal .modal-content .modal-body.o_act_window{padding: 0;} .modal.o_technical_modal .modal-content .modal-body .o_modal_header{padding-top: 10px; padding-right: 16px; padding-bottom: 10px; padding-left: 16px;} .modal.o_technical_modal .modal-content .modal-body .o_modal_header::after{display: block; clear: both; content: "";} .modal.o_technical_modal .modal-content .modal-body .o_modal_header .o_search_options{display: inline-block;} .modal.o_technical_modal .modal-content .modal-body .o_modal_header .o_pager{float: right;} .modal.o_technical_modal .modal-content .modal-footer{-webkit-flex-wrap: wrap; flex-wrap: wrap; text-align: left; -webkit-box-pack: start; justify-content: flex-start;} .modal.o_technical_modal .modal-content .modal-footer > div, .modal.o_technical_modal .modal-content .modal-footer > footer{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto;} .modal.o_technical_modal .modal-content .modal-footer footer > :not(:first-child){margin-left: .25rem;} .modal.o_technical_modal .modal-content .modal-footer footer > :not(:last-child){margin-right: .25rem;} .modal.o_technical_modal .modal-content .modal-footer button{margin-bottom: .5rem;} @media (min-width: 768px){.modal.o_technical_modal .modal-dialog{height: 100%; padding: 30px 0; margin: 0 auto;}.modal.o_technical_modal .modal-dialog .modal-content{max-height: 100%; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap;}.modal.o_technical_modal .modal-dialog .modal-content .modal-header, .modal.o_technical_modal .modal-dialog .modal-content .modal-footer{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;}.modal.o_technical_modal .modal-dialog .modal-content .modal-body{overflow: auto; -webkit-transform: translate3d(0, 0, 0); min-height: 0;}.modal.o_technical_modal .modal-dialog .modal-content .modal-body.o_dialog_error{overflow: visible; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap;}.modal.o_technical_modal .modal-dialog .modal-content .modal-body.o_dialog_error > .alert, .modal.o_technical_modal .modal-dialog .modal-content .modal-body.o_dialog_error > button{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;}.modal.o_technical_modal .modal-dialog .modal-content .modal-body.o_dialog_error > .o_error_detail{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; min-height: 0; overflow: auto;}} @media (max-width: 575.98px){.modal.o_technical_modal.o_modal_full .modal-dialog{margin: 0px; height: 100%;}.modal.o_technical_modal.o_modal_full .modal-dialog .modal-content{height: 100%; border: none;}.modal.o_technical_modal.o_modal_full .modal-dialog .modal-content .modal-header{background: #7C7BAD;}.modal.o_technical_modal.o_modal_full .modal-dialog .modal-content .modal-header .modal-title, .modal.o_technical_modal.o_modal_full .modal-dialog .modal-content .modal-header .o_subtitle, .modal.o_technical_modal.o_modal_full .modal-dialog .modal-content .modal-header button.close{color: white;}.modal.o_technical_modal.o_modal_full .modal-dialog .modal-content .modal-body{height: 100%; overflow-y: auto;}} \n/* /web/static/src/scss/animation.scss defined in bundle 'web.assets_common' */\n @keyframes markAnim{0%{opacity: 0; transform: scaleX(0.5) scaleY(0.5);}30%{opacity: 1; transform: scaleX(1) scaleY(1);}100%{opacity: 0; transform: scaleX(1) scaleY(1);}} @-moz-keyframes markAnim{0%{opacity: 0; -moz-transform: scaleX(0.5) scaleY(0.5);}30%{opacity: 1; -moz-transform: scaleX(1) scaleY(1);}100%{opacity: 0; -moz-transform: scaleX(1) scaleY(1);}} @-webkit-keyframes markAnim{0%{opacity: 0; -webkit-transform: scaleX(0.5) scaleY(0.5);}30%{opacity: 1; -webkit-transform: scaleX(1) scaleY(1);}100%{opacity: 0; -webkit-transform: scaleX(1) scaleY(1);}} @-o-keyframes markAnim{0%{opacity: 0; -o-transform: scaleX(0.5) scaleY(0.5);}30%{opacity: 1; -o-transform: scaleX(1) scaleY(1);}100%{opacity: 0; -o-transform: scaleX(1) scaleY(1);}} @-ms-keyframes markAnim{0%{opacity: 0; -ms-transform: scaleX(0.5) scaleY(0.5);}30%{opacity: 1; -ms-transform: scaleX(1) scaleY(1);}100%{opacity: 0; -ms-transform: scaleX(1) scaleY(1);}} @-webkit-keyframes bounceIn{0%, 20%, 40%, 60%, 80%, 100%{-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);}0%{opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3);}20%{-webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1);}40%{-webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9);}60%{opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03);}80%{-webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97);}100%{opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1);}} @keyframes bounceIn{0%, 20%, 40%, 60%, 80%, 100%{-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);}0%{opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3);}20%{-webkit-transform: scale3d(1.1, 1.1, 1.1); transform: scale3d(1.1, 1.1, 1.1);}40%{-webkit-transform: scale3d(0.9, 0.9, 0.9); transform: scale3d(0.9, 0.9, 0.9);}60%{opacity: 1; -webkit-transform: scale3d(1.03, 1.03, 1.03); transform: scale3d(1.03, 1.03, 1.03);}80%{-webkit-transform: scale3d(0.97, 0.97, 0.97); transform: scale3d(0.97, 0.97, 0.97);}100%{opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1);}} \n/* /web/static/src/scss/rainbow.scss defined in bundle 'web.assets_common' */\n .o_reward{will-change: transform; z-index: 1050; padding: 50px; margin: -5% auto 0 -200px; background-image: -webkit-radial-gradient(#EDEFF4 30%, transparent 70%, transparent); background-image: -o-radial-gradient(#EDEFF4 30%, transparent 70%, transparent); background-image: radial-gradient(#EDEFF4 30%, transparent 70%, transparent); animation: reward-fading 0.7s ease-in-out 0s 1 normal forwards; position: absolute; top: 20%; left: 50%; bottom: auto; right: auto; width: 400px; height: 400px;} @media (max-width: 767.98px){.o_reward{margin: -5% auto 0 -150px;}} @media (max-width: 767.98px){.o_reward{width: 300px; height: 300px;}} .o_reward.o_reward_fading{display: block; animation: reward-fading-reverse 0.56s ease-in-out 0s 1 normal forwards;} .o_reward.o_reward_fading .o_reward_face_group{animation: reward-jump-reverse 0.56s ease-in-out 0s 1 normal forwards;} .o_reward.o_reward_fading .o_reward_rainbow path{animation: reward-rainbow-reverse 0.7s ease-out 0s 1 normal forwards;} .o_reward .o_reward_face, .o_reward .o_reward_stars, .o_reward .o_reward_shadow, .o_reward .o_reward_thumbup{margin: 0 auto;} .o_reward .o_reward_rainbow path{stroke-dasharray: 600; stroke-dashoffset: 0; fill: none; stroke-linecap: round; stroke-width: 21px; animation: reward-rainbow 1.4s ease-out 0s 1 normal forwards;} .o_reward .o_reward_face_group{transform-origin: center; animation: reward-jump 1.12s ease-in-out 0s 1 normal none running; position: absolute; top: 6%; left: 0; bottom: 0; right: 0; width: 100%; height: 60%;} .o_reward .o_reward_face{display: block; top: 42%; position: relative; border-radius: 100%; background: center center / contain no-repeat; animation: reward-float 1.4s ease-in-out 1.4s infinite alternate; width: 34%; height: 56.67%;} .o_reward .o_reward_stars{display: block; width: 300px; height: 200px; position: absolute; top: 18%; left: auto; bottom: auto; right: 7%;} @media (max-width: 767.98px){.o_reward .o_reward_stars{width: 225px; height: 150px;}} .o_reward .o_reward_stars svg{transform-origin: center center; position: absolute; top: 28%; left: 3%; bottom: auto; right: auto; animation: reward-stars 1.4s ease-in-out 0s infinite alternate-reverse;} .o_reward .o_reward_stars svg.star2, .o_reward .o_reward_stars svg.star4{animation: reward-stars 1.68s ease-in-out 0s infinite alternate;} .o_reward .o_reward_stars svg.star2{left: 20%; top: 2%;} .o_reward .o_reward_stars svg.star3{left: 49%; top: 6%;} .o_reward .o_reward_stars svg.star4{left: 70%; top: 27%;} .o_reward .o_reward_thumbup{width: 40px; display: block; animation: reward-scale 0.7s ease-in-out 0s infinite alternate; position: absolute; top: 63%; left: 65%; bottom: auto; right: auto;} .o_reward .o_reward_msg_container{will-change: transform; padding-top: 11%; width: 70%; margin-left: 15%; transform: translateY(5px); animation: reward-float 1.4s ease-in-out 1.4s infinite alternate-reverse; position: absolute; top: 85%; left: 0%; bottom: auto; right: auto;} .o_reward .o_reward_msg_container .o_reward_thumb_right{height: 40px; z-index: 1; position: absolute; top: 0; left: 16%; bottom: auto; right: auto;} .o_reward .o_reward_msg_container .o_reward_msg{margin-left: 7%; margin-top: -9.5%; padding: 25px 15px 20px; background: white; border: 1px solid #ecf1ff; border-top-width: 0; display: inline-block;} .o_reward .o_reward_msg_container .o_reward_msg *:first-child{margin-top: 0;} .o_reward .o_reward_msg_container .o_reward_msg_content{position: relative; font-family: sans-serif; text-align: left; color: #727880;} .o_reward .o_reward_msg_container .o_reward_shadow_container{transform: translateY(0px) rotateZ(0); animation: reward-float 1.4s ease-in-out 1.4s infinite alternate;} .o_reward .o_reward_msg_container .o_reward_shadow{width: 100%; height: 12px; background-color: #e7eaf0; border-radius: 100%; transform: scale(0.8) rotateZ(0); animation: reward-scale 1.4s ease-in-out 1.4s infinite alternate; position: absolute; top: auto; left: 0; bottom: -40px; right: auto;} @keyframes reward-fading{0%{opacity: 0;}100%{opacity: 1;}} @keyframes reward-fading-reverse{100%{opacity: 0;}} @keyframes reward-jump{0%{transform: scale(0.5);}50%{transform: scale(1.05);}to{transform: scale(1);}} @keyframes reward-jump-reverse{0%{transform: scale(1);}50%{transform: scale(1.05);}to{transform: scale(0.5);}} @keyframes reward-rainbow{0%{stroke-dashoffset: -500;}to{stroke-dashoffset: 0;}} @keyframes reward-rainbow-reverse{to{stroke-dashoffset: -500;}} @keyframes reward-float{from{transform: translateY(0px);}to{transform: translateY(5px);}} @keyframes reward-stars{from{transform: scale(0.3) rotate(0deg);}50%{transform: scale(1) rotate(20deg);}to{transform: scale(0.3) rotate(80deg);}} @keyframes reward-scale{from{transform: scale(0.8);}to{transform: scale(1);}} \n/* /web/static/src/scss/datepicker.scss defined in bundle 'web.assets_common' */\n .sr-only, .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after, .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after, .bootstrap-datetimepicker-widget .btn[data-action="today"]::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget table th.next::after{position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;} .o_datepicker{position: relative;} .o_datepicker .o_datepicker_input{width: 100%; cursor: pointer;} .o_datepicker .o_datepicker_button{position: absolute; top: 2px; left: auto; bottom: auto; right: 4px; pointer-events: none;} .o_datepicker .o_datepicker_button:after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999);} .o_datepicker .o_datepicker_warning{top: 0; right: 20px;} div.dropdown-menu.bootstrap-datetimepicker-widget{z-index: 1051; width: 19rem;} .datepicker .table-sm > thead{color: white; background-color: #7C7BAD;} .datepicker .table-sm > thead > tr:first-child th:hover{color: white; background-color: #5f5e97;} .datepicker .table-sm > thead > tr:last-child{color: #8f8f8f; background-color: #dcdbdb;} .datepicker .table-sm > thead > tr > th{border-radius: 0;} .datepicker .table-sm > tbody > tr > td.active, .datepicker .table-sm > tbody > tr > td .active{background-color: #7C7BAD; border-radius: 100px;} .datepicker .table-sm > tbody > tr > td.today:before{border-bottom-color: #7C7BAD;} .o_rtl .bootstrap-datetimepicker-widget .list-unstyled{padding: 0;} .o_rtl .bootstrap-datetimepicker-widget .list-unstyled .prev, .o_rtl .bootstrap-datetimepicker-widget .list-unstyled .next{transform: rotate(180deg);} \n/* /web/static/src/scss/banner.scss defined in bundle 'web.assets_common' */\n .o_has_banner .o_view_nocontent{top: 30%;} @media (max-width: 767.98px){.o_has_banner .o_view_nocontent{position: relative; margin: auto;}} \n/* /web/static/src/scss/colorpicker.scss defined in bundle 'web.assets_common' */\n .o_colorpicker_widget .o_color_pick_area{position: relative; width: 200px; height: 200px; background-image: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 50%, transparent 50%, black 100%), linear-gradient(to right, #807f7f 0%, rgba(128, 127, 127, 0) 100%); cursor: crosshair;} .o_colorpicker_widget .o_color_pick_area .o_picker_pointer{position: absolute; width: 10px; height: 10px; border: 1px solid white; box-shadow: 0px 0px 2px 1px #ced4da;} .o_colorpicker_widget .o_color_slider{position: relative; width: 18px; height: 200px; background: linear-gradient(#F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%); cursor: pointer;} .o_colorpicker_widget .o_color_slider .o_slider_pointer{position: absolute; top: auto; left: -4px; bottom: auto; right: auto; width: 23px; height: 6px; border: 1px solid white; box-shadow: 0px 0px 2px 1px #6c757d;} .o_colorpicker_widget .o_opacity_slider{position: relative; width: 18px; height: 200px; cursor: pointer;} .o_colorpicker_widget .o_opacity_slider .o_opacity_pointer{position: absolute; top: auto; left: -4px; bottom: auto; right: auto; width: 23px; height: 6px; border: 1px solid white; box-shadow: 0px 0px 2px 1px #6c757d;} .o_colorpicker_widget .o_opacity_slider::before{content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: -1; background-image: url("/web_editor/static/src/img/transparent.png");} .o_colorpicker_widget .o_color_picker_inputs .o_color_preview_parent{background-image: url("/web_editor/static/src/img/transparent.png");} .o_colorpicker_widget .o_color_picker_inputs .o_color_preview{padding: 0.375rem 1.2rem;} .o_colorpicker_widget .o_color_picker_inputs .form-group{margin-bottom: 0.3rem;} .o_colorpicker_widget .o_color_picker_inputs .form-group label{margin-bottom: 0px; font-size: 0.7rem; font-weight: bold;} .o_colorpicker_widget .o_color_picker_inputs .form-control{height: 24px !important; font-weight: bold;} \n/* /web/static/src/scss/keyboard.scss defined in bundle 'web.assets_common' */\n .o_shortcut_table{border-collapse: separate; border-spacing: 0 1em;} .o_shortcut_table .o_key{background-color: #F4F7F8; border-radius: 3px; border: 1px solid #B4B4B4; box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2), inset 0px -1px 1px 1px rgba(230, 230, 230, 0.8), inset 0px 2px 0px 0px rgba(255, 255, 255, 0.8); display: inline-block; font-family: Consolas,"Liberation Mono",Courier,monospace; font-size: 0.85em; padding: 2px 4px;} \n/* /web/static/src/scss/fontawesome_overriden.scss defined in bundle 'web.assets_common' */\n .o_rtl .fa.fa-align-right, .o_rtl .fa.fa-align-left, .o_rtl .fa.fa-chevron-right, .o_rtl .fa.fa-chevron-left, .o_rtl .fa.fa-arrow-right, .o_rtl .fa.fa-arrow-left, .o_rtl .fa.fa-hand-o-right, .o_rtl .fa.fa-hand-o-left, .o_rtl .fa.fa-arrow-circle-right, .o_rtl .fa.fa-arrow-circle-left, .o_rtl .fa.fa-caret-right, .o_rtl .fa.fa-caret-left, .o_rtl .fa.fa-rotate-right, .o_rtl .fa.fa-rotate-left, .o_rtl .fa.fa-angle-double-right, .o_rtl .fa.fa-angle-double-left, .o_rtl .fa.fa-angle-right, .o_rtl .fa.fa-angle-left, .o_rtl .fa.fa-quote-right, .o_rtl .fa.fa-quote-left, .o_rtl .fa.fa-chevron-circle-right, .o_rtl .fa.fa-chevron-circle-left, .o_rtl .fa.fa-long-arrow-right, .o_rtl .fa.fa-long-arrow-left, .o_rtl .fa.fa-toggle-right, .o_rtl .fa.fa-toggle-left, .o_rtl .fa.fa-caret-square-o-right, .o_rtl .fa.fa-arrow-circle-o-left, .o_rtl .fa.fa-arrow-circle-o-right, .o_rtl .fa.fa-caret-square-o-left{transform: rotate(180deg);} \n/* /web_tour/static/src/scss/tip.scss defined in bundle 'web.assets_common' */\n .o_tooltip_parent{position: relative !important; opacity: 0.999;} .o_tooltip{box-sizing: content-box; position: absolute; top: 50%; left: 50%; bottom: auto; right: auto; opacity: 0; width: 24px; height: 24px; border: 2px solid #7C7BAD; border-radius: 50%; padding: 0; z-index: 1070; background-color: #7C7BAD; box-shadow: 0 2px 2px 1px rgba(150, 150, 150, 0.3); transition: width 133ms ease 0ms, height 133ms ease 0ms, margin 133ms ease 0ms, border-radius 133ms ease 66ms;} .o_tooltip.o_animated{animation: move-bottom-top 500ms ease-in 0ms infinite alternate;} .o_tooltip.o_animated.right, .o_tooltip.o_animated.left{animation-name: move-left-right;} .o_tooltip::before{content: ""; border: 0 solid transparent; transition: all 100ms ease 100ms;} .o_tooltip.right::before{position: absolute; top: 2px; left: -8px; bottom: auto; right: auto; border-width: 10px 10px 10px 0; border-right-color: #7C7BAD;} .o_tooltip.top::before{position: absolute; top: auto; left: 2px; bottom: -8px; right: auto; border-width: 10px 10px 0 10px; border-top-color: #7C7BAD;} .o_tooltip.left::before{position: absolute; top: 2px; left: auto; bottom: auto; right: -8px; border-width: 10px 0 10px 10px; border-left-color: #7C7BAD;} .o_tooltip.bottom::before{position: absolute; top: -8px; left: 2px; bottom: auto; right: auto; border-width: 0 10px 10px 10px; border-bottom-color: #7C7BAD;} .o_tooltip::after{content: ""; position: absolute; top: -2px; left: -2px; bottom: -2px; right: -2px; border-color: #7C7BAD; border-radius: 50%; transition: margin 133ms ease 0ms, border-radius 200ms linear 0s; background: radial-gradient(#9291bb, #7C7BAD);} .o_tooltip > .o_tooltip_overlay{display: none; position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin: -2px; z-index: -1;} .o_tooltip > .o_tooltip_content{overflow: hidden; padding: 6px 12px; visibility: hidden; transition: visibility 0s ease 0s; color: black; line-height: 1.5; font-size: 1rem; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; font-weight: normal;} .o_tooltip > .o_tooltip_content .o_skip_tour{display: inline-block; margin-top: 4px; cursor: pointer; color: gray;} .o_tooltip > .o_tooltip_content .o_skip_tour:hover{color: #4d4d4d;} .o_tooltip > .o_tooltip_content > p:last-child{margin-bottom: 0;} .o_tooltip.active{border-radius: 0; background-color: white; transition: width 225ms ease 75ms, height 225ms ease 75ms, margin 225ms ease 75ms, border-radius 150ms ease 0ms, background-color 300ms ease 0ms;} .o_tooltip.active::before{transition: all 150ms ease 0ms;} .o_tooltip.active::after{border: 0 solid transparent; border-radius: 0;} .o_tooltip.active > .o_tooltip_overlay{display: block;} .o_tooltip.active > .o_tooltip_content{direction: ltr; visibility: visible; transition: visibility 0s ease 300ms;} .o_tooltip.active.right::before{left: -10px; border-right-color: #7C7BAD;} .o_tooltip.active.right::after{position: absolute; top: 2px; left: -6px; bottom: auto; right: auto; border-width: 10px 10px 10px 0; border-right-color: white; transition: border-right-color 300ms ease 0ms;} .o_tooltip.active.top::before{bottom: -10px; border-top-color: #7C7BAD;} .o_tooltip.active.top::after{position: absolute; top: auto; left: 2px; bottom: -6px; right: auto; border-width: 10px 10px 0 10px; border-top-color: white; transition: border-top-color 300ms ease 0ms;} .o_tooltip.active.left::before{right: -10px; border-left-color: #7C7BAD;} .o_tooltip.active.left::after{position: absolute; top: 2px; left: auto; bottom: auto; right: -6px; border-width: 10px 0 10px 10px; border-left-color: white; transition: border-left-color 300ms ease 0ms;} .o_tooltip.active.bottom::before{top: -10px; border-bottom-color: #7C7BAD;} .o_tooltip.active.bottom::after{position: absolute; top: -6px; left: 2px; bottom: auto; right: auto; border-width: 0 10px 10px 10px; border-bottom-color: white; transition: border-bottom-color 300ms ease 0ms;} .o_tooltip.inverse.left::before, .o_tooltip.inverse.left.active::after, .o_tooltip.inverse.right::before, .o_tooltip.inverse.right.active::after{top: auto; bottom: 2px;} .o_tooltip.inverse.top::before, .o_tooltip.inverse.top.active::after, .o_tooltip.inverse.bottom::before, .o_tooltip.inverse.bottom.active::after{left: auto; right: 2px;} @media print{.o_tooltip{display: none;}} \n/* /web_tour/static/src/scss/keyframes.scss defined in bundle 'web.assets_common' */\n @-webkit-keyframes move-left-right{0%{transform: translate(-3px, 0);}100%{transform: translate(3px, 0);}} @-moz-keyframes move-left-right{0%{transform: translate(-3px, 0);}100%{transform: translate(3px, 0);}} @keyframes move-left-right{0%{transform: translate(-3px, 0);}100%{transform: translate(3px, 0);}} @-webkit-keyframes move-bottom-top{0%{transform: translate(0, -3px);}100%{transform: translate(0, 3px);}} @-moz-keyframes move-bottom-top{0%{transform: translate(0px, -3px);}100%{transform: translate(0, 3px);}} @keyframes move-bottom-top{0%{transform: translate(0px, -3px);}100%{transform: translate(0, 3px);}} t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -247 /web/content/247-32fd946/web.assets_backend.0.css web.assets_backend.0.css \N \N ir.ui.view View \N 0 1 binary /web/content/247-32fd946/web.assets_backend.0.css t \N \N 42/4241ebd30d857f74f1ce806cef042b20323f896a 270010 4241ebd30d857f74f1ce806cef042b20323f896a text/css /* defined in bundle 'web.assets_backend' */\n@charset "UTF-8"; \n/* /web/static/lib/bootstrap/scss/_functions.scss defined in bundle 'web.assets_backend' */\n/* /web/static/lib/bootstrap/scss/_mixins.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/utils.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/bs_mixins_overrides.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/primary_variables.scss defined in bundle 'web.assets_backend' */\n/* /web_editor/static/src/scss/web_editor.variables.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/secondary_variables.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/bootstrap_overridden.scss defined in bundle 'web.assets_backend' */\n/* /web_editor/static/src/scss/bootstrap_overridden.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/import_bootstrap_part1.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/bs_mixins_overrides.scss defined in bundle 'web.assets_backend' */\n/* /web/static/src/scss/import_bootstrap_part2.scss defined in bundle 'web.assets_backend' */\n :root{--blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #dc3545; --orange: #fd7e14; --yellow: #ffc107; --green: #28a745; --teal: #20c997; --cyan: #17a2b8; --white: #fff; --gray: #6c757d; --gray-dark: #343a40; --primary: #7C7BAD; --secondary: #fff; --success: #28a745; --info: #17a2b8; --warning: #ffc107; --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; --alpha: #00A09D; --beta: #875A7B; --gamma: #5C5B80; --delta: #5B899E; --epsilon: #E46F78; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: "Noto", "Lucida Grande", Helvetica, Verdana, Arial, sans-serif; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;} *, *::before, *::after{box-sizing: border-box;} html{font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: transparent;} @-ms-viewport{width: device-width;} article, aside, figcaption, figure, footer, header, hgroup, main, nav, section{display: block;} body{margin: 0; font-family: "Noto", "Lucida Grande", Helvetica, Verdana, Arial, sans-serif; font-size: 1.08333333rem; font-weight: 400; line-height: 1.5; color: #4c4c4c; text-align: left; background-color: #f0eeee;} [tabindex="-1"]:focus{outline: 0 !important;} hr{box-sizing: content-box; height: 0; overflow: visible;} h1, h2, h3, h4, h5, h6{margin-top: 0; margin-bottom: 0.5rem;} p{margin-top: 0; margin-bottom: 1rem;} abbr[title], abbr[data-original-title]{text-decoration: underline; text-decoration: underline dotted; cursor: help; border-bottom: 0;} address{margin-bottom: 1rem; font-style: normal; line-height: inherit;} ol, ul, dl{margin-top: 0; margin-bottom: 1rem;} ol ol, ul ul, ol ul, ul ol{margin-bottom: 0;} dt{font-weight: 700;} dd{margin-bottom: .5rem; margin-left: 0;} blockquote{margin: 0 0 1rem;} dfn{font-style: italic;} b, strong{font-weight: bolder;} small{font-size: 80%;} sub, sup{position: relative; font-size: 75%; line-height: 0; vertical-align: baseline;} sub{bottom: -.25em;} sup{top: -.5em;} a{color: #7C7BAD; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects;} a:hover{color: #555487; text-decoration: none;} a:not([href]):not([tabindex]){color: inherit; text-decoration: none;} a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus{color: inherit; text-decoration: none;} a:not([href]):not([tabindex]):focus{outline: 0;} pre, code, kbd, samp{font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 1em;} pre{margin-top: 0; margin-bottom: 1rem; overflow: auto; -ms-overflow-style: scrollbar;} figure{margin: 0 0 1rem;} img{vertical-align: middle; border-style: none;} svg{overflow: hidden; vertical-align: middle;} table{border-collapse: collapse;} caption{padding-top: 0.75rem; padding-bottom: 0.75rem; color: #adb5bd; text-align: left; caption-side: bottom;} th{text-align: inherit;} label{display: inline-block; margin-bottom: 0.5rem;} button{border-radius: 0;} button:focus{outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color;} input, button, select, optgroup, textarea{margin: 0; font-family: inherit; font-size: inherit; line-height: inherit;} button, input{overflow: visible;} button, select{text-transform: none;} button, html [type="button"], [type="reset"], [type="submit"]{-webkit--webkit-appearance: button; -moz-appearance: button; appearance: button;} button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner{padding: 0; border-style: none;} input[type="radio"], input[type="checkbox"]{box-sizing: border-box; padding: 0;} input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"]{-webkit--webkit-appearance: listbox; -moz-appearance: listbox; appearance: listbox;} textarea{overflow: auto; resize: vertical;} fieldset{min-width: 0; padding: 0; margin: 0; border: 0;} legend{display: block; width: 100%; max-width: 100%; padding: 0; margin-bottom: .5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal;} progress{vertical-align: baseline;} [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button{height: auto;} [type="search"]{outline-offset: -2px; -webkit--webkit-appearance: none; -moz-appearance: none; appearance: none;} [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration{-webkit--webkit-appearance: none; -moz-appearance: none; appearance: none;} ::-webkit-file-upload-button{font: inherit; -webkit--webkit-appearance: button; -moz-appearance: button; appearance: button;} output{display: inline-block;} summary{display: list-item; cursor: pointer;} template{display: none;} [hidden]{display: none !important;} h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{margin-bottom: 0.5rem; font-family: inherit; font-weight: bold; line-height: 1.2; color: inherit;} h1, .h1{font-size: 2.16666667rem;} h2, .h2{font-size: 1.625rem;} h3, .h3{font-size: 1.40833333rem;} h4, .h4{font-size: 1.3rem;} h5, .h5{font-size: 1.19166667rem;} h6, .h6{font-size: 1.08333333rem;} .lead{font-size: 1.35416667rem; font-weight: 300;} .display-1{font-size: 6rem; font-weight: 300; line-height: 1.2;} .display-2{font-size: 5.5rem; font-weight: 300; line-height: 1.2;} .display-3{font-size: 4.5rem; font-weight: 300; line-height: 1.2;} .display-4{font-size: 3.5rem; font-weight: 300; line-height: 1.2;} hr{margin-top: 1rem; margin-bottom: 1rem; border: 0; border-top: 1px solid rgba(0, 0, 0, 0.1);} small, .small{font-size: 80%; font-weight: 400;} mark, .mark{padding: 0.2em; background-color: #fcf8e3;} .list-unstyled{padding-left: 0; list-style: none;} .list-inline{padding-left: 0; list-style: none;} .list-inline-item{display: inline-block;} .list-inline-item:not(:last-child){margin-right: 0.5rem;} .initialism{font-size: 90%; text-transform: uppercase;} .blockquote{margin-bottom: 1rem; font-size: 1.35416667rem;} .blockquote-footer{display: block; font-size: 80%; color: #6c757d;} .blockquote-footer::before{content: "\\2014 \\00A0";} .img-fluid{max-width: 100%; height: auto;} .img-thumbnail{padding: 0.25rem; background-color: #f0eeee; border: 1px solid #dee2e6; border-radius: 3px; max-width: 100%; height: auto;} .figure{display: inline-block;} .figure-img{margin-bottom: 0.5rem; line-height: 1;} .figure-caption{font-size: 90%; color: #6c757d;} code{font-size: 87.5%; color: #e83e8c; word-break: break-word;} a > code{color: inherit;} kbd{padding: 0.2rem 0.4rem; font-size: 87.5%; color: #fff; background-color: #212529; border-radius: 0.2rem;} kbd kbd{padding: 0; font-size: 100%; font-weight: 700;} pre{display: block; font-size: 87.5%; color: #212529;} pre code{font-size: inherit; color: inherit; word-break: normal;} .pre-scrollable{max-height: 340px; overflow-y: scroll;} .container{width: 100%; padding-right: 16px; padding-left: 16px; margin-right: auto; margin-left: auto;} @media (min-width: 576px){.container{max-width: 540px;}} @media (min-width: 768px){.container{max-width: 720px;}} @media (min-width: 992px){.container{max-width: 960px;}} @media (min-width: 1200px){.container{max-width: 1140px;}} .container-fluid{width: 100%; padding-right: 16px; padding-left: 16px; margin-right: auto; margin-left: auto;} .row{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; margin-right: -16px; margin-left: -16px;} .no-gutters{margin-right: 0; margin-left: 0;} .no-gutters > .col, .no-gutters > [class*="col-"]{padding-right: 0; padding-left: 0;} .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto{position: relative; width: 100%; min-height: 1px; padding-right: 16px; padding-left: 16px;} .col{flex-basis: 0; flex-grow: 1; max-width: 100%;} .col-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;} .col-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;} .col-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;} .col-3{flex: 0 0 25%; max-width: 25%;} .col-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;} .col-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;} .col-6{flex: 0 0 50%; max-width: 50%;} .col-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;} .col-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;} .col-9{flex: 0 0 75%; max-width: 75%;} .col-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;} .col-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;} .col-12{flex: 0 0 100%; max-width: 100%;} .order-first{order: -1;} .order-last{order: 13;} .order-0{order: 0;} .order-1{order: 1;} .order-2{order: 2;} .order-3{order: 3;} .order-4{order: 4;} .order-5{order: 5;} .order-6{order: 6;} .order-7{order: 7;} .order-8{order: 8;} .order-9{order: 9;} .order-10{order: 10;} .order-11{order: 11;} .order-12{order: 12;} .offset-1{margin-left: 8.33333333%;} .offset-2{margin-left: 16.66666667%;} .offset-3{margin-left: 25%;} .offset-4{margin-left: 33.33333333%;} .offset-5{margin-left: 41.66666667%;} .offset-6{margin-left: 50%;} .offset-7{margin-left: 58.33333333%;} .offset-8{margin-left: 66.66666667%;} .offset-9{margin-left: 75%;} .offset-10{margin-left: 83.33333333%;} .offset-11{margin-left: 91.66666667%;} @media (min-width: 576px){.col-sm{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-sm-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-sm-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-sm-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-sm-3{flex: 0 0 25%; max-width: 25%;}.col-sm-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-sm-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-sm-6{flex: 0 0 50%; max-width: 50%;}.col-sm-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-sm-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-sm-9{flex: 0 0 75%; max-width: 75%;}.col-sm-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-sm-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-sm-12{flex: 0 0 100%; max-width: 100%;}.order-sm-first{order: -1;}.order-sm-last{order: 13;}.order-sm-0{order: 0;}.order-sm-1{order: 1;}.order-sm-2{order: 2;}.order-sm-3{order: 3;}.order-sm-4{order: 4;}.order-sm-5{order: 5;}.order-sm-6{order: 6;}.order-sm-7{order: 7;}.order-sm-8{order: 8;}.order-sm-9{order: 9;}.order-sm-10{order: 10;}.order-sm-11{order: 11;}.order-sm-12{order: 12;}.offset-sm-0{margin-left: 0;}.offset-sm-1{margin-left: 8.33333333%;}.offset-sm-2{margin-left: 16.66666667%;}.offset-sm-3{margin-left: 25%;}.offset-sm-4{margin-left: 33.33333333%;}.offset-sm-5{margin-left: 41.66666667%;}.offset-sm-6{margin-left: 50%;}.offset-sm-7{margin-left: 58.33333333%;}.offset-sm-8{margin-left: 66.66666667%;}.offset-sm-9{margin-left: 75%;}.offset-sm-10{margin-left: 83.33333333%;}.offset-sm-11{margin-left: 91.66666667%;}} @media (min-width: 768px){.col-md{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-md-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-md-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-md-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-md-3{flex: 0 0 25%; max-width: 25%;}.col-md-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-md-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-md-6{flex: 0 0 50%; max-width: 50%;}.col-md-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-md-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-md-9{flex: 0 0 75%; max-width: 75%;}.col-md-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-md-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-md-12{flex: 0 0 100%; max-width: 100%;}.order-md-first{order: -1;}.order-md-last{order: 13;}.order-md-0{order: 0;}.order-md-1{order: 1;}.order-md-2{order: 2;}.order-md-3{order: 3;}.order-md-4{order: 4;}.order-md-5{order: 5;}.order-md-6{order: 6;}.order-md-7{order: 7;}.order-md-8{order: 8;}.order-md-9{order: 9;}.order-md-10{order: 10;}.order-md-11{order: 11;}.order-md-12{order: 12;}.offset-md-0{margin-left: 0;}.offset-md-1{margin-left: 8.33333333%;}.offset-md-2{margin-left: 16.66666667%;}.offset-md-3{margin-left: 25%;}.offset-md-4{margin-left: 33.33333333%;}.offset-md-5{margin-left: 41.66666667%;}.offset-md-6{margin-left: 50%;}.offset-md-7{margin-left: 58.33333333%;}.offset-md-8{margin-left: 66.66666667%;}.offset-md-9{margin-left: 75%;}.offset-md-10{margin-left: 83.33333333%;}.offset-md-11{margin-left: 91.66666667%;}} @media (min-width: 992px){.col-lg{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-lg-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-lg-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-lg-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-lg-3{flex: 0 0 25%; max-width: 25%;}.col-lg-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-lg-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-lg-6{flex: 0 0 50%; max-width: 50%;}.col-lg-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-lg-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-lg-9{flex: 0 0 75%; max-width: 75%;}.col-lg-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-lg-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-lg-12{flex: 0 0 100%; max-width: 100%;}.order-lg-first{order: -1;}.order-lg-last{order: 13;}.order-lg-0{order: 0;}.order-lg-1{order: 1;}.order-lg-2{order: 2;}.order-lg-3{order: 3;}.order-lg-4{order: 4;}.order-lg-5{order: 5;}.order-lg-6{order: 6;}.order-lg-7{order: 7;}.order-lg-8{order: 8;}.order-lg-9{order: 9;}.order-lg-10{order: 10;}.order-lg-11{order: 11;}.order-lg-12{order: 12;}.offset-lg-0{margin-left: 0;}.offset-lg-1{margin-left: 8.33333333%;}.offset-lg-2{margin-left: 16.66666667%;}.offset-lg-3{margin-left: 25%;}.offset-lg-4{margin-left: 33.33333333%;}.offset-lg-5{margin-left: 41.66666667%;}.offset-lg-6{margin-left: 50%;}.offset-lg-7{margin-left: 58.33333333%;}.offset-lg-8{margin-left: 66.66666667%;}.offset-lg-9{margin-left: 75%;}.offset-lg-10{margin-left: 83.33333333%;}.offset-lg-11{margin-left: 91.66666667%;}} @media (min-width: 1200px){.col-xl{flex-basis: 0; flex-grow: 1; max-width: 100%;}.col-xl-auto{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none;}.col-xl-1{flex: 0 0 8.33333333%; max-width: 8.33333333%;}.col-xl-2{flex: 0 0 16.66666667%; max-width: 16.66666667%;}.col-xl-3{flex: 0 0 25%; max-width: 25%;}.col-xl-4{flex: 0 0 33.33333333%; max-width: 33.33333333%;}.col-xl-5{flex: 0 0 41.66666667%; max-width: 41.66666667%;}.col-xl-6{flex: 0 0 50%; max-width: 50%;}.col-xl-7{flex: 0 0 58.33333333%; max-width: 58.33333333%;}.col-xl-8{flex: 0 0 66.66666667%; max-width: 66.66666667%;}.col-xl-9{flex: 0 0 75%; max-width: 75%;}.col-xl-10{flex: 0 0 83.33333333%; max-width: 83.33333333%;}.col-xl-11{flex: 0 0 91.66666667%; max-width: 91.66666667%;}.col-xl-12{flex: 0 0 100%; max-width: 100%;}.order-xl-first{order: -1;}.order-xl-last{order: 13;}.order-xl-0{order: 0;}.order-xl-1{order: 1;}.order-xl-2{order: 2;}.order-xl-3{order: 3;}.order-xl-4{order: 4;}.order-xl-5{order: 5;}.order-xl-6{order: 6;}.order-xl-7{order: 7;}.order-xl-8{order: 8;}.order-xl-9{order: 9;}.order-xl-10{order: 10;}.order-xl-11{order: 11;}.order-xl-12{order: 12;}.offset-xl-0{margin-left: 0;}.offset-xl-1{margin-left: 8.33333333%;}.offset-xl-2{margin-left: 16.66666667%;}.offset-xl-3{margin-left: 25%;}.offset-xl-4{margin-left: 33.33333333%;}.offset-xl-5{margin-left: 41.66666667%;}.offset-xl-6{margin-left: 50%;}.offset-xl-7{margin-left: 58.33333333%;}.offset-xl-8{margin-left: 66.66666667%;}.offset-xl-9{margin-left: 75%;}.offset-xl-10{margin-left: 83.33333333%;}.offset-xl-11{margin-left: 91.66666667%;}} .table{width: 100%; margin-bottom: 1rem; background-color: transparent;} .table th, .table td{padding: 0.75rem; vertical-align: top; border-top: 1px solid #dee2e6;} .table thead th{vertical-align: bottom; border-bottom: 2px solid #dee2e6;} .table tbody + tbody{border-top: 2px solid #dee2e6;} .table .table{background-color: #f0eeee;} .table-sm th, .table-sm td{padding: 0.3rem;} .table-bordered{border: 1px solid #dee2e6;} .table-bordered th, .table-bordered td{border: 1px solid #dee2e6;} .table-bordered thead th, .table-bordered thead td{border-bottom-width: 2px;} .table-borderless th, .table-borderless td, .table-borderless thead th, .table-borderless tbody + tbody{border: 0;} .table-striped tbody tr:nth-of-type(odd){background-color: rgba(0, 0, 0, 0.01);} .table-hover tbody tr:hover{background-color: rgba(0, 0, 0, 0.04);} .table-primary, .table-primary > th, .table-primary > td{background-color: #dadae8;} .table-hover .table-primary:hover{background-color: #cacade;} .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th{background-color: #cacade;} .table-secondary, .table-secondary > th, .table-secondary > td{background-color: white;} .table-hover .table-secondary:hover{background-color: #f2f2f2;} .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th{background-color: #f2f2f2;} .table-success, .table-success > th, .table-success > td{background-color: #c3e6cb;} .table-hover .table-success:hover{background-color: #b1dfbb;} .table-hover .table-success:hover > td, .table-hover .table-success:hover > th{background-color: #b1dfbb;} .table-info, .table-info > th, .table-info > td{background-color: #bee5eb;} .table-hover .table-info:hover{background-color: #abdde5;} .table-hover .table-info:hover > td, .table-hover .table-info:hover > th{background-color: #abdde5;} .table-warning, .table-warning > th, .table-warning > td{background-color: #ffeeba;} .table-hover .table-warning:hover{background-color: #ffe8a1;} .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th{background-color: #ffe8a1;} .table-danger, .table-danger > th, .table-danger > td{background-color: #f5c6cb;} .table-hover .table-danger:hover{background-color: #f1b0b7;} .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th{background-color: #f1b0b7;} .table-light, .table-light > th, .table-light > td{background-color: #fdfdfe;} .table-hover .table-light:hover{background-color: #ececf6;} .table-hover .table-light:hover > td, .table-hover .table-light:hover > th{background-color: #ececf6;} .table-dark, .table-dark > th, .table-dark > td{background-color: #c6c8ca;} .table-hover .table-dark:hover{background-color: #b9bbbe;} .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th{background-color: #b9bbbe;} .table-alpha, .table-alpha > th, .table-alpha > td{background-color: #b8e4e4;} .table-hover .table-alpha:hover{background-color: #a6dddd;} .table-hover .table-alpha:hover > td, .table-hover .table-alpha:hover > th{background-color: #a6dddd;} .table-beta, .table-beta > th, .table-beta > td{background-color: #ddd1da;} .table-hover .table-beta:hover{background-color: #d2c2ce;} .table-hover .table-beta:hover > td, .table-hover .table-beta:hover > th{background-color: #d2c2ce;} .table-gamma, .table-gamma > th, .table-gamma > td{background-color: #d1d1db;} .table-hover .table-gamma:hover{background-color: #c3c3d0;} .table-hover .table-gamma:hover > td, .table-hover .table-gamma:hover > th{background-color: #c3c3d0;} .table-delta, .table-delta > th, .table-delta > td{background-color: #d1dee4;} .table-hover .table-delta:hover{background-color: #c1d2db;} .table-hover .table-delta:hover > td, .table-hover .table-delta:hover > th{background-color: #c1d2db;} .table-epsilon, .table-epsilon > th, .table-epsilon > td{background-color: #f7d7d9;} .table-hover .table-epsilon:hover{background-color: #f3c2c5;} .table-hover .table-epsilon:hover > td, .table-hover .table-epsilon:hover > th{background-color: #f3c2c5;} .table-active, .table-active > th, .table-active > td{background-color: rgba(0, 0, 0, 0.04);} .table-hover .table-active:hover{background-color: rgba(0, 0, 0, 0.04);} .table-hover .table-active:hover > td, .table-hover .table-active:hover > th{background-color: rgba(0, 0, 0, 0.04);} .table .thead-dark th{color: #f0eeee; background-color: #212529; border-color: #32383e;} .table .thead-light th{color: #495057; background-color: #e9ecef; border-color: #dee2e6;} .table-dark{color: #f0eeee; background-color: #212529;} .table-dark th, .table-dark td, .table-dark thead th{border-color: #32383e;} .table-dark.table-bordered{border: 0;} .table-dark.table-striped tbody tr:nth-of-type(odd){background-color: rgba(255, 255, 255, 0.05);} .table-dark.table-hover tbody tr:hover{background-color: rgba(255, 255, 255, 0.075);} @media (max-width: 575.98px){.table-responsive-sm{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-sm > .table-bordered{border: 0;}} @media (max-width: 767.98px){.table-responsive-md{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-md > .table-bordered{border: 0;}} @media (max-width: 991.98px){.table-responsive-lg{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-lg > .table-bordered{border: 0;}} @media (max-width: 1199.98px){.table-responsive-xl{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;}.table-responsive-xl > .table-bordered{border: 0;}} .table-responsive{display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar;} .table-responsive > .table-bordered{border: 0;} .form-control{display: block; width: 100%; height: calc(2.375rem + 2px); padding: 0.375rem 0.75rem; font-size: 1.08333333rem; line-height: 1.5; color: #495057; background-color: #fff; background-clip: padding-box; border: 1px solid #ced4da; border-radius: 3px; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;} @media screen and (prefers-reduced-motion: reduce){.form-control{transition: none;}} .form-control::-ms-expand{background-color: transparent; border: 0;} .form-control:focus{color: #495057; background-color: #fff; border-color: white; outline: 0; box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .form-control::placeholder{color: #6c757d; opacity: 1;} .form-control:disabled, .form-control[readonly]{background-color: #e9ecef; opacity: 1;} select.form-control:focus::-ms-value{color: #495057; background-color: #fff;} .form-control-file, .form-control-range{display: block; width: 100%;} .col-form-label{padding-top: calc(0.375rem + 1px); padding-bottom: calc(0.375rem + 1px); margin-bottom: 0; font-size: inherit; line-height: 1.5;} .col-form-label-lg{padding-top: calc(0.5rem + 1px); padding-bottom: calc(0.5rem + 1px); font-size: 1.35416667rem; line-height: 1.5;} .col-form-label-sm{padding-top: calc(0.25rem + 1px); padding-bottom: calc(0.25rem + 1px); font-size: 0.94791667rem; line-height: 1.5;} .form-control-plaintext{display: block; width: 100%; padding-top: 0.375rem; padding-bottom: 0.375rem; margin-bottom: 0; line-height: 1.5; color: #4c4c4c; background-color: transparent; border: solid transparent; border-width: 1px 0;} .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg{padding-right: 0; padding-left: 0;} .form-control-sm{height: calc(1.921875rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.94791667rem; line-height: 1.5; border-radius: 0.2rem;} .form-control-lg{height: calc(3.03125rem + 2px); padding: 0.5rem 1rem; font-size: 1.35416667rem; line-height: 1.5; border-radius: 0.3rem;} select.form-control[size], select.form-control[multiple]{height: auto;} textarea.form-control{height: auto;} .form-group{margin-bottom: 1rem;} .form-text{display: block; margin-top: 0.25rem;} .form-row{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; margin-right: -5px; margin-left: -5px;} .form-row > .col, .form-row > [class*="col-"]{padding-right: 5px; padding-left: 5px;} .form-check{position: relative; display: block; padding-left: 1.25rem;} .form-check-input{position: absolute; margin-top: 0.3rem; margin-left: -1.25rem;} .form-check-input:disabled ~ .form-check-label{color: #adb5bd;} .form-check-label{margin-bottom: 0;} .form-check-inline{display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; align-items: center; padding-left: 0; margin-right: 0.75rem;} .form-check-inline .form-check-input{position: static; margin-top: 0; margin-right: 0.3125rem; margin-left: 0;} .valid-feedback{display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: #28a745;} .valid-tooltip{position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: .1rem; font-size: 0.94791667rem; line-height: 1.5; color: #fff; background-color: rgba(40, 167, 69, 0.9); border-radius: 3px;} .was-validated .form-control:valid, .form-control.is-valid, .was-validated .custom-select:valid, .custom-select.is-valid{border-color: #28a745;} .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus{border-color: #28a745; box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);} .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip{display: block;} .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip{display: block;} .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label{color: #28a745;} .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip{display: block;} .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label{color: #28a745;} .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before{background-color: #71dd8a;} .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip{display: block;} .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before{background-color: #34ce57;} .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow: 0 0 0 1px #f0eeee, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);} .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label{border-color: #28a745;} .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after{border-color: inherit;} .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip{display: block;} .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);} .invalid-feedback{display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: #dc3545;} .invalid-tooltip{position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: .1rem; font-size: 0.94791667rem; line-height: 1.5; color: #fff; background-color: rgba(220, 53, 69, 0.9); border-radius: 3px;} .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid{border-color: #dc3545;} .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus{border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);} .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label{color: #dc3545;} .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label{color: #dc3545;} .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before{background-color: #efa2a9;} .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before{background-color: #e4606d;} .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow: 0 0 0 1px #f0eeee, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);} .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label{border-color: #dc3545;} .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after{border-color: inherit;} .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip{display: block;} .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);} .form-inline{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; align-items: center;} .form-inline .form-check{width: 100%;} @media (min-width: 576px){.form-inline label{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; margin-bottom: 0;}.form-inline .form-group{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; -webkit-flex-flow: row wrap; flex-flow: row wrap; align-items: center; margin-bottom: 0;}.form-inline .form-control{display: inline-block; width: auto; vertical-align: middle;}.form-inline .form-control-plaintext{display: inline-block;}.form-inline .input-group, .form-inline .custom-select{width: auto;}.form-inline .form-check{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; width: auto; padding-left: 0;}.form-inline .form-check-input{position: relative; margin-top: 0; margin-right: 0.25rem; margin-left: 0;}.form-inline .custom-control{align-items: center; justify-content: center;}.form-inline .custom-control-label{margin-bottom: 0;}} .btn{display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 1.08333333rem; line-height: 1.5; border-radius: 3px; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;} @media screen and (prefers-reduced-motion: reduce){.btn{transition: none;}} .btn:hover, .btn:focus{text-decoration: none;} .btn:focus, .btn.focus{outline: 0; box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .btn.disabled, .btn:disabled{opacity: 0.65;} .btn:not(:disabled):not(.disabled){cursor: pointer;} a.btn.disabled, fieldset:disabled a.btn{pointer-events: none;} .btn-primary{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} .btn-primary:hover{color: #fff; background-color: #65639e; border-color: #5f5e97;} .btn-primary:focus, .btn-primary.focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} .btn-primary.disabled, .btn-primary:disabled{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle{color: #fff; background-color: #5f5e97; border-color: #5a598f;} .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} .btn-secondary{color: #212529; background-color: #fff; border-color: #fff;} .btn-secondary:hover{color: #212529; background-color: #ececec; border-color: #e6e5e5;} .btn-secondary:focus, .btn-secondary.focus{box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);} .btn-secondary.disabled, .btn-secondary:disabled{color: #212529; background-color: #fff; border-color: #fff;} .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle{color: #212529; background-color: #e6e5e5; border-color: #dfdfdf;} .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);} .btn-success{color: #fff; background-color: #28a745; border-color: #28a745;} .btn-success:hover{color: #fff; background-color: #218838; border-color: #1e7e34;} .btn-success:focus, .btn-success.focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-success.disabled, .btn-success:disabled{color: #fff; background-color: #28a745; border-color: #28a745;} .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle{color: #fff; background-color: #1e7e34; border-color: #1c7430;} .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-info{color: #fff; background-color: #17a2b8; border-color: #17a2b8;} .btn-info:hover{color: #fff; background-color: #138496; border-color: #117a8b;} .btn-info:focus, .btn-info.focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-info.disabled, .btn-info:disabled{color: #fff; background-color: #17a2b8; border-color: #17a2b8;} .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle{color: #fff; background-color: #117a8b; border-color: #10707f;} .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-warning{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-warning:hover{color: #212529; background-color: #e0a800; border-color: #d39e00;} .btn-warning:focus, .btn-warning.focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-warning.disabled, .btn-warning:disabled{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle{color: #212529; background-color: #d39e00; border-color: #c69500;} .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-danger{color: #fff; background-color: #dc3545; border-color: #dc3545;} .btn-danger:hover{color: #fff; background-color: #c82333; border-color: #bd2130;} .btn-danger:focus, .btn-danger.focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-danger.disabled, .btn-danger:disabled{color: #fff; background-color: #dc3545; border-color: #dc3545;} .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle{color: #fff; background-color: #bd2130; border-color: #b21f2d;} .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-light{color: #212529; background-color: #f8f9fa; border-color: #f8f9fa;} .btn-light:hover{color: #212529; background-color: #e2e6ea; border-color: #dae0e5;} .btn-light:focus, .btn-light.focus{box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);} .btn-light.disabled, .btn-light:disabled{color: #212529; background-color: #f8f9fa; border-color: #f8f9fa;} .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle{color: #212529; background-color: #dae0e5; border-color: #d3d9df;} .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);} .btn-dark{color: #fff; background-color: #343a40; border-color: #343a40;} .btn-dark:hover{color: #fff; background-color: #23272b; border-color: #1d2124;} .btn-dark:focus, .btn-dark.focus{box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);} .btn-dark.disabled, .btn-dark:disabled{color: #fff; background-color: #343a40; border-color: #343a40;} .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle{color: #fff; background-color: #1d2124; border-color: #171a1d;} .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);} .btn-alpha{color: #fff; background-color: #00A09D; border-color: #00A09D;} .btn-alpha:hover{color: #fff; background-color: #007a77; border-color: #006d6b;} .btn-alpha:focus, .btn-alpha.focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-alpha.disabled, .btn-alpha:disabled{color: #fff; background-color: #00A09D; border-color: #00A09D;} .btn-alpha:not(:disabled):not(.disabled):active, .btn-alpha:not(:disabled):not(.disabled).active, .show > .btn-alpha.dropdown-toggle{color: #fff; background-color: #006d6b; border-color: #00605e;} .btn-alpha:not(:disabled):not(.disabled):active:focus, .btn-alpha:not(:disabled):not(.disabled).active:focus, .show > .btn-alpha.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-beta{color: #fff; background-color: #875A7B; border-color: #875A7B;} .btn-beta:hover{color: #fff; background-color: #704b66; border-color: #68465f;} .btn-beta:focus, .btn-beta.focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-beta.disabled, .btn-beta:disabled{color: #fff; background-color: #875A7B; border-color: #875A7B;} .btn-beta:not(:disabled):not(.disabled):active, .btn-beta:not(:disabled):not(.disabled).active, .show > .btn-beta.dropdown-toggle{color: #fff; background-color: #68465f; border-color: #614158;} .btn-beta:not(:disabled):not(.disabled):active:focus, .btn-beta:not(:disabled):not(.disabled).active:focus, .show > .btn-beta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-gamma{color: #fff; background-color: #5C5B80; border-color: #5C5B80;} .btn-gamma:hover{color: #fff; background-color: #4c4b6a; border-color: #474662;} .btn-gamma:focus, .btn-gamma.focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-gamma.disabled, .btn-gamma:disabled{color: #fff; background-color: #5C5B80; border-color: #5C5B80;} .btn-gamma:not(:disabled):not(.disabled):active, .btn-gamma:not(:disabled):not(.disabled).active, .show > .btn-gamma.dropdown-toggle{color: #fff; background-color: #474662; border-color: #41415b;} .btn-gamma:not(:disabled):not(.disabled):active:focus, .btn-gamma:not(:disabled):not(.disabled).active:focus, .show > .btn-gamma.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-delta{color: #fff; background-color: #5B899E; border-color: #5B899E;} .btn-delta:hover{color: #fff; background-color: #4d7486; border-color: #486d7e;} .btn-delta:focus, .btn-delta.focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-delta.disabled, .btn-delta:disabled{color: #fff; background-color: #5B899E; border-color: #5B899E;} .btn-delta:not(:disabled):not(.disabled):active, .btn-delta:not(:disabled):not(.disabled).active, .show > .btn-delta.dropdown-toggle{color: #fff; background-color: #486d7e; border-color: #446676;} .btn-delta:not(:disabled):not(.disabled):active:focus, .btn-delta:not(:disabled):not(.disabled).active:focus, .show > .btn-delta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-epsilon{color: #fff; background-color: #E46F78; border-color: #E46F78;} .btn-epsilon:hover{color: #fff; background-color: #de4f5a; border-color: #dc4450;} .btn-epsilon:focus, .btn-epsilon.focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-epsilon.disabled, .btn-epsilon:disabled{color: #fff; background-color: #E46F78; border-color: #E46F78;} .btn-epsilon:not(:disabled):not(.disabled):active, .btn-epsilon:not(:disabled):not(.disabled).active, .show > .btn-epsilon.dropdown-toggle{color: #fff; background-color: #dc4450; border-color: #da3946;} .btn-epsilon:not(:disabled):not(.disabled):active:focus, .btn-epsilon:not(:disabled):not(.disabled).active:focus, .show > .btn-epsilon.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-outline-primary{color: #7C7BAD; background-color: transparent; background-image: none; border-color: #7C7BAD;} .btn-outline-primary:hover{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} .btn-outline-primary:focus, .btn-outline-primary.focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} .btn-outline-primary.disabled, .btn-outline-primary:disabled{color: #7C7BAD; background-color: transparent;} .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} .btn-outline-secondary{color: #fff; background-color: transparent; background-image: none; border-color: #fff;} .btn-outline-secondary:hover{color: #212529; background-color: #fff; border-color: #fff;} .btn-outline-secondary:focus, .btn-outline-secondary.focus{box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);} .btn-outline-secondary.disabled, .btn-outline-secondary:disabled{color: #fff; background-color: transparent;} .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle{color: #212529; background-color: #fff; border-color: #fff;} .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);} .btn-outline-success{color: #28a745; background-color: transparent; background-image: none; border-color: #28a745;} .btn-outline-success:hover{color: #fff; background-color: #28a745; border-color: #28a745;} .btn-outline-success:focus, .btn-outline-success.focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-outline-success.disabled, .btn-outline-success:disabled{color: #28a745; background-color: transparent;} .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle{color: #fff; background-color: #28a745; border-color: #28a745;} .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);} .btn-outline-info{color: #17a2b8; background-color: transparent; background-image: none; border-color: #17a2b8;} .btn-outline-info:hover{color: #fff; background-color: #17a2b8; border-color: #17a2b8;} .btn-outline-info:focus, .btn-outline-info.focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-outline-info.disabled, .btn-outline-info:disabled{color: #17a2b8; background-color: transparent;} .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle{color: #fff; background-color: #17a2b8; border-color: #17a2b8;} .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);} .btn-outline-warning{color: #ffc107; background-color: transparent; background-image: none; border-color: #ffc107;} .btn-outline-warning:hover{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-outline-warning:focus, .btn-outline-warning.focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-outline-warning.disabled, .btn-outline-warning:disabled{color: #ffc107; background-color: transparent;} .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle{color: #212529; background-color: #ffc107; border-color: #ffc107;} .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);} .btn-outline-danger{color: #dc3545; background-color: transparent; background-image: none; border-color: #dc3545;} .btn-outline-danger:hover{color: #fff; background-color: #dc3545; border-color: #dc3545;} .btn-outline-danger:focus, .btn-outline-danger.focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-outline-danger.disabled, .btn-outline-danger:disabled{color: #dc3545; background-color: transparent;} .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle{color: #fff; background-color: #dc3545; border-color: #dc3545;} .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);} .btn-outline-light{color: #f8f9fa; background-color: transparent; background-image: none; border-color: #f8f9fa;} .btn-outline-light:hover{color: #212529; background-color: #f8f9fa; border-color: #f8f9fa;} .btn-outline-light:focus, .btn-outline-light.focus{box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);} .btn-outline-light.disabled, .btn-outline-light:disabled{color: #f8f9fa; background-color: transparent;} .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle{color: #212529; background-color: #f8f9fa; border-color: #f8f9fa;} .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);} .btn-outline-dark{color: #343a40; background-color: transparent; background-image: none; border-color: #343a40;} .btn-outline-dark:hover{color: #fff; background-color: #343a40; border-color: #343a40;} .btn-outline-dark:focus, .btn-outline-dark.focus{box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);} .btn-outline-dark.disabled, .btn-outline-dark:disabled{color: #343a40; background-color: transparent;} .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle{color: #fff; background-color: #343a40; border-color: #343a40;} .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);} .btn-outline-alpha{color: #00A09D; background-color: transparent; background-image: none; border-color: #00A09D;} .btn-outline-alpha:hover{color: #fff; background-color: #00A09D; border-color: #00A09D;} .btn-outline-alpha:focus, .btn-outline-alpha.focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-outline-alpha.disabled, .btn-outline-alpha:disabled{color: #00A09D; background-color: transparent;} .btn-outline-alpha:not(:disabled):not(.disabled):active, .btn-outline-alpha:not(:disabled):not(.disabled).active, .show > .btn-outline-alpha.dropdown-toggle{color: #fff; background-color: #00A09D; border-color: #00A09D;} .btn-outline-alpha:not(:disabled):not(.disabled):active:focus, .btn-outline-alpha:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-alpha.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(0, 160, 157, 0.5);} .btn-outline-beta{color: #875A7B; background-color: transparent; background-image: none; border-color: #875A7B;} .btn-outline-beta:hover{color: #fff; background-color: #875A7B; border-color: #875A7B;} .btn-outline-beta:focus, .btn-outline-beta.focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-outline-beta.disabled, .btn-outline-beta:disabled{color: #875A7B; background-color: transparent;} .btn-outline-beta:not(:disabled):not(.disabled):active, .btn-outline-beta:not(:disabled):not(.disabled).active, .show > .btn-outline-beta.dropdown-toggle{color: #fff; background-color: #875A7B; border-color: #875A7B;} .btn-outline-beta:not(:disabled):not(.disabled):active:focus, .btn-outline-beta:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-beta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(135, 90, 123, 0.5);} .btn-outline-gamma{color: #5C5B80; background-color: transparent; background-image: none; border-color: #5C5B80;} .btn-outline-gamma:hover{color: #fff; background-color: #5C5B80; border-color: #5C5B80;} .btn-outline-gamma:focus, .btn-outline-gamma.focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-outline-gamma.disabled, .btn-outline-gamma:disabled{color: #5C5B80; background-color: transparent;} .btn-outline-gamma:not(:disabled):not(.disabled):active, .btn-outline-gamma:not(:disabled):not(.disabled).active, .show > .btn-outline-gamma.dropdown-toggle{color: #fff; background-color: #5C5B80; border-color: #5C5B80;} .btn-outline-gamma:not(:disabled):not(.disabled):active:focus, .btn-outline-gamma:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-gamma.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(92, 91, 128, 0.5);} .btn-outline-delta{color: #5B899E; background-color: transparent; background-image: none; border-color: #5B899E;} .btn-outline-delta:hover{color: #fff; background-color: #5B899E; border-color: #5B899E;} .btn-outline-delta:focus, .btn-outline-delta.focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-outline-delta.disabled, .btn-outline-delta:disabled{color: #5B899E; background-color: transparent;} .btn-outline-delta:not(:disabled):not(.disabled):active, .btn-outline-delta:not(:disabled):not(.disabled).active, .show > .btn-outline-delta.dropdown-toggle{color: #fff; background-color: #5B899E; border-color: #5B899E;} .btn-outline-delta:not(:disabled):not(.disabled):active:focus, .btn-outline-delta:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-delta.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(91, 137, 158, 0.5);} .btn-outline-epsilon{color: #E46F78; background-color: transparent; background-image: none; border-color: #E46F78;} .btn-outline-epsilon:hover{color: #fff; background-color: #E46F78; border-color: #E46F78;} .btn-outline-epsilon:focus, .btn-outline-epsilon.focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-outline-epsilon.disabled, .btn-outline-epsilon:disabled{color: #E46F78; background-color: transparent;} .btn-outline-epsilon:not(:disabled):not(.disabled):active, .btn-outline-epsilon:not(:disabled):not(.disabled).active, .show > .btn-outline-epsilon.dropdown-toggle{color: #fff; background-color: #E46F78; border-color: #E46F78;} .btn-outline-epsilon:not(:disabled):not(.disabled):active:focus, .btn-outline-epsilon:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-epsilon.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(228, 111, 120, 0.5);} .btn-link{font-weight: 400; color: #7C7BAD; background-color: transparent;} .btn-link:hover{color: #555487; text-decoration: none; background-color: transparent; border-color: transparent;} .btn-link:focus, .btn-link.focus{text-decoration: none; border-color: transparent; box-shadow: none;} .btn-link:disabled, .btn-link.disabled{color: #6c757d; pointer-events: none;} .btn-lg, .btn-group-lg > .btn{padding: 0.5rem 1rem; font-size: 1.35416667rem; line-height: 1.5; border-radius: 0.3rem;} .btn-sm, .btn-group-sm > .btn{padding: 0.25rem 0.5rem; font-size: 0.94791667rem; line-height: 1.5; border-radius: 0.2rem;} .btn-block{display: block; width: 100%;} .btn-block + .btn-block{margin-top: 0.5rem;} input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block{width: 100%;} .fade{transition: opacity 0.15s linear;} @media screen and (prefers-reduced-motion: reduce){.fade{transition: none;}} .fade:not(.show){opacity: 0;} .collapse:not(.show){display: none;} .collapsing{position: relative; height: 0; overflow: hidden; transition: height 0.35s ease;} @media screen and (prefers-reduced-motion: reduce){.collapsing{transition: none;}} .dropup, .dropright, .dropdown, .dropleft{position: relative;} .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid; border-right: 0.3em solid transparent; border-bottom: 0; border-left: 0.3em solid transparent;} .dropdown-toggle:empty::after{margin-left: 0;} .dropdown-menu{position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: 0.5rem 0; margin: 0.125rem 0 0; font-size: 1.08333333rem; color: #4c4c4c; text-align: left; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid #dee2e6; border-radius: 3px;} .dropdown-menu-right{right: 0; left: auto;} .dropup .dropdown-menu{top: auto; bottom: 100%; margin-top: 0; margin-bottom: 0.125rem;} .dropup .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0; border-right: 0.3em solid transparent; border-bottom: 0.3em solid; border-left: 0.3em solid transparent;} .dropup .dropdown-toggle:empty::after{margin-left: 0;} .dropright .dropdown-menu{top: 0; right: auto; left: 100%; margin-top: 0; margin-left: 0.125rem;} .dropright .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0; border-bottom: 0.3em solid transparent; border-left: 0.3em solid;} .dropright .dropdown-toggle:empty::after{margin-left: 0;} .dropright .dropdown-toggle::after{vertical-align: 0;} .dropleft .dropdown-menu{top: 0; right: 100%; left: auto; margin-top: 0; margin-right: 0.125rem;} .dropleft .dropdown-toggle::after{display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: "";} .dropleft .dropdown-toggle::after{display: none;} .dropleft .dropdown-toggle::before{display: inline-block; width: 0; height: 0; margin-right: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0.3em solid; border-bottom: 0.3em solid transparent;} .dropleft .dropdown-toggle:empty::after{margin-left: 0;} .dropleft .dropdown-toggle::before{vertical-align: 0;} .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"]{right: auto; bottom: auto;} .dropdown-divider{height: 0; margin: 0.5rem 0; overflow: hidden; border-top: 1px solid #e9ecef;} .dropdown-item{display: block; width: 100%; padding: 0.25rem 1.5rem; clear: both; font-weight: 400; color: #4c4c4c; text-align: inherit; white-space: nowrap; background-color: transparent; border: 0;} .dropdown-item:hover, .dropdown-item:focus{color: #212529; text-decoration: none; background-color: #e9ecef;} .dropdown-item.active, .dropdown-item:active{color: #212529; text-decoration: none; background-color: #dee2e6;} .dropdown-item.disabled, .dropdown-item:disabled{color: #6c757d; background-color: transparent;} .dropdown-menu.show{display: block;} .dropdown-header{display: block; padding: 0.5rem 1.5rem; margin-bottom: 0; font-size: 0.94791667rem; color: #6c757d; white-space: nowrap;} .dropdown-item-text{display: block; padding: 0.25rem 1.5rem; color: #4c4c4c;} .btn-group, .btn-group-vertical{position: relative; display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; vertical-align: middle;} .btn-group > .btn, .btn-group-vertical > .btn{position: relative; -webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto;} .btn-group > .btn:hover, .btn-group-vertical > .btn:hover{z-index: 1;} .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active{z-index: 1;} .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group{margin-left: -1px;} .btn-toolbar{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; justify-content: flex-start;} .btn-toolbar .input-group{width: auto;} .btn-group > .btn:first-child{margin-left: 0;} .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn{border-top-right-radius: 0; border-bottom-right-radius: 0;} .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn{border-top-left-radius: 0; border-bottom-left-radius: 0;} .dropdown-toggle-split{padding-right: 0.5625rem; padding-left: 0.5625rem;} .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after{margin-left: 0;} .dropleft .dropdown-toggle-split::before{margin-right: 0;} .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split{padding-right: 0.375rem; padding-left: 0.375rem;} .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split{padding-right: 0.75rem; padding-left: 0.75rem;} .btn-group-vertical{-webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; align-items: flex-start; justify-content: center;} .btn-group-vertical .btn, .btn-group-vertical .btn-group{width: 100%;} .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group{margin-top: -1px; margin-left: 0;} .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn{border-bottom-right-radius: 0; border-bottom-left-radius: 0;} .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) > .btn{border-top-left-radius: 0; border-top-right-radius: 0;} .btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn{margin-bottom: 0;} .btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .btn input[type="checkbox"], .btn-group-toggle > .btn-group > .btn input[type="radio"], .btn-group-toggle > .btn-group > .btn input[type="checkbox"]{position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none;} .input-group{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; align-items: stretch; width: 100%;} .input-group > .form-control, .input-group > .custom-select, .input-group > .custom-file{position: relative; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; width: 1%; margin-bottom: 0;} .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, .input-group > .custom-select + .form-control, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .custom-file, .input-group > .custom-file + .form-control, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .custom-file{margin-left: -1px;} .input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label{z-index: 3;} .input-group > .custom-file .custom-file-input:focus{z-index: 4;} .input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child){border-top-right-radius: 0; border-bottom-right-radius: 0;} .input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child){border-top-left-radius: 0; border-bottom-left-radius: 0;} .input-group > .custom-file{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center;} .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius: 0; border-bottom-right-radius: 0;} .input-group > .custom-file:not(:first-child) .custom-file-label{border-top-left-radius: 0; border-bottom-left-radius: 0;} .input-group-prepend, .input-group-append{display: -webkit-box; display: -webkit-flex; display: flex;} .input-group-prepend .btn, .input-group-append .btn{position: relative; z-index: 2;} .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .input-group-text, .input-group-append .input-group-text + .btn{margin-left: -1px;} .input-group-prepend{margin-right: -1px;} .input-group-append{margin-left: -1px;} .input-group-text{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; padding: 0.375rem 0.75rem; margin-bottom: 0; font-size: 1.08333333rem; font-weight: 400; line-height: 1.5; color: #495057; text-align: center; white-space: nowrap; background-color: #e9ecef; border: 1px solid #ced4da; border-radius: 3px;} .input-group-text input[type="radio"], .input-group-text input[type="checkbox"]{margin-top: 0;} .input-group-lg > .form-control, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn{height: calc(3.03125rem + 2px); padding: 0.5rem 1rem; font-size: 1.35416667rem; line-height: 1.5; border-radius: 0.3rem;} .input-group-sm > .form-control, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn{height: calc(1.921875rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.94791667rem; line-height: 1.5; border-radius: 0.2rem;} .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child){border-top-right-radius: 0; border-bottom-right-radius: 0;} .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child){border-top-left-radius: 0; border-bottom-left-radius: 0;} .custom-control{position: relative; display: block; min-height: 1.625rem; padding-left: 1.5rem;} .custom-control-inline{display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; margin-right: 1rem;} .custom-control-input{position: absolute; z-index: -1; opacity: 0;} .custom-control-input:checked ~ .custom-control-label::before{color: #7C7BAD; background-color: #e9ecef;} .custom-control-input:focus ~ .custom-control-label::before{box-shadow: 0 0 0 1px #f0eeee, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .custom-control-input:active ~ .custom-control-label::before{color: #7C7BAD; background-color: white;} .custom-control-input:disabled ~ .custom-control-label{color: #6c757d;} .custom-control-input:disabled ~ .custom-control-label::before{background-color: #e9ecef;} .custom-control-label{position: relative; margin-bottom: 0;} .custom-control-label::before{position: absolute; top: 0.3125rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; pointer-events: none; content: ""; user-select: none; background-color: #dee2e6;} .custom-control-label::after{position: absolute; top: 0.3125rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; content: ""; background-repeat: no-repeat; background-position: center center; background-size: 50% 50%;} .custom-checkbox .custom-control-label::before{border-radius: 3px;} .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{background-color: #e9ecef;} .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%237C7BAD' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");} .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{background-color: #e9ecef;} .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%237C7BAD' d='M0 2h4'/%3E%3C/svg%3E");} .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color: rgba(124, 123, 173, 0.5);} .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color: rgba(124, 123, 173, 0.5);} .custom-radio .custom-control-label::before{border-radius: 50%;} .custom-radio .custom-control-input:checked ~ .custom-control-label::before{background-color: #e9ecef;} .custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%237C7BAD'/%3E%3C/svg%3E");} .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color: rgba(124, 123, 173, 0.5);} .custom-select{display: inline-block; width: 100%; height: calc(2.375rem + 2px); padding: 0.375rem 1.75rem 0.375rem 0.75rem; line-height: 1.5; color: #495057; vertical-align: middle; background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; background-size: 8px 10px; border: 1px solid #ced4da; border-radius: 3px; -webkit-appearance: none; -moz-appearance: none; appearance: none;} .custom-select:focus{border-color: white; outline: 0; box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);} .custom-select:focus::-ms-value{color: #495057; background-color: #fff;} .custom-select[multiple], .custom-select[size]:not([size="1"]){height: auto; padding-right: 0.75rem; background-image: none;} .custom-select:disabled{color: #6c757d; background-color: #e9ecef;} .custom-select::-ms-expand{opacity: 0;} .custom-select-sm{height: calc(1.921875rem + 2px); padding-top: 0.375rem; padding-bottom: 0.375rem; font-size: 75%;} .custom-select-lg{height: calc(3.03125rem + 2px); padding-top: 0.375rem; padding-bottom: 0.375rem; font-size: 125%;} .custom-file{position: relative; display: inline-block; width: 100%; height: calc(2.375rem + 2px); margin-bottom: 0;} .custom-file-input{position: relative; z-index: 2; width: 100%; height: calc(2.375rem + 2px); margin: 0; opacity: 0;} .custom-file-input:focus ~ .custom-file-label{border-color: white; box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .custom-file-input:focus ~ .custom-file-label::after{border-color: white;} .custom-file-input:disabled ~ .custom-file-label{background-color: #e9ecef;} .custom-file-input:lang(en) ~ .custom-file-label::after{content: "Browse";} .custom-file-label{position: absolute; top: 0; right: 0; left: 0; z-index: 1; height: calc(2.375rem + 2px); padding: 0.375rem 0.75rem; line-height: 1.5; color: #495057; background-color: #fff; border: 1px solid #ced4da; border-radius: 3px;} .custom-file-label::after{position: absolute; top: 0; right: 0; bottom: 0; z-index: 3; display: block; height: 2.375rem; padding: 0.375rem 0.75rem; line-height: 1.5; color: #495057; content: "Browse"; background-color: #e9ecef; border-left: 1px solid #ced4da; border-radius: 0 3px 3px 0;} .custom-range{width: 100%; padding-left: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none;} .custom-range:focus{outline: none;} .custom-range:focus::-webkit-slider-thumb{box-shadow: 0 0 0 1px #f0eeee, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .custom-range:focus::-moz-range-thumb{box-shadow: 0 0 0 1px #f0eeee, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .custom-range:focus::-ms-thumb{box-shadow: 0 0 0 1px #f0eeee, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .custom-range::-moz-focus-outer{border: 0;} .custom-range::-webkit-slider-thumb{width: 1rem; height: 1rem; margin-top: -0.25rem; background-color: #e9ecef; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -webkit-appearance: none; -moz-appearance: none; appearance: none;} @media screen and (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition: none;}} .custom-range::-webkit-slider-thumb:active{background-color: white;} .custom-range::-webkit-slider-runnable-track{width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: #dee2e6; border-color: transparent; border-radius: 1rem;} .custom-range::-moz-range-thumb{width: 1rem; height: 1rem; background-color: #e9ecef; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -webkit-appearance: none; -moz-appearance: none; appearance: none;} @media screen and (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition: none;}} .custom-range::-moz-range-thumb:active{background-color: white;} .custom-range::-moz-range-track{width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: #dee2e6; border-color: transparent; border-radius: 1rem;} .custom-range::-ms-thumb{width: 1rem; height: 1rem; margin-top: 0; margin-right: 0.2rem; margin-left: 0.2rem; background-color: #e9ecef; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -webkit-appearance: none; -moz-appearance: none; appearance: none;} @media screen and (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition: none;}} .custom-range::-ms-thumb:active{background-color: white;} .custom-range::-ms-track{width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: transparent; border-color: transparent; border-width: 0.5rem;} .custom-range::-ms-fill-lower{background-color: #dee2e6; border-radius: 1rem;} .custom-range::-ms-fill-upper{margin-right: 15px; background-color: #dee2e6; border-radius: 1rem;} .custom-control-label::before, .custom-file-label, .custom-select{transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;} @media screen and (prefers-reduced-motion: reduce){.custom-control-label::before, .custom-file-label, .custom-select{transition: none;}} .nav{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none;} .nav-link{display: block; padding: 0.5rem 1rem;} .nav-link:hover, .nav-link:focus{text-decoration: none;} .nav-link.disabled{color: #6c757d;} .nav-tabs{border-bottom: 1px solid #dee2e6;} .nav-tabs .nav-item{margin-bottom: -1px;} .nav-tabs .nav-link{border: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px;} .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus{border-color: #e9ecef #e9ecef #dee2e6;} .nav-tabs .nav-link.disabled{color: #6c757d; background-color: transparent; border-color: transparent;} .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{color: #495057; background-color: #fff; border-color: #dee2e6 #dee2e6 #fff;} .nav-tabs .dropdown-menu{margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0;} .nav-pills .nav-link{border-radius: 0;} .nav-pills .nav-link.active, .nav-pills .show > .nav-link{color: #fff; background-color: #7C7BAD;} .nav-fill .nav-item{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; text-align: center;} .nav-justified .nav-item{flex-basis: 0; flex-grow: 1; text-align: center;} .tab-content > .tab-pane{display: none;} .tab-content > .active{display: block;} .navbar{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0.5rem 1rem;} .navbar > .container, .navbar > .container-fluid{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; align-items: center; justify-content: space-between;} .navbar-brand{display: inline-block; padding-top: 0.296875rem; padding-bottom: 0.296875rem; margin-right: 1rem; font-size: 1.35416667rem; line-height: inherit; white-space: nowrap;} .navbar-brand:hover, .navbar-brand:focus{text-decoration: none;} .navbar-nav{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none;} .navbar-nav .nav-link{padding-right: 0; padding-left: 0;} .navbar-nav .dropdown-menu{position: static; float: none;} .navbar-text{display: inline-block; padding-top: 0.5rem; padding-bottom: 0.5rem;} .navbar-collapse{flex-basis: 100%; flex-grow: 1; align-items: center;} .navbar-toggler{padding: 0.25rem 0.75rem; font-size: 1.35416667rem; line-height: 1; background-color: transparent; border: 1px solid transparent; border-radius: 3px;} .navbar-toggler:hover, .navbar-toggler:focus{text-decoration: none;} .navbar-toggler:not(:disabled):not(.disabled){cursor: pointer;} .navbar-toggler-icon{display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; content: ""; background: no-repeat center center; background-size: 100% 100%;} @media (max-width: 575.98px){.navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 576px){.navbar-expand-sm{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-sm .navbar-nav{flex-direction: row;}.navbar-expand-sm .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-sm .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-sm .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-sm .navbar-toggler{display: none;}} @media (max-width: 767.98px){.navbar-expand-md > .container, .navbar-expand-md > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 768px){.navbar-expand-md{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-md .navbar-nav{flex-direction: row;}.navbar-expand-md .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-md .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-md > .container, .navbar-expand-md > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-md .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-md .navbar-toggler{display: none;}} @media (max-width: 991.98px){.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 992px){.navbar-expand-lg{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-lg .navbar-nav{flex-direction: row;}.navbar-expand-lg .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-lg .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-lg .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-lg .navbar-toggler{display: none;}} @media (max-width: 1199.98px){.navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid{padding-right: 0; padding-left: 0;}} @media (min-width: 1200px){.navbar-expand-xl{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;}.navbar-expand-xl .navbar-nav{flex-direction: row;}.navbar-expand-xl .navbar-nav .dropdown-menu{position: absolute;}.navbar-expand-xl .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;}.navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;}.navbar-expand-xl .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;}.navbar-expand-xl .navbar-toggler{display: none;}} .navbar-expand{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; justify-content: flex-start;} .navbar-expand > .container, .navbar-expand > .container-fluid{padding-right: 0; padding-left: 0;} .navbar-expand .navbar-nav{flex-direction: row;} .navbar-expand .navbar-nav .dropdown-menu{position: absolute;} .navbar-expand .navbar-nav .nav-link{padding-right: 0.5rem; padding-left: 0.5rem;} .navbar-expand > .container, .navbar-expand > .container-fluid{-webkit-flex-wrap: nowrap; flex-wrap: nowrap;} .navbar-expand .navbar-collapse{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; flex-basis: auto;} .navbar-expand .navbar-toggler{display: none;} .navbar-light .navbar-brand{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-nav .nav-link{color: rgba(0, 0, 0, 0.5);} .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus{color: rgba(0, 0, 0, 0.7);} .navbar-light .navbar-nav .nav-link.disabled{color: rgba(0, 0, 0, 0.3);} .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-toggler{color: rgba(0, 0, 0, 0.5); border-color: rgba(0, 0, 0, 0.1);} .navbar-light .navbar-toggler-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");} .navbar-light .navbar-text{color: rgba(0, 0, 0, 0.5);} .navbar-light .navbar-text a{color: rgba(0, 0, 0, 0.9);} .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus{color: rgba(0, 0, 0, 0.9);} .navbar-dark .navbar-brand{color: #fff;} .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus{color: #fff;} .navbar-dark .navbar-nav .nav-link{color: rgba(255, 255, 255, 0.5);} .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus{color: rgba(255, 255, 255, 0.75);} .navbar-dark .navbar-nav .nav-link.disabled{color: rgba(255, 255, 255, 0.25);} .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active{color: #fff;} .navbar-dark .navbar-toggler{color: rgba(255, 255, 255, 0.5); border-color: rgba(255, 255, 255, 0.1);} .navbar-dark .navbar-toggler-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");} .navbar-dark .navbar-text{color: rgba(255, 255, 255, 0.5);} .navbar-dark .navbar-text a{color: #fff;} .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus{color: #fff;} .card{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 3px;} .card > hr{margin-right: 0; margin-left: 0;} .card > .list-group:first-child .list-group-item:first-child{border-top-left-radius: 3px; border-top-right-radius: 3px;} .card > .list-group:last-child .list-group-item:last-child{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;} .card-body{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; padding: 1.25rem;} .card-title{margin-bottom: 0.75rem;} .card-subtitle{margin-top: -0.375rem; margin-bottom: 0;} .card-text:last-child{margin-bottom: 0;} .card-link:hover{text-decoration: none;} .card-link + .card-link{margin-left: 1.25rem;} .card-header{padding: 0.75rem 1.25rem; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.03); border-bottom: 1px solid rgba(0, 0, 0, 0.125);} .card-header:first-child{border-radius: calc(3px - 1px) calc(3px - 1px) 0 0;} .card-header + .list-group .list-group-item:first-child{border-top: 0;} .card-footer{padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); border-top: 1px solid rgba(0, 0, 0, 0.125);} .card-footer:last-child{border-radius: 0 0 calc(3px - 1px) calc(3px - 1px);} .card-header-tabs{margin-right: -0.625rem; margin-bottom: -0.75rem; margin-left: -0.625rem; border-bottom: 0;} .card-header-pills{margin-right: -0.625rem; margin-left: -0.625rem;} .card-img-overlay{position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 1.25rem;} .card-img{width: 100%; border-radius: calc(3px - 1px);} .card-img-top{width: 100%; border-top-left-radius: calc(3px - 1px); border-top-right-radius: calc(3px - 1px);} .card-img-bottom{width: 100%; border-bottom-right-radius: calc(3px - 1px); border-bottom-left-radius: calc(3px - 1px);} .card-deck{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column;} .card-deck .card{margin-bottom: 16px;} @media (min-width: 576px){.card-deck{-webkit-flex-flow: row wrap; flex-flow: row wrap; margin-right: -16px; margin-left: -16px;}.card-deck .card{display: -webkit-box; display: -webkit-flex; display: flex; flex: 1 0 0%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; margin-right: 16px; margin-bottom: 0; margin-left: 16px;}} .card-group{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column;} .card-group > .card{margin-bottom: 16px;} @media (min-width: 576px){.card-group{-webkit-flex-flow: row wrap; flex-flow: row wrap;}.card-group > .card{flex: 1 0 0%; margin-bottom: 0;}.card-group > .card + .card{margin-left: 0; border-left: 0;}.card-group > .card:first-child{border-top-right-radius: 0; border-bottom-right-radius: 0;}.card-group > .card:first-child .card-img-top, .card-group > .card:first-child .card-header{border-top-right-radius: 0;}.card-group > .card:first-child .card-img-bottom, .card-group > .card:first-child .card-footer{border-bottom-right-radius: 0;}.card-group > .card:last-child{border-top-left-radius: 0; border-bottom-left-radius: 0;}.card-group > .card:last-child .card-img-top, .card-group > .card:last-child .card-header{border-top-left-radius: 0;}.card-group > .card:last-child .card-img-bottom, .card-group > .card:last-child .card-footer{border-bottom-left-radius: 0;}.card-group > .card:only-child{border-radius: 3px;}.card-group > .card:only-child .card-img-top, .card-group > .card:only-child .card-header{border-top-left-radius: 3px; border-top-right-radius: 3px;}.card-group > .card:only-child .card-img-bottom, .card-group > .card:only-child .card-footer{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.card-group > .card:not(:first-child):not(:last-child):not(:only-child){border-radius: 0;}.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer{border-radius: 0;}} .card-columns .card{margin-bottom: 0.75rem;} @media (min-width: 576px){.card-columns{column-count: 3; column-gap: 1.25rem; orphans: 1; widows: 1;}.card-columns .card{display: inline-block; width: 100%;}} .accordion .card:not(:first-of-type):not(:last-of-type){border-bottom: 0; border-radius: 0;} .accordion .card:not(:first-of-type) .card-header:first-child{border-radius: 0;} .accordion .card:first-of-type{border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0;} .accordion .card:last-of-type{border-top-left-radius: 0; border-top-right-radius: 0;} .breadcrumb{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; padding: 0 0; margin-bottom: 0; list-style: none; background-color: white; border-radius: 3px;} .breadcrumb-item + .breadcrumb-item{padding-left: 0.5rem;} .breadcrumb-item + .breadcrumb-item::before{display: inline-block; padding-right: 0.5rem; color: #6c757d; content: "/";} .breadcrumb-item + .breadcrumb-item:hover::before{text-decoration: underline;} .breadcrumb-item + .breadcrumb-item:hover::before{text-decoration: none;} .breadcrumb-item.active{color: #777777;} .pagination{display: -webkit-box; display: -webkit-flex; display: flex; padding-left: 0; list-style: none; border-radius: 3px;} .page-link{position: relative; display: block; padding: 0.5rem 0.75rem; margin-left: -1px; line-height: 1.25; color: #7C7BAD; background-color: #fff; border: 1px solid #dee2e6;} .page-link:hover{z-index: 2; color: #555487; text-decoration: none; background-color: #e9ecef; border-color: #dee2e6;} .page-link:focus{z-index: 2; outline: 0; box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);} .page-link:not(:disabled):not(.disabled){cursor: pointer;} .page-item:first-child .page-link{margin-left: 0; border-top-left-radius: 3px; border-bottom-left-radius: 3px;} .page-item:last-child .page-link{border-top-right-radius: 3px; border-bottom-right-radius: 3px;} .page-item.active .page-link{z-index: 1; color: #7C7BAD; background-color: #e9ecef; border-color: #e9ecef;} .page-item.disabled .page-link{color: #6c757d; pointer-events: none; cursor: auto; background-color: #fff; border-color: #dee2e6;} .pagination-lg .page-link{padding: 0.75rem 1.5rem; font-size: 1.35416667rem; line-height: 1.5;} .pagination-lg .page-item:first-child .page-link{border-top-left-radius: 0.3rem; border-bottom-left-radius: 0.3rem;} .pagination-lg .page-item:last-child .page-link{border-top-right-radius: 0.3rem; border-bottom-right-radius: 0.3rem;} .pagination-sm .page-link{padding: 0.25rem 0.5rem; font-size: 0.94791667rem; line-height: 1.5;} .pagination-sm .page-item:first-child .page-link{border-top-left-radius: 0.2rem; border-bottom-left-radius: 0.2rem;} .pagination-sm .page-item:last-child .page-link{border-top-right-radius: 0.2rem; border-bottom-right-radius: 0.2rem;} .badge{display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: normal; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 3px;} .badge:empty{display: none;} .btn .badge{position: relative; top: -1px;} .badge-pill{padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem;} .badge-primary{color: #fff; background-color: #7C7BAD;} .badge-primary[href]:hover, .badge-primary[href]:focus{color: #fff; text-decoration: none; background-color: #5f5e97;} .badge-secondary{color: #212529; background-color: #fff;} .badge-secondary[href]:hover, .badge-secondary[href]:focus{color: #212529; text-decoration: none; background-color: #e6e5e5;} .badge-success{color: #fff; background-color: #28a745;} .badge-success[href]:hover, .badge-success[href]:focus{color: #fff; text-decoration: none; background-color: #1e7e34;} .badge-info{color: #fff; background-color: #17a2b8;} .badge-info[href]:hover, .badge-info[href]:focus{color: #fff; text-decoration: none; background-color: #117a8b;} .badge-warning{color: #212529; background-color: #ffc107;} .badge-warning[href]:hover, .badge-warning[href]:focus{color: #212529; text-decoration: none; background-color: #d39e00;} .badge-danger{color: #fff; background-color: #dc3545;} .badge-danger[href]:hover, .badge-danger[href]:focus{color: #fff; text-decoration: none; background-color: #bd2130;} .badge-light{color: #212529; background-color: #f8f9fa;} .badge-light[href]:hover, .badge-light[href]:focus{color: #212529; text-decoration: none; background-color: #dae0e5;} .badge-dark{color: #fff; background-color: #343a40;} .badge-dark[href]:hover, .badge-dark[href]:focus{color: #fff; text-decoration: none; background-color: #1d2124;} .badge-alpha{color: #fff; background-color: #00A09D;} .badge-alpha[href]:hover, .badge-alpha[href]:focus{color: #fff; text-decoration: none; background-color: #006d6b;} .badge-beta{color: #fff; background-color: #875A7B;} .badge-beta[href]:hover, .badge-beta[href]:focus{color: #fff; text-decoration: none; background-color: #68465f;} .badge-gamma{color: #fff; background-color: #5C5B80;} .badge-gamma[href]:hover, .badge-gamma[href]:focus{color: #fff; text-decoration: none; background-color: #474662;} .badge-delta{color: #fff; background-color: #5B899E;} .badge-delta[href]:hover, .badge-delta[href]:focus{color: #fff; text-decoration: none; background-color: #486d7e;} .badge-epsilon{color: #fff; background-color: #E46F78;} .badge-epsilon[href]:hover, .badge-epsilon[href]:focus{color: #fff; text-decoration: none; background-color: #dc4450;} .jumbotron{padding: 2rem 1rem; margin-bottom: 2rem; background-color: #e9ecef; border-radius: 0.3rem;} @media (min-width: 576px){.jumbotron{padding: 4rem 2rem;}} .jumbotron-fluid{padding-right: 0; padding-left: 0; border-radius: 0;} .alert{position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 3px;} .alert-heading{color: inherit;} .alert-link{font-weight: 700;} .alert-dismissible{padding-right: 4.125rem;} .alert-dismissible .close{position: absolute; top: 0; right: 0; padding: 0.75rem 1.25rem; color: inherit;} .alert-primary{color: #40405a; background-color: #e5e5ef; border-color: #dadae8;} .alert-primary hr{border-top-color: #cacade;} .alert-primary .alert-link{color: #2b2b3c;} .alert-secondary{color: #858585; background-color: white; border-color: white;} .alert-secondary hr{border-top-color: #f2f2f2;} .alert-secondary .alert-link{color: #6c6b6b;} .alert-success{color: #155724; background-color: #d4edda; border-color: #c3e6cb;} .alert-success hr{border-top-color: #b1dfbb;} .alert-success .alert-link{color: #0b2e13;} .alert-info{color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb;} .alert-info hr{border-top-color: #abdde5;} .alert-info .alert-link{color: #062c33;} .alert-warning{color: #856404; background-color: #fff3cd; border-color: #ffeeba;} .alert-warning hr{border-top-color: #ffe8a1;} .alert-warning .alert-link{color: #533f03;} .alert-danger{color: #721c24; background-color: #f8d7da; border-color: #f5c6cb;} .alert-danger hr{border-top-color: #f1b0b7;} .alert-danger .alert-link{color: #491217;} .alert-light{color: #818182; background-color: #fefefe; border-color: #fdfdfe;} .alert-light hr{border-top-color: #ececf6;} .alert-light .alert-link{color: #686868;} .alert-dark{color: #1b1e21; background-color: #d6d8d9; border-color: #c6c8ca;} .alert-dark hr{border-top-color: #b9bbbe;} .alert-dark .alert-link{color: #040505;} .alert-alpha{color: #005352; background-color: #cceceb; border-color: #b8e4e4;} .alert-alpha hr{border-top-color: #a6dddd;} .alert-alpha .alert-link{color: #002020;} .alert-beta{color: #462f40; background-color: #e7dee5; border-color: #ddd1da;} .alert-beta hr{border-top-color: #d2c2ce;} .alert-beta .alert-link{color: #271b24;} .alert-gamma{color: #302f43; background-color: #dedee6; border-color: #d1d1db;} .alert-gamma hr{border-top-color: #c3c3d0;} .alert-gamma .alert-link{color: #1b1a25;} .alert-delta{color: #2f4752; background-color: #dee7ec; border-color: #d1dee4;} .alert-delta hr{border-top-color: #c1d2db;} .alert-delta .alert-link{color: #1c2b32;} .alert-epsilon{color: #773a3e; background-color: #fae2e4; border-color: #f7d7d9;} .alert-epsilon hr{border-top-color: #f3c2c5;} .alert-epsilon .alert-link{color: #55292c;} @keyframes progress-bar-stripes{from{background-position: 1rem 0;}to{background-position: 0 0;}} .progress{display: -webkit-box; display: -webkit-flex; display: flex; height: 1rem; overflow: hidden; font-size: 0.8125rem; background-color: #e9ecef; border-radius: 3px;} .progress-bar{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; justify-content: center; color: #fff; text-align: center; white-space: nowrap; background-color: #7C7BAD; transition: width 0.6s ease;} @media screen and (prefers-reduced-motion: reduce){.progress-bar{transition: none;}} .progress-bar-striped{background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem;} .progress-bar-animated{animation: progress-bar-stripes 1s linear infinite;} .media{display: -webkit-box; display: -webkit-flex; display: flex; align-items: flex-start;} .media-body{flex: 1;} .list-group{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0;} .list-group-item-action{width: 100%; color: #495057; text-align: inherit;} .list-group-item-action:hover, .list-group-item-action:focus{color: #495057; text-decoration: none; background-color: #f8f9fa;} .list-group-item-action:active{color: #4c4c4c; background-color: #e9ecef;} .list-group-item{position: relative; display: block; padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.125);} .list-group-item:first-child{border-top-left-radius: 3px; border-top-right-radius: 3px;} .list-group-item:last-child{margin-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;} .list-group-item:hover, .list-group-item:focus{z-index: 1; text-decoration: none;} .list-group-item.disabled, .list-group-item:disabled{color: #6c757d; background-color: #fff;} .list-group-item.active{z-index: 2; color: #7C7BAD; background-color: #e9ecef; border-color: #e9ecef;} .list-group-flush .list-group-item{border-right: 0; border-left: 0; border-radius: 0;} .list-group-flush:first-child .list-group-item:first-child{border-top: 0;} .list-group-flush:last-child .list-group-item:last-child{border-bottom: 0;} .list-group-item-primary{color: #40405a; background-color: #dadae8;} .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus{color: #40405a; background-color: #cacade;} .list-group-item-primary.list-group-item-action.active{color: #fff; background-color: #40405a; border-color: #40405a;} .list-group-item-secondary{color: #858585; background-color: white;} .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus{color: #858585; background-color: #f2f2f2;} .list-group-item-secondary.list-group-item-action.active{color: #fff; background-color: #858585; border-color: #858585;} .list-group-item-success{color: #155724; background-color: #c3e6cb;} .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus{color: #155724; background-color: #b1dfbb;} .list-group-item-success.list-group-item-action.active{color: #fff; background-color: #155724; border-color: #155724;} .list-group-item-info{color: #0c5460; background-color: #bee5eb;} .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus{color: #0c5460; background-color: #abdde5;} .list-group-item-info.list-group-item-action.active{color: #fff; background-color: #0c5460; border-color: #0c5460;} .list-group-item-warning{color: #856404; background-color: #ffeeba;} .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus{color: #856404; background-color: #ffe8a1;} .list-group-item-warning.list-group-item-action.active{color: #fff; background-color: #856404; border-color: #856404;} .list-group-item-danger{color: #721c24; background-color: #f5c6cb;} .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus{color: #721c24; background-color: #f1b0b7;} .list-group-item-danger.list-group-item-action.active{color: #fff; background-color: #721c24; border-color: #721c24;} .list-group-item-light{color: #818182; background-color: #fdfdfe;} .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus{color: #818182; background-color: #ececf6;} .list-group-item-light.list-group-item-action.active{color: #fff; background-color: #818182; border-color: #818182;} .list-group-item-dark{color: #1b1e21; background-color: #c6c8ca;} .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus{color: #1b1e21; background-color: #b9bbbe;} .list-group-item-dark.list-group-item-action.active{color: #fff; background-color: #1b1e21; border-color: #1b1e21;} .list-group-item-alpha{color: #005352; background-color: #b8e4e4;} .list-group-item-alpha.list-group-item-action:hover, .list-group-item-alpha.list-group-item-action:focus{color: #005352; background-color: #a6dddd;} .list-group-item-alpha.list-group-item-action.active{color: #fff; background-color: #005352; border-color: #005352;} .list-group-item-beta{color: #462f40; background-color: #ddd1da;} .list-group-item-beta.list-group-item-action:hover, .list-group-item-beta.list-group-item-action:focus{color: #462f40; background-color: #d2c2ce;} .list-group-item-beta.list-group-item-action.active{color: #fff; background-color: #462f40; border-color: #462f40;} .list-group-item-gamma{color: #302f43; background-color: #d1d1db;} .list-group-item-gamma.list-group-item-action:hover, .list-group-item-gamma.list-group-item-action:focus{color: #302f43; background-color: #c3c3d0;} .list-group-item-gamma.list-group-item-action.active{color: #fff; background-color: #302f43; border-color: #302f43;} .list-group-item-delta{color: #2f4752; background-color: #d1dee4;} .list-group-item-delta.list-group-item-action:hover, .list-group-item-delta.list-group-item-action:focus{color: #2f4752; background-color: #c1d2db;} .list-group-item-delta.list-group-item-action.active{color: #fff; background-color: #2f4752; border-color: #2f4752;} .list-group-item-epsilon{color: #773a3e; background-color: #f7d7d9;} .list-group-item-epsilon.list-group-item-action:hover, .list-group-item-epsilon.list-group-item-action:focus{color: #773a3e; background-color: #f3c2c5;} .list-group-item-epsilon.list-group-item-action.active{color: #fff; background-color: #773a3e; border-color: #773a3e;} .close{float: right; font-size: 1.625rem; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; opacity: .5;} .close:not(:disabled):not(.disabled){cursor: pointer;} .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus{color: #000; text-decoration: none; opacity: .75;} button.close{padding: 0; background-color: transparent; border: 0; -webkit--webkit-appearance: none; -moz-appearance: none; appearance: none;} .modal-open{overflow: hidden;} .modal-open .modal{overflow-x: hidden; overflow-y: auto;} .modal{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; outline: 0;} .modal-dialog{position: relative; width: auto; margin: 0.5rem; pointer-events: none;} .modal.fade .modal-dialog{transition: transform 0.3s ease-out; transform: translate(0, -25%);} @media screen and (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition: none;}} .modal.show .modal-dialog{transform: translate(0, 0);} .modal-dialog-centered{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; min-height: calc(100% - (0.5rem * 2));} .modal-dialog-centered::before{display: block; height: calc(100vh - (0.5rem * 2)); content: "";} .modal-content{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; outline: 0;} .modal-backdrop{position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000;} .modal-backdrop.fade{opacity: 0;} .modal-backdrop.show{opacity: 0.5;} .modal-header{display: -webkit-box; display: -webkit-flex; display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #e9ecef; border-top-left-radius: 0.3rem; border-top-right-radius: 0.3rem;} .modal-header .close{padding: 1rem; margin: -1rem -1rem -1rem auto;} .modal-title{margin-bottom: 0; line-height: 1.5;} .modal-body{position: relative; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; padding: 16px;} .modal-footer{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; -webkit-box-pack: end; justify-content: flex-end; padding: 16px; border-top: 1px solid #e9ecef;} .modal-footer > :not(:first-child){margin-left: .25rem;} .modal-footer > :not(:last-child){margin-right: .25rem;} .modal-scrollbar-measure{position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll;} @media (min-width: 576px){.modal-dialog{max-width: 650px; margin: 1.75rem auto;}.modal-dialog-centered{min-height: calc(100% - (1.75rem * 2));}.modal-dialog-centered::before{height: calc(100vh - (1.75rem * 2));}.modal-sm{max-width: 300px;}} @media (min-width: 992px){.modal-lg{max-width: 980px;}} .tooltip{position: absolute; z-index: 1070; display: block; margin: 0; font-family: "Noto", "Lucida Grande", Helvetica, Verdana, Arial, sans-serif; font-style: normal; font-weight: 400; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.94791667rem; word-wrap: break-word; opacity: 0;} .tooltip.show{opacity: 0.9;} .tooltip .arrow{position: absolute; display: block; width: 0.8rem; height: 0.4rem;} .tooltip .arrow::before{position: absolute; content: ""; border-color: transparent; border-style: solid;} .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"]{padding: 0.4rem 0;} .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow{bottom: 0;} .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before{top: 0; border-width: 0.4rem 0.4rem 0; border-top-color: #000;} .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"]{padding: 0 0.4rem;} .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow{left: 0; width: 0.4rem; height: 0.8rem;} .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before{right: 0; border-width: 0.4rem 0.4rem 0.4rem 0; border-right-color: #000;} .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"]{padding: 0.4rem 0;} .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow{top: 0;} .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom: 0; border-width: 0 0.4rem 0.4rem; border-bottom-color: #000;} .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"]{padding: 0 0.4rem;} .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow{right: 0; width: 0.4rem; height: 0.8rem;} .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before{left: 0; border-width: 0.4rem 0 0.4rem 0.4rem; border-left-color: #000;} .tooltip-inner{max-width: 200px; padding: 0.25rem 0.5rem; color: #fff; text-align: center; background-color: #000; border-radius: 3px;} .popover{position: absolute; top: 0; left: 0; z-index: 1060; display: block; max-width: 276px; font-family: "Noto", "Lucida Grande", Helvetica, Verdana, Arial, sans-serif; font-style: normal; font-weight: 400; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.94791667rem; word-wrap: break-word; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem;} .popover .arrow{position: absolute; display: block; width: 1rem; height: 0.5rem; margin: 0 0.3rem;} .popover .arrow::before, .popover .arrow::after{position: absolute; display: block; content: ""; border-color: transparent; border-style: solid;} .bs-popover-top, .bs-popover-auto[x-placement^="top"]{margin-bottom: 0.5rem;} .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow{bottom: calc((0.5rem + 1px) * -1);} .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after{border-width: 0.5rem 0.5rem 0;} .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before{bottom: 0; border-top-color: rgba(0, 0, 0, 0.25);} .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after{bottom: 1px; border-top-color: #fff;} .bs-popover-right, .bs-popover-auto[x-placement^="right"]{margin-left: 0.5rem;} .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow{left: calc((0.5rem + 1px) * -1); width: 0.5rem; height: 1rem; margin: 0.3rem 0;} .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after{border-width: 0.5rem 0.5rem 0.5rem 0;} .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before{left: 0; border-right-color: rgba(0, 0, 0, 0.25);} .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after{left: 1px; border-right-color: #fff;} .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"]{margin-top: 0.5rem;} .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow{top: calc((0.5rem + 1px) * -1);} .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after{border-width: 0 0.5rem 0.5rem 0.5rem;} .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before{top: 0; border-bottom-color: rgba(0, 0, 0, 0.25);} .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after{top: 1px; border-bottom-color: #fff;} .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position: absolute; top: 0; left: 50%; display: block; width: 1rem; margin-left: -0.5rem; content: ""; border-bottom: 1px solid #f7f7f7;} .bs-popover-left, .bs-popover-auto[x-placement^="left"]{margin-right: 0.5rem;} .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow{right: calc((0.5rem + 1px) * -1); width: 0.5rem; height: 1rem; margin: 0.3rem 0;} .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after{border-width: 0.5rem 0 0.5rem 0.5rem;} .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before{right: 0; border-left-color: rgba(0, 0, 0, 0.25);} .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after{right: 1px; border-left-color: #fff;} .popover-header{padding: 0.5rem 0.75rem; margin-bottom: 0; font-size: 1.08333333rem; color: inherit; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-top-left-radius: calc(0.3rem - 1px); border-top-right-radius: calc(0.3rem - 1px);} .popover-header:empty{display: none;} .popover-body{padding: 0.5rem 0.75rem; color: #4c4c4c;} .carousel{position: relative;} .carousel-inner{position: relative; width: 100%; overflow: hidden;} .carousel-item{position: relative; display: none; align-items: center; width: 100%; backface-visibility: hidden; perspective: 1000px;} .carousel-item.active, .carousel-item-next, .carousel-item-prev{display: block; transition: transform 0.6s ease;} @media screen and (prefers-reduced-motion: reduce){.carousel-item.active, .carousel-item-next, .carousel-item-prev{transition: none;}} .carousel-item-next, .carousel-item-prev{position: absolute; top: 0;} .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right{transform: translateX(0);} @supports (transform-style: preserve-3d){.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right{transform: translate3d(0, 0, 0);}} .carousel-item-next, .active.carousel-item-right{transform: translateX(100%);} @supports (transform-style: preserve-3d){.carousel-item-next, .active.carousel-item-right{transform: translate3d(100%, 0, 0);}} .carousel-item-prev, .active.carousel-item-left{transform: translateX(-100%);} @supports (transform-style: preserve-3d){.carousel-item-prev, .active.carousel-item-left{transform: translate3d(-100%, 0, 0);}} .carousel-fade .carousel-item{opacity: 0; transition-duration: .6s; transition-property: opacity;} .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right{opacity: 1;} .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right{opacity: 0;} .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev{transform: translateX(0);} @supports (transform-style: preserve-3d){.carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev{transform: translate3d(0, 0, 0);}} .carousel-control-prev, .carousel-control-next{position: absolute; top: 0; bottom: 0; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; width: 15%; color: #fff; text-align: center; opacity: 0.5;} .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus{color: #fff; text-decoration: none; outline: 0; opacity: .9;} .carousel-control-prev{left: 0;} .carousel-control-next{right: 0;} .carousel-control-prev-icon, .carousel-control-next-icon{display: inline-block; width: 20px; height: 20px; background: transparent no-repeat center center; background-size: 100% 100%;} .carousel-control-prev-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");} .carousel-control-next-icon{background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");} .carousel-indicators{position: absolute; right: 0; bottom: 10px; left: 0; z-index: 15; display: -webkit-box; display: -webkit-flex; display: flex; justify-content: center; padding-left: 0; margin-right: 15%; margin-left: 15%; list-style: none;} .carousel-indicators li{position: relative; -webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: rgba(255, 255, 255, 0.5);} .carousel-indicators li::before{position: absolute; top: -10px; left: 0; display: inline-block; width: 100%; height: 10px; content: "";} .carousel-indicators li::after{position: absolute; bottom: -10px; left: 0; display: inline-block; width: 100%; height: 10px; content: "";} .carousel-indicators .active{background-color: #fff;} .carousel-caption{position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center;} .align-baseline{vertical-align: baseline !important;} .align-top{vertical-align: top !important;} .align-middle{vertical-align: middle !important;} .align-bottom{vertical-align: bottom !important;} .align-text-bottom{vertical-align: text-bottom !important;} .align-text-top{vertical-align: text-top !important;} .bg-primary{background-color: #7C7BAD !important; color: #fff;} .bg-primary .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus{background-color: #5f5e97 !important; color: #fff;} .bg-secondary{background-color: #fff !important; color: #212529;} .bg-secondary .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus{background-color: #e6e5e5 !important; color: #212529;} .bg-success{background-color: #28a745 !important; color: #fff;} .bg-success .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus{background-color: #1e7e34 !important; color: #fff;} .bg-info{background-color: #17a2b8 !important; color: #fff;} .bg-info .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus{background-color: #117a8b !important; color: #fff;} .bg-warning{background-color: #ffc107 !important; color: #212529;} .bg-warning .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-warning:hover, a.bg-warning:focus, button.bg-warning:hover, button.bg-warning:focus{background-color: #d39e00 !important; color: #212529;} .bg-danger, .oe_import .oe_import_error_report .oe_import_report.bg-error{background-color: #dc3545 !important; color: #fff;} .bg-danger .text-muted, .oe_import .oe_import_error_report .oe_import_report.bg-error .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-danger:hover, .oe_import .oe_import_error_report a.oe_import_report.bg-error:hover, a.bg-danger:focus, .oe_import .oe_import_error_report a.oe_import_report.bg-error:focus, button.bg-danger:hover, .oe_import .oe_import_error_report button.oe_import_report.bg-error:hover, button.bg-danger:focus, .oe_import .oe_import_error_report button.oe_import_report.bg-error:focus{background-color: #bd2130 !important; color: #fff;} .bg-light{background-color: #f8f9fa !important; color: #212529;} .bg-light .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus{background-color: #dae0e5 !important; color: #212529;} .bg-dark{background-color: #343a40 !important; color: #fff;} .bg-dark .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus{background-color: #1d2124 !important; color: #fff;} .bg-alpha{background-color: #00A09D !important; color: #fff;} .bg-alpha .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-alpha:hover, a.bg-alpha:focus, button.bg-alpha:hover, button.bg-alpha:focus{background-color: #006d6b !important; color: #fff;} .bg-beta{background-color: #875A7B !important; color: #fff;} .bg-beta .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-beta:hover, a.bg-beta:focus, button.bg-beta:hover, button.bg-beta:focus{background-color: #68465f !important; color: #fff;} .bg-gamma{background-color: #5C5B80 !important; color: #fff;} .bg-gamma .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-gamma:hover, a.bg-gamma:focus, button.bg-gamma:hover, button.bg-gamma:focus{background-color: #474662 !important; color: #fff;} .bg-delta{background-color: #5B899E !important; color: #fff;} .bg-delta .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-delta:hover, a.bg-delta:focus, button.bg-delta:hover, button.bg-delta:focus{background-color: #486d7e !important; color: #fff;} .bg-epsilon{background-color: #E46F78 !important; color: #fff;} .bg-epsilon .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-epsilon:hover, a.bg-epsilon:focus, button.bg-epsilon:hover, button.bg-epsilon:focus{background-color: #dc4450 !important; color: #fff;} .bg-white{background-color: #fff !important;} .bg-transparent{background-color: transparent !important;} .border{border: 1px solid #dee2e6 !important;} .border-top{border-top: 1px solid #dee2e6 !important;} .border-right{border-right: 1px solid #dee2e6 !important;} .border-bottom{border-bottom: 1px solid #dee2e6 !important;} .border-left{border-left: 1px solid #dee2e6 !important;} .border-0{border: 0 !important;} .border-top-0{border-top: 0 !important;} .border-right-0{border-right: 0 !important;} .border-bottom-0{border-bottom: 0 !important;} .border-left-0{border-left: 0 !important;} .border-primary{border-color: #7C7BAD !important;} .border-secondary{border-color: #fff !important;} .border-success{border-color: #28a745 !important;} .border-info{border-color: #17a2b8 !important;} .border-warning{border-color: #ffc107 !important;} .border-danger{border-color: #dc3545 !important;} .border-light{border-color: #f8f9fa !important;} .border-dark{border-color: #343a40 !important;} .border-alpha{border-color: #00A09D !important;} .border-beta{border-color: #875A7B !important;} .border-gamma{border-color: #5C5B80 !important;} .border-delta{border-color: #5B899E !important;} .border-epsilon{border-color: #E46F78 !important;} .border-white{border-color: #fff !important;} .rounded{border-radius: 3px !important;} .rounded-top{border-top-left-radius: 3px !important; border-top-right-radius: 3px !important;} .rounded-right{border-top-right-radius: 3px !important; border-bottom-right-radius: 3px !important;} .rounded-bottom{border-bottom-right-radius: 3px !important; border-bottom-left-radius: 3px !important;} .rounded-left{border-top-left-radius: 3px !important; border-bottom-left-radius: 3px !important;} .rounded-circle{border-radius: 50% !important;} .rounded-0{border-radius: 0 !important;} .clearfix::after{display: block; clear: both; content: "";} .d-none{display: none !important;} .d-inline{display: inline !important;} .d-inline-block{display: inline-block !important;} .d-block{display: block !important;} .d-table{display: table !important;} .d-table-row{display: table-row !important;} .d-table-cell{display: table-cell !important;} .d-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;} .d-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;} @media (min-width: 576px){.d-sm-none{display: none !important;}.d-sm-inline{display: inline !important;}.d-sm-inline-block{display: inline-block !important;}.d-sm-block{display: block !important;}.d-sm-table{display: table !important;}.d-sm-table-row{display: table-row !important;}.d-sm-table-cell{display: table-cell !important;}.d-sm-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-sm-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media (min-width: 768px){.d-md-none{display: none !important;}.d-md-inline{display: inline !important;}.d-md-inline-block{display: inline-block !important;}.d-md-block{display: block !important;}.d-md-table{display: table !important;}.d-md-table-row{display: table-row !important;}.d-md-table-cell{display: table-cell !important;}.d-md-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-md-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media (min-width: 992px){.d-lg-none{display: none !important;}.d-lg-inline{display: inline !important;}.d-lg-inline-block{display: inline-block !important;}.d-lg-block{display: block !important;}.d-lg-table{display: table !important;}.d-lg-table-row{display: table-row !important;}.d-lg-table-cell{display: table-cell !important;}.d-lg-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-lg-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media (min-width: 1200px){.d-xl-none{display: none !important;}.d-xl-inline{display: inline !important;}.d-xl-inline-block{display: inline-block !important;}.d-xl-block{display: block !important;}.d-xl-table{display: table !important;}.d-xl-table-row{display: table-row !important;}.d-xl-table-cell{display: table-cell !important;}.d-xl-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-xl-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} @media print{.d-print-none{display: none !important;}.d-print-inline{display: inline !important;}.d-print-inline-block{display: inline-block !important;}.d-print-block{display: block !important;}.d-print-table{display: table !important;}.d-print-table-row{display: table-row !important;}.d-print-table-cell{display: table-cell !important;}.d-print-flex{display: -webkit-box !important; display: -webkit-flex !important; display: flex !important;}.d-print-inline-flex{display: -webkit-inline-box !important; display: -webkit-inline-flex !important; display: inline-flex !important;}} .embed-responsive{position: relative; display: block; width: 100%; padding: 0; overflow: hidden;} .embed-responsive::before{display: block; content: "";} .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video{position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0;} .embed-responsive-21by9::before{padding-top: 42.85714286%;} .embed-responsive-16by9::before{padding-top: 56.25%;} .embed-responsive-4by3::before{padding-top: 75%;} .embed-responsive-1by1::before{padding-top: 100%;} .flex-row{flex-direction: row !important;} .flex-column{flex-direction: column !important;} .flex-row-reverse{flex-direction: row-reverse !important;} .flex-column-reverse{flex-direction: column-reverse !important;} .flex-wrap{flex-wrap: wrap !important;} .flex-nowrap{flex-wrap: nowrap !important;} .flex-wrap-reverse{flex-wrap: wrap-reverse !important;} .flex-fill{flex: 1 1 auto !important;} .flex-grow-0{flex-grow: 0 !important;} .flex-grow-1{flex-grow: 1 !important;} .flex-shrink-0{flex-shrink: 0 !important;} .flex-shrink-1{flex-shrink: 1 !important;} .justify-content-start{-webkit-box-pack: start !important; justify-content: flex-start !important;} .justify-content-end{-webkit-box-pack: end !important; justify-content: flex-end !important;} .justify-content-center{justify-content: center !important;} .justify-content-between{justify-content: space-between !important;} .justify-content-around{justify-content: space-around !important;} .align-items-start{align-items: flex-start !important;} .align-items-end{align-items: flex-end !important;} .align-items-center{align-items: center !important;} .align-items-baseline{align-items: baseline !important;} .align-items-stretch{align-items: stretch !important;} .align-content-start{align-content: flex-start !important;} .align-content-end{align-content: flex-end !important;} .align-content-center{align-content: center !important;} .align-content-between{align-content: space-between !important;} .align-content-around{align-content: space-around !important;} .align-content-stretch{align-content: stretch !important;} .align-self-auto{align-self: auto !important;} .align-self-start{align-self: flex-start !important;} .align-self-end{align-self: flex-end !important;} .align-self-center{align-self: center !important;} .align-self-baseline{align-self: baseline !important;} .align-self-stretch{align-self: stretch !important;} @media (min-width: 576px){.flex-sm-row{flex-direction: row !important;}.flex-sm-column{flex-direction: column !important;}.flex-sm-row-reverse{flex-direction: row-reverse !important;}.flex-sm-column-reverse{flex-direction: column-reverse !important;}.flex-sm-wrap{flex-wrap: wrap !important;}.flex-sm-nowrap{flex-wrap: nowrap !important;}.flex-sm-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-sm-fill{flex: 1 1 auto !important;}.flex-sm-grow-0{flex-grow: 0 !important;}.flex-sm-grow-1{flex-grow: 1 !important;}.flex-sm-shrink-0{flex-shrink: 0 !important;}.flex-sm-shrink-1{flex-shrink: 1 !important;}.justify-content-sm-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-sm-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-sm-center{justify-content: center !important;}.justify-content-sm-between{justify-content: space-between !important;}.justify-content-sm-around{justify-content: space-around !important;}.align-items-sm-start{align-items: flex-start !important;}.align-items-sm-end{align-items: flex-end !important;}.align-items-sm-center{align-items: center !important;}.align-items-sm-baseline{align-items: baseline !important;}.align-items-sm-stretch{align-items: stretch !important;}.align-content-sm-start{align-content: flex-start !important;}.align-content-sm-end{align-content: flex-end !important;}.align-content-sm-center{align-content: center !important;}.align-content-sm-between{align-content: space-between !important;}.align-content-sm-around{align-content: space-around !important;}.align-content-sm-stretch{align-content: stretch !important;}.align-self-sm-auto{align-self: auto !important;}.align-self-sm-start{align-self: flex-start !important;}.align-self-sm-end{align-self: flex-end !important;}.align-self-sm-center{align-self: center !important;}.align-self-sm-baseline{align-self: baseline !important;}.align-self-sm-stretch{align-self: stretch !important;}} @media (min-width: 768px){.flex-md-row{flex-direction: row !important;}.flex-md-column{flex-direction: column !important;}.flex-md-row-reverse{flex-direction: row-reverse !important;}.flex-md-column-reverse{flex-direction: column-reverse !important;}.flex-md-wrap{flex-wrap: wrap !important;}.flex-md-nowrap{flex-wrap: nowrap !important;}.flex-md-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-md-fill{flex: 1 1 auto !important;}.flex-md-grow-0{flex-grow: 0 !important;}.flex-md-grow-1{flex-grow: 1 !important;}.flex-md-shrink-0{flex-shrink: 0 !important;}.flex-md-shrink-1{flex-shrink: 1 !important;}.justify-content-md-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-md-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-md-center{justify-content: center !important;}.justify-content-md-between{justify-content: space-between !important;}.justify-content-md-around{justify-content: space-around !important;}.align-items-md-start{align-items: flex-start !important;}.align-items-md-end{align-items: flex-end !important;}.align-items-md-center{align-items: center !important;}.align-items-md-baseline{align-items: baseline !important;}.align-items-md-stretch{align-items: stretch !important;}.align-content-md-start{align-content: flex-start !important;}.align-content-md-end{align-content: flex-end !important;}.align-content-md-center{align-content: center !important;}.align-content-md-between{align-content: space-between !important;}.align-content-md-around{align-content: space-around !important;}.align-content-md-stretch{align-content: stretch !important;}.align-self-md-auto{align-self: auto !important;}.align-self-md-start{align-self: flex-start !important;}.align-self-md-end{align-self: flex-end !important;}.align-self-md-center{align-self: center !important;}.align-self-md-baseline{align-self: baseline !important;}.align-self-md-stretch{align-self: stretch !important;}} @media (min-width: 992px){.flex-lg-row{flex-direction: row !important;}.flex-lg-column{flex-direction: column !important;}.flex-lg-row-reverse{flex-direction: row-reverse !important;}.flex-lg-column-reverse{flex-direction: column-reverse !important;}.flex-lg-wrap{flex-wrap: wrap !important;}.flex-lg-nowrap{flex-wrap: nowrap !important;}.flex-lg-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-lg-fill{flex: 1 1 auto !important;}.flex-lg-grow-0{flex-grow: 0 !important;}.flex-lg-grow-1{flex-grow: 1 !important;}.flex-lg-shrink-0{flex-shrink: 0 !important;}.flex-lg-shrink-1{flex-shrink: 1 !important;}.justify-content-lg-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-lg-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-lg-center{justify-content: center !important;}.justify-content-lg-between{justify-content: space-between !important;}.justify-content-lg-around{justify-content: space-around !important;}.align-items-lg-start{align-items: flex-start !important;}.align-items-lg-end{align-items: flex-end !important;}.align-items-lg-center{align-items: center !important;}.align-items-lg-baseline{align-items: baseline !important;}.align-items-lg-stretch{align-items: stretch !important;}.align-content-lg-start{align-content: flex-start !important;}.align-content-lg-end{align-content: flex-end !important;}.align-content-lg-center{align-content: center !important;}.align-content-lg-between{align-content: space-between !important;}.align-content-lg-around{align-content: space-around !important;}.align-content-lg-stretch{align-content: stretch !important;}.align-self-lg-auto{align-self: auto !important;}.align-self-lg-start{align-self: flex-start !important;}.align-self-lg-end{align-self: flex-end !important;}.align-self-lg-center{align-self: center !important;}.align-self-lg-baseline{align-self: baseline !important;}.align-self-lg-stretch{align-self: stretch !important;}} @media (min-width: 1200px){.flex-xl-row{flex-direction: row !important;}.flex-xl-column{flex-direction: column !important;}.flex-xl-row-reverse{flex-direction: row-reverse !important;}.flex-xl-column-reverse{flex-direction: column-reverse !important;}.flex-xl-wrap{flex-wrap: wrap !important;}.flex-xl-nowrap{flex-wrap: nowrap !important;}.flex-xl-wrap-reverse{flex-wrap: wrap-reverse !important;}.flex-xl-fill{flex: 1 1 auto !important;}.flex-xl-grow-0{flex-grow: 0 !important;}.flex-xl-grow-1{flex-grow: 1 !important;}.flex-xl-shrink-0{flex-shrink: 0 !important;}.flex-xl-shrink-1{flex-shrink: 1 !important;}.justify-content-xl-start{-webkit-box-pack: start !important; justify-content: flex-start !important;}.justify-content-xl-end{-webkit-box-pack: end !important; justify-content: flex-end !important;}.justify-content-xl-center{justify-content: center !important;}.justify-content-xl-between{justify-content: space-between !important;}.justify-content-xl-around{justify-content: space-around !important;}.align-items-xl-start{align-items: flex-start !important;}.align-items-xl-end{align-items: flex-end !important;}.align-items-xl-center{align-items: center !important;}.align-items-xl-baseline{align-items: baseline !important;}.align-items-xl-stretch{align-items: stretch !important;}.align-content-xl-start{align-content: flex-start !important;}.align-content-xl-end{align-content: flex-end !important;}.align-content-xl-center{align-content: center !important;}.align-content-xl-between{align-content: space-between !important;}.align-content-xl-around{align-content: space-around !important;}.align-content-xl-stretch{align-content: stretch !important;}.align-self-xl-auto{align-self: auto !important;}.align-self-xl-start{align-self: flex-start !important;}.align-self-xl-end{align-self: flex-end !important;}.align-self-xl-center{align-self: center !important;}.align-self-xl-baseline{align-self: baseline !important;}.align-self-xl-stretch{align-self: stretch !important;}} .float-left{float: left !important;} .float-right{float: right !important;} .float-none{float: none !important;} @media (min-width: 576px){.float-sm-left{float: left !important;}.float-sm-right{float: right !important;}.float-sm-none{float: none !important;}} @media (min-width: 768px){.float-md-left{float: left !important;}.float-md-right{float: right !important;}.float-md-none{float: none !important;}} @media (min-width: 992px){.float-lg-left{float: left !important;}.float-lg-right{float: right !important;}.float-lg-none{float: none !important;}} @media (min-width: 1200px){.float-xl-left{float: left !important;}.float-xl-right{float: right !important;}.float-xl-none{float: none !important;}} .position-static{position: static !important;} .position-relative{position: relative !important;} .position-absolute{position: absolute !important;} .position-fixed{position: fixed !important;} .position-sticky{position: sticky !important;} .fixed-top{position: fixed; top: 0; right: 0; left: 0; z-index: 1030;} .fixed-bottom{position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030;} @supports (position: sticky){.sticky-top{position: sticky; top: 0; z-index: 1020;}} .sr-only{position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;} .sr-only-focusable:active, .sr-only-focusable:focus{position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal;} .shadow-sm{box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;} .shadow{box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;} .shadow-lg{box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;} .shadow-none{box-shadow: none !important;} .w-25{width: 25% !important;} .w-50{width: 50% !important;} .w-75{width: 75% !important;} .w-100{width: 100% !important;} .w-auto{width: auto !important;} .h-25{height: 25% !important;} .h-50{height: 50% !important;} .h-75{height: 75% !important;} .h-100{height: 100% !important;} .h-auto{height: auto !important;} .mw-100{max-width: 100% !important;} .mh-100{max-height: 100% !important;} .m-0{margin: 0 !important;} .mt-0, .my-0{margin-top: 0 !important;} .mr-0, .mx-0{margin-right: 0 !important;} .mb-0, .my-0{margin-bottom: 0 !important;} .ml-0, .mx-0{margin-left: 0 !important;} .m-1{margin: 0.25rem !important;} .mt-1, .my-1{margin-top: 0.25rem !important;} .mr-1, .mx-1{margin-right: 0.25rem !important;} .mb-1, .my-1{margin-bottom: 0.25rem !important;} .ml-1, .mx-1{margin-left: 0.25rem !important;} .m-2{margin: 0.5rem !important;} .mt-2, .my-2{margin-top: 0.5rem !important;} .mr-2, .mx-2{margin-right: 0.5rem !important;} .mb-2, .my-2{margin-bottom: 0.5rem !important;} .ml-2, .mx-2{margin-left: 0.5rem !important;} .m-3{margin: 1rem !important;} .mt-3, .my-3{margin-top: 1rem !important;} .mr-3, .mx-3{margin-right: 1rem !important;} .mb-3, .my-3{margin-bottom: 1rem !important;} .ml-3, .mx-3{margin-left: 1rem !important;} .m-4{margin: 1.5rem !important;} .mt-4, .my-4{margin-top: 1.5rem !important;} .mr-4, .mx-4{margin-right: 1.5rem !important;} .mb-4, .my-4{margin-bottom: 1.5rem !important;} .ml-4, .mx-4{margin-left: 1.5rem !important;} .m-5{margin: 3rem !important;} .mt-5, .my-5{margin-top: 3rem !important;} .mr-5, .mx-5{margin-right: 3rem !important;} .mb-5, .my-5{margin-bottom: 3rem !important;} .ml-5, .mx-5{margin-left: 3rem !important;} .p-0{padding: 0 !important;} .pt-0, .py-0{padding-top: 0 !important;} .pr-0, .px-0{padding-right: 0 !important;} .pb-0, .py-0{padding-bottom: 0 !important;} .pl-0, .px-0{padding-left: 0 !important;} .p-1{padding: 0.25rem !important;} .pt-1, .py-1{padding-top: 0.25rem !important;} .pr-1, .px-1{padding-right: 0.25rem !important;} .pb-1, .py-1{padding-bottom: 0.25rem !important;} .pl-1, .px-1{padding-left: 0.25rem !important;} .p-2{padding: 0.5rem !important;} .pt-2, .py-2{padding-top: 0.5rem !important;} .pr-2, .px-2{padding-right: 0.5rem !important;} .pb-2, .py-2{padding-bottom: 0.5rem !important;} .pl-2, .px-2{padding-left: 0.5rem !important;} .p-3{padding: 1rem !important;} .pt-3, .py-3{padding-top: 1rem !important;} .pr-3, .px-3{padding-right: 1rem !important;} .pb-3, .py-3{padding-bottom: 1rem !important;} .pl-3, .px-3{padding-left: 1rem !important;} .p-4{padding: 1.5rem !important;} .pt-4, .py-4{padding-top: 1.5rem !important;} .pr-4, .px-4{padding-right: 1.5rem !important;} .pb-4, .py-4{padding-bottom: 1.5rem !important;} .pl-4, .px-4{padding-left: 1.5rem !important;} .p-5{padding: 3rem !important;} .pt-5, .py-5{padding-top: 3rem !important;} .pr-5, .px-5{padding-right: 3rem !important;} .pb-5, .py-5{padding-bottom: 3rem !important;} .pl-5, .px-5{padding-left: 3rem !important;} .m-auto{margin: auto !important;} .mt-auto, .my-auto{margin-top: auto !important;} .mr-auto, .mx-auto{margin-right: auto !important;} .mb-auto, .my-auto{margin-bottom: auto !important;} .ml-auto, .mx-auto{margin-left: auto !important;} @media (min-width: 576px){.m-sm-0{margin: 0 !important;}.mt-sm-0, .my-sm-0{margin-top: 0 !important;}.mr-sm-0, .mx-sm-0{margin-right: 0 !important;}.mb-sm-0, .my-sm-0{margin-bottom: 0 !important;}.ml-sm-0, .mx-sm-0{margin-left: 0 !important;}.m-sm-1{margin: 0.25rem !important;}.mt-sm-1, .my-sm-1{margin-top: 0.25rem !important;}.mr-sm-1, .mx-sm-1{margin-right: 0.25rem !important;}.mb-sm-1, .my-sm-1{margin-bottom: 0.25rem !important;}.ml-sm-1, .mx-sm-1{margin-left: 0.25rem !important;}.m-sm-2{margin: 0.5rem !important;}.mt-sm-2, .my-sm-2{margin-top: 0.5rem !important;}.mr-sm-2, .mx-sm-2{margin-right: 0.5rem !important;}.mb-sm-2, .my-sm-2{margin-bottom: 0.5rem !important;}.ml-sm-2, .mx-sm-2{margin-left: 0.5rem !important;}.m-sm-3{margin: 1rem !important;}.mt-sm-3, .my-sm-3{margin-top: 1rem !important;}.mr-sm-3, .mx-sm-3{margin-right: 1rem !important;}.mb-sm-3, .my-sm-3{margin-bottom: 1rem !important;}.ml-sm-3, .mx-sm-3{margin-left: 1rem !important;}.m-sm-4{margin: 1.5rem !important;}.mt-sm-4, .my-sm-4{margin-top: 1.5rem !important;}.mr-sm-4, .mx-sm-4{margin-right: 1.5rem !important;}.mb-sm-4, .my-sm-4{margin-bottom: 1.5rem !important;}.ml-sm-4, .mx-sm-4{margin-left: 1.5rem !important;}.m-sm-5{margin: 3rem !important;}.mt-sm-5, .my-sm-5{margin-top: 3rem !important;}.mr-sm-5, .mx-sm-5{margin-right: 3rem !important;}.mb-sm-5, .my-sm-5{margin-bottom: 3rem !important;}.ml-sm-5, .mx-sm-5{margin-left: 3rem !important;}.p-sm-0{padding: 0 !important;}.pt-sm-0, .py-sm-0{padding-top: 0 !important;}.pr-sm-0, .px-sm-0{padding-right: 0 !important;}.pb-sm-0, .py-sm-0{padding-bottom: 0 !important;}.pl-sm-0, .px-sm-0{padding-left: 0 !important;}.p-sm-1{padding: 0.25rem !important;}.pt-sm-1, .py-sm-1{padding-top: 0.25rem !important;}.pr-sm-1, .px-sm-1{padding-right: 0.25rem !important;}.pb-sm-1, .py-sm-1{padding-bottom: 0.25rem !important;}.pl-sm-1, .px-sm-1{padding-left: 0.25rem !important;}.p-sm-2{padding: 0.5rem !important;}.pt-sm-2, .py-sm-2{padding-top: 0.5rem !important;}.pr-sm-2, .px-sm-2{padding-right: 0.5rem !important;}.pb-sm-2, .py-sm-2{padding-bottom: 0.5rem !important;}.pl-sm-2, .px-sm-2{padding-left: 0.5rem !important;}.p-sm-3{padding: 1rem !important;}.pt-sm-3, .py-sm-3{padding-top: 1rem !important;}.pr-sm-3, .px-sm-3{padding-right: 1rem !important;}.pb-sm-3, .py-sm-3{padding-bottom: 1rem !important;}.pl-sm-3, .px-sm-3{padding-left: 1rem !important;}.p-sm-4{padding: 1.5rem !important;}.pt-sm-4, .py-sm-4{padding-top: 1.5rem !important;}.pr-sm-4, .px-sm-4{padding-right: 1.5rem !important;}.pb-sm-4, .py-sm-4{padding-bottom: 1.5rem !important;}.pl-sm-4, .px-sm-4{padding-left: 1.5rem !important;}.p-sm-5{padding: 3rem !important;}.pt-sm-5, .py-sm-5{padding-top: 3rem !important;}.pr-sm-5, .px-sm-5{padding-right: 3rem !important;}.pb-sm-5, .py-sm-5{padding-bottom: 3rem !important;}.pl-sm-5, .px-sm-5{padding-left: 3rem !important;}.m-sm-auto{margin: auto !important;}.mt-sm-auto, .my-sm-auto{margin-top: auto !important;}.mr-sm-auto, .mx-sm-auto{margin-right: auto !important;}.mb-sm-auto, .my-sm-auto{margin-bottom: auto !important;}.ml-sm-auto, .mx-sm-auto{margin-left: auto !important;}} @media (min-width: 768px){.m-md-0{margin: 0 !important;}.mt-md-0, .my-md-0{margin-top: 0 !important;}.mr-md-0, .mx-md-0{margin-right: 0 !important;}.mb-md-0, .my-md-0{margin-bottom: 0 !important;}.ml-md-0, .mx-md-0{margin-left: 0 !important;}.m-md-1{margin: 0.25rem !important;}.mt-md-1, .my-md-1{margin-top: 0.25rem !important;}.mr-md-1, .mx-md-1{margin-right: 0.25rem !important;}.mb-md-1, .my-md-1{margin-bottom: 0.25rem !important;}.ml-md-1, .mx-md-1{margin-left: 0.25rem !important;}.m-md-2{margin: 0.5rem !important;}.mt-md-2, .my-md-2{margin-top: 0.5rem !important;}.mr-md-2, .mx-md-2{margin-right: 0.5rem !important;}.mb-md-2, .my-md-2{margin-bottom: 0.5rem !important;}.ml-md-2, .mx-md-2{margin-left: 0.5rem !important;}.m-md-3{margin: 1rem !important;}.mt-md-3, .my-md-3{margin-top: 1rem !important;}.mr-md-3, .mx-md-3{margin-right: 1rem !important;}.mb-md-3, .my-md-3{margin-bottom: 1rem !important;}.ml-md-3, .mx-md-3{margin-left: 1rem !important;}.m-md-4{margin: 1.5rem !important;}.mt-md-4, .my-md-4{margin-top: 1.5rem !important;}.mr-md-4, .mx-md-4{margin-right: 1.5rem !important;}.mb-md-4, .my-md-4{margin-bottom: 1.5rem !important;}.ml-md-4, .mx-md-4{margin-left: 1.5rem !important;}.m-md-5{margin: 3rem !important;}.mt-md-5, .my-md-5{margin-top: 3rem !important;}.mr-md-5, .mx-md-5{margin-right: 3rem !important;}.mb-md-5, .my-md-5{margin-bottom: 3rem !important;}.ml-md-5, .mx-md-5{margin-left: 3rem !important;}.p-md-0{padding: 0 !important;}.pt-md-0, .py-md-0{padding-top: 0 !important;}.pr-md-0, .px-md-0{padding-right: 0 !important;}.pb-md-0, .py-md-0{padding-bottom: 0 !important;}.pl-md-0, .px-md-0{padding-left: 0 !important;}.p-md-1{padding: 0.25rem !important;}.pt-md-1, .py-md-1{padding-top: 0.25rem !important;}.pr-md-1, .px-md-1{padding-right: 0.25rem !important;}.pb-md-1, .py-md-1{padding-bottom: 0.25rem !important;}.pl-md-1, .px-md-1{padding-left: 0.25rem !important;}.p-md-2{padding: 0.5rem !important;}.pt-md-2, .py-md-2{padding-top: 0.5rem !important;}.pr-md-2, .px-md-2{padding-right: 0.5rem !important;}.pb-md-2, .py-md-2{padding-bottom: 0.5rem !important;}.pl-md-2, .px-md-2{padding-left: 0.5rem !important;}.p-md-3{padding: 1rem !important;}.pt-md-3, .py-md-3{padding-top: 1rem !important;}.pr-md-3, .px-md-3{padding-right: 1rem !important;}.pb-md-3, .py-md-3{padding-bottom: 1rem !important;}.pl-md-3, .px-md-3{padding-left: 1rem !important;}.p-md-4{padding: 1.5rem !important;}.pt-md-4, .py-md-4{padding-top: 1.5rem !important;}.pr-md-4, .px-md-4{padding-right: 1.5rem !important;}.pb-md-4, .py-md-4{padding-bottom: 1.5rem !important;}.pl-md-4, .px-md-4{padding-left: 1.5rem !important;}.p-md-5{padding: 3rem !important;}.pt-md-5, .py-md-5{padding-top: 3rem !important;}.pr-md-5, .px-md-5{padding-right: 3rem !important;}.pb-md-5, .py-md-5{padding-bottom: 3rem !important;}.pl-md-5, .px-md-5{padding-left: 3rem !important;}.m-md-auto{margin: auto !important;}.mt-md-auto, .my-md-auto{margin-top: auto !important;}.mr-md-auto, .mx-md-auto{margin-right: auto !important;}.mb-md-auto, .my-md-auto{margin-bottom: auto !important;}.ml-md-auto, .mx-md-auto{margin-left: auto !important;}} @media (min-width: 992px){.m-lg-0{margin: 0 !important;}.mt-lg-0, .my-lg-0{margin-top: 0 !important;}.mr-lg-0, .mx-lg-0{margin-right: 0 !important;}.mb-lg-0, .my-lg-0{margin-bottom: 0 !important;}.ml-lg-0, .mx-lg-0{margin-left: 0 !important;}.m-lg-1{margin: 0.25rem !important;}.mt-lg-1, .my-lg-1{margin-top: 0.25rem !important;}.mr-lg-1, .mx-lg-1{margin-right: 0.25rem !important;}.mb-lg-1, .my-lg-1{margin-bottom: 0.25rem !important;}.ml-lg-1, .mx-lg-1{margin-left: 0.25rem !important;}.m-lg-2{margin: 0.5rem !important;}.mt-lg-2, .my-lg-2{margin-top: 0.5rem !important;}.mr-lg-2, .mx-lg-2{margin-right: 0.5rem !important;}.mb-lg-2, .my-lg-2{margin-bottom: 0.5rem !important;}.ml-lg-2, .mx-lg-2{margin-left: 0.5rem !important;}.m-lg-3{margin: 1rem !important;}.mt-lg-3, .my-lg-3{margin-top: 1rem !important;}.mr-lg-3, .mx-lg-3{margin-right: 1rem !important;}.mb-lg-3, .my-lg-3{margin-bottom: 1rem !important;}.ml-lg-3, .mx-lg-3{margin-left: 1rem !important;}.m-lg-4{margin: 1.5rem !important;}.mt-lg-4, .my-lg-4{margin-top: 1.5rem !important;}.mr-lg-4, .mx-lg-4{margin-right: 1.5rem !important;}.mb-lg-4, .my-lg-4{margin-bottom: 1.5rem !important;}.ml-lg-4, .mx-lg-4{margin-left: 1.5rem !important;}.m-lg-5{margin: 3rem !important;}.mt-lg-5, .my-lg-5{margin-top: 3rem !important;}.mr-lg-5, .mx-lg-5{margin-right: 3rem !important;}.mb-lg-5, .my-lg-5{margin-bottom: 3rem !important;}.ml-lg-5, .mx-lg-5{margin-left: 3rem !important;}.p-lg-0{padding: 0 !important;}.pt-lg-0, .py-lg-0{padding-top: 0 !important;}.pr-lg-0, .px-lg-0{padding-right: 0 !important;}.pb-lg-0, .py-lg-0{padding-bottom: 0 !important;}.pl-lg-0, .px-lg-0{padding-left: 0 !important;}.p-lg-1{padding: 0.25rem !important;}.pt-lg-1, .py-lg-1{padding-top: 0.25rem !important;}.pr-lg-1, .px-lg-1{padding-right: 0.25rem !important;}.pb-lg-1, .py-lg-1{padding-bottom: 0.25rem !important;}.pl-lg-1, .px-lg-1{padding-left: 0.25rem !important;}.p-lg-2{padding: 0.5rem !important;}.pt-lg-2, .py-lg-2{padding-top: 0.5rem !important;}.pr-lg-2, .px-lg-2{padding-right: 0.5rem !important;}.pb-lg-2, .py-lg-2{padding-bottom: 0.5rem !important;}.pl-lg-2, .px-lg-2{padding-left: 0.5rem !important;}.p-lg-3{padding: 1rem !important;}.pt-lg-3, .py-lg-3{padding-top: 1rem !important;}.pr-lg-3, .px-lg-3{padding-right: 1rem !important;}.pb-lg-3, .py-lg-3{padding-bottom: 1rem !important;}.pl-lg-3, .px-lg-3{padding-left: 1rem !important;}.p-lg-4{padding: 1.5rem !important;}.pt-lg-4, .py-lg-4{padding-top: 1.5rem !important;}.pr-lg-4, .px-lg-4{padding-right: 1.5rem !important;}.pb-lg-4, .py-lg-4{padding-bottom: 1.5rem !important;}.pl-lg-4, .px-lg-4{padding-left: 1.5rem !important;}.p-lg-5{padding: 3rem !important;}.pt-lg-5, .py-lg-5{padding-top: 3rem !important;}.pr-lg-5, .px-lg-5{padding-right: 3rem !important;}.pb-lg-5, .py-lg-5{padding-bottom: 3rem !important;}.pl-lg-5, .px-lg-5{padding-left: 3rem !important;}.m-lg-auto{margin: auto !important;}.mt-lg-auto, .my-lg-auto{margin-top: auto !important;}.mr-lg-auto, .mx-lg-auto{margin-right: auto !important;}.mb-lg-auto, .my-lg-auto{margin-bottom: auto !important;}.ml-lg-auto, .mx-lg-auto{margin-left: auto !important;}} @media (min-width: 1200px){.m-xl-0{margin: 0 !important;}.mt-xl-0, .my-xl-0{margin-top: 0 !important;}.mr-xl-0, .mx-xl-0{margin-right: 0 !important;}.mb-xl-0, .my-xl-0{margin-bottom: 0 !important;}.ml-xl-0, .mx-xl-0{margin-left: 0 !important;}.m-xl-1{margin: 0.25rem !important;}.mt-xl-1, .my-xl-1{margin-top: 0.25rem !important;}.mr-xl-1, .mx-xl-1{margin-right: 0.25rem !important;}.mb-xl-1, .my-xl-1{margin-bottom: 0.25rem !important;}.ml-xl-1, .mx-xl-1{margin-left: 0.25rem !important;}.m-xl-2{margin: 0.5rem !important;}.mt-xl-2, .my-xl-2{margin-top: 0.5rem !important;}.mr-xl-2, .mx-xl-2{margin-right: 0.5rem !important;}.mb-xl-2, .my-xl-2{margin-bottom: 0.5rem !important;}.ml-xl-2, .mx-xl-2{margin-left: 0.5rem !important;}.m-xl-3{margin: 1rem !important;}.mt-xl-3, .my-xl-3{margin-top: 1rem !important;}.mr-xl-3, .mx-xl-3{margin-right: 1rem !important;}.mb-xl-3, .my-xl-3{margin-bottom: 1rem !important;}.ml-xl-3, .mx-xl-3{margin-left: 1rem !important;}.m-xl-4{margin: 1.5rem !important;}.mt-xl-4, .my-xl-4{margin-top: 1.5rem !important;}.mr-xl-4, .mx-xl-4{margin-right: 1.5rem !important;}.mb-xl-4, .my-xl-4{margin-bottom: 1.5rem !important;}.ml-xl-4, .mx-xl-4{margin-left: 1.5rem !important;}.m-xl-5{margin: 3rem !important;}.mt-xl-5, .my-xl-5{margin-top: 3rem !important;}.mr-xl-5, .mx-xl-5{margin-right: 3rem !important;}.mb-xl-5, .my-xl-5{margin-bottom: 3rem !important;}.ml-xl-5, .mx-xl-5{margin-left: 3rem !important;}.p-xl-0{padding: 0 !important;}.pt-xl-0, .py-xl-0{padding-top: 0 !important;}.pr-xl-0, .px-xl-0{padding-right: 0 !important;}.pb-xl-0, .py-xl-0{padding-bottom: 0 !important;}.pl-xl-0, .px-xl-0{padding-left: 0 !important;}.p-xl-1{padding: 0.25rem !important;}.pt-xl-1, .py-xl-1{padding-top: 0.25rem !important;}.pr-xl-1, .px-xl-1{padding-right: 0.25rem !important;}.pb-xl-1, .py-xl-1{padding-bottom: 0.25rem !important;}.pl-xl-1, .px-xl-1{padding-left: 0.25rem !important;}.p-xl-2{padding: 0.5rem !important;}.pt-xl-2, .py-xl-2{padding-top: 0.5rem !important;}.pr-xl-2, .px-xl-2{padding-right: 0.5rem !important;}.pb-xl-2, .py-xl-2{padding-bottom: 0.5rem !important;}.pl-xl-2, .px-xl-2{padding-left: 0.5rem !important;}.p-xl-3{padding: 1rem !important;}.pt-xl-3, .py-xl-3{padding-top: 1rem !important;}.pr-xl-3, .px-xl-3{padding-right: 1rem !important;}.pb-xl-3, .py-xl-3{padding-bottom: 1rem !important;}.pl-xl-3, .px-xl-3{padding-left: 1rem !important;}.p-xl-4{padding: 1.5rem !important;}.pt-xl-4, .py-xl-4{padding-top: 1.5rem !important;}.pr-xl-4, .px-xl-4{padding-right: 1.5rem !important;}.pb-xl-4, .py-xl-4{padding-bottom: 1.5rem !important;}.pl-xl-4, .px-xl-4{padding-left: 1.5rem !important;}.p-xl-5{padding: 3rem !important;}.pt-xl-5, .py-xl-5{padding-top: 3rem !important;}.pr-xl-5, .px-xl-5{padding-right: 3rem !important;}.pb-xl-5, .py-xl-5{padding-bottom: 3rem !important;}.pl-xl-5, .px-xl-5{padding-left: 3rem !important;}.m-xl-auto{margin: auto !important;}.mt-xl-auto, .my-xl-auto{margin-top: auto !important;}.mr-xl-auto, .mx-xl-auto{margin-right: auto !important;}.mb-xl-auto, .my-xl-auto{margin-bottom: auto !important;}.ml-xl-auto, .mx-xl-auto{margin-left: auto !important;}} .text-monospace{font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;} .text-justify{text-align: justify !important;} .text-nowrap{white-space: nowrap !important;} .text-truncate{overflow: hidden; text-overflow: ellipsis; white-space: nowrap;} .text-left{text-align: left !important;} .text-right{text-align: right !important;} .text-center{text-align: center !important;} @media (min-width: 576px){.text-sm-left{text-align: left !important;}.text-sm-right{text-align: right !important;}.text-sm-center{text-align: center !important;}} @media (min-width: 768px){.text-md-left{text-align: left !important;}.text-md-right{text-align: right !important;}.text-md-center{text-align: center !important;}} @media (min-width: 992px){.text-lg-left{text-align: left !important;}.text-lg-right{text-align: right !important;}.text-lg-center{text-align: center !important;}} @media (min-width: 1200px){.text-xl-left{text-align: left !important;}.text-xl-right{text-align: right !important;}.text-xl-center{text-align: center !important;}} .text-lowercase{text-transform: lowercase !important;} .text-uppercase{text-transform: uppercase !important;} .text-capitalize{text-transform: capitalize !important;} .font-weight-light{font-weight: 300 !important;} .font-weight-normal{font-weight: 400 !important;} .font-weight-bold{font-weight: 700 !important;} .font-italic{font-style: italic !important;} .text-white{color: #fff !important;} .text-primary{color: #7C7BAD !important;} a.text-primary:hover, a.text-primary:focus{color: #5f5e97 !important;} .text-secondary{color: #fff !important;} a.text-secondary:hover, a.text-secondary:focus{color: #e6e5e5 !important;} .text-success{color: #28a745 !important;} a.text-success:hover, a.text-success:focus{color: #1e7e34 !important;} .text-info{color: #17a2b8 !important;} a.text-info:hover, a.text-info:focus{color: #117a8b !important;} .text-warning{color: #ffc107 !important;} a.text-warning:hover, a.text-warning:focus{color: #d39e00 !important;} .text-danger, .oe_import .oe_import_error_report .oe_import_report.text-error{color: #dc3545 !important;} a.text-danger:hover, .oe_import .oe_import_error_report a.oe_import_report.text-error:hover, a.text-danger:focus, .oe_import .oe_import_error_report a.oe_import_report.text-error:focus{color: #bd2130 !important;} .text-light{color: #f8f9fa !important;} a.text-light:hover, a.text-light:focus{color: #dae0e5 !important;} .text-dark{color: #343a40 !important;} a.text-dark:hover, a.text-dark:focus{color: #1d2124 !important;} .text-alpha{color: #00A09D !important;} a.text-alpha:hover, a.text-alpha:focus{color: #006d6b !important;} .text-beta{color: #875A7B !important;} a.text-beta:hover, a.text-beta:focus{color: #68465f !important;} .text-gamma{color: #5C5B80 !important;} a.text-gamma:hover, a.text-gamma:focus{color: #474662 !important;} .text-delta{color: #5B899E !important;} a.text-delta:hover, a.text-delta:focus{color: #486d7e !important;} .text-epsilon{color: #E46F78 !important;} a.text-epsilon:hover, a.text-epsilon:focus{color: #dc4450 !important;} .text-body{color: #4c4c4c !important;} .text-muted{color: #adb5bd !important;} .text-black-50{color: rgba(0, 0, 0, 0.5) !important;} .text-white-50{color: rgba(255, 255, 255, 0.5) !important;} .text-hide{font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0;} .visible{visibility: visible !important;} .invisible{visibility: hidden !important;} @media print{*, *::before, *::after{text-shadow: none !important; box-shadow: none !important;}a:not(.btn){text-decoration: underline;}abbr[title]::after{content: " (" attr(title) ")";}pre{white-space: pre-wrap !important;}pre, blockquote{border: 1px solid #adb5bd; page-break-inside: avoid;}thead{display: table-header-group;}tr, img{page-break-inside: avoid;}p, h2, h3{orphans: 3; widows: 3;}h2, h3{page-break-after: avoid;}@page{size: a3;}body{min-width: 992px !important;}.container{min-width: 992px !important;}.navbar{display: none;}.badge{border: 1px solid #000;}.table{border-collapse: collapse !important;}.table td, .table th{background-color: #fff !important;}.table-bordered th, .table-bordered td{border: 1px solid #dee2e6 !important;}.table-dark{color: inherit;}.table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody{border-color: #dee2e6;}.table .thead-dark th{color: inherit; border-color: #dee2e6;}} \n/* /web/static/src/scss/bootstrap_review.scss defined in bundle 'web.assets_backend' */\n .alert{clear: both;} \n/* /base/static/src/css/modules.css defined in bundle 'web.assets_backend' */\n .oe_module_icon{width: 70px; height: 70px; float: left;} .oe_module_desc{font-size: 13px;} .oe_module_icon + .oe_module_desc{padding-left: 80px;} .o_modules_kanban.o_kanban_view .o_kanban_record .o_dropdown_kanban{visibility: visible; opacity: 0.5;} .o_modules_kanban.o_kanban_view .o_kanban_record:hover .o_dropdown_kanban, .o_modules_kanban.o_kanban_view .o_kanban_record .o_dropdown_kanban.show{opacity: 1;} .oe_module_name > span{color: #999999; min-height: 26px; line-height: 1.1; display: block;} .oe_module_desc p{margin: 3px 0 3px;} .oe_module_desc > h4{margin-right: 20px; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top;} .oe_module_desc{min-width: 0;} .o_module_form.o_form_view .oe_avatar > img{border: none; box-shadow: none; max-width: 70px; max-height: 70px;} \n/* /web/static/src/scss/webclient_extra.scss defined in bundle 'web.assets_backend' */\n [type="text"], [type="password"], [type="number"], textarea, select{width: 100%; display: block; outline: none;} .o_input{border: 1px solid #ccc; border-radius: 3px; padding: 2px 4px; color: #1f1f1f;} .o_input .o_input{border: none !important; padding: 0;} select{background: white;} .o_loading{background-color: #7C7BAD; color: white; padding: 4px;} #oe_main_menu_navbar .oe_user_menu_placeholder .o_user_menu .oe_topbar_name{display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top; max-width: 150px;} .o_rtl .navbar-right{padding: 0;} .btn-secondary{border-color: #dee2e6;} \n/* /web/static/src/scss/webclient_layout.scss defined in bundle 'web.assets_backend' */\n html{height: 100%;} html .o_web_client{height: 100%; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap;} html .o_web_client > .o_main{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: flex; min-height: 0; height: 100%;} html .o_web_client > .o_main .o_main_content{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap;} html .o_web_client > .o_main .o_main_content .o_control_panel{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} html .o_web_client > .o_main .o_main_content .o_content{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; height: 100%; overflow: auto; position: relative;} html .o_web_client > .o_main .o_main_content .o_content > .o_view_controller{position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: 100%;} html .o_web_client.o_fullscreen .o_main_navbar{display: none;} html .o_web_client .o_main_navbar{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} html .o_web_client .o_control_panel{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} html .o_web_client .o_content{direction: ltr; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; position: relative;} html .o_web_client .o_content > .o_view_controller{position: absolute; top: 0; right: 0; bottom: 0; left: 0; height: 100%; direction: ltr;} html .o_loading{position: fixed; bottom: 0; right: 0; z-index: 1051;} @media print{html .o_web_client .o_main_navbar{display: none;}html .o_web_client .o_content{position: static; overflow: visible; height: auto;}} \n/* /web/static/src/scss/webclient.scss defined in bundle 'web.assets_backend' */\n :root{font-size: 12px;} .o_web_client{direction: ltr; position: relative; background-color: #f9f9f9;} .o_notification_manager{width: 300px; max-width: 100%; position: absolute; top: 2.625rem; left: auto; bottom: auto; right: 0; z-index: 1100;} .o_notification_manager .o_notification{padding: 0; margin: 5px 0 0 0; opacity: 0; background-color: #FCFBEA; box-shadow: 0px 0px 5px 1px #4c4c4c; position: relative;} .o_notification_manager .o_notification .o_close{position: absolute; top: 5px; left: auto; bottom: auto; right: 5px; color: rgba(0, 0, 0, 0.3); text-decoration: none;} .o_notification_manager .o_notification .o_notification_title{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding: 10px 10px 10px 20px; font-weight: bold;} .o_notification_manager .o_notification .o_notification_title .o_icon{display: inline-block; margin-right: 20px; color: rgba(0, 0, 0, 0.3);} .o_notification_manager .o_notification .o_notification_content{padding: 10px;} .o_notification_manager .o_notification.o_error{color: white; background-color: #F16567;} .o_icon_button{background-color: transparent; border: 0; padding: 0; outline: none;} div.o_boolean_toggle.custom-control.custom-checkbox{display: inline-block; padding-left: 2.6875rem;} div.o_boolean_toggle.custom-control.custom-checkbox > label.custom-control-label::before, div.o_boolean_toggle.custom-control.custom-checkbox > label.custom-control-label::after{content: ""; top: 0; left: -2.6875rem;} div.o_boolean_toggle.custom-control.custom-checkbox > label.custom-control-label::before{width: 2.4375rem; height: 100%; background-color: #a0a0a0 !important; border-radius: 100px; outline: none !important;} div.o_boolean_toggle.custom-control.custom-checkbox > label.custom-control-label::after{transform: translate(0.325rem, 0.325rem); width: 12px; height: 12px; border-radius: 100px; background-color: #fff; cursor: pointer;} div.o_boolean_toggle.custom-control.custom-checkbox > input.custom-control-input:checked + label.custom-control-label::before{background-color: #7C7BAD !important;} div.o_boolean_toggle.custom-control.custom-checkbox > input.custom-control-input:checked + label.custom-control-label::after{transform: translate(1.1375rem, 0.325rem); background-image: none;} .bg-success-full{background-color: #28a745;} .bg-warning-full{background-color: #ffc107;} .bg-danger-full{background-color: #dc3545;} .bg-info-full{background-color: #17a2b8;} .o_web_accesskey_overlay{font-family: "Noto", "Lucida Grande", Helvetica, Verdana, Arial, sans-serif; position: absolute; width: 100%; height: 100%; left: 0; top: 0; background-color: rgba(0, 0, 0, 0.6); color: #FFFFFF; justify-content: center; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center;} .text-bf{font-weight: bold;} .text-it{font-style: italic;} .badge{margin: 1px 2px 1px 0;} .btn-link{font-weight: 400;} .btn-link.btn-secondary{text-transform: none; color: #4c4c4c;} .btn-link.btn-secondary:hover, .btn-link.btn-secondary:focus, .btn-link.btn-secondary.focus{color: inherit;} .btn-link.btn-secondary, .btn-link.btn-secondary:hover, .btn-link.btn-secondary:focus, .btn-link.btn-secondary:active, .btn-link.btn-secondary.active{border-color: transparent; background-color: transparent;} .btn-link.btn-secondary.text-muted, .btn-link.btn-secondary .text-muted{opacity: 0.5; color: #adb5bd;} .btn-link.btn-secondary.text-muted:hover, .btn-link.btn-secondary.text-muted:focus, .btn-link.btn-secondary.text-muted.focus, .btn-link.btn-secondary .text-muted:hover, .btn-link.btn-secondary .text-muted:focus, .btn-link.btn-secondary .text-muted.focus{opacity: 1;} .btn-link.btn-secondary.text-muted:hover, .btn-link.btn-secondary.text-muted:focus, .btn-link.btn-secondary.text-muted.focus, .btn-link.btn-secondary .text-muted:hover, .btn-link.btn-secondary .text-muted:focus, .btn-link.btn-secondary .text-muted.focus{color: inherit;} .btn-link.btn-success, .btn-link.text-success{text-transform: none; color: #4c4c4c;} .btn-link.btn-success:hover, .btn-link.btn-success:focus, .btn-link.btn-success.focus, .btn-link.text-success:hover, .btn-link.text-success:focus, .btn-link.text-success.focus{color: #28a745;} .btn-link.btn-success, .btn-link.btn-success:hover, .btn-link.btn-success:focus, .btn-link.btn-success:active, .btn-link.btn-success.active, .btn-link.text-success, .btn-link.text-success:hover, .btn-link.text-success:focus, .btn-link.text-success:active, .btn-link.text-success.active{border-color: transparent; background-color: transparent;} .btn-link.btn-success.text-muted, .btn-link.btn-success .text-muted, .btn-link.text-success.text-muted, .btn-link.text-success .text-muted{opacity: 0.5; color: #adb5bd;} .btn-link.btn-success.text-muted:hover, .btn-link.btn-success.text-muted:focus, .btn-link.btn-success.text-muted.focus, .btn-link.btn-success .text-muted:hover, .btn-link.btn-success .text-muted:focus, .btn-link.btn-success .text-muted.focus, .btn-link.text-success.text-muted:hover, .btn-link.text-success.text-muted:focus, .btn-link.text-success.text-muted.focus, .btn-link.text-success .text-muted:hover, .btn-link.text-success .text-muted:focus, .btn-link.text-success .text-muted.focus{opacity: 1;} .btn-link.btn-success.text-muted:hover, .btn-link.btn-success.text-muted:focus, .btn-link.btn-success.text-muted.focus, .btn-link.btn-success .text-muted:hover, .btn-link.btn-success .text-muted:focus, .btn-link.btn-success .text-muted.focus, .btn-link.text-success.text-muted:hover, .btn-link.text-success.text-muted:focus, .btn-link.text-success.text-muted.focus, .btn-link.text-success .text-muted:hover, .btn-link.text-success .text-muted:focus, .btn-link.text-success .text-muted.focus{color: #28a745;} .btn-link.btn-warning, .btn-link.text-warning{text-transform: none; color: #4c4c4c;} .btn-link.btn-warning:hover, .btn-link.btn-warning:focus, .btn-link.btn-warning.focus, .btn-link.text-warning:hover, .btn-link.text-warning:focus, .btn-link.text-warning.focus{color: #ffc107;} .btn-link.btn-warning, .btn-link.btn-warning:hover, .btn-link.btn-warning:focus, .btn-link.btn-warning:active, .btn-link.btn-warning.active, .btn-link.text-warning, .btn-link.text-warning:hover, .btn-link.text-warning:focus, .btn-link.text-warning:active, .btn-link.text-warning.active{border-color: transparent; background-color: transparent;} .btn-link.btn-warning.text-muted, .btn-link.btn-warning .text-muted, .btn-link.text-warning.text-muted, .btn-link.text-warning .text-muted{opacity: 0.5; color: #adb5bd;} .btn-link.btn-warning.text-muted:hover, .btn-link.btn-warning.text-muted:focus, .btn-link.btn-warning.text-muted.focus, .btn-link.btn-warning .text-muted:hover, .btn-link.btn-warning .text-muted:focus, .btn-link.btn-warning .text-muted.focus, .btn-link.text-warning.text-muted:hover, .btn-link.text-warning.text-muted:focus, .btn-link.text-warning.text-muted.focus, .btn-link.text-warning .text-muted:hover, .btn-link.text-warning .text-muted:focus, .btn-link.text-warning .text-muted.focus{opacity: 1;} .btn-link.btn-warning.text-muted:hover, .btn-link.btn-warning.text-muted:focus, .btn-link.btn-warning.text-muted.focus, .btn-link.btn-warning .text-muted:hover, .btn-link.btn-warning .text-muted:focus, .btn-link.btn-warning .text-muted.focus, .btn-link.text-warning.text-muted:hover, .btn-link.text-warning.text-muted:focus, .btn-link.text-warning.text-muted.focus, .btn-link.text-warning .text-muted:hover, .btn-link.text-warning .text-muted:focus, .btn-link.text-warning .text-muted.focus{color: #ffc107;} .btn-link.btn-danger, .btn-link.text-danger, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error{text-transform: none; color: #4c4c4c;} .btn-link.btn-danger:hover, .btn-link.btn-danger:focus, .btn-link.btn-danger.focus, .btn-link.text-danger:hover, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error:hover, .btn-link.text-danger:focus, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error:focus, .btn-link.text-danger.focus, .oe_import .oe_import_error_report .btn-link.focus.oe_import_report.text-error{color: #dc3545;} .btn-link.btn-danger, .btn-link.btn-danger:hover, .btn-link.btn-danger:focus, .btn-link.btn-danger:active, .btn-link.btn-danger.active, .btn-link.text-danger, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error, .btn-link.text-danger:hover, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error:hover, .btn-link.text-danger:focus, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error:focus, .btn-link.text-danger:active, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error:active, .btn-link.text-danger.active, .oe_import .oe_import_error_report .btn-link.active.oe_import_report.text-error{border-color: transparent; background-color: transparent;} .btn-link.btn-danger.text-muted, .btn-link.btn-danger .text-muted, .btn-link.text-danger.text-muted, .oe_import .oe_import_error_report .btn-link.text-muted.oe_import_report.text-error, .btn-link.text-danger .text-muted, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted{opacity: 0.5; color: #adb5bd;} .btn-link.btn-danger.text-muted:hover, .btn-link.btn-danger.text-muted:focus, .btn-link.btn-danger.text-muted.focus, .btn-link.btn-danger .text-muted:hover, .btn-link.btn-danger .text-muted:focus, .btn-link.btn-danger .text-muted.focus, .btn-link.text-danger.text-muted:hover, .oe_import .oe_import_error_report .btn-link.text-muted.oe_import_report.text-error:hover, .btn-link.text-danger.text-muted:focus, .oe_import .oe_import_error_report .btn-link.text-muted.oe_import_report.text-error:focus, .btn-link.text-danger.text-muted.focus, .oe_import .oe_import_error_report .btn-link.text-muted.focus.oe_import_report.text-error, .btn-link.text-danger .text-muted:hover, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted:hover, .btn-link.text-danger .text-muted:focus, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted:focus, .btn-link.text-danger .text-muted.focus, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted.focus{opacity: 1;} .btn-link.btn-danger.text-muted:hover, .btn-link.btn-danger.text-muted:focus, .btn-link.btn-danger.text-muted.focus, .btn-link.btn-danger .text-muted:hover, .btn-link.btn-danger .text-muted:focus, .btn-link.btn-danger .text-muted.focus, .btn-link.text-danger.text-muted:hover, .oe_import .oe_import_error_report .btn-link.text-muted.oe_import_report.text-error:hover, .btn-link.text-danger.text-muted:focus, .oe_import .oe_import_error_report .btn-link.text-muted.oe_import_report.text-error:focus, .btn-link.text-danger.text-muted.focus, .oe_import .oe_import_error_report .btn-link.text-muted.focus.oe_import_report.text-error, .btn-link.text-danger .text-muted:hover, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted:hover, .btn-link.text-danger .text-muted:focus, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted:focus, .btn-link.text-danger .text-muted.focus, .oe_import .oe_import_error_report .btn-link.oe_import_report.text-error .text-muted.focus{color: #dc3545;} .btn-link.btn-info, .btn-link.text-info{text-transform: none; color: #4c4c4c;} .btn-link.btn-info:hover, .btn-link.btn-info:focus, .btn-link.btn-info.focus, .btn-link.text-info:hover, .btn-link.text-info:focus, .btn-link.text-info.focus{color: #0c525d;} .btn-link.btn-info, .btn-link.btn-info:hover, .btn-link.btn-info:focus, .btn-link.btn-info:active, .btn-link.btn-info.active, .btn-link.text-info, .btn-link.text-info:hover, .btn-link.text-info:focus, .btn-link.text-info:active, .btn-link.text-info.active{border-color: transparent; background-color: transparent;} .btn-link.btn-info.text-muted, .btn-link.btn-info .text-muted, .btn-link.text-info.text-muted, .btn-link.text-info .text-muted{opacity: 0.5; color: #adb5bd;} .btn-link.btn-info.text-muted:hover, .btn-link.btn-info.text-muted:focus, .btn-link.btn-info.text-muted.focus, .btn-link.btn-info .text-muted:hover, .btn-link.btn-info .text-muted:focus, .btn-link.btn-info .text-muted.focus, .btn-link.text-info.text-muted:hover, .btn-link.text-info.text-muted:focus, .btn-link.text-info.text-muted.focus, .btn-link.text-info .text-muted:hover, .btn-link.text-info .text-muted:focus, .btn-link.text-info .text-muted.focus{opacity: 1;} .btn-link.btn-info.text-muted:hover, .btn-link.btn-info.text-muted:focus, .btn-link.btn-info.text-muted.focus, .btn-link.btn-info .text-muted:hover, .btn-link.btn-info .text-muted:focus, .btn-link.btn-info .text-muted.focus, .btn-link.text-info.text-muted:hover, .btn-link.text-info.text-muted:focus, .btn-link.text-info.text-muted.focus, .btn-link.text-info .text-muted:hover, .btn-link.text-info .text-muted:focus, .btn-link.text-info .text-muted.focus{color: #0c525d;} @media print{.table-responsive{overflow-x: initial;}} \n/* /web/static/src/scss/domain_selector.scss defined in bundle 'web.assets_backend' */\n .o_domain_node{position: relative; transition: margin-bottom .05s ease .05s;} .o_domain_node .o_domain_selector_row{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; min-height: 35px;} .o_domain_node .o_domain_selector_row > *{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_domain_node .o_domain_selector_row > .o_domain_node_control_panel{position: absolute; top: 0; left: auto; bottom: 0; right: -60px;} .o_domain_node .o_domain_selector_row > .o_domain_node_control_panel > button{float: left; width: 30px; height: 100%; padding: 0; background-color: transparent; font-size: 16px; opacity: 0.2; cursor: pointer;} .o_domain_node .o_domain_selector_row > .o_domain_node_control_panel > button.o_domain_delete_node_button{font-size: 12px; padding-left: 5px;} .o_domain_node .o_domain_selector_row > .o_domain_node_control_panel > button.o_domain_delete_node_button:hover{color: #dc3545;} .o_domain_node.o_domain_tree > .o_domain_tree_header{position: relative;} .o_domain_node.o_domain_tree > .o_domain_tree_header .o_domain_tree_operator_caret::after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999);} .o_domain_node.o_domain_tree > .o_domain_node_children_container{padding-left: 32px;} .o_domain_node.o_domain_tree.o_domain_selector > .o_domain_tree_header{min-height: 22px;} .o_domain_node.o_domain_tree.o_domain_selector > .o_domain_node_children_container{padding-left: 0;} .o_domain_node.o_domain_tree.o_domain_selector.o_edit_mode > .o_domain_node_children_container{padding-right: 60px;} .o_domain_node.o_domain_tree.o_domain_selector > .o_domain_debug_container{display: block; margin-top: 16px; padding: 8px 10px 12px; background: #212529; color: rgba(255, 255, 255, 0.5); font-family: monospace; font-weight: normal;} .o_domain_node.o_domain_tree.o_domain_selector > .o_domain_debug_container > input{border: none; padding-top: 8px; background: transparent; color: white;} .o_domain_node.o_domain_leaf.o_read_mode{display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; margin-right: 4px;} .o_domain_node.o_domain_leaf > .o_domain_leaf_info{background: #e2e2e0; border: 1px solid #c9c9c6; padding: 2px 4px;} .o_domain_node.o_domain_leaf > .o_domain_leaf_info > .o_field_selector{float: left; margin-right: 4px;} .o_domain_node.o_domain_leaf > .o_domain_leaf_info > .o_field_selector > .o_field_selector_value > .o_field_selector_chain_part{border: none; font-weight: 700;} .o_domain_node.o_domain_leaf > .o_domain_leaf_info .o_domain_leaf_operator{font-style: italic;} .o_domain_node.o_domain_leaf > .o_domain_leaf_info .o_domain_leaf_value{font-weight: 700;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition{display: -webkit-box; display: -webkit-flex; display: flex; width: 100%; padding: 4px 30px 4px 0;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > *{flex: 1 1 15%; width: auto; background-color: white;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > *:first-child{flex: 0 1 55%;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > *:last-child{flex: 1 1 25%;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > * + *{margin-left: 4px;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > * input, .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > * select, .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > * .o_datepicker, .o_domain_node.o_domain_leaf > .o_domain_leaf_edition > * .o_datepicker_input{height: 100%;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition .o_domain_leaf_value_tags{display: -webkit-box; display: -webkit-flex; display: flex;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition .o_domain_leaf_value_tags > *{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition .o_domain_leaf_value_tags > input{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; width: 0; min-width: 50px;} .o_domain_node.o_domain_leaf > .o_domain_leaf_edition .o_domain_leaf_value_tags .o_domain_leaf_value_remove_tag_button{cursor: pointer;} .o_domain_node::after{content: ""; position: absolute; top: 100%; left: 0; bottom: auto; right: 0; display: block; height: 15px; max-height: 0; background-image: linear-gradient(45deg, rgba(124, 123, 173, 0.4), rgba(124, 123, 173, 0.1)); transition: max-height .05s ease .05s;} .o_domain_node.o_hover_btns .o_domain_node_control_panel > button, .o_domain_node.o_hover_add_node .o_domain_node_control_panel > button{opacity: 0.5;} .o_domain_node.o_hover_btns .o_domain_node_control_panel > button:hover, .o_domain_node.o_hover_add_node .o_domain_node_control_panel > button:hover{opacity: 1.0;} .o_domain_node.o_hover_btns{background: #f7f7f7;} .o_domain_node.o_hover_add_node{margin-bottom: 15px; transition: margin .15s ease .5s;} .o_domain_node.o_hover_add_node::after{max-height: 15px; transition: max-height .15s ease .5s;} .o_domain_node.o_hover_add_node.o_hover_add_inset_node::after{left: 32px;} \n/* /web/static/src/scss/model_field_selector.scss defined in bundle 'web.assets_backend' */\n .o_field_selector{position: relative;} .o_field_selector > .o_field_selector_value{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; align-items: center; height: 100%; min-height: 20px;} .o_field_selector > .o_field_selector_value:active, .o_field_selector > .o_field_selector_value:focus, .o_field_selector > .o_field_selector_value:active:focus{outline: none;} .o_field_selector > .o_field_selector_value > .o_field_selector_chain_part{padding: 0px 1px; border: 1px solid #c9c9c6; background: #e2e2e0; margin-bottom: 1px;} .o_field_selector > .o_field_selector_value > i{align-self: center; margin: 0 2px; font-size: 10px;} .o_field_selector > .o_field_selector_controls{position: absolute; top: 0; left: auto; bottom: 1px; right: 0; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; cursor: pointer;} .o_field_selector.o_edit_mode > .o_field_selector_controls::after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999);} .o_field_selector.o_edit_mode > .o_field_selector_popover{position: absolute; top: 100%; left: 0; bottom: auto; right: auto; z-index: 1051; width: 265px; margin-top: 7px; background: white; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);} .o_field_selector.o_edit_mode > .o_field_selector_popover:focus{outline: none;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header{color: white; background: #7C7BAD; font-weight: bold; padding: 5px 0 5px 0.4em;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header .o_field_selector_title{width: 100%; display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top; padding: 0px 35px; text-align: center;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header .o_field_selector_search{padding-right: 0.4rem;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header .o_field_selector_popover_option{position: absolute; top: 0; left: auto; bottom: auto; right: auto; padding: 7px 8px 8px 6px;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header .o_field_selector_popover_option.o_prev_page{left: 0; border-right: 1px solid #5f5e97;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header .o_field_selector_popover_option.o_field_selector_close{right: 0;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header .o_field_selector_popover_option:hover{background: #5f5e97;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_header:before{position: absolute; top: -7px; left: 7px; bottom: auto; right: auto; content: ""; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #7C7BAD;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_body .o_field_selector_page{position: relative; max-height: 320px; overflow: auto; margin: 0; padding: 0;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_body .o_field_selector_page > .o_field_selector_item{list-style: none; position: relative; padding: 5px 0 5px 0.4em; cursor: pointer; font-family: Arial; font-size: 13px; color: #444; border-bottom: 1px solid #eee;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_body .o_field_selector_page > .o_field_selector_item.active{background: #f5f5f5;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_body .o_field_selector_page > .o_field_selector_item .o_field_selector_item_title{font-size: 12px;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_body .o_field_selector_page > .o_field_selector_item .o_field_selector_relation_icon{position: absolute; top: 0; left: auto; bottom: 0; right: 0; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; padding: 10px;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_footer{background: #7C7BAD; padding: 5px 0.4em;} .o_field_selector.o_edit_mode > .o_field_selector_popover .o_field_selector_popover_footer > input{width: 100%;} \n/* /web/static/src/scss/progress_bar.scss defined in bundle 'web.assets_backend' */\n .o_progressbar > div{display: inline-block;} .o_progressbar .o_progressbar_title{white-space: nowrap; padding-right: 10px;} .o_progressbar .o_progress{width: 100px; height: 15px; vertical-align: middle; border: 1px solid white; overflow: hidden; background-color: white;} .o_progressbar .o_progress.o_progress_overflow{background-color: #f0eeee;} .o_progressbar .o_progress .o_progressbar_complete{background-color: #7C7BAD; height: 100%;} .o_progressbar .o_progressbar_value{width: 100px; white-space: nowrap; padding-left: 10px;} \n/* /web/static/src/scss/dropdown.scss defined in bundle 'web.assets_backend' */\n .ui-autocomplete .ui-menu-item > a, .show .dropdown-menu .dropdown-item, .show .dropdown-menu .dropdown-header, .navbar-nav .show .dropdown-menu .dropdown-item, .navbar-nav .show .dropdown-menu .dropdown-header{padding: 3px 20px;} .ui-autocomplete{background-image: none; background-color: #fff; border: 1px solid #dee2e6; font-size: 1.08333333rem; padding: 5px 0px; box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.176);} .ui-autocomplete .ui-menu-item{padding: 0;} .ui-autocomplete .ui-menu-item > a{display: block; color: #4c4c4c;} .ui-autocomplete .ui-menu-item.ui-state-focus{background-image: none; background-color: #7C7BAD; border: none; font-weight: normal; margin: 0;} .ui-autocomplete .ui-menu-item.o_m2o_dropdown_option{padding-left: 20px;} .ui-autocomplete .ui-menu-item.o_m2o_dropdown_option > a{color: #7C7BAD;} .dropdown-menu{box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.25);} .dropdown-menu .o_inline_dropdown{position: relative;} .dropdown-menu .o_inline_dropdown > .dropdown-menu{top: 0; left: 100%;} .dropdown-menu .o_inline_dropdown:hover .dropdown-menu{display: block;} .show .dropdown-menu > *{position: relative;} .show .dropdown-menu .dropdown-item:focus, .show .dropdown-menu .dropdown-item:active, .show .dropdown-menu .dropdown-item:focus:active{outline: none;} .show .dropdown-menu .dropdown-header{color: #4c4c4c;} @media (max-width: 767.98px){.show .dropdown-menu .dropdown-header{color: white; text-decoration: underline;}} .navbar-nav .show .dropdown-menu > *{position: relative;} .navbar-nav .show .dropdown-menu .dropdown-item:focus, .navbar-nav .show .dropdown-menu .dropdown-item:active, .navbar-nav .show .dropdown-menu .dropdown-item:focus:active{outline: none;} .navbar-nav .show .dropdown-menu .dropdown-header{color: #4c4c4c;} @media (max-width: 767.98px){.navbar-nav .show .dropdown-menu .dropdown-header{color: white; text-decoration: underline;}} .o_rtl .dropdown-menu{left: auto;} \n/* /web/static/src/scss/dropdown_extra.scss defined in bundle 'web.assets_backend' */\n .ui-autocomplete .ui-menu-item.ui-state-focus{background-color: #7C7BAD;} .ui-autocomplete .ui-menu-item.o_m2o_dropdown_option > a{color: #7C7BAD;} .ui-autocomplete .ui-menu-item.ui-state-focus > a, .ui-autocomplete .ui-menu-item.ui-state-focus.o_m2o_dropdown_option > a{color: white;} .oe_dropdown, .oe_dropdown_toggle{position: relative; cursor: pointer;} .oe_dropdown_toggle{color: #2B2B2B; font-weight: normal;} .oe_dropdown_menu{display: none; position: absolute; z-index: 3; margin: 0; border: 1px solid #afafb6; background: white; padding: 4px 0; min-width: 140px; text-align: left; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);} .oe_dropdown_menu.oe_opened{display: block;} .oe_dropdown_menu > li{list-style-type: none; float: none; display: block; position: relative; margin: 0; padding: 2px 8px;} .oe_dropdown_menu > li:hover{background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6); box-shadow: none;} .oe_dropdown_menu > li > a{white-space: nowrap; display: block; color: #4c4c4c; text-decoration: none;} .oe_dropdown_menu > li > a:hover{text-decoration: none;} \n/* /web/static/src/scss/tooltip.scss defined in bundle 'web.assets_backend' */\n .tooltip.show{opacity: 1;} .tooltip .tooltip-inner{max-width: 300px; max-width: 100vw; background-color: black; color: white; border-radius: 3px; box-shadow: 0px 0px 1px 1px #f0eeee; padding: 5px; text-align: left;} .tooltip .tooltip-inner .oe_tooltip_string{background-color: #7C7BAD; color: white; font-weight: bold; padding: 5px;} .tooltip .tooltip-inner .oe_tooltip_help{white-space: pre-line; padding: 5px 5px 0;} .tooltip .tooltip-inner .oe_tooltip_technical{padding: 0; margin: 5px 0 5px 20px; list-style-type: circle;} .tooltip .tooltip-inner .oe_tooltip_technical .oe_tooltip_technical_title{font-weight: bold;} .tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before{border-top-color: black !important;} .tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{border-bottom-color: black !important;} .tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before{border-left-color: black !important;} .tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before{border-right-color: black !important;} \n/* /web/static/src/scss/debug_manager.scss defined in bundle 'web.assets_backend' */\n .modal .o_debug_manager{position: relative; list-style: none; margin: 2px 10px 2px 0; float: left;} \n/* /web/static/src/scss/control_panel.scss defined in bundle 'web.assets_backend' */\n .o_control_panel{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; border-bottom: 1px solid #cccccc; padding-top: 10px; padding-right: 16px; padding-bottom: 10px; padding-left: 16px; background-color: white;} .o_control_panel > .breadcrumb{width: 50%; font-size: 18px;} .o_control_panel > .breadcrumb > li{display: inline-block; max-width: 90%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top;} .o_control_panel > .breadcrumb > li > a{cursor: pointer;} .o_control_panel.o_breadcrumb_full > .breadcrumb{width: 100%;} .o_control_panel > .o_cp_searchview{width: 50%; min-height: 30px;} .o_control_panel .btn.o_enable_searchview{margin-left: 2%; padding: 0px; background: white;} .o_control_panel > .o_cp_left{display: -webkit-box; display: -webkit-flex; display: flex; justify-content: space-between; width: 50%; margin-top: 5px;} .o_control_panel > .o_cp_left > .o_cp_sidebar{padding-right: 10px;} .o_control_panel > .o_cp_left > .o_cp_sidebar .o_hidden_input_file{position: relative;} .o_control_panel > .o_cp_left > .o_cp_sidebar .o_hidden_input_file input.o_input_file{position: absolute; top: 1px; opacity: 0; width: 100%; height: 26px;} .o_control_panel > .o_cp_left > .o_cp_sidebar .o_hidden_input_file .o_form_binary_form span{padding: 3px 25px; color: #7C7BAD;} .o_control_panel > .o_cp_left > .o_cp_sidebar .o_hidden_input_file .o_form_binary_form:hover{background-color: rgba(0, 0, 0, 0.04);} .o_control_panel > .o_cp_left > .o_cp_sidebar .o_sidebar_delete_attachment{padding: 0px; position: absolute; top: 5px; right: 10px;} .o_control_panel > .o_cp_right{display: -webkit-box; display: -webkit-flex; display: flex; width: 50%; margin-top: 5px;} .o_control_panel > .o_cp_right > .o_cp_pager{margin: auto 0 auto auto; padding-left: 5px; text-align: center; user-select: none;} .o_control_panel > .o_cp_right > .o_cp_pager > div{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center;} .o_control_panel > .o_cp_right > .o_cp_pager .o_pager_counter{margin-right: 5px;} .o_control_panel > .o_cp_right > .o_cp_switch_buttons > .btn:first-child{margin-left: 16px;} @media (max-width: 767.98px){.o_control_panel > .o_cp_right > .o_cp_switch_buttons > .btn:first-child{margin-left: 10px;}} .o_x2m_control_panel{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap;} .o_x2m_control_panel .o_cp_buttons{display: -webkit-box; display: -webkit-flex; display: flex; margin-right: auto;} .o_x2m_control_panel .o_cp_buttons > div{margin-top: 5px;} .o_x2m_control_panel .o_cp_buttons .o-kanban-button-new{margin-left: 8px;} .o_x2m_control_panel .o_cp_pager{display: -webkit-box; display: -webkit-flex; display: flex; margin-left: auto;} .o_pager_value > input{display: inline-block; width: 60px; text-align: right;} .o_pager_value > input:focus{outline: none;} @media print{.o_control_panel{display: none;}} \n/* /web/static/src/scss/fields.scss defined in bundle 'web.assets_backend' */\n .o_field_invalid.o_input, .o_field_invalid .o_input, .o_field_invalid.o_form_label{color: #dc3545 !important; border-color: #dc3545 !important;} .o_field_empty{display: none !important;} .o_field_number{white-space: nowrap;} .o_field_widget, .o_field_widget input.o_input{display: inline-block; text-align: inherit;} .o_field_widget.note-editor, .o_field_widget.oe_form_field_html, .o_field_widget.oe_form_field_html_text, .o_field_widget.oe_form_field_text, .o_field_widget.o_field_domain, .o_field_widget.o_graph_linechart, .o_field_widget.o_graph_barchart{display: block;} .o_field_widget.o_field_many2one, .o_field_widget.o_field_radio, .o_field_widget.o_field_many2manytags, .o_field_widget.o_field_percent_pie, .o_field_widget.o_field_monetary, .o_field_widget.o_field_binary_file{display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex;} .o_field_widget.o_field_many2one > span, .o_field_widget.o_field_many2one > button, .o_field_widget.o_field_radio > span, .o_field_widget.o_field_radio > button, .o_field_widget.o_field_many2manytags > span, .o_field_widget.o_field_many2manytags > button, .o_field_widget.o_field_percent_pie > span, .o_field_widget.o_field_percent_pie > button, .o_field_widget.o_field_monetary > span, .o_field_widget.o_field_monetary > button, .o_field_widget.o_field_binary_file > span, .o_field_widget.o_field_binary_file > button{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_field_widget .o_input_dropdown{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; position: relative; width: 100%;} .o_field_widget .o_input_dropdown > input{height: 100%; padding-right: 15px; cursor: pointer;} .o_field_widget .o_input_dropdown > input::-ms-clear{display: none;} .o_field_widget .o_input_dropdown .o_dropdown_button{position: absolute; top: 0; left: auto; bottom: auto; right: 0; pointer-events: none;} .o_field_widget .o_input_dropdown .o_dropdown_button:after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999);} .o_field_widget.o_field_text, .o_field_widget.oe_form_field_text .oe_form_text_content{width: 100%; white-space: pre-wrap;} .o_field_widget.o_field_monetary.o_input{align-items: baseline;} .o_field_widget.o_field_monetary.o_input > input{width: 100px; -webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto;} .o_field_widget.o_field_many2manytags{-webkit-flex-flow: row wrap; flex-flow: row wrap; align-items: baseline;} .o_field_widget.o_field_many2manytags > .o_field_widget{flex: 1 0 100px; position: initial; max-width: 100%;} .o_field_widget.o_field_many2manytags .badge{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; border: 0; font-size: 12px; cursor: pointer; user-select: none;} .o_field_widget.o_field_many2manytags .badge a{color: inherit;} .o_field_widget.o_field_many2manytags .badge .o_badge_text{display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top; max-width: 200px; color: inherit;} .o_field_widget.o_field_many2manytags .badge .o_delete{color: inherit; cursor: pointer;} .o_field_widget.o_field_many2manytags .tagcolor_dropdown_menu{min-width: 150px; margin-right: 0px;} .o_field_widget.o_field_many2manytags .o_colorpicker > ul{max-width: 100%; padding: 3px 10px 3px 20px; white-space: normal;} .o_field_widget.o_field_many2manytags .o_colorpicker > ul > li{display: inline-block; margin: 5px 5px 0 0; border: 1px solid white; box-shadow: 0 0 0 1px #dee2e6;} .o_field_widget.o_field_many2manytags .o_colorpicker > ul > li > a{display: block;} .o_field_widget.o_field_many2manytags .o_colorpicker > ul > li > a::after{content: ""; display: block; width: 20px; height: 15px;} .o_field_widget.o_field_many2manytags .o_colorpicker > ul > li:last-of-type{box-shadow: 0 0 0 0px white; color: #4c4c4c;} .o_field_widget.o_field_many2manytags .o_colorpicker > ul li > .o_hide_in_kanban label{line-height: 1.5;} .o_field_widget.o_field_many2manytags .o_tag_color_0{background-color: white; color: #777777; box-shadow: inset 0 0 0 2px #777777;} .o_field_widget.o_field_many2manytags .o_tag_color_0::after{background-color: #777777;} .o_field_widget.o_field_many2manytags .o_tag_color_1, .o_field_widget.o_field_many2manytags .o_tag_color_1::after{background-color: #F06050; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_2, .o_field_widget.o_field_many2manytags .o_tag_color_2::after{background-color: #F4A460; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_3, .o_field_widget.o_field_many2manytags .o_tag_color_3::after{background-color: #F7CD1F; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_4, .o_field_widget.o_field_many2manytags .o_tag_color_4::after{background-color: #6CC1ED; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_5, .o_field_widget.o_field_many2manytags .o_tag_color_5::after{background-color: #814968; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_6, .o_field_widget.o_field_many2manytags .o_tag_color_6::after{background-color: #EB7E7F; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_7, .o_field_widget.o_field_many2manytags .o_tag_color_7::after{background-color: #2C8397; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_8, .o_field_widget.o_field_many2manytags .o_tag_color_8::after{background-color: #475577; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_9, .o_field_widget.o_field_many2manytags .o_tag_color_9::after{background-color: #D6145F; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_10, .o_field_widget.o_field_many2manytags .o_tag_color_10::after{background-color: #30C381; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_color_11, .o_field_widget.o_field_many2manytags .o_tag_color_11::after{background-color: #9365B8; color: #fff;} .o_field_widget.o_field_many2manytags .o_tag_error{box-shadow: inset 0 0 0 2px #FF0000;} .o_field_widget.o_field_many2manytags .o_tag_error .o_delete{color: #FF0000;} .o_field_widget.o_priority{display: inline-block; padding: 0; margin: 0; vertical-align: baseline;} .o_field_widget.o_priority > .o_priority_star{display: inline-block; font-size: 1.35em;} .o_field_widget.o_priority > .o_priority_star:hover, .o_field_widget.o_priority > .o_priority_star:focus{text-decoration: none; outline: none;} .o_field_widget.o_priority > .o_priority_star + .o_priority_star{padding-left: 5px;} .o_field_widget.o_priority > .o_priority_star.fa-star-o{color: #a8a8a8;} .o_field_widget.o_priority > .o_priority_star.fa-star{color: gold;} .o_field_widget.o_favorite i.fa{font-size: 16px;} .o_field_widget.o_favorite i.fa-star-o{color: #a8a8a8;} .o_field_widget.o_favorite i.fa-star-o:hover{color: gold;} .o_field_widget.o_favorite i.fa-star{color: gold;} .o_field_widget .fa.o_toggle_button_success{color: #28a745;} .o_field_widget.o_row_handle{cursor: ns-resize;} .o_field_widget.o_field_selection_badge .o_selection_badge{display: inline-block; margin: 0px 0px 4px 4px; padding: 1px 6px; color: #a8a8a8; border: 1px solid #dee2e6; cursor: pointer;} .o_field_widget.o_field_selection_badge .o_selection_badge.active{color: #7C7BAD; border-color: #7C7BAD;} .o_field_widget.o_field_selection_badge .o_selection_badge:hover:not(.active){color: #8796a4; border-color: #8796a4;} @media (max-width: 767.98px){.o_field_widget.o_field_radio{display: inline-block;}} .o_field_widget.o_field_radio .o_radio_input{outline: none;} .o_field_widget.o_field_radio .o_radio_item{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_field_widget.o_field_radio.o_horizontal .o_radio_item{margin-right: 10px;} .o_field_widget.o_field_radio.o_vertical{-webkit-flex-flow: column nowrap; flex-flow: column nowrap;} .o_field_widget.o_field_radio.o_vertical .o_radio_item{margin-bottom: 5px;} .o_field_widget.o_field_percent_pie{align-items: center;} .o_field_widget.o_field_percent_pie > .o_pie{position: relative; display: inline-block; vertical-align: middle; margin-right: 10px; border-radius: 100%; overflow: hidden; background-color: #7C7BAD;} .o_field_widget.o_field_percent_pie > .o_pie:after{content: " "; position: absolute; top: 0; left: auto; bottom: auto; right: 0; width: 100%; height: 100%; border-radius: 100%;} .o_field_widget.o_field_percent_pie > .o_pie .o_mask{position: absolute; top: 0; left: auto; bottom: auto; right: 0; transform-origin: 0; width: 50%; height: 100%; background-color: white;} .o_field_widget.o_field_percent_pie > .o_pie .o_mask.o_full{background-color: inherit;} .o_field_widget.o_field_percent_pie > .o_pie .o_pie_value{display: -webkit-box; display: -webkit-flex; display: flex; justify-content: center; align-items: center; border-radius: 100%; font-weight: 700; color: #7C7BAD;} .o_field_widget.o_ace_view_editor{width: 100%;} .o_field_widget.o_ace_view_editor .ace-view-editor{height: 300px; padding: 0 1em;} .o_field_widget.o_field_image{position: relative;} .o_field_widget.o_field_image .o_form_image_controls{position: absolute; top: 0; left: auto; bottom: auto; right: 0; width: 100%; color: white; background-color: #7C7BAD; opacity: 0; transition: opacity ease 400ms;} .o_field_widget.o_field_image .o_form_image_controls > button.fa{border: none; background-color: transparent;} .o_field_widget.o_field_image .o_form_image_controls > .fa{margin: 5px; cursor: pointer;} @media (max-width: 474.98px){.o_field_widget.o_field_image .o_form_image_controls{position: initial; opacity: 1;}.o_field_widget.o_field_image .o_form_image_controls > .fa{width: 50%; padding: 6px; margin: 0px; text-align: center;}.o_field_widget.o_field_image .o_form_image_controls > .fa.o_select_file_button{background: #7C7BAD;}.o_field_widget.o_field_image .o_form_image_controls > .fa.o_clear_file_button{background: #dc3545;}} .o_field_widget.o_field_image:hover .o_form_image_controls{opacity: 0.8;} .o_field_widget.o_field_image.o_field_invalid > img{border: 1px solid #dc3545;} .o_field_widget .o_form_binary_progress, .o_field_widget .o_hidden_input_file .o_input_file{display: none;} .o_field_widget.o_field_domain > .o_field_domain_panel{margin-top: 8px;} .o_field_widget.o_field_domain.o_inline_mode.o_edit_mode{position: relative;} .o_field_widget.o_field_domain.o_inline_mode.o_edit_mode > .o_field_domain_panel{position: absolute; top: 0; left: auto; bottom: auto; right: 0; margin-top: 0;} .o_field_widget.o_field_pdfviewer, .o_field_widget .o_pdfview_iframe{width: 100%; height: 450px; border: 0; margin-top: 10px;} .o_field_widget.o_field_copy{position: relative; width: 100% !important; border-radius: 5px; border: 1px solid #7C7BAD; font-size: 0.94791667rem; color: #7C7BAD; font-weight: normal; text-align: center; padding-right: 100px;} .o_field_widget.o_field_copy .o_clipboard_button{position: absolute; top: 0; left: auto; bottom: auto; right: 0;} .o_field_widget.o_field_copy .o_clipboard_button.o_btn_text_copy{position: absolute; top: 0; right: 0;} .o_field_widget.o_field_copy .o_clipboard_button.o_btn_char_copy{padding-top: 2px; height: 100%;} span.o_field_copy:empty{border: none;} button.o_field_float_toggle{width: 100%; text-align: center;} select.o_field_widget.o_input{padding: 1px;} \n/* /web/static/src/scss/fields_extra.scss defined in bundle 'web.assets_backend' */\n .o_required_modifier.o_input, .o_required_modifier .o_input{background-color: #D2D2FF !important;} .o_field_widget .o_input_dropdown .o_dropdown_button{position: absolute; top: 2px; left: auto; bottom: auto; right: 4px;} .o_field_widget.o_field_many2one .o_external_button{padding: 0; margin-left: 2px; font-size: 19px; color: #7C7BAD; border: none;} .o_field_widget.o_field_many2one .o_external_button:hover{background-color: transparent;} .o_field_widget.o_field_percent_pie .o_pie{width: 34px; height: 34px; margin-left: 5px;} .o_field_widget.o_field_percent_pie .o_pie:after{border: 1px solid #7C7BAD;} .o_field_widget.o_field_percent_pie .o_pie .o_pie_value{position: absolute; top: 4px; left: auto; bottom: auto; right: 4px; width: 26px; height: 26px; border: 1px solid white; background-color: white; font-size: 10px;} \n/* /web/static/src/scss/views.scss defined in bundle 'web.assets_backend' */\n .o_invisible_modifier{display: none !important;} .o_status{display: inline-block; height: 12px; width: 12px; border-radius: 6px; vertical-align: middle; background-color: #dee2e6;} .o_status.o_status_green{background-color: #28a745;} .o_status.o_status_red{background-color: #dc3545;} .o_btn-link-as-button{padding: 2px; font-size: 12px;} .o_btn-link-as-button > a{margin-bottom: -4px !important; margin-left: 3px;} .o_view_nocontent{position: absolute; top: 20%; left: 0; bottom: 0; right: 0; pointer-events: none; z-index: 1;} .o_view_nocontent .o_nocontent_help{pointer-events: auto; max-width: 650px; margin: auto; padding: 15px; z-index: 1000; text-align: center; color: #777777; font-size: 115%;} .o_view_nocontent .o_nocontent_help > p:first-of-type{margin-top: 0; color: #4c4c4c; font-weight: bold; font-size: 125%;} .o_view_nocontent .o_nocontent_help a{cursor: pointer;} .o_view_nocontent .o_nocontent_help .o_view_nocontent_smiling_face:before{content: ""; display: block; margin: auto; background-size: cover; width: 120px; height: 140px; background: transparent url(/web/static/src/img/smiling_face.svg) no-repeat center;} .o_view_nocontent .o_nocontent_help .o_view_nocontent_neutral_face:before{content: ""; display: block; margin: auto; background-size: cover; width: 120px; height: 140px; background: transparent url(/web/static/src/img/neutral_face.svg) no-repeat center;} .o_view_nocontent .o_nocontent_help .o_view_nocontent_empty_folder:before{content: ""; display: block; margin: auto; background-size: cover; width: 120px; height: 80px; margin-top: 30px; margin-bottom: 30px; background: transparent url(/web/static/src/img/empty_folder.svg) no-repeat center;} .o_view_nocontent .o_nocontent_help .o_empty_custom_dashboard{min-height: 327px; margin-left: -16px; margin-top: -16px; padding: 100px 0 0 137px; background: transparent url(/web/static/src/img/graph_background.png) no-repeat 0 0;} \n/* /web/static/src/scss/pivot_view.scss defined in bundle 'web.assets_backend' */\n .o_pivot{overflow: auto;} .o_pivot.o_enable_linking .o_pivot_cell_value:hover{color: #7C7BAD; cursor: pointer;} .o_pivot .o_pivot_cell_value{font-size: 1em;} .o_pivot .o_pivot_cell_value .o_comparison{font-size: 0.61em;} .o_pivot .o_pivot_cell_value .o_variation.o_positive{color: green;} .o_pivot .o_pivot_cell_value .o_variation.o_negative{color: red;} .o_pivot table{background-color: white; width: auto;} .o_pivot table thead th:not(.o_pivot_header_cell_closed):not(.o_pivot_header_cell_opened){text-align: center;} .o_pivot table th{font-weight: normal; background-color: white;} .o_pivot table .o_pivot_measure_row{background-color: white; cursor: pointer; white-space: nowrap; user-select: none;} .o_pivot table .o_pivot_measure_row:hover{background-color: white;} .o_pivot table .o_pivot_header_cell_closed{background-color: white; cursor: pointer; white-space: nowrap; user-select: none;} .o_pivot table .o_pivot_header_cell_closed:hover{background-color: white;} .o_pivot table .o_pivot_header_cell_closed::before{font-family: FontAwesome; content: "\n"; margin-right: 8px;} .o_pivot table .o_pivot_header_cell_opened{background-color: white; cursor: pointer; white-space: nowrap; user-select: none;} .o_pivot table .o_pivot_header_cell_opened:hover{background-color: white;} .o_pivot table .o_pivot_header_cell_opened::before{font-family: FontAwesome; content: "\n"; margin-right: 8px;} .o_pivot table .o_pivot_measure_row_sorted_asc::after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999); margin-left: 5px;} .o_pivot table .o_pivot_measure_row_sorted_desc::after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0.3em solid; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0; -moz-transform: scale(0.9999); margin-left: 5px;} .o_pivot .o_pivot_field_selection::after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0.3em solid transparent; border-left: 0.3em solid; border-right: 0; border-top: 0.3em solid transparent; -moz-transform: scale(0.9999); position: absolute; right: 6px; top: 9px;} \n/* /web/static/src/scss/graph_view.scss defined in bundle 'web.assets_backend' */\n .o_graph .o_graph_container{height: 100%; overflow: auto;} .o_graph .o_graph_container .o_graph_svg_container{direction: ltr; height: 100%; overflow: auto;} .o_graph .o_graph_container .o_graph_svg_container svg{background-color: white;} .o_graph .o_graph_container .o_graph_svg_container svg .nv-y path.domain, .o_graph .o_graph_container .o_graph_svg_container svg .nv-y g.tick.zero{display: none;} .o_graph .o_graph_container .o_graph_svg_container svg .nv-axis.nv-x path.domain{stroke-opacity: 0.2;} .o_graph .o_graph_container .o_graph_svg_container svg .nv-groups g.nv-group{stroke-width: 10px;} .o_graph .o_graph_container .o_graph_svg_container svg .nv-groups path.nv-area{fill-opacity: 0.1;} .o_graph .o_graph_container .o_graph_svg_container svg .nv-lineChart .nv-x.nv-axis .nv-axisMaxMin-x.nv-axisMin-x text{text-anchor: start !important;} .o_graph .o_graph_container .o_graph_svg_container svg .nv-lineChart .nv-x.nv-axis .nv-axisMaxMin-x.nv-axisMax-x text{text-anchor: end !important;} .o_graph .o_graph_container .o_graph_svg_container.o_tooltip_split_in_columns .nvtooltip{max-width: 48%;} .o_graph .o_graph_container .o_graph_svg_container.o_tooltip_split_in_columns .nvtooltip tbody{display: -webkit-box; display: -webkit-flex; display: flex; flex-flow: wrap;} .o_graph .o_graph_container .o_graph_svg_container.o_tooltip_split_in_columns .nvtooltip tbody tr{width: 33%;} .o_graph .o_graph_container .o_graph_svg_container.o_tooltip_split_in_columns .nvtooltip tbody tr td{display: inline-block;} .o_graph .o_graph_container .o_graph_svg_container.o_tooltip_split_in_columns .nvtooltip tbody tr td.key{min-width: 160px; max-width: 70%; overflow-x: hidden; text-overflow: ellipsis;} .nvtooltip thead{background-color: transparent;} \n/* /web/static/src/scss/form_view.scss defined in bundle 'web.assets_backend' */\n .o_form_view{background-color: white;} .o_form_view .oe_form_box_info{padding-top: 5px; padding-right: 16px; padding-bottom: 5px; padding-left: 16px;} .o_form_view .oe_form_box_info > p{margin: auto;} .o_form_view .oe_text_center{text-align: center;} .o_form_view .oe_grey{opacity: 0.5;} .o_form_view .oe_inline, .o_form_view .oe_left, .o_form_view .oe_right, .o_form_view .o_group.o_inner_group.oe_subtotal_footer{width: auto !important;} @media (min-width: 475px){.o_form_view .oe_inline.o_inner_group, .o_form_view .o_inner_group.oe_left, .o_form_view .o_inner_group.oe_right, .o_form_view .o_inner_group.o_group.oe_subtotal_footer{width: 1px !important;}} .o_form_view .oe_left{float: left !important;} .o_form_view .oe_right, .o_form_view .o_group.o_inner_group.oe_subtotal_footer{float: right !important;} @media (min-width: 475px){.o_form_view .o_row{align-items: baseline; min-width: 50px; margin: 0 -2.5px;}.o_form_view .o_row, .o_form_view .o_row.o_field_widget{display: -webkit-box; display: -webkit-flex; display: flex; width: auto !important;}.o_form_view .o_row > div, .o_form_view .o_row > span, .o_form_view .o_row > button, .o_form_view .o_row > label, .o_form_view .o_row > a, .o_form_view .o_row > input{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto !important; margin-right: 2.5px; margin-left: 2.5px;}.o_form_view .o_row > .o_row{margin: 0;}.o_form_view .o_row > .btn{padding-top: 0; padding-bottom: 0;}.o_form_view .o_row > .o_field_boolean{align-self: center;}} .o_form_view .o_row > div > .o_field_widget{width: 100%;} .o_form_view.o_form_readonly .oe_edit_only{display: none !important;} .o_form_view.o_form_readonly .o_row:not(.o_row_readonly), .o_form_view.o_form_readonly .o_row:not(.o_row_readonly) > div{display: inline-block;} .o_form_view .o_form_uri{display: inline-block; color: #7C7BAD;} .o_form_view .o_form_uri:hover{color: #555487;} .o_form_view.o_form_editable .oe_read_only{display: none !important;} .o_form_view.o_form_editable .oe_title{max-width: 688px;} @media (min-width: 475px){.o_form_view.o_form_editable .o_row > .o_field_widget, .o_form_view.o_form_editable .o_row > div{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; width: 0 !important;}.o_form_view.o_form_editable .o_row > .o_field_widget.o_field_boolean, .o_form_view.o_form_editable .o_row > .o_field_widget.o_priority, .o_form_view.o_form_editable .o_row > div.o_field_boolean, .o_form_view.o_form_editable .o_row > div.o_priority{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto !important;}} .o_form_view.o_form_nosheet{display: block; padding-top: 24px; padding-right: 16px; padding-bottom: 24px; padding-left: 16px;} .o_form_view.o_form_nosheet .o_form_statusbar{margin: -24px -16px 24px -16px;} .o_form_view .o_form_sheet_bg{position: relative;} .o_form_view .o_form_sheet_bg > .o_form_sheet{margin: 12px auto;} .o_form_view .o_form_statusbar{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; justify-content: space-between; padding-left: 16px; border-bottom: 1px solid #ced4da; background-color: white;} .o_form_view .o_form_statusbar > .o_statusbar_buttons, .o_form_view .o_form_statusbar > .o_statusbar_status{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; align-content: space-around;} .o_form_view .o_form_statusbar > .o_field_widget{align-self: center; margin-bottom: 0px;} .o_form_view .o_form_statusbar > .o_statusbar_buttons{-webkit-flex-flow: row wrap; flex-flow: row wrap;} .o_form_view .o_form_statusbar > .o_statusbar_buttons > .btn{min-height: 25px; margin: 4px 3px 4px 0; padding-top: 2px; padding-bottom: 2px;} .o_form_view .o_form_statusbar > .o_statusbar_status{margin-left: auto; flex-flow: row-reverse wrap-reverse; align-self: stretch; align-items: stretch;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button{min-height: 33px; font-size: 11px; font-weight: bold; position: relative; padding-left: 22px; color: #495057; border-width: 0 0 0; border-radius: 0; transition: all 0.1s ease 0s;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:first-child{padding-right: 16px; overflow-x: hidden;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:last-child{padding-left: 15px; border-left: 1px solid #ced4da;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:active{box-shadow: none;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button.disabled{opacity: 1.0; color: #adb5bd; pointer-events: none; border-left: 1px solid #dee2e6;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(:first-child):before, .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(:first-child):after{content: " "; display: block; position: absolute; top: 0; left: auto; bottom: auto; right: -10px; border-top: 16px solid transparent; border-bottom: 17px solid transparent; border-right: none; border-left: 11px solid white; transition: border 0.2s ease 0s; -moz-transform: scale(0.9999);} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(.disabled):hover, .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(.disabled):active, .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(.disabled):focus{color: #7C7BAD; background-color: #e9ecef;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(.disabled):hover:after, .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(.disabled):active:after, .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(.disabled):focus:after{border-left-color: #e9ecef;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button:not(:first-child):before{right: -11px; border-left-color: #dee2e6;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button.btn-primary.disabled{color: #7C7BAD; font-size: 11px; background-color: #e9ecef; cursor: default;} .o_form_view .o_form_statusbar > .o_statusbar_status > .o_arrow_button.btn-primary.disabled:after{border-left-color: #e9ecef;} .o_form_view .o_form_statusbar > .o_statusbar_buttons > .btn-group > .dropdown-toggle:after, .o_form_view .o_form_statusbar > .o_statusbar_status > .dropdown-toggle:after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999); margin-left: 5px;} .o_form_view .o_form_statusbar > .o_statusbar_buttons > .btn-group > .dropdown-menu, .o_form_view .o_form_statusbar > .o_statusbar_status > .dropdown-menu{padding: 5px 0 2px 0; min-width: 100px;} .o_form_view .o_form_statusbar > .o_statusbar_buttons > .btn-group > .dropdown-menu .dropdown-item.btn, .o_form_view .o_form_statusbar > .o_statusbar_status > .dropdown-menu .dropdown-item.btn{min-width: 100%; margin-bottom: 3px;} .o_form_view .oe_button_box .oe_stat_button:not(:hover) .o_stat_info > .o_hover{display: none !important;} .o_form_view .oe_button_box .oe_stat_button:hover .o_stat_info > .o_not_hover{display: none !important;} .o_form_view .oe_title > h1, .o_form_view .oe_title > h2, .o_form_view .oe_title > h3{width: 100%; margin-top: 0; margin-bottom: 0; line-height: inherit;} .o_form_view .oe_title .o_priority > .o_priority_star{font-size: inherit;} .o_form_view .o_group{display: inline-block; width: 100%; margin: 10px 0;} .o_form_view .o_group .o_group_col_1{display: inline-block; width: 8%; vertical-align: top;} .o_form_view .o_group .o_group_col_2{display: inline-block; width: 16%; vertical-align: top;} .o_form_view .o_group .o_group_col_3{display: inline-block; width: 25%; vertical-align: top;} .o_form_view .o_group .o_group_col_4{display: inline-block; width: 33%; vertical-align: top;} .o_form_view .o_group .o_group_col_5{display: inline-block; width: 41%; vertical-align: top;} .o_form_view .o_group .o_group_col_6{display: inline-block; width: 50%; vertical-align: top;} .o_form_view .o_group .o_group_col_7{display: inline-block; width: 58%; vertical-align: top;} .o_form_view .o_group .o_group_col_8{display: inline-block; width: 66%; vertical-align: top;} .o_form_view .o_group .o_group_col_9{display: inline-block; width: 75%; vertical-align: top;} .o_form_view .o_group .o_group_col_10{display: inline-block; width: 83%; vertical-align: top;} .o_form_view .o_group .o_group_col_11{display: inline-block; width: 91%; vertical-align: top;} .o_form_view .o_group .o_group_col_12{display: inline-block; width: 100%; vertical-align: top;} .o_form_view .o_group.o_inner_group{display: inline-table;} .o_form_view .o_group.o_inner_group > tbody > tr > td{vertical-align: top;} .o_form_view .o_group.o_inner_group > tbody > tr > td.o_td_label{width: 0%; padding: 0 15px 0 0; min-width: 150px;} .o_form_view .o_group.o_inner_group > tbody > tr > td span.o_field_widget, .o_form_view .o_group.o_inner_group > tbody > tr > td .o_field_boolean.o_field_widget, .o_form_view .o_group.o_inner_group > tbody > tr > td .oe_avatar.o_field_widget, .o_form_view .o_group.o_inner_group > tbody > tr > td .o_form_uri.o_field_widget{width: auto;} .o_form_view .o_group .o_form_label{font-weight: normal;} .o_form_view .o_group .o_field_widget{width: 100%;} .o_form_view .o_group .o_field_widget > .btn{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; padding: 0 10px;} .o_form_view .o_group :not(.o_row):not(.o_data_cell) > .o_field_widget > .o_input_dropdown, .o_form_view .o_group .o_row > .o_field_widget:last-child > .o_input_dropdown{-webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto;} .o_form_view .o_group.o_label_nowrap .o_form_label{white-space: nowrap;} .o_form_view .o_group .o_td_label .o_form_label{font-weight: bold; margin-right: 0px;} .o_form_view .o_horizontal_separator{font-size: 1.625rem; margin: 5px 0;} .o_form_view .o_horizontal_separator:empty{height: 10px;} .o_form_view .o_notebook{clear: both; margin-top: 10px;} .o_form_view .o_notebook .tab-content > .tab-pane{padding: 16px 0;} .o_form_view .o_form_label{margin: 0 5px 0 0; font-size: 1.08333333rem; line-height: 1.5; font-weight: bold;} .o_form_view .o_field_widget{margin-bottom: 5px;} .o_form_view .o_field_widget .o_field_widget, .o_form_view .btn .o_field_widget{margin-bottom: 0px;} .o_form_view .o_field_translate{padding: 0; cursor: pointer; width: 12px !important; vertical-align: top;} .o_form_view .o_field_translate::before{position: relative;} .o_form_view .o_field_text.oe_inline, .o_form_view .o_field_text.oe_left, .o_form_view .o_field_text.oe_right, .o_form_view .o_field_text.o_group.o_inner_group.oe_subtotal_footer{width: 100% !important;} @media (min-width: 475px){.o_form_view .o_field_text.oe_inline, .o_form_view .o_field_text.oe_left, .o_form_view .o_field_text.oe_right, .o_form_view .o_field_text.o_group.o_inner_group.oe_subtotal_footer{width: 45% !important;}} .o_form_view .o_field_widget.o_field_one2many, .o_form_view .o_field_widget.o_field_many2many{width: 100%;} .o_form_view .o_field_widget.o_field_one2many > div, .o_form_view .o_field_widget.o_field_many2many > div{width: 100%;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer > tbody > tr > td{padding: 0;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer > tbody > tr > td.o_td_label{text-align: right;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer > tbody > tr > td .o_form_label{padding-right: 20px; min-width: 0; white-space: nowrap;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer > tbody > tr > td .o_form_label:after{content: ":";} .o_form_view .o_group.o_inner_group.oe_subtotal_footer > tbody > tr > td .o_field_widget{text-align: right; -webkit-box-pack: end; justify-content: flex-end; width: 100%;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer > tbody > tr:first-child > td{padding-top: 4px;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer .oe_subtotal_footer_separator{width: 100%; text-align: right; border-top: 1px solid #dee2e6; font-weight: bold; font-size: 1.3em;} .o_form_view .o_address_format{width: 100%;} .o_form_view .o_address_format .o_address_street, .o_form_view .o_address_format .o_address_country{display: -webkit-box; display: -webkit-flex; display: flex;} .o_form_view .o_address_format .o_address_city{margin-right: 2%;} .o_form_view .o_address_format .o_address_state{margin-right: 2%;} .o_form_view .o_address_format.o_zip_city .o_address_zip{margin-right: 2%;} .o_form_view .o_address_format.o_zip_city .o_address_city{margin-right: 0;} .o_form_view .o_address_format.o_zip_city .o_address_state{display: block; margin-right: 0;} .o_form_view .o_address_format.o_city_state .o_address_state{margin-right: 0;} .o_form_view .o_address_format.o_city_state .o_address_zip{display: block; margin-right: 0;} .o_form_view .o_address_format > span.o_field_widget{width: auto;} .o_form_view.o_form_editable .o_address_format .o_address_city{width: 38%;} .o_form_view.o_form_editable .o_address_format div.o_address_state{width: 33%;} .o_form_view.o_form_editable .o_address_format input.o_address_zip{width: 25%;} .o_form_view.o_form_editable .o_address_format.o_zip_city .o_address_zip{width: 38%;} .o_form_view.o_form_editable .o_address_format.o_zip_city .o_address_city{width: 60%;} .o_form_view.o_form_editable .o_address_format.o_zip_city .o_address_state{width: 100%;} .o_form_view.o_form_editable .o_address_format.o_city_state .o_address_city{width: 50%;} .o_form_view.o_form_editable .o_address_format.o_city_state .o_address_state{width: 48%;} .o_form_view.o_form_editable .o_address_format.o_city_state .o_address_zip{width: 100%;} .o_form_view .o_field_boolean{margin-right: 5px;} .o_form_view .o_tz_warning{color: #dc3545; cursor: help; position: absolute; margin-left: -40px; margin-top: 5px;} .o_form_view .o_field_widget .o_kanban_view.o_kanban_ungrouped{padding: 0;} .o_form_view .o_field_widget .o_kanban_view.o_kanban_ungrouped .o_kanban_record{box-shadow: none;} .o_form_view .o_field_widget .o_list_view{margin-bottom: 10px;} .o_form_view .o_field_widget .o_list_view > tfoot > tr > td{padding: 3px; color: #4c4c4c;} .o_form_view.o_form_readonly .o_field_widget .o_list_view .o_row_handle{display: none;} .o_form_view .o_field_widget.o_readonly_modifier .o_list_view .o_row_handle{display: none;} .o_form_view .oe_attachment{display: inline-block; border: 1px solid #e2e2e0; margin: 0 5px 5px 0; padding: 5px;} .o_form_view.oe_form_configuration .o_group .o_form_label{white-space: nowrap;} .o_form_view.oe_form_configuration h2{margin-top: 32px !important;} .o_form_view.o_company_document_layout .report_layout_container{display: inline-block;} .o_form_view.o_company_document_layout .report_layout_container div{display: inline-block;} .o_form_view.o_company_document_layout .report_layout_container div img{margin-left: 0 !important;} .o_form_view.o_company_document_layout img[name="logo"]{max-height: 100px; max-width: 300px;} .modal .modal-dialog .o_form_view .o_form_sheet_bg{padding: 0;} .modal .modal-dialog .o_form_view .o_form_sheet_bg > *{margin: 0;} .modal .modal-dialog .o_form_view .o_form_sheet_bg > .o_form_sheet{box-shadow: none; width: 100%; margin: 0 auto; max-width: none;} .modal .modal-dialog .o_form_view .oe_chatter{display: none;} .modal .modal-dialog:not(.modal-lg) .o_form_view .o_group{width: 100%;} .modal .modal-dialog .o_onboarding_payment_acquirer_wizard a[type="action"]{color: #7C7BAD; cursor: pointer;} @media print{.oe_button_box, .o_form_statusbar{display: none !important;}} .o_control_panel .o_form_buttons_view > button:first-child{float: left; margin-right: 4px;} .o_form_view.o_xxs_form_view .oe_title{word-break: break-all;} .o_form_view.o_xxs_form_view .o_group.o_inner_group{display: block; margin-bottom: 20px;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody{display: block;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody > tr{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody > tr > td{-webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto; display: block; max-width: 100%; padding: 0; width: auto !important;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody > tr > td.o_td_label{width: 94% !important; line-height: 0.8;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody > tr > td .o_field_widget{margin-bottom: 10px;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody > tr > td .o_field_widget.o_field_boolean{margin-right: 0;} .o_form_view.o_xxs_form_view .o_group.o_inner_group > tbody > tr > td .o_input_dropdown{width: auto; max-width: 100%;} .o_settings_container{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto; -webkit-flex-flow: row wrap; flex-flow: row wrap;} .o_settings_container .o_form_label.o_light_label, .o_settings_container .o_light_label .o_form_label{font-weight: normal;} .o_settings_container .o_setting_box:visible:nth-child(odd){clear: left;} .o_settings_container .text-muted{color: #aaaaaa;} .o_settings_container .o_setting_box{margin-bottom: 8px; margin-top: 8px;} .o_settings_container .o_setting_box .o_setting_left_pane{width: 24px; float: left;} .o_settings_container .o_setting_box .o_setting_left_pane .o_enterprise_label{position: absolute; top: 0px; right: 40px;} .o_settings_container .o_setting_box .o_setting_right_pane{margin-left: 30px; border-left: 1px solid #bbbbbb; padding-left: 10px;} .o_settings_container .o_setting_box .o_setting_right_pane .o_input_dropdown > .o_input{width: 100%;} .o_settings_container .o_setting_box .o_setting_right_pane .o_field_widget{width: 50%; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_settings_container .o_setting_box .o_setting_right_pane .o_field_widget.o_field_many2manytags > .o_field_widget{flex: 1 0 50px;} .o_settings_container .o_setting_box .o_setting_right_pane button.btn-link:first-child{padding-left: 0;} .o_settings_container .o_setting_box .o_setting_right_pane a.oe-link{font-size: 12px;} \n/* /web/static/src/scss/form_view_extra.scss defined in bundle 'web.assets_backend' */\n .o_form_view.o_form_nosheet.oe_form_nomargin{margin: 0;} .o_form_view .o_form_sheet_bg{border-bottom: 1px solid #ddd; background: url(/web/static/src/img/form_sheetbg.png);} .o_form_view .o_form_sheet_bg > .o_form_sheet{min-width: 650px; max-width: 1140px; min-height: 330px; padding: 16px; border: 1px solid #c8c8d3; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); background: white;} .o_form_view .o_form_sheet_bg > .o_form_sheet .ui-tabs{margin: 0 -16px;} .o_form_view .o_form_sheet_bg > .o_form_sheet .oe_notebook_page{padding: 0 16px;} .o_form_view .oe_button_box{width: 400px; text-align: right; float: right; margin-bottom: 4px;} .o_form_view .oe_button_box + .oe_title, .o_form_view .oe_button_box + .oe_avatar + .oe_title{width: 400px;} .o_form_view .oe_button_box + .alert{clear: both;} .o_form_view .oe_button_box .oe_stat_button{color: #4c4c4c; text-align: left; width: 132px !important; height: 40px; margin: 0px -1px -1px 0px; padding: 0; border-radius: 0; border-color: #ccc; background: white; outline: none;} .o_form_view .oe_button_box .oe_stat_button:hover{background-color: #e6e6e6;} .o_form_view .oe_button_box .oe_stat_button .o_button_icon{display: inline-block; width: 37px; padding: 0px 3px; text-align: center; vertical-align: middle; color: #7C7BAD; font-size: 24px;} .o_form_view .oe_button_box .oe_stat_button .o_stat_info, .o_form_view .oe_button_box .oe_stat_button > span{display: inline-block; vertical-align: middle; max-width: 70%; line-height: 1.2;} .o_form_view .oe_button_box .oe_stat_button .o_stat_info > .o_stat_value, .o_form_view .oe_button_box .oe_stat_button .o_stat_info > .o_stat_text, .o_form_view .oe_button_box .oe_stat_button > span > .o_stat_value, .o_form_view .oe_button_box .oe_stat_button > span > .o_stat_text{display: block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top;} .o_form_view .oe_button_box .oe_stat_button .o_stat_info .o_stat_value, .o_form_view .oe_button_box .oe_stat_button > span .o_stat_value{font-weight: 700; color: #7C7BAD;} .o_form_view .oe_button_box .oe_stat_button .o_stat_info .o_stat_text, .o_form_view .oe_button_box .oe_stat_button > span .o_stat_text{font-size: small;} .o_form_view .oe_button_box .oe_stat_button > span{font-size: small; white-space: normal;} .o_form_view .oe_button_box .oe_stat_button > div{text-align: left; padding: 0; line-height: 120%; vertical-align: middle;} .o_form_view .oe_button_box.o_full{position: relative;} .o_form_view .oe_button_box.o_full .o_button_more{padding: 0 10px;} .o_form_view .oe_button_box.o_full .o_dropdown_more{position: absolute; top: 100%; left: auto; bottom: auto; right: 0; min-width: 0; padding: 0px;} .o_form_view .oe_avatar{float: left;} .o_form_view .oe_avatar > img{max-height: 90px; max-width: 90px; margin-bottom: 10px; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); border: none;} .o_form_view .oe_avatar + .oe_title{padding-left: 95px; margin-left: 5px;} .o_form_view .o_group .o_td_label{border-right: 1px solid #ddd;} .o_form_view .o_group .o_td_label + td{padding: 0px 36px 0px 8px;} .o_form_view .o_group .o_field_widget.o_text_overflow{width: 1px !important; min-width: 100%;} .o_form_view .o_horizontal_separator{color: #7C7BAD; font-weight: bold;} .o_form_view .o_field_translate{margin-left: -15px;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer .oe_subtotal_footer_separator{border-top: 1px solid #cacaca;} .o_form_view .o_group.o_inner_group.oe_subtotal_footer .o_td_label{border-right: none;} .o_form_view .oe_chatter{display: block; min-width: 682px; max-width: 1172px; margin: 0 auto; padding: 16px 16px 48px;} .modal .modal-dialog .o_form_view .o_form_sheet_bg, .modal .modal-dialog .o_form_view .o_form_sheet{border: none;} .modal .modal-dialog .o_form_view .o_form_sheet_bg > .o_form_sheet{min-height: 0;} .o_form_view.o_xxs_form_view .o_group .o_td_label{border: none;} \n/* /web/static/src/scss/list_view.scss defined in bundle 'web.assets_backend' */\n .o_list_view{position: relative; cursor: pointer; background-color: white; margin-bottom: 0px; border-collapse: initial; border-spacing: 0;} .o_list_view.o_editable_list .o_data_row:not(.o_selected_row) .o_data_cell.o_toggle_button_cell:not(.o_readonly_modifier) button, .o_list_view.o_editable_list .o_data_row:not(.o_selected_row) .o_data_cell.o_boolean_favorite_cell:not(.o_readonly_modifier) .o_favorite, .o_list_view.o_editable_list .o_data_row:not(.o_selected_row) .o_data_cell .custom-checkbox:not(.o_readonly_modifier){pointer-events: none;} .o_list_view thead{color: #4c4c4c; border-bottom: 1px solid #cacaca;} .o_list_view thead > tr > th{border-left: 1px solid #dfdfdf;} @media (max-width: 767.98px){.o_list_view thead > tr > th{white-space: nowrap;}} .o_list_view thead > tr > th:not(.o_column_sortable):hover{cursor: default;} .o_list_view thead > tr > th.o_list_number_th{text-align: right;} .o_list_view tfoot{cursor: default; color: #4c4c4c; background-color: #eee; font-weight: bold; border-top: 2px solid #cacaca; border-bottom: 1px solid #cacaca;} .o_list_view .o_column_sortable{position: relative; user-select: none;} .o_list_view .o_column_sortable::after{font-family: FontAwesome; content: "\\f0d7"; opacity: 0;} .o_list_view .o_column_sortable:not(:empty)::after{margin-left: 6px;} .o_list_view .o_column_sortable.o-sort-up{cursor: n-resize;} .o_list_view .o_column_sortable.o-sort-up::after{content: "\\f0d7";} .o_list_view .o_column_sortable.o-sort-down{cursor: s-resize;} .o_list_view .o_column_sortable.o-sort-down::after{content: "\\f0d8";} .o_list_view .o_column_sortable:hover::after{opacity: 0.3;} .o_list_view .o_column_sortable.o-sort-up, .o_list_view .o_column_sortable.o-sort-down{color: inherit;} .o_list_view .o_column_sortable.o-sort-up::after, .o_list_view .o_column_sortable.o-sort-down::after{opacity: 1;} .o_list_view .o_list_record_selector, .o_list_view .o_list_record_remove, .o_list_view .o_handle_cell{width: 1px;} .o_list_view .o_list_record_remove button{padding: 0px; background: none; border-style: none; display: table-cell; cursor: pointer;} .o_list_view .text-primary{color: #5c5b9d !important;} .o_list_view a.text-primary:hover, .o_list_view a.text-primary:focus{color: #49487d !important;} .o_list_view .text-secondary{color: #dad2d2 !important;} .o_list_view a.text-secondary:hover, .o_list_view a.text-secondary:focus{color: #c3b6b6 !important;} .o_list_view .text-success{color: #199535 !important;} .o_list_view a.text-success:hover, .o_list_view a.text-success:focus{color: #126926 !important;} .o_list_view .text-info{color: #0a8ea4 !important;} .o_list_view a.text-info:hover, .o_list_view a.text-info:focus{color: #076574 !important;} .o_list_view .text-warning{color: #dca500 !important;} .o_list_view a.text-warning:hover, .o_list_view a.text-warning:focus{color: #a97f00 !important;} .o_list_view .text-danger, .o_list_view .oe_import .oe_import_error_report .oe_import_report.text-error, .oe_import .oe_import_error_report .o_list_view .oe_import_report.text-error{color: #c52231 !important;} .o_list_view a.text-danger:hover, .o_list_view .oe_import .oe_import_error_report a.oe_import_report.text-error:hover, .oe_import .oe_import_error_report .o_list_view a.oe_import_report.text-error:hover, .o_list_view a.text-danger:focus, .o_list_view .oe_import .oe_import_error_report a.oe_import_report.text-error:focus, .oe_import .oe_import_error_report .o_list_view a.oe_import_report.text-error:focus{color: #991a26 !important;} .o_list_view .text-light{color: #cbd1d7 !important;} .o_list_view a.text-light:hover, .o_list_view a.text-light:focus{color: #afb8c0 !important;} .o_list_view .text-dark{color: #27313b !important;} .o_list_view a.text-dark:hover, .o_list_view a.text-dark:focus{color: #13181c !important;} .o_list_view .text-alpha{color: #008684 !important;} .o_list_view a.text-alpha:hover, .o_list_view a.text-alpha:focus{color: #005352 !important;} .o_list_view .text-beta{color: #7a436b !important;} .o_list_view a.text-beta:hover, .o_list_view a.text-beta:focus{color: #59314e !important;} .o_list_view .text-gamma{color: #444375 !important;} .o_list_view a.text-gamma:hover, .o_list_view a.text-gamma:focus{color: #313055 !important;} .o_list_view .text-delta{color: #42778f !important;} .o_list_view a.text-delta:hover, .o_list_view a.text-delta:focus{color: #325a6c !important;} .o_list_view .text-epsilon{color: #cb525c !important;} .o_list_view a.text-epsilon:hover, .o_list_view a.text-epsilon:focus{color: #b43640 !important;} .o_list_view tbody > tr.o_group_header > th, .o_list_view tbody > tr.o_group_header > td{padding-top: 0.6rem; padding-bottom: 0.6rem;} .o_list_view tbody > tr.o_group_header .o_group_name{white-space: nowrap;} .o_list_view tbody > tr.o_group_header .o_group_pager{cursor: text; user-select: none; text-align: right; padding-top: 0 !important; padding-bottom: 0 !important;} .o_list_view tbody > tr.o_group_header .o_group_pager .o_pager_previous, .o_list_view tbody > tr.o_group_header .o_group_pager .o_pager_next{max-height: 30px; background-color: #fbfbfa;} .o_list_view tbody > tr.o_group_header .o_group_pager .o_pager_previous:hover, .o_list_view tbody > tr.o_group_header .o_group_pager .o_pager_next:hover{background-color: #e2e2e0;} .o_list_view tbody + tbody{border-top: none;} .o_list_view tbody tr:focus-within{background-color: #ccc;} .o_list_view .o_list_number{text-align: right; white-space: nowrap;} .o_list_view .o_list_text{white-space: pre-wrap;} .o_list_view .o_data_cell.o_invisible_modifier{display: table-cell !important;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier){position: relative; z-index: 1; z-index: 1;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) > .o_field_widget{position: absolute; top: 0; left: 0; bottom: auto; right: 0; min-height: 100%;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) > .o_field_widget:not(.o_field_text){white-space: nowrap;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) > .o_field_widget.o_field_many2manytags > .badge, .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) > .o_field_widget.o_field_many2manytags > .badge > .o_badge_text{white-space: normal; max-width: 100%;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) > .o_field_translate{position: absolute; top: 0; left: auto; bottom: auto; right: 5px; width: 16px;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_input{padding: 0.3rem; background-color: white;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_input .o_input{padding: 0 !important;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_input_dropdown{min-height: 100%;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_field_monetary input{width: 0;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_field_boolean{position: relative !important;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_field_widget{min-width: 0;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_input_dropdown > .o_input, .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_datepicker > .o_input{padding-right: 15px;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_input_dropdown > .o_dropdown_button, .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_input_dropdown .o_datepicker_button, .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_datepicker > .o_dropdown_button, .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_datepicker .o_datepicker_button{position: absolute; top: 20%; left: auto; bottom: auto; right: 5px;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_field_widget > .o_external_button{padding: 0; background-color: inherit; margin-left: 3px;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_row_handle{visibility: hidden;} .o_list_view .o_data_row.o_selected_row > .o_data_cell:not(.o_readonly_modifier) .o_field_boolean{width: auto !important;} .o_list_view .o_field_x2many_list_row_add a:focus, .o_list_view .o_field_x2many_list_row_add a:active{color: #555487; outline: none;} .o_list_buttons .o_list_button_save, .o_list_buttons .o_list_button_discard{display: none;} .o_list_buttons.o-editing .o_list_button_add{display: none;} .o_list_buttons.o-editing .o_list_button_save, .o_list_buttons.o-editing .o_list_button_discard{display: inline-block;} \n/* /web/static/src/scss/list_view_extra.scss defined in bundle 'web.assets_backend' */\n .o_list_view thead{background-color: #eee;} .o_list_view tbody > tr.o_group_header{background-image: linear-gradient(to bottom, #fcfcfc, #dedede);} \n/* /web/static/src/scss/kanban_dashboard.scss defined in bundle 'web.assets_backend' */\n .o_kanban_view.o_kanban_dashboard:not(.o_kanban_grouped){-webkit-flex-flow: row wrap; flex-flow: row wrap;} .o_kanban_view.o_kanban_dashboard .o_kanban_record{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; justify-content: space-between; padding: 8px 16px;} @media (max-width: 767.98px){.o_kanban_view.o_kanban_dashboard .o_kanban_record{margin-bottom: 10px;}} .o_kanban_view.o_kanban_dashboard .o_kanban_record .container{width: 100%;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_manage_toggle_button{margin: -1px -1px auto auto; padding: 8px 16px; border: 1px solid transparent; border-bottom: none; vertical-align: top; color: #4c4c4c; height: 35px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_manage_toggle_button:hover{color: inherit;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_manage_toggle_button:focus, .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_manage_toggle_button:active, .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_manage_toggle_button:focus:active{outline: none;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane{position: absolute; top: auto; left: auto; bottom: auto; right: -1px; margin-top: -1px; border-color: #ced4da; top: 34px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane > div:not(.o_no_padding_kanban_colorpicker){padding: 3px 0 3px 20px; visibility: visible; margin-bottom: 5px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane > .o_kanban_card_manage_section{border-bottom: 1px solid #dee2e6; margin-bottom: 10px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane > .o_kanban_card_manage_section > div{padding: 0;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane > .o_kanban_card_manage_section > div > a{margin: auto auto auto -20px; padding: 3px 20px; color: #4c4c4c; display: block;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane > .o_kanban_card_manage_section > div > a:hover{background-color: #dee2e6; color: inherit;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane > .o_kanban_card_manage_section > div:last-child{margin-bottom: 5px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container{width: 95%; max-width: 400px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row nowrap; flex-flow: row nowrap; justify-content: space-between; margin-left: 0; margin-right: 0; padding-left: 10px; padding-right: 10px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container div[class*="col-"]{flex: 1 1 33.33333333%; padding-left: 5px; padding-right: 5px; max-width: none;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container div[class*="col-"] > .o_kanban_card_manage_title{margin: 0.8125rem 0; color: inherit; font-size: 1.19166667rem; font-weight: 500; line-height: 1.2;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container div[class*="col-"] > div:not(.o_kanban_card_manage_title){padding: 0;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container div[class*="col-"] > div:not(.o_kanban_card_manage_title) > a{margin: auto auto auto -5px; padding: 3px 5px; color: #4c4c4c; display: block;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container div[class*="col-"] > div:not(.o_kanban_card_manage_title) > a:hover{background-color: #dee2e6; color: inherit;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container div[class*="col-"] > div:not(.o_kanban_card_manage_title):last-child{margin-bottom: 5px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings{border-top: 1px solid #dee2e6; padding-top: 15px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings .oe_kanban_colorpicker{max-width: none; padding: 0;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings div[class*="col-"] + div[class*="col-"]{border-left: 1px solid #dee2e6;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings div.text-right{text-align: left; padding: 0;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings div.text-right > a{margin: auto auto auto 0; padding: 3px 0; color: #4c4c4c; display: block;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings div.text-right > a:hover{background-color: #dee2e6; color: inherit;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings div.text-right:last-child{margin-bottom: 5px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_manage_pane.container .row.o_kanban_card_manage_settings div.text-right > a{margin-left: 40px; padding-left: 20px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record.o_dropdown_open .o_kanban_card_manage_pane{display: block;} .o_kanban_view.o_kanban_dashboard .o_kanban_record.o_dropdown_open .o_kanban_manage_toggle_button{position: relative; background: white; border-color: #ced4da; z-index: 1001; position: absolute;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_primary{padding-right: 32px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header_title .o_primary, .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_primary_left .o_primary > span:first-child, .o_kanban_view.o_kanban_dashboard .o_kanban_record .oe_kanban_content > .o_title > h3{color: inherit; font-size: 16px; font-weight: 500; margin-bottom: 0; margin-top: 0; display: block;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_primary_left .o_primary > span:nth-child(2) > strong{font-weight: 500; font-size: 0.94791667rem; color: #adb5bd;} .o_kanban_view.o_kanban_dashboard .o_kanban_record.o_has_icon .o_primary{padding-left: 12px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_content{display: inline-block; vertical-align: top; min-height: 80px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header + .container.o_kanban_card_content{-webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; justify-content: space-between; margin-top: 16px; padding-right: 0; padding-left: 0;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header + .container.o_kanban_card_content::before, .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header + .container.o_kanban_card_content::after{content: normal;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header + .container.o_kanban_card_content a{position: relative; display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header + .container.o_kanban_card_content .o_kanban_primary_bottom{margin-top: 8px; margin-bottom: -8px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_kanban_card_header + .container.o_kanban_card_content .o_kanban_primary_bottom.bottom_block{border-top: 1px solid #dee2e6; background-color: #e9ecef; padding-top: 8px; padding-bottom: 8px;} .o_kanban_view.o_kanban_dashboard .o_kanban_record .o_dashboard_graph{overflow: hidden; margin: 16px -16px;} .o_kanban_view.o_kanban_dashboard .o_favorite, .o_kanban_view.o_kanban_dashboard .o_kanban_manage_toggle_button{position: absolute; top: 0; left: auto; bottom: auto; right: 0; padding: 8px;} .o_kanban_view.o_kanban_dashboard .o_favorite{top: 3px; left: 0; right: auto;} .o_kanban_view.o_kanban_dashboard.o_emphasize_colors .o_kanban_record::after{width: 6px;} \n/* /web/static/src/scss/kanban_examples_dialog.scss defined in bundle 'web.assets_backend' */\n .o_kanban_examples_dialog{display: -webkit-box; display: -webkit-flex; display: flex; padding: 0px; background: #f8f9fa;} .o_kanban_examples_dialog .o_kanban_examples_dialog_nav{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; border-right: 1px solid #dee2e6; background: white;} .o_kanban_examples_dialog .o_kanban_examples_dialog_nav > ul > li{margin: 0; border-bottom: 1px solid #dee2e6;} .o_kanban_examples_dialog .o_kanban_examples_dialog_nav > ul > li > a{padding: 12px 15px; color: #4c4c4c; border-left: 3px solid transparent;} .o_kanban_examples_dialog .o_kanban_examples_dialog_nav > ul > li > a:focus{outline: none;} .o_kanban_examples_dialog .o_kanban_examples_dialog_nav > ul > li.active > a{color: inherit; border-left-color: #7C7BAD; font-weight: bold;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content{flex: 1 1 100%;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples_description{padding: 16px 16px 0; text-align: justify;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples{display: -webkit-box; display: -webkit-flex; display: flex; padding: 0 6px;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples .o_kanban_examples_group{flex: 1 1 100%; margin: 10px;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples .o_kanban_examples_group .o_kanban_examples_ghost{padding: 5px; margin-top: -1px; border: thin solid #dee2e6; background-color: white;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples .o_kanban_examples_group .o_kanban_examples_ghost .o_ghost_content{height: 12px; background: #dee2e6;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples .o_kanban_examples_group .o_kanban_examples_ghost .o_ghost_content.o_ghost_tag{display: inline-block; width: 40%; margin-top: 10px;} .o_kanban_examples_dialog .o_kanban_examples_dialog_content .o_kanban_examples .o_kanban_examples_group .o_kanban_examples_ghost .o_ghost_avatar{height: 20px; width: 20px; margin-top: 6px;} \n/* /web/static/src/scss/kanban_column_progressbar.scss defined in bundle 'web.assets_backend' */\n .o_kanban_view .o_kanban_group.o_kanban_has_progressbar > .o_kanban_header .o_kanban_header_title{height: 30px; margin-top: 5px;} .o_kanban_view .o_kanban_group.o_kanban_has_progressbar.o_kanban_no_records .o_kanban_counter{opacity: 0.3;} .o_kanban_counter{position: relative; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; transition: opacity 0.3s ease 0s; margin-bottom: 16px;} .o_kanban_counter > .o_kanban_counter_progress{width: 76%; height: 0.94791667rem; margin-bottom: 0; background-color: #dee2e6; box-shadow: none;} .o_kanban_counter > .o_kanban_counter_progress .progress-bar{margin-bottom: 0; box-shadow: none; cursor: pointer;} .o_kanban_counter > .o_kanban_counter_progress .o_kanban_counter_label{font-size: 10px; user-select: none;} .o_kanban_counter > .o_kanban_counter_side{width: 21%; margin-left: 3%; color: inherit; text-align: right; white-space: nowrap; transform-origin: right center;} .o_kanban_counter > .o_kanban_counter_side.o_kanban_grow{animation: grow 1s ease 0s 1 normal none running;} .o_kanban_counter > .o_kanban_counter_side.o_kanban_grow_huge{animation: grow_huge 1s ease 0s 1 normal none running;} .o_kanban_counter > .o_kanban_counter_side > span{margin-left: 2px;} .o_column_folded .o_kanban_counter{display: none;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success, .o_kanban_view .o_kanban_group.o_kanban_group_show_success .o_kanban_header{background-color: #eff5f0; border-color: #91d09f;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .progress-bar.bg-success-full{border: 1px solid white;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .oe_kanban_card_success{order: 1; margin-bottom: 4px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .oe_kanban_card_success ~ .oe_kanban_card_success{margin-top: -5px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .oe_kanban_card_success ~ .o_kanban_load_more{margin-top: -4px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .o_kanban_load_more{order: 2; padding: 4px 0 8px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .o_kanban_record:not(.oe_kanban_card_success){order: 3; opacity: 0.5; box-shadow: none;} .o_kanban_view .o_kanban_group.o_kanban_group_show_success .o_kanban_record:not(.oe_kanban_card_success):hover, .o_kanban_view .o_kanban_group.o_kanban_group_show_success .o_kanban_record:not(.oe_kanban_card_success):focus, .o_kanban_view .o_kanban_group.o_kanban_group_show_success .o_kanban_record:not(.oe_kanban_card_success).focus{opacity: 1;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning, .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .o_kanban_header{background-color: #f9f6ed; border-color: #fcdd80;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .progress-bar.bg-warning-full{border: 1px solid white;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .oe_kanban_card_warning{order: 1; margin-bottom: 4px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .oe_kanban_card_warning ~ .oe_kanban_card_warning{margin-top: -5px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .oe_kanban_card_warning ~ .o_kanban_load_more{margin-top: -4px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .o_kanban_load_more{order: 2; padding: 4px 0 8px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .o_kanban_record:not(.oe_kanban_card_warning){order: 3; opacity: 0.5; box-shadow: none;} .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .o_kanban_record:not(.oe_kanban_card_warning):hover, .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .o_kanban_record:not(.oe_kanban_card_warning):focus, .o_kanban_view .o_kanban_group.o_kanban_group_show_warning .o_kanban_record:not(.oe_kanban_card_warning).focus{opacity: 1;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger, .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .o_kanban_header{background-color: #f8eff0; border-color: #eb979f;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .progress-bar.bg-danger-full{border: 1px solid white;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .oe_kanban_card_danger{order: 1; margin-bottom: 4px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .oe_kanban_card_danger ~ .oe_kanban_card_danger{margin-top: -5px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .oe_kanban_card_danger ~ .o_kanban_load_more{margin-top: -4px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .o_kanban_load_more{order: 2; padding: 4px 0 8px;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .o_kanban_record:not(.oe_kanban_card_danger){order: 3; opacity: 0.5; box-shadow: none;} .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .o_kanban_record:not(.oe_kanban_card_danger):hover, .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .o_kanban_record:not(.oe_kanban_card_danger):focus, .o_kanban_view .o_kanban_group.o_kanban_group_show_danger .o_kanban_record:not(.oe_kanban_card_danger).focus{opacity: 1;} .o_kanban_view .o_kanban_group.o_kanban_group_show{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap;} .o_kanban_view .o_kanban_group.o_kanban_group_show > *{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} @keyframes grow{0%{transform: scale3d(1, 1, 1);}30%{transform: scale3d(1.1, 1.1, 1.1);}100%{transform: scale3d(1, 1, 1);}} @keyframes grow_huge{0%{transform: scale3d(1, 1, 1);}30%{transform: scale3d(1.3, 1.3, 1.3);}100%{transform: scale3d(1, 1, 1);}} \n/* /web/static/src/scss/kanban_view.scss defined in bundle 'web.assets_backend' */\n .o_kanban_view{display: -webkit-box; display: -webkit-flex; display: flex; align-content: stretch; overflow-x: visible;} @media (max-width: 767.98px){.o_kanban_view{padding: 0px !important;}} .o_kanban_view .o_kanban_record, .o_kanban_view .o_kanban_quick_create{padding: 8px 8px; border: 1px solid #dee2e6; background-color: white;} @media (max-width: 767.98px){.o_kanban_view .o_kanban_record, .o_kanban_view .o_kanban_quick_create{padding: 8px 16px;}} .o_kanban_view .o_kanban_record:focus, .o_kanban_view .o_kanban_record:focus-within, .o_kanban_view .o_kanban_quick_create:focus, .o_kanban_view .o_kanban_quick_create:focus-within{-webkit-box-shadow: 1px 1px 1px 0px #6c757d; -moz-box-shadow: 1px 1px 1px 0px #6c757d; box-shadow: 1px 1px 1px 0px #6c757d; z-index: 1; outline: none;} .o_kanban_view .o_kanban_quick_create{box-shadow: 0 0 20px -10px; margin: 0 8px -1px 8px; margin-bottom: 8px;} .o_kanban_view .o_kanban_quick_create .o_form_view{padding: 0;} .o_kanban_view .o_kanban_quick_create .o_form_view .o_group.o_inner_group{margin: 0;} .o_kanban_view .o_kanban_quick_create.o_disabled{pointer-events: none; opacity: 0.7;} .o_kanban_view .o_kanban_record{position: relative; display: inline-block; border-color: #ced4da; min-width: 150px; margin: 0 0 -1px;} .o_kanban_view .o_kanban_record::after{content: ""; position: absolute; top: 0; left: -1px; bottom: 0; right: auto; width: 3px;} .o_kanban_view .o_kanban_record .o_kanban_record_top, .o_kanban_view .o_kanban_record .o_kanban_record_body{margin-bottom: 5px;} .o_kanban_view .o_kanban_record .o_kanban_record_top, .o_kanban_view .o_kanban_record .o_kanban_record_bottom{display: -webkit-box; display: -webkit-flex; display: flex;} .o_kanban_view .o_kanban_record .o_kanban_record_top{align-items: flex-start;} .o_kanban_view .o_kanban_record .o_kanban_record_top .o_dropdown_kanban{position: relative; top: auto; right: auto;} .o_kanban_view .o_kanban_record .o_kanban_record_top .o_kanban_record_headings{line-height: 1.2; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; word-wrap: break-word; overflow: hidden;} .o_kanban_view .o_kanban_record .o_kanban_record_title{color: inherit; font-size: 13px; font-weight: 500; margin-bottom: 0; margin-top: 0;} .o_kanban_view .o_kanban_record .o_kanban_record_subtitle{display: block; margin-top: 2.5px;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_left, .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_right{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; min-height: 20px;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_left{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_left > *{margin-right: 6px; line-height: 1;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_left .o_priority_star{margin-top: 1px; font-size: 18px;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_right{-webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .oe_kanban_bottom_right .oe_kanban_avatar{width: 20px; height: 20px; margin-left: 6px;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .o_link_muted{color: #4c4c4c;} .o_kanban_view .o_kanban_record .o_kanban_record_bottom .o_link_muted:hover{color: #7C7BAD; text-decoration: underline;} .o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill{display: -webkit-box; display: -webkit-flex; display: flex;} .o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill .o_kanban_image_fill_left{position: relative; margin: -8px -8px; margin-right: 16px; flex: 1 0 95px; min-height: 95px; background-size: cover; background-position: center;} .o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill .o_kanban_image{margin-right: 16px; flex: 0 0 64px; min-height: 64px; align-self: baseline;} @media (min-width: 768px){.o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill .o_kanban_image{margin-left: 7.5px; margin-right: 30px; align-self: center;}} .o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill .o_kanban_image + div{padding-left: 0;} .o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill .o_kanban_image_fill_left .o_kanban_image_inner_pic, .o_kanban_view .o_kanban_record.o_kanban_record_has_image_fill .o_kanban_image .o_kanban_image_inner_pic{position: absolute; top: auto; left: auto; bottom: 0; right: 0; max-height: 25px; max-width: 80%; background: white; box-shadow: -1px -1px 0 1px white;} .o_kanban_view .oe_kanban_card .o_dropdown_kanban, .o_kanban_view .o_kanban_record .o_dropdown_kanban{position: absolute; top: 8px; left: auto; bottom: auto; right: 8px; visibility: hidden;} @media (max-width: 767.98px){.o_kanban_view .oe_kanban_card .o_dropdown_kanban, .o_kanban_view .o_kanban_record .o_dropdown_kanban{visibility: visible;}} .o_kanban_view .oe_kanban_card .o_dropdown_kanban .dropdown-toggle, .o_kanban_view .o_kanban_record .o_dropdown_kanban .dropdown-toggle{margin: -1px -1px auto auto; padding: 4px 8px; border: 1px solid transparent; border-bottom: none; vertical-align: top; color: #4c4c4c; margin: -9px -9px 0 0;} .o_kanban_view .oe_kanban_card .o_dropdown_kanban .dropdown-toggle:hover, .o_kanban_view .o_kanban_record .o_dropdown_kanban .dropdown-toggle:hover{color: inherit;} .o_kanban_view .oe_kanban_card .o_dropdown_kanban .dropdown-toggle:focus, .o_kanban_view .oe_kanban_card .o_dropdown_kanban .dropdown-toggle:active, .o_kanban_view .oe_kanban_card .o_dropdown_kanban .dropdown-toggle:focus:active, .o_kanban_view .o_kanban_record .o_dropdown_kanban .dropdown-toggle:focus, .o_kanban_view .o_kanban_record .o_dropdown_kanban .dropdown-toggle:active, .o_kanban_view .o_kanban_record .o_dropdown_kanban .dropdown-toggle:focus:active{outline: none;} .o_kanban_view .oe_kanban_card .o_dropdown_kanban.show .dropdown-toggle, .o_kanban_view .o_kanban_record .o_dropdown_kanban.show .dropdown-toggle{position: relative; background: white; border-color: #ced4da; z-index: 1001;} .o_kanban_view .oe_kanban_card .o_dropdown_kanban .dropdown-menu, .o_kanban_view .o_kanban_record .o_dropdown_kanban .dropdown-menu{position: absolute; top: auto; left: auto; bottom: auto; right: -1px; margin-top: -1px; border-color: #ced4da; right: -9px; min-width: 11rem;} .o_kanban_view .oe_kanban_card:hover .o_dropdown_kanban, .o_kanban_view .oe_kanban_card .o_dropdown_kanban.show, .o_kanban_view .o_kanban_record:hover .o_dropdown_kanban, .o_kanban_view .o_kanban_record .o_dropdown_kanban.show{visibility: visible;} .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker{max-width: 150px; padding: 3px 15px 3px 20px;} .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker > li, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker > li{display: inline-block; margin: 5px 5px 0 0; border: 1px solid white; box-shadow: 0 0 0 1px #dee2e6;} .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker > li > a, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker > li > a{display: block;} .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker > li > a::after, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker > li > a::after{content: ""; display: block; width: 20px; height: 15px;} .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker > li:first-child > a, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker > li:first-child > a{position: relative;} t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -248 /web/content/248-32fd946/web.assets_backend.1.css web.assets_backend.1.css \N \N ir.ui.view View \N 0 1 binary /web/content/248-32fd946/web.assets_backend.1.css t \N \N 84/84b247907594142916dde444ce3c1cf75082c678 89242 84b247907594142916dde444ce3c1cf75082c678 text/css .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker > li:first-child > a::before, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker > li:first-child > a::before{content: ""; position: absolute; top: -2px; left: 10px; bottom: auto; right: auto; display: block; width: 1px; height: 20px; transform: rotate(45deg); background-color: red;} .o_kanban_view .oe_kanban_card .oe_kanban_colorpicker > li:first-child > a::after, .o_kanban_view .o_kanban_record .oe_kanban_colorpicker > li:first-child > a::after{background-color: white;} .o_kanban_view .oe_kanban_card .o_field_many2manytags, .o_kanban_view .oe_kanban_card .o_kanban_tags, .o_kanban_view .o_kanban_record .o_field_many2manytags, .o_kanban_view .o_kanban_record .o_kanban_tags{display: block; margin-bottom: 5px; line-height: 1.2;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag{display: inline-block; margin-right: 4px; font-size: 11px; font-weight: 500; background-color: transparent; color: inherit; box-shadow: none;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_0 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_0 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_0 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_0 span{background-color: #777777;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_1 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_1 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_1 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_1 span{background-color: #F06050;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_2 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_2 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_2 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_2 span{background-color: #F4A460;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_3 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_3 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_3 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_3 span{background-color: #F7CD1F;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_4 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_4 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_4 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_4 span{background-color: #6CC1ED;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_5 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_5 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_5 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_5 span{background-color: #814968;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_6 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_6 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_6 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_6 span{background-color: #EB7E7F;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_7 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_7 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_7 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_7 span{background-color: #2C8397;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_8 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_8 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_8 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_8 span{background-color: #475577;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_9 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_9 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_9 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_9 span{background-color: #D6145F;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_10 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_10 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_10 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_10 span{background-color: #30C381;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag.o_tag_color_11 span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag.o_tag_color_11 span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag.o_tag_color_11 span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag.o_tag_color_11 span{background-color: #9365B8;} .o_kanban_view .oe_kanban_card .o_field_many2manytags .o_tag span, .o_kanban_view .oe_kanban_card .o_kanban_tags .o_tag span, .o_kanban_view .o_kanban_record .o_field_many2manytags .o_tag span, .o_kanban_view .o_kanban_record .o_kanban_tags .o_tag span{display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 100%;} .o_kanban_view .oe_kanban_card .o_kanban_image, .o_kanban_view .o_kanban_record .o_kanban_image{position: relative; text-align: center;} .o_kanban_view .oe_kanban_card .o_kanban_image img, .o_kanban_view .o_kanban_record .o_kanban_image img{max-width: 100%;} .o_kanban_view .oe_kanban_card .o_kanban_button, .o_kanban_view .o_kanban_record .o_kanban_button{margin-top: 15px;} .o_kanban_view .oe_kanban_card .o_kanban_button > button, .o_kanban_view .oe_kanban_card .o_kanban_button > a, .o_kanban_view .o_kanban_record .o_kanban_button > button, .o_kanban_view .o_kanban_record .o_kanban_button > a{position: absolute; top: auto; left: auto; bottom: 8px; right: 8px;} @media (max-width: 767.98px){.o_kanban_view .oe_kanban_card .o_kanban_button > button, .o_kanban_view .oe_kanban_card .o_kanban_button > a, .o_kanban_view .o_kanban_record .o_kanban_button > button, .o_kanban_view .o_kanban_record .o_kanban_button > a{right: 16px;}} .o_kanban_view .oe_kanban_card.oe_kanban_global_click, .o_kanban_view .oe_kanban_card.oe_kanban_global_click_edit, .o_kanban_view .o_kanban_record.oe_kanban_global_click, .o_kanban_view .o_kanban_record.oe_kanban_global_click_edit{cursor: pointer;} .o_kanban_view .oe_kanban_card.ui-sortable-helper, .o_kanban_view .o_kanban_record.ui-sortable-helper{transform: rotate(-3deg); box-shadow: 0 5px 25px -10px black; transition: transform 0.6s, box-shadow 0.3s;} .o_kanban_view .oe_kanban_card .o_attachment_image > img, .o_kanban_view .o_kanban_record .o_attachment_image > img{width: 100%; height: auto;} .o_kanban_view .oe_kanban_card .o_progressbar, .o_kanban_view .o_kanban_record .o_progressbar{display: -webkit-box; display: -webkit-flex; display: flex; height: 20px;} .o_kanban_view .oe_kanban_card .o_progressbar .o_progressbar_title, .o_kanban_view .o_kanban_record .o_progressbar .o_progressbar_title{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_kanban_view .oe_kanban_card .o_progressbar .o_progress, .o_kanban_view .o_kanban_record .o_progressbar .o_progress{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; margin-top: 3px;} .o_kanban_view .oe_kanban_card .o_progressbar .o_progressbar_value, .o_kanban_view .o_kanban_record .o_progressbar .o_progressbar_value{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; width: auto; height: 100%; text-align: right;} .o_kanban_view .oe_kanban_card .o_progressbar input.o_progressbar_value, .o_kanban_view .o_kanban_record .o_progressbar input.o_progressbar_value{width: 15%; margin-left: 8px;} .o_kanban_view .oe_kanban_card .o_kanban_image, .o_kanban_view .o_kanban_record .o_kanban_image{float: left; width: 64px;} .o_kanban_view .oe_kanban_card .o_kanban_image + div, .o_kanban_view .o_kanban_record .o_kanban_image + div{padding-left: 72px;} @media (max-width: 767.98px){.o_kanban_view .oe_kanban_card .o_kanban_image + div, .o_kanban_view .o_kanban_record .o_kanban_image + div{padding-left: 80px;}} .o_kanban_view .oe_kanban_card .oe_kanban_details, .o_kanban_view .o_kanban_record .oe_kanban_details{width: 100%; min-width: 0;} .o_kanban_view .oe_kanban_card .oe_kanban_details ul, .o_kanban_view .o_kanban_record .oe_kanban_details ul{margin-bottom: 2.5px; padding-left: 0; list-style: none; font-size: 0.94791667rem;} .o_kanban_view .oe_kanban_card .oe_kanban_details ul li, .o_kanban_view .o_kanban_record .oe_kanban_details ul li{margin-bottom: 2px;} .o_kanban_view .oe_kanban_card .o_kanban_footer, .o_kanban_view .o_kanban_record .o_kanban_footer{display: -webkit-box; display: -webkit-flex; display: flex; justify-content: space-between; align-items: center;} .o_kanban_view .oe_kanban_card .o_kanban_footer > *, .o_kanban_view .o_kanban_record .o_kanban_footer > *{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_kanban_view .oe_kanban_card .oe_kanban_text_red, .o_kanban_view .o_kanban_record .oe_kanban_text_red{color: #A61300; font-weight: bold;} .o_kanban_view .oe_kanban_card .o_text_bold, .o_kanban_view .o_kanban_record .o_text_bold{font-weight: bold;} .o_kanban_view .oe_kanban_card .o_text_block, .o_kanban_view .o_kanban_record .o_text_block{display: block;} .o_kanban_view.o_kanban_grouped{min-height: 100%; padding: 0; background-color: #f9f9f9;} .o_kanban_view.o_kanban_grouped .o_kanban_record, .o_kanban_view.o_kanban_grouped .o_kanban_quick_create{width: 100%; margin-left: 0; margin-right: 0;} .o_kanban_view.o_kanban_grouped.o_kanban_small_column .o_kanban_group:not(.o_column_folded){width: 272px;} .o_kanban_view .o_kanban_group{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; padding: 0 16px 16px 16px;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; height: 50px; line-height: 2.2; color: inherit;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_column_title{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top; font-size: 16px; font-weight: 500;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_column_unfold{display: none;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_quick_add i{display: block; text-align: center; color: #4c4c4c; font-size: 0.94791667rem; cursor: pointer; opacity: 0.5; margin-left: 16px;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_quick_add i:hover, .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_quick_add i:focus, .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_quick_add i.focus{opacity: 1;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title:hover .o_kanban_config, .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_config.show{visibility: visible; margin-left: 8px;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_config{visibility: hidden;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_config i{display: block; text-align: center; color: #4c4c4c; font-size: 0.94791667rem; cursor: pointer; opacity: 0.5;} .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_config i:hover, .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_config i:focus, .o_kanban_view .o_kanban_group .o_kanban_header > .o_kanban_header_title .o_kanban_config i.focus{opacity: 1;} .o_kanban_view .o_kanban_group .o_kanban_load_more{padding: 8px 0; box-shadow: inset 0 10px 13px -13px black; text-align: center;} .o_kanban_view .o_kanban_group.ui-sortable-helper{box-shadow: 0 0 30px -10px black;} .o_kanban_view .o_kanban_group:not(.o_column_folded){width: 332px;} .o_kanban_view .o_kanban_group.o_kanban_dragged{background-color: #4c4c4c;} .o_kanban_view .o_kanban_group.o_kanban_dragged .o_kanban_record{visibility: hidden;} .o_kanban_view.ui-sortable .o_kanban_header_title{cursor: move;} .o_kanban_view .o_kanban_group.o_column_folded{position: relative; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; margin: 0; padding: 0 11px; cursor: pointer; background-color: #f0f0f0; background-color: #ececec;} .o_kanban_view .o_kanban_group.o_column_folded + .o_kanban_group.o_column_folded{margin-left: 1px;} .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_header_title{position: relative; opacity: 0.5;} .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_header_title .o_column_title{position: absolute; top: 16px; left: -10px; bottom: auto; right: auto; transform-origin: left bottom 0; transform: rotate(90deg); overflow: visible; white-space: nowrap; font-size: 15px;} .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_header_title .o_column_unfold{display: block; text-align: center; color: #4c4c4c; font-size: 0.94791667rem; cursor: pointer; opacity: 1;} .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_header_title .o_column_unfold:hover, .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_header_title .o_column_unfold:focus, .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_header_title .o_column_unfold.focus{opacity: 1;} .o_kanban_view .o_kanban_group.o_column_folded > .o_kanban_record, .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_quick_add, .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_config, .o_kanban_view .o_kanban_group.o_column_folded .o_kanban_load_more{display: none !important;} .o_kanban_view .o_kanban_group.o_column_folded:hover .o_kanban_header_title, .o_kanban_view .o_kanban_group.o_column_folded.o_kanban_hover .o_kanban_header_title{opacity: 1;} .o_kanban_view .o_column_quick_create .o_quick_create_folded{cursor: pointer; padding: 12px 16px; white-space: nowrap; color: #adb5bd; opacity: 0.6;} .o_kanban_view .o_column_quick_create .o_quick_create_folded:hover{opacity: 1;} .o_kanban_view .o_column_quick_create .o_quick_create_folded .o_kanban_add_column{display: inline-block; padding: 10px 14px; background-color: #dee2e6;} .o_kanban_view .o_column_quick_create .o_quick_create_folded .o_kanban_title{margin-left: 10px;} .o_kanban_view .o_column_quick_create .o_quick_create_unfolded{padding: 8px 8px; width: 240px; height: 100%; border: none; box-shadow: 0 0 20px -10px; background-color: #f8f9fa;} .o_kanban_view .o_column_quick_create .o_quick_create_unfolded .o_kanban_header{height: 50px;} .o_kanban_view .o_column_quick_create .o_quick_create_unfolded .o_kanban_header .o_kanban_examples{cursor: pointer;} .o_kanban_view .o_column_quick_create .o_quick_create_unfolded .o_kanban_header input, .o_kanban_view .o_column_quick_create .o_quick_create_unfolded .o_kanban_header input:focus, .o_kanban_view .o_column_quick_create .o_quick_create_unfolded .o_kanban_header input:hover{font-size: 16px; background: transparent;} .o_kanban_view .o_column_quick_create .o_quick_create_unfolded .o_kanban_muted_record{background: #dee2e6; height: 70px; margin: 10px 0px;} .o_kanban_view.o_kanban_ungrouped{-webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-box-pack: start; justify-content: flex-start; padding: 8px 8px;} .o_kanban_view.o_kanban_ungrouped .o_kanban_record{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; width: 300px; margin: 4px 8px;} @media (max-width: 767.98px){.o_kanban_view.o_kanban_ungrouped .o_kanban_record{margin: 0 0 -1px 0; flex: 1 0 100%;}} .o_kanban_view.o_kanban_ungrouped .o_kanban_record.o_kanban_ghost{height: 0; min-height: 0 !important; visibility: hidden; margin-top: 0; margin-bottom: 0; padding: 0;} .o_kanban_view.o_kanban_mobile .o_kanban_record div.label{display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top;} .o_kanban_view .oe_kanban_color_1::after{background-color: #F06050;} .o_kanban_view .oe_kanban_color_2::after{background-color: #F4A460;} .o_kanban_view .oe_kanban_color_3::after{background-color: #F7CD1F;} .o_kanban_view .oe_kanban_color_4::after{background-color: #6CC1ED;} .o_kanban_view .oe_kanban_color_5::after{background-color: #814968;} .o_kanban_view .oe_kanban_color_6::after{background-color: #EB7E7F;} .o_kanban_view .oe_kanban_color_7::after{background-color: #2C8397;} .o_kanban_view .oe_kanban_color_8::after{background-color: #475577;} .o_kanban_view .oe_kanban_color_9::after{background-color: #D6145F;} .o_kanban_view .oe_kanban_color_10::after{background-color: #30C381;} .o_kanban_view .oe_kanban_color_11::after{background-color: #9365B8;} .o_kanban_view .oe_kanban_color_help{position: absolute; top: 0; left: -1px; bottom: 0; right: auto; width: 3px; z-index: 1;} \n/* /web/static/src/scss/kanban_view_mobile.scss defined in bundle 'web.assets_backend' */\n @media (max-width: 767.98px){.o_kanban_view.o_kanban_grouped{display: block; position: relative; overflow-x: hidden;}.o_kanban_view.o_kanban_grouped .o_kanban_mobile_tabs{height: 40px; position: relative; background-color: #5E5E5E;}.o_kanban_view.o_kanban_grouped .o_kanban_mobile_tabs .o_kanban_mobile_tab{position: absolute; top: auto; left: 100%; bottom: auto; right: auto; transform: translateX(-50%); height: 40px; padding: 10px; font-size: 14px; color: white;}.o_kanban_view.o_kanban_grouped .o_kanban_mobile_tabs .o_kanban_mobile_tab.o_current{font-weight: bold; border-bottom: 3px solid #7C7BAD;}.o_kanban_view.o_kanban_grouped .o_kanban_mobile_tabs .o_kanban_mobile_tab .o_column_title{white-space: nowrap;}.o_kanban_view.o_kanban_grouped[class] .o_kanban_group:not(.o_column_folded){position: absolute; top: 40px; left: 0; bottom: 0; right: auto; width: 100%; padding: 0; margin-left: 0; border: none;}.o_kanban_view.o_kanban_grouped[class] .o_kanban_group:not(.o_column_folded) .o_kanban_header{display: none;}.o_kanban_view.o_kanban_grouped[class] .o_kanban_group:not(.o_column_folded) .o_kanban_record, .o_kanban_view.o_kanban_grouped[class] .o_kanban_group:not(.o_column_folded) .o_kanban_quick_create{border: none; border-bottom: 1px solid lightgray; padding: 10px 16px; margin: 0;}} \n/* /web/static/src/scss/web_calendar.scss defined in bundle 'web.assets_backend' */\n @keyframes backgroundfade{from{background-color: rgba(124, 123, 173, 0.5);}to{background-color: #f5f5f5;}} .o_calendar_container{height: 100%; padding-top: 8px; padding-right: 16px; padding-bottom: 8px; padding-left: 16px; display: -webkit-box; display: -webkit-flex; display: flex;} .o_calendar_container a.o_calendar_color_1{color: #fdfdfd; background-color: #0000ff; border-color: #2626ff; opacity: 0.7;} .o_calendar_container a.o_calendar_color_1.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_1:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_1{border-bottom: 4px solid #0000ff;} .o_calendar_container a.o_calendar_color_2{color: #fdfdfd; background-color: #ff0000; border-color: #ff2626; opacity: 0.7;} .o_calendar_container a.o_calendar_color_2.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_2:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_2{border-bottom: 4px solid #ff0000;} .o_calendar_container a.o_calendar_color_3{color: #0d0d0d; background-color: #00ff00; border-color: #02db02; opacity: 0.7;} .o_calendar_container a.o_calendar_color_3.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_3:hover{color: #5a5959;} .o_calendar_container .o_underline_color_3{border-bottom: 4px solid #00ff00;} .o_calendar_container a.o_calendar_color_4{color: #fdfdfd; background-color: #00002b; border-color: #26264b; opacity: 0.7;} .o_calendar_container a.o_calendar_color_4.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_4:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_4{border-bottom: 4px solid #00002b;} .o_calendar_container a.o_calendar_color_5{color: #fdfdfd; background-color: #ff1ab8; border-color: #ff3cc2; opacity: 0.7;} .o_calendar_container a.o_calendar_color_5.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_5:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_5{border-bottom: 4px solid #ff1ab8;} .o_calendar_container a.o_calendar_color_6{color: #0d0d0d; background-color: #ffd300; border-color: #dbb502; opacity: 0.7;} .o_calendar_container a.o_calendar_color_6.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_6:hover{color: #5a5959;} .o_calendar_container .o_underline_color_6{border-bottom: 4px solid #ffd300;} .o_calendar_container a.o_calendar_color_7{color: #fdfdfd; background-color: #005700; border-color: #267026; opacity: 0.7;} .o_calendar_container a.o_calendar_color_7.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_7:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_7{border-bottom: 4px solid #005700;} .o_calendar_container a.o_calendar_color_8{color: #0d0d0d; background-color: #8383ff; border-color: #7171db; opacity: 0.7;} .o_calendar_container a.o_calendar_color_8.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_8:hover{color: #5a5959;} .o_calendar_container .o_underline_color_8{border-bottom: 4px solid #8383ff;} .o_calendar_container a.o_calendar_color_9{color: #fdfdfd; background-color: #9e4f46; border-color: #ac6961; opacity: 0.7;} .o_calendar_container a.o_calendar_color_9.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_9:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_9{border-bottom: 4px solid #9e4f46;} .o_calendar_container a.o_calendar_color_10{color: #0d0d0d; background-color: #72f6ff; border-color: #63d3db; opacity: 0.7;} .o_calendar_container a.o_calendar_color_10.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_10:hover{color: #5a5959;} .o_calendar_container .o_underline_color_10{border-bottom: 4px solid #72f6ff;} .o_calendar_container a.o_calendar_color_11{color: #0d0d0d; background-color: #00ffc1; border-color: #02dba6; opacity: 0.7;} .o_calendar_container a.o_calendar_color_11.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_11:hover{color: #5a5959;} .o_calendar_container .o_underline_color_11{border-bottom: 4px solid #00ffc1;} .o_calendar_container a.o_calendar_color_12{color: #fdfdfd; background-color: #008395; border-color: #2695a5; opacity: 0.7;} .o_calendar_container a.o_calendar_color_12.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_12:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_12{border-bottom: 4px solid #008395;} .o_calendar_container a.o_calendar_color_13{color: #fdfdfd; background-color: #00007b; border-color: #26268f; opacity: 0.7;} .o_calendar_container a.o_calendar_color_13.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_13:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_13{border-bottom: 4px solid #00007b;} .o_calendar_container a.o_calendar_color_14{color: #0d0d0d; background-color: #95d34f; border-color: #81b545; opacity: 0.7;} .o_calendar_container a.o_calendar_color_14.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_14:hover{color: #5a5959;} .o_calendar_container .o_underline_color_14{border-bottom: 4px solid #95d34f;} .o_calendar_container a.o_calendar_color_15{color: #0d0d0d; background-color: #f69edb; border-color: #d388bc; opacity: 0.7;} .o_calendar_container a.o_calendar_color_15.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_15:hover{color: #5a5959;} .o_calendar_container .o_underline_color_15{border-bottom: 4px solid #f69edb;} .o_calendar_container a.o_calendar_color_16{color: #fdfdfd; background-color: #d311ff; border-color: #d934ff; opacity: 0.7;} .o_calendar_container a.o_calendar_color_16.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_16:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_16{border-bottom: 4px solid #d311ff;} .o_calendar_container a.o_calendar_color_17{color: #fdfdfd; background-color: #7b1a69; border-color: #8f3c7f; opacity: 0.7;} .o_calendar_container a.o_calendar_color_17.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_17:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_17{border-bottom: 4px solid #7b1a69;} .o_calendar_container a.o_calendar_color_18{color: #fdfdfd; background-color: #f61160; border-color: #f73478; opacity: 0.7;} .o_calendar_container a.o_calendar_color_18.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_18:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_18{border-bottom: 4px solid #f61160;} .o_calendar_container a.o_calendar_color_19{color: #0d0d0d; background-color: #ffc183; border-color: #dba671; opacity: 0.7;} .o_calendar_container a.o_calendar_color_19.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_19:hover{color: #5a5959;} .o_calendar_container .o_underline_color_19{border-bottom: 4px solid #ffc183;} .o_calendar_container a.o_calendar_color_20{color: #fdfdfd; background-color: #72607b; border-color: #87788f; opacity: 0.7;} .o_calendar_container a.o_calendar_color_20.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_20:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_20{border-bottom: 4px solid #72607b;} .o_calendar_container a.o_calendar_color_21{color: #fdfdfd; background-color: #232308; border-color: #44442d; opacity: 0.7;} .o_calendar_container a.o_calendar_color_21.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_21:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_21{border-bottom: 4px solid #232308;} .o_calendar_container a.o_calendar_color_22{color: #0d0d0d; background-color: #8ca77b; border-color: #79906b; opacity: 0.7;} .o_calendar_container a.o_calendar_color_22.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_22:hover{color: #5a5959;} .o_calendar_container .o_underline_color_22{border-bottom: 4px solid #8ca77b;} .o_calendar_container a.o_calendar_color_23{color: #0d0d0d; background-color: #f68308; border-color: #d37109; opacity: 0.7;} .o_calendar_container a.o_calendar_color_23.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_23:hover{color: #5a5959;} .o_calendar_container .o_underline_color_23{border-bottom: 4px solid #f68308;} .o_calendar_container a.o_calendar_color_24{color: #fdfdfd; background-color: #837200; border-color: #958726; opacity: 0.7;} .o_calendar_container a.o_calendar_color_24.o_event_hightlight{opacity: 1.0; color: black;} .o_calendar_container a.o_calendar_color_24:hover{color: #d7d7d7;} .o_calendar_container .o_underline_color_24{border-bottom: 4px solid #837200;} .o_calendar_container .o_calendar_view{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; min-width: 0;} .o_calendar_container .o_calendar_view .o_calendar_widget{height: 100%; background-color: white;} .o_calendar_container .o_calendar_view .o_calendar_widget *{z-index: 0;} .o_calendar_container .o_calendar_view .o_calendar_widget .fc-week-number, .o_calendar_container .o_calendar_view .o_calendar_widget .fc-widget-header{background-color: white;} .o_calendar_container .o_calendar_view .o_calendar_widget .o_avatar_square{border-radius: 5px; display: inline-block; opacity: 1; border: 1px solid #999;} .o_calendar_container .o_calendar_view .o_calendar_widget .o_fields img, .o_calendar_container .o_calendar_view .o_calendar_widget .o_avatar_square{vertical-align: middle; margin-left: 1px; width: 18px; height: 18px;} .o_calendar_container .o_calendar_view .o_calendar_widget .o_field_type_char:first-child{font-weight: bold;} .o_calendar_container .o_calendar_view .o_calendar_widget .fc-view{overflow-x: auto;} .o_calendar_container .o_calendar_sidebar_container{flex: 0 0 16px; position: relative;} .o_calendar_container .o_calendar_sidebar_container.o_sidebar_hidden{margin-right: -16px;} .o_calendar_container .o_calendar_sidebar_container.o_sidebar_hidden .o_calendar_sidebar_toggler{padding: 4px; color: #acadad;} .o_calendar_container .o_calendar_sidebar_container .o_calendar_sidebar_toggler{position: absolute; top: 0; left: auto; bottom: auto; right: 0; cursor: pointer; padding: 6px; z-index: 1;} .o_calendar_container .o_calendar_sidebar_container .o_calendar_sidebar_toggler:hover{color: black;} .o_calendar_container .o_calendar_sidebar_container .o_calendar_sidebar{width: 250px; margin-left: 8px; background: white;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker{width: 100%; font-size: 8pt; border-radius: 0; border: none; padding: 0;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header{display: -webkit-box; display: -webkit-flex; display: flex; background: none; background-color: white; border-radius: 0;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-prev, .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-next{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; position: static; cursor: pointer; padding: 2px; text-align: center; color: #4c4c4c;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-prev.ui-state-hover, .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-next.ui-state-hover{background: none; border: none; color: black;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-prev .ui-icon, .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-next .ui-icon{display: none;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-prev{order: 1;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-prev:after{font-family: FontAwesome; content: "\n";} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-next{order: 3;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-next:before{font-family: FontAwesome; content: "\n";} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker .ui-widget-header .ui-datepicker-title{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; order: 2; display: inline-block; margin: 0 10px;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker table td{padding: 0 2px 2px 0; background-color: white;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker table td a{border: none; background: none; background-color: white; text-align: center;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker table .ui-state-default{color: #7C7BAD;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker table .ui-state-default:hover{background: none; background-color: rgba(124, 123, 173, 0.5); border-color: #7C7BAD; color: white;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker table .ui-state-active{background: none; background-color: #7C7BAD; color: white;} .o_calendar_container .o_calendar_sidebar_container .ui-datepicker table .o_selected_range.o_color{background: none; background-color: #7C7BAD; animation: backgroundfade 3s forwards;} .o_calendar_container .o_calendar_sidebar_container .o_calendar_filter{padding: 8px; border-top: 1px solid lightgray;} .o_calendar_container .o_calendar_sidebar_container .o_calendar_filter .o_field_many2one{width: 100%;} .o_calendar_container .fc-time-grid-event.fc-short .fc-time:before{content: '';} .modal .o_attendee_head{width: 32px; margin-right: 5px;} .o_dashboard .o_calendar_container .o_calendar_sidebar_container{display: none;} @media (max-width: 767.98px){.o_calendar_container{padding: 0;}} @media (max-width: 767.98px){.o_control_panel .o_calendar_button_today{float: right;}.o_control_panel .o_calendar_button_today > .o_calendar_text{margin-top: 3px;}.o_calendar_view .fc-day-header{word-spacing: 1000px;}} \n/* /web/static/src/scss/search_view.scss defined in bundle 'web.assets_backend' */\n .o_searchview{align-items: flex-end; position: relative; padding: 0 20px 1px 0;} .o_searchview .o_searchview_more{font-size: 16px; cursor: pointer;} .o_searchview .o_searchview_input_container{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap;} .o_searchview .o_searchview_input_container .o_searchview_facet{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; max-width: 100%; display: -webkit-box; display: -webkit-flex; display: flex; position: relative; margin: 1px 3px 0 0;} .o_searchview .o_searchview_input_container .o_searchview_facet .o_searchview_facet_label{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top; padding: 0 3px; color: white; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center;} .o_searchview .o_searchview_input_container .o_searchview_facet .o_facet_values{direction: ltr; padding: 0 18px 0 5px;} .o_searchview .o_searchview_input_container .o_searchview_facet .o_facet_values .o_facet_values_sep{font-style: italic;} .o_searchview .o_searchview_input_container .o_searchview_facet .o_facet_remove{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; display: -webkit-box; display: -webkit-flex; display: flex; justify-content: center; align-items: center; position: absolute; top: 0; left: auto; bottom: 0; right: 0; width: 18px; cursor: pointer;} .o_searchview .o_searchview_input_container .o_searchview_input{width: 100px; -webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto;} .o_searchview .o_searchview_input_container .o_searchview_more{font-size: 16px; cursor: pointer;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete{position: absolute; top: 100%; left: auto; bottom: auto; right: auto; width: 100%;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li{padding-left: 25px; position: relative;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li.o-indent{padding-left: 50px;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li a{display: inline-block; padding-left: 0px; padding-right: 0px;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li a:hover{background-color: inherit;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li a.o-expand, .o_searchview .o_searchview_input_container .o_searchview_autocomplete li a.o-expanded{position: absolute; top: auto; left: 6px; bottom: auto; right: auto; padding: 3px;} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li a.o-expand:before{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0.3em solid transparent; border-left: 0.3em solid; border-right: 0; border-top: 0.3em solid transparent; -moz-transform: scale(0.9999);} .o_searchview .o_searchview_input_container .o_searchview_autocomplete li a.o-expanded:before{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999);} .o_dropdown{white-space: nowrap; display: inline-block; cursor: pointer; user-select: none;} .o_dropdown .dropdown-toggle:first-child{padding-right: 10px;} .o_dropdown > a{color: #4c4c4c;} .o_dropdown > a:hover{text-decoration: none; font-weight: bold; color: #333232;} .o_dropdown.show > a{font-weight: bold; color: #333232;} .o_closed_menu{position: relative;} .o_closed_menu:before{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0.3em solid transparent; border-left: 0.3em solid; border-right: 0; border-top: 0.3em solid transparent; -moz-transform: scale(0.9999); position: absolute; top: 50%; left: 10px; bottom: auto; right: auto; margin-top: -0.3em;} .o_open_menu{position: relative;} .o_open_menu:before{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999); position: absolute; top: 50%; left: 10px; bottom: auto; right: auto; margin-top: -0.3em;} .o_filters_menu, .o_group_by_menu, .o_time_range_menu{max-height: calc(100vh - 125px); overflow: auto;} .o_filters_menu .o_submenu_switcher, .o_group_by_menu .o_submenu_switcher{position: absolute; top: auto; left: auto; bottom: auto; right: 0.75rem;} .o_filters_menu .o_filter_condition{width: auto; max-width: 250px; margin-bottom: 8px;} .o_filters_menu .o_filter_condition .o_or_filter{display: none; position: absolute; top: 3px; left: 4px; bottom: auto; right: auto;} .o_filters_menu .o_filter_condition + .o_filter_condition .o_or_filter{display: block;} .o_filters_menu .o_searchview_extended_prop_op{margin: 3px 0px;} .o_filters_menu .o_searchview_extended_prop_value .datepickerbutton{position: absolute; top: 3px; left: auto; bottom: auto; right: -20px; cursor: pointer;} .o_filters_menu .o_searchview_extended_delete_prop{position: absolute; top: 6px; left: auto; bottom: auto; right: 4px; cursor: pointer;} .o_filters_menu .o_add_filter_menu{display: none; width: auto; max-width: 250px;} .o_favorites_menu{max-height: 75vh; overflow-y: auto; max-height: calc(100vh - 125px); overflow: auto;} .o_favorites_menu .dropdown-divider{display: none;} .o_favorites_menu .o-searchview-custom-private .o-remove-filter, .o_favorites_menu .o-searchview-custom-public .o-remove-filter{position: absolute; top: 50%; left: auto; bottom: auto; right: 12px; margin-top: -6px; cursor: pointer;} .o_favorites_menu .o-searchview-custom-public a:after{font-family: FontAwesome; content: "\\f0c0"; margin-left: 5px; font-weight: normal;} .o_favorites_menu .o_save_name{display: none; width: auto; max-width: 250px;} .o_time_range_menu .dropdown-item-text > label, .o_time_range_menu .custom-control-label{font-weight: bold;} \n/* /web/static/src/scss/search_view_mobile.scss defined in bundle 'web.assets_backend' */\n .o_web_client .o_mobile_search{position: fixed; top: 0; left: 0; bottom: 0; padding: 0; width: 100%; background-color: white; z-index: 1000; overflow: auto;} .o_web_client .o_mobile_search .o_mobile_search_header{height: 46px; margin-bottom: 10px; width: 100%; background-color: #7C7BAD; color: white;} .o_web_client .o_mobile_search .o_mobile_search_header span:active{background-color: #5f5e97;} .o_web_client .o_mobile_search .o_searchview_input_container{display: -webkit-box; display: -webkit-flex; display: flex; padding: 15px 20px 0 20px; position: relative;} .o_web_client .o_mobile_search .o_searchview_input_container .o_searchview_input{width: 100%; margin-bottom: 15px; border-bottom: 1px solid #f0eeee;} .o_web_client .o_mobile_search .o_searchview_input_container .o_searchview_facet{border-radius: 10px; display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; order: 1;} .o_web_client .o_mobile_search .o_searchview_input_container .o_searchview_facet .o_searchview_facet_label{border-radius: 2em 0em 0em 2em;} .o_web_client .o_mobile_search .o_searchview_input_container .o_searchview_autocomplete{top: 100%;} .o_web_client .o_mobile_search .o_searchview_input_container .o_searchview_autocomplete > li{margin: 5px 0px;} .o_web_client .o_mobile_search .o_mobile_search_filter{padding-bottom: 15%;} .o_web_client .o_mobile_search .o_mobile_search_filter .o_dropdown{width: 100%; margin: 15px 5px 0px 5px; border: solid 1px #aeb9c4;} .o_web_client .o_mobile_search .o_mobile_search_filter .o_dropdown_toggler_btn{width: 100%; text-align: left;} .o_web_client .o_mobile_search .o_mobile_search_filter .dropdown-backdrop{z-index: -1;} .o_web_client .o_mobile_search .o_mobile_search_filter .dropdown-menu{position: relative !important; width: 100% !important; transform: translate3d(0, 0, 0) !important; box-shadow: none; border: none; color: #6c757d;} .o_web_client .o_mobile_search .o_mobile_search_filter .dropdown-menu .divider{margin: 0px;} .o_web_client .o_mobile_search .o_mobile_search_filter .dropdown-menu > li > a{padding: 10px 26px;} .o_web_client .o_mobile_search .o_mobile_search_show_result{position: fixed; bottom: 0; left: 0; right: 0; padding: 15px; font-size: 17px; z-index: 1000;} \n/* /web/static/src/scss/dropdown_menu.scss defined in bundle 'web.assets_backend' */\n .o_dropdown_menu{min-width: 150px; max-height: calc(100vh - 140px); overflow: auto;} .o_dropdown_menu > .dropdown-divider:first-child{display: none;} .o_dropdown_menu .o_menu_item{position: relative;} .o_dropdown_menu .o_menu_item > .dropdown-item{color: #4c4c4c;} .o_dropdown_menu .o_menu_item > .dropdown-item:hover{color: #333232;} .o_dropdown_menu .o_menu_item .dropdown-divider:first-child{display: none;} .dropdown-item{position: relative; color: #4c4c4c;} .dropdown-item:hover{color: #333232;} .dropdown-item.selected{color: #333232; font-weight: bold;} .dropdown-item.selected:before{font-family: FontAwesome; position: absolute; left: 4px; content: "\\f00c";} \n/* /web/static/src/scss/search_view_extra.scss defined in bundle 'web.assets_backend' */\n .o_searchview{background-color: white; border: 1px solid #ccc; border-radius: 3px; padding: 1px 25px 3px 5px;} .o_searchview .o_searchview_facet{border: 1px solid #6c757d; background: #e2e2e0;} .o_searchview .o_searchview_facet .o_searchview_facet_label{background-color: #7C7BAD;} .o_searchview .o_searchview_facet .o_facet_remove{color: #6c757d;} .o_searchview .o_searchview_facet .o_facet_remove:hover{color: #495057;} .o_searchview .o_searchview_input{border: none; padding: 4px 0 0 0;} .o_searchview .o_searchview_more{position: absolute; top: 6px; left: auto; bottom: auto; right: 5px;} .o_searchview .o_searchview_autocomplete li.o-selection-focus{background-color: #7C7BAD;} .o_searchview .o_searchview_autocomplete li.o-selection-focus > a{color: white;} \n/* /web/static/src/scss/data_export.scss defined in bundle 'web.assets_backend' */\n .o_web_client .o_export{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; min-height: 0;} .o_web_client .o_export > p, .o_web_client .o_export > .row{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_web_client .o_export .o_export_panel{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; position: relative; min-height: 0;} .o_web_client .o_export .o_export_panel > div{height: 100%; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; justify-content: center;} .o_web_client .o_export .o_export_panel > div.o_left_panel{position: absolute; top: 0; left: 0; bottom: 0; right: 57%;} .o_web_client .o_export .o_export_panel > div.o_center_panel{position: absolute; top: 0; left: 43%; bottom: 0; right: 43%;} .o_web_client .o_export .o_export_panel > div.o_right_panel{position: absolute; top: 0; left: 57%; bottom: 0; right: 0;} .o_web_client .o_export .o_export_panel > div > h4, .o_web_client .o_export .o_export_panel > div > div{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_web_client .o_export .o_export_panel > div > button{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; margin-top: 10px;} .o_web_client .o_export .o_export_panel > div .o_left_field_panel, .o_web_client .o_export .o_export_panel > div .o_fields_list{border: 1px solid #e2e2e0; overflow: auto; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; min-height: 0;} .o_web_client .o_export .o_export_panel > div .o_export_tree_item{cursor: pointer; position: relative; padding-left: 20px; user-select: none;} .o_web_client .o_export .o_export_panel > div .o_export_tree_item.o_selected > .o_tree_column{background-color: #7C7BAD; color: white;} .o_web_client .o_export .o_export_panel > div .o_export_tree_item .o_expand_parent{position: absolute; top: 4px; left: 5px; bottom: auto; right: auto; font-size: 10px;} .o_web_client .o_export .o_export_panel > div .o_export_tree_item .o_tree_column{display: block;} .o_web_client .o_export .o_export_panel > div .o_export_tree_item .o_tree_column.o_required{border-bottom: 2px solid #4c4c4c;} .o_web_client .o_export .o_export_panel > div .o_export_tree_item:focus{outline: none;} .o_web_client .o_export .o_export_panel > div .o_save_list, .o_web_client .o_export .o_export_panel > div .o_exported_lists{display: -webkit-box; display: -webkit-flex; display: flex; align-items: baseline;} .o_web_client .o_export .o_export_panel > div .o_save_list > label, .o_web_client .o_export .o_export_panel > div .o_save_list > button, .o_web_client .o_export .o_export_panel > div .o_exported_lists > label, .o_web_client .o_export .o_export_panel > div .o_exported_lists > button{margin: 0 0 5px; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto;} .o_web_client .o_export .o_export_panel > div .o_save_list > input, .o_web_client .o_export .o_export_panel > div .o_save_list > select, .o_web_client .o_export .o_export_panel > div .o_exported_lists > input, .o_web_client .o_export .o_export_panel > div .o_exported_lists > select{width: 0; -webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto;} \n/* /base/static/src/scss/onboarding.scss defined in bundle 'web.assets_backend' */\n .o_onboarding{position: relative; overflow: hidden; background: white center top; background-size: cover; border-bottom: 1px solid #dee2e6;} .o_onboarding .o_onboarding_wrap{padding: 32px 16px;} .o_onboarding .o_onboarding_step_title, .o_onboarding a.o_onboarding_all_done{cursor: pointer;} .o_onboarding .o_onboarding_btn_close{position: absolute; top: auto; left: auto; bottom: 0; right: 0; padding: 6px 12px; cursor: pointer;} .o_onboarding .o_onboarding_btn_close{top: 0; bottom: auto;} .o_onboarding .o_onboarding_completed_message{position: absolute; top: auto; left: 0; bottom: 0; right: 0; box-shadow: 0 2px 10px; padding: 16px; background-color: white; color: #4c4c4c; opacity: 0; z-index: -1;} .o_onboarding .o_onboarding_completed_message.o_onboarding_steps_just_done{animation: o_onb_fadeIn 1.5s;} .o_onboarding .o_onboarding_completed_message.o_onboarding_steps_done{opacity: 1; z-index: auto;} .o_onboarding .o_onboarding_steps, .o_onboarding .o_onboarding_step{display: -webkit-box; display: -webkit-flex; display: flex;} .o_onboarding .o_onboarding_steps{-webkit-flex-flow: row nowrap; flex-flow: row nowrap; justify-content: initial;} @media (max-width: 767.98px){.o_onboarding .o_onboarding_steps{-webkit-flex-flow: column nowrap; flex-flow: column nowrap;}} .o_onboarding .o_onboarding_step{-webkit-flex-flow: column nowrap; flex-flow: column nowrap; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; align-items: center; text-align: center; position: relative; opacity: 0.6;} @media (max-width: 767.98px){.o_onboarding .o_onboarding_step{text-align: left; margin-bottom: 16px; align-items: baseline;}.o_onboarding .o_onboarding_step .o_onboarding_step_content{max-width: none;}} .o_onboarding .o_onboarding_step:first-of-type .o_onboarding_progress{display: none !important;} .o_onboarding .o_onboarding_step:first-of-type .o_onboarding_dot{transition-delay: 0s;} .o_onboarding .o_onboarding_step .o_onboarding_step_content{max-width: 230px; padding: 0 10px;} @media (min-width: 992px){.o_onboarding .o_onboarding_step .o_onboarding_step_content{min-width: 230px;}} .o_onboarding .o_onboarding_step .o_onboarding_step_content .o_onboarding_step_action{border: 1px solid #e9ecef; display: none;} .o_onboarding .o_onboarding_step .o_onboarding_step_content p{opacity: 0.8;} .o_onboarding .o_onboarding_step .o_onboarding_progress{position: absolute; top: 8px; left: auto; bottom: auto; right: calc(50% + 10px); width: calc(100% - 20px); height: 4px; background-color: #e9ecef;} .o_onboarding .o_onboarding_step .o_onboarding_progress .progress-bar{background-image: linear-gradient(90deg, #7C7BAD, #7C7BAD); transition: opacity 0.5s;} .o_onboarding .o_onboarding_step .o_onboarding_dot{width: 20px; height: 20px; color: transparent; padding-top: 5px; font-size: 11px; display: inline-block; border-radius: 100%; background-color: #e9ecef; position: relative; transition: background 0.5s ease 0.5s;} .o_onboarding .o_onboarding_step .o_onboarding_all_done{display: none;} .o_onboarding .o_onboarding_step.o_onboarding_current, .o_onboarding .o_onboarding_step.o_onboarding_done{opacity: 1;} .o_onboarding .o_onboarding_step.o_onboarding_current .o_onboarding_progress .progress-bar, .o_onboarding .o_onboarding_step.o_onboarding_done .o_onboarding_progress .progress-bar{width: 100%; box-shadow: none; transition: width 0.5s;} .o_onboarding .o_onboarding_step.o_onboarding_current .o_onboarding_step_action, .o_onboarding .o_onboarding_step.o_onboarding_current .o_onboarding_dot{animation: bounceIn 1s;} .o_onboarding .o_onboarding_step.o_onboarding_current .o_onboarding_step_action{display: inline-block;} .o_onboarding .o_onboarding_step.o_onboarding_current .o_onboarding_dot{background: #7C7BAD;} .o_onboarding .o_onboarding_step.o_onboarding_done .o_onboarding_dot{background: #7C7BAD; color: white;} .o_onboarding .o_onboarding_step.o_onboarding_done .o_onboarding_all_done{display: block;} .o_onboarding .o_onboarding_step.o_onboarding_done + .o_onboarding_done .o_onboarding_dot{transition-delay: 0s;} .o_onboarding .o_onboarding_step.o_onboarding_done + .o_onboarding_done .o_onboarding_progress{background: #7C7BAD;} .o_onboarding .o_onboarding_step.o_onboarding_done + .o_onboarding_done .progress-bar{opacity: 0;} .o_onboarding .o_onboarding_step.o_onboarding_just_done .o_onboarding_all_done{animation: bounceIn 1s; display: block;} .o_onboarding .o_onboarding_step.o_onboarding_just_done .o_onboarding_step_content_info{animation: o_onb_fadeIn 1.5s;} @keyframes o_onb_fadeIn{0%{opacity: 0;}33%{opacity: 0;}100%{opacity: 1;}} .o_onboarding.o_onboarding_blue, .o_onboarding.o_onboarding_blue .o_onboarding_step_title, .o_onboarding.o_onboarding_blue .o_onboarding_step_action, .o_onboarding.o_onboarding_blue a.o_onboarding_all_done, .o_onboarding.o_onboarding_blue .o_onboarding_all_done > .fa, .o_onboarding.o_onboarding_blue .o_onboarding_btn_close{color: white !important;} .o_onboarding.o_onboarding_blue .o_onboarding_wrap{background-color: rgba(73, 144, 179, 0.75); background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(96, 171, 195, 0.5)), to(#4187AE)); background-image: -webkit-linear-gradient(top, rgba(96, 171, 195, 0.5), #4187AE); background-image: -moz-linear-gradient(top, rgba(96, 171, 195, 0.5), #4187AE); background-image: -ms-linear-gradient(top, rgba(96, 171, 195, 0.5), #4187AE); background-image: -o-linear-gradient(top, rgba(96, 171, 195, 0.5), #4187AE); background-image: linear-gradient(to bottom, rgba(96, 171, 195, 0.5), #4187AE); box-shadow: inset 0 -7px 20px -5px rgba(0, 0, 0, 0.3);} .o_onboarding.o_onboarding_blue .o_onboarding_dot, .o_onboarding.o_onboarding_blue .o_onboarding_progress{background-color: rgba(255, 255, 255, 0.5);} .o_onboarding.o_onboarding_blue .o_onboarding_step_action{border-color: rgba(255, 255, 255, 0.5);} .o_onboarding.o_onboarding_blue .progress-bar{background-image: linear-gradient(90deg, #F39D9B, #FBEEC8);} .o_onboarding.o_onboarding_blue .o_onboarding_step.o_onboarding_done .o_onboarding_dot, .o_onboarding.o_onboarding_blue .o_onboarding_step.o_onboarding_done .o_onboarding_progress, .o_onboarding.o_onboarding_blue .o_onboarding_step .o_onboarding_done + .o_onboarding_done .o_onboarding_dot, .o_onboarding.o_onboarding_blue .o_onboarding_step .o_onboarding_done + .o_onboarding_done .o_onboarding_progress{background: #F39D9B;} .o_onboarding.o_onboarding_blue .o_onboarding_step.o_onboarding_current .o_onboarding_dot{background: #FBEEC8;} .o_onboarding.o_onboarding_orange, .o_onboarding.o_onboarding_orange .o_onboarding_step_title, .o_onboarding.o_onboarding_orange .o_onboarding_step_action, .o_onboarding.o_onboarding_orange a.o_onboarding_all_done, .o_onboarding.o_onboarding_orange .o_onboarding_all_done > .fa, .o_onboarding.o_onboarding_orange .o_onboarding_btn_close{color: white !important;} .o_onboarding.o_onboarding_orange .o_onboarding_wrap{background-color: rgba(193, 117, 89, 0.75); background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(218, 157, 119, 0.5)), to(#B9684F)); background-image: -webkit-linear-gradient(top, rgba(218, 157, 119, 0.5), #B9684F); background-image: -moz-linear-gradient(top, rgba(218, 157, 119, 0.5), #B9684F); background-image: -ms-linear-gradient(top, rgba(218, 157, 119, 0.5), #B9684F); background-image: -o-linear-gradient(top, rgba(218, 157, 119, 0.5), #B9684F); background-image: linear-gradient(to bottom, rgba(218, 157, 119, 0.5), #B9684F); box-shadow: inset 0 -7px 20px -5px rgba(0, 0, 0, 0.3);} .o_onboarding.o_onboarding_orange .o_onboarding_dot, .o_onboarding.o_onboarding_orange .o_onboarding_progress{background-color: rgba(255, 255, 255, 0.5);} .o_onboarding.o_onboarding_orange .o_onboarding_step_action{border-color: rgba(255, 255, 255, 0.5);} .o_onboarding.o_onboarding_orange .progress-bar{background-image: linear-gradient(90deg, #599FF1, #68B3C9);} .o_onboarding.o_onboarding_orange .o_onboarding_step.o_onboarding_done .o_onboarding_dot, .o_onboarding.o_onboarding_orange .o_onboarding_step.o_onboarding_done .o_onboarding_progress, .o_onboarding.o_onboarding_orange .o_onboarding_step .o_onboarding_done + .o_onboarding_done .o_onboarding_dot, .o_onboarding.o_onboarding_orange .o_onboarding_step .o_onboarding_done + .o_onboarding_done .o_onboarding_progress{background: #599FF1;} .o_onboarding.o_onboarding_orange .o_onboarding_step.o_onboarding_current .o_onboarding_dot{background: #68B3C9;} .o_onboarding.o_onboarding_violet, .o_onboarding.o_onboarding_violet .o_onboarding_step_title, .o_onboarding.o_onboarding_violet .o_onboarding_step_action, .o_onboarding.o_onboarding_violet a.o_onboarding_all_done, .o_onboarding.o_onboarding_violet .o_onboarding_all_done > .fa, .o_onboarding.o_onboarding_violet .o_onboarding_btn_close{color: white !important;} .o_onboarding.o_onboarding_violet .o_onboarding_wrap{background-color: rgba(77, 98, 172, 0.75); background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(96, 112, 195, 0.5)), to(#475DA4)); background-image: -webkit-linear-gradient(top, rgba(96, 112, 195, 0.5), #475DA4); background-image: -moz-linear-gradient(top, rgba(96, 112, 195, 0.5), #475DA4); background-image: -ms-linear-gradient(top, rgba(96, 112, 195, 0.5), #475DA4); background-image: -o-linear-gradient(top, rgba(96, 112, 195, 0.5), #475DA4); background-image: linear-gradient(to bottom, rgba(96, 112, 195, 0.5), #475DA4); box-shadow: inset 0 -7px 20px -5px rgba(0, 0, 0, 0.3);} .o_onboarding.o_onboarding_violet .o_onboarding_dot, .o_onboarding.o_onboarding_violet .o_onboarding_progress{background-color: rgba(255, 255, 255, 0.5);} .o_onboarding.o_onboarding_violet .o_onboarding_step_action{border-color: rgba(255, 255, 255, 0.5);} .o_onboarding.o_onboarding_violet .progress-bar{background-image: linear-gradient(90deg, #F39D9B, #FBEEC8);} .o_onboarding.o_onboarding_violet .o_onboarding_step.o_onboarding_done .o_onboarding_dot, .o_onboarding.o_onboarding_violet .o_onboarding_step.o_onboarding_done .o_onboarding_progress, .o_onboarding.o_onboarding_violet .o_onboarding_step .o_onboarding_done + .o_onboarding_done .o_onboarding_dot, .o_onboarding.o_onboarding_violet .o_onboarding_step .o_onboarding_done + .o_onboarding_done .o_onboarding_progress{background: #F39D9B;} .o_onboarding.o_onboarding_violet .o_onboarding_step.o_onboarding_current .o_onboarding_dot{background: #FBEEC8;} .o_onboarding .o_onboarding_confetti{animation: cannon-explosion 1.5s ease-out 0s 1 normal both; position: absolute; top: 0; left: auto; bottom: 30px; right: 50%; transform-origin: 50% 100%; display: none; width: 1px;} @keyframes cannon-explosion{0%{transform: scale(0);}70%{opacity: 1;}100%{opacity: 0;}} .o_onboarding .o_onboarding_confetti > div{position: absolute; top: auto; left: 0; bottom: 5px; right: 0; transform-origin: 50% 100%; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; justify-content: space-around; align-content: center; padding-bottom: 30%;} .o_onboarding .o_onboarding_confetti > div:nth-child(1), .o_onboarding .o_onboarding_confetti > div:nth-child(5){height: 90%; transform: rotate(-20deg);} .o_onboarding .o_onboarding_confetti > div:nth-child(2), .o_onboarding .o_onboarding_confetti > div:nth-child(4){height: 95%; transform: rotate(-10deg);} .o_onboarding .o_onboarding_confetti > div:nth-child(3){height: 100%;} .o_onboarding .o_onboarding_confetti > div:nth-child(4){transform: rotate(10deg);} .o_onboarding .o_onboarding_confetti > div:nth-child(5){transform: rotate(20deg);} .o_onboarding .o_onboarding_confetti > div > div{-webkit-box-flex: 0; -webkit-flex: 0 1 auto; flex: 0 1 auto; animation: confetti-rotate-l 1.5s ease-out 0s 1 normal both;} .o_onboarding .o_onboarding_confetti > div > div:nth-child(odd){animation: confetti-rotate-r 1.5s ease-out 0s 1 normal both;} @keyframes confetti-rotate-l{0%{transform: rotate(0) scaleY(1);}50%{transform: rotate(2turn) scaleY(1.5); opacity: 1;}100%{transform: rotate(2.05turn) scaleY(1); opacity: 0;}} @keyframes confetti-rotate-r{0%{transform: rotate(0) scaleY(1);}50%{transform: rotate(-2turn) scaleY(1.5); opacity: 1;}100%{transform: rotate(-2.05turn) scaleY(1); opacity: 0;}} .o_onboarding .o_onboarding_confetti > div > div.ribbon{width: .3em; height: .7em; border-radius: .1em;} .o_onboarding .o_onboarding_confetti > div > div.flake{width: .3em; height: .3em; border-radius: 50%;} .o_onboarding .o_onboarding_confetti > div > div.color-1{background-color: #feb535;} .o_onboarding .o_onboarding_confetti > div > div.color-2{background-color: #bea4ff;} .o_onboarding .o_onboarding_confetti > div > div.color-3{background-color: #ff6e83;} .o_onboarding .o_onboarding_confetti > div > div.color-4{background-color: #58cafe;} .o_onboarding .o_onboarding_just_done .o_onboarding_confetti{display: block;} \n/* /web/static/src/scss/base_settings.scss defined in bundle 'web.assets_backend' */\n .o_form_view.o_form_nosheet.o_base_settings{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; padding: 0px;} .o_base_settings{height: 100%;} @media (max-width: 767.98px){.o_base_settings{-webkit-flex-flow: column nowrap; flex-flow: column nowrap;}} .o_base_settings .o_control_panel .o_panel{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; margin-bottom: 12px; width: 100%;} .o_base_settings .o_control_panel .o_panel .title, .o_base_settings .o_control_panel .o_panel .o_setting_search{-webkit-box-flex: 1; -webkit-flex: 1 0 auto; flex: 1 0 auto; width: 237.5px;} .o_base_settings .o_control_panel .o_panel .o_setting_search{position: relative;} .o_base_settings .o_control_panel .o_panel .o_setting_search .searchInput{height: 28px; padding: 0px; border: 0px; border-bottom: 1px solid #ced4da; border-color: #495057; box-shadow: none; font-weight: 500;} .o_base_settings .o_control_panel .o_panel .o_setting_search .searchIcon{position: absolute; top: 4px; left: auto; bottom: auto; right: 0; color: #495057;} .o_base_settings .o_control_panel .o_form_statusbar{padding: 0; margin: 0; border: 0;} .o_base_settings .o_control_panel .o_form_statusbar .btn-primary, .o_base_settings .o_control_panel .o_form_statusbar .btn-link{padding: 0.25rem 0.5rem;} .o_base_settings .o_control_panel .o_form_statusbar .btn-link{color: #7C7BAD;} .o_base_settings .o_control_panel .o_form_statusbar .btn-link:hover, .o_base_settings .o_control_panel .o_form_statusbar .btn-link:focus, .o_base_settings .o_control_panel .o_form_statusbar .btn-link.focus{color: #555487;} .o_base_settings .o_setting_container{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; overflow: auto;} @media (max-width: 767.98px){.o_base_settings .o_setting_container{-webkit-flex-flow: column nowrap; flex-flow: column nowrap;}} .o_base_settings .o_setting_container .settings_tab{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; background: #212529; overflow: auto; padding-top: 8px;} @media (max-width: 767.98px){.o_base_settings .o_setting_container .settings_tab{flex: 0 0 40px; display: -webkit-inline-box; display: -webkit-inline-flex; display: inline-flex; position: relative; overflow: hidden; padding: 0;}} .o_base_settings .o_setting_container .settings_tab .selected{background-color: #212529; box-shadow: inset 3px 0 0 #7C7BAD;} .o_base_settings .o_setting_container .settings_tab .selected .app_name{color: white;} .o_base_settings .o_setting_container .settings_tab .tab{display: -webkit-box; display: -webkit-flex; display: flex; padding: 0 32px 0 16px; height: 40px; color: #ced4da; font-size: 13px; line-height: 40px; cursor: pointer; white-space: nowrap;} .o_base_settings .o_setting_container .settings_tab .tab .icon{width: 23px; min-width: 23px; margin-right: 10px;} @media (max-width: 767.98px){.o_base_settings .o_setting_container .settings_tab .tab{display: block; position: absolute; top: auto; left: 100%; bottom: auto; right: auto; width: auto; height: 40px; padding: 10px 16px; text-align: center; font-size: 14px; font-weight: 500; line-height: inherit; transition: 0.2s all ease 0s; transform: translate3d(0, 0, 0);}.o_base_settings .o_setting_container .settings_tab .tab .app_name{display: block; white-space: nowrap;}.o_base_settings .o_setting_container .settings_tab .tab:after{content: ''; background: #7C7BAD; opacity: 0; position: absolute; top: auto; left: 0; bottom: 0; right: 0; width: 100%; height: 3px; transition: 0.2s all ease 0s;}.o_base_settings .o_setting_container .settings_tab .tab.previous, .o_base_settings .o_setting_container .settings_tab .tab.before{left: -3%;}.o_base_settings .o_setting_container .settings_tab .tab.current{left: 50%; color: white; box-shadow: none; background: none;}.o_base_settings .o_setting_container .settings_tab .tab.current:after{opacity: 1;}.o_base_settings .o_setting_container .settings_tab .tab.next, .o_base_settings .o_setting_container .settings_tab .tab.after{left: 103%;}} .o_base_settings .o_setting_container .settings{position: relative; flex: 1 1 100%; background-color: white; overflow: auto;} .o_base_settings .o_setting_container .settings > .app_settings_block h2{margin-bottom: 0; padding: 0.25rem 16px; background-color: #e9ecef; font-size: 15px; font-weight: bold;} @media (min-width: 1200px){.o_base_settings .o_setting_container .settings > .app_settings_block h2{padding-left: 32px;}} .o_base_settings .o_setting_container .settings > .app_settings_block h2:first-of-type{margin-top: 10px !important;} .o_base_settings .o_setting_container .settings > .app_settings_block .o_settings_container{max-width: 992px; padding: 0 16px;} @media (min-width: 1200px){.o_base_settings .o_setting_container .settings > .app_settings_block .o_settings_container{padding-left: 32px;}} .o_base_settings .o_setting_container .settings .settingSearchHeader{display: -webkit-box; display: -webkit-flex; display: flex; margin: 30px 0 10px; padding: 0.25rem 16px; background-color: #e9ecef;} @media (min-width: 1200px){.o_base_settings .o_setting_container .settings .settingSearchHeader{padding-left: 32px;}} .o_base_settings .o_setting_container .settings .settingSearchHeader .icon{width: 25px; height: 25px; margin-right: 10px;} .o_base_settings .o_setting_container .settings .settingSearchHeader .appName{color: inherit; font-size: 17px;} .o_base_settings .o_setting_container .settings .notFound{color: #adb5bd; text-align: center; font-size: 25px; padding-top: 50px;} .o_base_settings .o_setting_container .settings .highlighter{background: yellow;} .o_base_settings .o_setting_container .d-block{display: block !important;} \n/* /web/static/src/scss/report_backend.scss defined in bundle 'web.assets_backend' */\n .o_report_iframe{position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: none;} .o_report_no_edit_mode, .o_edit_mode_available, .o_report_edit_mode{display: inline-block;} \n/* /base_import/static/src/scss/base_import.scss defined in bundle 'web.assets_backend' */\n .oe_import{padding-top: 8px; padding-right: 16px; padding-bottom: 0px; padding-left: 16px; overflow: auto; position: absolute; top: 0; right: 0; bottom: 0; left: 0;} @media (max-width: 767.98px){.oe_import{position: static;}} .oe_import > p{text-align: justify;} .oe_import h2{margin-top: 0; font-size: large;} .oe_import .oe_padding{padding: 13px 0;} .oe_import .oe_import_advanced_mode{margin-left: 20px;} .oe_import .oe_import_box{padding: 8px; background: #F0EEEE; border-radius: 3px; border: solid 1px #dddddd;} .oe_import .oe_import_box label{font-weight: normal;} .oe_import .oe_import_box .oe_import_file{display: inline-block;} .oe_import a.oe_import_toggle{display: block;} .oe_import a.oe_import_toggle:before{content: '+';} .oe_import .oe_import_options{margin-top: 8px;} .oe_import .oe_import_options p{margin: 0;} .oe_import .oe_import_options label{width: 150px; line-height: 32px; text-align: right;} .oe_import dd, .oe_import .oe_import_toggled, .oe_import .oe_import_grid, .oe_import .oe_import_error_report, .oe_import .oe_import_noheaders, .oe_import .oe_import_report_more{display: none;} .oe_import .oe_import_with_file label{font-weight: normal;} .oe_import.oe_import_preview .oe_import_grid{display: table;} .oe_import.oe_import_error .oe_import_error_report, .oe_import.oe_import_noheaders .oe_import_noheaders, .oe_import .oe_import_report_showmore .oe_import_report_more{display: block;} .oe_import .oe_import_error_report > ul{padding: 0;} .oe_import .oe_import_error_report .oe_import_report{padding: 4px; margin: 2px 0; list-style: none; border-radius: 3px;} .oe_import .oe_import_grid tr.oe_import_grid-header:first-child{line-height: 24px; font-weight: normal;} .oe_import .oe_import_grid tr td{padding: 4px; vertical-align: top;} .oe_import .select2-default{color: #F00 !important;} .oe_import_selector{font-size: 0.94791667rem; width: 250px !important;} .oe_import_selector ul, .oe_import_selector li{margin: 0; padding: 0;} .o-list-buttons.o-editing .o_button_import{display: none;} \n/* /web_diagram/static/src/scss/diagram_view.scss defined in bundle 'web.assets_backend' */\n .o_diagram_view, .o_diagram{height: 100%; background-color: white;} .o_diagram_view .o_diagram_header, .o_diagram .o_diagram_header{padding-top: 16px; padding-right: 16px; padding-bottom: 16px; padding-left: 16px;} .o_diagram_view .o_diagram_header > span, .o_diagram .o_diagram_header > span{display: block; text-align: justify;} \n/* /web_editor/static/src/scss/web_editor.common.scss defined in bundle 'web.assets_backend' */\n html, body{position: relative; width: 100%; height: 100%;} .css_non_editable_mode_hidden{display: none !important;} .editor_enable .css_editable_mode_hidden{display: none !important;} .note-toolbar{margin-left: 0 !important;} .note-popover .popover > .arrow{display: none;} #wrapwrap table.table.table-bordered, .o_editable table.table.table-bordered{table-layout: fixed;} #wrapwrap table.table.table-bordered td, .o_editable table.table.table-bordered td{min-width: 20px;} @media (max-width: 767.98px){#wrapwrap .table-responsive > table.table, .o_editable .table-responsive > table.table{table-layout: auto;}} img.shadow{box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);} img.padding-small, .img.padding-small, span.fa.padding-small, iframe.padding-small{padding: 4px;} img.padding-medium, .img.padding-medium, span.fa.padding-medium, iframe.padding-medium{padding: 8px;} img.padding-large, .img.padding-large, span.fa.padding-large, iframe.padding-large{padding: 16px;} img.padding-xl, .img.padding-xl, span.fa.padding-xl, iframe.padding-xl{padding: 32px;} .fa-6x{font-size: 6em;} .fa-7x{font-size: 7em;} .fa-8x{font-size: 8em;} .fa-9x{font-size: 9em;} .fa-10x{font-size: 10em;} .fa.d-block.mx-auto{text-align: center;} div.media_iframe_video{margin: 0 auto; text-align: center; position: relative; overflow: hidden;} div.media_iframe_video iframe{width: 100%; height: 100%; position: absolute; top: 0; left: auto; bottom: auto; right: auto; margin: 0 auto; margin-left: -50%;} div.media_iframe_video.padding-small iframe{padding: 4px;} div.media_iframe_video.padding-medium iframe{padding: 8px;} div.media_iframe_video.padding-large iframe{padding: 16px;} div.media_iframe_video.padding-xl iframe{padding: 32px;} div.media_iframe_video .media_iframe_video_size{padding-bottom: 66.5%; position: relative; width: 100%; height: 0;} div.media_iframe_video .css_editable_mode_display{position: absolute; top: auto; left: auto; bottom: auto; right: auto; width: 100%; height: 100%; display: none; z-index: 2;} html[data-browser^="msie"] div.media_iframe_video iframe{margin-left: 0;} @media (max-width: 767.98px){img, .media_iframe_video, span.fa, i.fa{transform: none !important;}} address .fa.fa-mobile-phone{margin: 0 3px 0 2px;} address .fa.fa-file-text-o{margin-right: 1px;} span[data-oe-type="monetary"]{white-space: nowrap;} ul.oe_menu_editor .oe_menu_placeholder{outline: 1px dashed #4183C4;} ul.oe_menu_editor ul{list-style: none;} ul.oe_menu_editor li div{cursor: move;} .mt0{margin-top: 0px !important;} .mb0{margin-bottom: 0px !important;} .pt0{padding-top: 0px !important;} .pb0{padding-bottom: 0px !important;} .mt8{margin-top: 8px !important;} .mb8{margin-bottom: 8px !important;} .pt8{padding-top: 8px !important;} .pb8{padding-bottom: 8px !important;} .mt16{margin-top: 16px !important;} .mb16{margin-bottom: 16px !important;} .pt16{padding-top: 16px !important;} .pb16{padding-bottom: 16px !important;} .mt24{margin-top: 24px !important;} .mb24{margin-bottom: 24px !important;} .pt24{padding-top: 24px !important;} .pb24{padding-bottom: 24px !important;} .mt32{margin-top: 32px !important;} .mb32{margin-bottom: 32px !important;} .pt32{padding-top: 32px !important;} .pb32{padding-bottom: 32px !important;} .mt40{margin-top: 40px !important;} .mb40{margin-bottom: 40px !important;} .pt40{padding-top: 40px !important;} .pb40{padding-bottom: 40px !important;} .mt48{margin-top: 48px !important;} .mb48{margin-bottom: 48px !important;} .pt48{padding-top: 48px !important;} .pb48{padding-bottom: 48px !important;} .mt56{margin-top: 56px !important;} .mb56{margin-bottom: 56px !important;} .pt56{padding-top: 56px !important;} .pb56{padding-bottom: 56px !important;} .mt64{margin-top: 64px !important;} .mb64{margin-bottom: 64px !important;} .pt64{padding-top: 64px !important;} .pb64{padding-bottom: 64px !important;} .mt72{margin-top: 72px !important;} .mb72{margin-bottom: 72px !important;} .pt72{padding-top: 72px !important;} .pb72{padding-bottom: 72px !important;} .mt80{margin-top: 80px !important;} .mb80{margin-bottom: 80px !important;} .pt80{padding-top: 80px !important;} .pb80{padding-bottom: 80px !important;} .mt88{margin-top: 88px !important;} .mb88{margin-bottom: 88px !important;} .pt88{padding-top: 88px !important;} .pb88{padding-bottom: 88px !important;} .mt96{margin-top: 96px !important;} .mb96{margin-bottom: 96px !important;} .pt96{padding-top: 96px !important;} .pb96{padding-bottom: 96px !important;} .mt104{margin-top: 104px !important;} .mb104{margin-bottom: 104px !important;} .pt104{padding-top: 104px !important;} .pb104{padding-bottom: 104px !important;} .mt112{margin-top: 112px !important;} .mb112{margin-bottom: 112px !important;} .pt112{padding-top: 112px !important;} .pb112{padding-bottom: 112px !important;} .mt120{margin-top: 120px !important;} .mb120{margin-bottom: 120px !important;} .pt120{padding-top: 120px !important;} .pb120{padding-bottom: 120px !important;} .mt128{margin-top: 128px !important;} .mb128{margin-bottom: 128px !important;} .pt128{padding-top: 128px !important;} .pb128{padding-bottom: 128px !important;} .mt136{margin-top: 136px !important;} .mb136{margin-bottom: 136px !important;} .pt136{padding-top: 136px !important;} .pb136{padding-bottom: 136px !important;} .mt144{margin-top: 144px !important;} .mb144{margin-bottom: 144px !important;} .pt144{padding-top: 144px !important;} .pb144{padding-bottom: 144px !important;} .mt152{margin-top: 152px !important;} .mb152{margin-bottom: 152px !important;} .pt152{padding-top: 152px !important;} .pb152{padding-bottom: 152px !important;} .mt160{margin-top: 160px !important;} .mb160{margin-bottom: 160px !important;} .pt160{padding-top: 160px !important;} .pb160{padding-bottom: 160px !important;} .mt168{margin-top: 168px !important;} .mb168{margin-bottom: 168px !important;} .pt168{padding-top: 168px !important;} .pb168{padding-bottom: 168px !important;} .mt176{margin-top: 176px !important;} .mb176{margin-bottom: 176px !important;} .pt176{padding-top: 176px !important;} .pb176{padding-bottom: 176px !important;} .mt184{margin-top: 184px !important;} .mb184{margin-bottom: 184px !important;} .pt184{padding-top: 184px !important;} .pb184{padding-bottom: 184px !important;} .mt192{margin-top: 192px !important;} .mb192{margin-bottom: 192px !important;} .pt192{padding-top: 192px !important;} .pb192{padding-bottom: 192px !important;} .mt200{margin-top: 200px !important;} .mb200{margin-bottom: 200px !important;} .pt200{padding-top: 200px !important;} .pb200{padding-bottom: 200px !important;} .mt208{margin-top: 208px !important;} .mb208{margin-bottom: 208px !important;} .pt208{padding-top: 208px !important;} .pb208{padding-bottom: 208px !important;} .mt216{margin-top: 216px !important;} .mb216{margin-bottom: 216px !important;} .pt216{padding-top: 216px !important;} .pb216{padding-bottom: 216px !important;} .mt224{margin-top: 224px !important;} .mb224{margin-bottom: 224px !important;} .pt224{padding-top: 224px !important;} .pb224{padding-bottom: 224px !important;} .mt232{margin-top: 232px !important;} .mb232{margin-bottom: 232px !important;} .pt232{padding-top: 232px !important;} .pb232{padding-bottom: 232px !important;} .mt240{margin-top: 240px !important;} .mb240{margin-bottom: 240px !important;} .pt240{padding-top: 240px !important;} .pb240{padding-bottom: 240px !important;} .mt248{margin-top: 248px !important;} .mb248{margin-bottom: 248px !important;} .pt248{padding-top: 248px !important;} .pb248{padding-bottom: 248px !important;} .mt256{margin-top: 256px !important;} .mb256{margin-bottom: 256px !important;} .pt256{padding-top: 256px !important;} .pb256{padding-bottom: 256px !important;} .mt4{margin-top: 4px !important;} .mb4{margin-bottom: 4px !important;} .pt4{padding-top: 4px !important;} .pb4{padding-bottom: 4px !important;} .mt92{margin-top: 92px !important;} .mb92{margin-bottom: 92px !important;} .ml0{margin-left: 0px !important;} .mr0{margin-right: 0px !important;} .ml4{margin-left: 4px !important;} .mr4{margin-right: 4px !important;} .ml8{margin-left: 8px !important;} .mr8{margin-right: 8px !important;} .ml16{margin-left: 16px !important;} .mr16{margin-right: 16px !important;} .ml32{margin-left: 32px !important;} .mr32{margin-right: 32px !important;} .ml64{margin-left: 64px !important;} .mr64{margin-right: 64px !important;} a.o_underline{text-decoration: underline;} a.o_underline:hover{text-decoration: underline;} .bg-100{background-color: #f8f9fa !important; color: #212529;} .bg-100 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-100:hover, a.bg-100:focus, button.bg-100:hover, button.bg-100:focus{background-color: #dae0e5 !important; color: #212529;} .text-100{color: #f8f9fa !important;} a.text-100:hover, a.text-100:focus{color: #dae0e5 !important;} .bg-200{background-color: #e9ecef !important; color: #212529;} .bg-200 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-200:hover, a.bg-200:focus, button.bg-200:hover, button.bg-200:focus{background-color: #cbd3da !important; color: #212529;} .text-200{color: #e9ecef !important;} a.text-200:hover, a.text-200:focus{color: #cbd3da !important;} .bg-300{background-color: #dee2e6 !important; color: #212529;} .bg-300 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-300:hover, a.bg-300:focus, button.bg-300:hover, button.bg-300:focus{background-color: #c1c9d0 !important; color: #212529;} .text-300{color: #dee2e6 !important;} a.text-300:hover, a.text-300:focus{color: #c1c9d0 !important;} .bg-400{background-color: #ced4da !important; color: #212529;} .bg-400 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-400:hover, a.bg-400:focus, button.bg-400:hover, button.bg-400:focus{background-color: #b1bbc4 !important; color: #212529;} .text-400{color: #ced4da !important;} a.text-400:hover, a.text-400:focus{color: #b1bbc4 !important;} .bg-500{background-color: #adb5bd !important; color: #212529;} .bg-500 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-500:hover, a.bg-500:focus, button.bg-500:hover, button.bg-500:focus{background-color: #919ca6 !important; color: #212529;} .text-500{color: #adb5bd !important;} a.text-500:hover, a.text-500:focus{color: #919ca6 !important;} .bg-600{background-color: #6c757d !important; color: #fff;} .bg-600 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-600:hover, a.bg-600:focus, button.bg-600:hover, button.bg-600:focus{background-color: #545b62 !important; color: #fff;} .text-600{color: #6c757d !important;} a.text-600:hover, a.text-600:focus{color: #545b62 !important;} .bg-700{background-color: #495057 !important; color: #fff;} .bg-700 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-700:hover, a.bg-700:focus, button.bg-700:hover, button.bg-700:focus{background-color: #32373b !important; color: #fff;} .text-700{color: #495057 !important;} a.text-700:hover, a.text-700:focus{color: #32373b !important;} .bg-800{background-color: #343a40 !important; color: #fff;} .bg-800 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-800:hover, a.bg-800:focus, button.bg-800:hover, button.bg-800:focus{background-color: #1d2124 !important; color: #fff;} .text-800{color: #343a40 !important;} a.text-800:hover, a.text-800:focus{color: #1d2124 !important;} .bg-900{background-color: #212529 !important; color: #fff;} .bg-900 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-900:hover, a.bg-900:focus, button.bg-900:hover, button.bg-900:focus{background-color: #0a0c0d !important; color: #fff;} .text-900{color: #212529 !important;} a.text-900:hover, a.text-900:focus{color: #0a0c0d !important;} .bg-black-25{background-color: rgba(0, 0, 0, 0.25) !important; color: #212529;} .bg-black-25 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-black-25:hover, a.bg-black-25:focus, button.bg-black-25:hover, button.bg-black-25:focus{background-color: rgba(0, 0, 0, 0.25) !important; color: #212529;} .text-black-25{color: rgba(0, 0, 0, 0.25) !important;} a.text-black-25:hover, a.text-black-25:focus{color: rgba(0, 0, 0, 0.25) !important;} .bg-black-50{background-color: rgba(0, 0, 0, 0.5) !important; color: #fff;} .bg-black-50 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-black-50:hover, a.bg-black-50:focus, button.bg-black-50:hover, button.bg-black-50:focus{background-color: rgba(0, 0, 0, 0.5) !important; color: #fff;} .text-black-50{color: rgba(0, 0, 0, 0.5) !important;} a.text-black-50:hover, a.text-black-50:focus{color: rgba(0, 0, 0, 0.5) !important;} .bg-black-75{background-color: rgba(0, 0, 0, 0.75) !important; color: #fff;} .bg-black-75 .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-black-75:hover, a.bg-black-75:focus, button.bg-black-75:hover, button.bg-black-75:focus{background-color: rgba(0, 0, 0, 0.75) !important; color: #fff;} .text-black-75{color: rgba(0, 0, 0, 0.75) !important;} a.text-black-75:hover, a.text-black-75:focus{color: rgba(0, 0, 0, 0.75) !important;} .bg-white-25{background-color: rgba(255, 255, 255, 0.25) !important; color: #212529;} .bg-white-25 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white-25:hover, a.bg-white-25:focus, button.bg-white-25:hover, button.bg-white-25:focus{background-color: rgba(230, 229, 229, 0.25) !important; color: #212529;} .text-white-25{color: rgba(255, 255, 255, 0.25) !important;} a.text-white-25:hover, a.text-white-25:focus{color: rgba(230, 229, 229, 0.25) !important;} .bg-white-50{background-color: rgba(255, 255, 255, 0.5) !important; color: #212529;} .bg-white-50 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white-50:hover, a.bg-white-50:focus, button.bg-white-50:hover, button.bg-white-50:focus{background-color: rgba(230, 229, 229, 0.5) !important; color: #212529;} .text-white-50{color: rgba(255, 255, 255, 0.5) !important;} a.text-white-50:hover, a.text-white-50:focus{color: rgba(230, 229, 229, 0.5) !important;} .bg-white-75{background-color: rgba(255, 255, 255, 0.75) !important; color: #212529;} .bg-white-75 .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white-75:hover, a.bg-white-75:focus, button.bg-white-75:hover, button.bg-white-75:focus{background-color: rgba(230, 229, 229, 0.75) !important; color: #212529;} .text-white-75{color: rgba(255, 255, 255, 0.75) !important;} a.text-white-75:hover, a.text-white-75:focus{color: rgba(230, 229, 229, 0.75) !important;} .bg-white{background-color: #FFFFFF !important; color: #212529;} .bg-white .text-muted{color: rgba(33, 37, 41, 0.4) !important;} a.bg-white:hover, a.bg-white:focus, button.bg-white:hover, button.bg-white:focus{background-color: #e6e5e5 !important; color: #212529;} .text-white{color: #FFFFFF !important;} a.text-white:hover, a.text-white:focus{color: #e6e5e5 !important;} .bg-black{background-color: #000000 !important; color: #fff;} .bg-black .text-muted{color: rgba(255, 255, 255, 0.4) !important;} a.bg-black:hover, a.bg-black:focus, button.bg-black:hover, button.bg-black:focus{background-color: black !important; color: #fff;} .text-black{color: #000000 !important;} a.text-black:hover, a.text-black:focus{color: black !important;} \n/* /web_editor/static/src/scss/web_editor.backend.scss defined in bundle 'web.assets_backend' */\n .oe_form_field_html_text .note-editable{min-height: 180px; font: initial !important; font-family: inherit !important; line-height: initial !important; color: initial !important;} .oe_form_field_html_text .note-editable p, .oe_form_field_html_text .note-editable div{font-family: 'Lucida Grande', Helvetica, Verdana, Arial, sans-serif; font-size: 13px;} .oe_form_field_html_text .note-editable a, .oe_form_field_html_text .note-editable a:hover{color: initial;} .oe_form_field_html_text .note-editable ul > li > p{margin: 0px;} .oe_form_field_html_text .o_readonly{min-height: 1em; width: 100%; margin: 0; padding: 0; border: 0; word-wrap: break-word;} .oe_form_field_html_text .o_readonly ul > li > p{margin: 0px;} .oe_form_field_html iframe{display: block; width: 100%; border: 0; padding: 0; margin: 0; min-height: 300px; min-height: -webkit-calc(100vh - 170px); min-height: calc(100vh - 170px);} .o_field_widgetTextHtml_fullscreen .oe_form_field_html.o_form_fullscreen_ancestor iframe{position: absolute !important; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; width: 100% !important; min-height: 100% !important; z-index: 1001 !important; border: 0;} .o_field_widgetTextHtml_fullscreen *{display: none;} .o_field_widgetTextHtml_fullscreen .o_form_fullscreen_ancestor{display: block !important; position: static !important; top: 0 !important; left: 0 !important; width: auto !important; overflow: hidden !important; transform: none !important;} .openerp .oe_form .oe_form_field_html_translate textarea{min-width: 60px; width: 100%; color: #4c4c4c; font: normal 13px "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;} .openerp .oe_form_readonly .oe_form .oe_form_field_html_translate textarea{border: 0; background: #fff;} .openerp .oe_form_editable .oe_form .oe_form_field_html_translate > button{float: right; margin: -6px -3px 0 0;} .openerp .oe_form_editable .oe_form .oe_form_field_html_translate > .note-editable{border: 1px solid #ccc; min-height: 22px; border-radius: 3px;} .openerp .oe_form_editable .oe_form .oe_form_field_html_translate .note-editable [contentEditable='true']:hover{box-shadow: #DDCC33 0 0 5px 2px inset;} .note-editor .colorpicker .o_colorpicker_section > button{display: none;} .note-editor .colorpicker .o_colorpicker_section > button[data-color="alpha"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="beta"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="gamma"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="delta"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="epsilon"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="white"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="gray-lighter"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="gray-light"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="gray"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="gray-dark"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="gray-darker"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="black"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="primary"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="success"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="info"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="warning"], .note-editor .colorpicker .o_colorpicker_section > button[data-color="danger"]{display: block;} \n/* /web_settings_dashboard/static/src/scss/dashboard.scss defined in bundle 'web.assets_backend' */\n .o_web_settings_dashboard{background: #F7F7F7; height: 100%;} .o_web_settings_dashboard .o_web_settings_dashboard_col > div > hr{margin: 12px -18px 15px -18px; border-color: #CBCBCB;} .o_web_settings_dashboard .o_web_settings_dashboard_col > div{box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14); background: #FFF; border-radius: 2px; padding: 25px 18px 18px 18px;} .o_web_settings_dashboard .o_web_settings_dashboard_col > div .o_web_settings_dashboard_header{font-size: 22px; margin-bottom: 8px;} .o_web_settings_dashboard .o_web_settings_dashboard_col .btn.o_browse_apps, .o_web_settings_dashboard .o_web_settings_dashboard_col .btn.o_web_settings_dashboard_invitations{margin-top: 12px;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_compact_subtitle{line-height: 12px; display: block;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_invitations .o_web_settings_dashboard_invitation_form{text-align: left;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_invitations .o_web_settings_dashboard_invitation_form > textarea{resize: vertical; width: 100%;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_planner .progress{height: 10px; background-color: #d9d9d9; cursor: pointer; margin-bottom: 30px;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_planner .o_web_settings_dashboard_planner_progress_text{font-size: 18px; padding-right: 0px; padding-top: 3px;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_planner .o_web_settings_dashboard_planner_progress_bar{padding-left: 10px;} .o_web_settings_dashboard .o_web_settings_dashboard_col .o_web_settings_dashboard_planner .o_web_settings_dashboard_progress_title{font-weight: bold; cursor: pointer; color: #7C7BAD;} t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -249 /web/content/249-4947733/web_editor.summernote.0.css web_editor.summernote.0.css \N \N ir.ui.view View \N 0 1 binary /web/content/249-4947733/web_editor.summernote.0.css t \N \N a6/a6a5d68263ba6b79b814865166e7ea35c21ff6cc 11346 a6a5d68263ba6b79b814865166e7ea35c21ff6cc text/css /* /web_editor/static/lib/summernote/src/css/summernote.css defined in bundle 'web_editor.summernote' */\n .note-editor{border: 1px solid #a9a9a9; position: relative;} .note-editor .note-dropzone{position: absolute; display: none; z-index: 100; color: lightskyblue; background-color: white; opacity: 0.95; pointer-event: none;} .note-editor .note-dropzone .note-dropzone-message{display: table-cell; vertical-align: middle; text-align: center; font-size: 28px; font-weight: bold;} .note-editor .note-dropzone.hover{color: #098ddf;} .note-editor.dragover .note-dropzone{display: table;} .note-editor.codeview .note-editing-area .note-editable{display: none;} .note-editor.codeview .note-editing-area .note-codable{display: block;} .note-editor.fullscreen{position: fixed; top: 0; left: 0; width: 100%; z-index: 1050;} .note-editor.fullscreen .note-editable{background-color: white;} .note-editor.fullscreen .note-resizebar{display: none;} .note-editor .note-editing-area{position: relative; overflow: hidden;} .note-editor .note-editing-area .note-editable{background-color: #fff; color: #000; padding: 10px; overflow: auto; outline: none;} .note-editor .note-editing-area .note-editable[contenteditable=true]:empty:not(:focus):before{content: attr(data-placeholder);} .note-editor .note-editing-area .note-editable[contenteditable="false"]{background-color: #e5e5e5;} .note-editor .note-editing-area .note-codable{display: none; width: 100%; padding: 10px; border: none; box-shadow: none; font-family: Menlo, Monaco, monospace, sans-serif; font-size: 14px; color: #ccc; background-color: #222; resize: none; box-sizing: border-box; border-radius: 0; margin-bottom: 0;} .note-editor .note-statusbar{background-color: #f5f5f5;} .note-editor .note-statusbar .note-resizebar{padding-top: 1px; height: 8px; width: 100%; cursor: ns-resize;} .note-editor .note-statusbar .note-resizebar .note-icon-bar{width: 20px; margin: 1px auto; border-top: 1px solid #a9a9a9;} .note-air-editor{outline: none;} .note-popover .popover{max-width: none;} .note-popover .popover .popover-body a{display: inline-block; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle;} .note-popover .popover .arrow{left: 20px;} .note-popover .popover .popover-body, .panel-heading.note-toolbar{margin: 0; padding: 0 0 5px 5px;} .note-popover .popover .popover-body > .btn-group, .panel-heading.note-toolbar > .btn-group{margin-top: 5px; margin-left: 0; margin-right: 5px;} .note-popover .popover .popover-body .btn-group .note-table, .panel-heading.note-toolbar .btn-group .note-table{min-width: 0; padding: 5px;} .note-popover .popover .popover-body .btn-group .note-table .note-dimension-picker, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker{font-size: 18px;} .note-popover .popover .popover-body .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher{position: absolute !important; z-index: 3; width: 10em; height: 10em; cursor: pointer;} .note-popover .popover .popover-body .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted{position: relative !important; z-index: 1; width: 5em; height: 5em; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat;} .note-popover .popover .popover-body .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted{position: absolute !important; z-index: 2; width: 1em; height: 1em; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat;} .note-popover .popover .popover-body .note-style h1, .panel-heading.note-toolbar .note-style h1, .note-popover .popover .popover-body .note-style h2, .panel-heading.note-toolbar .note-style h2, .note-popover .popover .popover-body .note-style h3, .panel-heading.note-toolbar .note-style h3, .note-popover .popover .popover-body .note-style h4, .panel-heading.note-toolbar .note-style h4, .note-popover .popover .popover-body .note-style h5, .panel-heading.note-toolbar .note-style h5, .note-popover .popover .popover-body .note-style h6, .panel-heading.note-toolbar .note-style h6, .note-popover .popover .popover-body .note-style blockquote, .panel-heading.note-toolbar .note-style blockquote{margin: 0;} .note-popover .popover .popover-body .note-color .dropdown-toggle, .panel-heading.note-toolbar .note-color .dropdown-toggle{width: 20px; padding-left: 5px;} .note-popover .popover .popover-body .note-color .dropdown-menu, .panel-heading.note-toolbar .note-color .dropdown-menu{min-width: 340px;} .note-popover .popover .popover-body .note-color .dropdown-menu .btn-group, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group{margin: 0;} .note-popover .popover .popover-body .note-color .dropdown-menu .btn-group:first-child, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group:first-child{margin: 0 5px;} .note-popover .popover .popover-body .note-color .dropdown-menu .btn-group .note-palette-title, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title{font-size: 12px; margin: 2px 7px; text-align: center; border-bottom: 1px solid #eee;} .note-popover .popover .popover-body .note-color .dropdown-menu .btn-group .note-color-reset, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset{font-size: 11px; margin: 3px; padding: 0 3px; cursor: pointer; border-radius: 5px;} .note-popover .popover .popover-body .note-color .dropdown-menu .btn-group .note-color-row, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-row{height: 20px;} .note-popover .popover .popover-body .note-color .dropdown-menu .btn-group .note-color-reset:hover, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover{background: #eee;} .note-popover .popover .popover-body .note-para .dropdown-menu, .panel-heading.note-toolbar .note-para .dropdown-menu{min-width: 216px; padding: 5px;} .note-popover .popover .popover-body .note-para .dropdown-menu > div:first-child, .panel-heading.note-toolbar .note-para .dropdown-menu > div:first-child{margin-right: 5px;} .note-popover .popover .popover-body .dropdown-menu, .panel-heading.note-toolbar .dropdown-menu{min-width: 90px;} .note-popover .popover .popover-body .dropdown-menu.right, .panel-heading.note-toolbar .dropdown-menu.right{right: 0; left: auto;} .note-popover .popover .popover-body .dropdown-menu.right::before, .panel-heading.note-toolbar .dropdown-menu.right::before{right: 9px; left: auto !important;} .note-popover .popover .popover-body .dropdown-menu.right::after, .panel-heading.note-toolbar .dropdown-menu.right::after{right: 10px; left: auto !important;} .note-popover .popover .popover-body .dropdown-menu.note-check li a i, .panel-heading.note-toolbar .dropdown-menu.note-check li a i{color: deepskyblue; visibility: hidden;} .note-popover .popover .popover-body .dropdown-menu.note-check li a.checked i, .panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i{visibility: visible;} .note-popover .popover .popover-body .note-fontsize-10, .panel-heading.note-toolbar .note-fontsize-10{font-size: 10px;} .note-popover .popover .popover-body .note-color-palette, .panel-heading.note-toolbar .note-color-palette{line-height: 1;} .note-popover .popover .popover-body .note-color-palette div .note-color-btn, .panel-heading.note-toolbar .note-color-palette div .note-color-btn{width: 20px; height: 20px; padding: 0; margin: 0; border: 1px solid #fff;} .note-popover .popover .popover-body .note-color-palette div .note-color-btn:hover, .panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover{border: 1px solid #000;} .note-dialog > div{display: none;} .note-dialog .form-group{margin-left: 0; margin-right: 0;} .note-dialog .note-modal-form{margin: 0;} .note-dialog .note-image-dialog .note-dropzone{min-height: 100px; font-size: 30px; line-height: 4; color: lightgray; text-align: center; border: 4px dashed lightgray; margin-bottom: 10px;} .note-dialog .note-help-dialog{font-size: 12px; color: #ccc; background-color: #222 !important; opacity: 0.9; background: transparent; border: none;} .note-dialog .note-help-dialog .modal-content{background: transparent; border: 1px solid white; box-shadow: none; border-radius: 5px;} .note-dialog .note-help-dialog a{font-size: 12px; color: white;} .note-dialog .note-help-dialog .title{color: white; font-size: 14px; font-weight: bold; padding-bottom: 5px; margin-bottom: 10px; border-bottom: white 1px solid;} .note-dialog .note-help-dialog .modal-close{font-size: 14px; color: #dd0; cursor: pointer;} .note-dialog .note-help-dialog .text-center{margin: 10px 0 0;} .note-dialog .note-help-dialog .note-shortcut{padding-top: 8px; padding-bottom: 8px;} .note-dialog .note-help-dialog .note-shortcut-row{margin-right: -5px; margin-left: -5px;} .note-dialog .note-help-dialog .note-shortcut-col{padding-right: 5px; padding-left: 5px;} .note-dialog .note-help-dialog .note-shortcut-title{font-size: 13px; font-weight: bold; color: #dd0;} .note-dialog .note-help-dialog .note-shortcut-key{font-family: "Courier New"; color: #dd0; text-align: right;} .note-handle{} .note-handle .note-control-selection{position: absolute; display: none; border: 1px solid black;} .note-handle .note-control-selection > div{position: absolute;} .note-handle .note-control-selection .note-control-selection-bg{width: 100%; height: 100%; background-color: black; opacity: 0.3;} .note-handle .note-control-selection .note-control-handle{width: 7px; height: 7px; border: 1px solid black;} .note-handle .note-control-selection .note-control-holder{width: 7px; height: 7px; border: 1px solid black;} .note-handle .note-control-selection .note-control-sizing{width: 7px; height: 7px; border: 1px solid black; background-color: white;} .note-handle .note-control-selection .note-control-nw{top: -5px; left: -5px; border-right: none; border-bottom: none;} .note-handle .note-control-selection .note-control-ne{top: -5px; right: -5px; border-bottom: none; border-left: none;} .note-handle .note-control-selection .note-control-sw{bottom: -5px; left: -5px; border-top: none; border-right: none;} .note-handle .note-control-selection .note-control-se{right: -5px; bottom: -5px; cursor: se-resize;} .note-handle .note-control-selection .note-control-se.note-control-holder{cursor: default; border-top: none; border-left: none;} .note-handle .note-control-selection .note-control-selection-info{right: 0; bottom: 0; padding: 5px; margin: 5px; color: white; background-color: black; font-size: 12px; border-radius: 5px; opacity: 0.7;} t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -250 /web/content/250-b67aab9/web_editor.assets_editor.0.css web_editor.assets_editor.0.css \N \N ir.ui.view View \N 0 1 binary /web/content/250-b67aab9/web_editor.assets_editor.0.css t \N \N eb/eb3731f8d7dd003de9b9f39bdf9f973c1d367789 56980 eb3731f8d7dd003de9b9f39bdf9f973c1d367789 text/css /* /web/static/lib/bootstrap/scss/_functions.scss defined in bundle 'web_editor.assets_editor' */\n/* /web/static/lib/bootstrap/scss/_mixins.scss defined in bundle 'web_editor.assets_editor' */\n/* /web/static/src/scss/utils.scss defined in bundle 'web_editor.assets_editor' */\n/* /web/static/src/scss/bs_mixins_overrides.scss defined in bundle 'web_editor.assets_editor' */\n/* /web/static/src/scss/primary_variables.scss defined in bundle 'web_editor.assets_editor' */\n/* /web_editor/static/src/scss/web_editor.variables.scss defined in bundle 'web_editor.assets_editor' */\n/* /web/static/src/scss/secondary_variables.scss defined in bundle 'web_editor.assets_editor' */\n/* /web/static/lib/bootstrap/scss/_variables.scss defined in bundle 'web_editor.assets_editor' */\n/* /web_editor/static/src/scss/web_editor.ui.scss defined in bundle 'web_editor.assets_editor' */\n #web_editor-top-edit{position: absolute; top: 0; left: 0; bottom: auto; right: 0; position: fixed; height: 46px; z-index: 1041; background-color: transparent; transition: background-color 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s; font-family: Roboto, "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;} #web_editor-top-edit form.navbar-form{height: 100%; z-index: 1060; margin: 0; padding: 0; position: absolute; top: auto; left: auto; bottom: auto; right: -210px; transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s; border-left: 1px solid #33363e; background-color: inherit;} #web_editor-top-edit form.navbar-form .btn-group{height: 100%;} #web_editor-top-edit form.navbar-form .btn{height: 100%; margin: 0; padding: 10px; line-height: 1.2; font-size: 13px; font-family: Roboto, "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif; transition: all 0.3s ease 0s; border: none; border-radius: 0;} #web_editor-top-edit form.navbar-form .btn .fa{margin-right: 7.5px;} #web_editor-top-edit form.navbar-form .btn .fa.fa-times{color: #e6586c;} #web_editor-top-edit form.navbar-form .btn.btn-primary{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} #web_editor-top-edit form.navbar-form .btn.btn-primary:hover{color: #fff; background-color: #65639e; border-color: #5f5e97;} #web_editor-top-edit form.navbar-form .btn.btn-primary:focus, #web_editor-top-edit form.navbar-form .btn.btn-primary.focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} #web_editor-top-edit form.navbar-form .btn.btn-primary.disabled, #web_editor-top-edit form.navbar-form .btn.btn-primary:disabled{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} #web_editor-top-edit form.navbar-form .btn.btn-primary:not(:disabled):not(.disabled):active, #web_editor-top-edit form.navbar-form .btn.btn-primary:not(:disabled):not(.disabled).active, .show > #web_editor-top-edit form.navbar-form .btn.btn-primary.dropdown-toggle{color: #fff; background-color: #5f5e97; border-color: #5a598f;} #web_editor-top-edit form.navbar-form .btn.btn-primary:not(:disabled):not(.disabled):active:focus, #web_editor-top-edit form.navbar-form .btn.btn-primary:not(:disabled):not(.disabled).active:focus, .show > #web_editor-top-edit form.navbar-form .btn.btn-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} #web_editor-top-edit form.navbar-form .btn.btn-secondary{color: #fff; background-color: #2c2c36; border-color: #2c2c36;} #web_editor-top-edit form.navbar-form .btn.btn-secondary:hover{color: #fff; background-color: #1b1b21; border-color: #15151a;} #web_editor-top-edit form.navbar-form .btn.btn-secondary:focus, #web_editor-top-edit form.navbar-form .btn.btn-secondary.focus{box-shadow: 0 0 0 0.2rem rgba(44, 44, 54, 0.5);} #web_editor-top-edit form.navbar-form .btn.btn-secondary.disabled, #web_editor-top-edit form.navbar-form .btn.btn-secondary:disabled{color: #fff; background-color: #2c2c36; border-color: #2c2c36;} #web_editor-top-edit form.navbar-form .btn.btn-secondary:not(:disabled):not(.disabled):active, #web_editor-top-edit form.navbar-form .btn.btn-secondary:not(:disabled):not(.disabled).active, .show > #web_editor-top-edit form.navbar-form .btn.btn-secondary.dropdown-toggle{color: #fff; background-color: #15151a; border-color: #0f0f13;} #web_editor-top-edit form.navbar-form .btn.btn-secondary:not(:disabled):not(.disabled):active:focus, #web_editor-top-edit form.navbar-form .btn.btn-secondary:not(:disabled):not(.disabled).active:focus, .show > #web_editor-top-edit form.navbar-form .btn.btn-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(44, 44, 54, 0.5);} #web_editor-top-edit form.navbar-form .btn:focus, #web_editor-top-edit form.navbar-form .btn:active, #web_editor-top-edit form.navbar-form .btn:focus:active{outline: none;} #web_editor-top-edit form.navbar-form .dropdown-menu{left: auto; right: 0;} .oe_translate_examples li{margin: 10px; padding: 4px;} html[lang] > body.editor_enable [data-oe-translation-state]{background: rgba(255, 255, 90, 0.5) !important;} html[lang] > body.editor_enable [data-oe-translation-state][data-oe-translation-state="translated"]{background: rgba(120, 215, 110, 0.5) !important;} html[lang] > body.editor_enable [data-oe-translation-state].o_dirty{background: rgba(120, 215, 110, 0.25) !important;} #oe_snippets{display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; position: absolute; top: 0; left: -210px; bottom: 0; right: auto; position: fixed; width: 210px; z-index: 1041; font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; border-right: 1px solid #33363e; transition: left 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s; background-image: linear-gradient(45deg, #50545d, #383b42); box-shadow: 0px 10px 10px -10px black inset;} #oe_snippets .btn:not(.o_btn_preview){border-radius: 0; font-weight: normal; text-transform: none; padding: 0.375rem 0.75rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0;} #oe_snippets .btn:not(.o_btn_preview).btn-primary{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} #oe_snippets .btn:not(.o_btn_preview).btn-primary:hover{color: #fff; background-color: #65639e; border-color: #5f5e97;} #oe_snippets .btn:not(.o_btn_preview).btn-primary:focus, #oe_snippets .btn:not(.o_btn_preview).btn-primary.focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-primary.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-primary:disabled{color: #fff; background-color: #7C7BAD; border-color: #7C7BAD;} #oe_snippets .btn:not(.o_btn_preview).btn-primary:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-primary:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-primary.dropdown-toggle{color: #fff; background-color: #5f5e97; border-color: #5a598f;} #oe_snippets .btn:not(.o_btn_preview).btn-primary:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-primary:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(124, 123, 173, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-secondary{color: #212529; background-color: #fcfcfc; border-color: #fcfcfc; color: #7C7BAD;} #oe_snippets .btn:not(.o_btn_preview).btn-secondary:hover{color: #212529; background-color: #e9e9e9; border-color: #e3e2e2;} #oe_snippets .btn:not(.o_btn_preview).btn-secondary:focus, #oe_snippets .btn:not(.o_btn_preview).btn-secondary.focus{box-shadow: 0 0 0 0.2rem rgba(252, 252, 252, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-secondary.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-secondary:disabled{color: #212529; background-color: #fcfcfc; border-color: #fcfcfc;} #oe_snippets .btn:not(.o_btn_preview).btn-secondary:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-secondary:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-secondary.dropdown-toggle{color: #212529; background-color: #e3e2e2; border-color: gainsboro;} #oe_snippets .btn:not(.o_btn_preview).btn-secondary:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-secondary:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(252, 252, 252, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-link{color: #212529; background-color: #fcfcfc; border-color: #fcfcfc; color: #7C7BAD;} #oe_snippets .btn:not(.o_btn_preview).btn-link:hover{color: #212529; background-color: #e9e9e9; border-color: #e3e2e2;} #oe_snippets .btn:not(.o_btn_preview).btn-link:focus, #oe_snippets .btn:not(.o_btn_preview).btn-link.focus{box-shadow: 0 0 0 0.2rem rgba(252, 252, 252, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-link.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-link:disabled{color: #212529; background-color: #fcfcfc; border-color: #fcfcfc;} #oe_snippets .btn:not(.o_btn_preview).btn-link:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-link:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-link.dropdown-toggle{color: #212529; background-color: #e3e2e2; border-color: gainsboro;} #oe_snippets .btn:not(.o_btn_preview).btn-link:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-link:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-link.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(252, 252, 252, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-success{color: #fff; background-color: #40ad67; border-color: #40ad67;} #oe_snippets .btn:not(.o_btn_preview).btn-success:hover{color: #fff; background-color: #369156; border-color: #328851;} #oe_snippets .btn:not(.o_btn_preview).btn-success:focus, #oe_snippets .btn:not(.o_btn_preview).btn-success.focus{box-shadow: 0 0 0 0.2rem rgba(64, 173, 103, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-success.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-success:disabled{color: #fff; background-color: #40ad67; border-color: #40ad67;} #oe_snippets .btn:not(.o_btn_preview).btn-success:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-success:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-success.dropdown-toggle{color: #fff; background-color: #328851; border-color: #2f7e4b;} #oe_snippets .btn:not(.o_btn_preview).btn-success:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-success:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-success.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(64, 173, 103, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-info{color: #fff; background-color: #6999a8; border-color: #6999a8;} #oe_snippets .btn:not(.o_btn_preview).btn-info:hover{color: #fff; background-color: #568695; border-color: #517e8d;} #oe_snippets .btn:not(.o_btn_preview).btn-info:focus, #oe_snippets .btn:not(.o_btn_preview).btn-info.focus{box-shadow: 0 0 0 0.2rem rgba(105, 153, 168, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-info.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-info:disabled{color: #fff; background-color: #6999a8; border-color: #6999a8;} #oe_snippets .btn:not(.o_btn_preview).btn-info:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-info:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-info.dropdown-toggle{color: #fff; background-color: #517e8d; border-color: #4d7784;} #oe_snippets .btn:not(.o_btn_preview).btn-info:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-info:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-info.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(105, 153, 168, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-warning{color: #212529; background-color: #f0ad4e; border-color: #f0ad4e;} #oe_snippets .btn:not(.o_btn_preview).btn-warning:hover{color: #212529; background-color: #ed9d2b; border-color: #ec971f;} #oe_snippets .btn:not(.o_btn_preview).btn-warning:focus, #oe_snippets .btn:not(.o_btn_preview).btn-warning.focus{box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-warning.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-warning:disabled{color: #212529; background-color: #f0ad4e; border-color: #f0ad4e;} #oe_snippets .btn:not(.o_btn_preview).btn-warning:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-warning:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-warning.dropdown-toggle{color: #212529; background-color: #ec971f; border-color: #ea9214;} #oe_snippets .btn:not(.o_btn_preview).btn-warning:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-warning:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-warning.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-danger{color: #fff; background-color: #e6586c; border-color: #e6586c;} #oe_snippets .btn:not(.o_btn_preview).btn-danger:hover{color: #fff; background-color: #e1374f; border-color: #df2c45;} #oe_snippets .btn:not(.o_btn_preview).btn-danger:focus, #oe_snippets .btn:not(.o_btn_preview).btn-danger.focus{box-shadow: 0 0 0 0.2rem rgba(230, 88, 108, 0.5);} #oe_snippets .btn:not(.o_btn_preview).btn-danger.disabled, #oe_snippets .btn:not(.o_btn_preview).btn-danger:disabled{color: #fff; background-color: #e6586c; border-color: #e6586c;} #oe_snippets .btn:not(.o_btn_preview).btn-danger:not(:disabled):not(.disabled):active, #oe_snippets .btn:not(.o_btn_preview).btn-danger:not(:disabled):not(.disabled).active, .show > #oe_snippets .btn:not(.o_btn_preview).btn-danger.dropdown-toggle{color: #fff; background-color: #df2c45; border-color: #dd213c;} #oe_snippets .btn:not(.o_btn_preview).btn-danger:not(:disabled):not(.disabled):active:focus, #oe_snippets .btn:not(.o_btn_preview).btn-danger:not(:disabled):not(.disabled).active:focus, .show > #oe_snippets .btn:not(.o_btn_preview).btn-danger.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem rgba(230, 88, 108, 0.5);} #oe_snippets #snippets_menu{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; height: 46px; line-height: 46px; margin: 0; padding: 0; background: #2c2c36; text-align: center; font-weight: normal; font-size: 17px; color: white; font-family: Roboto, "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;} #oe_snippets #o_scroll{height: 100%; overflow: auto;} #oe_snippets #o_scroll .o_panel_header{color: #999999; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; justify-content: center; padding: 3%; color: white; margin-bottom: 3%;} #oe_snippets #o_scroll .o_panel_header i{margin-right: 5px;} #oe_snippets #o_scroll .o_panel_body:after{content: " "; display: table; clear: both;} #oe_snippets #o_scroll .o_panel_body .oe_snippet{float: left; width: 45.5%; margin: 0 0 6% 3%; box-shadow: none; background-color: transparent; user-select: none; cursor: pointer; cursor: copy; cursor: grab;} #oe_snippets #o_scroll .o_panel_body .oe_snippet .oe_snippet_thumbnail .oe_snippet_thumbnail_img{border: none;} #oe_snippets #o_scroll .o_panel_body .oe_snippet .oe_snippet_thumbnail .oe_snippet_thumbnail_title{border: none; padding: 5px 0;} #oe_snippets #o_scroll .o_panel_body .oe_snippet .oe_snippet_thumbnail:hover .oe_snippet_thumbnail_img{transition: transform 200ms ease 0s; transform: scale(1.05);} #oe_snippets #o_scroll .o_panel_body .oe_snippet.o_disabled .oe_snippet_thumbnail{background-color: rgba(255, 0, 0, 0.75);} #oe_snippets #o_scroll .o_panel_body .oe_snippet.o_disabled .oe_snippet_thumbnail_img{opacity: 0.8;} #oe_snippets #o_scroll .o_panel_body .oe_snippet.o_snippet_install .oe_snippet_thumbnail_img{opacity: 0.5;} #oe_snippets #o_scroll .o_panel_body .oe_snippet.o_snippet_install .btn.o_install_btn{display: none; position: absolute; top: 16px; left: 4px; bottom: auto; right: 4px;} #oe_snippets #o_scroll .o_panel_body .oe_snippet.o_snippet_install:hover .btn.o_install_btn{display: block;} #oe_snippets #o_scroll .o_panel_body .oe_snippet:nth-child(2n+1){clear: left;} .oe_snippet{position: relative; width: 100px; background-color: #50545d;} .oe_snippet > :not(.oe_snippet_thumbnail){display: none !important;} .oe_snippet .oe_snippet_thumbnail{width: 100%;} .oe_snippet .oe_snippet_thumbnail .oe_snippet_thumbnail_img{width: 100%; height: 0; border: 1px solid #50545d; padding-bottom: 75%; background-size: cover; background-position: center center; text-align: center; overflow: hidden;} .oe_snippet .oe_snippet_thumbnail img.oe_snippet_thumbnail_img{height: auto; padding-bottom: 0;} .oe_snippet .oe_snippet_thumbnail .oe_snippet_thumbnail_title{display: block; border: 1px solid #2c2c36; padding: 5px; font-size: 12px; font-weight: 300; text-shadow: none; color: #d4d5d7;} .oe_snippet .oe_snippet_thumbnail:hover .oe_snippet_thumbnail_title{color: white;} @keyframes dropZoneInsert{to{background-color: rgba(124, 123, 173, 0.2);}} #wrapwrap .oe_drop_zone{background-color: rgba(124, 123, 173, 0.05); animation: dropZoneInsert 1s linear 0s infinite alternate;} #wrapwrap .oe_drop_zone.oe_insert{z-index: 999; border: 2px dashed #7C7BAD; border-top: none; border-bottom: none; position: relative; width: 100%; height: 40px; margin: -20px 0;} #wrapwrap .oe_drop_zone.oe_insert:after{content: ""; display: block; width: 100%; height: 50%; border-bottom: 2px dashed #7C7BAD; box-sizing: content-box;} #wrapwrap .oe_drop_zone.oe_insert.oe_vertical{border: 2px dashed #7C7BAD; border-left: none; border-right: none; width: 40px; height: 100%; margin: 0 -20px;} #wrapwrap .oe_drop_zone.oe_insert.oe_vertical:after{width: 50%; height: 100%; border-bottom: none; border-right: 2px dashed #7C7BAD;} #oe_manipulators{position: relative;} #oe_manipulators .oe_overlay{position: absolute; top: auto; left: auto; bottom: auto; right: auto; z-index: 1002; display: none; height: 0; background: transparent; text-align: center; transition: opacity 400ms linear 0s;} #oe_manipulators .oe_overlay.o_keypress{opacity: 0;} #oe_manipulators .oe_overlay.oe_active{display: block;} #oe_manipulators .oe_overlay > .oe_overlay_options{font-family: Roboto, "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif; position: absolute; top: auto; left: 0; bottom: 0; right: auto; width: 250px; text-align: left;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group{white-space: nowrap;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn{display: inline-block; width: 25px; height: 25px; padding: 0; border: 1px solid #2c2c36; line-height: 25px; font-size: 11px; border-radius: 0; font-weight: normal; transition: all 400ms ease 0s; color: #d4d5d7; background-color: #4e525b;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn:hover{color: white; background-color: #434352;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn:hover > .fa{color: white;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn.oe_snippet_remove{color: white; background-color: #e6586c; border-color: #bc1c33;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn.oe_snippet_remove > .fa{color: white;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn.oe_snippet_remove:hover{background-color: #bc1c33;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn.oe_snippet_parent > i{transform: scaleX(-1); font-size: 12px;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group .btn > .fa{color: #d4d5d7;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn{width: auto; padding: 0 25px 0 5px; background-color: #2c2c36; text-transform: uppercase;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:hover, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:active, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:focus{background-color: #373744; border-color: #434352; color: white;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:before, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:after{content: ""; width: 7px; height: 2px; background-color: #d4d5d7; position: absolute; top: 46%; left: auto; bottom: auto; right: auto; transition: all 0.3s ease 0s;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:before{right: 9px; transform: rotate(45deg);} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .btn:after{right: 5px; transform: rotate(-45deg);} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:active, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:focus, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:active:focus{box-shadow: none;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:before, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:after{width: 9px;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:before{right: 10px; transform: translateX(5px) rotate(-45deg);} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options.show .btn:after{transform: rotate(45deg);} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu{margin: -1px 0 0 0; padding: 0; border: 1px solid #2c2c36; border-radius: 0; background-color: #4e525b;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-item{position: relative; color: #d4d5d7; font-weight: normal; font-size: 12px; padding: 5px 40px 5px 10px;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-item:hover{background-color: rgba(44, 44, 54, 0.5); color: white; background: transparent; cursor: pointer;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-item.active{color: white; background-color: rgba(44, 44, 54, 0.5);} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-item.active:before{position: absolute; top: 5px; left: auto; bottom: auto; right: 5px; content: "\\f00c"; font-family: "FontAwesome"; color: #7C7BAD;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-item > i{width: 15px; margin-right: 10px; text-align: center;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-submenu{position: relative;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-submenu::before{position: absolute; top: 12px; left: auto; bottom: auto; right: 10px; content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 4px solid transparent; border-left: 4px solid; border-right: 0; border-top: 4px solid transparent; -moz-transform: scale(0.9999); border-left-color: #d4d5d7;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-submenu:hover > .dropdown-menu{display: block; left: 100%; top: 0;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-submenu:hover > .dropdown-menu.o_open_to_left{left: auto; right: 100%;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-divider{display: block; height: 1px; border-top: 1px solid #666; margin: 0;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header{color: wheat; font-size: 11px; margin-top: 2px; text-transform: uppercase;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header:hover{background-color: initial;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_main_header{padding-left: 10px;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header{position: relative; color: wheat; font-weight: 400; font-size: 10px; margin: 10px 0 0 10px; text-transform: uppercase; padding-bottom: .25em;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header::before{content: "\\f148"; position: absolute; top: 5px; left: 4px; bottom: auto; right: auto; font-family: FontAwesome; transform: scaleX(-1);} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header ~ .dropdown-submenu .dropdown-item, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header ~ .dropdown-item{font-size: 11px; opacity: 0.7;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header ~ .dropdown-submenu .dropdown-item:hover, #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header ~ .dropdown-item:hover{opacity: 1;} #oe_manipulators .oe_overlay > .oe_overlay_options > .btn-group > .oe_options .dropdown-menu .dropdown-header.o_parent_editor_header ~ .dropdown-submenu::before{position: absolute; top: 10px; left: auto; bottom: auto; right: 10px;} #oe_manipulators .oe_overlay.o_top_cover > .oe_overlay_options{bottom: auto; top: 1px; right: 1px;} #oe_manipulators .oe_overlay > .o_handles{position: absolute; top: -10000px; left: 0; bottom: auto; right: 0;} #oe_manipulators .oe_overlay > .o_handles:hover > .o_handle{background-color: rgba(0, 226, 255, 0.05);} #oe_manipulators .oe_overlay > .o_handles > .o_handle{position: relative; border: 0 solid #00e2ff; transition: background 300ms ease 0s;} #oe_manipulators .oe_overlay > .o_handles > .o_handle:hover, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_active{background-color: rgba(0, 226, 255, 0.2);} #oe_manipulators .oe_overlay > .o_handles > .o_handle:hover:before, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_active:before{content: ''; position: absolute; top: 0; left: 50%; bottom: auto; right: auto; width: 1px; height: 100%; margin-left: -1px; background-color: rgba(0, 226, 255, 0.5);} #oe_manipulators .oe_overlay > .o_handles > .o_handle:hover.w:before, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_active.w:before{position: absolute; top: 50%; left: 0; bottom: auto; right: auto; width: 100%; height: 1px;} #oe_manipulators .oe_overlay > .o_handles > .o_handle:hover:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_active:after{border-color: #00b5cc; background-color: #008899;} #oe_manipulators .oe_overlay > .o_handles > .o_handle:after{display: block; width: 18px; height: 18px; border: solid 1px #00b5cc; line-height: 16px; font-size: 14px; font-family: FontAwesome; background-color: #008899; color: white;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.w:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.e:after{content: "\\f07e";} #oe_manipulators .oe_overlay > .o_handles > .o_handle.s:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.n:after{content: "\\f07d";} #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_start.w:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_start.e:after{content: '\\f061';} #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_start.n:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_start.s:after{content: '\\f063';} #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_end.w:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_end.e:after{content: '\\f060';} #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_end.n:after, #oe_manipulators .oe_overlay > .o_handles > .o_handle.o_handle_end.s:after{content: '\\f062';} #oe_manipulators .oe_overlay > .o_handles > .o_handle.w{position: absolute; top: 10000px; left: 0; bottom: -10000px; right: auto; width: 1px; border-width: 1px; border-right-width: 0; cursor: e-resize;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.w:after{position: absolute; top: 50%; left: 40%; bottom: auto; right: auto; margin-top: -9px;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.e{position: absolute; top: 10000px; left: auto; bottom: -10000px; right: 0; width: 1px; border-right-width: 1px; cursor: w-resize;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.e:after{position: absolute; top: 50%; left: auto; bottom: auto; right: 40%; margin-top: -9px;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.n{position: absolute; top: 10000px; left: 0; bottom: auto; right: 0; border-top-width: 1px; cursor: ns-resize;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.n:after{position: absolute; top: 40%; left: 50%; bottom: auto; right: auto; margin-left: -9px;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.s{position: absolute; top: auto; left: 0; bottom: -10000px; right: 0; border-bottom-width: 1px; cursor: ns-resize;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.s:after{position: absolute; top: auto; left: 50%; bottom: 40%; right: auto; margin-left: -9px;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.readonly{cursor: auto !important;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.readonly:after{display: none !important;} #oe_manipulators .oe_overlay > .o_handles > .o_handle.readonly:hover{opacity: 0.5;} .s-resize-important *{cursor: s-resize !important;} .n-resize-important *{cursor: n-resize !important;} .e-resize-important *{cursor: e-resize !important;} .w-resize-important *{cursor: w-resize !important;} .move-important *{cursor: move !important;} .note-popover .popover{height: 46px; top: 0 !important; left: 0 !important; padding: 0; margin: 0 0 0 210px; background-color: #2c2c36; border-radius: 0; border-width: 0 1px; width: auto; text-align: center; box-shadow: none; z-index: 1000;} .note-popover .popover .popover-body{height: 46px; white-space: nowrap; font-family: Roboto, "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;} .note-popover .popover .popover-body h1, .note-popover .popover .popover-body h2, .note-popover .popover .popover-body h3, .note-popover .popover .popover-body h4, .note-popover .popover .popover-body h5, .note-popover .popover .popover-body h6, .note-popover .popover .popover-body .h1, .note-popover .popover .popover-body .h2, .note-popover .popover .popover-body .h3, .note-popover .popover .popover-body .h4, .note-popover .popover .popover-body .h5, .note-popover .popover .popover-body .h6{font-family: Roboto, "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;} .note-popover .popover .popover-body .btn{height: 46px; border: none; border-radius: 0; padding: 0.375rem 0.375rem; background-color: #2c2c36; color: #999999; border-top: 2px solid transparent; transition: all 0.3s ease 0s;} .note-popover .popover .popover-body .btn > .fa{color: #999999;} .note-popover .popover .popover-body .btn:hover{border-top: 2px solid #999999; color: #d4d5d7;} .note-popover .popover .popover-body .btn:hover > .fa{color: #d4d5d7;} .note-popover .popover .popover-body .btn .o_image_alt{display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: top; max-width: 100px;} .note-popover .popover .popover-body .btn.active{border-top: 2px solid white; background-color: #2c2c36; color: #d4d5d7; box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.5);} .note-popover .popover .popover-body .btn.active > .fa{color: #d4d5d7;} .note-popover .popover .popover-body > .btn-group{margin-top: -2px;} .note-popover .popover .popover-body > .btn-group.show .dropdown-toggle, .note-popover .popover .popover-body > .btn-group .btn-group.show .dropdown-toggle{border-top: 2px solid white; background-color: #272730; color: white; box-shadow: none;} .note-popover .popover .popover-body > .btn-group.show .dropdown-toggle > .fa, .note-popover .popover .popover-body > .btn-group.show .dropdown-toggle > span, .note-popover .popover .popover-body > .btn-group .btn-group.show .dropdown-toggle > .fa, .note-popover .popover .popover-body > .btn-group .btn-group.show .dropdown-toggle > span{color: white;} .note-popover .popover .popover-body .dropdown-menu{margin: 0; border-radius: 0; background-color: #272730; color: #999999; white-space: normal;} .note-popover .popover .popover-body .dropdown-menu .dropdown-item{width: 100%; color: #d4d5d7;} .note-popover .popover .popover-body .dropdown-menu .dropdown-item > .fa{color: #d4d5d7;} .note-popover .popover .popover-body .dropdown-menu .dropdown-item:hover{background-color: #3D4048; color: white;} .note-popover .popover .popover-body .dropdown-menu .dropdown-item:hover > .fa{color: white;} .note-popover .popover .popover-body .note-para .dropdown-menu{min-width: 228px;} .note-popover .popover .popover-body .note-color-palette .note-color-row, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row{height: auto !important;} .note-popover .popover .popover-body .note-color-palette .note-color-row::after, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row::after{content: ""; display: table; clear: both;} .note-popover .popover .popover-body .note-color-palette .note-color-row .note-color-btn, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row .note-color-btn{float: left; height: 20px; width: 20px; margin: 1px 1px 0 0; border: 1px solid black; position: relative; background-image: url("/web_editor/static/src/img/transparent.png"); background-size: 10px auto; z-index: 1;} .note-popover .popover .popover-body .note-color-palette .note-color-row .note-color-btn::before, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row .note-color-btn::before{content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: -1; background-color: inherit;} .note-popover .popover .popover-body .note-color-palette .note-color-row .note-color-btn.o_small, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row .note-color-btn.o_small{width: 16px; height: 16px; margin: 3px 3px 2px 2px; border-radius: 50%;} .note-popover .popover .popover-body .note-color-palette .note-color-row .note-color-btn.o_clear, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row .note-color-btn.o_clear{clear: both;} .note-popover .popover .popover-body .note-color-palette .note-color-row .note-color-btn.o_btn_transparent, .note-popover .popover .popover-body .note-custom-color-palette .note-color-row .note-color-btn.o_btn_transparent{display: none;} .note-popover .popover .dropdown-menu .dropdown-item > i, .note-editor .dropdown-menu .dropdown-item > i{visibility: hidden;} .note-popover .popover .dropdown-menu .dropdown-item.checked > i, .note-editor .dropdown-menu .dropdown-item.checked > i{visibility: visible;} .note-popover .popover .note-color .note-back-color-preview .dropdown-toggle, .note-popover .popover .note-color .note-fore-color-preview .dropdown-toggle, .note-editor .note-color .note-back-color-preview .dropdown-toggle, .note-editor .note-color .note-fore-color-preview .dropdown-toggle{padding: 0px 7px; height: 35px; width: auto; border-top: none !important; border-bottom: 3px solid;} .note-popover .popover .note-color .note-back-color-preview .dropdown-toggle:after, .note-popover .popover .note-color .note-fore-color-preview .dropdown-toggle:after, .note-editor .note-color .note-back-color-preview .dropdown-toggle:after, .note-editor .note-color .note-fore-color-preview .dropdown-toggle:after{display: none;} .note-popover .popover .note-color .o_foreground_toggle > button:before, .note-editor .note-color .o_foreground_toggle > button:before{font-family: FontAwesome; content: '\\f1fc';} .note-popover .popover .note-color .o_background_toggle > button:before, .note-editor .note-color .o_background_toggle > button:before{font-family: FontAwesome; content: '\\f0c3';} .note-popover .popover .note-color .dropdown-menu, .note-editor .note-color .dropdown-menu{min-width: 180px !important;} .note-popover .popover .note-color .dropdown-menu .note-custom-color, .note-editor .note-color .dropdown-menu .note-custom-color{cursor: pointer; border-radius: 5px;} .note-popover .popover .note-color .dropdown-menu .note-custom-color:hover, .note-editor .note-color .dropdown-menu .note-custom-color:hover{background-color: #ced4da; color: black;} .panel-heading.note-toolbar .note-custom-color-palette .note-color-row{height: auto !important;} .panel-heading.note-toolbar .note-custom-color-palette .note-color-row .note-color-btn{width: 20px; height: 20px; padding: 0; margin: 0; border: 1px solid #fff;} table.colorpicker{width: 100%;} table.colorpicker td{padding: 0 2px 2px 0;} table.colorpicker td > button{width: 100%; border: 1px solid black; padding: 0;} table.colorpicker td > button::after{content: "A"; font-weight: bold; vertical-align: sub;} .colorpicker{background-color: #2c2c36 !important;} .colorpicker .o_colorpicker_sections{border: 1px solid #111114; font-size: 14px;} .colorpicker .o_colorpicker_sections .o_colorpicker_section_tabs{width: 225px; height: 100%;} .colorpicker .o_colorpicker_section:after{content: ""; display: table; clear: both;} .colorpicker .o_colorpicker_section button{float: left; height: 25px; width: 25px; margin: 1px 1px 0 2px; border: 1px solid black; position: relative; background-image: url("/web_editor/static/src/img/transparent.png"); background-size: 10px auto; z-index: 1;} .colorpicker .o_colorpicker_section button::before{content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: -1; background-color: inherit;} .colorpicker .o_colorpicker_section button.o_small{width: 23px; height: 23px; margin: 2px; border-radius: 50%;} .colorpicker .o_colorpicker_section button.o_small + :not(.o_small){clear: both;} .colorpicker .o_colorpicker_section button:hover, .colorpicker .o_colorpicker_section button.selected{box-shadow: 0px 0px 2px 2px #4e525b;} .colorpicker .o_colorpicker_section button.selected:before{content: "\\f00c"; font-family: "FontAwesome"; padding-top: 1px; color: #28a745;} .colorpicker .o_colorpicker_section button[data-event="foreColor"]{background-color: #50545d;} .colorpicker .o_colorpicker_section button[data-event="foreColor"]:before{background-color: rgba(255, 255, 255, 0.3);} .colorpicker .o_colorpicker_section button.o_btn_transparent::before{background-color: transparent;} .colorpicker .note-palette-title{padding: 10px 0px 10px 10px; color: #d4d5d7; font-weight: bold;} .colorpicker .palette-reset{position: absolute; top: 0; left: auto; bottom: auto; right: 0; margin: 0; padding: 5px 10px 0;} .colorpicker .palette-reset .note-color-reset{font-size: 20px !important; color: rgba(192, 126, 136, 0.6); margin: 1px 0 0; padding: 0; cursor: pointer;} .colorpicker .palette-reset .note-color-reset:hover{background: transparent !important; color: #e6586c;} body.editor_enable{padding-top: 46px !important;} body.editor_enable #web_editor-top-edit{background-color: #2c2c36;} body.editor_enable #web_editor-top-edit form.navbar-form{right: 0;} body.editor_enable.editor_has_snippets{transition: padding-left 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s; padding-left: 210px !important;} body.editor_enable.editor_has_snippets #oe_snippets{left: 0;} #web_editor_inside_iframe{background-color: #f0eeee;} #web_editor_inside_iframe #wrapwrap{position: relative; display: table; table-layout: fixed; width: 100%; height: 100%;} #web_editor_inside_iframe #wrapwrap > *{display: table-row;} #web_editor_inside_iframe #wrapwrap > main{height: 100%;} #web_editor_inside_iframe #wrapwrap > main #editable_area{position: relative; width: 100%; height: 100%; background-color: white;} @keyframes fadeInDownSmall{0%{opacity: 0; transform: translate(0, -5px);}100%{opacity: 1; transform: translate(0, 0);}} @keyframes fadeInOut{0%{opacity: 0;}25%{opacity: 1;}75%{opacity: 1;}100%{opacity: 0;}} @keyframes inputHighlighter{from{background: #7C7BAD;}to{width: 0; background: transparent;}} .o_switch{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; font-weight: normal; cursor: pointer;} .o_switch > input{display: none;} .o_switch > input + span{background-color: #fcfcfc; box-shadow: inset 0 0 0px 1px #e3e2e2; border-radius: 100rem; height: 2ex; width: 3.62ex; margin-right: 0.51em; display: inline-block; transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1); font-size: 15px;} .o_switch > input + span:after{content: ""; background: #fcfcfc; display: block; width: 1.8ex; height: 1.8ex; margin-top: 0.1ex; margin-left: 0.1ex; border-radius: 100rem; transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1); box-shadow: 0 1px 1px #a3a3a3, inset 0 0 0 1px white;} .o_switch > input:checked + span{box-shadow: none; background: #40ad67;} .o_switch > input:checked + span:after{margin-left: 1.7ex;} .o_switch.o_switch_danger > input:not(:checked) + span{box-shadow: none; background: #e6586c;} .dropdown-menu label .o_switch{margin: 0; padding: 2px 0;} .text-input-group{position: relative; margin-bottom: 45px;} .text-input-group input{font-size: 18px; padding: 10px 10px 10px 5px; display: block; width: 300px; border: none; border-bottom: 1px solid #757575;} .text-input-group input:focus{outline: none;} .text-input-group label{color: #999; font-size: 18px; font-weight: normal; position: absolute; top: 10px; left: 5px; bottom: auto; right: auto; pointer-events: none; transition: 0.2s ease all;} .text-input-group input:focus ~ label, .text-input-group input:valid ~ label{top: -20px; font-size: 14px; color: #5264AE;} .text-input-group .bar{position: relative; display: block; width: 300px;} .text-input-group .bar:before, .text-input-group .bar:after{content: ''; height: 2px; width: 0; bottom: 1px; position: absolute; top: auto; left: auto; bottom: auto; right: auto; background: #5264AE; transition: 0.2s ease all;} .text-input-group .bar:before{left: 50%;} .text-input-group .bar:after{right: 50%;} .text-input-group input:focus ~ .bar:before, .text-input-group input:focus ~ .bar:after{width: 50%;} .text-input-group .highlight{position: absolute; top: 25%; left: 0; bottom: auto; right: auto; height: 60%; width: 100px; pointer-events: none; opacity: 0.5;} .text-input-group input:focus ~ .highlight{animation: inputHighlighter 0.3s ease;} .oe_snippet_body{opacity: 0; animation: fadeInDownSmall 700ms forwards;} .o_ace_view_editor{background: #2F3129; color: white; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; opacity: 0.97;} .o_ace_view_editor .o_ace_view_editor_title{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; padding: 7.5px;} .o_ace_view_editor .o_ace_view_editor_title > .o_ace_type_switcher > button::after{content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-bottom: 0; border-left: 0.3em solid transparent; border-right: 0.3em solid transparent; border-top: 0.3em solid; -moz-transform: scale(0.9999); margin-left: 4px;} .o_ace_view_editor .o_ace_view_editor_title > *{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; margin: 0 7.5px;} .o_ace_view_editor .o_ace_view_editor_title > *.o_include_option{display: -webkit-box; display: -webkit-flex; display: flex; align-items: center; font-size: 11px;} .o_ace_view_editor .o_ace_view_editor_title > *.o_include_option > .custom-control{margin-right: 7.5px;} .o_ace_view_editor .o_ace_view_editor_title > *.o_res_list{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; min-width: 60px;} .o_ace_view_editor #ace-view-id{-webkit-box-flex: 0; -webkit-flex: 0 0 auto; flex: 0 0 auto; padding: 7.5px 15px; background-color: #4a4d40;} .o_ace_view_editor #ace-view-editor{height: 70%; -webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto;} .o_ace_view_editor #ace-view-editor .ace_gutter{display: block !important; cursor: ew-resize;} .o_ace_view_editor #ace-view-editor .ace_gutter .ace_gutter-cell.o_error{position: relative;} .o_ace_view_editor #ace-view-editor .ace_gutter .ace_gutter-cell.o_error::after{position: absolute; top: -100%; left: 0; bottom: -100%; right: 0; content: ""; z-index: 1000; display: block; background-color: #dc3545; opacity: 0.5; pointer-events: none;} .o_ace_view_editor #ace-view-editor .ace_resize_bar{position: absolute; top: auto; left: auto; bottom: auto; right: 0; width: 25px; height: 100%; cursor: ew-resize;} .o_ace_view_editor #ace-view-editor .ace_scroller.o_error::after{position: absolute; top: 0; left: 0; bottom: 0; right: auto; width: 3px; content: ""; z-index: 1000; display: block; background-color: #dc3545; opacity: 0.5; pointer-events: none;} .o_ace_select2_dropdown{width: auto !important; padding-top: 4px; font-family: monospace !important;} .o_ace_select2_dropdown > .select2-results{max-height: none; max-height: 70vh;} .o_ace_select2_dropdown > .select2-results .select2-result-label{padding-top: 1px; padding-bottom: 2px;} .o_ace_select2_dropdown > .select2-results .select2-result-label > .o_ace_select2_result{padding: 0; font-size: 12px; white-space: nowrap;} body .modal .o_select_media_dialog{max-width: 80%;} body .modal .o_select_media_dialog .modal-body .nav-tabs .active > a[href="#editor-media-icon"]{background-color: white;} body .modal .o_select_media_dialog .modal-body li.search .form-group{position: relative; margin: 0 10px 0 0;} body .modal .o_select_media_dialog .modal-body li.search .form-group > input{padding-right: 30px;} body .modal .o_select_media_dialog .modal-body li.search .form-group > span{position: absolute; top: 7px; left: auto; bottom: auto; right: 7px; font-size: 1.3em;} body .modal .o_select_media_dialog .modal-body .card{border-color: #e9ecef; border-top-width: 0; border-top-left-radius: 0; border-top-right-radius: 0;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell .o_existing_attachment_remove{position: absolute; top: 2px; left: auto; bottom: auto; right: 17px; padding: 3px 5px 5px 5px; background-color: rgba(255, 255, 255, 0.8); text-shadow: 0 0 1px white; border-radius: 0 0 0 2px; opacity: 0; cursor: pointer;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell .o_existing_attachment_remove:hover{background-color: white; color: #e6586c;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell .o_image{border: 2px solid transparent; cursor: pointer; transition: opacity 400ms ease 0s;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell .o_image.o_webimage{width: 100%; height: auto; background-image: none !important;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell .o_image.o_image_loading{opacity: 0;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell.o_selected .o_image{border-color: #7C7BAD; box-shadow: 0px 0px 2px 2px #f0eeee;} body .modal .o_select_media_dialog .modal-body .o_existing_attachment_cell:hover .o_existing_attachment_remove{opacity: 1;} body .modal .o_select_media_dialog .modal-body .font-icons-icons{padding: 20px 0;} body .modal .o_select_media_dialog .modal-body .font-icons-icons > span{text-align: center; font-size: 22px; margin: 5px; width: 50px; height: 50px; padding: 15px; cursor: pointer;} body .modal .o_select_media_dialog .modal-body .font-icons-icons > span.o_selected{cursor: auto; background-color: #fcfcfc; box-shadow: 0px 0px 0px 1px #40ad67;} body .modal .o_select_media_dialog .modal-body #editor-media-image .card label, body .modal .o_select_media_dialog .modal-body #editor-media-document .card label{margin: auto 10px;} body .modal .o_select_media_dialog .modal-body #editor-media-image .card .btn-group, body .modal .o_select_media_dialog .modal-body #editor-media-document .card .btn-group{margin-right: 10px;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card{padding: 0; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form{-webkit-box-flex: 1; -webkit-flex: 1 1 auto; flex: 1 1 auto; min-width: 0; padding: 20px;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form #o_video_form_group{position: relative; width: 100%;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form #o_video_form_group > textarea{width: 100%; min-height: 95px; padding-bottom: 25px; overflow-y: scroll;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form #o_video_form_group > .o_validate_feedback{position: absolute; top: auto; left: auto; bottom: 10px; right: 10px;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form #o_video_form_group > .o_validate_feedback > .fa{display: none;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form #o_video_form_group.o_has_error > .o_validate_feedback > .fa-exclamation-triangle{display: block;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card .o_video_dialog_form #o_video_form_group.o_has_success > .o_validate_feedback > .fa-check{display: block;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card #video-preview{position: relative; flex: 1 0 50%; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-flex-flow: column nowrap; flex-flow: column nowrap; justify-content: center; padding: 0 19px; border-top: 1px solid black; border-bottom: 1px solid white; background-image: linear-gradient(-150deg, #2c2c36, #272730); color: white; border: none;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card #video-preview .media_iframe_video{width: 100%;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card #video-preview .o_video_dialog_iframe{display: inline-block; max-width: 100%; overflow: hidden; box-shadow: 0 0 15px 2px #000; max-width: 100%; max-height: 100%;} body .modal .o_select_media_dialog .modal-body #editor-media-video .card #video-preview .o_video_dialog_iframe.alert{animation: fadeInDownSmall 700ms forwards; margin: 0 auto;} body .modal .o_bg_img_opt_modal .o_bg_img_opt{margin: 15px 0;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help-control{position: absolute; top: 15px; left: auto; bottom: auto; right: 15px;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help{margin: 15px 0;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help .simulator{position: relative; float: left; margin-right: 15px; width: 120px; height: 100px;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help .simulator .bg{position: absolute; top: 0; left: 0; bottom: 0; right: 0; border: 1px dotted #888787; background-image: url(/web/image); background-position: center center; background-size: cover;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help .simulator .el{position: absolute; top: 10px; left: 0; bottom: 10px; right: 0; border: 1px solid #222;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help .simulator.contain_bg .bg{position: absolute; top: 0; left: 12px; bottom: 20px; right: 12px;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help .simulator.contain_bg .el{position: absolute; top: 0; left: 0; bottom: 20px; right: 0;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .help + *{clear: left;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition{padding: 0px 25px 25px 25px; border-top: 1px solid black; border-bottom: 1px solid white; background-image: linear-gradient(-150deg, #2c2c36, #272730); color: white;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition h6{color: white; font-weight: bold;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_bg_img_opt_object{position: relative; background: white; min-height: 10px; display: inline-block; max-width: 100%; overflow: hidden; box-shadow: 0 0 15px 2px #000;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_bg_img_opt_object > img{cursor: crosshair; border-top: 1px solid #5A5A5A; border-bottom: 1px solid #111;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_bg_img_opt_object:hover .o_focus_point:before{opacity: 0.5;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_bg_img_opt_ui_info{animation: fadeInOut 2s ease forwards; position: absolute; top: auto; left: auto; bottom: 1px; right: 0; display: block; padding: 3px 13px; background-color: rgba(255, 255, 255, 0.8); color: #333; text-align: center; font-weight: bold; pointer-events: none;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_bg_img_opt_ui_info span{font-weight: normal;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_bg_img_opt_ui_info .o_x{margin-right: 10px;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .grid{position: absolute; top: 33.33%; left: 0; bottom: auto; right: auto; display: block; width: 100%; height: 1px; background: rgba(218, 217, 232, 0.5); pointer-events: none;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .grid.grid-2{top: 66.66%;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .grid.grid-3{top: 0; left: 33.33%; width: 1px; height: 100%;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .grid.grid-4{top: 0; left: 66.66%; width: 1px; height: 100%;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_focus_point{position: absolute; top: 0; left: 0; bottom: auto; right: auto; width: 30px; height: 30px; border: 2px solid white; border-radius: 100%; margin-top: -15px; margin-left: -15px; box-shadow: 0 0 1px #333; pointer-events: none;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_focus_point.o_with_transition{transition: all 0.2s ease 0s;} body .modal .o_bg_img_opt_modal .o_bg_img_opt .o_bg_img_opt_cover_edition .o_focus_point:before{pointer-events: none; content: ""; display: block; width: 100px; height: 100px; margin-top: -37px; margin-left: -37px; border: 1px solid #EAEAEA; background: rgba(247, 76, 76, 0); border-radius: 100em; opacity: 1; box-shadow: 0 0 0 100em rgba(0, 0, 0, 0.33); transition: opacity 0.2s ease 0s;} body .modal .o_link_dialog .o_link_dialog_color > .o_link_dialog_color_item{position: relative; width: 30px; height: 30px; padding: 0; border: 2px solid rgba(0, 0, 0, 0.25); border-radius: 50%;} body .modal .o_link_dialog .o_link_dialog_color > .o_link_dialog_color_item input:checked + i::before{content: "\\f00c"; position: absolute; top: 6px; left: 5px; bottom: auto; right: auto;} body .modal .o_link_dialog .o_link_dialog_color > .o_link_dialog_color_item.btn-link{padding: 3px 9px;} body .modal .o_link_dialog .o_link_dialog_color > .o_link_dialog_color_item.btn-link > span{text-decoration: underline;} body .modal .o_link_dialog .o_link_dialog_preview{border-left: 1px solid #e9ecef;} body .modal .o_crop_image_dialog .o_crop_area{height: 350px;} body .modal .o_crop_image_dialog .o_crop_area .cropper-point{background-color: white; transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s; transform: scale(1.5, 1.5); border-radius: 10px; box-shadow: 0 0 1px 1px rgba(23, 23, 23, 0.5); opacity: 1;} body .modal .o_crop_image_dialog .o_crop_area .cropper-point:hover{transform: scale(2.5, 2.5);} body .modal .o_crop_image_dialog .o_crop_area .cropper-line{background: black;} body .modal .o_crop_image_dialog .o_crop_area .cropper-view-box{outline: 2px solid white;} img.o_we_selected_image, .fa.o_we_selected_image::before{background: rgba(150, 150, 220, 0.3); outline: 3px solid rgba(150, 150, 220, 0.3);} t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -251 /web/content/251-91bd38d/web.assets_common.js web.assets_common.js \N \N ir.ui.view View \N 0 1 binary /web/content/251-91bd38d/web.assets_common.js t \N \N 23/23e5db83cc2f57d5a2aac0cf1a255fc6e7294574 1027840 23e5db83cc2f57d5a2aac0cf1a255fc6e7294574 application/javascript application t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -252 /web/content/252-32fd946/web.assets_backend.js web.assets_backend.js \N \N ir.ui.view View \N 0 1 binary /web/content/252-32fd946/web.assets_backend.js t \N \N b5/b536be21bcaccea1af3bea1082f7f2cead02031a 938759 b536be21bcaccea1af3bea1082f7f2cead02031a application/javascript application t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -253 /web/content/253-4947733/web_editor.summernote.js web_editor.summernote.js \N \N ir.ui.view View \N 0 1 binary /web/content/253-4947733/web_editor.summernote.js t \N \N 5c/5cf001c97c88fa0ec630e1f2a3b7bd03c26795db 187409 5cf001c97c88fa0ec630e1f2a3b7bd03c26795db application/javascript application t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -254 /web/content/254-b67aab9/web_editor.assets_editor.js web_editor.assets_editor.js \N \N ir.ui.view View \N 0 1 binary /web/content/254-b67aab9/web_editor.assets_editor.js t \N \N 62/627716c2e5a45aef27d1b81e8323d7df3c9c50d4 176376 627716c2e5a45aef27d1b81e8323d7df3c9c50d4 application/javascript application t 1 2020-10-28 19:01:07.571517 1 2020-10-28 19:01:07.571517 -\. - - --- --- Data for Name: ir_config_parameter; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_config_parameter (id, key, value, create_uid, create_date, write_uid, write_date) FROM stdin; -5 base.login_cooldown_after 10 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -6 base.login_cooldown_duration 60 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -7 base.template_portal_user_id 5 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -4 web.base.url http://localhost:8069 1 2020-10-28 19:00:42.694321 1 2020-10-30 09:25:06.334124 -1 database.secret d98fc465-6bf8-4f5f-9961-67b2524a5b7e 1 2020-10-28 19:00:42.694321 1 2020-10-30 09:25:22.29921 -2 database.uuid d5b7410c-1a91-11eb-ab1e-9e0e299a8da8 1 2020-10-28 19:00:42.694321 1 2020-10-30 09:25:22.29921 -3 database.create_date 2020-10-30 09:25:22 1 2020-10-28 19:00:42.694321 1 2020-10-30 09:25:22.29921 -\. - - --- --- Data for Name: ir_cron; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_cron (id, ir_actions_server_id, cron_name, user_id, active, interval_number, interval_type, numbercall, doall, nextcall, priority, create_uid, create_date, write_uid, write_date) FROM stdin; -1 29 Base: Auto-vacuum internal data 1 t 1 days -1 f 2020-10-30 19:00:55 5 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -\. - - --- --- Data for Name: ir_default; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_default (id, field_id, user_id, company_id, condition, json_value, create_uid, create_date, write_uid, write_date) FROM stdin; -1 867 \N \N \N "en_US" 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -\. - - --- --- Data for Name: ir_demo; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_demo (id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_demo_failure; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_demo_failure (id, module_id, error, wizard_id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_demo_failure_wizard; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_demo_failure_wizard (id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_exports; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_exports (id, name, resource, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_exports_line; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_exports_line (id, name, export_id, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_filters; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_filters (id, name, user_id, domain, context, sort, model_id, is_default, action_id, active, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_logging; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_logging (id, create_uid, create_date, write_uid, write_date, name, type, dbname, level, message, path, func, line) FROM stdin; -\. - - --- --- Data for Name: ir_mail_server; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_mail_server (id, name, smtp_host, smtp_port, smtp_user, smtp_pass, smtp_encryption, smtp_debug, sequence, active, create_uid, create_date, write_uid, write_date) FROM stdin; -\. - - --- --- Data for Name: ir_model; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model (id, name, model, info, state, transient, create_uid, create_date, write_uid, write_date) FROM stdin; -6 Relation Model ir.model.relation \n This model tracks PostgreSQL tables used to implement Odoo many2many\n relations.\n base f \N \N \N \N -1 Base base The base model, which is implicitly inherited by all models. base f \N \N \N \N -2 Unknown _unknown \n Abstract model used as a substitute for relational fields with an unknown\n comodel.\n base f \N \N \N \N -3 Models ir.model Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -4 Fields ir.model.fields Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -5 Model Constraint ir.model.constraint \n This model tracks PostgreSQL foreign keys and constraints used by Odoo\n models.\n base f \N \N \N \N -99 Report Layout report.layout Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -48 Qweb Field Image ir.qweb.field.image \n Widget options:\n\n ``class``\n set as attribute on the generated tag\n base f \N \N \N \N -56 HTTP Routing ir.http The base model, which is implicitly inherited by all models. base f \N \N \N \N -100 Base Import Mapping base_import.mapping mapping of previous column:field selections\n\n This is useful when repeatedly importing from a third-party\n system: column names generated by the external system may\n not match Odoo's field names or labels. This model is used\n to save the mapping between column names and fields so that\n next time a user imports from the same third-party systems\n we can automatically match the columns to the correct field\n without them having to re-enter the mapping every single\n time.\n base f \N \N \N \N -101 Base Import base_import.import Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -102 Tests : Base Import Model, Character base_import.tests.models.char Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -103 Tests : Base Import Model, Character required base_import.tests.models.char.required Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -104 Tests : Base Import Model, Character readonly base_import.tests.models.char.readonly Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -105 Tests : Base Import Model, Character states base_import.tests.models.char.states Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -106 Tests : Base Import Model, Character No readonly base_import.tests.models.char.noreadonly Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -107 Tests : Base Import Model, Character still readonly base_import.tests.models.char.stillreadonly Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -86 Users res.users User class. A res.users record models an OpenERP user and is different\n from an employee.\n\n res.users class now inherits from res.partner. The partner model is\n used to store the data related to the partner: lang, name, address,\n avatar, ... The user model is now dedicated to technical data.\n base f \N \N \N \N -108 Tests : Base Import Model, Many to One base_import.tests.models.m2o Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -109 Tests : Base Import Model, Many to One related base_import.tests.models.m2o.related Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -110 Tests : Base Import Model, Many to One required base_import.tests.models.m2o.required Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -111 Tests : Base Import Model, Many to One required related base_import.tests.models.m2o.required.related Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -112 Tests : Base Import Model, One to Many base_import.tests.models.o2m Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -113 Tests : Base Import Model, One to Many child base_import.tests.models.o2m.child Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -114 Tests : Base Import Model Preview base_import.tests.models.preview Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -115 Tests: Base Import Model Float base_import.tests.models.float Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -116 Tests: Base Import Model Complex base_import.tests.models.complex Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -7 Model Access ir.model.access Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -8 Model Data ir.model.data Holds external identifier keys for records in the database.\n This has two main uses:\n\n * allows easy data integration with third-party systems,\n making import/export/sync of data possible, as records\n can be uniquely identified across multiple systems\n * allows tracking the origin of data installed by Odoo\n modules themselves, thus making it possible to later\n update them seamlessly.\n base f \N \N \N \N -9 Create Menu Wizard wizard.ir.model.menu.create Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -10 Sequence ir.sequence Sequence model.\n\n The sequence model allows to define and use so-called sequence objects.\n Such objects are used to generate unique identifiers in a transaction-safe\n way.\n\n base f \N \N \N \N -11 Sequence Date Range ir.sequence.date_range Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -12 Menu ir.ui.menu Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -13 Custom View ir.ui.view.custom Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -15 Actions ir.actions.actions Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -16 Action Window ir.actions.act_window Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -17 Action Window View ir.actions.act_window.view Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -18 Action Window Close ir.actions.act_window_close Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -19 Action URL ir.actions.act_url Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -20 Server Actions ir.actions.server Server actions model. Server action work on a base model and offer various\n type of actions that can be executed automatically, for example using base\n action rules, of manually, by adding the action in the 'More' contextual\n menu.\n\n Since Odoo 8.0 a button 'Create Menu Action' button is available on the\n action form view. It creates an entry in the More menu of the base model.\n This allows to create server actions and run them in mass mode easily through\n the interface.\n\n The available actions are :\n\n - 'Execute Python Code': a block of python code that will be executed\n - 'Create a new Record': create a new record with new values\n - 'Write on a Record': update the values of a record\n - 'Execute several actions': define an action that triggers several other\n server actions\n base f \N \N \N \N -21 Server Action value mapping ir.server.object.lines Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -22 Configuration Wizards ir.actions.todo \n Configuration Wizards\n base f \N \N \N \N -23 Client Action ir.actions.client Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -24 Report Action ir.actions.report Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -26 Scheduled Actions ir.cron Model describing cron jobs (also called actions or tasks).\n base f \N \N \N \N -27 Filters ir.filters Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -28 Default Values ir.default User-defined default values for fields. base f \N \N \N \N -30 Exports ir.exports Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -31 Exports Line ir.exports.line Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -32 Record Rule ir.rule Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -33 System Parameter ir.config_parameter Per-database storage of configuration key-value pairs. base f \N \N \N \N -34 Automatic Vacuum ir.autovacuum Expose the vacuum method to the cron jobs mechanism. base f \N \N \N \N -35 Mail Server ir.mail_server Represents an SMTP server, able to send outgoing emails, with SSL and TLS capabilities. base f \N \N \N \N -36 Fields Converter ir.fields.converter The base model, which is implicitly inherited by all models. base f \N \N \N \N -57 Logging ir.logging Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -58 Company Property ir.property Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -59 Application ir.module.category Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -50 Qweb Field Float Time ir.qweb.field.float_time ``float_time`` converter, to display integral or fractional values as\n human-readable time spans (e.g. 1.5 as "01:30").\n\n Can be used on any numerical field.\n base f \N \N \N \N -60 Module ir.module.module Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -61 Module dependency ir.module.module.dependency Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -62 Module exclusion ir.module.module.exclusion Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -63 Demo ir.demo Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -64 Demo failure ir.demo_failure Stores modules for which we could not install demo data\n base t \N \N \N \N -65 Demo Failure wizard ir.demo_failure.wizard Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -66 Paper Format Config report.paperformat Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -67 Country res.country Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -68 Country Group res.country.group Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -69 Country state res.country.state Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -70 Languages res.lang Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -71 Fomat Address format.address.mixin The base model, which is implicitly inherited by all models. base f \N \N \N \N -72 Partner Tags res.partner.category Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -73 Partner Title res.partner.title Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -74 Contact res.partner Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -75 Industry res.partner.industry Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -76 Bank res.bank Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -77 Bank Accounts res.partner.bank Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -78 Config res.config Base classes for new-style configuration items\n\n Configuration items should inherit from this class, implement\n the execute method (and optionally the cancel one) and have\n their view inherit from the related res_config_view_base view.\n base t \N \N \N \N -96 Update Translations base.update.translations Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -97 Merge Partner Line base.partner.merge.line Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -98 Merge Partner Wizard base.partner.merge.automatic.wizard \n The idea behind this wizard is to create a list of potential partners to\n merge. We use two objects, the first one is the wizard for the end-user.\n And the second will contain the partner list to merge.\n base t \N \N \N \N -79 Config Installer res.config.installer New-style configuration base specialized for addons selection\n and installation.\n\n Basic usage\n -----------\n\n Subclasses can simply define a number of boolean fields. The field names\n should be the names of the addons to install (when selected). Upon action\n execution, selected boolean fields (and those only) will be interpreted as\n addons to install, and batch-installed.\n\n Additional addons\n -----------------\n\n It is also possible to require the installation of an additional\n addon set when a specific preset of addons has been marked for\n installation (in the basic usage only, additionals can't depend on\n one another).\n\n These additionals are defined through the ``_install_if``\n property. This property is a mapping of a collection of addons (by\n name) to a collection of addons (by name) [#]_, and if all the *key*\n addons are selected for installation, then the *value* ones will\n be selected as well. For example::\n\n _install_if = {\n ('sale','crm'): ['sale_crm'],\n }\n\n This will install the ``sale_crm`` addon if and only if both the\n ``sale`` and ``crm`` addons are selected for installation.\n\n You can define as many additionals as you wish, and additionals\n can overlap in key and value. For instance::\n\n _install_if = {\n ('sale','crm'): ['sale_crm'],\n ('sale','project'): ['sale_service'],\n }\n\n will install both ``sale_crm`` and ``sale_service`` if all of\n ``sale``, ``crm`` and ``project`` are selected for installation.\n\n Hook methods\n ------------\n\n Subclasses might also need to express dependencies more complex\n than that provided by additionals. In this case, it's possible to\n define methods of the form ``_if_%(name)s`` where ``name`` is the\n name of a boolean field. If the field is selected, then the\n corresponding module will be marked for installation *and* the\n hook method will be executed.\n\n Hook methods take the usual set of parameters (cr, uid, ids,\n context) and can return a collection of additional addons to\n install (if they return anything, otherwise they should not return\n anything, though returning any "falsy" value such as None or an\n empty collection will have the same effect).\n\n Complete control\n ----------------\n\n The last hook is to simply overload the ``modules_to_install``\n method, which implements all the mechanisms above. This method\n takes the usual set of parameters (cr, uid, ids, context) and\n returns a ``set`` of addons to install (addons selected by the\n above methods minus addons from the *basic* set which are already\n installed) [#]_ so an overloader can simply manipulate the ``set``\n returned by ``ResConfigInstaller.modules_to_install`` to add or\n remove addons.\n\n Skipping the installer\n ----------------------\n\n Unless it is removed from the view, installers have a *skip*\n button which invokes ``action_skip`` (and the ``cancel`` hook from\n ``res.config``). Hooks and additionals *are not run* when skipping\n installation, even for already installed addons.\n\n Again, setup your hooks accordingly.\n\n .. [#] note that since a mapping key needs to be hashable, it's\n possible to use a tuple or a frozenset, but not a list or a\n regular set\n\n .. [#] because the already-installed modules are only pruned at\n the very end of ``modules_to_install``, additionals and\n hooks depending on them *are guaranteed to execute*. Setup\n your hooks accordingly.\n base t \N \N \N \N -80 Config Settings res.config.settings Base configuration wizard for application settings. It provides support for setting\n default values, assigning groups to employee users, and installing modules.\n To make such a 'settings' wizard, define a model like::\n\n class MyConfigWizard(models.TransientModel):\n _name = 'my.settings'\n _inherit = 'res.config.settings'\n\n default_foo = fields.type(..., default_model='my.model'),\n group_bar = fields.Boolean(..., group='base.group_user', implied_group='my.group'),\n module_baz = fields.Boolean(...),\n config_qux = fields.Char(..., config_parameter='my.parameter')\n other_field = fields.type(...),\n\n The method ``execute`` provides some support based on a naming convention:\n\n * For a field like 'default_XXX', ``execute`` sets the (global) default value of\n the field 'XXX' in the model named by ``default_model`` to the field's value.\n\n * For a boolean field like 'group_XXX', ``execute`` adds/removes 'implied_group'\n to/from the implied groups of 'group', depending on the field's value.\n By default 'group' is the group Employee. Groups are given by their xml id.\n The attribute 'group' may contain several xml ids, separated by commas.\n\n * For a selection field like 'group_XXX' composed of 2 integers values ('0' and '1'),\n ``execute`` adds/removes 'implied_group' to/from the implied groups of 'group', \n depending on the field's value.\n By default 'group' is the group Employee. Groups are given by their xml id.\n The attribute 'group' may contain several xml ids, separated by commas.\n\n * For a boolean field like 'module_XXX', ``execute`` triggers the immediate\n installation of the module named 'XXX' if the field has value ``True``.\n\n * For a selection field like 'module_XXX' composed of 2 integers values ('0' and '1'), \n ``execute`` triggers the immediate installation of the module named 'XXX' \n if the field has the integer value ``1``.\n\n * For a field with no specific prefix BUT an attribute 'config_parameter',\n ``execute``` will save its value in an ir.config.parameter (global setting for the\n database).\n\n * For the other fields, the method ``execute`` invokes `set_values`.\n Override it to implement the effect of those fields.\n\n The method ``default_get`` retrieves values that reflect the current status of the\n fields like 'default_XXX', 'group_XXX', 'module_XXX' and config_XXX.\n It also invokes all methods with a name that starts with 'get_default_';\n such methods can be defined to provide current values for other fields.\n base t \N \N \N \N -81 Currency res.currency Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -82 Currency Rate res.currency.rate Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -83 Companies res.company Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -84 Access Groups res.groups Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -85 Users Log res.users.log Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -87 Change Password Wizard change.password.wizard A wizard to manage the change of users' passwords. base t \N \N \N \N -88 User, Change Password Wizard change.password.user A model to configure users in the change password wizard. base t \N \N \N \N -89 Module Reference Report (base) report.base.report_irmodulereference The base model, which is implicitly inherited by all models. base f \N \N \N \N -90 Update Module base.module.update Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -91 Install Language base.language.install Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -92 Language Import base.language.import Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -93 Upgrade Module base.module.upgrade Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -94 Module Uninstall base.module.uninstall Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -95 Language Export base.language.export Model super-class for transient records, meant to be temporarily\n persisted, and regularly vacuum-cleaned.\n\n A TransientModel has a simplified access rights management, all users can\n create new records, and may only access the records they created. The super-\n user has unrestricted access to all TransientModel records.\n base t \N \N \N \N -25 Attachment ir.attachment Attachments are used to link binary files or url to any openerp document.\n\n External attachment storage\n ---------------------------\n\n The computed field ``datas`` is implemented using ``_file_read``,\n ``_file_write`` and ``_file_delete``, which can be overridden to implement\n other storage engines. Such methods should check for other location pseudo\n uri (example: hdfs://hadoopserver).\n\n The default implementation is the file:dirname location that stores files\n on the local filesystem using name based on their sha1 hash\n base f \N \N \N \N -37 Qweb ir.qweb QWeb object for rendering editor stuff\n base f \N \N \N \N -38 Qweb Field ir.qweb.field Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -39 Qweb Field Integer ir.qweb.field.integer Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -40 Qweb Field Float ir.qweb.field.float Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -45 Qweb Field Many to One ir.qweb.field.many2one Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -54 Qweb Field Contact ir.qweb.field.contact Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -41 Qweb Field Date ir.qweb.field.date Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -42 Qweb Field Datetime ir.qweb.field.datetime Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -43 Qweb Field Text ir.qweb.field.text Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -44 Qweb Field Selection ir.qweb.field.selection Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -47 Qweb Field HTML ir.qweb.field.html Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -49 Qweb Field Monerary ir.qweb.field.monetary ``monetary`` converter, has a mandatory option\n ``display_currency`` only if field is not of type Monetary.\n Otherwise, if we are in presence of a monetary field, the field definition must\n have a currency_field attribute set.\n\n The currency is used for formatting *and rounding* of the float value. It\n is assumed that the linked res_currency has a non-empty rounding value and\n res.currency's ``round`` method is used to perform rounding.\n\n .. note:: the monetary converter internally adds the qweb context to its\n options mapping, so that the context is available to callees.\n It's set under the ``_values`` key.\n base f \N \N \N \N -51 Qweb Field Duration ir.qweb.field.duration ``duration`` converter, to display integral or fractional values as\n human-readable time spans (e.g. 1.5 as "1 hour 30 minutes").\n\n Can be used on any numerical field.\n\n Has an option ``unit`` which can be one of ``second``, ``minute``,\n ``hour``, ``day``, ``week`` or ``year``, used to interpret the numerical\n field value before converting it. By default use ``second``.\n\n Has an option ``round``. By default use ``second``.\n\n Has an option ``digital`` to display 01:00 instead of 1 hour\n\n Sub-second values will be ignored.\n base f \N \N \N \N -52 Qweb Field Relative ir.qweb.field.relative Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -55 Qweb Field qweb ir.qweb.field.qweb Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -14 View ir.ui.view Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -29 Translation ir.translation Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -117 Web Editor Converter Test web_editor.converter.test Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -118 Web Editor Converter Subtest web_editor.converter.test.sub Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -46 Qweb field many2many ir.qweb.field.many2many Used to convert a t-field specification into an output HTML field.\n\n :meth:`~.to_html` is the entry point of this conversion from QWeb, it:\n\n * converts the record value to html using :meth:`~.record_to_html`\n * generates the metadata attributes (``data-oe-``) to set on the root\n result node\n * generates the root result node itself through :meth:`~.render_element`\n base f \N \N \N \N -53 Qweb Field Barcode ir.qweb.field.barcode ``barcode`` widget rendering, inserts a data:uri-using image tag in the\n document. May be overridden by e.g. the website module to generate links\n instead.\n base f \N \N \N \N -119 Tours web_tour.tour Main super-class for regular database-persisted Odoo models.\n\n Odoo models are created by inheriting from this class::\n\n class user(Model):\n ...\n\n The system will later instantiate the class once per database (on\n which the class' module is installed).\n base f \N \N \N \N -\. - - --- --- Data for Name: ir_model_access; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model_access (id, name, active, model_id, group_id, perm_read, perm_write, perm_create, perm_unlink, create_uid, create_date, write_uid, write_date) FROM stdin; -1 ir_attachment all t 25 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -2 ir_attachment group_user t 25 1 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -3 ir.attachment.portal t 25 9 t f t f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -4 ir_cron group_cron t 26 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -5 ir_exports group_system t 30 1 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -6 ir_exports_line group_system t 31 1 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -7 ir_model group_erp_manager t 3 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -8 ir_model_constraint group_erp_manager t 5 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -9 ir_model_relation group_erp_manager t 6 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -10 ir_model_access_group_erp_manager t 7 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -11 ir_model_data group_erp_manager t 8 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -12 ir_model_fields group_erp_manager t 4 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -13 ir_model_all t 3 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -14 ir_model_data user t 8 1 t f t f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -15 ir_model_fields all t 4 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -16 ir_module_category group_user t 59 2 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -17 ir_module_module group_user t 60 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -18 ir_module_module_dependency group_system t 61 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -19 ir_module_module_exclusion group_system t 62 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -20 ir_property group_user t 58 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -21 ir_property group_manager t 58 7 t t t f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -22 ir_rule group_erp_manager t 32 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -23 ir_sequence group_user t 10 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -24 ir_sequence group_system t 10 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -25 ir_sequence_date_range group_user t 11 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -26 ir_sequence_date_range group_system t 11 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -27 ir_translation all t 29 1 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -28 ir_translation group_system t 29 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -29 ir_ui_menu group_user t 12 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -30 ir_ui_menu group_system t 12 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -31 ir_ui_view group_user t 14 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -32 ir_ui_view group_system t 14 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -33 ir_ui_view_custom_group_user t 13 \N t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -34 ir_default all t 28 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -35 ir_default group_user t 28 1 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -36 ir_default group_system t 28 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -37 res_company group_erp_manager t 83 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -38 res_company group_user t 83 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -39 res_country group_user_all t 67 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -40 res_country_state group_user_all t 69 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -41 res_country_group group_user_all t 68 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -42 res_country group_user t 67 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -43 res_country_state group_user t 69 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -44 res_country_group group_user t 68 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -45 res_currency group_all t 81 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -46 res_currency_rate group_all t 82 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -47 res_currency group_system t 81 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -48 res_currency_rate group_system t 82 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -49 res_groups group_erp_manager t 84 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -50 res_groups group_user t 84 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -51 res_lang group_all t 70 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -52 res_lang group_user t 70 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -53 res_partner group_public t 74 10 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -54 res_partner group_portal t 74 9 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -55 res_partner group_partner_manager t 74 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -56 res_partner group_user t 74 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -57 res_partner_bank group_user t 77 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -58 res_partner_bank group_partner_manager t 77 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -59 res_partner_category group_user t 72 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -60 res_partner_category group_partner_manager t 72 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -61 res_partner_industry group_user t 75 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -62 res_partner_industry group_system t 75 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -63 res_partner_title group_user t 73 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -64 res_partner_title group_partner_manager t 73 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -65 res_users all t 86 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -66 res_users group_erp_manager t 86 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -67 res_users_log_all t 85 \N t f t f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -68 ir_actions_all t 15 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -69 ir_actions_group_system t 15 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -70 ir_actions_act_window_all t 16 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -71 ir_actions_act_window_system t 16 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -72 ir_actions_act_window_close_all t 18 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -73 ir_actions_act_window_close_group_system t 18 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -74 ir_actions_report t 24 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -75 ir_actions_report_group_system t 24 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -76 ir_actions_todo group system t 22 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -77 ir_actions_act_window_view_all t 17 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -78 ir_actions_act_window_view_group_system t 17 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -79 ir_actions_act_url_all t 19 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -80 ir_actions_act_url_group_system t 19 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -81 ir_server_object_lines_all t 21 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -82 ir_server_object_lines_group_system t 21 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -83 ir_actions_server_all t 20 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -84 ir_actions_server_group_system t 20 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -85 res_bank_group_system t 76 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -86 res_bank_group_partner_manager t 76 7 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -87 res_bank user t 76 1 t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -88 ir_filters all t 27 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -89 ir_filters all t 27 1 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -90 ir_filters all t 27 9 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -91 ir_filters all t 27 10 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -92 ir_config_parameter_system t 33 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -93 ir_mail_server t 35 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -94 ir_actions_client all t 23 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -95 ir_logging admin t 57 2 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -96 ir_actions_report_paperformat group_portal t 66 \N t f f f 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -97 ir_actions_report_paperformat group_system t 66 3 t t t t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -98 access_report_layout t 99 \N t t t t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -99 base.import.tests.models.char t 102 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -100 base.import.tests.models.char.required t 103 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -101 base.import.tests.models.char.readonly t 104 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -102 base.import.tests.models.char.states t 105 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -103 base.import.tests.models.char.noreadonly t 106 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -104 base.import.tests.models.char.stillreadonly t 107 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -105 base.import.tests.models.m2o t 108 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -106 base.import.tests.models.m2o.related t 109 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -107 base.import.tests.models.m2o.required t 110 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -108 base.import.tests.models.m2o.required.related t 111 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -109 base.import.tests.models.o2m t 112 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -110 base.import.tests.models.o2m.child t 113 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -111 base.import.tests.models.float t 115 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -112 base.import.tests.models.preview t 114 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -113 base.import.mapping t 100 1 t t t t 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -114 access_base_import_tests_models_complex t 116 1 t f f f 1 2020-10-28 19:01:02.491911 1 2020-10-28 19:01:02.491911 -115 access_web_editor_converter_test t 117 \N t t t t 1 2020-10-28 19:01:05.150948 1 2020-10-28 19:01:05.150948 -116 access_web_editor_converter_test_sub t 118 \N t t t t 1 2020-10-28 19:01:05.150948 1 2020-10-28 19:01:05.150948 -117 access_web_tour_tour_admin t 119 3 t f t f 1 2020-10-28 19:01:06.450813 1 2020-10-28 19:01:06.450813 -118 access_web_tour_tour t 119 \N t f f f 1 2020-10-28 19:01:06.450813 1 2020-10-28 19:01:06.450813 -\. - - --- --- Data for Name: ir_model_constraint; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model_constraint (id, name, definition, model, module, type, date_update, date_init, create_uid, create_date, write_uid, write_date) FROM stdin; -1 ir_model_obj_name_uniq unique(model) 3 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -2 ir_model_fields_name_unique unique(model,name) 4 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -3 ir_model_fields_size_gt_zero check(size>=0) 4 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -4 ir_model_fields_relation_field_id_fkey \N 4 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -5 ir_model_fields_model_id_fkey \N 4 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -6 ir_model_fields_related_field_id_fkey \N 4 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -7 ir_model_fields_group_rel_field_id_fkey \N 4 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -8 ir_model_fields_group_rel_group_id_fkey \N 4 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -9 ir_model_constraint_module_name_uniq unique(name,module) 5 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -10 ir_model_constraint_model_fkey \N 5 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -11 ir_model_constraint_module_fkey \N 5 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -12 ir_model_relation_model_fkey \N 6 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -13 ir_model_relation_module_fkey \N 6 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -14 ir_model_access_model_id_fkey \N 7 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -15 ir_model_access_group_id_fkey \N 7 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -16 wizard_ir_model_menu_create_menu_id_fkey \N 9 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -17 ir_sequence_company_id_fkey \N 10 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -18 ir_sequence_date_range_sequence_id_fkey \N 11 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -19 ir_ui_menu_parent_id_fkey \N 12 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -20 ir_ui_menu_group_rel_menu_id_fkey \N 12 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -21 ir_ui_menu_group_rel_gid_fkey \N 12 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -22 ir_ui_view_custom_ref_id_fkey \N 13 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -23 ir_ui_view_custom_user_id_fkey \N 13 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -24 ir_ui_view_inheritance_mode check(mode != 'extension' or inherit_id is not null) 14 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -25 ir_ui_view_qweb_required_key check(type != 'qweb' or key is not null) 14 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -26 ir_ui_view_inherit_id_fkey \N 14 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -27 ir_ui_view_group_rel_view_id_fkey \N 14 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -28 ir_ui_view_group_rel_group_id_fkey \N 14 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -29 ir_actions_binding_model_id_fkey \N 15 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -30 ir_act_window_view_id_fkey \N 16 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -31 ir_act_window_group_rel_act_id_fkey \N 16 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -32 ir_act_window_group_rel_gid_fkey \N 16 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -33 ir_act_window_search_view_id_fkey \N 16 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -34 ir_act_window_binding_model_id_fkey \N 16 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -35 ir_act_window_view_view_id_fkey \N 17 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -36 ir_act_window_view_act_window_id_fkey \N 17 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -37 ir_act_url_binding_model_id_fkey \N 19 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -38 ir_act_server_model_id_fkey \N 20 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -39 rel_server_actions_server_id_fkey \N 20 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -40 rel_server_actions_action_id_fkey \N 20 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -41 ir_act_server_crud_model_id_fkey \N 20 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -42 ir_act_server_link_field_id_fkey \N 20 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -43 ir_act_server_binding_model_id_fkey \N 20 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -44 ir_server_object_lines_server_id_fkey \N 21 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -45 ir_server_object_lines_col1_fkey \N 21 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -46 ir_act_client_binding_model_id_fkey \N 23 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -47 res_groups_report_rel_uid_fkey \N 24 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -48 res_groups_report_rel_gid_fkey \N 24 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -49 ir_act_report_xml_paperformat_id_fkey \N 24 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -50 ir_act_report_xml_binding_model_id_fkey \N 24 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -51 ir_attachment_company_id_fkey \N 25 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -52 ir_cron_ir_actions_server_id_fkey \N 26 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -53 ir_cron_user_id_fkey \N 26 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -54 ir_filters_name_model_uid_unique unique(name,model_id,user_id,action_id) 27 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -55 ir_filters_user_id_fkey \N 27 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -56 ir_default_field_id_fkey \N 28 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -57 ir_default_user_id_fkey \N 28 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -58 ir_default_company_id_fkey \N 28 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -59 ir_translation_lang_fkey_res_lang foreign key(lang) references res_lang(code) 29 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -60 ir_exports_line_export_id_fkey \N 31 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -61 ir_rule_no_access_rights check(perm_read!=false or perm_write!=false or perm_create!=false or perm_unlink!=false) 32 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -62 ir_rule_model_id_fkey \N 32 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -63 rule_group_rel_rule_group_id_fkey \N 32 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -64 rule_group_rel_group_id_fkey \N 32 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -65 ir_config_parameter_key_uniq unique(key) 33 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -66 ir_property_company_id_fkey \N 58 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -67 ir_property_fields_id_fkey \N 58 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -68 ir_module_module_name_uniq unique(name) 60 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -69 ir_module_module_exclusion_module_id_fkey \N 62 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -70 ir_demo_failure_module_id_fkey \N 64 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -71 ir_demo_failure_wizard_id_fkey \N 64 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -72 res_country_name_uniq unique(name) 67 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -73 res_country_code_uniq unique(code) 67 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -74 res_country_address_view_id_fkey \N 67 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -75 res_country_currency_id_fkey \N 67 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -76 res_country_res_country_group_rel_res_country_id_fkey \N 67 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -77 res_country_res_country_group_rel_res_country_group_id_fkey \N 67 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -78 res_country_state_name_code_uniq unique(country_id,code) 69 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -79 res_country_state_country_id_fkey \N 69 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -80 res_lang_name_uniq unique(name) 70 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -81 res_lang_code_uniq unique(code) 70 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -82 res_partner_category_parent_id_fkey \N 72 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -83 res_partner_res_partner_category_rel_category_id_fkey \N 72 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -84 res_partner_res_partner_category_rel_partner_id_fkey \N 72 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -85 res_partner_check_name check((type='contact' and name is not null) or(type!='contact') ) 74 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -86 res_partner_title_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -87 res_partner_parent_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -88 res_partner_user_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -89 res_partner_state_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -90 res_partner_country_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -91 res_partner_industry_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -92 res_partner_company_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -93 res_partner_commercial_partner_id_fkey \N 74 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -94 res_bank_state_fkey \N 76 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -95 res_bank_country_fkey \N 76 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -96 res_partner_bank_unique_number unique(sanitized_acc_number,company_id) 77 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -97 res_partner_bank_partner_id_fkey \N 77 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -98 res_partner_bank_bank_id_fkey \N 77 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -99 res_partner_bank_currency_id_fkey \N 77 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -100 res_partner_bank_company_id_fkey \N 77 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -101 res_currency_unique_name unique(name) 81 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -102 res_currency_rounding_gt_zero check(rounding>0) 81 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -103 res_currency_rate_unique_name_per_day unique(name,currency_id,company_id) 82 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -104 res_currency_rate_currency_rate_check check(rate>0) 82 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -105 res_currency_rate_currency_id_fkey \N 82 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -106 res_currency_rate_company_id_fkey \N 82 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -107 res_company_name_uniq unique(name) 83 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -108 res_company_parent_id_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -109 res_company_partner_id_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -110 res_company_currency_id_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -111 res_company_users_rel_cid_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -112 res_company_users_rel_user_id_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -113 res_company_paperformat_id_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -114 res_company_external_report_layout_id_fkey \N 83 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -115 res_groups_name_uniq unique(category_id,name) 84 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -116 res_groups_users_rel_gid_fkey \N 84 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -117 res_groups_users_rel_uid_fkey \N 84 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -118 res_groups_category_id_fkey \N 84 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -119 res_groups_implied_rel_gid_fkey \N 84 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -120 res_groups_implied_rel_hid_fkey \N 84 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -121 res_users_login_key unique(login) 86 159 u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -122 res_users_partner_id_fkey \N 86 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -123 res_users_company_id_fkey \N 86 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -124 change_password_user_wizard_id_fkey \N 88 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -125 change_password_user_user_id_fkey \N 88 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -126 base_module_uninstall_module_id_fkey \N 94 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -127 rel_modules_langexport_wiz_id_fkey \N 95 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -128 rel_modules_langexport_module_id_fkey \N 95 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -129 base_partner_merge_line_wizard_id_fkey \N 97 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -130 base_partner_merge_automatic_wizard_current_line_id_fkey \N 98 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -131 base_partner_merge_automatic_wizard_res_partner_rel_base_partner_merge_automatic_wizard_id_fkey \N 98 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -132 base_partner_merge_automatic_wizard_res_partner_rel_res_partner_id_fkey \N 98 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -133 base_partner_merge_automatic_wizard_dst_partner_id_fkey \N 98 159 f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -134 report_layout_view_id_fkey \N 99 168 f 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 \N \N \N \N -135 base_import_tests_models_m2o_value_fkey \N 108 163 f 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 \N \N \N \N -136 base_import_tests_models_m2o_required_value_fkey \N 110 163 f 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 \N \N \N \N -137 base_import_tests_models_o2m_child_parent_id_fkey \N 113 163 f 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 \N \N \N \N -138 base_import_tests_models_float_currency_id_fkey \N 115 163 f 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 \N \N \N \N -139 base_import_tests_models_complex_currency_id_fkey \N 116 163 f 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 \N \N \N \N -140 web_editor_converter_test_many2one_fkey \N 117 131 f 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 \N \N \N \N -141 web_tour_tour_user_id_fkey \N 119 85 f 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 \N \N \N \N -\. - - --- --- Data for Name: ir_model_data; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model_data (id, create_uid, create_date, write_date, write_uid, noupdate, name, date_init, date_update, module, model, res_id) FROM stdin; -7 \N \N \N \N t module_website_membership \N \N base ir.module.module 1 -9 \N \N \N \N t module_test_performance \N \N base ir.module.module 2 -10 \N \N \N \N t module_website_gengo \N \N base ir.module.module 3 -11 \N \N \N \N \N module_category_hidden_dependency \N \N base ir.module.category 3 -12 \N \N \N \N t module_analytic \N \N base ir.module.module 4 -13 \N \N \N \N t module_website_forum \N \N base ir.module.module 5 -14 \N \N \N \N \N module_category_web \N \N base ir.module.category 4 -15 \N \N \N \N t module_web_unsplash \N \N base ir.module.module 6 -16 \N \N \N \N \N module_category_sales \N \N base ir.module.category 5 -17 \N \N \N \N t module_product \N \N base ir.module.module 7 -18 \N \N \N \N t module_sale_timesheet \N \N base ir.module.module 8 -19 \N \N \N \N \N module_category_extra_tools \N \N base ir.module.category 6 -20 \N \N \N \N t module_google_spreadsheet \N \N base ir.module.module 9 -21 \N \N \N \N \N module_category_purchases \N \N base ir.module.category 7 -22 \N \N \N \N t module_purchase_stock \N \N base ir.module.module 10 -23 \N \N \N \N t module_payment_stripe \N \N base ir.module.module 11 -24 \N \N \N \N t module_product_margin \N \N base ir.module.module 12 -25 \N \N \N \N t module_web_kanban_gauge \N \N base ir.module.module 13 -26 \N \N \N \N t module_mass_mailing_crm \N \N base ir.module.module 14 -27 \N \N \N \N \N module_category_accounting \N \N base ir.module.category 8 -28 \N \N \N \N t module_payment_paypal \N \N base ir.module.module 15 -29 \N \N \N \N t module_website_mail \N \N base ir.module.module 16 -30 \N \N \N \N \N module_category_tests \N \N base ir.module.category 9 -31 \N \N \N \N t module_test_impex \N \N base ir.module.module 17 -32 \N \N \N \N t module_payment_sips \N \N base ir.module.module 18 -33 \N \N \N \N t module_hr_expense_check \N \N base ir.module.module 19 -34 \N \N \N \N t module_crm_phone_validation \N \N base ir.module.module 20 -35 \N \N \N \N \N module_category_discuss \N \N base ir.module.category 10 -36 \N \N \N \N t module_im_livechat_mail_bot \N \N base ir.module.module 21 -37 \N \N \N \N t module_sale_quotation_builder \N \N base ir.module.module 22 -39 \N \N \N \N t module_hr_payroll \N \N base ir.module.module 23 -40 \N \N \N \N t module_test_inherit \N \N base ir.module.module 24 -41 \N \N \N \N t module_test_inherits \N \N base ir.module.module 25 -42 \N \N \N \N \N module_category_tools \N \N base ir.module.category 12 -43 \N \N \N \N t module_partner_autocomplete_address_extended \N \N base ir.module.module 26 -44 \N \N \N \N \N module_category_stock \N \N base ir.module.category 13 -45 \N \N \N \N t module_stock_zebra \N \N base ir.module.module 27 -46 \N \N \N \N t module_snailmail \N \N base ir.module.module 28 -47 \N \N \N \N t module_base_automation \N \N base ir.module.module 29 -48 \N \N \N \N t module_account_payment \N \N base ir.module.module 30 -49 \N \N \N \N t module_hr_org_chart \N \N base ir.module.module 31 -50 \N \N \N \N t module_hr_holidays \N \N base ir.module.module 32 -52 \N \N \N \N t module_l10n_generic_coa \N \N base ir.module.module 33 -53 \N \N \N \N t module_auth_oauth \N \N base ir.module.module 34 -54 \N \N \N \N t module_website_blog \N \N base ir.module.module 35 -55 \N \N \N \N \N module_category_crm \N \N base ir.module.category 15 -56 \N \N \N \N t module_crm_livechat \N \N base ir.module.module 36 -57 \N \N \N \N t module_base_geolocalize \N \N base ir.module.module 37 -58 \N \N \N \N t module_website_crm_partner_assign \N \N base ir.module.module 38 -59 \N \N \N \N \N module_category_productivity \N \N base ir.module.category 16 -60 \N \N \N \N t module_note_pad \N \N base ir.module.module 39 -61 \N \N \N \N \N module_category_marketing \N \N base ir.module.category 17 -62 \N \N \N \N t module_link_tracker \N \N base ir.module.module 40 -63 \N \N \N \N t module_website_sale \N \N base ir.module.module 41 -64 \N \N \N \N t module_website_hr_recruitment \N \N base ir.module.module 42 -65 \N \N \N \N \N module_category_warehouse \N \N base ir.module.category 18 -66 \N \N \N \N t module_stock_landed_costs \N \N base ir.module.module 43 -67 \N \N \N \N t module_website_crm_phone_validation \N \N base ir.module.module 44 -68 \N \N \N \N t module_test_mimetypes \N \N base ir.module.module 45 -69 \N \N \N \N t module_sales_team \N \N base ir.module.module 46 -70 \N \N \N \N t module_utm \N \N base ir.module.module 47 -71 \N \N \N \N t module_mail \N \N base ir.module.module 48 -72 \N \N \N \N t module_hr_gamification \N \N base ir.module.module 49 -73 \N \N \N \N t module_transifex \N \N base ir.module.module 50 -74 \N \N \N \N \N module_category_uncategorized \N \N base ir.module.category 19 -75 \N \N \N \N t module_website_sale_link_tracker \N \N base ir.module.module 51 -76 \N \N \N \N t module_note \N \N base ir.module.module 52 -77 \N \N \N \N t module_project_timesheet_holidays \N \N base ir.module.module 53 -78 \N \N \N \N t module_base_vat \N \N base ir.module.module 54 -79 \N \N \N \N t module_test_new_api \N \N base ir.module.module 55 -80 \N \N \N \N t module_gamification \N \N base ir.module.module 56 -81 \N \N \N \N \N module_category_payment_acquirer \N \N base ir.module.category 20 -82 \N \N \N \N t module_payment_payumoney \N \N base ir.module.module 57 -83 \N \N \N \N t module_mass_mailing_sale \N \N base ir.module.module 58 -84 \N \N \N \N \N module_category_project \N \N base ir.module.category 21 -85 \N \N \N \N t module_project \N \N base ir.module.module 59 -86 \N \N \N \N t module_product_email_template \N \N base ir.module.module 60 -87 \N \N \N \N t module_sale_management \N \N base ir.module.module 61 -4 \N \N \N \N t user_root \N 2020-10-28 19:00:42.694321 base res.users 1 -88 \N \N \N \N t module_google_drive \N \N base ir.module.module 62 -89 \N \N \N \N t module_http_routing \N \N base ir.module.module 63 -90 \N \N \N \N t module_google_account \N \N base ir.module.module 64 -91 \N \N \N \N t module_account_analytic_default \N \N base ir.module.module 65 -92 \N \N \N \N t module_website_sale_delivery \N \N base ir.module.module 66 -93 \N \N \N \N t module_website \N \N base ir.module.module 67 -94 \N \N \N \N t module_l10n_multilang \N \N base ir.module.module 68 -95 \N \N \N \N t module_website_google_map \N \N base ir.module.module 69 -96 \N \N \N \N t module_auth_password_policy_signup \N \N base ir.module.module 70 -97 \N \N \N \N t module_pad_project \N \N base ir.module.module 71 -98 \N \N \N \N t module_pad \N \N base ir.module.module 72 -99 \N \N \N \N t module_stock_picking_batch \N \N base ir.module.module 73 -100 \N \N \N \N t module_website_sale_comparison \N \N base ir.module.module 74 -101 \N \N \N \N t module_l10n_uk \N \N base ir.module.module 75 -102 \N \N \N \N t module_sale_margin \N \N base ir.module.module 76 -103 \N \N \N \N \N module_category_technical_settings \N \N base ir.module.category 22 -104 \N \N \N \N t module_website_livechat \N \N base ir.module.module 77 -105 \N \N \N \N t module_auth_ldap \N \N base ir.module.module 78 -106 \N \N \N \N t module_base_sparse_field \N \N base ir.module.module 79 -107 \N \N \N \N t module_l10n_us \N \N base ir.module.module 80 -108 \N \N \N \N t module_website_sale_management \N \N base ir.module.module 81 -109 \N \N \N \N t module_stock \N \N base ir.module.module 82 -110 \N \N \N \N t module_product_expiry \N \N base ir.module.module 83 -111 \N \N \N \N t module_test_mail \N \N base ir.module.module 84 -112 \N \N \N \N t module_web_tour \N \N base ir.module.module 85 -113 \N \N \N \N t module_mass_mailing_event \N \N base ir.module.module 86 -114 \N \N \N \N t module_website_partner \N \N base ir.module.module 87 -115 \N \N \N \N t module_mass_mailing_event_track \N \N base ir.module.module 88 -116 \N \N \N \N t module_account_test \N \N base ir.module.module 89 -117 \N \N \N \N t module_calendar_sms \N \N base ir.module.module 90 -118 \N \N \N \N t module_website_sale_stock \N \N base ir.module.module 91 -119 \N \N \N \N t module_mail_bot \N \N base ir.module.module 92 -120 \N \N \N \N t module_website_event_track \N \N base ir.module.module 93 -122 \N \N \N \N \N module_category_theme_corporate \N \N base ir.module.category 24 -123 \N \N \N \N t module_theme_default \N \N base ir.module.module 94 -124 \N \N \N \N t module_payment_stripe_sca \N \N base ir.module.module 95 -125 \N \N \N \N t module_website_sale_wishlist \N \N base ir.module.module 96 -126 \N \N \N \N t module_delivery_hs_code \N \N base ir.module.module 97 -127 \N \N \N \N t module_test_mass_mailing \N \N base ir.module.module 98 -128 \N \N \N \N t module_website_customer \N \N base ir.module.module 99 -129 \N \N \N \N t module_snailmail_account \N \N base ir.module.module 100 -130 \N \N \N \N t module_sale_purchase \N \N base ir.module.module 101 -131 \N \N \N \N t module_resource \N \N base ir.module.module 102 -132 \N \N \N \N t module_test_rpc \N \N base ir.module.module 103 -133 \N \N \N \N t module_website_links \N \N base ir.module.module 104 -134 \N \N \N \N t module_hr_timesheet_attendance \N \N base ir.module.module 105 -135 \N \N \N \N t module_calendar \N \N base ir.module.module 106 -136 \N \N \N \N t module_crm_project \N \N base ir.module.module 107 -137 \N \N \N \N t module_website_payment \N \N base ir.module.module 108 -139 \N \N \N \N t module_repair \N \N base ir.module.module 109 -140 \N \N \N \N t module_social_media \N \N base ir.module.module 110 -141 \N \N \N \N t module_website_twitter \N \N base ir.module.module 111 -142 \N \N \N \N t module_website_rating \N \N base ir.module.module 112 -143 \N \N \N \N t module_auth_signup \N \N base ir.module.module 113 -144 \N \N \N \N t module_payment_transfer \N \N base ir.module.module 114 -145 \N \N \N \N t module_website_crm \N \N base ir.module.module 115 -146 \N \N \N \N t module_web_settings_dashboard \N \N base ir.module.module 116 -147 \N \N \N \N t module_lunch \N \N base ir.module.module 117 -148 \N \N \N \N t module_account_cancel \N \N base ir.module.module 118 -149 \N \N \N \N t module_test_documentation_examples \N \N base ir.module.module 119 -150 \N \N \N \N t module_im_livechat \N \N base ir.module.module 120 -151 \N \N \N \N t module_test_exceptions \N \N base ir.module.module 121 -152 \N \N \N \N t module_test_limits \N \N base ir.module.module 122 -153 \N \N \N \N \N module_category_human_resources_survey \N \N base ir.module.category 26 -154 \N \N \N \N t module_hr_recruitment_survey \N \N base ir.module.module 123 -155 \N \N \N \N t module_account_facturx \N \N base ir.module.module 124 -156 \N \N \N \N t module_test_pylint \N \N base ir.module.module 125 -157 \N \N \N \N t module_test_access_rights \N \N base ir.module.module 126 -158 \N \N \N \N t module_im_support \N \N base ir.module.module 127 -159 \N \N \N \N t module_test_website \N \N base ir.module.module 128 -160 \N \N \N \N t module_partner_autocomplete \N \N base ir.module.module 129 -161 \N \N \N \N t module_hr_expense \N \N base ir.module.module 130 -162 \N \N \N \N t module_web_editor \N \N base ir.module.module 131 -163 \N \N \N \N t module_test_uninstall \N \N base ir.module.module 132 -164 \N \N \N \N t module_uom \N \N base ir.module.module 133 -165 \N \N \N \N t module_base_gengo \N \N base ir.module.module 134 -166 \N \N \N \N t module_survey \N \N base ir.module.module 135 -167 \N \N \N \N t module_test_inherits_depends \N \N base ir.module.module 136 -168 \N \N \N \N t module_association \N \N base ir.module.module 137 -169 \N \N \N \N t module_sale_mrp \N \N base ir.module.module 138 -170 \N \N \N \N t module_l10n_eu_service \N \N base ir.module.module 139 -171 \N \N \N \N t module_bus \N \N base ir.module.module 140 -172 \N \N \N \N \N module_category_document_management \N \N base ir.module.category 27 -173 \N \N \N \N t module_document \N \N base ir.module.module 141 -174 \N \N \N \N t module_hr_payroll_account \N \N base ir.module.module 142 -175 \N \N \N \N t module_payment_buckaroo \N \N base ir.module.module 143 -176 \N \N \N \N t module_account_voucher \N \N base ir.module.module 144 -177 \N \N \N \N t module_account_lock \N \N base ir.module.module 145 -178 \N \N \N \N t module_website_event_sale \N \N base ir.module.module 146 -179 \N \N \N \N t module_payment_ogone \N \N base ir.module.module 147 -180 \N \N \N \N \N module_category_base \N \N base ir.module.category 28 -181 \N \N \N \N t module_base_address_extended \N \N base ir.module.module 148 -182 \N \N \N \N t module_crm_reveal \N \N base ir.module.module 149 -183 \N \N \N \N t module_base_import_module \N \N base ir.module.module 150 -184 \N \N \N \N t module_mass_mailing \N \N base ir.module.module 151 -185 \N \N \N \N t module_account_check_printing \N \N base ir.module.module 152 -186 \N \N \N \N t module_account_bank_statement_import \N \N base ir.module.module 153 -187 \N \N \N \N t module_hr_timesheet \N \N base ir.module.module 154 -188 \N \N \N \N t module_hr_attendance \N \N base ir.module.module 155 -189 \N \N \N \N t module_membership \N \N base ir.module.module 156 -190 \N \N \N \N t module_stock_dropshipping \N \N base ir.module.module 157 -191 \N \N \N \N t module_test_translation_import \N \N base ir.module.module 158 -192 \N \N \N \N t module_base \N \N base ir.module.module 159 -193 \N \N \N \N t module_payment_adyen \N \N base ir.module.module 160 -194 \N \N \N \N t module_contacts \N \N base ir.module.module 161 -195 \N \N \N \N t module_sms \N \N base ir.module.module 162 -196 \N \N \N \N t module_base_import \N \N base ir.module.module 163 -197 \N \N \N \N t module_website_survey \N \N base ir.module.module 164 -198 \N \N \N \N t module_account_tax_python \N \N base ir.module.module 165 -199 \N \N \N \N t module_digest \N \N base ir.module.module 166 -200 \N \N \N \N t module_mrp \N \N base ir.module.module 167 -201 \N \N \N \N t module_web \N \N base ir.module.module 168 -202 \N \N \N \N t module_hw_drivers \N \N base ir.module.module 169 -203 \N \N \N \N t module_website_event \N \N base ir.module.module 170 -204 \N \N \N \N t module_test_converter \N \N base ir.module.module 171 -205 \N \N \N \N t module_phone_validation \N \N base ir.module.module 172 -206 \N \N \N \N t module_hr_recruitment \N \N base ir.module.module 173 -207 \N \N \N \N t module_test_main_flows \N \N base ir.module.module 174 -208 \N \N \N \N t module_portal \N \N base ir.module.module 175 -209 \N \N \N \N t module_test_read_group \N \N base ir.module.module 176 -210 \N \N \N \N t module_website_event_questions \N \N base ir.module.module 177 -211 \N \N \N \N t module_hr_maintenance \N \N base ir.module.module 178 -212 \N \N \N \N t module_test_testing_utilities \N \N base ir.module.module 179 -213 \N \N \N \N t module_base_address_city \N \N base ir.module.module 180 -214 \N \N \N \N t module_website_hr \N \N base ir.module.module 181 -215 \N \N \N \N t module_board \N \N base ir.module.module 182 -216 \N \N \N \N t module_purchase \N \N base ir.module.module 183 -217 \N \N \N \N t module_event_sale \N \N base ir.module.module 184 -218 \N \N \N \N t module_event \N \N base ir.module.module 185 -219 \N \N \N \N t module_crm \N \N base ir.module.module 186 -220 \N \N \N \N t module_test_convert \N \N base ir.module.module 187 -221 \N \N \N \N t module_base_setup \N \N base ir.module.module 188 -222 \N \N \N \N t module_fleet \N \N base ir.module.module 189 -223 \N \N \N \N t module_website_form \N \N base ir.module.module 190 -224 \N \N \N \N t module_sale_crm \N \N base ir.module.module 191 -225 \N \N \N \N t module_theme_bootswatch \N \N base ir.module.module 192 -226 \N \N \N \N t module_barcodes \N \N base ir.module.module 193 -227 \N \N \N \N t module_web_diagram \N \N base ir.module.module 194 -228 \N \N \N \N t module_stock_account \N \N base ir.module.module 195 -229 \N \N \N \N t module_payment_authorize \N \N base ir.module.module 196 -230 \N \N \N \N t module_website_mass_mailing \N \N base ir.module.module 197 -231 \N \N \N \N t module_maintenance \N \N base ir.module.module 198 -232 \N \N \N \N t module_decimal_precision \N \N base ir.module.module 199 -233 \N \N \N \N t module_payment \N \N base ir.module.module 200 -234 \N \N \N \N t module_sale_stock \N \N base ir.module.module 201 -235 \N \N \N \N t module_test_assetsbundle \N \N base ir.module.module 202 -236 \N \N \N \N t module_procurement_jit \N \N base ir.module.module 203 -237 \N \N \N \N t module_mrp_byproduct \N \N base ir.module.module 204 -238 \N \N \N \N t module_survey_crm \N \N base ir.module.module 205 -239 \N \N \N \N t module_delivery \N \N base ir.module.module 206 -240 \N \N \N \N t module_sale \N \N base ir.module.module 207 -241 \N \N \N \N t module_purchase_requisition \N \N base ir.module.module 208 -242 \N \N \N \N t module_rating \N \N base ir.module.module 209 -243 \N \N \N \N t module_base_iban \N \N base ir.module.module 210 -244 \N \N \N \N t module_hr_contract \N \N base ir.module.module 211 -245 \N \N \N \N t module_gamification_sale_crm \N \N base ir.module.module 212 -246 \N \N \N \N t module_hr \N \N base ir.module.module 213 -247 \N \N \N \N t module_purchase_mrp \N \N base ir.module.module 214 -248 \N \N \N \N t module_auth_password_policy \N \N base ir.module.module 215 -249 \N \N \N \N t module_fetchmail \N \N base ir.module.module 216 -250 \N \N \N \N t module_mrp_bom_cost \N \N base ir.module.module 217 -251 \N \N \N \N t module_website_mail_channel \N \N base ir.module.module 218 -252 \N \N \N \N t module_website_form_project \N \N base ir.module.module 219 -253 \N \N \N \N t module_google_calendar \N \N base ir.module.module 220 -254 \N \N \N \N t module_website_theme_install \N \N base ir.module.module 221 -255 \N \N \N \N t module_sale_expense \N \N base ir.module.module 222 -256 \N \N \N \N t module_website_slides \N \N base ir.module.module 223 -257 \N \N \N \N t module_website_sale_digital \N \N base ir.module.module 224 -258 \N \N \N \N \N module_category_invoicing_management \N \N base ir.module.category 29 -259 \N \N \N \N t module_account \N \N base ir.module.module 225 -260 \N \N \N \N t module_iap \N \N base ir.module.module 226 -261 \N \N \N \N t module_test_lint \N \N base ir.module.module 227 -262 \N \N \N \N \N model_base 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 1 -263 \N \N \N \N f field_base__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1 -264 \N \N \N \N f field_base__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 2 -265 \N \N \N \N f field_base____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 3 -266 \N \N \N \N \N model__unknown 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 2 -267 \N \N \N \N f field__unknown__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 4 -268 \N \N \N \N f field__unknown__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 5 -269 \N \N \N \N f field__unknown____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 6 -270 \N \N \N \N \N model_ir_model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 3 -271 \N \N \N \N f field_ir_model__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 7 -272 \N \N \N \N f field_ir_model__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 8 -273 \N \N \N \N f field_ir_model__info 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 9 -274 \N \N \N \N f field_ir_model__field_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 10 -275 \N \N \N \N f field_ir_model__inherited_model_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 11 -276 \N \N \N \N f field_ir_model__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 12 -277 \N \N \N \N f field_ir_model__access_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 13 -278 \N \N \N \N f field_ir_model__rule_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 14 -279 \N \N \N \N f field_ir_model__transient 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 15 -280 \N \N \N \N f field_ir_model__modules 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 16 -281 \N \N \N \N f field_ir_model__view_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 17 -282 \N \N \N \N f field_ir_model__count 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 18 -283 \N \N \N \N f field_ir_model__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 19 -284 \N \N \N \N f field_ir_model__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 20 -285 \N \N \N \N f field_ir_model__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 21 -286 \N \N \N \N f field_ir_model__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 22 -287 \N \N \N \N f field_ir_model__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 23 -288 \N \N \N \N f field_ir_model__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 24 -289 \N \N \N \N f field_ir_model____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 25 -290 \N \N \N \N \N model_ir_model_fields 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 4 -291 \N \N \N \N f field_ir_model_fields__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 26 -292 \N \N \N \N f field_ir_model_fields__complete_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 27 -293 \N \N \N \N f field_ir_model_fields__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 28 -294 \N \N \N \N f field_ir_model_fields__relation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 29 -295 \N \N \N \N f field_ir_model_fields__relation_field 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 30 -296 \N \N \N \N f field_ir_model_fields__relation_field_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 31 -297 \N \N \N \N f field_ir_model_fields__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 32 -298 \N \N \N \N f field_ir_model_fields__field_description 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 33 -299 \N \N \N \N f field_ir_model_fields__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 34 -300 \N \N \N \N f field_ir_model_fields__ttype 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 35 -301 \N \N \N \N f field_ir_model_fields__selection 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 36 -302 \N \N \N \N f field_ir_model_fields__copied 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 37 -303 \N \N \N \N f field_ir_model_fields__related 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 38 -304 \N \N \N \N f field_ir_model_fields__related_field_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 39 -305 \N \N \N \N f field_ir_model_fields__required 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 40 -306 \N \N \N \N f field_ir_model_fields__readonly 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 41 -307 \N \N \N \N f field_ir_model_fields__index 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 42 -308 \N \N \N \N f field_ir_model_fields__translate 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 43 -309 \N \N \N \N f field_ir_model_fields__size 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 44 -310 \N \N \N \N f field_ir_model_fields__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 45 -311 \N \N \N \N f field_ir_model_fields__on_delete 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 46 -312 \N \N \N \N f field_ir_model_fields__domain 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 47 -313 \N \N \N \N f field_ir_model_fields__groups 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 48 -314 \N \N \N \N f field_ir_model_fields__selectable 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 49 -315 \N \N \N \N f field_ir_model_fields__modules 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 50 -316 \N \N \N \N f field_ir_model_fields__relation_table 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 51 -317 \N \N \N \N f field_ir_model_fields__column1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 52 -318 \N \N \N \N f field_ir_model_fields__column2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 53 -319 \N \N \N \N f field_ir_model_fields__compute 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 54 -320 \N \N \N \N f field_ir_model_fields__depends 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 55 -321 \N \N \N \N f field_ir_model_fields__store 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 56 -322 \N \N \N \N f field_ir_model_fields__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 57 -323 \N \N \N \N f field_ir_model_fields__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 58 -324 \N \N \N \N f field_ir_model_fields__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 59 -325 \N \N \N \N f field_ir_model_fields__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 60 -326 \N \N \N \N f field_ir_model_fields__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 61 -327 \N \N \N \N f field_ir_model_fields__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 62 -328 \N \N \N \N f field_ir_model_fields____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 63 -329 \N \N \N \N \N model_ir_model_constraint 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 5 -330 \N \N \N \N f field_ir_model_constraint__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 64 -331 \N \N \N \N f field_ir_model_constraint__definition 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 65 -332 \N \N \N \N f field_ir_model_constraint__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 66 -333 \N \N \N \N f field_ir_model_constraint__module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 67 -334 \N \N \N \N f field_ir_model_constraint__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 68 -335 \N \N \N \N f field_ir_model_constraint__date_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 69 -336 \N \N \N \N f field_ir_model_constraint__date_init 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 70 -337 \N \N \N \N f field_ir_model_constraint__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 71 -338 \N \N \N \N f field_ir_model_constraint__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 72 -339 \N \N \N \N f field_ir_model_constraint__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 73 -340 \N \N \N \N f field_ir_model_constraint__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 74 -341 \N \N \N \N f field_ir_model_constraint__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 75 -342 \N \N \N \N f field_ir_model_constraint__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 76 -343 \N \N \N \N f field_ir_model_constraint____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 77 -344 \N \N \N \N \N model_ir_model_relation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 6 -345 \N \N \N \N f field_ir_model_relation__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 78 -346 \N \N \N \N f field_ir_model_relation__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 79 -347 \N \N \N \N f field_ir_model_relation__module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 80 -348 \N \N \N \N f field_ir_model_relation__date_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 81 -349 \N \N \N \N f field_ir_model_relation__date_init 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 82 -350 \N \N \N \N f field_ir_model_relation__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 83 -351 \N \N \N \N f field_ir_model_relation__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 84 -352 \N \N \N \N f field_ir_model_relation__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 85 -353 \N \N \N \N f field_ir_model_relation__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 86 -354 \N \N \N \N f field_ir_model_relation__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 87 -355 \N \N \N \N f field_ir_model_relation__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 88 -356 \N \N \N \N f field_ir_model_relation____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 89 -357 \N \N \N \N \N model_ir_model_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 7 -358 \N \N \N \N f field_ir_model_access__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 90 -359 \N \N \N \N f field_ir_model_access__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 91 -360 \N \N \N \N f field_ir_model_access__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 92 -361 \N \N \N \N f field_ir_model_access__group_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 93 -362 \N \N \N \N f field_ir_model_access__perm_read 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 94 -363 \N \N \N \N f field_ir_model_access__perm_write 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 95 -364 \N \N \N \N f field_ir_model_access__perm_create 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 96 -365 \N \N \N \N f field_ir_model_access__perm_unlink 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 97 -366 \N \N \N \N f field_ir_model_access__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 98 -367 \N \N \N \N f field_ir_model_access__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 99 -368 \N \N \N \N f field_ir_model_access__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 100 -369 \N \N \N \N f field_ir_model_access__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 101 -370 \N \N \N \N f field_ir_model_access__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 102 -371 \N \N \N \N f field_ir_model_access__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 103 -372 \N \N \N \N f field_ir_model_access____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 104 -373 \N \N \N \N \N model_ir_model_data 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 8 -374 \N \N \N \N f field_ir_model_data__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 105 -375 \N \N \N \N f field_ir_model_data__complete_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 106 -376 \N \N \N \N f field_ir_model_data__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 107 -377 \N \N \N \N f field_ir_model_data__module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 108 -378 \N \N \N \N f field_ir_model_data__res_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 109 -379 \N \N \N \N f field_ir_model_data__noupdate 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 110 -380 \N \N \N \N f field_ir_model_data__date_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 111 -381 \N \N \N \N f field_ir_model_data__date_init 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 112 -382 \N \N \N \N f field_ir_model_data__reference 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 113 -383 \N \N \N \N f field_ir_model_data__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 114 -384 \N \N \N \N f field_ir_model_data__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 115 -385 \N \N \N \N f field_ir_model_data__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 116 -386 \N \N \N \N f field_ir_model_data__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 117 -387 \N \N \N \N f field_ir_model_data__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 118 -388 \N \N \N \N f field_ir_model_data__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 119 -389 \N \N \N \N f field_ir_model_data____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 120 -390 \N \N \N \N \N model_wizard_ir_model_menu_create 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 9 -391 \N \N \N \N f field_wizard_ir_model_menu_create__menu_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 121 -392 \N \N \N \N f field_wizard_ir_model_menu_create__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 122 -393 \N \N \N \N f field_wizard_ir_model_menu_create__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 123 -394 \N \N \N \N f field_wizard_ir_model_menu_create__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 124 -395 \N \N \N \N f field_wizard_ir_model_menu_create__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 125 -396 \N \N \N \N f field_wizard_ir_model_menu_create__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 126 -397 \N \N \N \N f field_wizard_ir_model_menu_create__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 127 -398 \N \N \N \N f field_wizard_ir_model_menu_create__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 128 -399 \N \N \N \N f field_wizard_ir_model_menu_create____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 129 -400 \N \N \N \N \N model_ir_sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 10 -401 \N \N \N \N f field_ir_sequence__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 130 -402 \N \N \N \N f field_ir_sequence__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 131 -403 \N \N \N \N f field_ir_sequence__implementation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 132 -404 \N \N \N \N f field_ir_sequence__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 133 -405 \N \N \N \N f field_ir_sequence__prefix 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 134 -406 \N \N \N \N f field_ir_sequence__suffix 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 135 -407 \N \N \N \N f field_ir_sequence__number_next 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 136 -408 \N \N \N \N f field_ir_sequence__number_next_actual 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 137 -409 \N \N \N \N f field_ir_sequence__number_increment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 138 -410 \N \N \N \N f field_ir_sequence__padding 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 139 -411 \N \N \N \N f field_ir_sequence__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 140 -412 \N \N \N \N f field_ir_sequence__use_date_range 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 141 -413 \N \N \N \N f field_ir_sequence__date_range_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 142 -414 \N \N \N \N f field_ir_sequence__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 143 -415 \N \N \N \N f field_ir_sequence__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 144 -416 \N \N \N \N f field_ir_sequence__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 145 -417 \N \N \N \N f field_ir_sequence__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 146 -418 \N \N \N \N f field_ir_sequence__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 147 -419 \N \N \N \N f field_ir_sequence__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 148 -420 \N \N \N \N f field_ir_sequence____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 149 -421 \N \N \N \N \N model_ir_sequence_date_range 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 11 -422 \N \N \N \N f field_ir_sequence_date_range__date_from 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 150 -423 \N \N \N \N f field_ir_sequence_date_range__date_to 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 151 -424 \N \N \N \N f field_ir_sequence_date_range__sequence_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 152 -425 \N \N \N \N f field_ir_sequence_date_range__number_next 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 153 -426 \N \N \N \N f field_ir_sequence_date_range__number_next_actual 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 154 -427 \N \N \N \N f field_ir_sequence_date_range__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 155 -428 \N \N \N \N f field_ir_sequence_date_range__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 156 -429 \N \N \N \N f field_ir_sequence_date_range__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 157 -430 \N \N \N \N f field_ir_sequence_date_range__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 158 -431 \N \N \N \N f field_ir_sequence_date_range__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 159 -432 \N \N \N \N f field_ir_sequence_date_range__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 160 -433 \N \N \N \N f field_ir_sequence_date_range____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 161 -434 \N \N \N \N \N model_ir_ui_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 12 -435 \N \N \N \N f field_ir_ui_menu__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 162 -436 \N \N \N \N f field_ir_ui_menu__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 163 -437 \N \N \N \N f field_ir_ui_menu__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 164 -438 \N \N \N \N f field_ir_ui_menu__child_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 165 -439 \N \N \N \N f field_ir_ui_menu__parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 166 -440 \N \N \N \N f field_ir_ui_menu__parent_path 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 167 -441 \N \N \N \N f field_ir_ui_menu__groups_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 168 -442 \N \N \N \N f field_ir_ui_menu__complete_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 169 -443 \N \N \N \N f field_ir_ui_menu__web_icon 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 170 -444 \N \N \N \N f field_ir_ui_menu__action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 171 -445 \N \N \N \N f field_ir_ui_menu__web_icon_data 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 172 -446 \N \N \N \N f field_ir_ui_menu__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 173 -447 \N \N \N \N f field_ir_ui_menu__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 174 -448 \N \N \N \N f field_ir_ui_menu__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 175 -449 \N \N \N \N f field_ir_ui_menu__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 176 -450 \N \N \N \N f field_ir_ui_menu__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 177 -451 \N \N \N \N f field_ir_ui_menu__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 178 -452 \N \N \N \N f field_ir_ui_menu____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 179 -453 \N \N \N \N \N model_ir_ui_view_custom 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 13 -454 \N \N \N \N f field_ir_ui_view_custom__ref_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 180 -455 \N \N \N \N f field_ir_ui_view_custom__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 181 -456 \N \N \N \N f field_ir_ui_view_custom__arch 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 182 -457 \N \N \N \N f field_ir_ui_view_custom__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 183 -458 \N \N \N \N f field_ir_ui_view_custom__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 184 -459 \N \N \N \N f field_ir_ui_view_custom__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 185 -460 \N \N \N \N f field_ir_ui_view_custom__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 186 -461 \N \N \N \N f field_ir_ui_view_custom__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 187 -462 \N \N \N \N f field_ir_ui_view_custom__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 188 -463 \N \N \N \N f field_ir_ui_view_custom____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 189 -464 \N \N \N \N \N model_ir_ui_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 14 -465 \N \N \N \N f field_ir_ui_view__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 190 -466 \N \N \N \N f field_ir_ui_view__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 191 -467 \N \N \N \N f field_ir_ui_view__key 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 192 -468 \N \N \N \N f field_ir_ui_view__priority 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 193 -469 \N \N \N \N f field_ir_ui_view__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 194 -470 \N \N \N \N f field_ir_ui_view__arch 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 195 -471 \N \N \N \N f field_ir_ui_view__arch_base 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 196 -472 \N \N \N \N f field_ir_ui_view__arch_db 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 197 -473 \N \N \N \N f field_ir_ui_view__arch_fs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 198 -474 \N \N \N \N f field_ir_ui_view__inherit_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 199 -475 \N \N \N \N f field_ir_ui_view__inherit_children_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 200 -476 \N \N \N \N f field_ir_ui_view__field_parent 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 201 -477 \N \N \N \N f field_ir_ui_view__model_data_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 202 -478 \N \N \N \N f field_ir_ui_view__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 203 -479 \N \N \N \N f field_ir_ui_view__groups_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 204 -480 \N \N \N \N f field_ir_ui_view__model_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 205 -481 \N \N \N \N f field_ir_ui_view__mode 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 206 -482 \N \N \N \N f field_ir_ui_view__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 207 -483 \N \N \N \N f field_ir_ui_view__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 208 -484 \N \N \N \N f field_ir_ui_view__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 209 -485 \N \N \N \N f field_ir_ui_view__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 210 -486 \N \N \N \N f field_ir_ui_view__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 211 -487 \N \N \N \N f field_ir_ui_view__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 212 -488 \N \N \N \N f field_ir_ui_view__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 213 -489 \N \N \N \N f field_ir_ui_view____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 214 -490 \N \N \N \N \N model_ir_actions_actions 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 15 -491 \N \N \N \N f field_ir_actions_actions__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 215 -492 \N \N \N \N f field_ir_actions_actions__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 216 -493 \N \N \N \N f field_ir_actions_actions__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 217 -494 \N \N \N \N f field_ir_actions_actions__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 218 -495 \N \N \N \N f field_ir_actions_actions__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 219 -496 \N \N \N \N f field_ir_actions_actions__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 220 -497 \N \N \N \N f field_ir_actions_actions__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 221 -498 \N \N \N \N f field_ir_actions_actions__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 222 -499 \N \N \N \N f field_ir_actions_actions__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 223 -500 \N \N \N \N f field_ir_actions_actions__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 224 -501 \N \N \N \N f field_ir_actions_actions__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 225 -502 \N \N \N \N f field_ir_actions_actions__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 226 -503 \N \N \N \N f field_ir_actions_actions____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 227 -504 \N \N \N \N \N model_ir_actions_act_window 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 16 -505 \N \N \N \N f field_ir_actions_act_window__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 228 -506 \N \N \N \N f field_ir_actions_act_window__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 229 -507 \N \N \N \N f field_ir_actions_act_window__view_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 230 -508 \N \N \N \N f field_ir_actions_act_window__domain 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 231 -509 \N \N \N \N f field_ir_actions_act_window__context 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 232 -510 \N \N \N \N f field_ir_actions_act_window__res_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 233 -511 \N \N \N \N f field_ir_actions_act_window__res_model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 234 -512 \N \N \N \N f field_ir_actions_act_window__src_model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 235 -513 \N \N \N \N f field_ir_actions_act_window__target 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 236 -514 \N \N \N \N f field_ir_actions_act_window__view_mode 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 237 -515 \N \N \N \N f field_ir_actions_act_window__view_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 238 -516 \N \N \N \N f field_ir_actions_act_window__usage 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 239 -517 \N \N \N \N f field_ir_actions_act_window__view_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 240 -518 \N \N \N \N f field_ir_actions_act_window__views 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 241 -519 \N \N \N \N f field_ir_actions_act_window__limit 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 242 -520 \N \N \N \N f field_ir_actions_act_window__groups_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 243 -521 \N \N \N \N f field_ir_actions_act_window__search_view_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 244 -522 \N \N \N \N f field_ir_actions_act_window__filter 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 245 -523 \N \N \N \N f field_ir_actions_act_window__auto_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 246 -524 \N \N \N \N f field_ir_actions_act_window__search_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 247 -525 \N \N \N \N f field_ir_actions_act_window__multi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 248 -526 \N \N \N \N f field_ir_actions_act_window__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 249 -527 \N \N \N \N f field_ir_actions_act_window__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 250 -528 \N \N \N \N f field_ir_actions_act_window__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 251 -529 \N \N \N \N f field_ir_actions_act_window__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 252 -530 \N \N \N \N f field_ir_actions_act_window__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 253 -531 \N \N \N \N f field_ir_actions_act_window__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 254 -532 \N \N \N \N f field_ir_actions_act_window__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 255 -533 \N \N \N \N f field_ir_actions_act_window__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 256 -534 \N \N \N \N f field_ir_actions_act_window__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 257 -535 \N \N \N \N f field_ir_actions_act_window__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 258 -536 \N \N \N \N f field_ir_actions_act_window____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 259 -537 \N \N \N \N \N model_ir_actions_act_window_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 17 -538 \N \N \N \N f field_ir_actions_act_window_view__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 260 -539 \N \N \N \N f field_ir_actions_act_window_view__view_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 261 -540 \N \N \N \N f field_ir_actions_act_window_view__view_mode 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 262 -541 \N \N \N \N f field_ir_actions_act_window_view__act_window_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 263 -542 \N \N \N \N f field_ir_actions_act_window_view__multi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 264 -543 \N \N \N \N f field_ir_actions_act_window_view__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 265 -544 \N \N \N \N f field_ir_actions_act_window_view__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 266 -545 \N \N \N \N f field_ir_actions_act_window_view__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 267 -546 \N \N \N \N f field_ir_actions_act_window_view__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 268 -547 \N \N \N \N f field_ir_actions_act_window_view__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 269 -548 \N \N \N \N f field_ir_actions_act_window_view__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 270 -549 \N \N \N \N f field_ir_actions_act_window_view____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 271 -550 \N \N \N \N \N model_ir_actions_act_window_close 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 18 -551 \N \N \N \N f field_ir_actions_act_window_close__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 272 -552 \N \N \N \N f field_ir_actions_act_window_close__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 273 -553 \N \N \N \N f field_ir_actions_act_window_close__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 274 -554 \N \N \N \N f field_ir_actions_act_window_close__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 275 -555 \N \N \N \N f field_ir_actions_act_window_close__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 276 -556 \N \N \N \N f field_ir_actions_act_window_close__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 277 -557 \N \N \N \N f field_ir_actions_act_window_close__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 278 -558 \N \N \N \N f field_ir_actions_act_window_close__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 279 -559 \N \N \N \N f field_ir_actions_act_window_close__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 280 -560 \N \N \N \N f field_ir_actions_act_window_close__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 281 -561 \N \N \N \N f field_ir_actions_act_window_close__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 282 -562 \N \N \N \N f field_ir_actions_act_window_close__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 283 -563 \N \N \N \N f field_ir_actions_act_window_close____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 284 -564 \N \N \N \N \N model_ir_actions_act_url 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 19 -565 \N \N \N \N f field_ir_actions_act_url__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 285 -566 \N \N \N \N f field_ir_actions_act_url__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 286 -567 \N \N \N \N f field_ir_actions_act_url__url 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 287 -568 \N \N \N \N f field_ir_actions_act_url__target 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 288 -569 \N \N \N \N f field_ir_actions_act_url__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 289 -570 \N \N \N \N f field_ir_actions_act_url__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 290 -571 \N \N \N \N f field_ir_actions_act_url__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 291 -572 \N \N \N \N f field_ir_actions_act_url__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 292 -573 \N \N \N \N f field_ir_actions_act_url__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 293 -574 \N \N \N \N f field_ir_actions_act_url__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 294 -575 \N \N \N \N f field_ir_actions_act_url__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 295 -576 \N \N \N \N f field_ir_actions_act_url__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 296 -577 \N \N \N \N f field_ir_actions_act_url__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 297 -578 \N \N \N \N f field_ir_actions_act_url__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 298 -579 \N \N \N \N f field_ir_actions_act_url____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 299 -580 \N \N \N \N \N model_ir_actions_server 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 20 -581 \N \N \N \N f field_ir_actions_server__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 300 -582 \N \N \N \N f field_ir_actions_server__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 301 -583 \N \N \N \N f field_ir_actions_server__usage 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 302 -584 \N \N \N \N f field_ir_actions_server__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 303 -585 \N \N \N \N f field_ir_actions_server__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 304 -586 \N \N \N \N f field_ir_actions_server__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 305 -587 \N \N \N \N f field_ir_actions_server__model_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 306 -588 \N \N \N \N f field_ir_actions_server__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 307 -589 \N \N \N \N f field_ir_actions_server__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 308 -590 \N \N \N \N f field_ir_actions_server__crud_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 309 -591 \N \N \N \N f field_ir_actions_server__crud_model_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 310 -592 \N \N \N \N f field_ir_actions_server__link_field_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 311 -593 \N \N \N \N f field_ir_actions_server__fields_lines 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 312 -594 \N \N \N \N f field_ir_actions_server__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 313 -595 \N \N \N \N f field_ir_actions_server__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 314 -596 \N \N \N \N f field_ir_actions_server__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 315 -597 \N \N \N \N f field_ir_actions_server__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 316 -598 \N \N \N \N f field_ir_actions_server__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 317 -599 \N \N \N \N f field_ir_actions_server__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 318 -600 \N \N \N \N f field_ir_actions_server__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 319 -601 \N \N \N \N f field_ir_actions_server__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 320 -602 \N \N \N \N f field_ir_actions_server__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 321 -603 \N \N \N \N f field_ir_actions_server__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 322 -604 \N \N \N \N f field_ir_actions_server____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 323 -605 \N \N \N \N \N model_ir_server_object_lines 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 21 -606 \N \N \N \N f field_ir_server_object_lines__server_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 324 -607 \N \N \N \N f field_ir_server_object_lines__col1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 325 -608 \N \N \N \N f field_ir_server_object_lines__value 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 326 -609 \N \N \N \N f field_ir_server_object_lines__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 327 -610 \N \N \N \N f field_ir_server_object_lines__resource_ref 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 328 -611 \N \N \N \N f field_ir_server_object_lines__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 329 -612 \N \N \N \N f field_ir_server_object_lines__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 330 -613 \N \N \N \N f field_ir_server_object_lines__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 331 -614 \N \N \N \N f field_ir_server_object_lines__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 332 -615 \N \N \N \N f field_ir_server_object_lines__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 333 -616 \N \N \N \N f field_ir_server_object_lines__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 334 -617 \N \N \N \N f field_ir_server_object_lines____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 335 -618 \N \N \N \N \N model_ir_actions_todo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 22 -619 \N \N \N \N f field_ir_actions_todo__action_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 336 -620 \N \N \N \N f field_ir_actions_todo__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 337 -621 \N \N \N \N f field_ir_actions_todo__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 338 -622 \N \N \N \N f field_ir_actions_todo__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 339 -623 \N \N \N \N f field_ir_actions_todo__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 340 -624 \N \N \N \N f field_ir_actions_todo__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 341 -625 \N \N \N \N f field_ir_actions_todo__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 342 -626 \N \N \N \N f field_ir_actions_todo__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 343 -627 \N \N \N \N f field_ir_actions_todo__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 344 -628 \N \N \N \N f field_ir_actions_todo__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 345 -629 \N \N \N \N f field_ir_actions_todo____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 346 -630 \N \N \N \N \N model_ir_actions_client 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 23 -631 \N \N \N \N f field_ir_actions_client__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 347 -632 \N \N \N \N f field_ir_actions_client__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 348 -633 \N \N \N \N f field_ir_actions_client__tag 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 349 -634 \N \N \N \N f field_ir_actions_client__target 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 350 -635 \N \N \N \N f field_ir_actions_client__res_model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 351 -636 \N \N \N \N f field_ir_actions_client__context 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 352 -637 \N \N \N \N f field_ir_actions_client__params 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 353 -638 \N \N \N \N f field_ir_actions_client__params_store 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 354 -639 \N \N \N \N f field_ir_actions_client__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 355 -640 \N \N \N \N f field_ir_actions_client__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 356 -641 \N \N \N \N f field_ir_actions_client__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 357 -642 \N \N \N \N f field_ir_actions_client__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 358 -643 \N \N \N \N f field_ir_actions_client__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 359 -644 \N \N \N \N f field_ir_actions_client__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 360 -645 \N \N \N \N f field_ir_actions_client__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 361 -646 \N \N \N \N f field_ir_actions_client__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 362 -647 \N \N \N \N f field_ir_actions_client__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 363 -648 \N \N \N \N f field_ir_actions_client__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 364 -649 \N \N \N \N f field_ir_actions_client____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 365 -650 \N \N \N \N \N model_ir_actions_report 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 24 -651 \N \N \N \N f field_ir_actions_report__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 366 -652 \N \N \N \N f field_ir_actions_report__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 367 -653 \N \N \N \N f field_ir_actions_report__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 368 -654 \N \N \N \N f field_ir_actions_report__model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 369 -655 \N \N \N \N f field_ir_actions_report__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 370 -656 \N \N \N \N f field_ir_actions_report__report_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 371 -657 \N \N \N \N f field_ir_actions_report__report_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 372 -658 \N \N \N \N f field_ir_actions_report__report_file 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 373 -659 \N \N \N \N f field_ir_actions_report__groups_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 374 -660 \N \N \N \N f field_ir_actions_report__multi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 375 -661 \N \N \N \N f field_ir_actions_report__paperformat_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 376 -662 \N \N \N \N f field_ir_actions_report__print_report_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 377 -663 \N \N \N \N f field_ir_actions_report__attachment_use 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 378 -664 \N \N \N \N f field_ir_actions_report__attachment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 379 -665 \N \N \N \N f field_ir_actions_report__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 380 -666 \N \N \N \N f field_ir_actions_report__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 381 -667 \N \N \N \N f field_ir_actions_report__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 382 -668 \N \N \N \N f field_ir_actions_report__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 383 -669 \N \N \N \N f field_ir_actions_report__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 384 -670 \N \N \N \N f field_ir_actions_report__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 385 -671 \N \N \N \N f field_ir_actions_report__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 386 -672 \N \N \N \N f field_ir_actions_report__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 387 -673 \N \N \N \N f field_ir_actions_report__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 388 -674 \N \N \N \N f field_ir_actions_report____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 389 -675 \N \N \N \N \N model_ir_attachment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 25 -676 \N \N \N \N f field_ir_attachment__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 390 -677 \N \N \N \N f field_ir_attachment__datas_fname 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 391 -678 \N \N \N \N f field_ir_attachment__description 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 392 -679 \N \N \N \N f field_ir_attachment__res_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 393 -680 \N \N \N \N f field_ir_attachment__res_model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 394 -681 \N \N \N \N f field_ir_attachment__res_model_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 395 -682 \N \N \N \N f field_ir_attachment__res_field 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 396 -683 \N \N \N \N f field_ir_attachment__res_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 397 -684 \N \N \N \N f field_ir_attachment__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 398 -685 \N \N \N \N f field_ir_attachment__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 399 -686 \N \N \N \N f field_ir_attachment__url 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 400 -687 \N \N \N \N f field_ir_attachment__public 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 401 -688 \N \N \N \N f field_ir_attachment__access_token 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 402 -689 \N \N \N \N f field_ir_attachment__datas 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 403 -690 \N \N \N \N f field_ir_attachment__db_datas 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 404 -691 \N \N \N \N f field_ir_attachment__store_fname 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 405 -692 \N \N \N \N f field_ir_attachment__file_size 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 406 -693 \N \N \N \N f field_ir_attachment__checksum 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 407 -694 \N \N \N \N f field_ir_attachment__mimetype 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 408 -695 \N \N \N \N f field_ir_attachment__index_content 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 409 -696 \N \N \N \N f field_ir_attachment__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 410 -697 \N \N \N \N f field_ir_attachment__thumbnail 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 411 -698 \N \N \N \N f field_ir_attachment__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 412 -699 \N \N \N \N f field_ir_attachment__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 413 -700 \N \N \N \N f field_ir_attachment__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 414 -701 \N \N \N \N f field_ir_attachment__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 415 -702 \N \N \N \N f field_ir_attachment__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 416 -703 \N \N \N \N f field_ir_attachment__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 417 -704 \N \N \N \N f field_ir_attachment____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 418 -705 \N \N \N \N \N model_ir_cron 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 26 -706 \N \N \N \N f field_ir_cron__ir_actions_server_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 419 -707 \N \N \N \N f field_ir_cron__cron_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 420 -708 \N \N \N \N f field_ir_cron__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 421 -709 \N \N \N \N f field_ir_cron__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 422 -710 \N \N \N \N f field_ir_cron__interval_number 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 423 -711 \N \N \N \N f field_ir_cron__interval_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 424 -712 \N \N \N \N f field_ir_cron__numbercall 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 425 -713 \N \N \N \N f field_ir_cron__doall 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 426 -714 \N \N \N \N f field_ir_cron__nextcall 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 427 -715 \N \N \N \N f field_ir_cron__priority 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 428 -716 \N \N \N \N f field_ir_cron__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 429 -717 \N \N \N \N f field_ir_cron__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 430 -718 \N \N \N \N f field_ir_cron__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 431 -719 \N \N \N \N f field_ir_cron__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 432 -720 \N \N \N \N f field_ir_cron__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 433 -721 \N \N \N \N f field_ir_cron__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 434 -722 \N \N \N \N f field_ir_cron____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 435 -723 \N \N \N \N f field_ir_cron__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 436 -724 \N \N \N \N f field_ir_cron__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 437 -725 \N \N \N \N f field_ir_cron__usage 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 438 -726 \N \N \N \N f field_ir_cron__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 439 -727 \N \N \N \N f field_ir_cron__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 440 -728 \N \N \N \N f field_ir_cron__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 441 -729 \N \N \N \N f field_ir_cron__model_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 442 -730 \N \N \N \N f field_ir_cron__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 443 -731 \N \N \N \N f field_ir_cron__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 444 -732 \N \N \N \N f field_ir_cron__crud_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 445 -733 \N \N \N \N f field_ir_cron__crud_model_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 446 -734 \N \N \N \N f field_ir_cron__link_field_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 447 -735 \N \N \N \N f field_ir_cron__fields_lines 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 448 -736 \N \N \N \N f field_ir_cron__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 449 -737 \N \N \N \N f field_ir_cron__help 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 450 -738 \N \N \N \N f field_ir_cron__binding_model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 451 -739 \N \N \N \N f field_ir_cron__binding_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 452 -740 \N \N \N \N \N model_ir_filters 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 27 -741 \N \N \N \N f field_ir_filters__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 453 -742 \N \N \N \N f field_ir_filters__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 454 -743 \N \N \N \N f field_ir_filters__domain 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 455 -744 \N \N \N \N f field_ir_filters__context 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 456 -745 \N \N \N \N f field_ir_filters__sort 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 457 -746 \N \N \N \N f field_ir_filters__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 458 -747 \N \N \N \N f field_ir_filters__is_default 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 459 -748 \N \N \N \N f field_ir_filters__action_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 460 -749 \N \N \N \N f field_ir_filters__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 461 -750 \N \N \N \N f field_ir_filters__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 462 -751 \N \N \N \N f field_ir_filters__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 463 -752 \N \N \N \N f field_ir_filters__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 464 -753 \N \N \N \N f field_ir_filters__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 465 -754 \N \N \N \N f field_ir_filters__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 466 -755 \N \N \N \N f field_ir_filters__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 467 -756 \N \N \N \N f field_ir_filters____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 468 -757 \N \N \N \N \N model_ir_default 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 28 -758 \N \N \N \N f field_ir_default__field_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 469 -759 \N \N \N \N f field_ir_default__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 470 -760 \N \N \N \N f field_ir_default__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 471 -761 \N \N \N \N f field_ir_default__condition 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 472 -762 \N \N \N \N f field_ir_default__json_value 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 473 -763 \N \N \N \N f field_ir_default__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 474 -764 \N \N \N \N f field_ir_default__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 475 -765 \N \N \N \N f field_ir_default__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 476 -766 \N \N \N \N f field_ir_default__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 477 -767 \N \N \N \N f field_ir_default__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 478 -768 \N \N \N \N f field_ir_default__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 479 -769 \N \N \N \N f field_ir_default____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 480 -770 \N \N \N \N \N model_ir_translation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 29 -771 \N \N \N \N f field_ir_translation__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 481 -772 \N \N \N \N f field_ir_translation__res_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 482 -773 \N \N \N \N f field_ir_translation__lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 483 -774 \N \N \N \N f field_ir_translation__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 484 -775 \N \N \N \N f field_ir_translation__src 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 485 -776 \N \N \N \N f field_ir_translation__source 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 486 -777 \N \N \N \N f field_ir_translation__value 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 487 -778 \N \N \N \N f field_ir_translation__module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 488 -779 \N \N \N \N f field_ir_translation__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 489 -780 \N \N \N \N f field_ir_translation__comments 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 490 -781 \N \N \N \N f field_ir_translation__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 491 -782 \N \N \N \N f field_ir_translation__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 492 -783 \N \N \N \N f field_ir_translation____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 493 -784 \N \N \N \N \N model_ir_exports 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 30 -785 \N \N \N \N f field_ir_exports__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 494 -786 \N \N \N \N f field_ir_exports__resource 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 495 -787 \N \N \N \N f field_ir_exports__export_fields 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 496 -788 \N \N \N \N f field_ir_exports__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 497 -789 \N \N \N \N f field_ir_exports__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 498 -790 \N \N \N \N f field_ir_exports__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 499 -791 \N \N \N \N f field_ir_exports__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 500 -792 \N \N \N \N f field_ir_exports__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 501 -793 \N \N \N \N f field_ir_exports__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 502 -794 \N \N \N \N f field_ir_exports____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 503 -795 \N \N \N \N \N model_ir_exports_line 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 31 -796 \N \N \N \N f field_ir_exports_line__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 504 -797 \N \N \N \N f field_ir_exports_line__export_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 505 -798 \N \N \N \N f field_ir_exports_line__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 506 -799 \N \N \N \N f field_ir_exports_line__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 507 -800 \N \N \N \N f field_ir_exports_line__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 508 -801 \N \N \N \N f field_ir_exports_line__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 509 -802 \N \N \N \N f field_ir_exports_line__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 510 -803 \N \N \N \N f field_ir_exports_line__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 511 -804 \N \N \N \N f field_ir_exports_line____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 512 -805 \N \N \N \N \N model_ir_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 32 -806 \N \N \N \N f field_ir_rule__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 513 -807 \N \N \N \N f field_ir_rule__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 514 -808 \N \N \N \N f field_ir_rule__model_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 515 -809 \N \N \N \N f field_ir_rule__groups 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 516 -810 \N \N \N \N f field_ir_rule__domain_force 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 517 -811 \N \N \N \N f field_ir_rule__perm_read 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 518 -812 \N \N \N \N f field_ir_rule__perm_write 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 519 -813 \N \N \N \N f field_ir_rule__perm_create 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 520 -814 \N \N \N \N f field_ir_rule__perm_unlink 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 521 -815 \N \N \N \N f field_ir_rule__global 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 522 -816 \N \N \N \N f field_ir_rule__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 523 -817 \N \N \N \N f field_ir_rule__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 524 -818 \N \N \N \N f field_ir_rule__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 525 -819 \N \N \N \N f field_ir_rule__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 526 -820 \N \N \N \N f field_ir_rule__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 527 -821 \N \N \N \N f field_ir_rule__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 528 -822 \N \N \N \N f field_ir_rule____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 529 -823 \N \N \N \N \N model_ir_config_parameter 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 33 -824 \N \N \N \N f field_ir_config_parameter__key 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 530 -825 \N \N \N \N f field_ir_config_parameter__value 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 531 -826 \N \N \N \N f field_ir_config_parameter__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 532 -827 \N \N \N \N f field_ir_config_parameter__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 533 -828 \N \N \N \N f field_ir_config_parameter__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 534 -829 \N \N \N \N f field_ir_config_parameter__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 535 -830 \N \N \N \N f field_ir_config_parameter__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 536 -831 \N \N \N \N f field_ir_config_parameter__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 537 -832 \N \N \N \N f field_ir_config_parameter____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 538 -833 \N \N \N \N \N model_ir_autovacuum 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 34 -834 \N \N \N \N f field_ir_autovacuum__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 539 -835 \N \N \N \N f field_ir_autovacuum__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 540 -836 \N \N \N \N f field_ir_autovacuum____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 541 -837 \N \N \N \N \N model_ir_mail_server 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 35 -838 \N \N \N \N f field_ir_mail_server__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 542 -839 \N \N \N \N f field_ir_mail_server__smtp_host 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 543 -840 \N \N \N \N f field_ir_mail_server__smtp_port 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 544 -841 \N \N \N \N f field_ir_mail_server__smtp_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 545 -842 \N \N \N \N f field_ir_mail_server__smtp_pass 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 546 -843 \N \N \N \N f field_ir_mail_server__smtp_encryption 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 547 -844 \N \N \N \N f field_ir_mail_server__smtp_debug 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 548 -845 \N \N \N \N f field_ir_mail_server__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 549 -846 \N \N \N \N f field_ir_mail_server__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 550 -847 \N \N \N \N f field_ir_mail_server__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 551 -848 \N \N \N \N f field_ir_mail_server__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 552 -849 \N \N \N \N f field_ir_mail_server__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 553 -850 \N \N \N \N f field_ir_mail_server__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 554 -851 \N \N \N \N f field_ir_mail_server__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 555 -852 \N \N \N \N f field_ir_mail_server__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 556 -853 \N \N \N \N f field_ir_mail_server____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 557 -854 \N \N \N \N \N model_ir_fields_converter 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 36 -855 \N \N \N \N f field_ir_fields_converter__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 558 -856 \N \N \N \N f field_ir_fields_converter__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 559 -857 \N \N \N \N f field_ir_fields_converter____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 560 -858 \N \N \N \N \N model_ir_qweb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 37 -859 \N \N \N \N f field_ir_qweb__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 561 -860 \N \N \N \N f field_ir_qweb__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 562 -861 \N \N \N \N f field_ir_qweb____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 563 -862 \N \N \N \N \N model_ir_qweb_field 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 38 -863 \N \N \N \N f field_ir_qweb_field__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 564 -864 \N \N \N \N f field_ir_qweb_field__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 565 -865 \N \N \N \N f field_ir_qweb_field____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 566 -866 \N \N \N \N \N model_ir_qweb_field_integer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 39 -867 \N \N \N \N f field_ir_qweb_field_integer__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 567 -868 \N \N \N \N f field_ir_qweb_field_integer__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 568 -869 \N \N \N \N f field_ir_qweb_field_integer____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 569 -870 \N \N \N \N \N model_ir_qweb_field_float 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 40 -871 \N \N \N \N f field_ir_qweb_field_float__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 570 -872 \N \N \N \N f field_ir_qweb_field_float__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 571 -873 \N \N \N \N f field_ir_qweb_field_float____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 572 -874 \N \N \N \N \N model_ir_qweb_field_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 41 -875 \N \N \N \N f field_ir_qweb_field_date__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 573 -876 \N \N \N \N f field_ir_qweb_field_date__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 574 -877 \N \N \N \N f field_ir_qweb_field_date____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 575 -878 \N \N \N \N \N model_ir_qweb_field_datetime 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 42 -879 \N \N \N \N f field_ir_qweb_field_datetime__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 576 -880 \N \N \N \N f field_ir_qweb_field_datetime__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 577 -881 \N \N \N \N f field_ir_qweb_field_datetime____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 578 -882 \N \N \N \N \N model_ir_qweb_field_text 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 43 -883 \N \N \N \N f field_ir_qweb_field_text__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 579 -884 \N \N \N \N f field_ir_qweb_field_text__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 580 -885 \N \N \N \N f field_ir_qweb_field_text____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 581 -886 \N \N \N \N \N model_ir_qweb_field_selection 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 44 -887 \N \N \N \N f field_ir_qweb_field_selection__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 582 -888 \N \N \N \N f field_ir_qweb_field_selection__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 583 -889 \N \N \N \N f field_ir_qweb_field_selection____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 584 -890 \N \N \N \N \N model_ir_qweb_field_many2one 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 45 -891 \N \N \N \N f field_ir_qweb_field_many2one__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 585 -892 \N \N \N \N f field_ir_qweb_field_many2one__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 586 -893 \N \N \N \N f field_ir_qweb_field_many2one____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 587 -894 \N \N \N \N \N model_ir_qweb_field_many2many 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 46 -895 \N \N \N \N f field_ir_qweb_field_many2many__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 588 -896 \N \N \N \N f field_ir_qweb_field_many2many__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 589 -897 \N \N \N \N f field_ir_qweb_field_many2many____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 590 -898 \N \N \N \N \N model_ir_qweb_field_html 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 47 -899 \N \N \N \N f field_ir_qweb_field_html__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 591 -900 \N \N \N \N f field_ir_qweb_field_html__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 592 -901 \N \N \N \N f field_ir_qweb_field_html____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 593 -902 \N \N \N \N \N model_ir_qweb_field_image 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 48 -903 \N \N \N \N f field_ir_qweb_field_image__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 594 -904 \N \N \N \N f field_ir_qweb_field_image__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 595 -905 \N \N \N \N f field_ir_qweb_field_image____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 596 -906 \N \N \N \N \N model_ir_qweb_field_monetary 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 49 -907 \N \N \N \N f field_ir_qweb_field_monetary__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 597 -908 \N \N \N \N f field_ir_qweb_field_monetary__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 598 -909 \N \N \N \N f field_ir_qweb_field_monetary____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 599 -910 \N \N \N \N \N model_ir_qweb_field_float_time 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 50 -911 \N \N \N \N f field_ir_qweb_field_float_time__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 600 -912 \N \N \N \N f field_ir_qweb_field_float_time__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 601 -913 \N \N \N \N f field_ir_qweb_field_float_time____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 602 -914 \N \N \N \N \N model_ir_qweb_field_duration 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 51 -915 \N \N \N \N f field_ir_qweb_field_duration__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 603 -916 \N \N \N \N f field_ir_qweb_field_duration__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 604 -917 \N \N \N \N f field_ir_qweb_field_duration____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 605 -918 \N \N \N \N \N model_ir_qweb_field_relative 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 52 -919 \N \N \N \N f field_ir_qweb_field_relative__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 606 -920 \N \N \N \N f field_ir_qweb_field_relative__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 607 -921 \N \N \N \N f field_ir_qweb_field_relative____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 608 -922 \N \N \N \N \N model_ir_qweb_field_barcode 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 53 -923 \N \N \N \N f field_ir_qweb_field_barcode__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 609 -924 \N \N \N \N f field_ir_qweb_field_barcode__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 610 -925 \N \N \N \N f field_ir_qweb_field_barcode____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 611 -926 \N \N \N \N \N model_ir_qweb_field_contact 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 54 -927 \N \N \N \N f field_ir_qweb_field_contact__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 612 -928 \N \N \N \N f field_ir_qweb_field_contact__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 613 -929 \N \N \N \N f field_ir_qweb_field_contact____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 614 -930 \N \N \N \N \N model_ir_qweb_field_qweb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 55 -931 \N \N \N \N f field_ir_qweb_field_qweb__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 615 -932 \N \N \N \N f field_ir_qweb_field_qweb__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 616 -933 \N \N \N \N f field_ir_qweb_field_qweb____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 617 -934 \N \N \N \N \N model_ir_http 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 56 -935 \N \N \N \N f field_ir_http__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 618 -936 \N \N \N \N f field_ir_http__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 619 -937 \N \N \N \N f field_ir_http____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 620 -938 \N \N \N \N \N model_ir_logging 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 57 -939 \N \N \N \N f field_ir_logging__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 621 -940 \N \N \N \N f field_ir_logging__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 622 -941 \N \N \N \N f field_ir_logging__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 623 -942 \N \N \N \N f field_ir_logging__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 624 -943 \N \N \N \N f field_ir_logging__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 625 -944 \N \N \N \N f field_ir_logging__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 626 -945 \N \N \N \N f field_ir_logging__dbname 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 627 -946 \N \N \N \N f field_ir_logging__level 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 628 -947 \N \N \N \N f field_ir_logging__message 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 629 -948 \N \N \N \N f field_ir_logging__path 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 630 -949 \N \N \N \N f field_ir_logging__func 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 631 -950 \N \N \N \N f field_ir_logging__line 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 632 -951 \N \N \N \N f field_ir_logging__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 633 -952 \N \N \N \N f field_ir_logging__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 634 -953 \N \N \N \N f field_ir_logging____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 635 -954 \N \N \N \N \N model_ir_property 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 58 -955 \N \N \N \N f field_ir_property__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 636 -956 \N \N \N \N f field_ir_property__res_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 637 -957 \N \N \N \N f field_ir_property__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 638 -958 \N \N \N \N f field_ir_property__fields_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 639 -959 \N \N \N \N f field_ir_property__value_float 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 640 -960 \N \N \N \N f field_ir_property__value_integer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 641 -961 \N \N \N \N f field_ir_property__value_text 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 642 -962 \N \N \N \N f field_ir_property__value_binary 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 643 -963 \N \N \N \N f field_ir_property__value_reference 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 644 -964 \N \N \N \N f field_ir_property__value_datetime 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 645 -965 \N \N \N \N f field_ir_property__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 646 -966 \N \N \N \N f field_ir_property__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 647 -967 \N \N \N \N f field_ir_property__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 648 -968 \N \N \N \N f field_ir_property__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 649 -969 \N \N \N \N f field_ir_property__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 650 -970 \N \N \N \N f field_ir_property__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 651 -971 \N \N \N \N f field_ir_property__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 652 -972 \N \N \N \N f field_ir_property____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 653 -973 \N \N \N \N \N model_ir_module_category 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 59 -974 \N \N \N \N f field_ir_module_category__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 654 -975 \N \N \N \N f field_ir_module_category__parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 655 -976 \N \N \N \N f field_ir_module_category__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 656 -977 \N \N \N \N f field_ir_module_category__module_nr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 657 -978 \N \N \N \N f field_ir_module_category__module_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 658 -979 \N \N \N \N f field_ir_module_category__description 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 659 -980 \N \N \N \N f field_ir_module_category__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 660 -981 \N \N \N \N f field_ir_module_category__visible 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 661 -982 \N \N \N \N f field_ir_module_category__exclusive 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 662 -1631 \N \N \N \N f lang_bn_IN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 6 -983 \N \N \N \N f field_ir_module_category__xml_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 663 -984 \N \N \N \N f field_ir_module_category__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 664 -985 \N \N \N \N f field_ir_module_category__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 665 -986 \N \N \N \N f field_ir_module_category__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 666 -987 \N \N \N \N f field_ir_module_category__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 667 -988 \N \N \N \N f field_ir_module_category__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 668 -989 \N \N \N \N f field_ir_module_category__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 669 -990 \N \N \N \N f field_ir_module_category____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 670 -991 \N \N \N \N \N model_ir_module_module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 60 -992 \N \N \N \N f field_ir_module_module__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 671 -993 \N \N \N \N f field_ir_module_module__category_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 672 -994 \N \N \N \N f field_ir_module_module__shortdesc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 673 -995 \N \N \N \N f field_ir_module_module__summary 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 674 -996 \N \N \N \N f field_ir_module_module__description 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 675 -997 \N \N \N \N f field_ir_module_module__description_html 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 676 -998 \N \N \N \N f field_ir_module_module__author 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 677 -999 \N \N \N \N f field_ir_module_module__maintainer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 678 -1000 \N \N \N \N f field_ir_module_module__contributors 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 679 -1001 \N \N \N \N f field_ir_module_module__website 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 680 -1002 \N \N \N \N f field_ir_module_module__installed_version 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 681 -1003 \N \N \N \N f field_ir_module_module__latest_version 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 682 -1004 \N \N \N \N f field_ir_module_module__published_version 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 683 -1005 \N \N \N \N f field_ir_module_module__url 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 684 -1006 \N \N \N \N f field_ir_module_module__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 685 -1007 \N \N \N \N f field_ir_module_module__dependencies_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 686 -1008 \N \N \N \N f field_ir_module_module__exclusion_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 687 -1009 \N \N \N \N f field_ir_module_module__auto_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 688 -1010 \N \N \N \N f field_ir_module_module__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 689 -1011 \N \N \N \N f field_ir_module_module__demo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 690 -1012 \N \N \N \N f field_ir_module_module__license 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 691 -1013 \N \N \N \N f field_ir_module_module__menus_by_module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 692 -1014 \N \N \N \N f field_ir_module_module__reports_by_module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 693 -1015 \N \N \N \N f field_ir_module_module__views_by_module 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 694 -1016 \N \N \N \N f field_ir_module_module__application 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 695 -1017 \N \N \N \N f field_ir_module_module__icon 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 696 -1018 \N \N \N \N f field_ir_module_module__icon_image 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 697 -1019 \N \N \N \N f field_ir_module_module__to_buy 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 698 -1020 \N \N \N \N f field_ir_module_module__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 699 -1021 \N \N \N \N f field_ir_module_module__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 700 -1022 \N \N \N \N f field_ir_module_module__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 701 -1023 \N \N \N \N f field_ir_module_module__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 702 -1024 \N \N \N \N f field_ir_module_module__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 703 -1025 \N \N \N \N f field_ir_module_module__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 704 -1026 \N \N \N \N f field_ir_module_module____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 705 -1027 \N \N \N \N \N model_ir_module_module_dependency 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 61 -1028 \N \N \N \N f field_ir_module_module_dependency__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 706 -1029 \N \N \N \N f field_ir_module_module_dependency__module_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 707 -1030 \N \N \N \N f field_ir_module_module_dependency__depend_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 708 -1031 \N \N \N \N f field_ir_module_module_dependency__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 709 -1032 \N \N \N \N f field_ir_module_module_dependency__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 710 -1033 \N \N \N \N f field_ir_module_module_dependency__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 711 -1034 \N \N \N \N f field_ir_module_module_dependency__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 712 -1035 \N \N \N \N f field_ir_module_module_dependency__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 713 -1036 \N \N \N \N f field_ir_module_module_dependency__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 714 -1037 \N \N \N \N f field_ir_module_module_dependency__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 715 -1038 \N \N \N \N f field_ir_module_module_dependency____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 716 -1039 \N \N \N \N \N model_ir_module_module_exclusion 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 62 -1040 \N \N \N \N f field_ir_module_module_exclusion__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 717 -1041 \N \N \N \N f field_ir_module_module_exclusion__module_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 718 -1042 \N \N \N \N f field_ir_module_module_exclusion__exclusion_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 719 -1043 \N \N \N \N f field_ir_module_module_exclusion__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 720 -1044 \N \N \N \N f field_ir_module_module_exclusion__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 721 -1632 \N \N \N \N f lang_bs_BA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 7 -1045 \N \N \N \N f field_ir_module_module_exclusion__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 722 -1046 \N \N \N \N f field_ir_module_module_exclusion__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 723 -1047 \N \N \N \N f field_ir_module_module_exclusion__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 724 -1048 \N \N \N \N f field_ir_module_module_exclusion__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 725 -1049 \N \N \N \N f field_ir_module_module_exclusion__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 726 -1050 \N \N \N \N f field_ir_module_module_exclusion____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 727 -1051 \N \N \N \N \N model_ir_demo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 63 -1052 \N \N \N \N f field_ir_demo__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 728 -1053 \N \N \N \N f field_ir_demo__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 729 -1054 \N \N \N \N f field_ir_demo__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 730 -1055 \N \N \N \N f field_ir_demo__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 731 -1056 \N \N \N \N f field_ir_demo__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 732 -1057 \N \N \N \N f field_ir_demo__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 733 -1058 \N \N \N \N f field_ir_demo____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 734 -1059 \N \N \N \N \N model_ir_demo_failure 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 64 -1060 \N \N \N \N f field_ir_demo_failure__module_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 735 -1061 \N \N \N \N f field_ir_demo_failure__error 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 736 -1062 \N \N \N \N f field_ir_demo_failure__wizard_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 737 -1063 \N \N \N \N f field_ir_demo_failure__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 738 -1064 \N \N \N \N f field_ir_demo_failure__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 739 -1065 \N \N \N \N f field_ir_demo_failure__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 740 -1066 \N \N \N \N f field_ir_demo_failure__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 741 -1067 \N \N \N \N f field_ir_demo_failure__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 742 -1068 \N \N \N \N f field_ir_demo_failure__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 743 -1069 \N \N \N \N f field_ir_demo_failure____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 744 -1070 \N \N \N \N \N model_ir_demo_failure_wizard 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 65 -1071 \N \N \N \N f field_ir_demo_failure_wizard__failure_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 745 -1072 \N \N \N \N f field_ir_demo_failure_wizard__failures_count 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 746 -1073 \N \N \N \N f field_ir_demo_failure_wizard__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 747 -1074 \N \N \N \N f field_ir_demo_failure_wizard__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 748 -1075 \N \N \N \N f field_ir_demo_failure_wizard__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 749 -1076 \N \N \N \N f field_ir_demo_failure_wizard__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 750 -1077 \N \N \N \N f field_ir_demo_failure_wizard__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 751 -1078 \N \N \N \N f field_ir_demo_failure_wizard__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 752 -1079 \N \N \N \N f field_ir_demo_failure_wizard____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 753 -1080 \N \N \N \N \N model_report_paperformat 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 66 -1081 \N \N \N \N f field_report_paperformat__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 754 -1082 \N \N \N \N f field_report_paperformat__default 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 755 -1083 \N \N \N \N f field_report_paperformat__format 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 756 -1084 \N \N \N \N f field_report_paperformat__margin_top 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 757 -1085 \N \N \N \N f field_report_paperformat__margin_bottom 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 758 -1086 \N \N \N \N f field_report_paperformat__margin_left 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 759 -1087 \N \N \N \N f field_report_paperformat__margin_right 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 760 -1088 \N \N \N \N f field_report_paperformat__page_height 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 761 -1089 \N \N \N \N f field_report_paperformat__page_width 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 762 -1090 \N \N \N \N f field_report_paperformat__orientation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 763 -1091 \N \N \N \N f field_report_paperformat__header_line 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 764 -1092 \N \N \N \N f field_report_paperformat__header_spacing 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 765 -1093 \N \N \N \N f field_report_paperformat__dpi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 766 -1094 \N \N \N \N f field_report_paperformat__report_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 767 -1095 \N \N \N \N f field_report_paperformat__print_page_width 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 768 -1096 \N \N \N \N f field_report_paperformat__print_page_height 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 769 -1097 \N \N \N \N f field_report_paperformat__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 770 -1098 \N \N \N \N f field_report_paperformat__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 771 -1099 \N \N \N \N f field_report_paperformat__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 772 -1100 \N \N \N \N f field_report_paperformat__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 773 -1101 \N \N \N \N f field_report_paperformat__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 774 -1102 \N \N \N \N f field_report_paperformat__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 775 -1103 \N \N \N \N f field_report_paperformat____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 776 -1104 \N \N \N \N \N model_res_country 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 67 -1105 \N \N \N \N f field_res_country__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 777 -1106 \N \N \N \N f field_res_country__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 778 -1107 \N \N \N \N f field_res_country__address_format 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 779 -1108 \N \N \N \N f field_res_country__address_view_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 780 -1109 \N \N \N \N f field_res_country__currency_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 781 -1110 \N \N \N \N f field_res_country__image 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 782 -1111 \N \N \N \N f field_res_country__phone_code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 783 -1112 \N \N \N \N f field_res_country__country_group_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 784 -1113 \N \N \N \N f field_res_country__state_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 785 -1114 \N \N \N \N f field_res_country__name_position 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 786 -1115 \N \N \N \N f field_res_country__vat_label 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 787 -1116 \N \N \N \N f field_res_country__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 788 -1117 \N \N \N \N f field_res_country__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 789 -1118 \N \N \N \N f field_res_country__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 790 -1119 \N \N \N \N f field_res_country__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 791 -1120 \N \N \N \N f field_res_country__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 792 -1121 \N \N \N \N f field_res_country__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 793 -1122 \N \N \N \N f field_res_country____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 794 -1123 \N \N \N \N \N model_res_country_group 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 68 -1124 \N \N \N \N f field_res_country_group__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 795 -1125 \N \N \N \N f field_res_country_group__country_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 796 -1126 \N \N \N \N f field_res_country_group__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 797 -1127 \N \N \N \N f field_res_country_group__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 798 -1128 \N \N \N \N f field_res_country_group__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 799 -1129 \N \N \N \N f field_res_country_group__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 800 -1130 \N \N \N \N f field_res_country_group__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 801 -1131 \N \N \N \N f field_res_country_group__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 802 -1132 \N \N \N \N f field_res_country_group____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 803 -1133 \N \N \N \N \N model_res_country_state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 69 -1134 \N \N \N \N f field_res_country_state__country_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 804 -1135 \N \N \N \N f field_res_country_state__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 805 -1136 \N \N \N \N f field_res_country_state__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 806 -1137 \N \N \N \N f field_res_country_state__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 807 -1138 \N \N \N \N f field_res_country_state__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 808 -1139 \N \N \N \N f field_res_country_state__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 809 -1140 \N \N \N \N f field_res_country_state__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 810 -1141 \N \N \N \N f field_res_country_state__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 811 -1142 \N \N \N \N f field_res_country_state__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 812 -1143 \N \N \N \N f field_res_country_state____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 813 -1144 \N \N \N \N \N model_res_lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 70 -1145 \N \N \N \N f field_res_lang__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 814 -1146 \N \N \N \N f field_res_lang__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 815 -1147 \N \N \N \N f field_res_lang__iso_code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 816 -1148 \N \N \N \N f field_res_lang__translatable 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 817 -1149 \N \N \N \N f field_res_lang__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 818 -1150 \N \N \N \N f field_res_lang__direction 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 819 -1151 \N \N \N \N f field_res_lang__date_format 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 820 -1152 \N \N \N \N f field_res_lang__time_format 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 821 -1153 \N \N \N \N f field_res_lang__week_start 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 822 -1154 \N \N \N \N f field_res_lang__grouping 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 823 -1155 \N \N \N \N f field_res_lang__decimal_point 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 824 -1156 \N \N \N \N f field_res_lang__thousands_sep 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 825 -1157 \N \N \N \N f field_res_lang__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 826 -1158 \N \N \N \N f field_res_lang__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 827 -1159 \N \N \N \N f field_res_lang__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 828 -1160 \N \N \N \N f field_res_lang__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 829 -1161 \N \N \N \N f field_res_lang__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 830 -1162 \N \N \N \N f field_res_lang__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 831 -1163 \N \N \N \N f field_res_lang____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 832 -1164 \N \N \N \N \N model_format_address_mixin 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 71 -1165 \N \N \N \N f field_format_address_mixin__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 833 -1166 \N \N \N \N f field_format_address_mixin__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 834 -1167 \N \N \N \N f field_format_address_mixin____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 835 -1168 \N \N \N \N \N model_res_partner_category 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 72 -1169 \N \N \N \N f field_res_partner_category__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 836 -1170 \N \N \N \N f field_res_partner_category__color 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 837 -1171 \N \N \N \N f field_res_partner_category__parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 838 -1172 \N \N \N \N f field_res_partner_category__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 839 -1173 \N \N \N \N f field_res_partner_category__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 840 -1174 \N \N \N \N f field_res_partner_category__parent_path 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 841 -1175 \N \N \N \N f field_res_partner_category__partner_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 842 -1176 \N \N \N \N f field_res_partner_category__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 843 -1177 \N \N \N \N f field_res_partner_category__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 844 -1178 \N \N \N \N f field_res_partner_category__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 845 -1179 \N \N \N \N f field_res_partner_category__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 846 -1180 \N \N \N \N f field_res_partner_category__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 847 -1181 \N \N \N \N f field_res_partner_category__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 848 -1182 \N \N \N \N f field_res_partner_category____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 849 -1183 \N \N \N \N \N model_res_partner_title 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 73 -1184 \N \N \N \N f field_res_partner_title__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 850 -1185 \N \N \N \N f field_res_partner_title__shortcut 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 851 -1186 \N \N \N \N f field_res_partner_title__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 852 -1187 \N \N \N \N f field_res_partner_title__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 853 -1188 \N \N \N \N f field_res_partner_title__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 854 -1189 \N \N \N \N f field_res_partner_title__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 855 -1190 \N \N \N \N f field_res_partner_title__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 856 -1191 \N \N \N \N f field_res_partner_title__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 857 -1192 \N \N \N \N f field_res_partner_title____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 858 -1193 \N \N \N \N \N model_res_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 74 -1194 \N \N \N \N f field_res_partner__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 859 -1195 \N \N \N \N f field_res_partner__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 860 -1196 \N \N \N \N f field_res_partner__date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 861 -1197 \N \N \N \N f field_res_partner__title 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 862 -1198 \N \N \N \N f field_res_partner__parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 863 -1199 \N \N \N \N f field_res_partner__parent_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 864 -1200 \N \N \N \N f field_res_partner__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 865 -1201 \N \N \N \N f field_res_partner__ref 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 866 -1202 \N \N \N \N f field_res_partner__lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 867 -1203 \N \N \N \N f field_res_partner__tz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 868 -1204 \N \N \N \N f field_res_partner__tz_offset 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 869 -1205 \N \N \N \N f field_res_partner__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 870 -1206 \N \N \N \N f field_res_partner__vat 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 871 -1207 \N \N \N \N f field_res_partner__bank_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 872 -1208 \N \N \N \N f field_res_partner__website 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 873 -1209 \N \N \N \N f field_res_partner__comment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 874 -1210 \N \N \N \N f field_res_partner__category_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 875 -1211 \N \N \N \N f field_res_partner__credit_limit 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 876 -1212 \N \N \N \N f field_res_partner__barcode 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 877 -1213 \N \N \N \N f field_res_partner__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 878 -1214 \N \N \N \N f field_res_partner__customer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 879 -1215 \N \N \N \N f field_res_partner__supplier 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 880 -1216 \N \N \N \N f field_res_partner__employee 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 881 -1217 \N \N \N \N f field_res_partner__function 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 882 -1218 \N \N \N \N f field_res_partner__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 883 -1219 \N \N \N \N f field_res_partner__street 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 884 -1220 \N \N \N \N f field_res_partner__street2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 885 -1221 \N \N \N \N f field_res_partner__zip 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 886 -1222 \N \N \N \N f field_res_partner__city 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 887 -1223 \N \N \N \N f field_res_partner__state_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 888 -1224 \N \N \N \N f field_res_partner__country_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 889 -1225 \N \N \N \N f field_res_partner__email 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 890 -1226 \N \N \N \N f field_res_partner__email_formatted 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 891 -1227 \N \N \N \N f field_res_partner__phone 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 892 -1228 \N \N \N \N f field_res_partner__mobile 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 893 -1229 \N \N \N \N f field_res_partner__is_company 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 894 -1230 \N \N \N \N f field_res_partner__industry_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 895 -1231 \N \N \N \N f field_res_partner__company_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 896 -1232 \N \N \N \N f field_res_partner__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 897 -1233 \N \N \N \N f field_res_partner__color 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 898 -1234 \N \N \N \N f field_res_partner__user_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 899 -1235 \N \N \N \N f field_res_partner__partner_share 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 900 -1236 \N \N \N \N f field_res_partner__contact_address 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 901 -1237 \N \N \N \N f field_res_partner__commercial_partner_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 902 -1238 \N \N \N \N f field_res_partner__commercial_company_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 903 -1239 \N \N \N \N f field_res_partner__company_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 904 -1240 \N \N \N \N f field_res_partner__image 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 905 -1241 \N \N \N \N f field_res_partner__image_medium 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 906 -1242 \N \N \N \N f field_res_partner__image_small 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 907 -1243 \N \N \N \N f field_res_partner__self 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 908 -1244 \N \N \N \N f field_res_partner__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 909 -1245 \N \N \N \N f field_res_partner__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 910 -1246 \N \N \N \N f field_res_partner__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 911 -1247 \N \N \N \N f field_res_partner__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 912 -1248 \N \N \N \N f field_res_partner__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 913 -1249 \N \N \N \N f field_res_partner____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 914 -1250 \N \N \N \N \N model_res_partner_industry 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 75 -1251 \N \N \N \N f field_res_partner_industry__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 915 -1252 \N \N \N \N f field_res_partner_industry__full_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 916 -1253 \N \N \N \N f field_res_partner_industry__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 917 -1254 \N \N \N \N f field_res_partner_industry__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 918 -1255 \N \N \N \N f field_res_partner_industry__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 919 -1256 \N \N \N \N f field_res_partner_industry__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 920 -1257 \N \N \N \N f field_res_partner_industry__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 921 -1258 \N \N \N \N f field_res_partner_industry__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 922 -1259 \N \N \N \N f field_res_partner_industry__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 923 -1260 \N \N \N \N f field_res_partner_industry____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 924 -1261 \N \N \N \N \N model_res_bank 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 76 -1262 \N \N \N \N f field_res_bank__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 925 -1263 \N \N \N \N f field_res_bank__street 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 926 -1264 \N \N \N \N f field_res_bank__street2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 927 -1265 \N \N \N \N f field_res_bank__zip 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 928 -1266 \N \N \N \N f field_res_bank__city 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 929 -1267 \N \N \N \N f field_res_bank__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 930 -1268 \N \N \N \N f field_res_bank__country 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 931 -1269 \N \N \N \N f field_res_bank__email 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 932 -1270 \N \N \N \N f field_res_bank__phone 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 933 -1271 \N \N \N \N f field_res_bank__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 934 -1272 \N \N \N \N f field_res_bank__bic 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 935 -1273 \N \N \N \N f field_res_bank__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 936 -1274 \N \N \N \N f field_res_bank__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 937 -1275 \N \N \N \N f field_res_bank__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 938 -1276 \N \N \N \N f field_res_bank__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 939 -1277 \N \N \N \N f field_res_bank__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 940 -1278 \N \N \N \N f field_res_bank__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 941 -1279 \N \N \N \N f field_res_bank____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 942 -1280 \N \N \N \N \N model_res_partner_bank 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 77 -1281 \N \N \N \N f field_res_partner_bank__acc_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 943 -1282 \N \N \N \N f field_res_partner_bank__acc_number 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 944 -1283 \N \N \N \N f field_res_partner_bank__sanitized_acc_number 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 945 -1284 \N \N \N \N f field_res_partner_bank__acc_holder_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 946 -1285 \N \N \N \N f field_res_partner_bank__partner_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 947 -1286 \N \N \N \N f field_res_partner_bank__bank_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 948 -1287 \N \N \N \N f field_res_partner_bank__bank_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 949 -1288 \N \N \N \N f field_res_partner_bank__bank_bic 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 950 -1289 \N \N \N \N f field_res_partner_bank__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 951 -1290 \N \N \N \N f field_res_partner_bank__currency_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 952 -1291 \N \N \N \N f field_res_partner_bank__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 953 -1292 \N \N \N \N f field_res_partner_bank__qr_code_valid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 954 -1293 \N \N \N \N f field_res_partner_bank__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 955 -1294 \N \N \N \N f field_res_partner_bank__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 956 -1295 \N \N \N \N f field_res_partner_bank__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 957 -1296 \N \N \N \N f field_res_partner_bank__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 958 -1297 \N \N \N \N f field_res_partner_bank__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 959 -1298 \N \N \N \N f field_res_partner_bank__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 960 -1299 \N \N \N \N f field_res_partner_bank____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 961 -1300 \N \N \N \N \N model_res_config 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 78 -1301 \N \N \N \N f field_res_config__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 962 -1302 \N \N \N \N f field_res_config__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 963 -1303 \N \N \N \N f field_res_config__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 964 -1304 \N \N \N \N f field_res_config__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 965 -1305 \N \N \N \N f field_res_config__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 966 -1306 \N \N \N \N f field_res_config__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 967 -1633 \N \N \N \N f lang_bg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 8 -1307 \N \N \N \N f field_res_config____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 968 -1308 \N \N \N \N \N model_res_config_installer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 79 -1309 \N \N \N \N f field_res_config_installer__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 969 -1310 \N \N \N \N f field_res_config_installer__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 970 -1311 \N \N \N \N f field_res_config_installer__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 971 -1312 \N \N \N \N f field_res_config_installer__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 972 -1313 \N \N \N \N f field_res_config_installer__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 973 -1314 \N \N \N \N f field_res_config_installer__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 974 -1315 \N \N \N \N f field_res_config_installer____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 975 -1316 \N \N \N \N \N model_res_config_settings 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 80 -1317 \N \N \N \N f field_res_config_settings__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 976 -1318 \N \N \N \N f field_res_config_settings__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 977 -1319 \N \N \N \N f field_res_config_settings__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 978 -1320 \N \N \N \N f field_res_config_settings__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 979 -1321 \N \N \N \N f field_res_config_settings__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 980 -1322 \N \N \N \N f field_res_config_settings__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 981 -1323 \N \N \N \N f field_res_config_settings____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 982 -1324 \N \N \N \N \N model_res_currency 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 81 -1325 \N \N \N \N f field_res_currency__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 983 -1326 \N \N \N \N f field_res_currency__symbol 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 984 -1327 \N \N \N \N f field_res_currency__rate 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 985 -1328 \N \N \N \N f field_res_currency__rate_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 986 -1329 \N \N \N \N f field_res_currency__rounding 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 987 -1330 \N \N \N \N f field_res_currency__decimal_places 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 988 -1331 \N \N \N \N f field_res_currency__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 989 -1332 \N \N \N \N f field_res_currency__position 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 990 -1333 \N \N \N \N f field_res_currency__date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 991 -1334 \N \N \N \N f field_res_currency__currency_unit_label 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 992 -1335 \N \N \N \N f field_res_currency__currency_subunit_label 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 993 -1336 \N \N \N \N f field_res_currency__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 994 -1337 \N \N \N \N f field_res_currency__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 995 -1338 \N \N \N \N f field_res_currency__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 996 -1339 \N \N \N \N f field_res_currency__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 997 -1340 \N \N \N \N f field_res_currency__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 998 -1341 \N \N \N \N f field_res_currency__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 999 -1342 \N \N \N \N f field_res_currency____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1000 -1343 \N \N \N \N \N model_res_currency_rate 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 82 -1344 \N \N \N \N f field_res_currency_rate__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1001 -1345 \N \N \N \N f field_res_currency_rate__rate 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1002 -1346 \N \N \N \N f field_res_currency_rate__currency_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1003 -1347 \N \N \N \N f field_res_currency_rate__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1004 -1348 \N \N \N \N f field_res_currency_rate__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1005 -1349 \N \N \N \N f field_res_currency_rate__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1006 -1350 \N \N \N \N f field_res_currency_rate__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1007 -1351 \N \N \N \N f field_res_currency_rate__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1008 -1352 \N \N \N \N f field_res_currency_rate__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1009 -1353 \N \N \N \N f field_res_currency_rate__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1010 -1354 \N \N \N \N f field_res_currency_rate____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1011 -1355 \N \N \N \N \N model_res_company 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 83 -1356 \N \N \N \N f field_res_company__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1012 -1357 \N \N \N \N f field_res_company__sequence 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1013 -1358 \N \N \N \N f field_res_company__parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1014 -1359 \N \N \N \N f field_res_company__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1015 -1360 \N \N \N \N f field_res_company__partner_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1016 -1361 \N \N \N \N f field_res_company__report_header 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1017 -1362 \N \N \N \N f field_res_company__report_footer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1018 -1363 \N \N \N \N f field_res_company__logo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1019 -1364 \N \N \N \N f field_res_company__logo_web 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1020 -1365 \N \N \N \N f field_res_company__currency_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1021 -1366 \N \N \N \N f field_res_company__user_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1022 -1367 \N \N \N \N f field_res_company__account_no 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1023 -1368 \N \N \N \N f field_res_company__street 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1024 -1369 \N \N \N \N f field_res_company__street2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1025 -1370 \N \N \N \N f field_res_company__zip 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1026 -1371 \N \N \N \N f field_res_company__city 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1027 -1372 \N \N \N \N f field_res_company__state_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1028 -1373 \N \N \N \N f field_res_company__bank_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1029 -1374 \N \N \N \N f field_res_company__country_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1030 -1375 \N \N \N \N f field_res_company__email 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1031 -1376 \N \N \N \N f field_res_company__phone 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1032 -1377 \N \N \N \N f field_res_company__website 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1033 -1378 \N \N \N \N f field_res_company__vat 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1034 -1379 \N \N \N \N f field_res_company__company_registry 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1035 -1380 \N \N \N \N f field_res_company__paperformat_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1036 -1381 \N \N \N \N f field_res_company__external_report_layout_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1037 -1382 \N \N \N \N f field_res_company__base_onboarding_company_state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1038 -1383 \N \N \N \N f field_res_company__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1039 -1384 \N \N \N \N f field_res_company__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1040 -1385 \N \N \N \N f field_res_company__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1041 -1386 \N \N \N \N f field_res_company__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1042 -1387 \N \N \N \N f field_res_company__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1043 -1388 \N \N \N \N f field_res_company__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1044 -1389 \N \N \N \N f field_res_company____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1045 -1390 \N \N \N \N \N model_res_groups 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 84 -1391 \N \N \N \N f field_res_groups__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1046 -1392 \N \N \N \N f field_res_groups__users 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1047 -1393 \N \N \N \N f field_res_groups__model_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1048 -1394 \N \N \N \N f field_res_groups__rule_groups 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1049 -1395 \N \N \N \N f field_res_groups__menu_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1050 -1396 \N \N \N \N f field_res_groups__view_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1051 -1397 \N \N \N \N f field_res_groups__comment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1052 -1398 \N \N \N \N f field_res_groups__category_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1053 -1399 \N \N \N \N f field_res_groups__color 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1054 -1400 \N \N \N \N f field_res_groups__full_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1055 -1401 \N \N \N \N f field_res_groups__share 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1056 -1402 \N \N \N \N f field_res_groups__implied_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1057 -1403 \N \N \N \N f field_res_groups__trans_implied_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1058 -1404 \N \N \N \N f field_res_groups__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1059 -1405 \N \N \N \N f field_res_groups__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1060 -1406 \N \N \N \N f field_res_groups__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1061 -1407 \N \N \N \N f field_res_groups__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1062 -1408 \N \N \N \N f field_res_groups__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1063 -1409 \N \N \N \N f field_res_groups__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1064 -1410 \N \N \N \N f field_res_groups____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1065 -1411 \N \N \N \N \N model_res_users_log 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 85 -1412 \N \N \N \N f field_res_users_log__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1066 -1413 \N \N \N \N f field_res_users_log__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1067 -1414 \N \N \N \N f field_res_users_log__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1068 -1415 \N \N \N \N f field_res_users_log__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1069 -1416 \N \N \N \N f field_res_users_log__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1070 -1417 \N \N \N \N f field_res_users_log__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1071 -1418 \N \N \N \N f field_res_users_log____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1072 -1419 \N \N \N \N \N model_res_users 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 86 -1420 \N \N \N \N f field_res_users__partner_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1073 -1421 \N \N \N \N f field_res_users__login 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1074 -1422 \N \N \N \N f field_res_users__password 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1075 -1423 \N \N \N \N f field_res_users__new_password 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1076 -1424 \N \N \N \N f field_res_users__signature 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1077 -1425 \N \N \N \N f field_res_users__active 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1078 -1426 \N \N \N \N f field_res_users__active_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1079 -1427 \N \N \N \N f field_res_users__action_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1080 -1428 \N \N \N \N f field_res_users__groups_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1081 -1429 \N \N \N \N f field_res_users__log_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1082 -1430 \N \N \N \N f field_res_users__login_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1083 -1431 \N \N \N \N f field_res_users__share 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1084 -1432 \N \N \N \N f field_res_users__companies_count 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1085 -1433 \N \N \N \N f field_res_users__tz_offset 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1086 -1434 \N \N \N \N f field_res_users__company_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1087 -1435 \N \N \N \N f field_res_users__company_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1088 -1436 \N \N \N \N f field_res_users__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1089 -1437 \N \N \N \N f field_res_users__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1090 -1438 \N \N \N \N f field_res_users__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1091 -1439 \N \N \N \N f field_res_users__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1092 -1440 \N \N \N \N f field_res_users__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1093 -1441 \N \N \N \N f field_res_users__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1094 -1442 \N \N \N \N f field_res_users____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1095 -1443 \N \N \N \N f field_res_users__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1096 -1444 \N \N \N \N f field_res_users__date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1097 -1445 \N \N \N \N f field_res_users__title 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1098 -1446 \N \N \N \N f field_res_users__parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1099 -1447 \N \N \N \N f field_res_users__parent_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1100 -1448 \N \N \N \N f field_res_users__child_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1101 -1449 \N \N \N \N f field_res_users__ref 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1102 -1450 \N \N \N \N f field_res_users__lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1103 -1451 \N \N \N \N f field_res_users__tz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1104 -1452 \N \N \N \N f field_res_users__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1105 -1453 \N \N \N \N f field_res_users__vat 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1106 -1454 \N \N \N \N f field_res_users__bank_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1107 -1455 \N \N \N \N f field_res_users__website 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1108 -1456 \N \N \N \N f field_res_users__comment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1109 -1457 \N \N \N \N f field_res_users__category_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1110 -1458 \N \N \N \N f field_res_users__credit_limit 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1111 -1459 \N \N \N \N f field_res_users__barcode 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1112 -1460 \N \N \N \N f field_res_users__customer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1113 -1461 \N \N \N \N f field_res_users__supplier 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1114 -1462 \N \N \N \N f field_res_users__employee 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1115 -1463 \N \N \N \N f field_res_users__function 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1116 -1464 \N \N \N \N f field_res_users__type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1117 -1465 \N \N \N \N f field_res_users__street 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1118 -1466 \N \N \N \N f field_res_users__street2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1119 -1467 \N \N \N \N f field_res_users__zip 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1120 -1468 \N \N \N \N f field_res_users__city 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1121 -1469 \N \N \N \N f field_res_users__state_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1122 -1470 \N \N \N \N f field_res_users__country_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1123 -1471 \N \N \N \N f field_res_users__email 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1124 -1472 \N \N \N \N f field_res_users__email_formatted 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1125 -1473 \N \N \N \N f field_res_users__phone 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1126 -1474 \N \N \N \N f field_res_users__mobile 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1127 -1475 \N \N \N \N f field_res_users__is_company 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1128 -1476 \N \N \N \N f field_res_users__industry_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1129 -1477 \N \N \N \N f field_res_users__company_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1130 -1478 \N \N \N \N f field_res_users__color 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1131 -1479 \N \N \N \N f field_res_users__user_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1132 -1480 \N \N \N \N f field_res_users__partner_share 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1133 -1481 \N \N \N \N f field_res_users__contact_address 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1134 -1482 \N \N \N \N f field_res_users__commercial_partner_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1135 -1483 \N \N \N \N f field_res_users__commercial_company_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1136 -1484 \N \N \N \N f field_res_users__company_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1137 -1485 \N \N \N \N f field_res_users__image 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1138 -1486 \N \N \N \N f field_res_users__image_medium 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1139 -1487 \N \N \N \N f field_res_users__image_small 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1140 -1488 \N \N \N \N f field_res_users__self 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1141 -1489 \N \N \N \N \N model_change_password_wizard 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 87 -1490 \N \N \N \N f field_change_password_wizard__user_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1142 -1491 \N \N \N \N f field_change_password_wizard__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1143 -1492 \N \N \N \N f field_change_password_wizard__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1144 -1493 \N \N \N \N f field_change_password_wizard__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1145 -1494 \N \N \N \N f field_change_password_wizard__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1146 -1495 \N \N \N \N f field_change_password_wizard__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1147 -1496 \N \N \N \N f field_change_password_wizard__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1148 -1497 \N \N \N \N f field_change_password_wizard____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1149 -1498 \N \N \N \N \N model_change_password_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 88 -1499 \N \N \N \N f field_change_password_user__wizard_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1150 -1500 \N \N \N \N f field_change_password_user__user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1151 -1501 \N \N \N \N f field_change_password_user__user_login 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1152 -1502 \N \N \N \N f field_change_password_user__new_passwd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1153 -1503 \N \N \N \N f field_change_password_user__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1154 -1504 \N \N \N \N f field_change_password_user__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1155 -1505 \N \N \N \N f field_change_password_user__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1156 -1506 \N \N \N \N f field_change_password_user__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1157 -1507 \N \N \N \N f field_change_password_user__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1158 -1508 \N \N \N \N f field_change_password_user__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1159 -1509 \N \N \N \N f field_change_password_user____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1160 -1510 \N \N \N \N \N model_report_base_report_irmodulereference 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 89 -1511 \N \N \N \N f field_report_base_report_irmodulereference__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1161 -1512 \N \N \N \N f field_report_base_report_irmodulereference__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1162 -1513 \N \N \N \N f field_report_base_report_irmodulereference____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1163 -1514 \N \N \N \N \N model_base_module_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 90 -1515 \N \N \N \N f field_base_module_update__updated 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1164 -1516 \N \N \N \N f field_base_module_update__added 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1165 -1517 \N \N \N \N f field_base_module_update__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1166 -1518 \N \N \N \N f field_base_module_update__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1167 -1519 \N \N \N \N f field_base_module_update__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1168 -1520 \N \N \N \N f field_base_module_update__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1169 -1521 \N \N \N \N f field_base_module_update__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1170 -1522 \N \N \N \N f field_base_module_update__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1171 -1523 \N \N \N \N f field_base_module_update__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1172 -1524 \N \N \N \N f field_base_module_update____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1173 -1525 \N \N \N \N \N model_base_language_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 91 -1526 \N \N \N \N f field_base_language_install__lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1174 -1527 \N \N \N \N f field_base_language_install__overwrite 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1175 -1528 \N \N \N \N f field_base_language_install__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1176 -1529 \N \N \N \N f field_base_language_install__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1177 -1530 \N \N \N \N f field_base_language_install__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1178 -1531 \N \N \N \N f field_base_language_install__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1179 -1532 \N \N \N \N f field_base_language_install__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1180 -1533 \N \N \N \N f field_base_language_install__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1181 -1534 \N \N \N \N f field_base_language_install__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1182 -1535 \N \N \N \N f field_base_language_install____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1183 -1536 \N \N \N \N \N model_base_language_import 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 92 -1537 \N \N \N \N f field_base_language_import__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1184 -1538 \N \N \N \N f field_base_language_import__code 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1185 -1539 \N \N \N \N f field_base_language_import__data 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1186 -1540 \N \N \N \N f field_base_language_import__filename 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1187 -1541 \N \N \N \N f field_base_language_import__overwrite 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1188 -1542 \N \N \N \N f field_base_language_import__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1189 -1543 \N \N \N \N f field_base_language_import__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1190 -1544 \N \N \N \N f field_base_language_import__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1191 -1545 \N \N \N \N f field_base_language_import__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1192 -1546 \N \N \N \N f field_base_language_import__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1193 -1547 \N \N \N \N f field_base_language_import__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1194 -1548 \N \N \N \N f field_base_language_import____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1195 -1549 \N \N \N \N \N model_base_module_upgrade 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 93 -1550 \N \N \N \N f field_base_module_upgrade__module_info 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1196 -1551 \N \N \N \N f field_base_module_upgrade__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1197 -1552 \N \N \N \N f field_base_module_upgrade__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1198 -1553 \N \N \N \N f field_base_module_upgrade__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1199 -1554 \N \N \N \N f field_base_module_upgrade__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1200 -1555 \N \N \N \N f field_base_module_upgrade__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1201 -1556 \N \N \N \N f field_base_module_upgrade__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1202 -1557 \N \N \N \N f field_base_module_upgrade____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1203 -1558 \N \N \N \N \N model_base_module_uninstall 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 94 -1559 \N \N \N \N f field_base_module_uninstall__show_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1204 -1560 \N \N \N \N f field_base_module_uninstall__module_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1205 -1561 \N \N \N \N f field_base_module_uninstall__module_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1206 -1562 \N \N \N \N f field_base_module_uninstall__model_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1207 -1563 \N \N \N \N f field_base_module_uninstall__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1208 -1564 \N \N \N \N f field_base_module_uninstall__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1209 -1565 \N \N \N \N f field_base_module_uninstall__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1210 -1566 \N \N \N \N f field_base_module_uninstall__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1211 -1567 \N \N \N \N f field_base_module_uninstall__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1212 -1568 \N \N \N \N f field_base_module_uninstall__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1213 -1569 \N \N \N \N f field_base_module_uninstall____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1214 -1570 \N \N \N \N \N model_base_language_export 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 95 -1571 \N \N \N \N f field_base_language_export__name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1215 -1572 \N \N \N \N f field_base_language_export__lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1216 -1573 \N \N \N \N f field_base_language_export__format 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1217 -1574 \N \N \N \N f field_base_language_export__modules 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1218 -1575 \N \N \N \N f field_base_language_export__data 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1219 -1576 \N \N \N \N f field_base_language_export__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1220 -1577 \N \N \N \N f field_base_language_export__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1221 -1578 \N \N \N \N f field_base_language_export__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1222 -1579 \N \N \N \N f field_base_language_export__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1223 -1580 \N \N \N \N f field_base_language_export__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1224 -1581 \N \N \N \N f field_base_language_export__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1225 -1582 \N \N \N \N f field_base_language_export__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1226 -1583 \N \N \N \N f field_base_language_export____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1227 -1584 \N \N \N \N \N model_base_update_translations 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 96 -1585 \N \N \N \N f field_base_update_translations__lang 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1228 -1586 \N \N \N \N f field_base_update_translations__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1229 -1587 \N \N \N \N f field_base_update_translations__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1230 -1588 \N \N \N \N f field_base_update_translations__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1231 -1589 \N \N \N \N f field_base_update_translations__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1232 -1590 \N \N \N \N f field_base_update_translations__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1233 -1591 \N \N \N \N f field_base_update_translations__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1234 -1592 \N \N \N \N f field_base_update_translations____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1235 -1593 \N \N \N \N \N model_base_partner_merge_line 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 97 -1594 \N \N \N \N f field_base_partner_merge_line__wizard_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1236 -1595 \N \N \N \N f field_base_partner_merge_line__min_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1237 -1596 \N \N \N \N f field_base_partner_merge_line__aggr_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1238 -1597 \N \N \N \N f field_base_partner_merge_line__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1239 -1598 \N \N \N \N f field_base_partner_merge_line__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1240 -1599 \N \N \N \N f field_base_partner_merge_line__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1241 -1600 \N \N \N \N f field_base_partner_merge_line__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1242 -1601 \N \N \N \N f field_base_partner_merge_line__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1243 -1602 \N \N \N \N f field_base_partner_merge_line__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1244 -1603 \N \N \N \N f field_base_partner_merge_line____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1245 -1604 \N \N \N \N \N model_base_partner_merge_automatic_wizard 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model 98 -1605 \N \N \N \N f field_base_partner_merge_automatic_wizard__group_by_email 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1246 -1606 \N \N \N \N f field_base_partner_merge_automatic_wizard__group_by_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1247 -1607 \N \N \N \N f field_base_partner_merge_automatic_wizard__group_by_is_company 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1248 -1608 \N \N \N \N f field_base_partner_merge_automatic_wizard__group_by_vat 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1249 -1609 \N \N \N \N f field_base_partner_merge_automatic_wizard__group_by_parent_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1250 -1610 \N \N \N \N f field_base_partner_merge_automatic_wizard__state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1251 -1611 \N \N \N \N f field_base_partner_merge_automatic_wizard__number_group 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1252 -1612 \N \N \N \N f field_base_partner_merge_automatic_wizard__current_line_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1253 -1613 \N \N \N \N f field_base_partner_merge_automatic_wizard__line_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1254 -1614 \N \N \N \N f field_base_partner_merge_automatic_wizard__partner_ids 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1255 -1615 \N \N \N \N f field_base_partner_merge_automatic_wizard__dst_partner_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1256 -1616 \N \N \N \N f field_base_partner_merge_automatic_wizard__exclude_contact 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1257 -1617 \N \N \N \N f field_base_partner_merge_automatic_wizard__exclude_journal_item 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1258 -1618 \N \N \N \N f field_base_partner_merge_automatic_wizard__maximum_group 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1259 -1619 \N \N \N \N f field_base_partner_merge_automatic_wizard__id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1260 -1620 \N \N \N \N f field_base_partner_merge_automatic_wizard__display_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1261 -1621 \N \N \N \N f field_base_partner_merge_automatic_wizard__create_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1262 -1622 \N \N \N \N f field_base_partner_merge_automatic_wizard__create_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1263 -1623 \N \N \N \N f field_base_partner_merge_automatic_wizard__write_uid 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1264 -1624 \N \N \N \N f field_base_partner_merge_automatic_wizard__write_date 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1265 -1625 \N \N \N \N f field_base_partner_merge_automatic_wizard____last_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.fields 1266 -1626 \N \N \N \N f lang_en 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 1 -1627 \N \N \N \N f lang_am_ET 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 2 -1628 \N \N \N \N f lang_ar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 3 -1629 \N \N \N \N f lang_ar_SY 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 4 -1630 \N \N \N \N f lang_eu_ES 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 5 -1634 \N \N \N \N f lang_ca_ES 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 9 -1635 \N \N \N \N f lang_zh_CN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 10 -1636 \N \N \N \N f lang_zh_HK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 11 -1637 \N \N \N \N f lang_zh_TW 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 12 -1638 \N \N \N \N f lang_hr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 13 -1639 \N \N \N \N f lang_cs_CZ 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 14 -1640 \N \N \N \N f lang_da_DK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 15 -1641 \N \N \N \N f lang_nl_BE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 16 -1642 \N \N \N \N f lang_nl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 17 -1643 \N \N \N \N f lang_en_AU 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 18 -1644 \N \N \N \N f lang_en_CA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 19 -1645 \N \N \N \N f lang_en_GB 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 20 -1646 \N \N \N \N f lang_et_EE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 21 -1647 \N \N \N \N f lang_fi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 22 -1648 \N \N \N \N f lang_fil 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 23 -1649 \N \N \N \N f lang_fr_BE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 24 -1650 \N \N \N \N f lang_fr_CA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 25 -1651 \N \N \N \N f lang_fr_CH 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 26 -1652 \N \N \N \N f lang_fr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 27 -1653 \N \N \N \N f lang_gl_ES 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 28 -1654 \N \N \N \N f lang_ka_GE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 29 -1655 \N \N \N \N f lang_de 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 30 -1656 \N \N \N \N f lang_de_CH 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 31 -1657 \N \N \N \N f lang_el_GR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 32 -1658 \N \N \N \N f lang_gu_IN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 33 -1659 \N \N \N \N f lang_he_IL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 34 -1660 \N \N \N \N f lang_hi_IN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 35 -1661 \N \N \N \N f lang_hu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 36 -1662 \N \N \N \N f lang_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 37 -1663 \N \N \N \N f lang_it 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 38 -1664 \N \N \N \N f lang_ja_JP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 39 -1665 \N \N \N \N f lang_kab_DZ 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 40 -1666 \N \N \N \N f lang_km 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 41 -1667 \N \N \N \N f lang_ko_KP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 42 -1668 \N \N \N \N f lang_ko_KR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 43 -1669 \N \N \N \N f lang_lo_LA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 44 -1670 \N \N \N \N f lang_lv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 45 -1671 \N \N \N \N f lang_lt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 46 -1672 \N \N \N \N f lang_mk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 47 -1673 \N \N \N \N f lang_mn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 48 -1674 \N \N \N \N f lang_my 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 49 -1675 \N \N \N \N f lang_nb_NO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 50 -1676 \N \N \N \N f lang_fa_IR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 51 -1677 \N \N \N \N f lang_pl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 52 -1678 \N \N \N \N f lang_pt_AO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 53 -1679 \N \N \N \N f lang_pt_BR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 54 -1680 \N \N \N \N f lang_pt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 55 -1681 \N \N \N \N f lang_ro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 56 -1682 \N \N \N \N f lang_ru 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 57 -1683 \N \N \N \N f lang_sr_RS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 58 -1684 \N \N \N \N f lang_sr@latin 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 59 -1685 \N \N \N \N f lang_sk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 60 -1686 \N \N \N \N f lang_sl_SI 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 61 -1687 \N \N \N \N f lang_es_AR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 62 -1688 \N \N \N \N f lang_es_BO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 63 -1689 \N \N \N \N f lang_es_CL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 64 -1690 \N \N \N \N f lang_es_CO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 65 -1691 \N \N \N \N f lang_es_CR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 66 -1692 \N \N \N \N f lang_es_DO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 67 -1693 \N \N \N \N f lang_es_EC 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 68 -1694 \N \N \N \N f lang_es_GT 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 69 -1695 \N \N \N \N f lang_es_MX 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 70 -1696 \N \N \N \N f lang_es_PA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 71 -1697 \N \N \N \N f lang_es_PE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 72 -1698 \N \N \N \N f lang_es_PY 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 73 -1699 \N \N \N \N f lang_es_UY 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 74 -1700 \N \N \N \N f lang_es_VE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 75 -1701 \N \N \N \N f lang_es 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 76 -1702 \N \N \N \N f lang_sv_SE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 77 -1703 \N \N \N \N f lang_th 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 78 -1704 \N \N \N \N f lang_tl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 79 -1705 \N \N \N \N f lang_tr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 80 -1706 \N \N \N \N f lang_uk_UA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 81 -1707 \N \N \N \N f lang_vi_VN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 82 -1708 \N \N \N \N f lang_sq_AL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 83 -1709 \N \N \N \N f lang_te_IN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.lang 84 -1711 \N \N \N \N t partner_root 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 2 -1712 \N \N \N \N t partner_admin 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 3 -1713 \N \N \N \N t public_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 4 -1714 \N \N \N \N t res_partner_title_madam 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.title 1 -1715 \N \N \N \N t res_partner_title_miss 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.title 2 -1716 \N \N \N \N t res_partner_title_mister 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.title 3 -1717 \N \N \N \N t res_partner_title_doctor 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.title 4 -1718 \N \N \N \N t res_partner_title_prof 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.title 5 -1719 \N \N \N \N t res_partner_industry_A 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 1 -1720 \N \N \N \N t res_partner_industry_B 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 2 -1721 \N \N \N \N t res_partner_industry_C 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 3 -1722 \N \N \N \N t res_partner_industry_D 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 4 -1723 \N \N \N \N t res_partner_industry_E 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 5 -1724 \N \N \N \N t res_partner_industry_F 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 6 -1725 \N \N \N \N t res_partner_industry_G 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 7 -1726 \N \N \N \N t res_partner_industry_H 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 8 -1727 \N \N \N \N t res_partner_industry_I 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 9 -1728 \N \N \N \N t res_partner_industry_J 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 10 -1729 \N \N \N \N t res_partner_industry_K 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 11 -1730 \N \N \N \N t res_partner_industry_L 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 12 -1731 \N \N \N \N t res_partner_industry_M 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 13 -1732 \N \N \N \N t res_partner_industry_N 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 14 -1733 \N \N \N \N t res_partner_industry_O 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 15 -1734 \N \N \N \N t res_partner_industry_P 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 16 -1735 \N \N \N \N t res_partner_industry_Q 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 17 -1736 \N \N \N \N t res_partner_industry_R 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 18 -1737 \N \N \N \N t res_partner_industry_S 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 19 -1738 \N \N \N \N t res_partner_industry_T 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 20 -1739 \N \N \N \N t res_partner_industry_U 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner.industry 21 -3 \N \N \N \N t main_partner \N 2020-10-28 19:00:42.694321 base res.partner 1 -1742 \N \N \N \N t user_root_res_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 2 -1744 \N \N \N \N t user_admin_res_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 3 -1745 \N \N \N \N t user_admin 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.users 2 -1750 \N \N \N \N t paperformat_euro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base report.paperformat 1 -1751 \N \N \N \N t paperformat_us 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base report.paperformat 2 -1752 \N \N \N \N t paperformat_batch_deposit 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base report.paperformat 3 -1753 \N \N \N \N t USD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 2 -1754 \N \N \N \N t VEF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 3 -1755 \N \N \N \N t CAD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 4 -1756 \N \N \N \N t CHF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 5 -1757 \N \N \N \N t BRL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 6 -1758 \N \N \N \N t CNY 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 7 -1759 \N \N \N \N t COP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 8 -1760 \N \N \N \N t CZK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 9 -1761 \N \N \N \N t DKK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 10 -1762 \N \N \N \N t HUF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 11 -1763 \N \N \N \N t IDR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 12 -1764 \N \N \N \N t LVL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 13 -1765 \N \N \N \N t NOK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 14 -1766 \N \N \N \N t XPF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 15 -1767 \N \N \N \N t PAB 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 16 -1768 \N \N \N \N t PLN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 17 -1769 \N \N \N \N t SEK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 18 -1770 \N \N \N \N t ARS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 19 -1771 \N \N \N \N t INR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 20 -1772 \N \N \N \N t AUD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 21 -1773 \N \N \N \N t UAH 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 22 -1774 \N \N \N \N t VND 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 23 -1775 \N \N \N \N t HKD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 24 -1776 \N \N \N \N t JPY 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 25 -1777 \N \N \N \N t BGN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 26 -1778 \N \N \N \N t LTL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 27 -1779 \N \N \N \N t RON 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 28 -1780 \N \N \N \N t HRK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 29 -1781 \N \N \N \N t RUB 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 30 -1782 \N \N \N \N t TRY 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 31 -1783 \N \N \N \N t KRW 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 32 -1784 \N \N \N \N t MXN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 33 -1785 \N \N \N \N t MYR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 34 -1786 \N \N \N \N t NZD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 35 -1787 \N \N \N \N t PHP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 36 -1788 \N \N \N \N t SGD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 37 -1789 \N \N \N \N t ZAR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 38 -1790 \N \N \N \N t res_bank_1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.bank 1 -1791 \N \N \N \N t CRC 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 39 -1792 \N \N \N \N t MUR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 40 -1793 \N \N \N \N t XOF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 41 -1794 \N \N \N \N t XAF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 42 -1795 \N \N \N \N t UGX 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 43 -1796 \N \N \N \N t HNL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 44 -1797 \N \N \N \N t CLP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 45 -1798 \N \N \N \N t UYU 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 46 -1799 \N \N \N \N t AFN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 47 -1800 \N \N \N \N t AOA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 48 -1801 \N \N \N \N t XCD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 49 -1802 \N \N \N \N t AMD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 50 -2 \N \N \N \N t main_company \N 2020-10-28 19:00:59.657843 base res.company 1 -1803 \N \N \N \N t AWG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 51 -1804 \N \N \N \N t AZN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 52 -1805 \N \N \N \N t BSD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 53 -1806 \N \N \N \N t BHD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 54 -1807 \N \N \N \N t BDT 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 55 -1808 \N \N \N \N t BBD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 56 -1809 \N \N \N \N t BYR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 57 -1810 \N \N \N \N t BYN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 58 -1811 \N \N \N \N t BZD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 59 -1812 \N \N \N \N t BMD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 60 -1813 \N \N \N \N t BTN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 61 -1814 \N \N \N \N t BOB 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 62 -1815 \N \N \N \N t BAM 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 63 -1816 \N \N \N \N t BWP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 64 -1817 \N \N \N \N t BIF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 65 -1818 \N \N \N \N t KHR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 66 -1819 \N \N \N \N t KYD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 67 -1820 \N \N \N \N t KMF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 68 -1821 \N \N \N \N t CDF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 69 -1822 \N \N \N \N t CUP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 70 -1823 \N \N \N \N t ANG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 71 -1824 \N \N \N \N t CYP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 72 -1825 \N \N \N \N t DJF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 73 -1826 \N \N \N \N t DOP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 74 -1827 \N \N \N \N t ECS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 75 -1828 \N \N \N \N t EGP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 76 -1829 \N \N \N \N t SVC 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 77 -1830 \N \N \N \N t ERN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 78 -1831 \N \N \N \N t ETB 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 79 -1832 \N \N \N \N t FKP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 80 -1833 \N \N \N \N t FJD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 81 -1834 \N \N \N \N t GEL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 82 -1835 \N \N \N \N t GIP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 83 -1836 \N \N \N \N t QTQ 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 84 -1837 \N \N \N \N t GNF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 85 -1838 \N \N \N \N t GYD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 86 -1839 \N \N \N \N t HTG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 87 -1840 \N \N \N \N t ISK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 88 -1841 \N \N \N \N t IRR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 89 -1842 \N \N \N \N t IQD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 90 -1843 \N \N \N \N t ILS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 91 -1844 \N \N \N \N t JMD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 92 -1845 \N \N \N \N t JOD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 93 -1846 \N \N \N \N t KZT 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 94 -1847 \N \N \N \N t KES 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 95 -1848 \N \N \N \N t KWD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 96 -1849 \N \N \N \N t KGS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 97 -1850 \N \N \N \N t LAK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 98 -1851 \N \N \N \N t LBP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 99 -1852 \N \N \N \N t LSL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 100 -1853 \N \N \N \N t LRD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 101 -1854 \N \N \N \N t LYD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 102 -1855 \N \N \N \N t MOP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 103 -1856 \N \N \N \N t MKD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 104 -1857 \N \N \N \N t MGA 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 105 -1858 \N \N \N \N t MWK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 106 -1859 \N \N \N \N t MVR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 107 -1860 \N \N \N \N t MRO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 108 -1861 \N \N \N \N t MRU 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 109 -1862 \N \N \N \N t MDL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 110 -1863 \N \N \N \N t MNT 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 111 -1864 \N \N \N \N t MAD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 112 -1865 \N \N \N \N t BND 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 113 -1866 \N \N \N \N t DZD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 114 -1867 \N \N \N \N t GHS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 115 -1868 \N \N \N \N t GMD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 116 -1869 \N \N \N \N t ZRZ 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 117 -1870 \N \N \N \N t MZN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 118 -1871 \N \N \N \N t MMK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 119 -1872 \N \N \N \N t NAD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 120 -1873 \N \N \N \N t NPR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 121 -1874 \N \N \N \N t ALL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 122 -1875 \N \N \N \N t NIO 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 123 -1876 \N \N \N \N t NGN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 124 -1877 \N \N \N \N t KPW 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 125 -1878 \N \N \N \N t ZWD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 126 -1879 \N \N \N \N t ZMK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 127 -1880 \N \N \N \N t YER 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 128 -1 \N \N \N \N t EUR \N 2020-10-28 19:00:42.694321 base res.currency 1 -1882 \N \N \N \N t VUV 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 129 -1883 \N \N \N \N t UZS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 130 -1884 \N \N \N \N t AED 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 131 -1885 \N \N \N \N t UAG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 132 -1886 \N \N \N \N t TMM 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 133 -1887 \N \N \N \N t TND 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 134 -1888 \N \N \N \N t TTD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 135 -1889 \N \N \N \N t TOP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 136 -1890 \N \N \N \N t THB 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 137 -1891 \N \N \N \N t TZS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 138 -1892 \N \N \N \N t TJS 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 139 -1893 \N \N \N \N t TWD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 140 -1894 \N \N \N \N t SYP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 141 -1895 \N \N \N \N t SZL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 142 -1896 \N \N \N \N t SRG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 143 -1897 \N \N \N \N t SDD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 144 -1898 \N \N \N \N t SDG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 145 -1899 \N \N \N \N t LKR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 146 -1900 \N \N \N \N t SSP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 147 -1901 \N \N \N \N t GBP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 148 -1902 \N \N \N \N t SOD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 149 -1903 \N \N \N \N t SBD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 150 -1904 \N \N \N \N t SLL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 151 -1905 \N \N \N \N t SCR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 152 -1906 \N \N \N \N t RSD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 153 -1907 \N \N \N \N t SAR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 154 -1908 \N \N \N \N t STD 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 155 -1909 \N \N \N \N t ITL 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 156 -1910 \N \N \N \N t WST 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 157 -1911 \N \N \N \N t SHP 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 158 -1912 \N \N \N \N t RWF 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 159 -1913 \N \N \N \N t RUR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 160 -1914 \N \N \N \N t QAR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 161 -1915 \N \N \N \N t PLZ 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 162 -1916 \N \N \N \N t PEN 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 163 -1917 \N \N \N \N t PYG 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 164 -1918 \N \N \N \N t PGK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 165 -1919 \N \N \N \N t PKR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 166 -1920 \N \N \N \N t OMR 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 167 -1921 \N \N \N \N t CVE 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 168 -1922 \N \N \N \N t SKK 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 169 -1923 \N \N \N \N t YUM 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 170 -1924 \N \N \N \N t GTQ 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.currency 171 -1925 \N \N \N \N t ad 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 1 -1926 \N \N \N \N t ae 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 2 -1927 \N \N \N \N t af 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 3 -1928 \N \N \N \N t ag 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 4 -1929 \N \N \N \N t ai 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 5 -1930 \N \N \N \N t al 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 6 -1931 \N \N \N \N t am 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 7 -1932 \N \N \N \N t ao 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 8 -1933 \N \N \N \N t aq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 9 -1934 \N \N \N \N t ar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 10 -1935 \N \N \N \N t as 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 11 -1936 \N \N \N \N t at 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 12 -1937 \N \N \N \N t au 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 13 -1938 \N \N \N \N t aw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 14 -1939 \N \N \N \N t ax 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 15 -1940 \N \N \N \N t az 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 16 -1941 \N \N \N \N t ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 17 -1942 \N \N \N \N t bb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 18 -1943 \N \N \N \N t bd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 19 -1944 \N \N \N \N t be 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 20 -1945 \N \N \N \N t bf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 21 -1946 \N \N \N \N t bg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 22 -1947 \N \N \N \N t bh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 23 -1948 \N \N \N \N t bi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 24 -1949 \N \N \N \N t bj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 25 -1950 \N \N \N \N t bl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 26 -1951 \N \N \N \N t bm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 27 -1952 \N \N \N \N t bn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 28 -1953 \N \N \N \N t bo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 29 -1954 \N \N \N \N t bq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 30 -1955 \N \N \N \N t br 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 31 -1956 \N \N \N \N t bs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 32 -1957 \N \N \N \N t bt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 33 -1958 \N \N \N \N t bv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 34 -1959 \N \N \N \N t bw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 35 -1960 \N \N \N \N t by 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 36 -1961 \N \N \N \N t bz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 37 -1962 \N \N \N \N t ca 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 38 -1963 \N \N \N \N t cc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 39 -1964 \N \N \N \N t cf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 40 -1965 \N \N \N \N t cd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 41 -1966 \N \N \N \N t cg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 42 -1967 \N \N \N \N t ch 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 43 -1968 \N \N \N \N t ci 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 44 -1969 \N \N \N \N t ck 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 45 -1970 \N \N \N \N t cl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 46 -1971 \N \N \N \N t cm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 47 -1972 \N \N \N \N t cn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 48 -1973 \N \N \N \N t co 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 49 -1974 \N \N \N \N t cr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 50 -1975 \N \N \N \N t cu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 51 -1976 \N \N \N \N t cv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 52 -1977 \N \N \N \N t cw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 53 -1978 \N \N \N \N t cx 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 54 -1979 \N \N \N \N t cy 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 55 -1980 \N \N \N \N t cz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 56 -1981 \N \N \N \N t de 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 57 -1982 \N \N \N \N t dj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 58 -1983 \N \N \N \N t dk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 59 -1984 \N \N \N \N t dm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 60 -1985 \N \N \N \N t do 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 61 -1986 \N \N \N \N t dz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 62 -1987 \N \N \N \N t ec 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 63 -1988 \N \N \N \N t ee 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 64 -1989 \N \N \N \N t eg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 65 -1990 \N \N \N \N t eh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 66 -1991 \N \N \N \N t er 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 67 -1992 \N \N \N \N t es 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 68 -1993 \N \N \N \N t et 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 69 -1994 \N \N \N \N t fi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 70 -1995 \N \N \N \N t fj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 71 -1996 \N \N \N \N t fk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 72 -1997 \N \N \N \N t fm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 73 -1998 \N \N \N \N t fo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 74 -1999 \N \N \N \N t fr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 75 -2000 \N \N \N \N t ga 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 76 -2001 \N \N \N \N t gd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 77 -2002 \N \N \N \N t ge 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 78 -2003 \N \N \N \N t gf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 79 -2004 \N \N \N \N t gh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 80 -2005 \N \N \N \N t gi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 81 -2006 \N \N \N \N t gg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 82 -2007 \N \N \N \N t gl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 83 -2008 \N \N \N \N t gm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 84 -2009 \N \N \N \N t gn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 85 -2010 \N \N \N \N t gp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 86 -2011 \N \N \N \N t gq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 87 -2012 \N \N \N \N t gr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 88 -2013 \N \N \N \N t gs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 89 -2014 \N \N \N \N t gt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 90 -2015 \N \N \N \N t gu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 91 -2016 \N \N \N \N t gw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 92 -2017 \N \N \N \N t gy 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 93 -2018 \N \N \N \N t hk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 94 -2019 \N \N \N \N t hm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 95 -2020 \N \N \N \N t hn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 96 -2021 \N \N \N \N t hr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 97 -2022 \N \N \N \N t ht 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 98 -2023 \N \N \N \N t hu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 99 -2024 \N \N \N \N t id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 100 -2025 \N \N \N \N t ie 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 101 -2026 \N \N \N \N t il 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 102 -2027 \N \N \N \N t im 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 103 -2028 \N \N \N \N t in 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 104 -2029 \N \N \N \N t io 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 105 -2030 \N \N \N \N t iq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 106 -2031 \N \N \N \N t ir 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 107 -2032 \N \N \N \N t is 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 108 -2033 \N \N \N \N t it 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 109 -2034 \N \N \N \N t je 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 110 -2035 \N \N \N \N t jm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 111 -2036 \N \N \N \N t jo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 112 -2037 \N \N \N \N t jp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 113 -2038 \N \N \N \N t ke 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 114 -2039 \N \N \N \N t kg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 115 -2040 \N \N \N \N t kh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 116 -2041 \N \N \N \N t ki 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 117 -2042 \N \N \N \N t km 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 118 -2043 \N \N \N \N t kn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 119 -2044 \N \N \N \N t kp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 120 -2045 \N \N \N \N t kr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 121 -2046 \N \N \N \N t kw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 122 -2047 \N \N \N \N t ky 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 123 -2048 \N \N \N \N t kz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 124 -2049 \N \N \N \N t la 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 125 -2050 \N \N \N \N t lb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 126 -2051 \N \N \N \N t lc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 127 -2052 \N \N \N \N t li 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 128 -2053 \N \N \N \N t lk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 129 -2054 \N \N \N \N t lr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 130 -2055 \N \N \N \N t ls 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 131 -2056 \N \N \N \N t lt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 132 -2057 \N \N \N \N t lu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 133 -2058 \N \N \N \N t lv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 134 -2059 \N \N \N \N t ly 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 135 -2060 \N \N \N \N t ma 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 136 -2061 \N \N \N \N t mc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 137 -2062 \N \N \N \N t md 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 138 -2063 \N \N \N \N t me 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 139 -2064 \N \N \N \N t mf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 140 -2065 \N \N \N \N t mg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 141 -2066 \N \N \N \N t mh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 142 -2067 \N \N \N \N t mk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 143 -2068 \N \N \N \N t ml 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 144 -2069 \N \N \N \N t mm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 145 -2070 \N \N \N \N t mn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 146 -2071 \N \N \N \N t mo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 147 -2072 \N \N \N \N t mp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 148 -2073 \N \N \N \N t mq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 149 -2074 \N \N \N \N t mr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 150 -2075 \N \N \N \N t ms 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 151 -2076 \N \N \N \N t mt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 152 -2077 \N \N \N \N t mu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 153 -2078 \N \N \N \N t mv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 154 -2079 \N \N \N \N t mw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 155 -2080 \N \N \N \N t mx 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 156 -2081 \N \N \N \N t my 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 157 -2082 \N \N \N \N t mz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 158 -2083 \N \N \N \N t na 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 159 -2084 \N \N \N \N t nc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 160 -2085 \N \N \N \N t ne 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 161 -2086 \N \N \N \N t nf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 162 -2087 \N \N \N \N t ng 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 163 -2088 \N \N \N \N t ni 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 164 -2089 \N \N \N \N t nl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 165 -2090 \N \N \N \N t no 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 166 -2091 \N \N \N \N t np 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 167 -2092 \N \N \N \N t nr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 168 -2093 \N \N \N \N t nu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 169 -2094 \N \N \N \N t nz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 170 -2095 \N \N \N \N t om 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 171 -2096 \N \N \N \N t pa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 172 -2097 \N \N \N \N t pe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 173 -2098 \N \N \N \N t pf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 174 -2099 \N \N \N \N t pg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 175 -2100 \N \N \N \N t ph 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 176 -2101 \N \N \N \N t pk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 177 -2102 \N \N \N \N t pl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 178 -2103 \N \N \N \N t pm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 179 -2104 \N \N \N \N t pn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 180 -2105 \N \N \N \N t pr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 181 -2106 \N \N \N \N t ps 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 182 -2107 \N \N \N \N t pt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 183 -2108 \N \N \N \N t pw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 184 -2109 \N \N \N \N t py 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 185 -2110 \N \N \N \N t qa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 186 -2111 \N \N \N \N t re 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 187 -2112 \N \N \N \N t ro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 188 -2113 \N \N \N \N t rs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 189 -2114 \N \N \N \N t ru 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 190 -2115 \N \N \N \N t rw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 191 -2116 \N \N \N \N t sa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 192 -2117 \N \N \N \N t sb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 193 -2118 \N \N \N \N t sc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 194 -2119 \N \N \N \N t sd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 195 -2120 \N \N \N \N t se 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 196 -2121 \N \N \N \N t sg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 197 -2122 \N \N \N \N t sh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 198 -2123 \N \N \N \N t si 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 199 -2124 \N \N \N \N t sj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 200 -2125 \N \N \N \N t sk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 201 -2126 \N \N \N \N t sl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 202 -2127 \N \N \N \N t sm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 203 -2128 \N \N \N \N t sn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 204 -2129 \N \N \N \N t so 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 205 -2130 \N \N \N \N t sr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 206 -2131 \N \N \N \N t ss 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 207 -2132 \N \N \N \N t st 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 208 -2133 \N \N \N \N t sv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 209 -2134 \N \N \N \N t sx 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 210 -2135 \N \N \N \N t sy 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 211 -2136 \N \N \N \N t sz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 212 -2137 \N \N \N \N t tc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 213 -2138 \N \N \N \N t td 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 214 -2139 \N \N \N \N t tf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 215 -2140 \N \N \N \N t tg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 216 -2141 \N \N \N \N t th 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 217 -2142 \N \N \N \N t tj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 218 -2143 \N \N \N \N t tk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 219 -2144 \N \N \N \N t tm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 220 -2145 \N \N \N \N t tn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 221 -2146 \N \N \N \N t to 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 222 -2147 \N \N \N \N t tl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 223 -2148 \N \N \N \N t tr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 224 -2149 \N \N \N \N t tt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 225 -2150 \N \N \N \N t tv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 226 -2151 \N \N \N \N t tw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 227 -2152 \N \N \N \N t tz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 228 -2153 \N \N \N \N t ua 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 229 -2154 \N \N \N \N t ug 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 230 -2155 \N \N \N \N t uk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 231 -2156 \N \N \N \N t um 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 232 -2157 \N \N \N \N t us 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 233 -2158 \N \N \N \N t uy 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 234 -2159 \N \N \N \N t uz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 235 -2160 \N \N \N \N t va 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 236 -2161 \N \N \N \N t vc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 237 -2162 \N \N \N \N t ve 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 238 -2163 \N \N \N \N t vg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 239 -2164 \N \N \N \N t vi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 240 -2165 \N \N \N \N t vn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 241 -2166 \N \N \N \N t vu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 242 -2167 \N \N \N \N t wf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 243 -2168 \N \N \N \N t ws 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 244 -2169 \N \N \N \N t ye 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 245 -2170 \N \N \N \N t yt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 246 -2171 \N \N \N \N t za 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 247 -2172 \N \N \N \N t zm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 248 -2173 \N \N \N \N t zw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 249 -2174 \N \N \N \N t xk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country 250 -2175 \N \N \N \N t europe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.group 1 -2176 \N \N \N \N t south_america 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.group 2 -2177 \N \N \N \N f demo_force_install_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 1 -2178 \N \N \N \N f demo_force_install_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 1 -1746 \N \N \N \N t default_user_res_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 5 -1747 \N \N \N \N t default_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.users 3 -1748 \N \N \N \N t public_user_res_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 4 -1749 \N \N \N \N t public_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.users 4 -2196 \N \N \N \N f template_portal_user_id_res_partner 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.partner 6 -2197 \N \N \N \N f template_portal_user_id 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.users 5 -2198 \N \N \N \N f default_template_user_config 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.config_parameter 7 -2191 \N \N \N \N f group_private_addresses 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 8 -2200 \N \N \N \N t res_users_log_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 1 -2201 \N \N \N \N t res_partner_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 2 -2202 \N \N \N \N t res_partner_portal_public_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 3 -2203 \N \N \N \N t ir_default_user_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 4 -2204 \N \N \N \N t ir_default_system_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 5 -2205 \N \N \N \N t ir_ui_view_custom_personal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 6 -2206 \N \N \N \N t res_partner_bank_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 7 -2207 \N \N \N \N t res_currency_rate_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 8 -2208 \N \N \N \N t res_partner_rule_private_employee 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 9 -2209 \N \N \N \N t res_partner_rule_private_group 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 10 -2210 \N \N \N \N t ir_filters_admin_all_rights_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 11 -2211 \N \N \N \N t ir_filters_employee_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 12 -2212 \N \N \N \N t ir_filters_delete_own_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 13 -2213 \N \N \N \N t ir_filters_portal_public_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 14 -2214 \N \N \N \N t res_company_rule_portal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 15 -2215 \N \N \N \N t res_company_rule_employee 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 16 -2216 \N \N \N \N t res_company_rule_public 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 17 -2217 \N \N \N \N t res_company_rule_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 18 -2218 \N \N \N \N t res_users_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 19 -2219 \N \N \N \N f menu_board_root 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 1 -2220 \N \N \N \N f menu_reporting_dashboard 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 2 -2221 \N \N \N \N f menu_reporting_config 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 3 -2223 \N \N \N \N f menu_management 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 5 -2224 \N \N \N \N f menu_administration_shortcut 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 6 -2225 \N \N \N \N f menu_users 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 7 -2226 \N \N \N \N f menu_translation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 8 -2227 \N \N \N \N f menu_translation_app 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 9 -2228 \N \N \N \N f menu_translation_export 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 10 -2229 \N \N \N \N f menu_custom 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 11 -2230 \N \N \N \N f next_id_2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 12 -2231 \N \N \N \N f menu_email 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 13 -2232 \N \N \N \N f next_id_9 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 14 -2233 \N \N \N \N f menu_automation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 15 -2234 \N \N \N \N f menu_security 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 16 -2235 \N \N \N \N f menu_ir_property 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 17 -2236 \N \N \N \N f menu_tests 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 18 -2222 \N \N \N \N f menu_administration 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 4 -2238 \N \N \N \N f action_client_base_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.client 2 -2239 \N \N \N \N f open_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.todo 1 -2240 \N \N \N \N f action_open_website 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_url 3 -2241 \N \N \N \N f res_config_view_base 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 2 -2242 \N \N \N \N f res_config_installer 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 3 -2243 \N \N \N \N f state_au_1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 1 -2244 \N \N \N \N f state_au_2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 2 -2245 \N \N \N \N f state_au_3 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 3 -2246 \N \N \N \N f state_au_4 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 4 -2247 \N \N \N \N f state_au_5 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 5 -2248 \N \N \N \N f state_au_6 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 6 -2249 \N \N \N \N f state_au_7 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 7 -2250 \N \N \N \N f state_au_8 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 8 -2251 \N \N \N \N f state_us_1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 9 -2252 \N \N \N \N f state_us_2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 10 -2253 \N \N \N \N f state_us_3 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 11 -2254 \N \N \N \N f state_us_4 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 12 -2255 \N \N \N \N f state_us_5 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 13 -2256 \N \N \N \N f state_us_6 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 14 -2257 \N \N \N \N f state_us_7 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 15 -2258 \N \N \N \N f state_us_8 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 16 -2259 \N \N \N \N f state_us_9 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 17 -2260 \N \N \N \N f state_us_10 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 18 -2261 \N \N \N \N f state_us_11 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 19 -2262 \N \N \N \N f state_us_12 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 20 -2263 \N \N \N \N f state_us_13 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 21 -2264 \N \N \N \N f state_us_14 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 22 -2265 \N \N \N \N f state_us_15 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 23 -2266 \N \N \N \N f state_us_16 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 24 -2267 \N \N \N \N f state_us_17 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 25 -2268 \N \N \N \N f state_us_18 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 26 -2269 \N \N \N \N f state_us_19 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 27 -2270 \N \N \N \N f state_us_20 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 28 -2271 \N \N \N \N f state_us_21 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 29 -2272 \N \N \N \N f state_us_22 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 30 -2273 \N \N \N \N f state_us_23 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 31 -2274 \N \N \N \N f state_us_24 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 32 -2275 \N \N \N \N f state_us_25 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 33 -2276 \N \N \N \N f state_us_26 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 34 -2277 \N \N \N \N f state_us_27 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 35 -2278 \N \N \N \N f state_us_28 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 36 -2279 \N \N \N \N f state_us_29 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 37 -2280 \N \N \N \N f state_us_30 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 38 -2281 \N \N \N \N f state_us_31 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 39 -2282 \N \N \N \N f state_us_32 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 40 -2283 \N \N \N \N f state_us_33 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 41 -2284 \N \N \N \N f state_us_34 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 42 -2285 \N \N \N \N f state_us_35 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 43 -2286 \N \N \N \N f state_us_36 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 44 -2287 \N \N \N \N f state_us_37 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 45 -2288 \N \N \N \N f state_us_38 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 46 -2289 \N \N \N \N f state_us_39 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 47 -2290 \N \N \N \N f state_us_40 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 48 -2291 \N \N \N \N f state_us_41 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 49 -2292 \N \N \N \N f state_us_42 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 50 -2293 \N \N \N \N f state_us_43 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 51 -2294 \N \N \N \N f state_us_44 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 52 -2295 \N \N \N \N f state_us_45 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 53 -2296 \N \N \N \N f state_us_46 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 54 -2297 \N \N \N \N f state_us_47 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 55 -2298 \N \N \N \N f state_us_48 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 56 -2299 \N \N \N \N f state_us_49 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 57 -2300 \N \N \N \N f state_us_50 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 58 -2301 \N \N \N \N f state_us_51 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 59 -2302 \N \N \N \N f state_us_as 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 60 -2303 \N \N \N \N f state_us_fm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 61 -2304 \N \N \N \N f state_us_gu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 62 -2305 \N \N \N \N f state_us_mh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 63 -2306 \N \N \N \N f state_us_mp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 64 -2307 \N \N \N \N f state_us_pw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 65 -2308 \N \N \N \N f state_us_pr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 66 -2309 \N \N \N \N f state_us_vi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 67 -2310 \N \N \N \N f state_us_aa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 68 -2311 \N \N \N \N f state_us_ae 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 69 -2312 \N \N \N \N f state_us_ap 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 70 -2313 \N \N \N \N f state_br_ac 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 71 -2314 \N \N \N \N f state_br_al 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 72 -2315 \N \N \N \N f state_br_ap 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 73 -2316 \N \N \N \N f state_br_am 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 74 -2317 \N \N \N \N f state_br_ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 75 -2318 \N \N \N \N f state_br_ce 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 76 -2319 \N \N \N \N f state_br_df 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 77 -2320 \N \N \N \N f state_br_es 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 78 -2321 \N \N \N \N f state_br_go 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 79 -2322 \N \N \N \N f state_br_ma 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 80 -2323 \N \N \N \N f state_br_mt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 81 -2324 \N \N \N \N f state_br_ms 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 82 -2325 \N \N \N \N f state_br_mg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 83 -2326 \N \N \N \N f state_br_pa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 84 -2327 \N \N \N \N f state_br_pb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 85 -2328 \N \N \N \N f state_br_pr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 86 -2329 \N \N \N \N f state_br_pe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 87 -2330 \N \N \N \N f state_br_pi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 88 -3085 \N \N \N \N f contact_name 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 79 -2331 \N \N \N \N f state_br_rj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 89 -2332 \N \N \N \N f state_br_rn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 90 -2333 \N \N \N \N f state_br_rs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 91 -2334 \N \N \N \N f state_br_ro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 92 -2335 \N \N \N \N f state_br_rr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 93 -2336 \N \N \N \N f state_br_sc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 94 -2337 \N \N \N \N f state_br_sp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 95 -2338 \N \N \N \N f state_br_se 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 96 -2339 \N \N \N \N f state_br_to 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 97 -2340 \N \N \N \N f state_ru_ad 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 98 -2341 \N \N \N \N f state_ru_al 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 99 -2342 \N \N \N \N f state_ru_alt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 100 -2343 \N \N \N \N f state_ru_amu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 101 -2344 \N \N \N \N f state_ru_ark 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 102 -2345 \N \N \N \N f state_ru_ast 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 103 -2346 \N \N \N \N f state_ru_ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 104 -2347 \N \N \N \N f state_ru_bel 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 105 -2348 \N \N \N \N f state_ru_bry 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 106 -2349 \N \N \N \N f state_ru_bu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 107 -2350 \N \N \N \N f state_ru_ce 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 108 -2351 \N \N \N \N f state_ru_che 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 109 -2352 \N \N \N \N f state_ru_chu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 110 -2353 \N \N \N \N f state_ru_cu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 111 -2354 \N \N \N \N f state_ru_da 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 112 -2355 \N \N \N \N f state_ru_in 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 113 -2356 \N \N \N \N f state_ru_irk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 114 -2357 \N \N \N \N f state_ru_iva 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 115 -2358 \N \N \N \N f state_ru_kam 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 116 -2359 \N \N \N \N f state_ru_kb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 117 -2360 \N \N \N \N f state_ru_kgd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 118 -2361 \N \N \N \N f state_ru_kl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 119 -2362 \N \N \N \N f state_ru_klu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 120 -2363 \N \N \N \N f state_ru_kc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 121 -2364 \N \N \N \N f state_ru_kr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 122 -2365 \N \N \N \N f state_ru_kem 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 123 -2366 \N \N \N \N f state_ru_kha 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 124 -2367 \N \N \N \N f state_ru_kk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 125 -2368 \N \N \N \N f state_ru_khm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 126 -2369 \N \N \N \N f state_ru_kir 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 127 -2370 \N \N \N \N f state_ru_ko 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 128 -2371 \N \N \N \N f state_ru_kos 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 129 -2372 \N \N \N \N f state_ru_kda 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 130 -2373 \N \N \N \N f state_ru_kya 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 131 -2374 \N \N \N \N f state_ru_kgn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 132 -2375 \N \N \N \N f state_ru_krs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 133 -2376 \N \N \N \N f state_ru_len 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 134 -2377 \N \N \N \N f state_ru_lip 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 135 -2378 \N \N \N \N f state_ru_mag 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 136 -2379 \N \N \N \N f state_ru_me 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 137 -2380 \N \N \N \N f state_ru_mo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 138 -2381 \N \N \N \N f state_ru_mos 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 139 -2382 \N \N \N \N f state_ru_mow 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 140 -2383 \N \N \N \N f state_ru_mur 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 141 -2384 \N \N \N \N f state_ru_niz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 142 -2385 \N \N \N \N f state_ru_ngr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 143 -2386 \N \N \N \N f state_ru_nvs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 144 -2387 \N \N \N \N f state_ru_oms 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 145 -2388 \N \N \N \N f state_ru_ore 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 146 -2389 \N \N \N \N f state_ru_orl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 147 -2390 \N \N \N \N f state_ru_pnz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 148 -2391 \N \N \N \N f state_ru_per 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 149 -2392 \N \N \N \N f state_ru_pri 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 150 -2393 \N \N \N \N f state_ru_psk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 151 -2394 \N \N \N \N f state_ru_ros 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 152 -2395 \N \N \N \N f state_ru_rya 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 153 -2396 \N \N \N \N f state_ru_sa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 154 -2397 \N \N \N \N f state_ru_sak 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 155 -2398 \N \N \N \N f state_ru_sam 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 156 -2399 \N \N \N \N f state_ru_spe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 157 -2400 \N \N \N \N f state_ru_sar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 158 -2401 \N \N \N \N f state_ru_se 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 159 -2402 \N \N \N \N f state_ru_smo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 160 -2403 \N \N \N \N f state_ru_sta 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 161 -2404 \N \N \N \N f state_ru_sve 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 162 -2405 \N \N \N \N f state_ru_tam 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 163 -2406 \N \N \N \N f state_ru_ta 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 164 -2407 \N \N \N \N f state_ru_tom 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 165 -2408 \N \N \N \N f state_ru_tul 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 166 -2409 \N \N \N \N f state_ru_tve 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 167 -2410 \N \N \N \N f state_ru_tyu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 168 -2411 \N \N \N \N f state_ru_ty 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 169 -2412 \N \N \N \N f state_ru_ud 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 170 -2413 \N \N \N \N f state_ru_uly 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 171 -2414 \N \N \N \N f state_ru_vla 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 172 -2415 \N \N \N \N f state_ru_vgg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 173 -2416 \N \N \N \N f state_ru_vlg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 174 -2417 \N \N \N \N f state_ru_vor 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 175 -2418 \N \N \N \N f state_ru_yan 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 176 -2419 \N \N \N \N f state_ru_yar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 177 -2420 \N \N \N \N f state_ru_yev 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 178 -2421 \N \N \N \N f state_gt_ave 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 179 -2422 \N \N \N \N f state_gt_bve 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 180 -2423 \N \N \N \N f state_gt_cmt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 181 -2424 \N \N \N \N f state_gt_cqm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 182 -2425 \N \N \N \N f state_gt_epr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 183 -2426 \N \N \N \N f state_gt_esc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 184 -2427 \N \N \N \N f state_gt_gua 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 185 -2428 \N \N \N \N f state_gt_hue 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 186 -2429 \N \N \N \N f state_gt_iza 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 187 -2430 \N \N \N \N f state_gt_jal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 188 -2431 \N \N \N \N f state_gt_jut 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 189 -2432 \N \N \N \N f state_gt_pet 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 190 -2433 \N \N \N \N f state_gt_que 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 191 -2434 \N \N \N \N f state_gt_qui 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 192 -2435 \N \N \N \N f state_gt_ret 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 193 -2436 \N \N \N \N f state_gt_sac 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 194 -2437 \N \N \N \N f state_gt_sma 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 195 -2438 \N \N \N \N f state_gt_sro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 196 -2439 \N \N \N \N f state_gt_sol 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 197 -2440 \N \N \N \N f state_gt_suc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 198 -2441 \N \N \N \N f state_gt_tot 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 199 -2442 \N \N \N \N f state_gt_zac 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 200 -2443 \N \N \N \N f state_jp_jp-23 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 201 -2444 \N \N \N \N f state_jp_jp-05 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 202 -2445 \N \N \N \N f state_jp_jp-02 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 203 -2446 \N \N \N \N f state_jp_jp-12 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 204 -2447 \N \N \N \N f state_jp_jp-38 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 205 -2448 \N \N \N \N f state_jp_jp-18 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 206 -2449 \N \N \N \N f state_jp_jp-40 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 207 -2450 \N \N \N \N f state_jp_jp-07 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 208 -2451 \N \N \N \N f state_jp_jp-21 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 209 -2452 \N \N \N \N f state_jp_jp-10 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 210 -2453 \N \N \N \N f state_jp_jp-34 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 211 -2454 \N \N \N \N f state_jp_jp-01 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 212 -2455 \N \N \N \N f state_jp_jp-28 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 213 -2456 \N \N \N \N f state_jp_jp-08 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 214 -2457 \N \N \N \N f state_jp_jp-17 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 215 -2458 \N \N \N \N f state_jp_jp-03 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 216 -2459 \N \N \N \N f state_jp_jp-37 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 217 -2460 \N \N \N \N f state_jp_jp-46 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 218 -2461 \N \N \N \N f state_jp_jp-14 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 219 -2462 \N \N \N \N f state_jp_jp-39 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 220 -2463 \N \N \N \N f state_jp_jp-43 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 221 -2464 \N \N \N \N f state_jp_jp-26 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 222 -2465 \N \N \N \N f state_jp_jp-24 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 223 -2466 \N \N \N \N f state_jp_jp-04 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 224 -2467 \N \N \N \N f state_jp_jp-45 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 225 -2468 \N \N \N \N f state_jp_jp-20 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 226 -2469 \N \N \N \N f state_jp_jp-42 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 227 -2470 \N \N \N \N f state_jp_jp-29 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 228 -2471 \N \N \N \N f state_jp_jp-15 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 229 -2472 \N \N \N \N f state_jp_jp-44 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 230 -2473 \N \N \N \N f state_jp_jp-33 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 231 -2474 \N \N \N \N f state_jp_jp-47 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 232 -2475 \N \N \N \N f state_jp_jp-27 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 233 -2476 \N \N \N \N f state_jp_jp-41 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 234 -2477 \N \N \N \N f state_jp_jp-11 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 235 -2478 \N \N \N \N f state_jp_jp-25 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 236 -2479 \N \N \N \N f state_jp_jp-32 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 237 -2480 \N \N \N \N f state_jp_jp-22 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 238 -2481 \N \N \N \N f state_jp_jp-09 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 239 -2482 \N \N \N \N f state_jp_jp-36 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 240 -2483 \N \N \N \N f state_jp_jp-31 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 241 -2484 \N \N \N \N f state_jp_jp-16 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 242 -2485 \N \N \N \N f state_jp_jp-13 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 243 -2486 \N \N \N \N f state_jp_jp-30 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 244 -2487 \N \N \N \N f state_jp_jp-06 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 245 -2488 \N \N \N \N f state_jp_jp-35 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 246 -2489 \N \N \N \N f state_jp_jp-19 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 247 -2490 \N \N \N \N f state_pt_pt-01 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 248 -2491 \N \N \N \N f state_pt_pt-02 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 249 -2492 \N \N \N \N f state_pt_pt-03 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 250 -2493 \N \N \N \N f state_pt_pt-04 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 251 -2494 \N \N \N \N f state_pt_pt-05 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 252 -2495 \N \N \N \N f state_pt_pt-06 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 253 -2496 \N \N \N \N f state_pt_pt-07 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 254 -2497 \N \N \N \N f state_pt_pt-08 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 255 -2498 \N \N \N \N f state_pt_pt-09 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 256 -2499 \N \N \N \N f state_pt_pt-10 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 257 -2500 \N \N \N \N f state_pt_pt-11 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 258 -2501 \N \N \N \N f state_pt_pt-12 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 259 -2502 \N \N \N \N f state_pt_pt-13 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 260 -2503 \N \N \N \N f state_pt_pt-14 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 261 -2504 \N \N \N \N f state_pt_pt-15 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 262 -2505 \N \N \N \N f state_pt_pt-16 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 263 -2506 \N \N \N \N f state_pt_pt-17 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 264 -2507 \N \N \N \N f state_pt_pt-18 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 265 -2508 \N \N \N \N f state_pt_pt-20 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 266 -2509 \N \N \N \N f state_pt_pt-30 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 267 -2510 \N \N \N \N f state_eg_dk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 268 -2511 \N \N \N \N f state_eg_ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 269 -2512 \N \N \N \N f state_eg_bh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 270 -2513 \N \N \N \N f state_eg_fym 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 271 -2514 \N \N \N \N f state_eg_gh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 272 -2515 \N \N \N \N f state_eg_alx 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 273 -2516 \N \N \N \N f state_eg_is 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 274 -2517 \N \N \N \N f state_eg_gz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 275 -2518 \N \N \N \N f state_eg_mnf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 276 -2519 \N \N \N \N f state_eg_mn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 277 -2520 \N \N \N \N f state_eg_c 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 278 -2521 \N \N \N \N f state_eg_kb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 279 -2522 \N \N \N \N f state_eg_lx 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 280 -2523 \N \N \N \N f state_eg_wad 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 281 -2524 \N \N \N \N f state_eg_shr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 282 -2525 \N \N \N \N f state_eg_su 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 283 -2526 \N \N \N \N f state_eg_suz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 284 -2527 \N \N \N \N f state_eg_asn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 285 -2528 \N \N \N \N f state_eg_ast 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 286 -2529 \N \N \N \N f state_eg_bns 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 287 -2530 \N \N \N \N f state_eg_pts 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 288 -2531 \N \N \N \N f state_eg_dt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 289 -2532 \N \N \N \N f state_eg_hu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 290 -2533 \N \N \N \N f state_eg_js 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 291 -2534 \N \N \N \N f state_eg_kfs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 292 -2535 \N \N \N \N f state_eg_mt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 293 -2536 \N \N \N \N f state_eg_kn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 294 -2537 \N \N \N \N f state_eg_sin 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 295 -2538 \N \N \N \N f state_eg_shg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 296 -2539 \N \N \N \N f state_za_ec 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 297 -2540 \N \N \N \N f state_za_fs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 298 -2541 \N \N \N \N f state_za_gt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 299 -2542 \N \N \N \N f state_za_nl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 300 -2543 \N \N \N \N f state_za_lp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 301 -2544 \N \N \N \N f state_za_mp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 302 -2545 \N \N \N \N f state_za_nc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 303 -2546 \N \N \N \N f state_za_nw 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 304 -2547 \N \N \N \N f state_za_wc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 305 -2548 \N \N \N \N f state_it_ag 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 306 -2549 \N \N \N \N f state_it_al 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 307 -2550 \N \N \N \N f state_it_an 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 308 -2551 \N \N \N \N f state_it_ao 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 309 -2552 \N \N \N \N f state_it_ar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 310 -2553 \N \N \N \N f state_it_ap 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 311 -2554 \N \N \N \N f state_it_at 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 312 -2555 \N \N \N \N f state_it_av 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 313 -2556 \N \N \N \N f state_it_ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 314 -2557 \N \N \N \N f state_it_bt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 315 -2558 \N \N \N \N f state_it_bl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 316 -2559 \N \N \N \N f state_it_bn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 317 -2560 \N \N \N \N f state_it_bg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 318 -2561 \N \N \N \N f state_it_bi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 319 -2562 \N \N \N \N f state_it_bo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 320 -2563 \N \N \N \N f state_it_bz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 321 -2564 \N \N \N \N f state_it_bs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 322 -2565 \N \N \N \N f state_it_br 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 323 -2566 \N \N \N \N f state_it_ca 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 324 -2567 \N \N \N \N f state_it_cl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 325 -2568 \N \N \N \N f state_it_cb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 326 -2569 \N \N \N \N f state_it_ci 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 327 -2570 \N \N \N \N f state_it_ce 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 328 -2571 \N \N \N \N f state_it_ct 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 329 -2572 \N \N \N \N f state_it_cz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 330 -2573 \N \N \N \N f state_it_ch 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 331 -2574 \N \N \N \N f state_it_co 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 332 -2575 \N \N \N \N f state_it_cs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 333 -2576 \N \N \N \N f state_it_cr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 334 -2577 \N \N \N \N f state_it_kr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 335 -2578 \N \N \N \N f state_it_cn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 336 -2579 \N \N \N \N f state_it_en 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 337 -2580 \N \N \N \N f state_it_fm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 338 -2581 \N \N \N \N f state_it_fe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 339 -2582 \N \N \N \N f state_it_fi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 340 -2583 \N \N \N \N f state_it_fg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 341 -2584 \N \N \N \N f state_it_fc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 342 -2585 \N \N \N \N f state_it_fr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 343 -2586 \N \N \N \N f state_it_ge 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 344 -2587 \N \N \N \N f state_it_go 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 345 -2588 \N \N \N \N f state_it_gr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 346 -2589 \N \N \N \N f state_it_im 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 347 -2590 \N \N \N \N f state_it_is 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 348 -2591 \N \N \N \N f state_it_sp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 349 -2592 \N \N \N \N f state_it_aq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 350 -2593 \N \N \N \N f state_it_lt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 351 -2594 \N \N \N \N f state_it_le 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 352 -2595 \N \N \N \N f state_it_lc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 353 -2596 \N \N \N \N f state_it_li 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 354 -2597 \N \N \N \N f state_it_lo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 355 -2598 \N \N \N \N f state_it_lu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 356 -2599 \N \N \N \N f state_it_mc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 357 -2600 \N \N \N \N f state_it_mn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 358 -2601 \N \N \N \N f state_it_ms 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 359 -2602 \N \N \N \N f state_it_mt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 360 -2603 \N \N \N \N f state_it_vs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 361 -2604 \N \N \N \N f state_it_me 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 362 -2605 \N \N \N \N f state_it_mi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 363 -2606 \N \N \N \N f state_it_mo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 364 -2607 \N \N \N \N f state_it_mb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 365 -2608 \N \N \N \N f state_it_na 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 366 -2609 \N \N \N \N f state_it_no 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 367 -2610 \N \N \N \N f state_it_nu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 368 -2611 \N \N \N \N f state_it_og 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 369 -2612 \N \N \N \N f state_it_ot 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 370 -2613 \N \N \N \N f state_it_or 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 371 -2614 \N \N \N \N f state_it_pd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 372 -2615 \N \N \N \N f state_it_pa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 373 -2616 \N \N \N \N f state_it_pr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 374 -2617 \N \N \N \N f state_it_pv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 375 -2618 \N \N \N \N f state_it_pg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 376 -2619 \N \N \N \N f state_it_pu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 377 -2620 \N \N \N \N f state_it_pe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 378 -2621 \N \N \N \N f state_it_pc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 379 -2622 \N \N \N \N f state_it_pi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 380 -2623 \N \N \N \N f state_it_pt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 381 -2624 \N \N \N \N f state_it_pn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 382 -2625 \N \N \N \N f state_it_pz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 383 -2626 \N \N \N \N f state_it_po 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 384 -2627 \N \N \N \N f state_it_rg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 385 -2628 \N \N \N \N f state_it_ra 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 386 -2629 \N \N \N \N f state_it_rc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 387 -2630 \N \N \N \N f state_it_re 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 388 -2631 \N \N \N \N f state_it_ri 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 389 -2632 \N \N \N \N f state_it_rn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 390 -2633 \N \N \N \N f state_it_rm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 391 -2634 \N \N \N \N f state_it_ro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 392 -2635 \N \N \N \N f state_it_sa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 393 -2636 \N \N \N \N f state_it_ss 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 394 -2637 \N \N \N \N f state_it_sv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 395 -2638 \N \N \N \N f state_it_si 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 396 -2639 \N \N \N \N f state_it_sr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 397 -2640 \N \N \N \N f state_it_so 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 398 -2641 \N \N \N \N f state_it_su 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 399 -2642 \N \N \N \N f state_it_ta 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 400 -2643 \N \N \N \N f state_it_te 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 401 -2644 \N \N \N \N f state_it_tr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 402 -2645 \N \N \N \N f state_it_to 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 403 -2646 \N \N \N \N f state_it_tp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 404 -2647 \N \N \N \N f state_it_tn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 405 -2648 \N \N \N \N f state_it_tv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 406 -2649 \N \N \N \N f state_it_ts 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 407 -2650 \N \N \N \N f state_it_ud 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 408 -2651 \N \N \N \N f state_it_va 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 409 -2652 \N \N \N \N f state_it_ve 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 410 -2653 \N \N \N \N f state_it_vb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 411 -2654 \N \N \N \N f state_it_vc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 412 -2655 \N \N \N \N f state_it_vr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 413 -2656 \N \N \N \N f state_it_vv 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 414 -2657 \N \N \N \N f state_it_vi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 415 -2658 \N \N \N \N f state_it_vt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 416 -2659 \N \N \N \N f state_es_c 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 417 -2660 \N \N \N \N f state_es_vi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 418 -2661 \N \N \N \N f state_es_ab 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 419 -2662 \N \N \N \N f state_es_a 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 420 -2663 \N \N \N \N f state_es_al 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 421 -2664 \N \N \N \N f state_es_o 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 422 -2665 \N \N \N \N f state_es_av 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 423 -2666 \N \N \N \N f state_es_ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 424 -2667 \N \N \N \N f state_es_pm 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 425 -2668 \N \N \N \N f state_es_b 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 426 -2669 \N \N \N \N f state_es_bu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 427 -2670 \N \N \N \N f state_es_cc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 428 -2671 \N \N \N \N f state_es_ca 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 429 -2672 \N \N \N \N f state_es_s 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 430 -2673 \N \N \N \N f state_es_cs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 431 -2674 \N \N \N \N f state_es_ce 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 432 -2675 \N \N \N \N f state_es_cr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 433 -2676 \N \N \N \N f state_es_co 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 434 -2677 \N \N \N \N f state_es_cu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 435 -2678 \N \N \N \N f state_es_gi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 436 -2679 \N \N \N \N f state_es_gr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 437 -2680 \N \N \N \N f state_es_gu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 438 -2681 \N \N \N \N f state_es_ss 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 439 -2682 \N \N \N \N f state_es_h 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 440 -2683 \N \N \N \N f state_es_hu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 441 -2684 \N \N \N \N f state_es_j 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 442 -2685 \N \N \N \N f state_es_lo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 443 -2686 \N \N \N \N f state_es_gc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 444 -2687 \N \N \N \N f state_es_le 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 445 -2688 \N \N \N \N f state_es_l 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 446 -2689 \N \N \N \N f state_es_lu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 447 -2690 \N \N \N \N f state_es_m 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 448 -2691 \N \N \N \N f state_es_ma 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 449 -2692 \N \N \N \N f state_es_ml 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 450 -2693 \N \N \N \N f state_es_mu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 451 -2694 \N \N \N \N f state_es_na 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 452 -2695 \N \N \N \N f state_es_or 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 453 -2696 \N \N \N \N f state_es_p 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 454 -2697 \N \N \N \N f state_es_po 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 455 -2698 \N \N \N \N f state_es_sa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 456 -2699 \N \N \N \N f state_es_tf 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 457 -2700 \N \N \N \N f state_es_sg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 458 -2701 \N \N \N \N f state_es_se 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 459 -2702 \N \N \N \N f state_es_so 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 460 -2703 \N \N \N \N f state_es_t 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 461 -2704 \N \N \N \N f state_es_te 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 462 -2705 \N \N \N \N f state_es_to 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 463 -2706 \N \N \N \N f state_es_v 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 464 -2707 \N \N \N \N f state_es_va 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 465 -2708 \N \N \N \N f state_es_bi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 466 -2709 \N \N \N \N f state_es_za 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 467 -2710 \N \N \N \N f state_es_z 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 468 -2711 \N \N \N \N f state_my_jhr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 469 -2712 \N \N \N \N f state_my_kdh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 470 -2713 \N \N \N \N f state_my_ktn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 471 -2714 \N \N \N \N f state_my_kul 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 472 -2715 \N \N \N \N f state_my_lbn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 473 -2716 \N \N \N \N f state_my_mlk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 474 -2717 \N \N \N \N f state_my_nsn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 475 -2718 \N \N \N \N f state_my_phg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 476 -2719 \N \N \N \N f state_my_prk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 477 -2720 \N \N \N \N f state_my_pls 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 478 -2721 \N \N \N \N f state_my_png 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 479 -2722 \N \N \N \N f state_my_pjy 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 480 -2723 \N \N \N \N f state_my_sbh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 481 -2724 \N \N \N \N f state_my_swk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 482 -2725 \N \N \N \N f state_my_sgr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 483 -2726 \N \N \N \N f state_my_trg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 484 -2727 \N \N \N \N f state_mx_ags 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 485 -2728 \N \N \N \N f state_mx_bc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 486 -2729 \N \N \N \N f state_mx_bcs 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 487 -2730 \N \N \N \N f state_mx_chih 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 488 -2731 \N \N \N \N f state_mx_col 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 489 -2732 \N \N \N \N f state_mx_camp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 490 -2733 \N \N \N \N f state_mx_coah 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 491 -2734 \N \N \N \N f state_mx_chis 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 492 -2735 \N \N \N \N f state_mx_df 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 493 -2736 \N \N \N \N f state_mx_dgo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 494 -2737 \N \N \N \N f state_mx_gro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 495 -2738 \N \N \N \N f state_mx_gto 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 496 -2739 \N \N \N \N f state_mx_hgo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 497 -2740 \N \N \N \N f state_mx_jal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 498 -2741 \N \N \N \N f state_mx_mich 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 499 -2742 \N \N \N \N f state_mx_mor 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 500 -2743 \N \N \N \N f state_mx_mex 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 501 -2744 \N \N \N \N f state_mx_nay 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 502 -2745 \N \N \N \N f state_mx_nl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 503 -2746 \N \N \N \N f state_mx_oax 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 504 -2747 \N \N \N \N f state_mx_pue 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 505 -2748 \N \N \N \N f state_mx_q roo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 506 -2749 \N \N \N \N f state_mx_qro 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 507 -2750 \N \N \N \N f state_mx_sin 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 508 -2751 \N \N \N \N f state_mx_slp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 509 -2752 \N \N \N \N f state_mx_son 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 510 -2753 \N \N \N \N f state_mx_tab 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 511 -2754 \N \N \N \N f state_mx_tlax 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 512 -2755 \N \N \N \N f state_mx_tamps 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 513 -2756 \N \N \N \N f state_mx_ver 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 514 -2757 \N \N \N \N f state_mx_yuc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 515 -2758 \N \N \N \N f state_mx_zac 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 516 -2759 \N \N \N \N f state_nz_auk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 517 -2760 \N \N \N \N f state_nz_bop 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 518 -2761 \N \N \N \N f state_nz_can 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 519 -2762 \N \N \N \N f state_nz_gis 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 520 -2763 \N \N \N \N f state_nz_hkb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 521 -2764 \N \N \N \N f state_nz_mwt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 522 -2765 \N \N \N \N f state_nz_mbh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 523 -2766 \N \N \N \N f state_nz_nsn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 524 -2767 \N \N \N \N f state_nz_ntl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 525 -2768 \N \N \N \N f state_nz_ota 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 526 -2769 \N \N \N \N f state_nz_stl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 527 -2770 \N \N \N \N f state_nz_tki 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 528 -2771 \N \N \N \N f state_nz_tas 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 529 -2772 \N \N \N \N f state_nz_wko 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 530 -2773 \N \N \N \N f state_nz_wgn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 531 -2774 \N \N \N \N f state_nz_wtc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 532 -2775 \N \N \N \N f state_ca_ab 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 533 -2776 \N \N \N \N f state_ca_bc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 534 -2777 \N \N \N \N f state_ca_mb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 535 -2778 \N \N \N \N f state_ca_nb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 536 -2779 \N \N \N \N f state_ca_nl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 537 -2780 \N \N \N \N f state_ca_nt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 538 -2781 \N \N \N \N f state_ca_ns 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 539 -2782 \N \N \N \N f state_ca_nu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 540 -2783 \N \N \N \N f state_ca_on 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 541 -2784 \N \N \N \N f state_ca_pe 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 542 -2785 \N \N \N \N f state_ca_qc 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 543 -2786 \N \N \N \N f state_ca_sk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 544 -2787 \N \N \N \N f state_ca_yt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 545 -2788 \N \N \N \N f state_ae_az 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 546 -2789 \N \N \N \N f state_ae_aj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 547 -2790 \N \N \N \N f state_ae_du 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 548 -2791 \N \N \N \N f state_ae_fu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 549 -2792 \N \N \N \N f state_ae_rk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 550 -2793 \N \N \N \N f state_ae_sh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 551 -2794 \N \N \N \N f state_ae_uq 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 552 -2795 \N \N \N \N f state_ar_c 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 553 -2796 \N \N \N \N f state_ar_b 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 554 -2797 \N \N \N \N f state_ar_k 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 555 -2798 \N \N \N \N f state_ar_h 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 556 -2799 \N \N \N \N f state_ar_u 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 557 -2800 \N \N \N \N f state_ar_x 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 558 -2801 \N \N \N \N f state_ar_w 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 559 -2802 \N \N \N \N f state_ar_e 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 560 -2803 \N \N \N \N f state_ar_p 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 561 -2804 \N \N \N \N f state_ar_y 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 562 -2805 \N \N \N \N f state_ar_l 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 563 -2806 \N \N \N \N f state_ar_f 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 564 -2807 \N \N \N \N f state_ar_m 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 565 -2808 \N \N \N \N f state_ar_n 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 566 -2809 \N \N \N \N f state_ar_q 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 567 -2810 \N \N \N \N f state_ar_r 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 568 -2811 \N \N \N \N f state_ar_a 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 569 -2812 \N \N \N \N f state_ar_j 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 570 -2813 \N \N \N \N f state_ar_d 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 571 -2814 \N \N \N \N f state_ar_z 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 572 -2815 \N \N \N \N f state_ar_s 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 573 -2816 \N \N \N \N f state_ar_g 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 574 -2817 \N \N \N \N f state_ar_v 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 575 -2818 \N \N \N \N f state_ar_t 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 576 -2819 \N \N \N \N f state_in_an 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 577 -2820 \N \N \N \N f state_in_ap 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 578 -2821 \N \N \N \N f state_in_ar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 579 -2822 \N \N \N \N f state_in_as 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 580 -2823 \N \N \N \N f state_in_br 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 581 -2824 \N \N \N \N f state_in_ch 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 582 -2825 \N \N \N \N f state_in_cg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 583 -2826 \N \N \N \N f state_in_dn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 584 -2827 \N \N \N \N f state_in_dd 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 585 -2828 \N \N \N \N f state_in_dl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 586 -2829 \N \N \N \N f state_in_ga 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 587 -2830 \N \N \N \N f state_in_gj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 588 -2831 \N \N \N \N f state_in_hr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 589 -2832 \N \N \N \N f state_in_hp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 590 -2833 \N \N \N \N f state_in_jk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 591 -2834 \N \N \N \N f state_in_jh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 592 -2835 \N \N \N \N f state_in_ka 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 593 -2836 \N \N \N \N f state_in_kl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 594 -2837 \N \N \N \N f state_in_ld 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 595 -2838 \N \N \N \N f state_in_mp 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 596 -2839 \N \N \N \N f state_in_mh 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 597 -2840 \N \N \N \N f state_in_mn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 598 -2841 \N \N \N \N f state_in_ml 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 599 -2842 \N \N \N \N f state_in_mz 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 600 -2843 \N \N \N \N f state_in_nl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 601 -2844 \N \N \N \N f state_in_or 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 602 -2845 \N \N \N \N f state_in_py 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 603 -2846 \N \N \N \N f state_in_pb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 604 -2847 \N \N \N \N f state_in_rj 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 605 -2848 \N \N \N \N f state_in_sk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 606 -2849 \N \N \N \N f state_in_tn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 607 -2850 \N \N \N \N f state_in_ts 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 608 -2851 \N \N \N \N f state_in_tr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 609 -2852 \N \N \N \N f state_in_up 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 610 -2853 \N \N \N \N f state_in_uk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 611 -2854 \N \N \N \N f state_in_wb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 612 -2855 \N \N \N \N f state_id_ac 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 613 -2856 \N \N \N \N f state_id_ba 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 614 -2857 \N \N \N \N f state_id_bb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 615 -2858 \N \N \N \N f state_id_bt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 616 -2859 \N \N \N \N f state_id_be 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 617 -2860 \N \N \N \N f state_id_go 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 618 -2861 \N \N \N \N f state_id_jk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 619 -2862 \N \N \N \N f state_id_ja 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 620 -2863 \N \N \N \N f state_id_jb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 621 -2864 \N \N \N \N f state_id_jt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 622 -2865 \N \N \N \N f state_id_ji 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 623 -2866 \N \N \N \N f state_id_kb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 624 -2867 \N \N \N \N f state_id_ks 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 625 -2868 \N \N \N \N f state_id_kt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 626 -2869 \N \N \N \N f state_id_ki 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 627 -2870 \N \N \N \N f state_id_ku 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 628 -2871 \N \N \N \N f state_id_kr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 629 -2872 \N \N \N \N f state_id_la 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 630 -2873 \N \N \N \N f state_id_ma 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 631 -2874 \N \N \N \N f state_id_mu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 632 -2875 \N \N \N \N f state_id_nb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 633 -2876 \N \N \N \N f state_id_nt 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 634 -2877 \N \N \N \N f state_id_pa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 635 -2878 \N \N \N \N f state_id_pb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 636 -2879 \N \N \N \N f state_id_ri 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 637 -2880 \N \N \N \N f state_id_sr 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 638 -2881 \N \N \N \N f state_id_sn 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 639 -2882 \N \N \N \N f state_id_st 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 640 -2883 \N \N \N \N f state_id_sg 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 641 -2884 \N \N \N \N f state_id_sa 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 642 -2885 \N \N \N \N f state_id_sb 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 643 -2886 \N \N \N \N f state_id_ss 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 644 -2887 \N \N \N \N f state_id_su 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 645 -2888 \N \N \N \N f state_id_yo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 646 -2889 \N \N \N \N f state_co_01 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 647 -2890 \N \N \N \N f state_co_02 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 648 -2891 \N \N \N \N f state_co_03 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 649 -2892 \N \N \N \N f state_co_04 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 650 -2893 \N \N \N \N f state_co_05 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 651 -2894 \N \N \N \N f state_co_06 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 652 -2895 \N \N \N \N f state_co_07 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 653 -2896 \N \N \N \N f state_co_08 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 654 -2897 \N \N \N \N f state_co_09 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 655 -2898 \N \N \N \N f state_co_10 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 656 -2899 \N \N \N \N f state_co_11 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 657 -2900 \N \N \N \N f state_co_12 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 658 -2901 \N \N \N \N f state_co_13 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 659 -2902 \N \N \N \N f state_co_14 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 660 -2903 \N \N \N \N f state_co_15 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 661 -2904 \N \N \N \N f state_co_16 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 662 -2905 \N \N \N \N f state_co_17 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 663 -2906 \N \N \N \N f state_co_18 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 664 -2907 \N \N \N \N f state_co_19 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 665 -2908 \N \N \N \N f state_co_20 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 666 -2909 \N \N \N \N f state_co_21 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 667 -2910 \N \N \N \N f state_co_22 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 668 -2911 \N \N \N \N f state_co_23 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 669 -2912 \N \N \N \N f state_co_24 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 670 -2913 \N \N \N \N f state_co_25 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 671 -2914 \N \N \N \N f state_co_26 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 672 -2915 \N \N \N \N f state_co_27 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 673 -2916 \N \N \N \N f state_co_28 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 674 -2917 \N \N \N \N f state_co_29 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 675 -2918 \N \N \N \N f state_co_30 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 676 -2919 \N \N \N \N f state_co_31 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 677 -2920 \N \N \N \N f state_co_32 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 678 -2921 \N \N \N \N f state_co_33 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 679 -2922 \N \N \N \N f state_mn_01 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 680 -2923 \N \N \N \N f state_mn_02 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 681 -2924 \N \N \N \N f state_mn_03 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 682 -2925 \N \N \N \N f state_mn_04 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 683 -2926 \N \N \N \N f state_mn_05 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 684 -2927 \N \N \N \N f state_mn_06 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 685 -2928 \N \N \N \N f state_mn_07 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 686 -2929 \N \N \N \N f state_mn_08 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 687 -2930 \N \N \N \N f state_mn_09 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 688 -2931 \N \N \N \N f state_mn_10 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 689 -2932 \N \N \N \N f state_mn_11 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 690 -2933 \N \N \N \N f state_mn_12 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 691 -2934 \N \N \N \N f state_mn_13 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 692 -2935 \N \N \N \N f state_mn_14 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 693 -2936 \N \N \N \N f state_mn_15 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 694 -2937 \N \N \N \N f state_mn_16 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 695 -2938 \N \N \N \N f state_mn_17 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 696 -2939 \N \N \N \N f state_mn_18 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 697 -2940 \N \N \N \N f state_mn_19 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 698 -2941 \N \N \N \N f state_mn_20 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 699 -2942 \N \N \N \N f state_mn_23 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 700 -2943 \N \N \N \N f state_mn_24 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 701 -2944 \N \N \N \N f state_mn_25 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 702 -2945 \N \N \N \N f state_mn_26 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 703 -2946 \N \N \N \N f state_mn_27 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 704 -2947 \N \N \N \N f state_mn_28 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 705 -2948 \N \N \N \N f state_mn_29 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 706 -2949 \N \N \N \N f state_mn_32 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 707 -2950 \N \N \N \N f state_mn_34 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 708 -2951 \N \N \N \N f state_mn_35 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.country.state 709 -2952 \N \N \N \N f action_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 4 -2953 \N \N \N \N f action_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 5 -2954 \N \N \N \N f action_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 6 -2955 \N \N \N \N f ir_sequence_actions 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 4 -2956 \N \N \N \N f next_id_6 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 19 -2957 \N \N \N \N f menu_ir_sequence_actions 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 20 -2958 \N \N \N \N f act_report_xml_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 7 -2959 \N \N \N \N f act_report_xml_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 8 -2960 \N \N \N \N f act_report_xml_search_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 9 -2961 \N \N \N \N f ir_action_report 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 5 -2962 \N \N \N \N f menu_ir_action_report 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 21 -2963 \N \N \N \N f view_window_action_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 10 -2964 \N \N \N \N f view_window_action_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 11 -2965 \N \N \N \N f view_window_action_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 12 -2966 \N \N \N \N f ir_action_window 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 6 -2967 \N \N \N \N f ir_action_window_view1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 1 -2968 \N \N \N \N f ir_action_window_view2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 2 -2969 \N \N \N \N f menu_ir_action_window 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 22 -2970 \N \N \N \N f view_server_action_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 13 -2971 \N \N \N \N f view_server_action_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 14 -2972 \N \N \N \N f view_server_action_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 15 -2973 \N \N \N \N f action_server_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 7 -2974 \N \N \N \N f menu_server_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 23 -2975 \N \N \N \N f ir_actions_todo_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 16 -2976 \N \N \N \N f config_wizard_step_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 17 -2977 \N \N \N \N f config_wizard_step_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 18 -2978 \N \N \N \N f act_ir_actions_todo_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 8 -2979 \N \N \N \N f menu_ir_actions_todo_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 24 -2980 \N \N \N \N f action_run_ir_action_todo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.server 9 -2981 \N \N \N \N f view_ir_config_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 19 -2982 \N \N \N \N f view_ir_config_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 20 -2983 \N \N \N \N f view_ir_config_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 21 -2984 \N \N \N \N f ir_config_list_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 10 -2985 \N \N \N \N f ir_config_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 25 -2986 \N \N \N \N f ir_cron_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 22 -2987 \N \N \N \N f ir_cron_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 23 -2988 \N \N \N \N f ir_cron_view_calendar 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 24 -2989 \N \N \N \N f ir_cron_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 25 -2990 \N \N \N \N f ir_cron_act 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 11 -2991 \N \N \N \N f menu_ir_cron_act 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 26 -2992 \N \N \N \N f ir_filters_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 26 -2993 \N \N \N \N f ir_filters_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 27 -2994 \N \N \N \N f ir_filters_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 28 -2995 \N \N \N \N f actions_ir_filters_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 12 -2996 \N \N \N \N f menu_ir_filters 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 27 -2997 \N \N \N \N f ir_mail_server_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 29 -2998 \N \N \N \N f ir_mail_server_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 30 -2999 \N \N \N \N f view_ir_mail_server_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 31 -3000 \N \N \N \N f action_ir_mail_server_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 13 -3001 \N \N \N \N f menu_mail_servers 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 28 -3002 \N \N \N \N f view_model_menu_create 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 32 -3003 \N \N \N \N f act_menu_create 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 14 -3004 \N \N \N \N f view_model_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 33 -3005 \N \N \N \N f view_model_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 34 -3006 \N \N \N \N f view_model_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 35 -3007 \N \N \N \N f action_model_model 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 15 -3008 \N \N \N \N f ir_model_model_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 29 -3009 \N \N \N \N f view_model_fields_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 36 -3010 \N \N \N \N f view_model_fields_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 37 -3011 \N \N \N \N f view_model_fields_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 38 -3012 \N \N \N \N f action_model_fields 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 16 -3013 \N \N \N \N f ir_model_model_fields 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 30 -3014 \N \N \N \N f view_model_data_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 39 -3015 \N \N \N \N f view_model_data_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 40 -3016 \N \N \N \N f view_model_data_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 41 -3017 \N \N \N \N f action_model_data 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 17 -3018 \N \N \N \N f next_id_5 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 31 -3019 \N \N \N \N f ir_model_data_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 32 -3020 \N \N \N \N f view_model_constraint_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 42 -3021 \N \N \N \N f view_model_constraint_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 43 -3022 \N \N \N \N f action_model_constraint 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 18 -3023 \N \N \N \N f ir_model_constraint_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 33 -3024 \N \N \N \N f view_model_relation_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 44 -3025 \N \N \N \N f view_model_relation_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 45 -3026 \N \N \N \N f action_model_relation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 19 -3027 \N \N \N \N f ir_model_relation_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 34 -3028 \N \N \N \N f ir_access_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 46 -3029 \N \N \N \N f ir_access_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 47 -3030 \N \N \N \N f ir_access_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 48 -3031 \N \N \N \N f ir_access_act 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 20 -3032 \N \N \N \N f menu_ir_access_act 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 35 -3033 \N \N \N \N f view_attachment_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 49 -3034 \N \N \N \N f view_attachment_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 50 -3035 \N \N \N \N f view_attachment_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 51 -3036 \N \N \N \N f action_attachment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 21 -3037 \N \N \N \N f menu_action_attachment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 36 -3038 \N \N \N \N f view_rule_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 52 -3039 \N \N \N \N f view_rule_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 53 -3040 \N \N \N \N f view_rule_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 54 -3041 \N \N \N \N f action_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 22 -3042 \N \N \N \N f menu_action_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 37 -3043 \N \N \N \N f property_rule 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.rule 20 -3044 \N \N \N \N f sequence_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 55 -3045 \N \N \N \N f sequence_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 56 -3046 \N \N \N \N f view_sequence_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 57 -3047 \N \N \N \N f ir_sequence_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 23 -3048 \N \N \N \N f menu_ir_sequence_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 38 -3049 \N \N \N \N f view_translation_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 58 -3050 \N \N \N \N f view_translation_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 59 -3051 \N \N \N \N f view_translation_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 60 -3052 \N \N \N \N f view_translation_dialog_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 61 -3053 \N \N \N \N f action_translation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 24 -3054 \N \N \N \N f menu_action_translation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 39 -3055 \N \N \N \N f view_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 62 -3056 \N \N \N \N f edit_menu_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 63 -3057 \N \N \N \N f edit_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 64 -3058 \N \N \N \N f edit_menu_access_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 65 -3059 \N \N \N \N f grant_menu_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 25 -3060 \N \N \N \N f menu_grant_menu_access 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 40 -3061 \N \N \N \N f view_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 66 -3062 \N \N \N \N f view_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 67 -3063 \N \N \N \N f view_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 68 -3064 \N \N \N \N f action_ui_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 26 -3065 \N \N \N \N f menu_action_ui_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 41 -3066 \N \N \N \N f view_view_custom_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 69 -3067 \N \N \N \N f view_view_custom_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 70 -3068 \N \N \N \N f view_view_custom_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 71 -3069 \N \N \N \N f action_ui_view_custom 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 27 -3070 \N \N \N \N f menu_action_ui_view_custom 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 42 -3071 \N \N \N \N f ir_default_form_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 72 -3072 \N \N \N \N f ir_default_tree_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 73 -3073 \N \N \N \N f ir_default_search_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 74 -3074 \N \N \N \N f ir_default_menu_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 28 -3075 \N \N \N \N f ir_default_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 43 -3076 \N \N \N \N f autovacuum_job_ir_actions_server 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.server 29 -3077 \N \N \N \N f autovacuum_job 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.cron 1 -3078 \N \N \N \N f report_ir_model_overview 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.report 30 -3079 \N \N \N \N f report_irmodeloverview 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 75 -3080 \N \N \N \N f ir_logging_form_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 76 -3081 \N \N \N \N f ir_logging_tree_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 77 -3082 \N \N \N \N f ir_logging_search_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 78 -3083 \N \N \N \N f ir_logging_all_act 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 31 -3084 \N \N \N \N f ir_logging_all_menu 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 44 -3086 \N \N \N \N f contact 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 80 -3087 \N \N \N \N f view_module_category_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 81 -3088 \N \N \N \N f view_module_category_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 82 -3089 \N \N \N \N f view_module_filter 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 83 -3090 \N \N \N \N f module_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 84 -3091 \N \N \N \N f module_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 85 -3092 \N \N \N \N f module_view_kanban 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 86 -3093 \N \N \N \N f open_module_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 32 -3094 \N \N \N \N f menu_module_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 45 -3095 \N \N \N \N f modules_act_cl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.client 33 -3096 \N \N \N \N f module_mi 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 46 -3097 \N \N \N \N f modules_updates_act_cl 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.client 34 -3098 \N \N \N \N f menu_module_updates 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 47 -8 \N \N \N \N \N module_category_hidden \N 2020-10-28 19:00:42.694321 base ir.module.category 2 -51 \N \N \N \N \N module_category_localization \N 2020-10-28 19:00:42.694321 base ir.module.category 14 -3101 \N \N \N \N f module_category_localization_account_charts 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 30 -3102 \N \N \N \N f module_category_sales_management 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 31 -3103 \N \N \N \N f module_category_lead_automation 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 32 -3104 \N \N \N \N f module_category_project_management 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 33 -3105 \N \N \N \N f module_category_warehouse_management 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 34 -138 \N \N \N \N \N module_category_manufacturing \N 2020-10-28 19:00:42.694321 base ir.module.category 25 -3107 \N \N \N \N f module_category_account_voucher 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 35 -3108 \N \N \N \N f module_category_accounting_and_finance 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 36 -3109 \N \N \N \N f module_category_purchase_management 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 37 -3110 \N \N \N \N f module_category_user_type 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 38 -38 \N \N \N \N \N module_category_human_resources \N 2020-10-28 19:00:42.694321 base ir.module.category 11 -3112 \N \N \N \N f module_category_hr_holidays 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 39 -3113 \N \N \N \N f module_category_hr_contract 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 40 -3114 \N \N \N \N f module_category_hr_recruitment 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 41 -3115 \N \N \N \N f module_category_hr_expense 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 42 -3116 \N \N \N \N f module_category_hr_timesheet 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 43 -3117 \N \N \N \N f module_category_hr_attendance 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 44 -3118 \N \N \N \N f module_category_hr_appraisal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 45 -3119 \N \N \N \N f module_category_hr_payroll 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 46 -3120 \N \N \N \N f module_category_hr_gamification 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 47 -3121 \N \N \N \N f module_category_event_management 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 48 -3122 \N \N \N \N f module_category_mass_mailing 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 49 -3123 \N \N \N \N f module_category_survey 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 50 -3124 \N \N \N \N f module_category_point_of_sale 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 51 -3125 \N \N \N \N f module_category_specific_industry_applications 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 52 -6 \N \N \N \N \N module_category_website \N 2020-10-28 19:00:42.694321 base ir.module.category 1 -3127 \N \N \N \N f module_category_sign 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 53 -3128 \N \N \N \N f module_category_helpdesk 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 54 -121 \N \N \N \N \N module_category_theme \N 2020-10-28 19:00:42.694321 base ir.module.category 23 -3130 \N \N \N \N f module_category_administration 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 55 -3131 \N \N \N \N f module_category_usability 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 56 -3132 \N \N \N \N f module_category_extra 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.module.category 57 -2179 \N \N \N \N f group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 2 -2180 \N \N \N \N f group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 3 -5 \N \N \N \N t group_user \N 2020-10-28 19:00:42.694321 base res.groups 1 -2184 \N \N \N \N f group_multi_company 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 4 -2185 \N \N \N \N f group_multi_currency 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 5 -2192 \N \N \N \N f group_portal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 9 -2193 \N \N \N \N f group_public 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 10 -2188 \N \N \N \N f group_partner_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 7 -3176 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 t module_website_twitter_wall 2020-10-28 19:00:56 2020-10-28 19:00:42.694321 base ir.module.module 245 -3178 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 t module_website_form_editor 2020-10-28 19:00:56 2020-10-28 19:00:42.694321 base ir.module.module 246 -3180 \N \N \N \N f ir_module_reference_print 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.report 35 -3181 \N \N \N \N f report_irmodulereference 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 87 -3182 \N \N \N \N f view_base_module_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 88 -3183 \N \N \N \N f action_view_base_module_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 36 -3184 \N \N \N \N f menu_view_base_module_update 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 48 -3185 \N \N \N \N f view_base_language_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 89 -3186 \N \N \N \N f action_view_base_language_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 37 -3187 \N \N \N \N f menu_view_base_language_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 49 -3188 \N \N \N \N f view_base_import_language 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 90 -3189 \N \N \N \N f action_view_base_import_language 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 38 -3190 \N \N \N \N f menu_view_base_import_language 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 50 -3191 \N \N \N \N f view_base_module_upgrade 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 91 -3192 \N \N \N \N f action_view_base_module_upgrade 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 39 -3193 \N \N \N \N f menu_view_base_module_upgrade 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 51 -3194 \N \N \N \N f view_base_module_upgrade_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 92 -3195 \N \N \N \N f action_view_base_module_upgrade_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 40 -3196 \N \N \N \N f view_base_module_uninstall 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 93 -3197 \N \N \N \N f wizard_lang_export 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 94 -3198 \N \N \N \N f action_wizard_lang_export 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 41 -3199 \N \N \N \N f menu_wizard_lang_export 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 52 -3200 \N \N \N \N f wizard_update_translations 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 95 -3201 \N \N \N \N f action_wizard_update_translations 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 42 -3202 \N \N \N \N f menu_wizard_update_translations 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 53 -3203 \N \N \N \N f action_partner_deduplicate 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 43 -3204 \N \N \N \N f base_partner_merge_automatic_wizard_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 96 -3205 \N \N \N \N f action_partner_merge 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 44 -3206 \N \N \N \N f action_server_module_immediate_install 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.server 45 -3207 \N \N \N \N f demo_failure_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.server 46 -3208 \N \N \N \N f demo_failures_dialog 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 97 -3209 \N \N \N \N f demo_failure_todo 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.todo 2 -3210 \N \N \N \N f view_company_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 98 -3211 \N \N \N \N f view_company_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 99 -3212 \N \N \N \N f view_res_company_kanban 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 100 -3213 \N \N \N \N f company_normal_action_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 47 -3214 \N \N \N \N f action_res_company_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 48 -3215 \N \N \N \N f menu_action_res_company_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 54 -3216 \N \N \N \N f view_company_report_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 101 -3217 \N \N \N \N f view_company_report_form_with_print 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 102 -3218 \N \N \N \N f view_company_document_template_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 103 -3219 \N \N \N \N f res_lang_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 104 -3220 \N \N \N \N f res_lang_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 105 -3221 \N \N \N \N f res_lang_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 106 -3222 \N \N \N \N f res_lang_act_window 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 49 -3223 \N \N \N \N f menu_res_lang_act_window 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 55 -3224 \N \N \N \N f view_partner_title_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 107 -3225 \N \N \N \N f view_partner_title_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 108 -3226 \N \N \N \N f action_partner_title_contact 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 50 -3227 \N \N \N \N f view_partner_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 109 -3228 \N \N \N \N f view_partner_simple_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 110 -3229 \N \N \N \N f view_partner_address_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 111 -3230 \N \N \N \N f view_partner_short_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 112 -3231 \N \N \N \N f view_partner_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 113 -3232 \N \N \N \N f res_partner_view_form_private 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 114 -3233 \N \N \N \N f view_res_partner_filter 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 115 -3234 \N \N \N \N f res_partner_kanban_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 116 -3235 \N \N \N \N f action_partner_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 51 -3236 \N \N \N \N f action_partner_form_view1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 3 -3237 \N \N \N \N f action_partner_form_view2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 4 -3238 \N \N \N \N f action_partner_tree_view1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 5 -3239 \N \N \N \N f action_partner_customer_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 52 -3240 \N \N \N \N f action_partner_customer_form_view1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 6 -3241 \N \N \N \N f action_partner_customer_form_view2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 7 -3242 \N \N \N \N f action_partner_customer_form_view3 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 8 -3243 \N \N \N \N f action_partner_supplier_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 53 -3244 \N \N \N \N f action_partner_vendor_form_view1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 9 -3245 \N \N \N \N f action_partner_vendor_form_view2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 10 -3246 \N \N \N \N f action_partner_vendor_form_view3 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 11 -3247 \N \N \N \N f action_partner_employee_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 54 -3248 \N \N \N \N f action_partner_other_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 55 -3249 \N \N \N \N f view_partner_category_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 117 -3250 \N \N \N \N f view_partner_category_list 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 118 -3251 \N \N \N \N f action_partner_category_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 56 -3252 \N \N \N \N f res_partner_industry_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 119 -3253 \N \N \N \N f res_partner_industry_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 120 -3254 \N \N \N \N f res_partner_industry_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 57 -3255 \N \N \N \N f view_res_bank_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 121 -3256 \N \N \N \N f view_res_bank_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 122 -3257 \N \N \N \N f action_res_bank_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 58 -3258 \N \N \N \N f view_partner_bank_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 123 -3259 \N \N \N \N f view_partner_bank_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 124 -3260 \N \N \N \N f view_partner_bank_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 125 -3261 \N \N \N \N f action_res_partner_bank_account_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 59 -3262 \N \N \N \N f view_country_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 126 -3263 \N \N \N \N f view_country_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 127 -3264 \N \N \N \N f action_country 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 60 -3265 \N \N \N \N f view_country_group_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 128 -3266 \N \N \N \N f view_country_group_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 129 -3267 \N \N \N \N f action_country_group 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 61 -3268 \N \N \N \N f view_country_state_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 130 -3269 \N \N \N \N f view_country_state_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 131 -3270 \N \N \N \N f action_country_state 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 62 -3271 \N \N \N \N f view_currency_rate_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 132 -3272 \N \N \N \N f view_currency_rate_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 133 -3273 \N \N \N \N f view_currency_rate_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 134 -3274 \N \N \N \N f act_view_currency_rates 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 63 -3275 \N \N \N \N f view_currency_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 135 -3276 \N \N \N \N f view_currency_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 136 -3277 \N \N \N \N f view_currency_kanban 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 137 -3278 \N \N \N \N f view_currency_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 138 -3279 \N \N \N \N f action_currency_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 64 -3280 \N \N \N \N f action_currency_all_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 65 -3281 \N \N \N \N f change_password_wizard_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 139 -3282 \N \N \N \N f change_password_wizard_user_tree_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 140 -3283 \N \N \N \N f change_password_wizard_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 66 -3284 \N \N \N \N f view_groups_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 141 -3285 \N \N \N \N f view_groups_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 142 -3286 \N \N \N \N f action_res_groups 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 67 -3287 \N \N \N \N f menu_action_res_groups 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 56 -3288 \N \N \N \N f view_users_simple_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 143 -3289 \N \N \N \N f view_users_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 144 -3290 \N \N \N \N f view_users_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 145 -3291 \N \N \N \N f view_res_users_kanban 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 146 -3292 \N \N \N \N f view_users_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 147 -3293 \N \N \N \N f user_groups_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 148 -2186 \N \N \N \N f group_no_one 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base res.groups 6 -3295 \N \N \N \N f action_res_users 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 68 -3296 \N \N \N \N f action_res_users_view1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 12 -3297 \N \N \N \N f action_res_users_view2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 13 -3298 \N \N \N \N f menu_action_res_users 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 57 -3299 \N \N \N \N f view_users_form_simple_modif 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 149 -3300 \N \N \N \N f action_res_users_my 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 69 -3301 \N \N \N \N f action_res_users_my_view2 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window.view 14 -3302 \N \N \N \N f ir_property_view_search 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 150 -3303 \N \N \N \N f ir_property_view 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 151 -3304 \N \N \N \N f ir_property_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 152 -3305 \N \N \N \N f ir_property_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 70 -3306 \N \N \N \N f menu_ir_property_form_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 58 -3307 \N \N \N \N f res_config_settings_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 153 -3308 \N \N \N \N f res_config_setting_act_window 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 71 -3309 \N \N \N \N f paperformat_view_tree 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 154 -3310 \N \N \N \N f paperformat_view_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 155 -3311 \N \N \N \N f paper_format_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 72 -3312 \N \N \N \N f reports_action 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 73 -3313 \N \N \N \N f reporting_menuitem 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 59 -3314 \N \N \N \N f paper_format_menuitem 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 60 -3315 \N \N \N \N f reports_menuitem 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.menu 61 -3316 \N \N \N \N f onboarding_container 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 156 -3317 \N \N \N \N f onboarding_step 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 157 -3318 \N \N \N \N f onboarding_confetti 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 158 -3319 \N \N \N \N f onboarding_company_step 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 159 -3320 \N \N \N \N f base_onboarding_company_form 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.ui.view 160 -3321 \N \N \N \N f action_open_base_onboarding_company 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.actions.act_window 74 -3322 \N \N \N \N f access_ir_attachment_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 1 -3323 \N \N \N \N f access_ir_attachment_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 2 -3324 \N \N \N \N f access_ir_attachment_portal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 3 -3325 \N \N \N \N f access_ir_cron_group_cron 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 4 -3326 \N \N \N \N f access_ir_exports_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 5 -3327 \N \N \N \N f access_ir_exports_line_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 6 -3328 \N \N \N \N f access_ir_model_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 7 -3329 \N \N \N \N f access_ir_model_constraint_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 8 -3330 \N \N \N \N f access_ir_model_relation_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 9 -3331 \N \N \N \N f access_ir_model_access_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 10 -3332 \N \N \N \N f access_ir_model_data_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 11 -3333 \N \N \N \N f access_ir_model_fields_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 12 -3334 \N \N \N \N f access_ir_model_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 13 -3335 \N \N \N \N f access_ir_model_data_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 14 -3336 \N \N \N \N f access_ir_model_fields_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 15 -3337 \N \N \N \N f access_ir_module_category_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 16 -3338 \N \N \N \N f access_ir_module_module_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 17 -3339 \N \N \N \N f access_ir_module_module_dependency_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 18 -3340 \N \N \N \N f access_ir_module_module_exclusion_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 19 -3341 \N \N \N \N f access_ir_property_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 20 -3342 \N \N \N \N f access_ir_property_group_user_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 21 -3343 \N \N \N \N f access_ir_rule_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 22 -3344 \N \N \N \N f access_ir_sequence_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 23 -3345 \N \N \N \N f access_ir_sequence_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 24 -3346 \N \N \N \N f access_ir_sequence_date_range_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 25 -3347 \N \N \N \N f access_ir_sequence_date_range_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 26 -3348 \N \N \N \N f access_ir_translation_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 27 -3349 \N \N \N \N f access_ir_translation_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 28 -3350 \N \N \N \N f access_ir_ui_menu_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 29 -3351 \N \N \N \N f access_ir_ui_menu_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 30 -3352 \N \N \N \N f access_ir_ui_view_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 31 -3353 \N \N \N \N f access_ir_ui_view_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 32 -3354 \N \N \N \N f access_ir_ui_view_custom_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 33 -3355 \N \N \N \N f access_ir_default_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 34 -3356 \N \N \N \N f access_ir_default_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 35 -3357 \N \N \N \N f access_ir_default_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 36 -3358 \N \N \N \N f access_res_company_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 37 -3359 \N \N \N \N f access_res_company_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 38 -3360 \N \N \N \N f access_res_country_group_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 39 -3361 \N \N \N \N f access_res_country_state_group_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 40 -3743 \N \N \N \N \N model_web_tour_tour 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model 119 -3362 \N \N \N \N f access_res_country_group_group_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 41 -3363 \N \N \N \N f access_res_country_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 42 -3364 \N \N \N \N f access_res_country_state_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 43 -3365 \N \N \N \N f access_res_country_group_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 44 -3366 \N \N \N \N f access_res_currency_group_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 45 -3367 \N \N \N \N f access_res_currency_rate_group_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 46 -3368 \N \N \N \N f access_res_currency_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 47 -3369 \N \N \N \N f access_res_currency_rate_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 48 -3370 \N \N \N \N f access_res_groups_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 49 -3371 \N \N \N \N f access_res_groups_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 50 -3372 \N \N \N \N f access_res_lang_group_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 51 -3373 \N \N \N \N f access_res_lang_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 52 -3374 \N \N \N \N f access_res_partner_public 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 53 -3375 \N \N \N \N f access_res_partner_portal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 54 -3376 \N \N \N \N f access_res_partner_group_partner_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 55 -3377 \N \N \N \N f access_res_partner_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 56 -3378 \N \N \N \N f access_res_partner_bank_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 57 -3379 \N \N \N \N f access_res_partner_bank_group_partner_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 58 -3380 \N \N \N \N f access_res_partner_category_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 59 -3381 \N \N \N \N f access_res_partner_category_group_partner_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 60 -3382 \N \N \N \N f access_res_partner_industry_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 61 -3383 \N \N \N \N f access_res_partner_industry_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 62 -3384 \N \N \N \N f access_res_partner_title_group_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 63 -3385 \N \N \N \N f access_res_partner_title_group_partner_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 64 -3386 \N \N \N \N f access_res_users_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 65 -3387 \N \N \N \N f access_res_users_group_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 66 -3388 \N \N \N \N f access_res_users_log_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 67 -3389 \N \N \N \N f access_ir_actions_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 68 -3390 \N \N \N \N f access_ir_actions_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 69 -3391 \N \N \N \N f access_ir_actions_act_window_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 70 -3392 \N \N \N \N f access_ir_actions_act_window_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 71 -3393 \N \N \N \N f access_ir_actions_act_window_close_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 72 -3394 \N \N \N \N f access_ir_actions_act_window_close_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 73 -3395 \N \N \N \N f access_ir_actions_report_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 74 -3396 \N \N \N \N f access_ir_actions_report_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 75 -3397 \N \N \N \N f access_ir_actions_todo_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 76 -3398 \N \N \N \N f access_ir_actions_act_window_view_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 77 -3399 \N \N \N \N f access_ir_actions_act_window_view_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 78 -3400 \N \N \N \N f access_ir_actions_act_url_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 79 -3401 \N \N \N \N f access_ir_actions_act_url_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 80 -3402 \N \N \N \N f access_ir_server_object_lines_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 81 -3403 \N \N \N \N f access_ir_server_object_lines_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 82 -3404 \N \N \N \N f access_ir_actions_server_all 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 83 -3405 \N \N \N \N f access_ir_actions_server_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 84 -3406 \N \N \N \N f access_res_bank_group_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 85 -3407 \N \N \N \N f access_res_bank_group_partner_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 86 -3408 \N \N \N \N f access_res_bank_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 87 -3409 \N \N \N \N f access_ir_filter_erp_manager 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 88 -3410 \N \N \N \N f access_ir_filter_user 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 89 -3411 \N \N \N \N f access_ir_filter_portal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 90 -3412 \N \N \N \N f access_ir_filter_public 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 91 -3413 \N \N \N \N f access_ir_config_parameter_system 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 92 -3414 \N \N \N \N f access_ir_mail_server 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 93 -3415 \N \N \N \N f access_ir_actions_client 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 94 -3416 \N \N \N \N f access_ir_logging 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 95 -3417 \N \N \N \N f paperformat_access_portal 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 96 -3418 \N \N \N \N f paperformat_access_employee 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 base ir.model.access 97 -3419 \N \N \N \N \N model_ir_qweb_field_image 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model 48 -3420 \N \N \N \N \N model_ir_http 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model 56 -3421 \N \N \N \N \N model_base 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model 1 -3422 \N \N \N \N \N model_report_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model 99 -3423 \N \N \N \N f field_report_layout__view_id 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1267 -3424 \N \N \N \N f field_report_layout__image 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1268 -3425 \N \N \N \N f field_report_layout__pdf 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1269 -3426 \N \N \N \N f field_report_layout__id 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1270 -3427 \N \N \N \N f field_report_layout__display_name 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1271 -3428 \N \N \N \N f field_report_layout__create_uid 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1272 -3429 \N \N \N \N f field_report_layout__create_date 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1273 -3430 \N \N \N \N f field_report_layout__write_uid 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1274 -3431 \N \N \N \N f field_report_layout__write_date 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1275 -3432 \N \N \N \N f field_report_layout____last_update 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.fields 1276 -3433 \N \N \N \N f access_report_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.model.access 98 -3434 \N \N \N \N f _assets_utils 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 161 -3435 \N \N \N \N f _assets_primary_variables 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 162 -3436 \N \N \N \N f _assets_secondary_variables 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 163 -3437 \N \N \N \N f _assets_helpers 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 164 -3438 \N \N \N \N f _assets_backend_helpers 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 165 -3439 \N \N \N \N f _assets_frontend_helpers 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 166 -3440 \N \N \N \N f _assets_bootstrap 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 167 -3441 \N \N \N \N f assets_common 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 168 -3442 \N \N \N \N f assets_backend 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 169 -3443 \N \N \N \N f assets_frontend 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 170 -3444 \N \N \N \N f layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 171 -3445 \N \N \N \N f login_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 172 -3446 \N \N \N \N f login 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 173 -3447 \N \N \N \N f js_tests_assets 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 174 -3448 \N \N \N \N f qunit_suite 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 175 -3449 \N \N \N \N f qunit_mobile_suite 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 176 -3450 \N \N \N \N f benchmark_suite 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 177 -3451 \N \N \N \N f webclient_bootstrap 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 178 -3452 \N \N \N \N f pdf_js_lib 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 179 -3453 \N \N \N \N f report_assets_common 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 180 -3454 \N \N \N \N f report_assets_pdf 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 181 -3455 \N \N \N \N f report_assets_editor 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 182 -3456 \N \N \N \N f report_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 183 -3457 \N \N \N \N f html_container 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 184 -3458 \N \N \N \N f minimal_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 185 -3459 \N \N \N \N f address_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 186 -3460 \N \N \N \N f external_layout_background 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 187 -3461 \N \N \N \N f external_layout_boxed 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 188 -3462 \N \N \N \N f external_layout_clean 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 189 -3463 \N \N \N \N f external_layout_standard 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 190 -3464 \N \N \N \N f external_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 191 -3465 \N \N \N \N f internal_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 192 -3466 \N \N \N \N f basic_layout 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 193 -3467 \N \N \N \N f preview_internalreport 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 194 -3468 \N \N \N \N f preview_externalreport 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.ui.view 195 -3469 \N \N \N \N f action_report_internalpreview 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.actions.report 75 -3470 \N \N \N \N f action_report_externalpreview 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web ir.actions.report 76 -3472 \N \N \N \N f report_layout_background 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web report.layout 1 -3473 \N \N \N \N f report_layout_boxed 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web report.layout 2 -3474 \N \N \N \N f report_layout_clean 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web report.layout 3 -3475 \N \N \N \N f report_layout_standard 2020-10-28 19:00:59.657843 2020-10-28 19:00:59.657843 web report.layout 4 -3476 \N \N \N \N \N model_base 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 1 -3477 \N \N \N \N \N model_base_import_mapping 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 100 -3478 \N \N \N \N f field_base_import_mapping__res_model 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1277 -3479 \N \N \N \N f field_base_import_mapping__column_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1278 -3480 \N \N \N \N f field_base_import_mapping__field_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1279 -3481 \N \N \N \N f field_base_import_mapping__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1280 -3482 \N \N \N \N f field_base_import_mapping__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1281 -3483 \N \N \N \N f field_base_import_mapping__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1282 -3484 \N \N \N \N f field_base_import_mapping__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1283 -3485 \N \N \N \N f field_base_import_mapping__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1284 -3486 \N \N \N \N f field_base_import_mapping__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1285 -3487 \N \N \N \N f field_base_import_mapping____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1286 -3488 \N \N \N \N \N model_res_users 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 86 -3489 \N \N \N \N \N model_base_import_import 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 101 -3490 \N \N \N \N f field_base_import_import__res_model 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1287 -3491 \N \N \N \N f field_base_import_import__file 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1288 -3492 \N \N \N \N f field_base_import_import__file_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1289 -3493 \N \N \N \N f field_base_import_import__file_type 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1290 -3494 \N \N \N \N f field_base_import_import__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1291 -3495 \N \N \N \N f field_base_import_import__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1292 -3496 \N \N \N \N f field_base_import_import__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1293 -3497 \N \N \N \N f field_base_import_import__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1294 -3498 \N \N \N \N f field_base_import_import__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1295 -3499 \N \N \N \N f field_base_import_import__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1296 -3500 \N \N \N \N f field_base_import_import____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1297 -3501 \N \N \N \N \N model_base_import_tests_models_char 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 102 -3502 \N \N \N \N f field_base_import_tests_models_char__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1298 -3503 \N \N \N \N f field_base_import_tests_models_char__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1299 -3504 \N \N \N \N f field_base_import_tests_models_char__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1300 -3505 \N \N \N \N f field_base_import_tests_models_char__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1301 -3506 \N \N \N \N f field_base_import_tests_models_char__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1302 -3507 \N \N \N \N f field_base_import_tests_models_char__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1303 -3508 \N \N \N \N f field_base_import_tests_models_char__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1304 -3509 \N \N \N \N f field_base_import_tests_models_char____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1305 -3510 \N \N \N \N \N model_base_import_tests_models_char_required 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 103 -3511 \N \N \N \N f field_base_import_tests_models_char_required__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1306 -3512 \N \N \N \N f field_base_import_tests_models_char_required__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1307 -3513 \N \N \N \N f field_base_import_tests_models_char_required__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1308 -3514 \N \N \N \N f field_base_import_tests_models_char_required__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1309 -3515 \N \N \N \N f field_base_import_tests_models_char_required__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1310 -3516 \N \N \N \N f field_base_import_tests_models_char_required__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1311 -3517 \N \N \N \N f field_base_import_tests_models_char_required__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1312 -3518 \N \N \N \N f field_base_import_tests_models_char_required____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1313 -3519 \N \N \N \N \N model_base_import_tests_models_char_readonly 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 104 -3520 \N \N \N \N f field_base_import_tests_models_char_readonly__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1314 -3521 \N \N \N \N f field_base_import_tests_models_char_readonly__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1315 -3522 \N \N \N \N f field_base_import_tests_models_char_readonly__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1316 -3523 \N \N \N \N f field_base_import_tests_models_char_readonly__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1317 -3524 \N \N \N \N f field_base_import_tests_models_char_readonly__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1318 -3525 \N \N \N \N f field_base_import_tests_models_char_readonly__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1319 -3526 \N \N \N \N f field_base_import_tests_models_char_readonly__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1320 -3527 \N \N \N \N f field_base_import_tests_models_char_readonly____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1321 -3528 \N \N \N \N \N model_base_import_tests_models_char_states 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 105 -3529 \N \N \N \N f field_base_import_tests_models_char_states__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1322 -3530 \N \N \N \N f field_base_import_tests_models_char_states__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1323 -3531 \N \N \N \N f field_base_import_tests_models_char_states__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1324 -3532 \N \N \N \N f field_base_import_tests_models_char_states__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1325 -3533 \N \N \N \N f field_base_import_tests_models_char_states__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1326 -3534 \N \N \N \N f field_base_import_tests_models_char_states__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1327 -3535 \N \N \N \N f field_base_import_tests_models_char_states__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1328 -3536 \N \N \N \N f field_base_import_tests_models_char_states____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1329 -3537 \N \N \N \N \N model_base_import_tests_models_char_noreadonly 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 106 -3538 \N \N \N \N f field_base_import_tests_models_char_noreadonly__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1330 -3539 \N \N \N \N f field_base_import_tests_models_char_noreadonly__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1331 -3540 \N \N \N \N f field_base_import_tests_models_char_noreadonly__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1332 -3541 \N \N \N \N f field_base_import_tests_models_char_noreadonly__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1333 -3542 \N \N \N \N f field_base_import_tests_models_char_noreadonly__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1334 -3543 \N \N \N \N f field_base_import_tests_models_char_noreadonly__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1335 -3544 \N \N \N \N f field_base_import_tests_models_char_noreadonly__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1336 -3545 \N \N \N \N f field_base_import_tests_models_char_noreadonly____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1337 -3546 \N \N \N \N \N model_base_import_tests_models_char_stillreadonly 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 107 -3547 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1338 -3548 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1339 -3549 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1340 -3550 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1341 -3551 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1342 -3552 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1343 -3553 \N \N \N \N f field_base_import_tests_models_char_stillreadonly__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1344 -3554 \N \N \N \N f field_base_import_tests_models_char_stillreadonly____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1345 -3555 \N \N \N \N \N model_base_import_tests_models_m2o 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 108 -3556 \N \N \N \N f field_base_import_tests_models_m2o__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1346 -3557 \N \N \N \N f field_base_import_tests_models_m2o__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1347 -3558 \N \N \N \N f field_base_import_tests_models_m2o__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1348 -3559 \N \N \N \N f field_base_import_tests_models_m2o__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1349 -3560 \N \N \N \N f field_base_import_tests_models_m2o__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1350 -3561 \N \N \N \N f field_base_import_tests_models_m2o__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1351 -3562 \N \N \N \N f field_base_import_tests_models_m2o__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1352 -3563 \N \N \N \N f field_base_import_tests_models_m2o____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1353 -3564 \N \N \N \N \N model_base_import_tests_models_m2o_related 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 109 -3565 \N \N \N \N f field_base_import_tests_models_m2o_related__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1354 -3566 \N \N \N \N f field_base_import_tests_models_m2o_related__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1355 -3567 \N \N \N \N f field_base_import_tests_models_m2o_related__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1356 -3568 \N \N \N \N f field_base_import_tests_models_m2o_related__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1357 -3569 \N \N \N \N f field_base_import_tests_models_m2o_related__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1358 -3570 \N \N \N \N f field_base_import_tests_models_m2o_related__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1359 -3571 \N \N \N \N f field_base_import_tests_models_m2o_related__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1360 -3572 \N \N \N \N f field_base_import_tests_models_m2o_related____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1361 -3573 \N \N \N \N \N model_base_import_tests_models_m2o_required 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 110 -3574 \N \N \N \N f field_base_import_tests_models_m2o_required__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1362 -3575 \N \N \N \N f field_base_import_tests_models_m2o_required__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1363 -3576 \N \N \N \N f field_base_import_tests_models_m2o_required__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1364 -3577 \N \N \N \N f field_base_import_tests_models_m2o_required__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1365 -3578 \N \N \N \N f field_base_import_tests_models_m2o_required__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1366 -3579 \N \N \N \N f field_base_import_tests_models_m2o_required__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1367 -3580 \N \N \N \N f field_base_import_tests_models_m2o_required__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1368 -3581 \N \N \N \N f field_base_import_tests_models_m2o_required____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1369 -3582 \N \N \N \N \N model_base_import_tests_models_m2o_required_related 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 111 -3583 \N \N \N \N f field_base_import_tests_models_m2o_required_related__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1370 -3584 \N \N \N \N f field_base_import_tests_models_m2o_required_related__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1371 -3585 \N \N \N \N f field_base_import_tests_models_m2o_required_related__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1372 -3586 \N \N \N \N f field_base_import_tests_models_m2o_required_related__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1373 -3587 \N \N \N \N f field_base_import_tests_models_m2o_required_related__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1374 -3588 \N \N \N \N f field_base_import_tests_models_m2o_required_related__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1375 -3589 \N \N \N \N f field_base_import_tests_models_m2o_required_related__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1376 -3590 \N \N \N \N f field_base_import_tests_models_m2o_required_related____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1377 -3591 \N \N \N \N \N model_base_import_tests_models_o2m 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 112 -3592 \N \N \N \N f field_base_import_tests_models_o2m__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1378 -3593 \N \N \N \N f field_base_import_tests_models_o2m__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1379 -3594 \N \N \N \N f field_base_import_tests_models_o2m__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1380 -3595 \N \N \N \N f field_base_import_tests_models_o2m__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1381 -3596 \N \N \N \N f field_base_import_tests_models_o2m__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1382 -3597 \N \N \N \N f field_base_import_tests_models_o2m__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1383 -3598 \N \N \N \N f field_base_import_tests_models_o2m__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1384 -3599 \N \N \N \N f field_base_import_tests_models_o2m____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1385 -3600 \N \N \N \N \N model_base_import_tests_models_o2m_child 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 113 -3601 \N \N \N \N f field_base_import_tests_models_o2m_child__parent_id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1386 -3602 \N \N \N \N f field_base_import_tests_models_o2m_child__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1387 -3603 \N \N \N \N f field_base_import_tests_models_o2m_child__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1388 -3604 \N \N \N \N f field_base_import_tests_models_o2m_child__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1389 -3605 \N \N \N \N f field_base_import_tests_models_o2m_child__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1390 -3606 \N \N \N \N f field_base_import_tests_models_o2m_child__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1391 -3607 \N \N \N \N f field_base_import_tests_models_o2m_child__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1392 -3608 \N \N \N \N f field_base_import_tests_models_o2m_child__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1393 -3609 \N \N \N \N f field_base_import_tests_models_o2m_child____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1394 -3610 \N \N \N \N \N model_base_import_tests_models_preview 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 114 -3611 \N \N \N \N f field_base_import_tests_models_preview__name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1395 -3612 \N \N \N \N f field_base_import_tests_models_preview__somevalue 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1396 -3674 \N \N \N \N \N model_ir_qweb_field_contact 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 54 -3613 \N \N \N \N f field_base_import_tests_models_preview__othervalue 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1397 -3614 \N \N \N \N f field_base_import_tests_models_preview__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1398 -3615 \N \N \N \N f field_base_import_tests_models_preview__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1399 -3616 \N \N \N \N f field_base_import_tests_models_preview__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1400 -3617 \N \N \N \N f field_base_import_tests_models_preview__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1401 -3618 \N \N \N \N f field_base_import_tests_models_preview__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1402 -3619 \N \N \N \N f field_base_import_tests_models_preview__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1403 -3620 \N \N \N \N f field_base_import_tests_models_preview____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1404 -3621 \N \N \N \N \N model_base_import_tests_models_float 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 115 -3622 \N \N \N \N f field_base_import_tests_models_float__value 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1405 -3623 \N \N \N \N f field_base_import_tests_models_float__value2 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1406 -3624 \N \N \N \N f field_base_import_tests_models_float__currency_id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1407 -3625 \N \N \N \N f field_base_import_tests_models_float__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1408 -3626 \N \N \N \N f field_base_import_tests_models_float__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1409 -3627 \N \N \N \N f field_base_import_tests_models_float__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1410 -3628 \N \N \N \N f field_base_import_tests_models_float__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1411 -3629 \N \N \N \N f field_base_import_tests_models_float__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1412 -3630 \N \N \N \N f field_base_import_tests_models_float__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1413 -3631 \N \N \N \N f field_base_import_tests_models_float____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1414 -3632 \N \N \N \N \N model_base_import_tests_models_complex 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model 116 -3633 \N \N \N \N f field_base_import_tests_models_complex__f 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1415 -3634 \N \N \N \N f field_base_import_tests_models_complex__m 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1416 -3635 \N \N \N \N f field_base_import_tests_models_complex__c 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1417 -3636 \N \N \N \N f field_base_import_tests_models_complex__currency_id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1418 -3637 \N \N \N \N f field_base_import_tests_models_complex__d 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1419 -3638 \N \N \N \N f field_base_import_tests_models_complex__dt 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1420 -3639 \N \N \N \N f field_base_import_tests_models_complex__id 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1421 -3640 \N \N \N \N f field_base_import_tests_models_complex__display_name 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1422 -3641 \N \N \N \N f field_base_import_tests_models_complex__create_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1423 -3642 \N \N \N \N f field_base_import_tests_models_complex__create_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1424 -3643 \N \N \N \N f field_base_import_tests_models_complex__write_uid 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1425 -3644 \N \N \N \N f field_base_import_tests_models_complex__write_date 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1426 -3645 \N \N \N \N f field_base_import_tests_models_complex____last_update 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.fields 1427 -3646 \N \N \N \N f access_base_import_tests_models_char 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 99 -3647 \N \N \N \N f access_base_import_tests_models_char_required 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 100 -3648 \N \N \N \N f access_base_import_tests_models_char_readonly 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 101 -3649 \N \N \N \N f access_base_import_tests_models_char_states 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 102 -3650 \N \N \N \N f access_base_import_tests_models_char_noreadonly 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 103 -3651 \N \N \N \N f access_base_import_tests_models_char_stillreadonly 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 104 -3652 \N \N \N \N f access_base_import_tests_models_m2o 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 105 -3653 \N \N \N \N f access_base_import_tests_models_m2o_related 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 106 -3654 \N \N \N \N f access_base_import_tests_models_m2o_required 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 107 -3655 \N \N \N \N f access_base_import_tests_models_m2o_required_related 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 108 -3656 \N \N \N \N f access_base_import_tests_models_o2m 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 109 -3657 \N \N \N \N f access_base_import_tests_models_o2m_child 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 110 -3658 \N \N \N \N f access_base_import_tests_models_float 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 111 -3659 \N \N \N \N f access_base_import_tests_models_preview 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 112 -3660 \N \N \N \N f access_base_import_mapping 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 113 -3661 \N \N \N \N f access_base_import_tests_models_complex 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.model.access 114 -3662 \N \N \N \N f assets_backend 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.ui.view 196 -3663 \N \N \N \N f qunit_suite 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.ui.view 197 -3664 \N \N \N \N f qunit_mobile_suite 2020-10-28 19:01:02.491911 2020-10-28 19:01:02.491911 base_import ir.ui.view 198 -3665 \N \N \N \N f assets_backend 2020-10-28 19:01:04.931049 2020-10-28 19:01:04.931049 web_diagram ir.ui.view 199 -3666 \N \N \N \N f qunit_suite 2020-10-28 19:01:04.931049 2020-10-28 19:01:04.931049 web_diagram ir.ui.view 200 -3667 \N \N \N \N \N model_ir_attachment 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 25 -3668 \N \N \N \N f field_ir_attachment__local_url 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1428 -3669 \N \N \N \N \N model_ir_qweb 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 37 -3670 \N \N \N \N \N model_ir_qweb_field 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 38 -3671 \N \N \N \N \N model_ir_qweb_field_integer 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 39 -3672 \N \N \N \N \N model_ir_qweb_field_float 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 40 -3673 \N \N \N \N \N model_ir_qweb_field_many2one 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 45 -3742 \N \N \N \N \N model_ir_http 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model 56 -3675 \N \N \N \N \N model_ir_qweb_field_date 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 41 -3676 \N \N \N \N \N model_ir_qweb_field_datetime 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 42 -3677 \N \N \N \N \N model_ir_qweb_field_text 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 43 -3678 \N \N \N \N \N model_ir_qweb_field_selection 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 44 -3679 \N \N \N \N \N model_ir_qweb_field_html 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 47 -3680 \N \N \N \N \N model_ir_qweb_field_image 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 48 -3681 \N \N \N \N \N model_ir_qweb_field_monetary 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 49 -3682 \N \N \N \N \N model_ir_qweb_field_duration 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 51 -3683 \N \N \N \N \N model_ir_qweb_field_relative 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 52 -3684 \N \N \N \N \N model_ir_qweb_field_qweb 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 55 -3685 \N \N \N \N \N model_ir_ui_view 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 14 -3686 \N \N \N \N \N model_ir_http 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 56 -3687 \N \N \N \N \N model_ir_translation 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 29 -3688 \N \N \N \N \N model_web_editor_converter_test 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 117 -3689 \N \N \N \N f field_web_editor_converter_test__char 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1429 -3690 \N \N \N \N f field_web_editor_converter_test__integer 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1430 -3691 \N \N \N \N f field_web_editor_converter_test__float 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1431 -3692 \N \N \N \N f field_web_editor_converter_test__numeric 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1432 -3693 \N \N \N \N f field_web_editor_converter_test__many2one 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1433 -3694 \N \N \N \N f field_web_editor_converter_test__binary 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1434 -3695 \N \N \N \N f field_web_editor_converter_test__date 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1435 -3696 \N \N \N \N f field_web_editor_converter_test__datetime 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1436 -3697 \N \N \N \N f field_web_editor_converter_test__selection 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1437 -3698 \N \N \N \N f field_web_editor_converter_test__selection_str 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1438 -3699 \N \N \N \N f field_web_editor_converter_test__html 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1439 -3700 \N \N \N \N f field_web_editor_converter_test__text 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1440 -3701 \N \N \N \N f field_web_editor_converter_test__id 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1441 -3702 \N \N \N \N f field_web_editor_converter_test__display_name 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1442 -3703 \N \N \N \N f field_web_editor_converter_test__create_uid 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1443 -3704 \N \N \N \N f field_web_editor_converter_test__create_date 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1444 -3705 \N \N \N \N f field_web_editor_converter_test__write_uid 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1445 -3706 \N \N \N \N f field_web_editor_converter_test__write_date 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1446 -3707 \N \N \N \N f field_web_editor_converter_test____last_update 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1447 -3708 \N \N \N \N \N model_web_editor_converter_test_sub 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model 118 -3709 \N \N \N \N f field_web_editor_converter_test_sub__name 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1448 -3710 \N \N \N \N f field_web_editor_converter_test_sub__id 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1449 -3711 \N \N \N \N f field_web_editor_converter_test_sub__display_name 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1450 -3712 \N \N \N \N f field_web_editor_converter_test_sub__create_uid 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1451 -3713 \N \N \N \N f field_web_editor_converter_test_sub__create_date 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1452 -3714 \N \N \N \N f field_web_editor_converter_test_sub__write_uid 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1453 -3715 \N \N \N \N f field_web_editor_converter_test_sub__write_date 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1454 -3716 \N \N \N \N f field_web_editor_converter_test_sub____last_update 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.fields 1455 -3717 \N \N \N \N f access_web_editor_converter_test 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.access 115 -3718 \N \N \N \N f access_web_editor_converter_test_sub 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.model.access 116 -3719 \N \N \N \N f summernote 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 201 -3720 \N \N \N \N f _assets_primary_variables 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 202 -3721 \N \N \N \N f assets_common 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 203 -3722 \N \N \N \N f _assets_backend_helpers 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 204 -3723 \N \N \N \N f assets_backend 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 205 -3724 \N \N \N \N f _assets_frontend_helpers 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 206 -3725 \N \N \N \N f assets_frontend 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 207 -3726 \N \N \N \N f assets_editor 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 208 -3727 \N \N \N \N f webclient_bootstrap 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 209 -3728 \N \N \N \N f js_tests_assets 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 210 -3729 \N \N \N \N f qunit_suite 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 211 -3730 \N \N \N \N f colorpicker 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 212 -3731 \N \N \N \N f layout 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 213 -3732 \N \N \N \N f FieldTextHtml 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 214 -3733 \N \N \N \N f snippets 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 215 -3734 \N \N \N \N f snippet_options 2020-10-28 19:01:05.150948 2020-10-28 19:01:05.150948 web_editor ir.ui.view 216 -3735 \N \N \N \N f assets_backend 2020-10-28 19:01:06.000484 2020-10-28 19:01:06.000484 web_kanban_gauge ir.ui.view 217 -3736 \N \N \N \N f qunit_suite 2020-10-28 19:01:06.000484 2020-10-28 19:01:06.000484 web_kanban_gauge ir.ui.view 218 -3737 \N \N \N \N \N model_res_users 2020-10-28 19:01:06.19769 2020-10-28 19:01:06.19769 web_settings_dashboard ir.model 86 -3738 \N \N \N \N f web_settings_dashboard_action 2020-10-28 19:01:06.19769 2020-10-28 19:01:06.19769 web_settings_dashboard ir.actions.client 77 -3739 \N \N \N \N f web_dashboard_menu 2020-10-28 19:01:06.19769 2020-10-28 19:01:06.19769 web_settings_dashboard ir.ui.menu 62 -3740 \N \N \N \N f assets_backend 2020-10-28 19:01:06.19769 2020-10-28 19:01:06.19769 web_settings_dashboard ir.ui.view 219 -3741 \N \N \N \N f dashboard_qunit_suite 2020-10-28 19:01:06.19769 2020-10-28 19:01:06.19769 web_settings_dashboard ir.ui.view 220 -3744 \N \N \N \N f field_web_tour_tour__name 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.fields 1456 -3745 \N \N \N \N f field_web_tour_tour__user_id 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.fields 1457 -3746 \N \N \N \N f field_web_tour_tour__id 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.fields 1458 -3747 \N \N \N \N f field_web_tour_tour__display_name 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.fields 1459 -3748 \N \N \N \N f field_web_tour_tour____last_update 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.fields 1460 -3749 \N \N \N \N f access_web_tour_tour_admin 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.access 117 -3750 \N \N \N \N f access_web_tour_tour 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.model.access 118 -3751 \N \N \N \N f own_tours 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.rule 21 -3752 \N \N \N \N f assets_common 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.ui.view 221 -3753 \N \N \N \N f assets_backend 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.ui.view 222 -3754 \N \N \N \N f edit_tour_list 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.ui.view 223 -3755 \N \N \N \N f edit_tour_search 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.ui.view 224 -3756 \N \N \N \N f edit_tour_action 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.actions.act_window 78 -3757 \N \N \N \N f menu_tour_action 2020-10-28 19:01:06.450813 2020-10-28 19:01:06.450813 web_tour ir.ui.menu 63 -\. - - --- --- Data for Name: ir_model_fields; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model_fields (id, name, complete_name, model, relation, relation_field, relation_field_id, model_id, field_description, help, ttype, selection, copied, related, related_field_id, required, readonly, index, translate, size, state, on_delete, domain, selectable, relation_table, column1, column2, compute, depends, store, create_uid, create_date, write_uid, write_date) FROM stdin; -278 id \N ir.actions.act_window_close \N \N \N 18 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -523 id \N ir.rule \N \N \N 32 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -618 id \N ir.http \N \N \N 56 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -826 id \N res.lang \N \N \N 70 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1097 date \N res.users \N \N \N 86 Date \N date \N t partner_id.date \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1 id \N base \N \N \N 1 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -2 display_name \N base \N \N \N 1 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -3 __last_update \N base \N \N \N 1 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -4 id \N _unknown \N \N \N 2 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -5 display_name \N _unknown \N \N \N 2 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -6 __last_update \N _unknown \N \N \N 2 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -7 name \N ir.model \N \N \N 3 Model Description \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -8 model \N ir.model \N \N \N 3 Model \N char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -9 info \N ir.model \N \N \N 3 Information \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -10 field_id \N ir.model ir.model.fields model_id \N 3 Fields \N one2many \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -11 inherited_model_ids \N ir.model ir.model \N \N 3 Inherited models The list of models that extends the current model. many2many \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -12 state \N ir.model \N \N \N 3 Type \N selection \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -13 access_ids \N ir.model ir.model.access model_id \N 3 Access \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -14 rule_ids \N ir.model ir.rule model_id \N 3 Record Rules \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -15 transient \N ir.model \N \N \N 3 Transient Model \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -16 modules \N ir.model \N \N \N 3 In Apps List of modules in which the object is defined or inherited char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -17 view_ids \N ir.model ir.ui.view \N \N 3 Views \N one2many \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -18 count \N ir.model \N \N \N 3 Count (incl. archived) Total number of records in this model integer \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -19 id \N ir.model \N \N \N 3 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -20 display_name \N ir.model \N \N \N 3 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -21 create_uid \N ir.model res.users \N \N 3 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -22 create_date \N ir.model \N \N \N 3 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -23 write_uid \N ir.model res.users \N \N 3 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -24 write_date \N ir.model \N \N \N 3 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -25 __last_update \N ir.model \N \N \N 3 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -26 name \N ir.model.fields \N \N \N 4 Field Name \N char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -27 complete_name \N ir.model.fields \N \N \N 4 Complete Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -28 model \N ir.model.fields \N \N \N 4 Object Name The technical name of the model this field belongs to char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -29 relation \N ir.model.fields \N \N \N 4 Object Relation For relationship fields, the technical name of the target model char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -30 relation_field \N ir.model.fields \N \N \N 4 Relation Field For one2many fields, the field on the target model that implement the opposite many2one relationship char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -31 relation_field_id \N ir.model.fields ir.model.fields \N \N 4 Relation field \N many2one \N f \N \N f t f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -32 model_id \N ir.model.fields ir.model \N \N 4 Model The model this field belongs to many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -33 field_description \N ir.model.fields \N \N \N 4 Field Label \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -34 help \N ir.model.fields \N \N \N 4 Field Help \N text \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -35 ttype \N ir.model.fields \N \N \N 4 Field Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -36 selection \N ir.model.fields \N \N \N 4 Selection Options List of options for a selection field, specified as a Python expression defining a list of (key, label) pairs. For example: [('blue','Blue'),('yellow','Yellow')] char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -37 copied \N ir.model.fields \N \N \N 4 Copied Whether the value is copied when duplicating a record. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -38 related \N ir.model.fields \N \N \N 4 Related Field The corresponding related field, if any. This must be a dot-separated list of field names. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -39 related_field_id \N ir.model.fields ir.model.fields \N \N 4 Related field \N many2one \N f \N \N f t f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -40 required \N ir.model.fields \N \N \N 4 Required \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -41 readonly \N ir.model.fields \N \N \N 4 Readonly \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -42 index \N ir.model.fields \N \N \N 4 Indexed \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -43 translate \N ir.model.fields \N \N \N 4 Translatable Whether values for this field can be translated (enables the translation mechanism for that field) boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -44 size \N ir.model.fields \N \N \N 4 Size \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -45 state \N ir.model.fields \N \N \N 4 Type \N selection \N t \N \N t t t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -46 on_delete \N ir.model.fields \N \N \N 4 On Delete On delete property for many2one fields selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -47 domain \N ir.model.fields \N \N \N 4 Domain The optional domain to restrict possible values for relationship fields, specified as a Python expression defining a list of triplets. For example: [('color','=','red')] char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -48 groups \N ir.model.fields res.groups \N \N 4 Groups \N many2many \N t \N \N f f f f \N base \N \N t ir_model_fields_group_rel field_id group_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -49 selectable \N ir.model.fields \N \N \N 4 Selectable \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -50 modules \N ir.model.fields \N \N \N 4 In Apps List of modules in which the field is defined char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -51 relation_table \N ir.model.fields \N \N \N 4 Relation Table Used for custom many2many fields to define a custom relation table name char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -52 column1 \N ir.model.fields \N \N \N 4 Column 1 Column referring to the record in the model table char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -53 column2 \N ir.model.fields \N \N \N 4 Column 2 Column referring to the record in the comodel table char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -54 compute \N ir.model.fields \N \N \N 4 Compute Code to compute the value of the field.\nIterate on the recordset 'self' and assign the field's value:\n\n for record in self:\n record['size'] = len(record.name)\n\nModules time, datetime, dateutil are available. text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -55 depends \N ir.model.fields \N \N \N 4 Dependencies Dependencies of compute method; a list of comma-separated field names, like\n\n name, partner_id.name char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -56 store \N ir.model.fields \N \N \N 4 Stored Whether the value is stored in the database. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -57 id \N ir.model.fields \N \N \N 4 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -58 display_name \N ir.model.fields \N \N \N 4 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -59 create_uid \N ir.model.fields res.users \N \N 4 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -60 create_date \N ir.model.fields \N \N \N 4 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -61 write_uid \N ir.model.fields res.users \N \N 4 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -62 write_date \N ir.model.fields \N \N \N 4 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -63 __last_update \N ir.model.fields \N \N \N 4 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -64 name \N ir.model.constraint \N \N \N 5 Constraint PostgreSQL constraint or foreign key name. char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -65 definition \N ir.model.constraint \N \N \N 5 Definition PostgreSQL constraint definition char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -66 model \N ir.model.constraint ir.model \N \N 5 Model \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -67 module \N ir.model.constraint ir.module.module \N \N 5 Module \N many2one \N t \N \N t f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -68 type \N ir.model.constraint \N \N \N 5 Constraint Type Type of the constraint: `f` for a foreign key, `u` for other constraints. char \N t \N \N t f t f 1 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -69 date_update \N ir.model.constraint \N \N \N 5 Update Date \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -70 date_init \N ir.model.constraint \N \N \N 5 Initialization Date \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -71 id \N ir.model.constraint \N \N \N 5 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -72 display_name \N ir.model.constraint \N \N \N 5 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -73 create_uid \N ir.model.constraint res.users \N \N 5 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -74 create_date \N ir.model.constraint \N \N \N 5 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -75 write_uid \N ir.model.constraint res.users \N \N 5 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -76 write_date \N ir.model.constraint \N \N \N 5 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -77 __last_update \N ir.model.constraint \N \N \N 5 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -78 name \N ir.model.relation \N \N \N 6 Relation Name PostgreSQL table name implementing a many2many relation. char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -79 model \N ir.model.relation ir.model \N \N 6 Model \N many2one \N t \N \N t f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -80 module \N ir.model.relation ir.module.module \N \N 6 Module \N many2one \N t \N \N t f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -81 date_update \N ir.model.relation \N \N \N 6 Update Date \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -82 date_init \N ir.model.relation \N \N \N 6 Initialization Date \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -83 id \N ir.model.relation \N \N \N 6 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -84 display_name \N ir.model.relation \N \N \N 6 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -85 create_uid \N ir.model.relation res.users \N \N 6 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -86 create_date \N ir.model.relation \N \N \N 6 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -87 write_uid \N ir.model.relation res.users \N \N 6 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -88 write_date \N ir.model.relation \N \N \N 6 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -89 __last_update \N ir.model.relation \N \N \N 6 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -90 name \N ir.model.access \N \N \N 7 Name \N char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -91 active \N ir.model.access \N \N \N 7 Active If you uncheck the active field, it will disable the ACL without deleting it (if you delete a native ACL, it will be re-created when you reload the module). boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -92 model_id \N ir.model.access ir.model \N \N 7 Object \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -93 group_id \N ir.model.access res.groups \N \N 7 Group \N many2one \N t \N \N f f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -94 perm_read \N ir.model.access \N \N \N 7 Read Access \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -95 perm_write \N ir.model.access \N \N \N 7 Write Access \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -96 perm_create \N ir.model.access \N \N \N 7 Create Access \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -97 perm_unlink \N ir.model.access \N \N \N 7 Delete Access \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -98 id \N ir.model.access \N \N \N 7 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -99 display_name \N ir.model.access \N \N \N 7 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -100 create_uid \N ir.model.access res.users \N \N 7 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -101 create_date \N ir.model.access \N \N \N 7 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -102 write_uid \N ir.model.access res.users \N \N 7 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -103 write_date \N ir.model.access \N \N \N 7 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -104 __last_update \N ir.model.access \N \N \N 7 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -105 name \N ir.model.data \N \N \N 8 External Identifier External Key/Identifier that can be used for data integration with third-party systems char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -106 complete_name \N ir.model.data \N \N \N 8 Complete ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -107 model \N ir.model.data \N \N \N 8 Model Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -108 module \N ir.model.data \N \N \N 8 Module \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -109 res_id \N ir.model.data \N \N \N 8 Record ID ID of the target record in the database integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -110 noupdate \N ir.model.data \N \N \N 8 Non Updatable \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -111 date_update \N ir.model.data \N \N \N 8 Update Date \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -112 date_init \N ir.model.data \N \N \N 8 Init Date \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -113 reference \N ir.model.data \N \N \N 8 Reference \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -114 id \N ir.model.data \N \N \N 8 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -115 display_name \N ir.model.data \N \N \N 8 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -116 create_uid \N ir.model.data res.users \N \N 8 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -117 create_date \N ir.model.data \N \N \N 8 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -118 write_uid \N ir.model.data res.users \N \N 8 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -119 write_date \N ir.model.data \N \N \N 8 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -120 __last_update \N ir.model.data \N \N \N 8 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -121 menu_id \N wizard.ir.model.menu.create ir.ui.menu \N \N 9 Parent Menu \N many2one \N t \N \N t f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -122 name \N wizard.ir.model.menu.create \N \N \N 9 Menu Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -123 id \N wizard.ir.model.menu.create \N \N \N 9 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -124 display_name \N wizard.ir.model.menu.create \N \N \N 9 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -125 create_uid \N wizard.ir.model.menu.create res.users \N \N 9 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -126 create_date \N wizard.ir.model.menu.create \N \N \N 9 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -127 write_uid \N wizard.ir.model.menu.create res.users \N \N 9 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -128 write_date \N wizard.ir.model.menu.create \N \N \N 9 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -129 __last_update \N wizard.ir.model.menu.create \N \N \N 9 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -130 name \N ir.sequence \N \N \N 10 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -131 code \N ir.sequence \N \N \N 10 Sequence Code \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -132 implementation \N ir.sequence \N \N \N 10 Implementation Two sequence object implementations are offered: Standard and 'No gap'. The later is slower than the former but forbids any gap in the sequence (while they are possible in the former). selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -133 active \N ir.sequence \N \N \N 10 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -134 prefix \N ir.sequence \N \N \N 10 Prefix Prefix value of the record for the sequence char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -135 suffix \N ir.sequence \N \N \N 10 Suffix Suffix value of the record for the sequence char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -136 number_next \N ir.sequence \N \N \N 10 Next Number Next number of this sequence integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -137 number_next_actual \N ir.sequence \N \N \N 10 Actual Next Number Next number that will be used. This number can be incremented frequently so the displayed value might already be obsolete integer \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -138 number_increment \N ir.sequence \N \N \N 10 Step The next number of the sequence will be incremented by this number integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -139 padding \N ir.sequence \N \N \N 10 Sequence Size Odoo will automatically adds some '0' on the left of the 'Next Number' to get the required padding size. integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -140 company_id \N ir.sequence res.company \N \N 10 Company \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -141 use_date_range \N ir.sequence \N \N \N 10 Use subsequences per date_range \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -142 date_range_ids \N ir.sequence ir.sequence.date_range sequence_id \N 10 Subsequences \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -143 id \N ir.sequence \N \N \N 10 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -144 display_name \N ir.sequence \N \N \N 10 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -145 create_uid \N ir.sequence res.users \N \N 10 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -146 create_date \N ir.sequence \N \N \N 10 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -147 write_uid \N ir.sequence res.users \N \N 10 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -148 write_date \N ir.sequence \N \N \N 10 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -149 __last_update \N ir.sequence \N \N \N 10 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -150 date_from \N ir.sequence.date_range \N \N \N 11 From \N date \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -151 date_to \N ir.sequence.date_range \N \N \N 11 To \N date \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -152 sequence_id \N ir.sequence.date_range ir.sequence \N \N 11 Main Sequence \N many2one \N t \N \N t f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -153 number_next \N ir.sequence.date_range \N \N \N 11 Next Number Next number of this sequence integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -154 number_next_actual \N ir.sequence.date_range \N \N \N 11 Actual Next Number Next number that will be used. This number can be incremented frequently so the displayed value might already be obsolete integer \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -155 id \N ir.sequence.date_range \N \N \N 11 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -156 display_name \N ir.sequence.date_range \N \N \N 11 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -157 create_uid \N ir.sequence.date_range res.users \N \N 11 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -158 create_date \N ir.sequence.date_range \N \N \N 11 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -159 write_uid \N ir.sequence.date_range res.users \N \N 11 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -160 write_date \N ir.sequence.date_range \N \N \N 11 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -161 __last_update \N ir.sequence.date_range \N \N \N 11 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -162 name \N ir.ui.menu \N \N \N 12 Menu \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -163 active \N ir.ui.menu \N \N \N 12 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -164 sequence \N ir.ui.menu \N \N \N 12 Sequence \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -165 child_id \N ir.ui.menu ir.ui.menu parent_id \N 12 Child IDs \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -166 parent_id \N ir.ui.menu ir.ui.menu \N \N 12 Parent Menu \N many2one \N t \N \N f f t f \N base restrict \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -167 parent_path \N ir.ui.menu \N \N \N 12 Parent Path \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -168 groups_id \N ir.ui.menu res.groups \N \N 12 Groups If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Odoo will compute visibility based on the related object's read access. many2many \N t \N \N f f f f \N base \N \N t ir_ui_menu_group_rel menu_id gid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -169 complete_name \N ir.ui.menu \N \N \N 12 Full Path \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -170 web_icon \N ir.ui.menu \N \N \N 12 Web Icon File \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -171 action \N ir.ui.menu \N \N \N 12 Action \N reference \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -172 web_icon_data \N ir.ui.menu \N \N \N 12 Web Icon Image \N binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -173 id \N ir.ui.menu \N \N \N 12 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -174 display_name \N ir.ui.menu \N \N \N 12 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -175 create_uid \N ir.ui.menu res.users \N \N 12 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -176 create_date \N ir.ui.menu \N \N \N 12 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -177 write_uid \N ir.ui.menu res.users \N \N 12 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -178 write_date \N ir.ui.menu \N \N \N 12 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -179 __last_update \N ir.ui.menu \N \N \N 12 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -180 ref_id \N ir.ui.view.custom ir.ui.view \N \N 13 Original View \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -181 user_id \N ir.ui.view.custom res.users \N \N 13 User \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -182 arch \N ir.ui.view.custom \N \N \N 13 View Architecture \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -183 id \N ir.ui.view.custom \N \N \N 13 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -184 display_name \N ir.ui.view.custom \N \N \N 13 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -185 create_uid \N ir.ui.view.custom res.users \N \N 13 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -186 create_date \N ir.ui.view.custom \N \N \N 13 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -187 write_uid \N ir.ui.view.custom res.users \N \N 13 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -188 write_date \N ir.ui.view.custom \N \N \N 13 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -189 __last_update \N ir.ui.view.custom \N \N \N 13 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -190 name \N ir.ui.view \N \N \N 14 View Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -191 model \N ir.ui.view \N \N \N 14 Model \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -192 key \N ir.ui.view \N \N \N 14 Key \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -193 priority \N ir.ui.view \N \N \N 14 Sequence \N integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -194 type \N ir.ui.view \N \N \N 14 View Type \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -195 arch \N ir.ui.view \N \N \N 14 View Architecture \N text \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -196 arch_base \N ir.ui.view \N \N \N 14 Base View Architecture \N text \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -197 arch_db \N ir.ui.view \N \N \N 14 Arch Blob \N text \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -198 arch_fs \N ir.ui.view \N \N \N 14 Arch Filename \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -199 inherit_id \N ir.ui.view ir.ui.view \N \N 14 Inherited View \N many2one \N t \N \N f f t f \N base restrict \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -200 inherit_children_ids \N ir.ui.view ir.ui.view inherit_id \N 14 Views which inherit from this one \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -201 field_parent \N ir.ui.view \N \N \N 14 Child Field \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -202 model_data_id \N ir.ui.view ir.model.data \N \N 14 Model Data \N many2one \N f \N \N f t f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -203 xml_id \N ir.ui.view \N \N \N 14 External ID ID of the view defined in xml file char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -204 groups_id \N ir.ui.view res.groups \N \N 14 Groups If this field is empty, the view applies to all users. Otherwise, the view applies to the users of those groups only. many2many \N t \N \N f f f f \N base \N \N t ir_ui_view_group_rel view_id group_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -205 model_ids \N ir.ui.view ir.model.data res_id \N 14 Models \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -206 mode \N ir.ui.view \N \N \N 14 View inheritance mode Only applies if this view inherits from an other one (inherit_id is not False/Null).\n\n* if extension (default), if this view is requested the closest primary view\nis looked up (via inherit_id), then all views inheriting from it with this\nview's model are applied\n* if primary, the closest primary view is fully resolved (even if it uses a\ndifferent model than this one), then this view's inheritance specs\n() are applied, and the result is used as if it were this view's\nactual arch.\n selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -207 active \N ir.ui.view \N \N \N 14 Active If this view is inherited,\n* if True, the view always extends its parent\n* if False, the view currently does not extend its parent but can be enabled\n boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -208 id \N ir.ui.view \N \N \N 14 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -209 display_name \N ir.ui.view \N \N \N 14 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -210 create_uid \N ir.ui.view res.users \N \N 14 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -211 create_date \N ir.ui.view \N \N \N 14 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -212 write_uid \N ir.ui.view res.users \N \N 14 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -213 write_date \N ir.ui.view \N \N \N 14 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -214 __last_update \N ir.ui.view \N \N \N 14 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -215 name \N ir.actions.actions \N \N \N 15 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -216 type \N ir.actions.actions \N \N \N 15 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -217 xml_id \N ir.actions.actions \N \N \N 15 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -218 help \N ir.actions.actions \N \N \N 15 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -219 binding_model_id \N ir.actions.actions ir.model \N \N 15 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -220 binding_type \N ir.actions.actions \N \N \N 15 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -221 id \N ir.actions.actions \N \N \N 15 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -222 display_name \N ir.actions.actions \N \N \N 15 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -223 create_uid \N ir.actions.actions res.users \N \N 15 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -224 create_date \N ir.actions.actions \N \N \N 15 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -225 write_uid \N ir.actions.actions res.users \N \N 15 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -226 write_date \N ir.actions.actions \N \N \N 15 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -227 __last_update \N ir.actions.actions \N \N \N 15 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -228 name \N ir.actions.act_window \N \N \N 16 Action Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -229 type \N ir.actions.act_window \N \N \N 16 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -230 view_id \N ir.actions.act_window ir.ui.view \N \N 16 View Ref. \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -231 domain \N ir.actions.act_window \N \N \N 16 Domain Value Optional domain filtering of the destination data, as a Python expression char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -232 context \N ir.actions.act_window \N \N \N 16 Context Value Context dictionary as Python expression, empty by default (Default: {}) char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -233 res_id \N ir.actions.act_window \N \N \N 16 Record ID Database ID of record to open in form view, when ``view_mode`` is set to 'form' only integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -234 res_model \N ir.actions.act_window \N \N \N 16 Destination Model Model name of the object to open in the view window char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -235 src_model \N ir.actions.act_window \N \N \N 16 Source Model Optional model name of the objects on which this action should be visible char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -236 target \N ir.actions.act_window \N \N \N 16 Target Window \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -237 view_mode \N ir.actions.act_window \N \N \N 16 View Mode Comma-separated list of allowed view modes, such as 'form', 'tree', 'calendar', etc. (Default: tree,form) char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -238 view_type \N ir.actions.act_window \N \N \N 16 View Type View type: Tree type to use for the tree view, set to 'tree' for a hierarchical tree view, or 'form' for a regular list view selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -239 usage \N ir.actions.act_window \N \N \N 16 Action Usage Used to filter menu and home actions from the user form. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -240 view_ids \N ir.actions.act_window ir.actions.act_window.view act_window_id \N 16 No of Views \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -241 views \N ir.actions.act_window \N \N \N 16 Views This function field computes the ordered list of views that should be enabled when displaying the result of an action, federating view mode, views and reference view. The result is returned as an ordered list of pairs (view_id,view_mode). binary \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -242 limit \N ir.actions.act_window \N \N \N 16 Limit Default limit for the list view integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -243 groups_id \N ir.actions.act_window res.groups \N \N 16 Groups \N many2many \N t \N \N f f f f \N base \N \N t ir_act_window_group_rel act_id gid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -244 search_view_id \N ir.actions.act_window ir.ui.view \N \N 16 Search View Ref. \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -245 filter \N ir.actions.act_window \N \N \N 16 Filter \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -246 auto_search \N ir.actions.act_window \N \N \N 16 Auto Search \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -247 search_view \N ir.actions.act_window \N \N \N 16 Search View \N text \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -248 multi \N ir.actions.act_window \N \N \N 16 Restrict to lists If checked and the action is bound to a model, it will only appear in the More menu on list views boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -249 xml_id \N ir.actions.act_window \N \N \N 16 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -250 help \N ir.actions.act_window \N \N \N 16 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -251 binding_model_id \N ir.actions.act_window ir.model \N \N 16 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -252 binding_type \N ir.actions.act_window \N \N \N 16 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -253 id \N ir.actions.act_window \N \N \N 16 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -254 display_name \N ir.actions.act_window \N \N \N 16 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -255 create_uid \N ir.actions.act_window res.users \N \N 16 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -256 create_date \N ir.actions.act_window \N \N \N 16 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -257 write_uid \N ir.actions.act_window res.users \N \N 16 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -258 write_date \N ir.actions.act_window \N \N \N 16 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -259 __last_update \N ir.actions.act_window \N \N \N 16 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -260 sequence \N ir.actions.act_window.view \N \N \N 17 Sequence \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -261 view_id \N ir.actions.act_window.view ir.ui.view \N \N 17 View \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -262 view_mode \N ir.actions.act_window.view \N \N \N 17 View Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -263 act_window_id \N ir.actions.act_window.view ir.actions.act_window \N \N 17 Action \N many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -264 multi \N ir.actions.act_window.view \N \N \N 17 On Multiple Doc. If set to true, the action will not be displayed on the right toolbar of a form view. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -265 id \N ir.actions.act_window.view \N \N \N 17 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -266 display_name \N ir.actions.act_window.view \N \N \N 17 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -267 create_uid \N ir.actions.act_window.view res.users \N \N 17 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -268 create_date \N ir.actions.act_window.view \N \N \N 17 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -269 write_uid \N ir.actions.act_window.view res.users \N \N 17 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -270 write_date \N ir.actions.act_window.view \N \N \N 17 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -271 __last_update \N ir.actions.act_window.view \N \N \N 17 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -272 type \N ir.actions.act_window_close \N \N \N 18 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -273 name \N ir.actions.act_window_close \N \N \N 18 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -274 xml_id \N ir.actions.act_window_close \N \N \N 18 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -275 help \N ir.actions.act_window_close \N \N \N 18 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -276 binding_model_id \N ir.actions.act_window_close ir.model \N \N 18 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -277 binding_type \N ir.actions.act_window_close \N \N \N 18 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -279 display_name \N ir.actions.act_window_close \N \N \N 18 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -280 create_uid \N ir.actions.act_window_close res.users \N \N 18 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -281 create_date \N ir.actions.act_window_close \N \N \N 18 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -282 write_uid \N ir.actions.act_window_close res.users \N \N 18 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -283 write_date \N ir.actions.act_window_close \N \N \N 18 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -284 __last_update \N ir.actions.act_window_close \N \N \N 18 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -285 name \N ir.actions.act_url \N \N \N 19 Action Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -286 type \N ir.actions.act_url \N \N \N 19 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -287 url \N ir.actions.act_url \N \N \N 19 Action URL \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -288 target \N ir.actions.act_url \N \N \N 19 Action Target \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -289 xml_id \N ir.actions.act_url \N \N \N 19 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -290 help \N ir.actions.act_url \N \N \N 19 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -291 binding_model_id \N ir.actions.act_url ir.model \N \N 19 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -292 binding_type \N ir.actions.act_url \N \N \N 19 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -293 id \N ir.actions.act_url \N \N \N 19 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -294 display_name \N ir.actions.act_url \N \N \N 19 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -295 create_uid \N ir.actions.act_url res.users \N \N 19 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -296 create_date \N ir.actions.act_url \N \N \N 19 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -297 write_uid \N ir.actions.act_url res.users \N \N 19 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -298 write_date \N ir.actions.act_url \N \N \N 19 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -299 __last_update \N ir.actions.act_url \N \N \N 19 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -300 name \N ir.actions.server \N \N \N 20 Action Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -301 type \N ir.actions.server \N \N \N 20 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -302 usage \N ir.actions.server \N \N \N 20 Usage \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -303 state \N ir.actions.server \N \N \N 20 Action To Do Type of server action. The following values are available:\n- 'Execute Python Code': a block of python code that will be executed\n- 'Create': create a new record with new values\n- 'Update a Record': update the values of a record\n- 'Execute several actions': define an action that triggers several other server actions\n- 'Send Email': automatically send an email (Discuss)\n- 'Add Followers': add followers to a record (Discuss)\n- 'Create Next Activity': create an activity (Discuss) selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -304 sequence \N ir.actions.server \N \N \N 20 Sequence When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority. integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -305 model_id \N ir.actions.server ir.model \N \N 20 Model Model on which the server action runs. many2one \N t \N \N t f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -306 model_name \N ir.actions.server \N \N \N 20 Model Name \N char \N f model_id.model \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -307 code \N ir.actions.server \N \N \N 20 Python Code Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab. text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -308 child_ids \N ir.actions.server ir.actions.server \N \N 20 Child Actions Child server actions that will be executed. Note that the last return returned action value will be used as global return value. many2many \N t \N \N f f f f \N base \N \N t rel_server_actions server_id action_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -309 crud_model_id \N ir.actions.server ir.model \N \N 20 Create/Write Target Model Model for record creation / update. Set this field only to specify a different model than the base model. many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -310 crud_model_name \N ir.actions.server \N \N \N 20 Target Model \N char \N f crud_model_id.model \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -311 link_field_id \N ir.actions.server ir.model.fields \N \N 20 Link using field Provide the field used to link the newly created record on the record on used by the server action. many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -312 fields_lines \N ir.actions.server ir.server.object.lines server_id \N 20 Value Mapping \N one2many \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -313 xml_id \N ir.actions.server \N \N \N 20 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -314 help \N ir.actions.server \N \N \N 20 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -315 binding_model_id \N ir.actions.server ir.model \N \N 20 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -316 binding_type \N ir.actions.server \N \N \N 20 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -317 id \N ir.actions.server \N \N \N 20 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -318 display_name \N ir.actions.server \N \N \N 20 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -319 create_uid \N ir.actions.server res.users \N \N 20 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -320 create_date \N ir.actions.server \N \N \N 20 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -321 write_uid \N ir.actions.server res.users \N \N 20 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -322 write_date \N ir.actions.server \N \N \N 20 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -323 __last_update \N ir.actions.server \N \N \N 20 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -324 server_id \N ir.server.object.lines ir.actions.server \N \N 21 Related Server Action \N many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -325 col1 \N ir.server.object.lines ir.model.fields \N \N 21 Field \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -326 value \N ir.server.object.lines \N \N \N 21 Value Expression containing a value specification. \nWhen Formula type is selected, this field may be a Python expression that can use the same values as for the code field on the server action.\nIf Value type is selected, the value will be used directly without evaluation. text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -327 type \N ir.server.object.lines \N \N \N 21 Evaluation Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -328 resource_ref \N ir.server.object.lines \N \N \N 21 Record \N reference \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -329 id \N ir.server.object.lines \N \N \N 21 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -330 display_name \N ir.server.object.lines \N \N \N 21 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -331 create_uid \N ir.server.object.lines res.users \N \N 21 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -332 create_date \N ir.server.object.lines \N \N \N 21 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -333 write_uid \N ir.server.object.lines res.users \N \N 21 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -334 write_date \N ir.server.object.lines \N \N \N 21 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -335 __last_update \N ir.server.object.lines \N \N \N 21 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -336 action_id \N ir.actions.todo ir.actions.actions \N \N 22 Action \N many2one \N t \N \N t f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -337 sequence \N ir.actions.todo \N \N \N 22 Sequence \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -338 state \N ir.actions.todo \N \N \N 22 Status \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -339 name \N ir.actions.todo \N \N \N 22 Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -340 id \N ir.actions.todo \N \N \N 22 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -341 display_name \N ir.actions.todo \N \N \N 22 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -342 create_uid \N ir.actions.todo res.users \N \N 22 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -343 create_date \N ir.actions.todo \N \N \N 22 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -344 write_uid \N ir.actions.todo res.users \N \N 22 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -345 write_date \N ir.actions.todo \N \N \N 22 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -346 __last_update \N ir.actions.todo \N \N \N 22 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -347 name \N ir.actions.client \N \N \N 23 Action Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -348 type \N ir.actions.client \N \N \N 23 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -349 tag \N ir.actions.client \N \N \N 23 Client action tag An arbitrary string, interpreted by the client according to its own needs and wishes. There is no central tag repository across clients. char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -350 target \N ir.actions.client \N \N \N 23 Target Window \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -351 res_model \N ir.actions.client \N \N \N 23 Destination Model Optional model, mostly used for needactions. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -352 context \N ir.actions.client \N \N \N 23 Context Value Context dictionary as Python expression, empty by default (Default: {}) char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -353 params \N ir.actions.client \N \N \N 23 Supplementary arguments Arguments sent to the client along with the view tag binary \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -354 params_store \N ir.actions.client \N \N \N 23 Params storage \N binary \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -355 xml_id \N ir.actions.client \N \N \N 23 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -356 help \N ir.actions.client \N \N \N 23 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -357 binding_model_id \N ir.actions.client ir.model \N \N 23 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -358 binding_type \N ir.actions.client \N \N \N 23 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -359 id \N ir.actions.client \N \N \N 23 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -360 display_name \N ir.actions.client \N \N \N 23 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -361 create_uid \N ir.actions.client res.users \N \N 23 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -362 create_date \N ir.actions.client \N \N \N 23 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -363 write_uid \N ir.actions.client res.users \N \N 23 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -364 write_date \N ir.actions.client \N \N \N 23 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -365 __last_update \N ir.actions.client \N \N \N 23 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -366 name \N ir.actions.report \N \N \N 24 Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -367 type \N ir.actions.report \N \N \N 24 Action Type \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -368 binding_type \N ir.actions.report \N \N \N 24 Binding Type \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -369 model \N ir.actions.report \N \N \N 24 Model Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -370 model_id \N ir.actions.report ir.model \N \N 24 Model \N many2one \N f \N \N f t f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -371 report_type \N ir.actions.report \N \N \N 24 Report Type The type of the report that will be rendered, each one having its own rendering method. HTML means the report will be opened directly in your browser PDF means the report will be rendered using Wkhtmltopdf and downloaded by the user. selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -372 report_name \N ir.actions.report \N \N \N 24 Template Name For QWeb reports, name of the template used in the rendering. The method 'render_html' of the model 'report.template_name' will be called (if any) to give the html. For RML reports, this is the LocalService name. char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -373 report_file \N ir.actions.report \N \N \N 24 Report File The path to the main report file (depending on Report Type) or empty if the content is in another field char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -374 groups_id \N ir.actions.report res.groups \N \N 24 Groups \N many2many \N t \N \N f f f f \N base \N \N t res_groups_report_rel uid gid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -375 multi \N ir.actions.report \N \N \N 24 On Multiple Doc. If set to true, the action will not be displayed on the right toolbar of a form view. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -376 paperformat_id \N ir.actions.report report.paperformat \N \N 24 Paper Format \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -377 print_report_name \N ir.actions.report \N \N \N 24 Printed Report Name This is the filename of the report going to download. Keep empty to not change the report filename. You can use a python expression with the 'object' and 'time' variables. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -378 attachment_use \N ir.actions.report \N \N \N 24 Reload from Attachment If you check this, then the second time the user prints with same attachment name, it returns the previous report. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -614 __last_update \N ir.qweb.field.contact \N \N \N 54 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -379 attachment \N ir.actions.report \N \N \N 24 Save as Attachment Prefix This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -380 xml_id \N ir.actions.report \N \N \N 24 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -381 help \N ir.actions.report \N \N \N 24 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -382 binding_model_id \N ir.actions.report ir.model \N \N 24 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -383 id \N ir.actions.report \N \N \N 24 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -384 display_name \N ir.actions.report \N \N \N 24 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -385 create_uid \N ir.actions.report res.users \N \N 24 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -386 create_date \N ir.actions.report \N \N \N 24 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -387 write_uid \N ir.actions.report res.users \N \N 24 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -388 write_date \N ir.actions.report \N \N \N 24 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -389 __last_update \N ir.actions.report \N \N \N 24 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -390 name \N ir.attachment \N \N \N 25 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -391 datas_fname \N ir.attachment \N \N \N 25 Filename \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -392 description \N ir.attachment \N \N \N 25 Description \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -393 res_name \N ir.attachment \N \N \N 25 Resource Name \N char \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -394 res_model \N ir.attachment \N \N \N 25 Resource Model The database object this attachment will be attached to. char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -395 res_model_name \N ir.attachment \N \N \N 25 Res Model Name \N char \N f \N \N f t t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -396 res_field \N ir.attachment \N \N \N 25 Resource Field \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -397 res_id \N ir.attachment \N \N \N 25 Resource ID The record id this is attached to. integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -398 company_id \N ir.attachment res.company \N \N 25 Company \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -399 type \N ir.attachment \N \N \N 25 Type You can either upload a file from your computer or copy/paste an internet link to your file. selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -400 url \N ir.attachment \N \N \N 25 Url \N char \N t \N \N f f t f 1024 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -401 public \N ir.attachment \N \N \N 25 Is public document \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -402 access_token \N ir.attachment \N \N \N 25 Access Token \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -403 datas \N ir.attachment \N \N \N 25 File Content \N binary \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -404 db_datas \N ir.attachment \N \N \N 25 Database Data \N binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -405 store_fname \N ir.attachment \N \N \N 25 Stored Filename \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -406 file_size \N ir.attachment \N \N \N 25 File Size \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -407 checksum \N ir.attachment \N \N \N 25 Checksum/SHA1 \N char \N t \N \N f t t f 40 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -408 mimetype \N ir.attachment \N \N \N 25 Mime Type \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -409 index_content \N ir.attachment \N \N \N 25 Indexed Content \N text \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -410 active \N ir.attachment \N \N \N 25 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -411 thumbnail \N ir.attachment \N \N \N 25 Thumbnail \N binary \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -412 id \N ir.attachment \N \N \N 25 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -413 display_name \N ir.attachment \N \N \N 25 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -414 create_uid \N ir.attachment res.users \N \N 25 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -415 create_date \N ir.attachment \N \N \N 25 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -416 write_uid \N ir.attachment res.users \N \N 25 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -417 write_date \N ir.attachment \N \N \N 25 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -418 __last_update \N ir.attachment \N \N \N 25 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -419 ir_actions_server_id \N ir.cron ir.actions.server \N \N 26 Server action \N many2one \N t \N \N t f f f \N base restrict \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -420 cron_name \N ir.cron \N \N \N 26 Name \N char \N f ir_actions_server_id.name \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -421 user_id \N ir.cron res.users \N \N 26 Scheduler User \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -422 active \N ir.cron \N \N \N 26 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -423 interval_number \N ir.cron \N \N \N 26 Interval Number Repeat every x. integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -424 interval_type \N ir.cron \N \N \N 26 Interval Unit \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -425 numbercall \N ir.cron \N \N \N 26 Number of Calls How many times the method is called,\na negative number indicates no limit. integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -426 doall \N ir.cron \N \N \N 26 Repeat Missed Specify if missed occurrences should be executed when the server restarts. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -427 nextcall \N ir.cron \N \N \N 26 Next Execution Date Next planned execution date for this job. datetime \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -428 priority \N ir.cron \N \N \N 26 Priority The priority of the job, as an integer: 0 means higher priority, 10 means lower priority. integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -429 id \N ir.cron \N \N \N 26 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -430 display_name \N ir.cron \N \N \N 26 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -431 create_uid \N ir.cron res.users \N \N 26 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -432 create_date \N ir.cron \N \N \N 26 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -433 write_uid \N ir.cron res.users \N \N 26 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -434 write_date \N ir.cron \N \N \N 26 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -435 __last_update \N ir.cron \N \N \N 26 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -436 name \N ir.cron \N \N \N 26 Action Name \N char \N t ir_actions_server_id.name \N t f f t \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -437 type \N ir.cron \N \N \N 26 Action Type \N char \N t ir_actions_server_id.type \N t f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -438 usage \N ir.cron \N \N \N 26 Usage \N selection \N t ir_actions_server_id.usage \N t f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -439 state \N ir.cron \N \N \N 26 Action To Do Type of server action. The following values are available:\n- 'Execute Python Code': a block of python code that will be executed\n- 'Create': create a new record with new values\n- 'Update a Record': update the values of a record\n- 'Execute several actions': define an action that triggers several other server actions\n- 'Send Email': automatically send an email (Discuss)\n- 'Add Followers': add followers to a record (Discuss)\n- 'Create Next Activity': create an activity (Discuss) selection \N t ir_actions_server_id.state \N t f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -440 sequence \N ir.cron \N \N \N 26 Sequence When dealing with multiple actions, the execution order is based on the sequence. Low number means high priority. integer \N t ir_actions_server_id.sequence \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -441 model_id \N ir.cron ir.model \N \N 26 Model Model on which the server action runs. many2one \N t ir_actions_server_id.model_id \N t f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -442 model_name \N ir.cron \N \N \N 26 Model Name \N char \N f ir_actions_server_id.model_name \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -443 code \N ir.cron \N \N \N 26 Python Code Write Python code that the action will execute. Some variables are available for use; help about python expression is given in the help tab. text \N t ir_actions_server_id.code \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -444 child_ids \N ir.cron ir.actions.server \N \N 26 Child Actions Child server actions that will be executed. Note that the last return returned action value will be used as global return value. many2many \N t ir_actions_server_id.child_ids \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -445 crud_model_id \N ir.cron ir.model \N \N 26 Create/Write Target Model Model for record creation / update. Set this field only to specify a different model than the base model. many2one \N t ir_actions_server_id.crud_model_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -446 crud_model_name \N ir.cron \N \N \N 26 Target Model \N char \N f ir_actions_server_id.crud_model_name \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -447 link_field_id \N ir.cron ir.model.fields \N \N 26 Link using field Provide the field used to link the newly created record on the record on used by the server action. many2one \N t ir_actions_server_id.link_field_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -448 fields_lines \N ir.cron ir.server.object.lines \N \N 26 Value Mapping \N one2many \N t ir_actions_server_id.fields_lines \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -449 xml_id \N ir.cron \N \N \N 26 External ID \N char \N f ir_actions_server_id.xml_id \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -450 help \N ir.cron \N \N \N 26 Action Description Optional help text for the users with a description of the target view, such as its usage and purpose. html \N t ir_actions_server_id.help \N f f f t \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -451 binding_model_id \N ir.cron ir.model \N \N 26 Binding Model Setting a value makes this action available in the sidebar for the given model. many2one \N t ir_actions_server_id.binding_model_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -452 binding_type \N ir.cron \N \N \N 26 Binding Type \N selection \N t ir_actions_server_id.binding_type \N t f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -453 name \N ir.filters \N \N \N 27 Filter Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -454 user_id \N ir.filters res.users \N \N 27 User The user this filter is private to. When left empty the filter is public and available to all users. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -455 domain \N ir.filters \N \N \N 27 Domain \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -456 context \N ir.filters \N \N \N 27 Context \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -457 sort \N ir.filters \N \N \N 27 Sort \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -458 model_id \N ir.filters \N \N \N 27 Model \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -459 is_default \N ir.filters \N \N \N 27 Default Filter \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -460 action_id \N ir.filters ir.actions.actions \N \N 27 Action The menu action this filter applies to. When left empty the filter applies to all menus for this model. many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -461 active \N ir.filters \N \N \N 27 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -462 id \N ir.filters \N \N \N 27 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -463 display_name \N ir.filters \N \N \N 27 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -464 create_uid \N ir.filters res.users \N \N 27 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -465 create_date \N ir.filters \N \N \N 27 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -466 write_uid \N ir.filters res.users \N \N 27 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -467 write_date \N ir.filters \N \N \N 27 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -468 __last_update \N ir.filters \N \N \N 27 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -469 field_id \N ir.default ir.model.fields \N \N 28 Field \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -470 user_id \N ir.default res.users \N \N 28 User If set, action binding only applies for this user. many2one \N t \N \N f f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -471 company_id \N ir.default res.company \N \N 28 Company If set, action binding only applies for this company many2one \N t \N \N f f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -472 condition \N ir.default \N \N \N 28 Condition If set, applies the default upon condition. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -473 json_value \N ir.default \N \N \N 28 Default Value (JSON format) \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -474 id \N ir.default \N \N \N 28 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -475 display_name \N ir.default \N \N \N 28 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -476 create_uid \N ir.default res.users \N \N 28 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -477 create_date \N ir.default \N \N \N 28 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -478 write_uid \N ir.default res.users \N \N 28 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -479 write_date \N ir.default \N \N \N 28 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -480 __last_update \N ir.default \N \N \N 28 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -481 name \N ir.translation \N \N \N 29 Translated field \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -482 res_id \N ir.translation \N \N \N 29 Record ID \N integer \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -483 lang \N ir.translation \N \N \N 29 Language \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -484 type \N ir.translation \N \N \N 29 Type \N selection \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -485 src \N ir.translation \N \N \N 29 Internal Source \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -486 source \N ir.translation \N \N \N 29 Source term \N text \N f \N \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -487 value \N ir.translation \N \N \N 29 Translation Value \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -488 module \N ir.translation \N \N \N 29 Module Module this term belongs to char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -489 state \N ir.translation \N \N \N 29 Status Automatically set to let administators find new terms that might need to be translated selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -490 comments \N ir.translation \N \N \N 29 Translation comments \N text \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -491 id \N ir.translation \N \N \N 29 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -492 display_name \N ir.translation \N \N \N 29 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -493 __last_update \N ir.translation \N \N \N 29 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -494 name \N ir.exports \N \N \N 30 Export Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -495 resource \N ir.exports \N \N \N 30 Resource \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -496 export_fields \N ir.exports ir.exports.line export_id \N 30 Export ID \N one2many \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -497 id \N ir.exports \N \N \N 30 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -498 display_name \N ir.exports \N \N \N 30 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -499 create_uid \N ir.exports res.users \N \N 30 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -500 create_date \N ir.exports \N \N \N 30 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -501 write_uid \N ir.exports res.users \N \N 30 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -502 write_date \N ir.exports \N \N \N 30 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -503 __last_update \N ir.exports \N \N \N 30 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -504 name \N ir.exports.line \N \N \N 31 Field Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -505 export_id \N ir.exports.line ir.exports \N \N 31 Export \N many2one \N t \N \N f f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -506 id \N ir.exports.line \N \N \N 31 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -507 display_name \N ir.exports.line \N \N \N 31 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -508 create_uid \N ir.exports.line res.users \N \N 31 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -509 create_date \N ir.exports.line \N \N \N 31 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -510 write_uid \N ir.exports.line res.users \N \N 31 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -511 write_date \N ir.exports.line \N \N \N 31 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -512 __last_update \N ir.exports.line \N \N \N 31 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -513 name \N ir.rule \N \N \N 32 Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -514 active \N ir.rule \N \N \N 32 Active If you uncheck the active field, it will disable the record rule without deleting it (if you delete a native record rule, it may be re-created when you reload the module). boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -515 model_id \N ir.rule ir.model \N \N 32 Object \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -516 groups \N ir.rule res.groups \N \N 32 Groups \N many2many \N t \N \N f f f f \N base \N \N t rule_group_rel rule_group_id group_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -517 domain_force \N ir.rule \N \N \N 32 Domain \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -518 perm_read \N ir.rule \N \N \N 32 Apply for Read \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -519 perm_write \N ir.rule \N \N \N 32 Apply for Write \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -520 perm_create \N ir.rule \N \N \N 32 Apply for Create \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -521 perm_unlink \N ir.rule \N \N \N 32 Apply for Delete \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -522 global \N ir.rule \N \N \N 32 Global If no group is specified the rule is global and applied to everyone boolean \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -524 display_name \N ir.rule \N \N \N 32 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -525 create_uid \N ir.rule res.users \N \N 32 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -526 create_date \N ir.rule \N \N \N 32 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -527 write_uid \N ir.rule res.users \N \N 32 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -528 write_date \N ir.rule \N \N \N 32 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -529 __last_update \N ir.rule \N \N \N 32 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -530 key \N ir.config_parameter \N \N \N 33 Key \N char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -531 value \N ir.config_parameter \N \N \N 33 Value \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -532 id \N ir.config_parameter \N \N \N 33 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -533 display_name \N ir.config_parameter \N \N \N 33 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -534 create_uid \N ir.config_parameter res.users \N \N 33 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -535 create_date \N ir.config_parameter \N \N \N 33 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -536 write_uid \N ir.config_parameter res.users \N \N 33 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -537 write_date \N ir.config_parameter \N \N \N 33 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -538 __last_update \N ir.config_parameter \N \N \N 33 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -539 id \N ir.autovacuum \N \N \N 34 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -540 display_name \N ir.autovacuum \N \N \N 34 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -541 __last_update \N ir.autovacuum \N \N \N 34 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -542 name \N ir.mail_server \N \N \N 35 Description \N char \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -543 smtp_host \N ir.mail_server \N \N \N 35 SMTP Server Hostname or IP of SMTP server char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -544 smtp_port \N ir.mail_server \N \N \N 35 SMTP Port SMTP Port. Usually 465 for SSL, and 25 or 587 for other cases. integer \N t \N \N t f f f 5 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -545 smtp_user \N ir.mail_server \N \N \N 35 Username Optional username for SMTP authentication char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -546 smtp_pass \N ir.mail_server \N \N \N 35 Password Optional password for SMTP authentication char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -547 smtp_encryption \N ir.mail_server \N \N \N 35 Connection Security Choose the connection encryption scheme:\n- None: SMTP sessions are done in cleartext.\n- TLS (STARTTLS): TLS encryption is requested at start of SMTP session (Recommended)\n- SSL/TLS: SMTP sessions are encrypted with SSL/TLS through a dedicated port (default: 465) selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -548 smtp_debug \N ir.mail_server \N \N \N 35 Debugging If enabled, the full output of SMTP sessions will be written to the server log at DEBUG level (this is very verbose and may include confidential info!) boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -615 id \N ir.qweb.field.qweb \N \N \N 55 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -549 sequence \N ir.mail_server \N \N \N 35 Priority When no specific mail server is requested for a mail, the highest priority one is used. Default priority is 10 (smaller number = higher priority) integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -550 active \N ir.mail_server \N \N \N 35 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -551 id \N ir.mail_server \N \N \N 35 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -552 display_name \N ir.mail_server \N \N \N 35 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -553 create_uid \N ir.mail_server res.users \N \N 35 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -554 create_date \N ir.mail_server \N \N \N 35 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -555 write_uid \N ir.mail_server res.users \N \N 35 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -556 write_date \N ir.mail_server \N \N \N 35 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -557 __last_update \N ir.mail_server \N \N \N 35 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -558 id \N ir.fields.converter \N \N \N 36 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -559 display_name \N ir.fields.converter \N \N \N 36 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -560 __last_update \N ir.fields.converter \N \N \N 36 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -561 id \N ir.qweb \N \N \N 37 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -562 display_name \N ir.qweb \N \N \N 37 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -563 __last_update \N ir.qweb \N \N \N 37 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -564 id \N ir.qweb.field \N \N \N 38 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -565 display_name \N ir.qweb.field \N \N \N 38 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -566 __last_update \N ir.qweb.field \N \N \N 38 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -567 id \N ir.qweb.field.integer \N \N \N 39 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -568 display_name \N ir.qweb.field.integer \N \N \N 39 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -569 __last_update \N ir.qweb.field.integer \N \N \N 39 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -570 id \N ir.qweb.field.float \N \N \N 40 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -571 display_name \N ir.qweb.field.float \N \N \N 40 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -572 __last_update \N ir.qweb.field.float \N \N \N 40 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -573 id \N ir.qweb.field.date \N \N \N 41 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -574 display_name \N ir.qweb.field.date \N \N \N 41 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -575 __last_update \N ir.qweb.field.date \N \N \N 41 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -576 id \N ir.qweb.field.datetime \N \N \N 42 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -577 display_name \N ir.qweb.field.datetime \N \N \N 42 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -578 __last_update \N ir.qweb.field.datetime \N \N \N 42 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -579 id \N ir.qweb.field.text \N \N \N 43 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -580 display_name \N ir.qweb.field.text \N \N \N 43 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -581 __last_update \N ir.qweb.field.text \N \N \N 43 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -582 id \N ir.qweb.field.selection \N \N \N 44 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -583 display_name \N ir.qweb.field.selection \N \N \N 44 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -584 __last_update \N ir.qweb.field.selection \N \N \N 44 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -585 id \N ir.qweb.field.many2one \N \N \N 45 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -586 display_name \N ir.qweb.field.many2one \N \N \N 45 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -587 __last_update \N ir.qweb.field.many2one \N \N \N 45 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -588 id \N ir.qweb.field.many2many \N \N \N 46 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -589 display_name \N ir.qweb.field.many2many \N \N \N 46 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -590 __last_update \N ir.qweb.field.many2many \N \N \N 46 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -591 id \N ir.qweb.field.html \N \N \N 47 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -592 display_name \N ir.qweb.field.html \N \N \N 47 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -593 __last_update \N ir.qweb.field.html \N \N \N 47 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -594 id \N ir.qweb.field.image \N \N \N 48 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -595 display_name \N ir.qweb.field.image \N \N \N 48 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -596 __last_update \N ir.qweb.field.image \N \N \N 48 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -597 id \N ir.qweb.field.monetary \N \N \N 49 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -598 display_name \N ir.qweb.field.monetary \N \N \N 49 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -599 __last_update \N ir.qweb.field.monetary \N \N \N 49 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -600 id \N ir.qweb.field.float_time \N \N \N 50 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -601 display_name \N ir.qweb.field.float_time \N \N \N 50 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -602 __last_update \N ir.qweb.field.float_time \N \N \N 50 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -603 id \N ir.qweb.field.duration \N \N \N 51 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -604 display_name \N ir.qweb.field.duration \N \N \N 51 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -605 __last_update \N ir.qweb.field.duration \N \N \N 51 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -606 id \N ir.qweb.field.relative \N \N \N 52 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -607 display_name \N ir.qweb.field.relative \N \N \N 52 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -608 __last_update \N ir.qweb.field.relative \N \N \N 52 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -609 id \N ir.qweb.field.barcode \N \N \N 53 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -610 display_name \N ir.qweb.field.barcode \N \N \N 53 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -611 __last_update \N ir.qweb.field.barcode \N \N \N 53 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -612 id \N ir.qweb.field.contact \N \N \N 54 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -613 display_name \N ir.qweb.field.contact \N \N \N 54 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -616 display_name \N ir.qweb.field.qweb \N \N \N 55 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -617 __last_update \N ir.qweb.field.qweb \N \N \N 55 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -619 display_name \N ir.http \N \N \N 56 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -620 __last_update \N ir.http \N \N \N 56 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -621 create_uid \N ir.logging \N \N \N 57 Created by \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -622 create_date \N ir.logging \N \N \N 57 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -623 write_uid \N ir.logging \N \N \N 57 Last Updated by \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -624 write_date \N ir.logging \N \N \N 57 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -625 name \N ir.logging \N \N \N 57 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -626 type \N ir.logging \N \N \N 57 Type \N selection \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -627 dbname \N ir.logging \N \N \N 57 Database Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -628 level \N ir.logging \N \N \N 57 Level \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -629 message \N ir.logging \N \N \N 57 Message \N text \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -630 path \N ir.logging \N \N \N 57 Path \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -631 func \N ir.logging \N \N \N 57 Function \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -632 line \N ir.logging \N \N \N 57 Line \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -633 id \N ir.logging \N \N \N 57 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -634 display_name \N ir.logging \N \N \N 57 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -635 __last_update \N ir.logging \N \N \N 57 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -636 name \N ir.property \N \N \N 58 Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -637 res_id \N ir.property \N \N \N 58 Resource If not set, acts as a default value for new resources char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -638 company_id \N ir.property res.company \N \N 58 Company \N many2one \N t \N \N f f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -639 fields_id \N ir.property ir.model.fields \N \N 58 Field \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -640 value_float \N ir.property \N \N \N 58 Value Float \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -641 value_integer \N ir.property \N \N \N 58 Value Integer \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -642 value_text \N ir.property \N \N \N 58 Value Text \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -643 value_binary \N ir.property \N \N \N 58 Value Binary \N binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -644 value_reference \N ir.property \N \N \N 58 Value Reference \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -645 value_datetime \N ir.property \N \N \N 58 Value Datetime \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -646 type \N ir.property \N \N \N 58 Type \N selection \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -647 id \N ir.property \N \N \N 58 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -648 display_name \N ir.property \N \N \N 58 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -649 create_uid \N ir.property res.users \N \N 58 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -650 create_date \N ir.property \N \N \N 58 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -651 write_uid \N ir.property res.users \N \N 58 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -652 write_date \N ir.property \N \N \N 58 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -653 __last_update \N ir.property \N \N \N 58 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -654 name \N ir.module.category \N \N \N 59 Name \N char \N t \N \N t f t t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -655 parent_id \N ir.module.category ir.module.category \N \N 59 Parent Application \N many2one \N t \N \N f f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -656 child_ids \N ir.module.category ir.module.category parent_id \N 59 Child Applications \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -657 module_nr \N ir.module.category \N \N \N 59 Number of Apps \N integer \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -658 module_ids \N ir.module.category ir.module.module category_id \N 59 Modules \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -659 description \N ir.module.category \N \N \N 59 Description \N text \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -660 sequence \N ir.module.category \N \N \N 59 Sequence \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -661 visible \N ir.module.category \N \N \N 59 Visible \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -662 exclusive \N ir.module.category \N \N \N 59 Exclusive \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -663 xml_id \N ir.module.category \N \N \N 59 External ID \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -664 id \N ir.module.category \N \N \N 59 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -665 display_name \N ir.module.category \N \N \N 59 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -666 create_uid \N ir.module.category res.users \N \N 59 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -667 create_date \N ir.module.category \N \N \N 59 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -668 write_uid \N ir.module.category res.users \N \N 59 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -669 write_date \N ir.module.category \N \N \N 59 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -670 __last_update \N ir.module.category \N \N \N 59 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -671 name \N ir.module.module \N \N \N 60 Technical Name \N char \N t \N \N t t t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -672 category_id \N ir.module.module ir.module.category \N \N 60 Category \N many2one \N t \N \N f t t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -673 shortdesc \N ir.module.module \N \N \N 60 Module Name \N char \N t \N \N f t f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -674 summary \N ir.module.module \N \N \N 60 Summary \N char \N t \N \N f t f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -675 description \N ir.module.module \N \N \N 60 Description \N text \N t \N \N f t f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -676 description_html \N ir.module.module \N \N \N 60 Description HTML \N html \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -677 author \N ir.module.module \N \N \N 60 Author \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -678 maintainer \N ir.module.module \N \N \N 60 Maintainer \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -679 contributors \N ir.module.module \N \N \N 60 Contributors \N text \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -680 website \N ir.module.module \N \N \N 60 Website \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -681 installed_version \N ir.module.module \N \N \N 60 Latest Version \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -682 latest_version \N ir.module.module \N \N \N 60 Installed Version \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -683 published_version \N ir.module.module \N \N \N 60 Published Version \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -684 url \N ir.module.module \N \N \N 60 URL \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -685 sequence \N ir.module.module \N \N \N 60 Sequence \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -686 dependencies_id \N ir.module.module ir.module.module.dependency module_id \N 60 Dependencies \N one2many \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -687 exclusion_ids \N ir.module.module ir.module.module.exclusion module_id \N 60 Exclusions \N one2many \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -688 auto_install \N ir.module.module \N \N \N 60 Automatic Installation An auto-installable module is automatically installed by the system when all its dependencies are satisfied. If the module has no dependency, it is always installed. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -689 state \N ir.module.module \N \N \N 60 Status \N selection \N t \N \N f t t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -690 demo \N ir.module.module \N \N \N 60 Demo Data \N boolean \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -691 license \N ir.module.module \N \N \N 60 License \N selection \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -692 menus_by_module \N ir.module.module \N \N \N 60 Menus \N text \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -693 reports_by_module \N ir.module.module \N \N \N 60 Reports \N text \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -694 views_by_module \N ir.module.module \N \N \N 60 Views \N text \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -695 application \N ir.module.module \N \N \N 60 Application \N boolean \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -696 icon \N ir.module.module \N \N \N 60 Icon URL \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -697 icon_image \N ir.module.module \N \N \N 60 Icon \N binary \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -698 to_buy \N ir.module.module \N \N \N 60 Odoo Enterprise Module \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -699 id \N ir.module.module \N \N \N 60 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -700 display_name \N ir.module.module \N \N \N 60 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -701 create_uid \N ir.module.module res.users \N \N 60 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -702 create_date \N ir.module.module \N \N \N 60 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -703 write_uid \N ir.module.module res.users \N \N 60 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -704 write_date \N ir.module.module \N \N \N 60 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -705 __last_update \N ir.module.module \N \N \N 60 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -706 name \N ir.module.module.dependency \N \N \N 61 Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -707 module_id \N ir.module.module.dependency ir.module.module \N \N 61 Module \N many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -708 depend_id \N ir.module.module.dependency ir.module.module \N \N 61 Dependency \N many2one \N f \N \N f t f f \N base set null \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -709 state \N ir.module.module.dependency \N \N \N 61 Status \N selection \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -710 id \N ir.module.module.dependency \N \N \N 61 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -711 display_name \N ir.module.module.dependency \N \N \N 61 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -712 create_uid \N ir.module.module.dependency res.users \N \N 61 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -713 create_date \N ir.module.module.dependency \N \N \N 61 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -714 write_uid \N ir.module.module.dependency res.users \N \N 61 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -715 write_date \N ir.module.module.dependency \N \N \N 61 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -716 __last_update \N ir.module.module.dependency \N \N \N 61 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -717 name \N ir.module.module.exclusion \N \N \N 62 Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -718 module_id \N ir.module.module.exclusion ir.module.module \N \N 62 Module \N many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -719 exclusion_id \N ir.module.module.exclusion ir.module.module \N \N 62 Exclusion Module \N many2one \N f \N \N f t f f \N base set null \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -720 state \N ir.module.module.exclusion \N \N \N 62 Status \N selection \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -721 id \N ir.module.module.exclusion \N \N \N 62 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -722 display_name \N ir.module.module.exclusion \N \N \N 62 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -723 create_uid \N ir.module.module.exclusion res.users \N \N 62 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -724 create_date \N ir.module.module.exclusion \N \N \N 62 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -725 write_uid \N ir.module.module.exclusion res.users \N \N 62 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -726 write_date \N ir.module.module.exclusion \N \N \N 62 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -727 __last_update \N ir.module.module.exclusion \N \N \N 62 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -728 id \N ir.demo \N \N \N 63 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -729 display_name \N ir.demo \N \N \N 63 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -730 create_uid \N ir.demo res.users \N \N 63 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -731 create_date \N ir.demo \N \N \N 63 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -732 write_uid \N ir.demo res.users \N \N 63 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -733 write_date \N ir.demo \N \N \N 63 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -734 __last_update \N ir.demo \N \N \N 63 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -735 module_id \N ir.demo_failure ir.module.module \N \N 64 Module \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -736 error \N ir.demo_failure \N \N \N 64 Error \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -737 wizard_id \N ir.demo_failure ir.demo_failure.wizard \N \N 64 Wizard \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -738 id \N ir.demo_failure \N \N \N 64 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -739 display_name \N ir.demo_failure \N \N \N 64 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -740 create_uid \N ir.demo_failure res.users \N \N 64 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -741 create_date \N ir.demo_failure \N \N \N 64 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -742 write_uid \N ir.demo_failure res.users \N \N 64 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -743 write_date \N ir.demo_failure \N \N \N 64 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -744 __last_update \N ir.demo_failure \N \N \N 64 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -800 create_date \N res.country.group \N \N \N 68 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -745 failure_ids \N ir.demo_failure.wizard ir.demo_failure wizard_id \N 65 Demo Installation Failures \N one2many \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -746 failures_count \N ir.demo_failure.wizard \N \N \N 65 Failures Count \N integer \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -747 id \N ir.demo_failure.wizard \N \N \N 65 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -748 display_name \N ir.demo_failure.wizard \N \N \N 65 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -749 create_uid \N ir.demo_failure.wizard res.users \N \N 65 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -750 create_date \N ir.demo_failure.wizard \N \N \N 65 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -751 write_uid \N ir.demo_failure.wizard res.users \N \N 65 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -752 write_date \N ir.demo_failure.wizard \N \N \N 65 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -753 __last_update \N ir.demo_failure.wizard \N \N \N 65 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -754 name \N report.paperformat \N \N \N 66 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -755 default \N report.paperformat \N \N \N 66 Default paper format ? \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -756 format \N report.paperformat \N \N \N 66 Paper size Select Proper Paper size selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -757 margin_top \N report.paperformat \N \N \N 66 Top Margin (mm) \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -758 margin_bottom \N report.paperformat \N \N \N 66 Bottom Margin (mm) \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -759 margin_left \N report.paperformat \N \N \N 66 Left Margin (mm) \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -760 margin_right \N report.paperformat \N \N \N 66 Right Margin (mm) \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -761 page_height \N report.paperformat \N \N \N 66 Page height (mm) \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -762 page_width \N report.paperformat \N \N \N 66 Page width (mm) \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -763 orientation \N report.paperformat \N \N \N 66 Orientation \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -764 header_line \N report.paperformat \N \N \N 66 Display a header line \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -765 header_spacing \N report.paperformat \N \N \N 66 Header spacing \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -766 dpi \N report.paperformat \N \N \N 66 Output DPI \N integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -767 report_ids \N report.paperformat ir.actions.report paperformat_id \N 66 Associated reports Explicitly associated reports one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -768 print_page_width \N report.paperformat \N \N \N 66 Print page width (mm) \N float \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -769 print_page_height \N report.paperformat \N \N \N 66 Print page height (mm) \N float \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -770 id \N report.paperformat \N \N \N 66 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -771 display_name \N report.paperformat \N \N \N 66 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -772 create_uid \N report.paperformat res.users \N \N 66 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -773 create_date \N report.paperformat \N \N \N 66 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -774 write_uid \N report.paperformat res.users \N \N 66 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -775 write_date \N report.paperformat \N \N \N 66 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -776 __last_update \N report.paperformat \N \N \N 66 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -777 name \N res.country \N \N \N 67 Country Name The full name of the country. char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -778 code \N res.country \N \N \N 67 Country Code The ISO country code in two chars. \nYou can use this field for quick search. char \N t \N \N f f f f 2 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -779 address_format \N res.country \N \N \N 67 Layout in Reports Display format to use for addresses belonging to this country.\n\nYou can use python-style string pattern with all the fields of the address (for example, use '%(street)s' to display the field 'street') plus\n%(state_name)s: the name of the state\n%(state_code)s: the code of the state\n%(country_name)s: the name of the country\n%(country_code)s: the code of the country text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -780 address_view_id \N res.country ir.ui.view \N \N 67 Input View Use this field if you want to replace the usual way to encode a complete address. Note that the address_format field is used to modify the way to display addresses (in reports for example), while this field is used to modify the input form for addresses. many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -781 currency_id \N res.country res.currency \N \N 67 Currency \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -782 image \N res.country \N \N \N 67 Image \N binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -783 phone_code \N res.country \N \N \N 67 Country Calling Code \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -784 country_group_ids \N res.country res.country.group \N \N 67 Country Groups \N many2many \N t \N \N f f f f \N base \N \N t res_country_res_country_group_rel res_country_id res_country_group_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -785 state_ids \N res.country res.country.state country_id \N 67 States \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -786 name_position \N res.country \N \N \N 67 Customer Name Position Determines where the customer/company name should be placed, i.e. after or before the address. selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -787 vat_label \N res.country \N \N \N 67 Vat Label Use this field if you want to change vat label. char \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -788 id \N res.country \N \N \N 67 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -789 display_name \N res.country \N \N \N 67 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -790 create_uid \N res.country res.users \N \N 67 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -791 create_date \N res.country \N \N \N 67 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -792 write_uid \N res.country res.users \N \N 67 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -793 write_date \N res.country \N \N \N 67 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -794 __last_update \N res.country \N \N \N 67 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -795 name \N res.country.group \N \N \N 68 Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -796 country_ids \N res.country.group res.country \N \N 68 Countries \N many2many \N t \N \N f f f f \N base \N \N t res_country_res_country_group_rel res_country_group_id res_country_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -797 id \N res.country.group \N \N \N 68 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -798 display_name \N res.country.group \N \N \N 68 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -799 create_uid \N res.country.group res.users \N \N 68 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -801 write_uid \N res.country.group res.users \N \N 68 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -802 write_date \N res.country.group \N \N \N 68 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -803 __last_update \N res.country.group \N \N \N 68 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -804 country_id \N res.country.state res.country \N \N 69 Country \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -805 name \N res.country.state \N \N \N 69 State Name Administrative divisions of a country. E.g. Fed. State, Departement, Canton char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -806 code \N res.country.state \N \N \N 69 State Code The state code. char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -807 id \N res.country.state \N \N \N 69 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -808 display_name \N res.country.state \N \N \N 69 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -809 create_uid \N res.country.state res.users \N \N 69 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -810 create_date \N res.country.state \N \N \N 69 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -811 write_uid \N res.country.state res.users \N \N 69 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -812 write_date \N res.country.state \N \N \N 69 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -813 __last_update \N res.country.state \N \N \N 69 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -814 name \N res.lang \N \N \N 70 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -815 code \N res.lang \N \N \N 70 Locale Code This field is used to set/get locales for user char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -816 iso_code \N res.lang \N \N \N 70 ISO code This ISO code is the name of po files to use for translations char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -817 translatable \N res.lang \N \N \N 70 Translatable \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -818 active \N res.lang \N \N \N 70 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -819 direction \N res.lang \N \N \N 70 Direction \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -820 date_format \N res.lang \N \N \N 70 Date Format \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -821 time_format \N res.lang \N \N \N 70 Time Format \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -822 week_start \N res.lang \N \N \N 70 First Day of Week \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -823 grouping \N res.lang \N \N \N 70 Separator Format The Separator Format should be like [,n] where 0 < n :starting from Unit digit. -1 will end the separation. e.g. [3,2,-1] will represent 106500 to be 1,06,500; [1,2,-1] will represent it to be 106,50,0;[3] will represent it as 106,500. Provided ',' as the thousand separator in each case. char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -824 decimal_point \N res.lang \N \N \N 70 Decimal Separator \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -825 thousands_sep \N res.lang \N \N \N 70 Thousands Separator \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -827 display_name \N res.lang \N \N \N 70 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -828 create_uid \N res.lang res.users \N \N 70 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -829 create_date \N res.lang \N \N \N 70 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -830 write_uid \N res.lang res.users \N \N 70 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -831 write_date \N res.lang \N \N \N 70 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -832 __last_update \N res.lang \N \N \N 70 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -833 id \N format.address.mixin \N \N \N 71 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -834 display_name \N format.address.mixin \N \N \N 71 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -835 __last_update \N format.address.mixin \N \N \N 71 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -836 name \N res.partner.category \N \N \N 72 Tag Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -837 color \N res.partner.category \N \N \N 72 Color Index \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -838 parent_id \N res.partner.category res.partner.category \N \N 72 Parent Category \N many2one \N t \N \N f f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -839 child_ids \N res.partner.category res.partner.category parent_id \N 72 Child Tags \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -840 active \N res.partner.category \N \N \N 72 Active The active field allows you to hide the category without removing it. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -841 parent_path \N res.partner.category \N \N \N 72 Parent Path \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -842 partner_ids \N res.partner.category res.partner \N \N 72 Partners \N many2many \N t \N \N f f f f \N base \N \N t res_partner_res_partner_category_rel category_id partner_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -843 id \N res.partner.category \N \N \N 72 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -844 display_name \N res.partner.category \N \N \N 72 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -845 create_uid \N res.partner.category res.users \N \N 72 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -846 create_date \N res.partner.category \N \N \N 72 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -847 write_uid \N res.partner.category res.users \N \N 72 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -848 write_date \N res.partner.category \N \N \N 72 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -849 __last_update \N res.partner.category \N \N \N 72 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -850 name \N res.partner.title \N \N \N 73 Title \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -851 shortcut \N res.partner.title \N \N \N 73 Abbreviation \N char \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -852 id \N res.partner.title \N \N \N 73 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -853 display_name \N res.partner.title \N \N \N 73 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -854 create_uid \N res.partner.title res.users \N \N 73 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -855 create_date \N res.partner.title \N \N \N 73 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -856 write_uid \N res.partner.title res.users \N \N 73 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -857 write_date \N res.partner.title \N \N \N 73 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -858 __last_update \N res.partner.title \N \N \N 73 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -859 name \N res.partner \N \N \N 74 Name \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -860 display_name \N res.partner \N \N \N 74 Display Name \N char \N f \N \N f t t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -861 date \N res.partner \N \N \N 74 Date \N date \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -862 title \N res.partner res.partner.title \N \N 74 Title \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -863 parent_id \N res.partner res.partner \N \N 74 Related Company \N many2one \N t \N \N f f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -864 parent_name \N res.partner \N \N \N 74 Parent name \N char \N f parent_id.name \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -865 child_ids \N res.partner res.partner parent_id \N 74 Contacts \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -866 ref \N res.partner \N \N \N 74 Internal Reference \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -867 lang \N res.partner \N \N \N 74 Language All the emails and documents sent to this contact will be translated in this language. selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -868 tz \N res.partner \N \N \N 74 Timezone The partner's timezone, used to output proper date and time values inside printed reports. It is important to set a value for this field. You should use the same timezone that is otherwise used to pick and render date and time values: your computer's timezone. selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -869 tz_offset \N res.partner \N \N \N 74 Timezone offset \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -870 user_id \N res.partner res.users \N \N 74 Salesperson The internal user in charge of this contact. many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -871 vat \N res.partner \N \N \N 74 Tax ID The Tax Identification Number. Complete it if the contact is subjected to government taxes. Used in some legal statements. char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -872 bank_ids \N res.partner res.partner.bank partner_id \N 74 Banks \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -873 website \N res.partner \N \N \N 74 Website \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -874 comment \N res.partner \N \N \N 74 Notes \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -875 category_id \N res.partner res.partner.category \N \N 74 Tags \N many2many \N t \N \N f f f f \N base \N \N t res_partner_res_partner_category_rel partner_id category_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -876 credit_limit \N res.partner \N \N \N 74 Credit Limit \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -877 barcode \N res.partner \N \N \N 74 Barcode Use a barcode to identify this contact from the Point of Sale. char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -878 active \N res.partner \N \N \N 74 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -879 customer \N res.partner \N \N \N 74 Is a Customer Check this box if this contact is a customer. It can be selected in sales orders. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -880 supplier \N res.partner \N \N \N 74 Is a Vendor Check this box if this contact is a vendor. It can be selected in purchase orders. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -881 employee \N res.partner \N \N \N 74 Employee Check this box if this contact is an Employee. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -882 function \N res.partner \N \N \N 74 Job Position \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -883 type \N res.partner \N \N \N 74 Address Type Used by Sales and Purchase Apps to select the relevant address depending on the context. selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -884 street \N res.partner \N \N \N 74 Street \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -885 street2 \N res.partner \N \N \N 74 Street2 \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -886 zip \N res.partner \N \N \N 74 Zip \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -887 city \N res.partner \N \N \N 74 City \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -888 state_id \N res.partner res.country.state \N \N 74 State \N many2one \N t \N \N f f f f \N base restrict \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -889 country_id \N res.partner res.country \N \N 74 Country \N many2one \N t \N \N f f f f \N base restrict \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -890 email \N res.partner \N \N \N 74 Email \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -891 email_formatted \N res.partner \N \N \N 74 Formatted Email Format email address "Name " char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -892 phone \N res.partner \N \N \N 74 Phone \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -893 mobile \N res.partner \N \N \N 74 Mobile \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -894 is_company \N res.partner \N \N \N 74 Is a Company Check if the contact is a company, otherwise it is a person boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -895 industry_id \N res.partner res.partner.industry \N \N 74 Industry \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -896 company_type \N res.partner \N \N \N 74 Company Type \N selection \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -897 company_id \N res.partner res.company \N \N 74 Company \N many2one \N t \N \N f f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -898 color \N res.partner \N \N \N 74 Color Index \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -899 user_ids \N res.partner res.users partner_id \N 74 Users \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -900 partner_share \N res.partner \N \N \N 74 Share Partner Either customer (not a user), either shared user. Indicated the current partner is a customer without access or with a limited access created for sharing data. boolean \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -901 contact_address \N res.partner \N \N \N 74 Complete Address \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -902 commercial_partner_id \N res.partner res.partner \N \N 74 Commercial Entity \N many2one \N f \N \N f t t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -903 commercial_company_name \N res.partner \N \N \N 74 Company Name Entity \N char \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -904 company_name \N res.partner \N \N \N 74 Company Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -905 image \N res.partner \N \N \N 74 Image This field holds the image used as avatar for this contact, limited to 1024x1024px binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -906 image_medium \N res.partner \N \N \N 74 Medium-sized image Medium-sized image of this contact. It is automatically resized as a 128x128px image, with aspect ratio preserved. Use this field in form views or some kanban views. binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -907 image_small \N res.partner \N \N \N 74 Small-sized image Small-sized image of this contact. It is automatically resized as a 64x64px image, with aspect ratio preserved. Use this field anywhere a small image is required. binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -908 self \N res.partner res.partner \N \N 74 Self \N many2one \N f \N \N f t f f \N base set null \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -909 id \N res.partner \N \N \N 74 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -910 create_uid \N res.partner res.users \N \N 74 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -911 create_date \N res.partner \N \N \N 74 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -912 write_uid \N res.partner res.users \N \N 74 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -913 write_date \N res.partner \N \N \N 74 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -914 __last_update \N res.partner \N \N \N 74 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -915 name \N res.partner.industry \N \N \N 75 Name \N char \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -916 full_name \N res.partner.industry \N \N \N 75 Full Name \N char \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -917 active \N res.partner.industry \N \N \N 75 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -918 id \N res.partner.industry \N \N \N 75 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -919 display_name \N res.partner.industry \N \N \N 75 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -920 create_uid \N res.partner.industry res.users \N \N 75 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -921 create_date \N res.partner.industry \N \N \N 75 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -922 write_uid \N res.partner.industry res.users \N \N 75 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -923 write_date \N res.partner.industry \N \N \N 75 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -924 __last_update \N res.partner.industry \N \N \N 75 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -925 name \N res.bank \N \N \N 76 Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -926 street \N res.bank \N \N \N 76 Street \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -927 street2 \N res.bank \N \N \N 76 Street2 \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -928 zip \N res.bank \N \N \N 76 Zip \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -929 city \N res.bank \N \N \N 76 City \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -930 state \N res.bank res.country.state \N \N 76 Fed. State \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -931 country \N res.bank res.country \N \N 76 Country \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -932 email \N res.bank \N \N \N 76 Email \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -933 phone \N res.bank \N \N \N 76 Phone \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -934 active \N res.bank \N \N \N 76 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -935 bic \N res.bank \N \N \N 76 Bank Identifier Code Sometimes called BIC or Swift. char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -936 id \N res.bank \N \N \N 76 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -937 display_name \N res.bank \N \N \N 76 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -938 create_uid \N res.bank res.users \N \N 76 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -939 create_date \N res.bank \N \N \N 76 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -940 write_uid \N res.bank res.users \N \N 76 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -941 write_date \N res.bank \N \N \N 76 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -942 __last_update \N res.bank \N \N \N 76 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -943 acc_type \N res.partner.bank \N \N \N 77 Type Bank account type: Normal or IBAN. Inferred from the bank account number. selection \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -944 acc_number \N res.partner.bank \N \N \N 77 Account Number \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -945 sanitized_acc_number \N res.partner.bank \N \N \N 77 Sanitized Account Number \N char \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -946 acc_holder_name \N res.partner.bank \N \N \N 77 Account Holder Name Account holder name, in case it is different than the name of the Account Holder char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -947 partner_id \N res.partner.bank res.partner \N \N 77 Account Holder \N many2one \N t \N \N t f t f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -948 bank_id \N res.partner.bank res.bank \N \N 77 Bank \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -949 bank_name \N res.partner.bank \N \N \N 77 Name \N char \N f bank_id.name \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -950 bank_bic \N res.partner.bank \N \N \N 77 Bank Identifier Code Sometimes called BIC or Swift. char \N f bank_id.bic \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -951 sequence \N res.partner.bank \N \N \N 77 Sequence \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -952 currency_id \N res.partner.bank res.currency \N \N 77 Currency \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -953 company_id \N res.partner.bank res.company \N \N 77 Company \N many2one \N t \N \N f f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -954 qr_code_valid \N res.partner.bank \N \N \N 77 Has all required arguments \N boolean \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -955 id \N res.partner.bank \N \N \N 77 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -956 display_name \N res.partner.bank \N \N \N 77 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -957 create_uid \N res.partner.bank res.users \N \N 77 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -958 create_date \N res.partner.bank \N \N \N 77 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -959 write_uid \N res.partner.bank res.users \N \N 77 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -960 write_date \N res.partner.bank \N \N \N 77 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -961 __last_update \N res.partner.bank \N \N \N 77 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -962 id \N res.config \N \N \N 78 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -963 display_name \N res.config \N \N \N 78 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -964 create_uid \N res.config res.users \N \N 78 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -965 create_date \N res.config \N \N \N 78 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -966 write_uid \N res.config res.users \N \N 78 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -967 write_date \N res.config \N \N \N 78 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -968 __last_update \N res.config \N \N \N 78 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -969 id \N res.config.installer \N \N \N 79 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -970 display_name \N res.config.installer \N \N \N 79 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -971 create_uid \N res.config.installer res.users \N \N 79 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -972 create_date \N res.config.installer \N \N \N 79 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -973 write_uid \N res.config.installer res.users \N \N 79 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -974 write_date \N res.config.installer \N \N \N 79 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -975 __last_update \N res.config.installer \N \N \N 79 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -976 id \N res.config.settings \N \N \N 80 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -977 display_name \N res.config.settings \N \N \N 80 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -978 create_uid \N res.config.settings res.users \N \N 80 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -979 create_date \N res.config.settings \N \N \N 80 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -980 write_uid \N res.config.settings res.users \N \N 80 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -981 write_date \N res.config.settings \N \N \N 80 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -982 __last_update \N res.config.settings \N \N \N 80 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -983 name \N res.currency \N \N \N 81 Currency Currency Code (ISO 4217) char \N t \N \N t f f f 3 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -984 symbol \N res.currency \N \N \N 81 Symbol Currency sign, to be used when printing amounts. char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -985 rate \N res.currency \N \N \N 81 Current Rate The rate of the currency to the currency of rate 1. float \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -986 rate_ids \N res.currency res.currency.rate currency_id \N 81 Rates \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -987 rounding \N res.currency \N \N \N 81 Rounding Factor \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -988 decimal_places \N res.currency \N \N \N 81 Decimal Places \N integer \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -989 active \N res.currency \N \N \N 81 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -990 position \N res.currency \N \N \N 81 Symbol Position Determines where the currency symbol should be placed after or before the amount. selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -991 date \N res.currency \N \N \N 81 Date \N date \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -992 currency_unit_label \N res.currency \N \N \N 81 Currency Unit Currency Unit Name char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -993 currency_subunit_label \N res.currency \N \N \N 81 Currency Subunit Currency Subunit Name char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -994 id \N res.currency \N \N \N 81 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -995 display_name \N res.currency \N \N \N 81 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -996 create_uid \N res.currency res.users \N \N 81 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -997 create_date \N res.currency \N \N \N 81 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -998 write_uid \N res.currency res.users \N \N 81 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -999 write_date \N res.currency \N \N \N 81 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1000 __last_update \N res.currency \N \N \N 81 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1001 name \N res.currency.rate \N \N \N 82 Date \N date \N t \N \N t f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1002 rate \N res.currency.rate \N \N \N 82 Rate The rate of the currency to the currency of rate 1 float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1003 currency_id \N res.currency.rate res.currency \N \N 82 Currency \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1004 company_id \N res.currency.rate res.company \N \N 82 Company \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1005 id \N res.currency.rate \N \N \N 82 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1006 display_name \N res.currency.rate \N \N \N 82 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1007 create_uid \N res.currency.rate res.users \N \N 82 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1008 create_date \N res.currency.rate \N \N \N 82 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1009 write_uid \N res.currency.rate res.users \N \N 82 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1010 write_date \N res.currency.rate \N \N \N 82 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1011 __last_update \N res.currency.rate \N \N \N 82 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1012 name \N res.company \N \N \N 83 Company Name \N char \N f partner_id.name \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1013 sequence \N res.company \N \N \N 83 Sequence Used to order Companies in the company switcher integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1014 parent_id \N res.company res.company \N \N 83 Parent Company \N many2one \N t \N \N f f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1015 child_ids \N res.company res.company parent_id \N 83 Child Companies \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1016 partner_id \N res.company res.partner \N \N 83 Partner \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1017 report_header \N res.company \N \N \N 83 Company Tagline Appears by default on the top right corner of your printed documents (report header). text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1018 report_footer \N res.company \N \N \N 83 Report Footer Footer text displayed at the bottom of all reports. text \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1019 logo \N res.company \N \N \N 83 Company Logo This field holds the image used as avatar for this contact, limited to 1024x1024px binary \N f partner_id.image \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1020 logo_web \N res.company \N \N \N 83 Logo Web \N binary \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1021 currency_id \N res.company res.currency \N \N 83 Currency \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1022 user_ids \N res.company res.users \N \N 83 Accepted Users \N many2many \N t \N \N f f f f \N base \N \N t res_company_users_rel cid user_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1023 account_no \N res.company \N \N \N 83 Account No. \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1024 street \N res.company \N \N \N 83 Street \N char \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1025 street2 \N res.company \N \N \N 83 Street2 \N char \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1026 zip \N res.company \N \N \N 83 Zip \N char \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1027 city \N res.company \N \N \N 83 City \N char \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1028 state_id \N res.company res.country.state \N \N 83 Fed. State \N many2one \N f \N \N f f f f \N base set null \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1029 bank_ids \N res.company res.partner.bank company_id \N 83 Bank Accounts Bank accounts related to this company one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1030 country_id \N res.company res.country \N \N 83 Country \N many2one \N f \N \N f f f f \N base set null \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1031 email \N res.company \N \N \N 83 Email \N char \N f partner_id.email \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1032 phone \N res.company \N \N \N 83 Phone \N char \N f partner_id.phone \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1033 website \N res.company \N \N \N 83 Website \N char \N f partner_id.website \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1034 vat \N res.company \N \N \N 83 Tax ID The Tax Identification Number. Complete it if the contact is subjected to government taxes. Used in some legal statements. char \N f partner_id.vat \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1035 company_registry \N res.company \N \N \N 83 Company Registry \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1036 paperformat_id \N res.company report.paperformat \N \N 83 Paper format \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1037 external_report_layout_id \N res.company ir.ui.view \N \N 83 Document Template \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1038 base_onboarding_company_state \N res.company \N \N \N 83 State of the onboarding company step \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1039 id \N res.company \N \N \N 83 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1040 display_name \N res.company \N \N \N 83 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1041 create_uid \N res.company res.users \N \N 83 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1042 create_date \N res.company \N \N \N 83 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1043 write_uid \N res.company res.users \N \N 83 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1044 write_date \N res.company \N \N \N 83 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1045 __last_update \N res.company \N \N \N 83 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1046 name \N res.groups \N \N \N 84 Name \N char \N t \N \N t f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1047 users \N res.groups res.users \N \N 84 Users \N many2many \N t \N \N f f f f \N base \N \N t res_groups_users_rel gid uid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1048 model_access \N res.groups ir.model.access group_id \N 84 Access Controls \N one2many \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1049 rule_groups \N res.groups ir.rule \N \N 84 Rules \N many2many \N t \N \N f f f f \N base \N \N t rule_group_rel group_id rule_group_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1050 menu_access \N res.groups ir.ui.menu \N \N 84 Access Menu \N many2many \N t \N \N f f f f \N base \N \N t ir_ui_menu_group_rel gid menu_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1051 view_access \N res.groups ir.ui.view \N \N 84 Views \N many2many \N t \N \N f f f f \N base \N \N t ir_ui_view_group_rel group_id view_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1052 comment \N res.groups \N \N \N 84 Comment \N text \N t \N \N f f f t \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1053 category_id \N res.groups ir.module.category \N \N 84 Application \N many2one \N t \N \N f f t f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1054 color \N res.groups \N \N \N 84 Color Index \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1055 full_name \N res.groups \N \N \N 84 Group Name \N char \N f \N \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1056 share \N res.groups \N \N \N 84 Share Group Group created to set access rights for sharing data with some users. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1057 implied_ids \N res.groups res.groups \N \N 84 Inherits Users of this group automatically inherit those groups many2many \N t \N \N f f f f \N base \N \N t res_groups_implied_rel gid hid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1058 trans_implied_ids \N res.groups res.groups \N \N 84 Transitively inherits \N many2many \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1059 id \N res.groups \N \N \N 84 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1060 display_name \N res.groups \N \N \N 84 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1061 create_uid \N res.groups res.users \N \N 84 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1062 create_date \N res.groups \N \N \N 84 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1063 write_uid \N res.groups res.users \N \N 84 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1078 active \N res.users \N \N \N 86 Active \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1064 write_date \N res.groups \N \N \N 84 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1065 __last_update \N res.groups \N \N \N 84 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1066 id \N res.users.log \N \N \N 85 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1067 display_name \N res.users.log \N \N \N 85 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1068 create_uid \N res.users.log res.users \N \N 85 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1069 create_date \N res.users.log \N \N \N 85 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1070 write_uid \N res.users.log res.users \N \N 85 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1071 write_date \N res.users.log \N \N \N 85 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1072 __last_update \N res.users.log \N \N \N 85 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1073 partner_id \N res.users res.partner \N \N 86 Related Partner Partner-related data of the user many2one \N t \N \N t f f f \N base restrict \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1074 login \N res.users \N \N \N 86 Login Used to log into the system char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1075 password \N res.users \N \N \N 86 Password Keep empty if you don't want the user to be able to connect on the system. char \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1076 new_password \N res.users \N \N \N 86 Set Password Specify a value only when creating a user or if you're changing the user's password, otherwise leave empty. After a change of password, the user has to login again. char \N f \N \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1077 signature \N res.users \N \N \N 86 Signature \N html \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1079 active_partner \N res.users \N \N \N 86 Partner is Active \N boolean \N f partner_id.active \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1080 action_id \N res.users ir.actions.actions \N \N 86 Home Action If specified, this action will be opened at log on for this user, in addition to the standard menu. many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1081 groups_id \N res.users res.groups \N \N 86 Groups \N many2many \N t \N \N f f f f \N base \N \N t res_groups_users_rel uid gid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1082 log_ids \N res.users res.users.log create_uid \N 86 User log entries \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1083 login_date \N res.users \N \N \N 86 Latest connection \N datetime \N f log_ids.create_date \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1084 share \N res.users \N \N \N 86 Share User External user with limited access, created only for the purpose of sharing data. boolean \N f \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1085 companies_count \N res.users \N \N \N 86 Number of Companies \N integer \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1086 tz_offset \N res.users \N \N \N 86 Timezone offset \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1087 company_id \N res.users res.company \N \N 86 Company The company this user is currently working for. many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1088 company_ids \N res.users res.company \N \N 86 Companies \N many2many \N t \N \N f f f f \N base \N \N t res_company_users_rel user_id cid \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1089 id \N res.users \N \N \N 86 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1090 display_name \N res.users \N \N \N 86 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1091 create_uid \N res.users res.users \N \N 86 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1092 create_date \N res.users \N \N \N 86 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1093 write_uid \N res.users res.users \N \N 86 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1094 write_date \N res.users \N \N \N 86 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1095 __last_update \N res.users \N \N \N 86 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1096 name \N res.users \N \N \N 86 Name \N char \N t partner_id.name \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1098 title \N res.users res.partner.title \N \N 86 Title \N many2one \N t partner_id.title \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1099 parent_id \N res.users res.partner \N \N 86 Related Company \N many2one \N t partner_id.parent_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1100 parent_name \N res.users \N \N \N 86 Parent name \N char \N f partner_id.parent_name \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1101 child_ids \N res.users res.partner \N \N 86 Contacts \N one2many \N f partner_id.child_ids \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1102 ref \N res.users \N \N \N 86 Internal Reference \N char \N t partner_id.ref \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1103 lang \N res.users \N \N \N 86 Language All the emails and documents sent to this contact will be translated in this language. selection \N t partner_id.lang \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1104 tz \N res.users \N \N \N 86 Timezone The partner's timezone, used to output proper date and time values inside printed reports. It is important to set a value for this field. You should use the same timezone that is otherwise used to pick and render date and time values: your computer's timezone. selection \N t partner_id.tz \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1105 user_id \N res.users res.users \N \N 86 Salesperson The internal user in charge of this contact. many2one \N t partner_id.user_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1106 vat \N res.users \N \N \N 86 Tax ID The Tax Identification Number. Complete it if the contact is subjected to government taxes. Used in some legal statements. char \N t partner_id.vat \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1107 bank_ids \N res.users res.partner.bank \N \N 86 Banks \N one2many \N f partner_id.bank_ids \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1108 website \N res.users \N \N \N 86 Website \N char \N t partner_id.website \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1109 comment \N res.users \N \N \N 86 Notes \N text \N t partner_id.comment \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1110 category_id \N res.users res.partner.category \N \N 86 Tags \N many2many \N t partner_id.category_id \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1111 credit_limit \N res.users \N \N \N 86 Credit Limit \N float \N t partner_id.credit_limit \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1112 barcode \N res.users \N \N \N 86 Barcode Use a barcode to identify this contact from the Point of Sale. char \N t partner_id.barcode \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1113 customer \N res.users \N \N \N 86 Is a Customer Check this box if this contact is a customer. It can be selected in sales orders. boolean \N t partner_id.customer \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1114 supplier \N res.users \N \N \N 86 Is a Vendor Check this box if this contact is a vendor. It can be selected in purchase orders. boolean \N t partner_id.supplier \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1115 employee \N res.users \N \N \N 86 Employee Check this box if this contact is an Employee. boolean \N t partner_id.employee \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1116 function \N res.users \N \N \N 86 Job Position \N char \N t partner_id.function \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1117 type \N res.users \N \N \N 86 Address Type Used by Sales and Purchase Apps to select the relevant address depending on the context. selection \N t partner_id.type \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1118 street \N res.users \N \N \N 86 Street \N char \N t partner_id.street \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1119 street2 \N res.users \N \N \N 86 Street2 \N char \N t partner_id.street2 \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1120 zip \N res.users \N \N \N 86 Zip \N char \N t partner_id.zip \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1121 city \N res.users \N \N \N 86 City \N char \N t partner_id.city \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1122 state_id \N res.users res.country.state \N \N 86 State \N many2one \N t partner_id.state_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1123 country_id \N res.users res.country \N \N 86 Country \N many2one \N t partner_id.country_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1124 email \N res.users \N \N \N 86 Email \N char \N t partner_id.email \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1125 email_formatted \N res.users \N \N \N 86 Formatted Email Format email address "Name " char \N f partner_id.email_formatted \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1126 phone \N res.users \N \N \N 86 Phone \N char \N t partner_id.phone \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1127 mobile \N res.users \N \N \N 86 Mobile \N char \N t partner_id.mobile \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1128 is_company \N res.users \N \N \N 86 Is a Company Check if the contact is a company, otherwise it is a person boolean \N t partner_id.is_company \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1129 industry_id \N res.users res.partner.industry \N \N 86 Industry \N many2one \N t partner_id.industry_id \N f f f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1130 company_type \N res.users \N \N \N 86 Company Type \N selection \N f partner_id.company_type \N f f f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1131 color \N res.users \N \N \N 86 Color Index \N integer \N t partner_id.color \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1132 user_ids \N res.users res.users \N \N 86 Users \N one2many \N f partner_id.user_ids \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1133 partner_share \N res.users \N \N \N 86 Share Partner Either customer (not a user), either shared user. Indicated the current partner is a customer without access or with a limited access created for sharing data. boolean \N f partner_id.partner_share \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1134 contact_address \N res.users \N \N \N 86 Complete Address \N char \N f partner_id.contact_address \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1135 commercial_partner_id \N res.users res.partner \N \N 86 Commercial Entity \N many2one \N f partner_id.commercial_partner_id \N f t f f \N base set null \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1136 commercial_company_name \N res.users \N \N \N 86 Company Name Entity \N char \N f partner_id.commercial_company_name \N f t f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1137 company_name \N res.users \N \N \N 86 Company Name \N char \N t partner_id.company_name \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1138 image \N res.users \N \N \N 86 Image This field holds the image used as avatar for this contact, limited to 1024x1024px binary \N t partner_id.image \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1139 image_medium \N res.users \N \N \N 86 Medium-sized image Medium-sized image of this contact. It is automatically resized as a 128x128px image, with aspect ratio preserved. Use this field in form views or some kanban views. binary \N t partner_id.image_medium \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1140 image_small \N res.users \N \N \N 86 Small-sized image Small-sized image of this contact. It is automatically resized as a 64x64px image, with aspect ratio preserved. Use this field anywhere a small image is required. binary \N t partner_id.image_small \N f f f f \N base \N \N t \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1141 self \N res.users res.partner \N \N 86 Self \N many2one \N f partner_id.self \N f t f f \N base set null \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1142 user_ids \N change.password.wizard change.password.user wizard_id \N 87 Users \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1143 id \N change.password.wizard \N \N \N 87 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1144 display_name \N change.password.wizard \N \N \N 87 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1145 create_uid \N change.password.wizard res.users \N \N 87 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1146 create_date \N change.password.wizard \N \N \N 87 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1147 write_uid \N change.password.wizard res.users \N \N 87 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1148 write_date \N change.password.wizard \N \N \N 87 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1149 __last_update \N change.password.wizard \N \N \N 87 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1150 wizard_id \N change.password.user change.password.wizard \N \N 88 Wizard \N many2one \N t \N \N t f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1151 user_id \N change.password.user res.users \N \N 88 User \N many2one \N t \N \N t f f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1152 user_login \N change.password.user \N \N \N 88 User Login \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1153 new_passwd \N change.password.user \N \N \N 88 New Password \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1154 id \N change.password.user \N \N \N 88 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1155 display_name \N change.password.user \N \N \N 88 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1156 create_uid \N change.password.user res.users \N \N 88 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1157 create_date \N change.password.user \N \N \N 88 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1158 write_uid \N change.password.user res.users \N \N 88 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1159 write_date \N change.password.user \N \N \N 88 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1160 __last_update \N change.password.user \N \N \N 88 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1161 id \N report.base.report_irmodulereference \N \N \N 89 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1162 display_name \N report.base.report_irmodulereference \N \N \N 89 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1163 __last_update \N report.base.report_irmodulereference \N \N \N 89 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1164 updated \N base.module.update \N \N \N 90 Number of modules updated \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1165 added \N base.module.update \N \N \N 90 Number of modules added \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1166 state \N base.module.update \N \N \N 90 Status \N selection \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1167 id \N base.module.update \N \N \N 90 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1168 display_name \N base.module.update \N \N \N 90 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1169 create_uid \N base.module.update res.users \N \N 90 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1170 create_date \N base.module.update \N \N \N 90 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1171 write_uid \N base.module.update res.users \N \N 90 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1172 write_date \N base.module.update \N \N \N 90 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1173 __last_update \N base.module.update \N \N \N 90 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1174 lang \N base.language.install \N \N \N 91 Language \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1175 overwrite \N base.language.install \N \N \N 91 Overwrite Existing Terms If you check this box, your customized translations will be overwritten and replaced by the official ones. boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1176 state \N base.language.install \N \N \N 91 Status \N selection \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1177 id \N base.language.install \N \N \N 91 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1178 display_name \N base.language.install \N \N \N 91 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1179 create_uid \N base.language.install res.users \N \N 91 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1180 create_date \N base.language.install \N \N \N 91 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1181 write_uid \N base.language.install res.users \N \N 91 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1182 write_date \N base.language.install \N \N \N 91 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1183 __last_update \N base.language.install \N \N \N 91 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1184 name \N base.language.import \N \N \N 92 Language Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1185 code \N base.language.import \N \N \N 92 ISO Code ISO Language and Country code, e.g. en_US char \N t \N \N t f f f 6 base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1186 data \N base.language.import \N \N \N 92 File \N binary \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1187 filename \N base.language.import \N \N \N 92 File Name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1188 overwrite \N base.language.import \N \N \N 92 Overwrite Existing Terms If you enable this option, existing translations (including custom ones) will be overwritten and replaced by those in this file boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1189 id \N base.language.import \N \N \N 92 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1190 display_name \N base.language.import \N \N \N 92 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1191 create_uid \N base.language.import res.users \N \N 92 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1192 create_date \N base.language.import \N \N \N 92 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1193 write_uid \N base.language.import res.users \N \N 92 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1194 write_date \N base.language.import \N \N \N 92 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1195 __last_update \N base.language.import \N \N \N 92 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1196 module_info \N base.module.upgrade \N \N \N 93 Apps to Update \N text \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1197 id \N base.module.upgrade \N \N \N 93 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1198 display_name \N base.module.upgrade \N \N \N 93 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1199 create_uid \N base.module.upgrade res.users \N \N 93 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1200 create_date \N base.module.upgrade \N \N \N 93 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1201 write_uid \N base.module.upgrade res.users \N \N 93 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1202 write_date \N base.module.upgrade \N \N \N 93 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1203 __last_update \N base.module.upgrade \N \N \N 93 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1204 show_all \N base.module.uninstall \N \N \N 94 Show All \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1205 module_id \N base.module.uninstall ir.module.module \N \N 94 Module \N many2one \N t \N \N t t f f \N base cascade \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1206 module_ids \N base.module.uninstall ir.module.module \N \N 94 Impacted modules \N many2many \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1207 model_ids \N base.module.uninstall ir.model \N \N 94 Impacted data models \N many2many \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1208 id \N base.module.uninstall \N \N \N 94 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1209 display_name \N base.module.uninstall \N \N \N 94 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1210 create_uid \N base.module.uninstall res.users \N \N 94 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1211 create_date \N base.module.uninstall \N \N \N 94 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1212 write_uid \N base.module.uninstall res.users \N \N 94 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1213 write_date \N base.module.uninstall \N \N \N 94 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1214 __last_update \N base.module.uninstall \N \N \N 94 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1215 name \N base.language.export \N \N \N 95 File Name \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1216 lang \N base.language.export \N \N \N 95 Language \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1217 format \N base.language.export \N \N \N 95 File Format \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1218 modules \N base.language.export ir.module.module \N \N 95 Apps To Export \N many2many \N t \N \N f f f f \N base \N \N t rel_modules_langexport wiz_id module_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1219 data \N base.language.export \N \N \N 95 File \N binary \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1220 state \N base.language.export \N \N \N 95 State \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1221 id \N base.language.export \N \N \N 95 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1222 display_name \N base.language.export \N \N \N 95 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1223 create_uid \N base.language.export res.users \N \N 95 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1224 create_date \N base.language.export \N \N \N 95 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1225 write_uid \N base.language.export res.users \N \N 95 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1226 write_date \N base.language.export \N \N \N 95 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1227 __last_update \N base.language.export \N \N \N 95 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1228 lang \N base.update.translations \N \N \N 96 Language \N selection \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1229 id \N base.update.translations \N \N \N 96 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1230 display_name \N base.update.translations \N \N \N 96 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1231 create_uid \N base.update.translations res.users \N \N 96 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1232 create_date \N base.update.translations \N \N \N 96 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1233 write_uid \N base.update.translations res.users \N \N 96 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1234 write_date \N base.update.translations \N \N \N 96 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1235 __last_update \N base.update.translations \N \N \N 96 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1236 wizard_id \N base.partner.merge.line base.partner.merge.automatic.wizard \N \N 97 Wizard \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1237 min_id \N base.partner.merge.line \N \N \N 97 MinID \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1238 aggr_ids \N base.partner.merge.line \N \N \N 97 Ids \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1239 id \N base.partner.merge.line \N \N \N 97 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1240 display_name \N base.partner.merge.line \N \N \N 97 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1241 create_uid \N base.partner.merge.line res.users \N \N 97 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1242 create_date \N base.partner.merge.line \N \N \N 97 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1243 write_uid \N base.partner.merge.line res.users \N \N 97 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1244 write_date \N base.partner.merge.line \N \N \N 97 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1245 __last_update \N base.partner.merge.line \N \N \N 97 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1246 group_by_email \N base.partner.merge.automatic.wizard \N \N \N 98 Email \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1247 group_by_name \N base.partner.merge.automatic.wizard \N \N \N 98 Name \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1248 group_by_is_company \N base.partner.merge.automatic.wizard \N \N \N 98 Is Company \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1249 group_by_vat \N base.partner.merge.automatic.wizard \N \N \N 98 VAT \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1250 group_by_parent_id \N base.partner.merge.automatic.wizard \N \N \N 98 Parent Company \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1251 state \N base.partner.merge.automatic.wizard \N \N \N 98 State \N selection \N t \N \N t t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1252 number_group \N base.partner.merge.automatic.wizard \N \N \N 98 Group of Contacts \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1253 current_line_id \N base.partner.merge.automatic.wizard base.partner.merge.line \N \N 98 Current Line \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1254 line_ids \N base.partner.merge.automatic.wizard base.partner.merge.line wizard_id \N 98 Lines \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1255 partner_ids \N base.partner.merge.automatic.wizard res.partner \N \N 98 Contacts \N many2many \N t \N \N f f f f \N base \N \N t base_partner_merge_automatic_wizard_res_partner_rel base_partner_merge_automatic_wizard_id res_partner_id \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1256 dst_partner_id \N base.partner.merge.automatic.wizard res.partner \N \N 98 Destination Contact \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1257 exclude_contact \N base.partner.merge.automatic.wizard \N \N \N 98 A user associated to the contact \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1258 exclude_journal_item \N base.partner.merge.automatic.wizard \N \N \N 98 Journal Items associated to the contact \N boolean \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1259 maximum_group \N base.partner.merge.automatic.wizard \N \N \N 98 Maximum of Group of Contacts \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1260 id \N base.partner.merge.automatic.wizard \N \N \N 98 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1261 display_name \N base.partner.merge.automatic.wizard \N \N \N 98 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1262 create_uid \N base.partner.merge.automatic.wizard res.users \N \N 98 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1263 create_date \N base.partner.merge.automatic.wizard \N \N \N 98 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1264 write_uid \N base.partner.merge.automatic.wizard res.users \N \N 98 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1265 write_date \N base.partner.merge.automatic.wizard \N \N \N 98 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:42.694321 -1266 __last_update \N base.partner.merge.automatic.wizard \N \N \N 98 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:42.694321 -1267 view_id \N report.layout ir.ui.view \N \N 99 Document Template \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1268 image \N report.layout \N \N \N 99 Preview image src \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1269 pdf \N report.layout \N \N \N 99 Preview pdf src \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1270 id \N report.layout \N \N \N 99 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1271 display_name \N report.layout \N \N \N 99 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:59.657843 -1272 create_uid \N report.layout res.users \N \N 99 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1273 create_date \N report.layout \N \N \N 99 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1274 write_uid \N report.layout res.users \N \N 99 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1275 write_date \N report.layout \N \N \N 99 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:00:59.657843 -1276 __last_update \N report.layout \N \N \N 99 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:00:59.657843 -1363 id \N base_import.tests.models.m2o.required \N \N \N 110 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1277 res_model \N base_import.mapping \N \N \N 100 Res Model \N char \N t \N \N f f t f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1278 column_name \N base_import.mapping \N \N \N 100 Column Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1279 field_name \N base_import.mapping \N \N \N 100 Field Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1280 id \N base_import.mapping \N \N \N 100 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1281 display_name \N base_import.mapping \N \N \N 100 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1282 create_uid \N base_import.mapping res.users \N \N 100 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1283 create_date \N base_import.mapping \N \N \N 100 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1284 write_uid \N base_import.mapping res.users \N \N 100 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1285 write_date \N base_import.mapping \N \N \N 100 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1286 __last_update \N base_import.mapping \N \N \N 100 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1287 res_model \N base_import.import \N \N \N 101 Model \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1288 file \N base_import.import \N \N \N 101 File File to check and/or import, raw binary (not base64) binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1289 file_name \N base_import.import \N \N \N 101 File Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1290 file_type \N base_import.import \N \N \N 101 File Type \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1291 id \N base_import.import \N \N \N 101 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1292 display_name \N base_import.import \N \N \N 101 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1293 create_uid \N base_import.import res.users \N \N 101 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1294 create_date \N base_import.import \N \N \N 101 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1295 write_uid \N base_import.import res.users \N \N 101 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1296 write_date \N base_import.import \N \N \N 101 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1297 __last_update \N base_import.import \N \N \N 101 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1298 value \N base_import.tests.models.char \N \N \N 102 Value \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1299 id \N base_import.tests.models.char \N \N \N 102 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1300 display_name \N base_import.tests.models.char \N \N \N 102 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1379 id \N base_import.tests.models.o2m \N \N \N 112 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1301 create_uid \N base_import.tests.models.char res.users \N \N 102 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1302 create_date \N base_import.tests.models.char \N \N \N 102 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1303 write_uid \N base_import.tests.models.char res.users \N \N 102 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1304 write_date \N base_import.tests.models.char \N \N \N 102 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1305 __last_update \N base_import.tests.models.char \N \N \N 102 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1306 value \N base_import.tests.models.char.required \N \N \N 103 Value \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1307 id \N base_import.tests.models.char.required \N \N \N 103 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1308 display_name \N base_import.tests.models.char.required \N \N \N 103 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1309 create_uid \N base_import.tests.models.char.required res.users \N \N 103 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1310 create_date \N base_import.tests.models.char.required \N \N \N 103 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1311 write_uid \N base_import.tests.models.char.required res.users \N \N 103 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1312 write_date \N base_import.tests.models.char.required \N \N \N 103 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1313 __last_update \N base_import.tests.models.char.required \N \N \N 103 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1314 value \N base_import.tests.models.char.readonly \N \N \N 104 Value \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1315 id \N base_import.tests.models.char.readonly \N \N \N 104 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1316 display_name \N base_import.tests.models.char.readonly \N \N \N 104 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1317 create_uid \N base_import.tests.models.char.readonly res.users \N \N 104 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1318 create_date \N base_import.tests.models.char.readonly \N \N \N 104 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1319 write_uid \N base_import.tests.models.char.readonly res.users \N \N 104 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1320 write_date \N base_import.tests.models.char.readonly \N \N \N 104 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1321 __last_update \N base_import.tests.models.char.readonly \N \N \N 104 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1322 value \N base_import.tests.models.char.states \N \N \N 105 Value \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1323 id \N base_import.tests.models.char.states \N \N \N 105 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1324 display_name \N base_import.tests.models.char.states \N \N \N 105 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1325 create_uid \N base_import.tests.models.char.states res.users \N \N 105 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1326 create_date \N base_import.tests.models.char.states \N \N \N 105 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1327 write_uid \N base_import.tests.models.char.states res.users \N \N 105 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1328 write_date \N base_import.tests.models.char.states \N \N \N 105 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1329 __last_update \N base_import.tests.models.char.states \N \N \N 105 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1330 value \N base_import.tests.models.char.noreadonly \N \N \N 106 Value \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1331 id \N base_import.tests.models.char.noreadonly \N \N \N 106 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1332 display_name \N base_import.tests.models.char.noreadonly \N \N \N 106 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1333 create_uid \N base_import.tests.models.char.noreadonly res.users \N \N 106 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1334 create_date \N base_import.tests.models.char.noreadonly \N \N \N 106 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1335 write_uid \N base_import.tests.models.char.noreadonly res.users \N \N 106 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1336 write_date \N base_import.tests.models.char.noreadonly \N \N \N 106 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1337 __last_update \N base_import.tests.models.char.noreadonly \N \N \N 106 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1338 value \N base_import.tests.models.char.stillreadonly \N \N \N 107 Value \N char \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1339 id \N base_import.tests.models.char.stillreadonly \N \N \N 107 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1340 display_name \N base_import.tests.models.char.stillreadonly \N \N \N 107 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1341 create_uid \N base_import.tests.models.char.stillreadonly res.users \N \N 107 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1342 create_date \N base_import.tests.models.char.stillreadonly \N \N \N 107 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1343 write_uid \N base_import.tests.models.char.stillreadonly res.users \N \N 107 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1344 write_date \N base_import.tests.models.char.stillreadonly \N \N \N 107 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1345 __last_update \N base_import.tests.models.char.stillreadonly \N \N \N 107 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1346 value \N base_import.tests.models.m2o base_import.tests.models.m2o.related \N \N 108 Value \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1347 id \N base_import.tests.models.m2o \N \N \N 108 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1348 display_name \N base_import.tests.models.m2o \N \N \N 108 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1349 create_uid \N base_import.tests.models.m2o res.users \N \N 108 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1350 create_date \N base_import.tests.models.m2o \N \N \N 108 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1351 write_uid \N base_import.tests.models.m2o res.users \N \N 108 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1352 write_date \N base_import.tests.models.m2o \N \N \N 108 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1353 __last_update \N base_import.tests.models.m2o \N \N \N 108 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1354 value \N base_import.tests.models.m2o.related \N \N \N 109 Value \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1355 id \N base_import.tests.models.m2o.related \N \N \N 109 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1356 display_name \N base_import.tests.models.m2o.related \N \N \N 109 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1357 create_uid \N base_import.tests.models.m2o.related res.users \N \N 109 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1358 create_date \N base_import.tests.models.m2o.related \N \N \N 109 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1359 write_uid \N base_import.tests.models.m2o.related res.users \N \N 109 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1360 write_date \N base_import.tests.models.m2o.related \N \N \N 109 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1361 __last_update \N base_import.tests.models.m2o.related \N \N \N 109 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1362 value \N base_import.tests.models.m2o.required base_import.tests.models.m2o.required.related \N \N 110 Value \N many2one \N t \N \N t f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1364 display_name \N base_import.tests.models.m2o.required \N \N \N 110 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1365 create_uid \N base_import.tests.models.m2o.required res.users \N \N 110 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1366 create_date \N base_import.tests.models.m2o.required \N \N \N 110 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1367 write_uid \N base_import.tests.models.m2o.required res.users \N \N 110 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1368 write_date \N base_import.tests.models.m2o.required \N \N \N 110 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1369 __last_update \N base_import.tests.models.m2o.required \N \N \N 110 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1370 value \N base_import.tests.models.m2o.required.related \N \N \N 111 Value \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1371 id \N base_import.tests.models.m2o.required.related \N \N \N 111 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1372 display_name \N base_import.tests.models.m2o.required.related \N \N \N 111 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1373 create_uid \N base_import.tests.models.m2o.required.related res.users \N \N 111 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1374 create_date \N base_import.tests.models.m2o.required.related \N \N \N 111 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1375 write_uid \N base_import.tests.models.m2o.required.related res.users \N \N 111 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1376 write_date \N base_import.tests.models.m2o.required.related \N \N \N 111 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1377 __last_update \N base_import.tests.models.m2o.required.related \N \N \N 111 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1378 value \N base_import.tests.models.o2m base_import.tests.models.o2m.child parent_id \N 112 Value \N one2many \N f \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1380 display_name \N base_import.tests.models.o2m \N \N \N 112 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1381 create_uid \N base_import.tests.models.o2m res.users \N \N 112 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1382 create_date \N base_import.tests.models.o2m \N \N \N 112 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1383 write_uid \N base_import.tests.models.o2m res.users \N \N 112 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1384 write_date \N base_import.tests.models.o2m \N \N \N 112 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1385 __last_update \N base_import.tests.models.o2m \N \N \N 112 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1386 parent_id \N base_import.tests.models.o2m.child base_import.tests.models.o2m \N \N 113 Parent \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1387 value \N base_import.tests.models.o2m.child \N \N \N 113 Value \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1388 id \N base_import.tests.models.o2m.child \N \N \N 113 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1389 display_name \N base_import.tests.models.o2m.child \N \N \N 113 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1390 create_uid \N base_import.tests.models.o2m.child res.users \N \N 113 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1391 create_date \N base_import.tests.models.o2m.child \N \N \N 113 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1392 write_uid \N base_import.tests.models.o2m.child res.users \N \N 113 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1393 write_date \N base_import.tests.models.o2m.child \N \N \N 113 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1394 __last_update \N base_import.tests.models.o2m.child \N \N \N 113 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1395 name \N base_import.tests.models.preview \N \N \N 114 Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1396 somevalue \N base_import.tests.models.preview \N \N \N 114 Some Value \N integer \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1397 othervalue \N base_import.tests.models.preview \N \N \N 114 Other Variable \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1398 id \N base_import.tests.models.preview \N \N \N 114 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1399 display_name \N base_import.tests.models.preview \N \N \N 114 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1400 create_uid \N base_import.tests.models.preview res.users \N \N 114 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1401 create_date \N base_import.tests.models.preview \N \N \N 114 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1402 write_uid \N base_import.tests.models.preview res.users \N \N 114 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1403 write_date \N base_import.tests.models.preview \N \N \N 114 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1404 __last_update \N base_import.tests.models.preview \N \N \N 114 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1405 value \N base_import.tests.models.float \N \N \N 115 Value \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1406 value2 \N base_import.tests.models.float \N \N \N 115 Value2 \N monetary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1407 currency_id \N base_import.tests.models.float res.currency \N \N 115 Currency \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1408 id \N base_import.tests.models.float \N \N \N 115 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1409 display_name \N base_import.tests.models.float \N \N \N 115 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1410 create_uid \N base_import.tests.models.float res.users \N \N 115 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1411 create_date \N base_import.tests.models.float \N \N \N 115 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1412 write_uid \N base_import.tests.models.float res.users \N \N 115 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1413 write_date \N base_import.tests.models.float \N \N \N 115 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1414 __last_update \N base_import.tests.models.float \N \N \N 115 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1415 f \N base_import.tests.models.complex \N \N \N 116 F \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1416 m \N base_import.tests.models.complex \N \N \N 116 M \N monetary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1417 c \N base_import.tests.models.complex \N \N \N 116 C \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1418 currency_id \N base_import.tests.models.complex res.currency \N \N 116 Currency \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1419 d \N base_import.tests.models.complex \N \N \N 116 D \N date \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1420 dt \N base_import.tests.models.complex \N \N \N 116 Dt \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1421 id \N base_import.tests.models.complex \N \N \N 116 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1422 display_name \N base_import.tests.models.complex \N \N \N 116 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1423 create_uid \N base_import.tests.models.complex res.users \N \N 116 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1424 create_date \N base_import.tests.models.complex \N \N \N 116 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1425 write_uid \N base_import.tests.models.complex res.users \N \N 116 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1426 write_date \N base_import.tests.models.complex \N \N \N 116 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:02.491911 -1427 __last_update \N base_import.tests.models.complex \N \N \N 116 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:02.491911 -1436 datetime \N web_editor.converter.test \N \N \N 117 Datetime \N datetime \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1437 selection \N web_editor.converter.test \N \N \N 117 Selection \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1428 local_url \N ir.attachment \N \N \N 25 Attachment URL \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:05.150948 -1429 char \N web_editor.converter.test \N \N \N 117 Char \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1430 integer \N web_editor.converter.test \N \N \N 117 Integer \N integer \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1431 float \N web_editor.converter.test \N \N \N 117 Float \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1432 numeric \N web_editor.converter.test \N \N \N 117 Numeric \N float \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1433 many2one \N web_editor.converter.test web_editor.converter.test.sub \N \N 117 Many2One \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1434 binary \N web_editor.converter.test \N \N \N 117 Binary \N binary \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1435 date \N web_editor.converter.test \N \N \N 117 Date \N date \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1438 selection_str \N web_editor.converter.test \N \N \N 117 Lorsqu'un pancake prend l'avion à destination de Toronto et qu'il fait une escale technique à St Claude, on dit: \N selection \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1439 html \N web_editor.converter.test \N \N \N 117 Html \N html \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1440 text \N web_editor.converter.test \N \N \N 117 Text \N text \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1441 id \N web_editor.converter.test \N \N \N 117 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1442 display_name \N web_editor.converter.test \N \N \N 117 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:05.150948 -1444 create_date \N web_editor.converter.test \N \N \N 117 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1443 create_uid \N web_editor.converter.test res.users \N \N 117 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1445 write_uid \N web_editor.converter.test res.users \N \N 117 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1446 write_date \N web_editor.converter.test \N \N \N 117 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1447 __last_update \N web_editor.converter.test \N \N \N 117 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:05.150948 -1448 name \N web_editor.converter.test.sub \N \N \N 118 Name \N char \N t \N \N f f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1449 id \N web_editor.converter.test.sub \N \N \N 118 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1450 display_name \N web_editor.converter.test.sub \N \N \N 118 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:05.150948 -1451 create_uid \N web_editor.converter.test.sub res.users \N \N 118 Created by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1452 create_date \N web_editor.converter.test.sub \N \N \N 118 Created on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1453 write_uid \N web_editor.converter.test.sub res.users \N \N 118 Last Updated by \N many2one \N t \N \N f t f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1454 write_date \N web_editor.converter.test.sub \N \N \N 118 Last Updated on \N datetime \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:05.150948 -1455 __last_update \N web_editor.converter.test.sub \N \N \N 118 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:05.150948 -1456 name \N web_tour.tour \N \N \N 119 Tour name \N char \N t \N \N t f f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:06.450813 -1457 user_id \N web_tour.tour res.users \N \N 119 Consumed by \N many2one \N t \N \N f f f f \N base set null \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:06.450813 -1458 id \N web_tour.tour \N \N \N 119 ID \N integer \N t \N \N f t f f \N base \N \N t \N \N \N \N \N t \N \N 1 2020-10-28 19:01:06.450813 -1459 display_name \N web_tour.tour \N \N \N 119 Display Name \N char \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:06.450813 -1460 __last_update \N web_tour.tour \N \N \N 119 Last Modified on \N datetime \N f \N \N f t f f \N base \N \N f \N \N \N \N \N f \N \N 1 2020-10-28 19:01:06.450813 -\. - - --- --- Data for Name: ir_model_fields_group_rel; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model_fields_group_rel (field_id, group_id) FROM stdin; -\. - - --- --- Data for Name: ir_model_relation; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_model_relation (id, name, model, module, date_update, date_init, create_uid, create_date, write_uid, write_date) FROM stdin; -1 ir_model_fields_group_rel 4 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -2 ir_ui_menu_group_rel 12 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -3 ir_ui_view_group_rel 14 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -4 ir_act_window_group_rel 16 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -5 rel_server_actions 20 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -6 res_groups_report_rel 24 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -7 rule_group_rel 32 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -8 res_country_res_country_group_rel 67 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -9 res_partner_res_partner_category_rel 72 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -10 res_company_users_rel 83 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -11 res_groups_users_rel 84 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -12 res_groups_implied_rel 84 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -13 rel_modules_langexport 95 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -14 base_partner_merge_automatic_wizard_res_partner_rel 98 159 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 \N \N \N \N -\. - - --- --- Data for Name: ir_module_category; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_module_category (id, create_uid, create_date, write_date, write_uid, parent_id, name, description, sequence, visible, exclusive) FROM stdin; -3 \N \N \N \N 2 Dependency \N \N t \N -4 \N \N \N \N \N Web \N \N t \N -5 \N \N \N \N \N Sales \N \N t \N -6 \N \N \N \N \N Extra Tools \N \N t \N -7 \N \N \N \N \N Purchases \N \N t \N -8 \N \N \N \N \N Accounting \N \N t \N -9 \N \N \N \N \N Tests \N \N t \N -10 \N \N \N \N \N Discuss \N \N t \N -12 \N \N \N \N \N Tools \N \N t \N -13 \N \N \N \N \N stock \N \N t \N -15 \N \N \N \N \N crm \N \N t \N -16 \N \N \N \N \N Productivity \N \N t \N -17 \N \N \N \N \N Marketing \N \N t \N -18 \N \N \N \N \N Warehouse \N \N t \N -19 \N \N \N \N \N Uncategorized \N \N t \N -20 \N \N \N \N \N Payment Acquirer \N \N t \N -21 \N \N \N \N \N Project \N \N t \N -22 \N \N \N \N \N Technical Settings \N \N t \N -24 \N \N \N \N 23 Corporate \N \N t \N -26 \N \N \N \N \N Human Resources Survey \N \N t \N -27 \N \N \N \N \N Document Management \N \N t \N -28 \N \N \N \N \N Base \N \N t \N -29 \N \N \N \N \N Invoicing Management \N \N t \N -2 \N \N 2020-10-28 19:00:42.694321 1 \N Technical Settings \N 0 f \N -14 \N \N 2020-10-28 19:00:42.694321 1 \N Localization \N \N f \N -30 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 14 Account Charts \N \N f f -31 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Sales Helps you handle your quotations, sale orders and invoicing. 1 t f -32 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Lead Automation Helps you manage lead of your marketing campaigns step by step. 2 t f -33 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Project Helps you manage your projects and tasks by tracking them, generating plannings, etc... 3 t f -34 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Inventory Helps you manage your inventory and main stock operations: delivery orders, receptions, etc. 4 t f -25 \N \N 2020-10-28 19:00:42.694321 1 \N Manufacturing Helps you manage your manufacturing processes and generate reports on those processes. 5 t \N -35 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Invoicing & Payments Allows you to create your invoices and track the payments. It is an easier version of the accounting module for managers who are not accountants. 6 t f -36 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Accounting & Finance Helps you handle your accounting needs, if you are not an accountant, we suggest you to install only the Invoicing. 7 t f -37 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Purchases Helps you manage your purchase-related processes such as requests for quotations, supplier bills, etc... 8 t f -38 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N User types Helps you manage users. 9 t f -11 \N \N 2020-10-28 19:00:42.694321 1 \N Employees Helps you manage your employees. 9 t \N -39 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Leaves Helps you manage your leaves. 10 t f -40 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Contracts Helps you manage your contracts. 10 t f -41 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Recruitment Helps you manage your recruitments. 11 t f -42 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Expenses Helps you manage your expenses. 12 t f -43 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Timesheets Helps you manage the timesheets. 13 t f -44 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Attendance Helps you manage the attendances. 14 t f -45 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Appraisals Helps you manage your appraisals. 15 t f -46 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Payroll Helps you manage your payrolls. 16 t f -47 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Gamification Helps you manage the gamification process. 17 t f -48 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Events Helps you manage your Events. 18 t f -49 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Email Marketing Helps you manage your mass mailing for design\n professional emails and reuse templates. 19 t f -50 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Survey Helps you manage your survey for review of different-different users. 20 t f -51 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Point of Sale Helps you get the most out of your points of sale with fast sale encoding, simplified payment mode encoding, automatic picking lists generation and more. 21 t f -52 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Specific Industry Applications \N 22 t f -1 \N \N 2020-10-28 19:00:42.694321 1 \N Website \N 23 t \N -53 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Document Signatures Helps you sign and complete your documents easily. 25 t f -54 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N After-Sales After-sales services 2 t f -23 \N \N 2020-10-28 19:00:42.694321 1 \N Theme \N 50 t f -55 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Administration \N 100 t f -56 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Extra Rights \N 101 t f -57 1 2020-10-28 19:00:42.694321 2020-10-28 19:00:42.694321 1 \N Other Extra Rights \N 102 t f -\. - - --- --- Data for Name: ir_module_module; Type: TABLE DATA; Schema: public; Owner: ubuntu --- - -COPY public.ir_module_module (id, create_uid, create_date, write_date, write_uid, website, summary, name, author, icon, state, latest_version, shortdesc, category_id, description, application, demo, web, license, sequence, auto_install, to_buy, maintainer, contributors, published_version, url, menus_by_module, reports_by_module, views_by_module) FROM stdin; -2 \N \N 2020-10-28 19:00:59.657843 1 test_performance Odoo S.A. /base/static/description/icon.png uninstalled \N Test Performance 2 f f f LGPL-3 100 f f \N \N \N \N -80 \N \N 2020-10-28 19:00:42.694321 1 l10n_us Odoo S.A. /l10n_us/static/description/icon.png uninstalled \N United States - Accounting 14 \nUnited States - Chart of accounts.\n==================================\n f f f LGPL-3 100 f f \N \N \N \N -110 \N \N 2020-10-28 19:00:42.694321 1 \n Social media connectors for company settings. social_media Odoo S.A. /base/static/description/icon.png uninstalled \N social_media 19 \n The purpose of this technical module is to provide a front for\n social media configuration for any other module that might need it.\n f f f LGPL-3 100 f f \N \N \N \N -132 \N \N 2020-10-28 19:00:42.694321 1 test_uninstall Odoo S.A. /base/static/description/icon.png uninstalled \N test-uninstall 9 A module to test the uninstall feature. f f f LGPL-3 100 f f \N \N \N \N -149 \N \N 2020-10-28 19:00:59.657843 1 Create Leads/Opportunities from your website's traffic crm_reveal Odoo S.A. /base/static/description/icon.png uninstalled \N Lead Generation 15 f f f LGPL-3 100 f f \N \N \N \N -164 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/survey website_survey Odoo S.A. /base/static/description/icon.png uninstalled \N Website Survey 17 \nCreate beautiful surveys and display them on your website\n=========================================================\n\nUse the styling and layout of your website for your surveys.\n f f f LGPL-3 100 t f \N \N \N \N -165 \N \N 2020-10-28 19:00:42.694321 1 \n Allows to use python code to define taxes account_tax_python Odoo S.A. /base/static/description/icon.png uninstalled \N Define Taxes as Python Code 8 \n A tax defined as python code consists in two snippets of python code which are executed in a local environment containing data such as the unit price, product or partner.\n\n "Applicable Code" defines if the tax is to be applied.\n\n "Python Code" defines the amount of the tax.\n f f f LGPL-3 100 f f \N \N \N \N -166 \N \N 2020-10-28 19:00:42.694321 1 digest Odoo S.A. /base/static/description/icon.png uninstalled \N KPI Digests 17 \nSend KPI Digests periodically\n=============================\n f f f LGPL-3 100 f f \N \N \N \N -181 \N \N 2020-10-28 19:00:42.694321 1 Present your employee details online website_hr Odoo S.A. /website_hr/static/description/icon.png uninstalled \N Online Employee Details 1 \nPublish your employees public information on About Us website page.\n f f f LGPL-3 100 f f \N \N \N \N -22 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/quote-builder Build great quotation templates sale_quotation_builder Odoo S.A. /base/static/description/icon.png uninstalled \N Quotation Builder 5 Design great quotation templates with building blocks to significantly boost your success rate. f f f LGPL-3 100 f f \N \N \N \N -1 \N \N 2020-10-28 19:00:42.694321 1 Publish your members directory website_membership Odoo S.A. /website_membership/static/description/icon.png uninstalled \N Online Members Directory 1 \nPublish your members/association directory publicly.\n f f f LGPL-3 100 f f \N \N \N \N -3 \N \N 2020-10-28 19:00:42.694321 1 Translate website in one-click website_gengo Odoo S.A. /website_gengo/static/description/icon.png uninstalled \N Gengo Translator 1 \nThis module allows to send website content to Gengo translation service in a single click. Gengo then gives back the translated terms in the destination language.\n f f f LGPL-3 100 f f \N \N \N \N -5 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/community-builder Manage a forum with FAQ and Q&A website_forum Odoo S.A. /website_forum/static/description/icon.png uninstalled \N Forum 1 \nAsk questions, get answers, no distractions\n t f f LGPL-3 150 f f \N \N \N \N -6 \N \N 2020-10-28 19:00:42.694321 1 Find free high-resolution images from Unsplash web_unsplash Odoo S.A. /web_unsplash/static/description/icon.png uninstalled \N Unsplash Image Library 4 Explore the free high-resolution image library of Unsplash.com and find images to use in Odoo. An Unsplash search bar is added to the image library modal. f f f LGPL-3 100 t f \N \N \N \N -7 \N \N 2020-10-28 19:00:42.694321 1 product Odoo S.A. /product/static/description/icon.png uninstalled \N Products & Pricelists 5 \nThis is the base module for managing products and pricelists in Odoo.\n========================================================================\n\nProducts support variants, different pricing methods, vendors information,\nmake to stock/order, different units of measure, packaging and properties.\n\nPricelists support:\n-------------------\n * Multiple-level of discount (by product, category, quantities)\n * Compute price based on different criteria:\n * Other pricelist\n * Cost price\n * List price\n * Vendor price\n\nPricelists preferences by product and/or partners.\n\nPrint product labels with barcode.\n f f f LGPL-3 100 f f \N \N \N \N -9 \N \N 2020-10-28 19:00:42.694321 1 google_spreadsheet Odoo S.A. /base/static/description/icon.png uninstalled \N Google Spreadsheet 6 \nThe module adds the possibility to display data from Odoo in Google Spreadsheets in real time.\n=================================================================================================\n f f f LGPL-3 100 f f \N \N \N \N -10 \N \N 2020-10-28 19:00:42.694321 1 Purchase Orders, Receipts, Vendor Bills for Stock purchase_stock Odoo S.A. /base/static/description/icon.png uninstalled \N Purchase Stock 7 f f f LGPL-3 60 t f \N \N \N \N -12 \N \N 2020-10-28 19:00:42.694321 1 product_margin Odoo S.A. /base/static/description/icon.png uninstalled \N Margins by Products 5 \nAdds a reporting menu in products that computes sales, purchases, margins and other interesting indicators based on invoices.\n=============================================================================================================================\n\nThe wizard to launch the report has several options to help you get the data you need.\n f f f LGPL-3 100 f f \N \N \N \N -15 \N \N 2020-10-28 19:00:42.694321 1 Payment Acquirer: Paypal Implementation payment_paypal Odoo S.A. /payment_paypal/static/description/icon.png uninstalled \N Paypal Payment Acquirer 8 Paypal Payment Acquirer f f f LGPL-3 100 f f \N \N \N \N -17 \N \N 2020-10-28 19:00:42.694321 1 test_impex Odoo S.A. /base/static/description/icon.png uninstalled \N test-import-export 9 A module to test import/export. f f f LGPL-3 100 f f \N \N \N \N -18 \N \N 2020-10-28 19:00:42.694321 1 payment_sips Eezee-It /payment_sips/static/description/icon.png uninstalled \N Worldline SIPS 8 \nWorldline SIPS Payment Acquirer for online payments\n\nWorks with Worldline keys version 2.0, contains implementation of\npayments acquirer using Worldline SIPS. f f f LGPL-3 100 f f \N \N \N \N -19 \N \N 2020-10-28 19:00:42.694321 1 Print amount in words on checks issued for expenses hr_expense_check Odoo S.A. /base/static/description/icon.png uninstalled \N Check Printing in Expenses 8 \n Print amount in words on checks issued for expenses\n f f f LGPL-3 100 t f \N \N \N \N -21 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/discuss Add livechat support for OdooBot im_livechat_mail_bot Odoo S.A. /base/static/description/icon.png uninstalled \N OdooBot for livechat 10 f f f LGPL-3 100 t f \N \N \N \N -4 \N \N 2020-10-28 19:00:59.657843 1 analytic Odoo S.A. /base/static/description/icon.png uninstalled \N Analytic Accounting 3 \nModule for defining analytic accounting object.\n===============================================\n\nIn Odoo, analytic accounts are linked to general accounts but are treated\ntotally independently. So, you can enter various different analytic operations\nthat have no counterpart in the general financial accounts.\n f f f LGPL-3 100 f f \N \N \N \N -8 \N \N 2020-10-28 19:00:59.657843 1 Sell based on timesheets sale_timesheet Odoo S.A. /base/static/description/icon.png uninstalled \N Sales Timesheet 2 \nAllows to sell timesheets in your sales order\n=============================================\n\nThis module set the right product on all timesheet lines\naccording to the order/contract you work on. This allows to\nhave real delivered quantities in sales orders.\n f f f LGPL-3 100 t f \N \N \N \N -11 \N \N 2020-10-28 19:00:59.657843 1 Payment Acquirer: Stripe Implementation payment_stripe Odoo S.A. /payment_stripe/static/description/icon.png uninstalled \N Stripe Payment Acquirer 2 Stripe Payment Acquirer f f f LGPL-3 100 f f \N \N \N \N -24 \N \N 2020-10-28 19:00:42.694321 1 test_inherit Odoo S.A. /base/static/description/icon.png uninstalled \N test-inherit 9 A module to verify the inheritance. f f f LGPL-3 100 f f \N \N \N \N -25 \N \N 2020-10-28 19:00:42.694321 1 http://www.camptocamp.com test_inherits Camptocamp /base/static/description/icon.png uninstalled \N test-inherits 9 A module to verify the inheritance using _inherits. f f f LGPL-3 100 f f \N \N \N \N -26 \N \N 2020-10-28 19:00:42.694321 1 \n Correct address formating when both modules are installed partner_autocomplete_address_extended Odoo SA /base/static/description/icon.png uninstalled \N Partner Autocomplete extends Address autocomplete 12 f f f LGPL-3 100 t f \N \N \N \N -27 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com \n Zebra printers integration for stock module stock_zebra Odoo SA /base/static/description/icon.png uninstalled \N stock_zebra 13 \n This module bring templates to produce labels in the Stock app (and derivatives) for Zebra printers. Those devices print thermal barcode label and shipping labels. Printers make label from ZPL script which is built in Odoo. f f f LGPL-3 100 f f \N \N \N \N -28 \N \N 2020-10-28 19:00:42.694321 1 snailmail Odoo S.A. /base/static/description/icon.png uninstalled \N Snail Mail 12 \nAllows users to send documents by post\n=====================================================\n f f f LGPL-3 100 t f \N \N \N \N -29 \N \N 2020-10-28 19:00:42.694321 1 base_automation Odoo S.A. /base/static/description/icon.png uninstalled \N Automated Action Rules 5 \nThis module allows to implement action rules for any object.\n============================================================\n\nUse automated actions to automatically trigger actions for various screens.\n\n**Example:** A lead created by a specific user may be automatically set to a specific\nSales Team, or an opportunity which still has status pending after 14 days might\ntrigger an automatic reminder email.\n f f f LGPL-3 100 f f \N \N \N \N -30 \N \N 2020-10-28 19:00:42.694321 1 Account and Payment Link and Portal account_payment Odoo S.A. /base/static/description/icon.png uninstalled \N Payment - Account 8 Link Account and Payment and add Portal Payment\n\nProvide tools for account-related payment as well as portal options to\nenable payment.\n\n * UPDATE ME\n f f f LGPL-3 100 f f \N \N \N \N -33 \N \N 2020-10-28 19:00:42.694321 1 l10n_generic_coa Odoo S.A. /base/static/description/icon.png uninstalled \N Generic - Accounting 14 \nThis is the base module to manage the generic accounting chart in Odoo.\n==============================================================================\n\nInstall some generic chart of accounts.\n f f f LGPL-3 100 f f \N \N \N \N -35 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/blog-engine Publish blog posts, announces, news website_blog Odoo S.A. /website_blog/static/description/icon.png uninstalled \N Blogs 1 Odoo Blogs\n----------\n\nWrite, Design, Promote and Engage with Odoo Blogs.\n\nExpress yourself with the Odoo enterprise grade blogging platform. Write\nbeautiful blog posts, engage with visitors, translate content and moderate\nsocial streams.\n\nGet your blog posts efficiently referenced in Google and translated in mutiple\nlanguages in just a few clicks.\n\nWrite Beautiful Blog Posts\n--------------------------\n\nDrag & Drop well designed *'Building Blocks'* to create beautifull blog posts\nthat perfectly integrates images, videos, call-to-actions, quotes, banners,\netc.\n\nWith our unique *'edit inline'* approach, you don't need to be a designer to\ncreate awsome, good-looking, content. Each blog post will look like it's\ndesigned by a professional designer.\n\nAutomated Translation by Professionals\n--------------------------------------\n\nGet your blog posts translated in multiple languages with no effort. Our\ntranslation "on demand" feature allows you to benefit from professional\ntranslators to translate all your changes automatically. (\\$0.05 per word)\nTranslated versions are updated automatically once translated by professionals\n(around 32 hours).\n\nEngage With Your Visitors\n-------------------------\n\nThe integrated website live chat feature allows you to start chatting in real time with\nyour visitors to get feedback on your recent posts or get ideas to write new\nposts.\n\nEngaging with your visitors is also a great way to convert visitors into\ncustomers.\n\nBuild Visitor Loyalty\n---------------------\n\nThe one click *follow* button will allow visitors to receive your blog posts by\nemail with no effort, without having to register. Social media icons allow\nvisitors to share your best blog posts easily.\n\nGoogle Analytics Integration\n----------------------------\n\nGet a clear visibility of your sales funnel. Odoo's Google Analytics trackers\nare configured by default to track all kinds of events related to shopping\ncarts, call-to-actions, etc.\n\nAs Odoo marketing tools (mass mailing, campaigns, etc) are also linked with\nGoogle Analytics, you get a 360° view of your business.\n\nSEO Optimized Blog Posts\n------------------------\n\nSEO tools are ready to use, with no configuration required. Odoo suggests\nkeywords for your titles according to Google's most searched terms, Google\nAnalytics tracks interests of your visitors, sitemaps are created automatically\nfor quick Google indexing, etc.\n\nThe system even creates structured content automatically to promote your\nproducts and events effectively in Google.\n\nDesigner-Friendly Themes\n------------------------\n\nThemes are awesome and easy to design. You don't need to develop to create new\npages, themes or building blocks. We use a clean HTML structure, a\n[bootstrap](http://getbootstrap.com/) CSS and our modularity allows you to\ndistribute your themes easily.\n\nThe building block approach allows the website to remain clean after end-users\nstart creating new contents.\n\nEasy Access Rights\n------------------\n\nNot everyone requires the same access to your website. Designers manage the\nlayout of the site, editors approve content and authors write that content.\nThis lets you organize your publishing process according to your needs.\n\nOther access rights are related to business objects (products, people, events,\netc) and directly following Odoo's standard access rights management, so you do\nnot have to configure things twice.\n t f f LGPL-3 140 f f \N \N \N \N -36 \N \N 2020-10-28 19:00:42.694321 1 Create lead from livechat conversation crm_livechat Odoo S.A. /base/static/description/icon.png uninstalled \N CRM Livechat 15 Create new lead with using /lead command in the channel f f f LGPL-3 100 t f \N \N \N \N -37 \N \N 2020-10-28 19:00:42.694321 1 base_geolocalize Odoo S.A. /base/static/description/icon.png uninstalled \N Partners Geolocation 5 \nPartners Geolocation\n========================\n f f f LGPL-3 100 f f \N \N \N \N -38 \N \N 2020-10-28 19:00:42.694321 1 Publish your resellers/partners and forward leads to them website_crm_partner_assign Odoo S.A. /website_crm_partner_assign/static/description/icon.png uninstalled \N Resellers 1 \nThis module allows to publish your resellers/partners on your website and to forward incoming leads/opportunities to them.\n\n\n**Publish a partner**\n\nTo publish a partner, set a *Level* in their contact form (in the Partner Assignation section) and click the *Publish* button.\n\n**Forward leads**\n\nForwarding leads can be done for one or several leads at a time. The action is available in the *Assigned Partner* section of the lead/opportunity form view and in the *Action* menu of the list view.\n\nThe automatic assignation is figured from the weight of partner levels and the geolocalization. Partners get leads that are located around them.\n\n f f f LGPL-3 100 f f \N \N \N \N -39 \N \N 2020-10-28 19:00:42.694321 1 Sticky memos, Collaborative note_pad Odoo S.A. /base/static/description/icon.png uninstalled \N Memos pad 16 \nThis module update memos inside Odoo for using an external pad\n=================================================================\n\nUse for update your text memo in real time with the following user that you invite.\n\n f f f LGPL-3 100 t f \N \N \N \N -40 \N \N 2020-10-28 19:00:42.694321 1 link_tracker Odoo S.A. /base/static/description/icon.png uninstalled \N Link Tracker 17 \nCreate short and trackable URLs.\n=====================================================\n\n f f f LGPL-3 100 f f \N \N \N \N -41 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/e-commerce Sell your products online website_sale Odoo S.A. /website_sale/static/description/icon.png uninstalled \N eCommerce 1 Odoo e-Commerce\n---------------\n\n### Optimize sales with an awesome online store.\n\nOdoo is an Open Source eCommerce\nunlike anything you have ever seen before. Get an awesome catalog of products\nand great product description pages.\n\nIt's full-featured, integrated with your management software, fully\ncustomizable and super easy.\n\nCreate Awesome Product Pages\n----------------------------\n\nOdoo's unique *'edit inline'* and building blocks approach makes product pages\ncreation surprisingly easy. "Want to change the price of a product? or put it\nin bold? Want to add a banner for a specific product?" just click and change.\nWhat you see is what you get. Really.\n\nDrag & Drop well designed *'Building Blocks'* to create beautifull product\npages that your customer will love.\n\nIncrease Your Revenue Per Order\n-------------------------------\n\nThe built-in cross-selling feature helps you offer extra products related to\nwhat the shopper put in his cart. (e.g. accessories)\n\nOdoo's upselling algorythm allows you to show visitors similar but more\nexpensive products than the one in view, with incentives.\n\nThe inline editing feature allows you to easily change a price, launch a\npromotion or fine tune the description of a product, in a just a click.\n\nA Clean Google Analytics Integration\n------------------------------------\n\nGet a clear visibility of your sales funnel. Odoo's Google Analytics trackers\nare configured by default to track all kind of events related to shopping\ncarts, call-to-actions, etc.\n\nAs Odoo marketing tools (mass mailing, campaigns, etc) are also linked with\nGoogle Analytics, you get a complete view of your business.\n\nTarget New Markets\n------------------\n\nGet your website translated in multiple languages with no effort. Odoo proposes\nand propagates translations automatically across pages.\n\nOur translation "on demand" features allows you to benefit from professional\ntranslators to translate all your changes automatically. Just change any part\nof your website (a new blog post, a page modification, product descriptions,\n...) and the translated versions are updated automatically in around 32 hours.\n\nFine Tune Your Catalog\n----------------------\n\nGet a full control on how you display your products in the catalog page:\npromotional ribbons, related sized of products, discounts, variants, grid/list\nview, etc.\n\nEdit any product inline to make your website evolve with your customer need.\n\nAcquire New Customers\n---------------------\n\nSEO tools are ready to use, with no configuration required. Odoo suggests\nkeywords according to Google most searched terms, Google Analytics tracks your\nshopping cart events, sitemap are created automatically for Google indexation,\netc.\n\nWe even do structured content automatically to promote your product and events\nefficiently in Google.\n\nLeverage Social Media\n---------------------\n\nCreate new landing pages easily with the Odoo inline edition feature. Send\nvisitors of your different marketing campaigns to specific landing pages to\noptimize conversions.\n\nManage a Reseller Network\n-------------------------\n\nManage a reseller network to target new market, have local presences or broaden\nyour distribution. Give them access to your reseller portal for an efficient\ncollaboration.\n\nPromote your resellers online, forward leads to resellers (with built-in\ngeolocalisation feature), define specific pricelists, launch a loyalty program\n(offer specific discounts to your best customers or resellers), etc.\n\nBenefit from the power of Odoo, in your online store: a powerfull tax engine,\nflexible pricing structures, a real inventory management solution, a reseller\ninterface, support for products with different behaviours; physical goods,\nevents, services, variants and options, etc.\n\nYou don't need to interface with your warehouse, sales or accounting software.\nEverything is integrated with Odoo. No pain, real time.\n\nA Clean Checkout Process\n------------------------\n\nConvert most visitor interests into real orders with a clean checkout process\nwith a minimal number of steps and a great useability on every page.\n\nCustomize your checkout process to fit your business needs: payment modes,\ndelivery methods, cross-selling, special conditions, etc.\n\nAnd much more...\n----------------\n\n### Online Sales\n\n- Mobile Interface\n- Sell products, events or services\n- Flexible pricelists\n- Product multi-variants\n- Multiple stores\n- Great checkout process\n\n### Customer Service\n\n- Customer Portal to track orders\n- Assisted shopping with website live chats\n- Returns management\n- Advanced shipping rules\n- Coupons or gift certificates\n\n### Order Management\n\n- Advanced warehouse management features\n- Invoicing and accounting integration\n- Mass mailing and customer segmentations\n- Lead automation and marketing campaigns\n- Persistent shopping cart\n\nFully Integrated With Other Apps\n--------------------------------\n\n### CMS\n\nEasily create awesome websites with no technical knowledge required.\n\n### Blogs\n\nWrite news, attract new visitors, build customer loyalty.\n\n### Online Events\n\nSchedule, organize, promote or sell events online; conferences, webinars, trainings, etc.\n\n t f f LGPL-3 55 f f \N \N \N \N -42 \N \N 2020-10-28 19:00:42.694321 1 Manage your online hiring process website_hr_recruitment Odoo S.A. /website_hr_recruitment/static/description/icon.png uninstalled \N Online Jobs 1 This module allows to publish your available job positions on your website and keep track of application submissions easily. It comes as an add-on of *Recruitment* app. t f f LGPL-3 142 f f \N \N \N \N -23 \N \N 2020-10-28 19:00:59.657843 1 Manage your employee payroll records hr_payroll Odoo S.A. /hr_payroll/static/description/icon.png uninstalled \N Payroll 11 f f f LGPL-3 38 f f \N \N \N \N -43 \N \N 2020-10-28 19:00:42.694321 1 Landed Costs stock_landed_costs Odoo S.A. /base/static/description/icon.png uninstalled \N WMS Landed Costs 18 \nLanded Costs Management\n=======================\nThis module allows you to easily add extra costs on pickings and decide the split of these costs among their stock moves in order to take them into account in your stock valuation.\n f f f LGPL-3 16 f f \N \N \N \N -45 \N \N 2020-10-28 19:00:42.694321 1 test_mimetypes Odoo S.A. /base/static/description/icon.png uninstalled \N test mimetypes-guessing 9 A module to generate exceptions. f f f LGPL-3 100 f f \N \N \N \N -46 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/crm Sales Teams sales_team Odoo S.A. /base/static/description/icon.png uninstalled \N Sales Teams 5 \nUsing this application you can manage Sales Teams with CRM and/or Sales\n===========================================================================\n f f f LGPL-3 100 f f \N \N \N \N -48 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/discuss Chat, mail gateway and private channels mail Odoo S.A. /mail/static/description/icon.png uninstalled \N Discuss 10 Odoo Enterprise Social Network\n------------------------------\n\nConnect with experts, follow what interests you, share documents and promote\nbest practices with Odoo Enterprise Social Network. Get work done with\neffective collaboration across departments, geographies, documents and business\napplications. All of this while decreasing email overload.\n\nConnect with experts\n--------------------\n\nNext time you have a question for the marketing, sales, R&D or any other\ndepartment, don't send an email blast-post the question to Odoo and get answers\nfrom the right persons.\n\nFollow what interests you\n-------------------------\n\nWant to get informed about new product features, hot deals, bottlenecks in\nprojects or any other event? Just follow what interests you to get the\ninformation you need what you need; no more, no less.\n\nGet Things Done\n---------------\n\nYou can process (not only read) the inbox and easily mark messages for future\nactions. Start feeling the pleasure of having an empty inbox every day; no more\noverload of information.\n\nPromote best practices\n----------------------\n\nCut back on meetings and email chains by working together in groups of\ninterests. Create a group to let people share files, discuss ideas, and vote to\npromote best practices.\n\nImprove Access to Information and Expertise\n-------------------------------------------\n\nBreak down information silos. Search across your existing systems to find the\nanswers and expertise you need to complete projects quickly.\n\nCollaborate securely\n--------------------\n\nSet the right security policy; public, private or on invitation only --\naccording to the information sensitivity.\n\nA Twitter-like Network For My Company\n---------------------------------------\n\nMake every employee feel more connected and engaged with twitter-like features\nfor your own company. Follow people, share best practices, 'like' top ideas,\netc.\n t f f LGPL-3 100 f f \N \N \N \N -50 \N \N 2020-10-28 19:00:42.694321 1 Add a link to edit a translation in Transifex transifex Odoo S.A. /transifex/static/description/icon.png uninstalled \N Transifex integration 6 \nTransifex integration\n=====================\nThis module will add a link to the Transifex project in the translation view.\nThe purpose of this module is to speed up translations of the main modules.\n\nTo work, Odoo uses Transifex configuration files `.tx/config` to detec the\nproject source. Custom modules will not be translated (as not published on\nthe main Transifex project).\n\nThe language the user tries to translate must be activated on the Transifex\nproject.\n f f f LGPL-3 100 f f \N \N \N \N -51 \N \N 2020-10-28 19:00:42.694321 1 website_sale_link_tracker Odoo S.A. /base/static/description/icon.png uninstalled \N eCommerce Link Tracker 19 \nView Link Tracker Statistics on eCommerce dashboard\n=====================================================\n\n f f f LGPL-3 100 t f \N \N \N \N -52 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/notes Organize your work with memos note Odoo S.A. /note/static/description/icon.png uninstalled \N Notes 12 Odoo Notes\n----------\n\nOrganize yourself with efficient todo lists and notes.\nFrom personal tasks to collaborative meeting minutes, increase your user's\nproductivity by giving them the tools to prioritize their work, share their\nideas and collaborate on documents.\n\nPersonal to-do lists that works\n-------------------------------\n\nQuickly create to-dos, organize horizontally for the mid-term (today, this week, this month, ...), prioritize vertically for the short term and group by assigning colors. The kanban approach allows a simple visual organization of your to-dos.\n\n### Beat Work Overload\n\nFeel how good it is to rely on a structured way to organize your work instead of keeping everything in memory. Use notes to [Get Things Done](http://en.wikipedia.org/wiki/Getting_Things_Done).\n\n### Prioritize Efficiently\n\nMost people are lost in the flow of urgent daily tasks and have difficulties to work on important, long-term tasks. Notes gives you a simple way to allocate time very day to do important, but less urgent tasks.\n\n### Find Motivation to Close Tasks\n\nPeople used to work on tasks they like and not on important tasks. Start feeling good by checking tasks as done.\n\nAdapts to Your Creative Process\n-------------------------------\n\n### Customize to your own workflow\n\nEveryone has their own way to organize activities. Odoo Notes' smart kanban approach allows every user to customize their own steps to process it's to-dos and notes.\n\n### A Creative Person\n\nA creative person will organize notes based on idea's maturity level: Draft Ideas ** Mature Ideas ** Specified **To Do\n\n### A Frequent Traveler\n\nAn employee travelling a lot can organize their tasks based on the context to perform the task: U.S. Office | London's Office | To Review during Flights | At Home\n\n### A Manager\n\nA manager will organize their high number of tasks based on prioritizations: Todo Today | This Week | This Month | Later\n\nPersonnal Notes\n---------------\n\n### Notes are private but can be shared\n\nWrite down your ideas in pads, keep your notes at your finger tips, attach related documents and use tags and colors to organize the information. Once your ideas are mature, you can share them to others users, start discussing it and collaborate by improving the specification in the pad.\n\nCollaborative Meeting Minutes\n-----------------------------\n\n### Real-time sharing and edition of notes\n\nThe real time collaborative writings on notes makes it the perfect tool to collaborate on meeting minutes. Attendees will be able to contribute to the minutes, attach important documents or discuss on the related thread.\n\n t f f LGPL-3 45 f f \N \N \N \N -62 \N \N 2020-10-28 19:00:42.694321 1 google_drive Odoo S.A. /google_drive/static/description/icon.png uninstalled \N Google Drive™ integration 6 \nIntegrate google document to Odoo record.\n============================================\n\nThis module allows you to integrate google documents to any of your Odoo record quickly and easily using OAuth 2.0 for Installed Applications,\nYou can configure your google Authorization Code from Settings > Configuration > General Settings by clicking on "Generate Google Authorization Code"\n f f f LGPL-3 100 f f \N \N \N \N -54 \N \N 2020-10-28 19:00:42.694321 1 base_vat Odoo S.A. /base/static/description/icon.png uninstalled \N VAT Number Validation 8 \nVAT validation for Partner's VAT numbers.\n=========================================\n\nAfter installing this module, values entered in the VAT field of Partners will\nbe validated for all supported countries. The country is inferred from the\n2-letter country code that prefixes the VAT number, e.g. ``BE0477472701``\nwill be validated using the Belgian rules.\n\nThere are two different levels of VAT number validation:\n--------------------------------------------------------\n * By default, a simple off-line check is performed using the known validation\n rules for the country, usually a simple check digit. This is quick and \n always available, but allows numbers that are perhaps not truly allocated,\n or not valid anymore.\n\n * When the "VAT VIES Check" option is enabled (in the configuration of the user's\n Company), VAT numbers will be instead submitted to the online EU VIES\n database, which will truly verify that the number is valid and currently\n allocated to a EU company. This is a little bit slower than the simple\n off-line check, requires an Internet connection, and may not be available\n all the time. If the service is not available or does not support the\n requested country (e.g. for non-EU countries), a simple check will be performed\n instead.\n\nSupported countries currently include EU countries, and a few non-EU countries\nsuch as Chile, Colombia, Mexico, Norway or Russia. For unsupported countries,\nonly the country code will be validated.\n f f f LGPL-3 100 f f \N \N \N \N -55 \N \N 2020-10-28 19:00:42.694321 1 test_new_api Odoo S.A. /base/static/description/icon.png uninstalled \N Test API 9 A module to test the API. f f f LGPL-3 100 f f \N \N \N \N -71 \N \N 2020-10-28 19:00:42.694321 1 pad_project Odoo S.A. /base/static/description/icon.png uninstalled \N Pad on tasks 21 \nThis module adds a PAD in all project form views.\n=================================================\n f f f LGPL-3 100 t f \N \N \N \N -72 \N \N 2020-10-28 19:00:42.694321 1 pad Odoo S.A. /base/static/description/icon.png uninstalled \N Collaborative Pads 6 \nAdds enhanced support for (Ether)Pad attachments in the web client.\n===================================================================\n\nLets the company customize which Pad installation should be used to link to new\npads (by default, http://etherpad.com/).\n f f t LGPL-3 100 f f \N \N \N \N -57 \N \N 2020-10-28 19:00:42.694321 1 Payment Acquirer: PayuMoney Implementation payment_payumoney Odoo S.A. /payment_payumoney/static/description/icon.png uninstalled \N PayuMoney Payment Acquirer 20 \n PayuMoney Payment Acquirer for India.\n\n PayUmoney payment gateway supports only INR currency.\n f f f LGPL-3 100 f f \N \N \N \N -59 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/project-management Organize and schedule your projects project Odoo S.A. /project/static/description/icon.png uninstalled \N Project 21 Project Management\n------------------\n\n### Infinitely flexible. Incredibly easy to use.\n\n\nOdoo's collaborative and realtime open source project management\nhelps your team get work done. Keep track of everything, from the big picture\nto the minute details, from the customer contract to the billing.\n\nDesigned to fit your own process\n--------------------------------\n\nOrganize projects around your own processes. Work on tasks and issues using the\nkanban view, schedule tasks using the gantt chart and control deadlines in the\ncalendar view. Every project may have it's own stages allowing teams to\noptimize their job.\n\nEasy to use\n-----------\n\nGet organized as fast as you can think. The easy-to-use interface takes no time\nto learn, and every action is instantaneous, so there’s nothing standing\nbetween you and your sweet productive flow.\n\nWork Together\n-------------\n\n### Real time chats, document sharing, email integration\n\nUse open chatter to communicate with your team or customers and share comments\nand documents on tasks and issues. Integrate discussion fast with the email\nintegration.\n\nTalk to others users or customers with the website live chat feature.\n\nCollaborative Writing\n---------------------\n\n### The power of etherpad, inside your tasks\n\nCollaboratively edit the same specifications or meeting minutes right inside\nthe application. The incorporated etherpad feature allows several people to\nwork on the same tasks, at the same time.\n\nThis is very efficient for scrum meetings, meeting minutes or complex\nspecifications. Every user has their own color and you can replay the whole\ncreation of the content.\n\nGet Work Done\n-------------\n\nGet alerts on followed events to stay up to date with what interests you. Use\ninstant green/red visual indicators to scan through what has been done and what\nrequires your attention.\n\nTimesheets, Contracts & Invoicing\n---------------------------------\n\nProjects are automatically integrated with customer contracts allowing you to\ninvoice based on time & materials and record timesheets easily.\n\nTrack Issues\n------------\n\nSingle out the issues that arise in a project in order to have a better focus\non resolving them. Integrate customer interaction on every issue and get\naccurate reports on your team's performance.\n\n t f f LGPL-3 10 f f \N \N \N \N -60 \N \N 2020-10-28 19:00:42.694321 1 product_email_template Odoo S.A. /base/static/description/icon.png uninstalled \N Product Email Template 8 \nAdd email templates to products to be sent on invoice confirmation\n==================================================================\n\nWith this module, link your products to a template to send complete information and tools to your customer.\nFor instance when invoicing a training, the training agenda and materials will automatically be sent to your customers.'\n f f f LGPL-3 100 f f \N \N \N \N -61 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/sales From quotations to invoices sale_management Odoo S.A. /sale_management/static/description/icon.png uninstalled \N Sales 5 \nManage sales quotations and orders\n==================================\n\nThis application allows you to manage your sales goals in an effective and efficient manner by keeping track of all sales orders and history.\n\nIt handles the full sales workflow:\n\n* **Quotation** -> **Sales order** -> **Invoice**\n\nPreferences (only with Warehouse Management installed)\n------------------------------------------------------\n\nIf you also installed the Warehouse Management, you can deal with the following preferences:\n\n* Shipping: Choice of delivery at once or partial delivery\n* Invoicing: choose how invoices will be paid\n* Incoterms: International Commercial terms\n\n\nWith this module you can personnalize the sales order and invoice report with\ncategories, subtotals or page-breaks.\n\nThe Dashboard for the Sales Manager will include\n------------------------------------------------\n* My Quotations\n* Monthly Turnover (Graph)\n t f f LGPL-3 17 f f \N \N \N \N -64 \N \N 2020-10-28 19:00:42.694321 1 google_account Odoo S.A. /base/static/description/icon.png uninstalled \N Google Users 6 \nThe module adds google user in res user.\n========================================\n f f f LGPL-3 100 f f \N \N \N \N -65 \N \N 2020-10-28 19:00:42.694321 1 account_analytic_default Odoo S.A. /base/static/description/icon.png uninstalled \N Account Analytic Defaults 8 \nSet default values for your analytic accounts.\n==============================================\n\nAllows to automatically select analytic accounts based on criterions:\n---------------------------------------------------------------------\n * Product\n * Partner\n * User\n * Company\n * Date\n f f f LGPL-3 100 f f \N \N \N \N -66 \N \N 2020-10-28 19:00:42.694321 1 Add delivery costs to online sales website_sale_delivery Odoo S.A. /website_sale_delivery/static/description/icon.png uninstalled \N eCommerce Delivery 1 \nAdd a selection of delivery methods to your eCommerce store.\nConfigure your own methods with a pricing grid or integrate with carriers for a fully automated shipping process.\n f f f LGPL-3 100 t f \N \N \N \N -67 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/website-builder Enterprise website builder website Odoo S.A. /website/static/description/icon.png uninstalled \N Website 1 Odoo Website Builder\n--------------------\n\nGet an awesome and free website,\neasily customizable with the Odoo website builder.\n\nCreate enterprise grade website with our super easy builder. Use finely\ndesigned building blocks and edit everything inline.\n\nBenefit from out-of-the-box business features; e-Commerce, events, blogs, jobs\nannounces, customer references, call-to-actions, etc.\n\nEdit Anything Inline\n--------------------\n\nCreate beautiful websites with no technical knowledge. Odoo's unique *'edit\ninline'* approach makes website creation surprisingly easy. No more complex\nbackend; just click anywhere to change any content.\n\n"Want to change the price of a product? or put it in bold? Want to change a\nblog title?" Just click and change. What you see is what you get. Really.\n\nAwesome. Astonishingly Beautiful.\n---------------------------------\n\nOdoo's building blocks allow to design modern websites that are not possible\nwith traditional WYSIWYG page editors.\n\nWhether it's for products descriptions, blogs or static pages, you don't need\nto be a professioanl designer to create clean contents. Just drag and drop and\ncustomize predefined building blocks.\n\nEnterprise-Ready, out-of-the-box\n--------------------------------\n\nActivate ready-to-use enterprise features in just a click; e-commerce,\ncall-to-actions, jobs announces, events, customer references, blogs, etc.\n\nTraditional eCommerce and CMS have poorly designed backends as it's not their\ncore focus. With the Odoo integration, you benefit from the best management\nsoftware to follow-up on your orders, your jobs applicants, your leads, etc.\n\nA Great Mobile Experience\n-------------------------\n\nGet a mobile friendly website thanks to our responsive design based on\nbootstrap. All your pages adapt automatically to the screen size. (mobile\nphones, tablets, desktop) You don't have to worry about mobile contents, it\nworks by default.\n\nSEO tools at your finger tips\n-----------------------------\n\nThe *Promote* tool suggests keywords according to Google most searched terms.\nSearch Engine Optimization tools are ready to use, with no configuration\nrequired.\n\nGoogle Analytics tracks your shopping cart events by default. Sitemap and\nstructured content are created automatically for Google indexation.\n\nMulti-Languages Made Easy\n-------------------------\n\nGet your website translated in multiple languages with no effort. Odoo proposes\nand propagates translations automatically across pages, following what you edit\non the master page.\n\nBenefit from professional translators to translate all your contents\nautomatically with the [Gengo](http://gengo.com) integration. Update any part\nof your website and the translated versions are pushed automatically in a few\nhours.\n\nDesigner-Friendly Templates\n---------------------------\n\nTemplates are awesome and easy to design. You don't need to develop to create\nnew pages, themes or building blocks. We use a clean HTML structure, a\n[bootstrap](http://getbootstrap.com/) CSS.\n\nCustomize every page on the fly with the integrated template editor. Distribute\nyour work easily as an Odoo module.\n\nFluid Grid Layouting\n--------------------\n\nDesign perfect pages by drag and dropping building blocks. Move and scale them\nto fit the layout you are looking for.\n\nBuilding blocks are based on a responsive, mobile friendly fluid grid system\nthat appropriately scales up to 12 columns as the device or viewport size\nincreases.\n\nProfessional Themes\n-------------------\n\nDesign a custom theme or reuse pre-defined themes to customize the look and\nfeel of your website.\n\nTest new color scheme easily; you can change your theme at any time in just a\nclick.\n\nIntegrated With Odoo Apps\n-------------------------\n\n### e-Commerce\n\nPromote products, sell online, optimize visitors' shopping experience.\n\n\n### Blogs\n\nWrite news, attract new visitors, build customer loyalty.\n\n\n### Online Events\n\nSchedule, organize, promote or sell events online; conferences, trainings, webinars, etc.\n t f f LGPL-3 7 f f \N \N \N \N -68 \N \N 2020-10-28 19:00:42.694321 1 l10n_multilang Odoo S.A. /base/static/description/icon.png uninstalled \N Multi Language Chart of Accounts 14 \n * Multi language support for Chart of Accounts, Taxes, Tax Codes, Journals,\n Accounting Templates, Analytic Chart of Accounts and Analytic Journals.\n * Setup wizard changes\n - Copy translations for COA, Tax, Tax Code and Fiscal Position from\n templates to target objects.\n f f f LGPL-3 100 f f \N \N \N \N -69 \N \N 2020-10-28 19:00:42.694321 1 Show your company address on Google Maps website_google_map Odoo S.A. /website_google_map/static/description/icon.png uninstalled \N Google Maps 1 \nShow your company address/partner address on Google Maps. Configure an API key in the Website settings.\n f f f LGPL-3 100 f f \N \N \N \N -70 \N \N 2020-10-28 19:00:42.694321 1 auth_password_policy_signup Odoo S.A. /base/static/description/icon.png uninstalled \N Password Policy support for Signup 19 f f f LGPL-3 100 t f \N \N \N \N -73 \N \N 2020-10-28 19:00:42.694321 1 stock_picking_batch Odoo S.A. /base/static/description/icon.png uninstalled \N Warehouse Management: Batch Picking 18 \nThis module adds the batch picking option in warehouse management\n=================================================================\n f f f LGPL-3 100 f f \N \N \N \N -74 \N \N 2020-10-28 19:00:42.694321 1 Allow shoppers to compare products based on their attributes website_sale_comparison Odoo SA /website_sale_comparison/static/description/icon.png uninstalled \N Product Comparison 1 \nThis module adds a comparison tool to your eCommerce shop, so that your shoppers can easily compare products based on their attributes. It will considerably accelerate their purchasing decision.\n\nTo configure product attributes, activate *Attributes & Variants* in the Website settings. This will add a dedicated section in the product form. In the configuration, this module adds a category field to product attributes in order to structure the shopper's comparison table.\n\nFinally, the module comes with an option to display an attribute summary table in product web pages (available in Customize menu).\n f f f LGPL-3 100 f f \N \N \N \N -75 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/accounting l10n_uk SmartMode LTD /l10n_uk/static/description/icon.png uninstalled \N UK - Accounting 14 \nThis is the latest UK Odoo localisation necessary to run Odoo accounting for UK SME's with:\n=================================================================================================\n - a CT600-ready chart of accounts\n - VAT100-ready tax structure\n - InfoLogic UK counties listing\n - a few other adaptations f f f LGPL-3 100 f f \N \N \N \N -76 \N \N 2020-10-28 19:00:42.694321 1 sale_margin Odoo S.A. /base/static/description/icon.png uninstalled \N Margins in Sales Orders 5 \nThis module adds the 'Margin' on sales order.\n=============================================\n\nThis gives the profitability by calculating the difference between the Unit\nPrice and Cost Price.\n f f f LGPL-3 100 f f \N \N \N \N -77 \N \N 2020-10-28 19:00:42.694321 1 Chat with your website visitors website_livechat Odoo S.A. /website_livechat/static/description/icon.png uninstalled \N Website Live Chat 22 \nAllow website visitors to chat with the collaborators. This module also brings a feedback tool for the livechat and web pages to display your channel with its ratings on the website.\n t f f LGPL-3 100 t f \N \N \N \N -78 \N \N 2020-10-28 19:00:42.694321 1 auth_ldap Odoo S.A. /base/static/description/icon.png uninstalled \N Authentication via LDAP 6 Adds support for authentication by LDAP server.\n===============================================\nThis module allows users to login with their LDAP username and password, and\nwill automatically create Odoo users for them on the fly.\n\n**Note:** This module only work on servers who have Python's ``ldap`` module installed.\n\nConfiguration:\n--------------\nAfter installing this module, you need to configure the LDAP parameters in the\nGeneral Settings menu. Different companies may have different\nLDAP servers, as long as they have unique usernames (usernames need to be unique\nin Odoo, even across multiple companies).\n\nAnonymous LDAP binding is also supported (for LDAP servers that allow it), by\nsimply keeping the LDAP user and password empty in the LDAP configuration.\nThis does not allow anonymous authentication for users, it is only for the master\nLDAP account that is used to verify if a user exists before attempting to\nauthenticate it.\n\nSecuring the connection with STARTTLS is available for LDAP servers supporting\nit, by enabling the TLS option in the LDAP configuration.\n\nFor further options configuring the LDAP settings, refer to the ldap.conf\nmanpage: manpage:`ldap.conf(5)`.\n\nSecurity Considerations:\n------------------------\nUsers' LDAP passwords are never stored in the Odoo database, the LDAP server\nis queried whenever a user needs to be authenticated. No duplication of the\npassword occurs, and passwords are managed in one place only.\n\nOdoo does not manage password changes in the LDAP, so any change of password\nshould be conducted by other means in the LDAP directory directly (for LDAP users).\n\nIt is also possible to have local Odoo users in the database along with\nLDAP-authenticated users (the Administrator account is one obvious example).\n\nHere is how it works:\n---------------------\n * The system first attempts to authenticate users against the local Odoo\n database;\n * if this authentication fails (for example because the user has no local\n password), the system then attempts to authenticate against LDAP;\n\nAs LDAP users have blank passwords by default in the local Odoo database\n(which means no access), the first step always fails and the LDAP server is\nqueried to do the authentication.\n\nEnabling STARTTLS ensures that the authentication query to the LDAP server is\nencrypted.\n\nUser Template:\n--------------\nIn the LDAP configuration on the General Settings, it is possible to select a *User\nTemplate*. If set, this user will be used as template to create the local users\nwhenever someone authenticates for the first time via LDAP authentication. This\nallows pre-setting the default groups and menus of the first-time users.\n\n**Warning:** if you set a password for the user template, this password will be\n assigned as local password for each new LDAP user, effectively setting\n a *master password* for these users (until manually changed). You\n usually do not want this. One easy way to setup a template user is to\n login once with a valid LDAP user, let Odoo create a blank local\n user with the same login (and a blank password), then rename this new\n user to a username that does not exist in LDAP, and setup its groups\n f f f LGPL-3 100 f f \N \N \N \N -79 \N \N 2020-10-28 19:00:42.694321 1 Implementation of sparse fields. base_sparse_field Odoo S.A. /base/static/description/icon.png uninstalled \N Sparse Fields 22 \n The purpose of this module is to implement "sparse" fields, i.e., fields\n that are mostly null. This implementation circumvents the PostgreSQL\n limitation on the number of columns in a table. The values of all sparse\n fields are stored in a "serialized" field in the form of a JSON mapping.\n f f f LGPL-3 100 f f \N \N \N \N -81 \N \N 2020-10-28 19:00:42.694321 1 website_sale_management Odoo S.A. /base/static/description/icon.png uninstalled \N Website - Sales Management 22 \nDisplay orders to invoice in website dashboard.\n f f f LGPL-3 100 t f \N \N \N \N -82 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/warehouse Manage your stock and logistics activities stock Odoo S.A. /stock/static/description/icon.png uninstalled \N Inventory 18 t f f LGPL-3 13 f f \N \N \N \N -122 \N \N 2020-10-28 19:00:42.694321 1 test_limits Odoo S.A. /base/static/description/icon.png uninstalled \N test-limits 9 A module with dummy methods. f f f LGPL-3 100 f f \N \N \N \N -83 \N \N 2020-10-28 19:00:42.694321 1 product_expiry Odoo S.A. /base/static/description/icon.png uninstalled \N Products Expiration Date 18 \nTrack different dates on products and production lots.\n======================================================\n\nFollowing dates can be tracked:\n-------------------------------\n - end of life\n - best before date\n - removal date\n - alert date\n\nAlso implements the removal strategy First Expiry First Out (FEFO) widely used, for example, in food industries.\n f f f LGPL-3 100 f f \N \N \N \N -87 \N \N 2020-10-28 19:00:42.694321 1 Partner module for website website_partner Odoo S.A. /website_partner/static/description/icon.png uninstalled \N Website Partner 22 \nThis is a base module. It holds website-related stuff for Contact model (res.partner).\n f f f LGPL-3 100 f f \N \N \N \N -176 \N \N 2020-10-28 19:00:42.694321 1 test_read_group Odoo S.A. /base/static/description/icon.png uninstalled \N test read_group 9 Tests for read_group f f f LGPL-3 100 f f \N \N \N \N -177 \N \N 2020-10-28 19:00:42.694321 1 website_event_questions Odoo S.A. /website_event_questions/static/description/icon.png uninstalled \N Questions on Events 17 Questions on Events f f f LGPL-3 100 f f \N \N \N \N -89 \N \N 2020-10-28 19:00:42.694321 1 account_test Odoo S.A. /base/static/description/icon.png uninstalled \N Accounting Consistency Tests 8 \nAsserts on accounting.\n======================\nWith this module you can manually check consistencies and inconsistencies of accounting module from menu Reporting/Accounting/Accounting Tests.\n\nYou can write a query in order to create Consistency Test and you will get the result of the test \nin PDF format which can be accessed by Menu Reporting -> Accounting Tests, then select the test \nand print the report from Print button in header area.\n f f f LGPL-3 100 f f \N \N \N \N -91 \N \N 2020-10-28 19:00:42.694321 1 Manage product inventory & availability website_sale_stock Odoo S.A. /website_sale_stock/static/description/icon.png uninstalled \N Product Availability 1 \nManage the inventory of your products and display their availability status in your eCommerce store.\nIn case of stockout, you can decide to block further sales or to keep selling.\nA default behavior can be selected in the Website settings.\nThen it can be made specific at the product level.\n f f f LGPL-3 100 t f \N \N \N \N -92 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/discuss Add OdooBot in discussions mail_bot Odoo S.A. /base/static/description/icon.png uninstalled \N OdooBot 10 f f f LGPL-3 100 t f \N \N \N \N -93 \N \N 2020-10-28 19:00:42.694321 1 Sponsors, Tracks, Agenda, Event News website_event_track Odoo S.A. /website_event_track/static/description/icon.png uninstalled \N Advanced Events 17 Organize Events, Trainings & Webinars\n-------------------------------------\n\n### Schedule, Promote, Sell, Organize\n\nGet extra features per event; multiple pages, sponsors, multiple talks, talk proposal form, agenda, event-related news, documents (slides of presentations), event-specific menus.\n\nOrganize Your Tracks\n--------------------\n\n### From the talk proposal to the publication\n\nAdd a talk proposal form on your events to allow visitors to submit talks and speakers. Organize the validation process of every talk, and schedule easily.\n\nOdoo's unique frontend and backend integration makes organization and publication so easy. Easily design beautiful speaker biographies and talks description.\n\nAgenda and List of Talks\n------------------------\n\n### A strong user interface\n\nGet a beautiful agenda for each event published automatically on your website. Allow your visitors to easily search and browse talks, filter by tags, locations or speakers.\n\nManage Sponsors\n---------------\n\n### Sell sponsorship, promote your sponsors\n\nAdd sponsors to your events and publish sponsors per level (e.g. bronze, silver, gold) on the bottom of every page of the event.\n\nSell sponsorship packages online through the Odoo eCommerce for a full sales cycle integration.\n\nCommunicate Efficiently\n-----------------------\n\n### Activate a blog for some events\n\nYou can activate a blog for each event allowing you to communicate on specific events. Visitors can subscribe to news to get informed. f f f LGPL-3 100 f f \N \N \N \N -94 \N \N 2020-10-28 19:00:42.694321 1 theme_default Odoo S.A. /theme_default/static/description/icon.png uninstalled \N Default Theme 24 Default website theme f f f LGPL-3 1000 f f \N \N \N \N -96 \N \N 2020-10-28 19:00:42.694321 1 Allow shoppers to enlist products website_sale_wishlist Odoo SA /website_sale_wishlist/static/description/icon.png uninstalled \N Shopper's Wishlist 1 \nAllow shoppers of your eCommerce store to create personalized collections of products they want to buy and save them for future reference.\n f f f LGPL-3 100 f f \N \N \N \N -99 \N \N 2020-10-28 19:00:42.694321 1 Publish your customer references website_customer Odoo S.A. /website_customer/static/description/icon.png uninstalled \N Customer References 1 \nPublish your customers as business references on your website to attract new potential prospects.\n f f f LGPL-3 100 f f \N \N \N \N -100 \N \N 2020-10-28 19:00:42.694321 1 snailmail_account Odoo S.A. /base/static/description/icon.png uninstalled \N snailmail_account 12 \nAllows users to send invoices by post\n=====================================================\n f f f LGPL-3 100 t f \N \N \N \N -103 \N \N 2020-10-28 19:00:42.694321 1 test_rpc Odoo S.A. /base/static/description/icon.png uninstalled \N Test RPC 9 A module to test the RPC requests. f f f LGPL-3 100 f f \N \N \N \N -104 \N \N 2020-10-28 19:00:42.694321 1 Generate trackable & short URLs website_links Odoo S.A. /website_links/static/description/icon.png uninstalled \N Link Tracker 1 \nGenerate short links with analytics trackers (UTM) to share your pages through marketing campaigns.\nThose trackers can be used in Google Analytics to track clicks and visitors, or in Odoo reports to analyze the efficiency of those campaigns in terms of lead generation, related revenues (sales orders), recruitment, etc.\n f f f LGPL-3 100 t f \N \N \N \N -106 \N \N 2020-10-28 19:00:42.694321 1 Schedule employees meetings calendar Odoo S.A. /calendar/static/description/icon.png uninstalled \N Calendar 6 \nThis is a full-featured calendar system.\n========================================\n\nIt supports:\n------------\n - Calendar of events\n - Recurring events\n\nIf you need to manage your meetings, you should install the CRM module.\n t f f LGPL-3 130 f f \N \N \N \N -108 \N \N 2020-10-28 19:00:42.694321 1 Payment integration with website website_payment Odoo S.A. /website_payment/static/description/icon.png uninstalled \N Website Payment 22 \nThis is a bridge module which integrates payment acquirers with Website app.\n f f f LGPL-3 100 f f \N \N \N \N -109 \N \N 2020-10-28 19:00:42.694321 1 Repair damaged products repair Odoo S.A. /repair/static/description/icon.png uninstalled \N Repairs 25 \nThe aim is to have a complete module to manage all products repairs.\n====================================================================\n\nThe following topics are covered by this module:\n------------------------------------------------------\n * Add/remove products in the reparation\n * Impact for stocks\n * Invoicing (products and/or services)\n * Warranty concept\n * Repair quotation report\n * Notes for the technician and for the final customer\n t f f LGPL-3 200 f f \N \N \N \N -111 \N \N 2020-10-28 19:00:42.694321 1 Twitter scroller snippet in website website_twitter Odoo S.A. /website_twitter/static/description/icon.png uninstalled \N Twitter Roller 1 \nThis module adds a Twitter roller building block to the website builder, so that you can display Twitter feeds on any page of your website.\n f f f LGPL-3 100 f f \N \N \N \N -113 \N \N 2020-10-28 19:00:42.694321 1 auth_signup Odoo S.A. /base/static/description/icon.png uninstalled \N Signup 6 \nAllow users to sign up and reset their password\n===============================================\n f f f LGPL-3 100 t f \N \N \N \N -114 \N \N 2020-10-28 19:00:42.694321 1 Payment Acquirer: Transfer Implementation payment_transfer Odoo S.A. /payment_transfer/static/description/icon.png uninstalled \N Transfer Payment Acquirer 8 Transfer Payment Acquirer f f f LGPL-3 100 t f \N \N \N \N -115 \N \N 2020-10-28 19:00:42.694321 1 Generate leads from a contact form website_crm Odoo S.A. /website_crm/static/description/icon.png uninstalled \N Contact Form 1 \nGenerate leads or opportunities in the CRM app from a contact form published on the Contact us page of your website. This form can be customized thanks to the *Form Builder* module (available in Odoo Enterprise).\n f f f LGPL-3 54 t f \N \N \N \N -118 \N \N 2020-10-28 19:00:42.694321 1 account_cancel Odoo S.A. /base/static/description/icon.png uninstalled \N Cancel Journal Entries 8 \nAllows canceling accounting entries.\n====================================\n\nThis module adds a checkbox on the accounting journals to allow the cancellation of journal entries.\n\nThis checkbox is only visible on the accounting journals when the debug mode is active.\n\nIf this checkbox is set to TRUE, it allows users to cancel journal entries.\n\nThe accounting entry that is cancelled can then be modified and reposted or deleted.\n\nIt also operates on invoices, bank statements, payments ...\n\nBe careful with this module as it has audit implications. Cancelling accounting entries is not authorized in all countries.\n f f f LGPL-3 100 f f \N \N \N \N -119 \N \N 2020-10-28 19:00:42.694321 1 test_documentation_examples Odoo S.A. /base/static/description/icon.png uninstalled \N Documentation examples test 9 \n Contains pieces of code to be used as technical documentation examples\n (via the ``literalinclude`` directive) in situations where they can be\n syntax-checked and tested.\n f f f LGPL-3 100 f f \N \N \N \N -120 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/live-chat Chat with your website visitors im_livechat Odoo S.A. /im_livechat/static/description/icon.png uninstalled \N Live Chat 1 \nLive Chat Support\n==========================\n\nAllow to drop instant messaging widgets on any web page that will communicate\nwith the current server and dispatch visitors request amongst several live\nchat operators.\nHelp your customers with this chat, and analyse their feedback.\n\n t f f LGPL-3 170 f f \N \N \N \N -121 \N \N 2020-10-28 19:00:42.694321 1 test_exceptions Odoo S.A. /test_exceptions/static/description/icon.png uninstalled \N test-exceptions 9 A module to generate exceptions. f f f LGPL-3 100 f f \N \N \N \N -123 \N \N 2020-10-28 19:00:42.694321 1 Surveys hr_recruitment_survey Odoo S.A. /base/static/description/icon.png uninstalled \N Hr Recruitment Interview Forms 26 \n Use interview forms during recruitment process.\n This module is integrated with the survey module\n to allow you to define interviews for different jobs.\n f f f LGPL-3 100 f f \N \N \N \N -124 \N \N 2020-10-28 19:00:42.694321 1 account_facturx Odoo S.A. /base/static/description/icon.png uninstalled \N Import Vendor Bills From XML 8 f f f LGPL-3 100 t f \N \N \N \N -126 \N \N 2020-10-28 19:00:42.694321 1 test_access_rights Odoo S.A. /base/static/description/icon.png uninstalled \N test of access rights and rules 19 Testing of access restrictions f f f LGPL-3 100 f f \N \N \N \N -129 \N \N 2020-10-28 19:00:42.694321 1 \n Auto-complete partner companies' data partner_autocomplete Odoo SA /base/static/description/icon.png uninstalled \N Partner Autocomplete 12 \n Auto-complete partner companies' data\n f f f LGPL-3 100 t f \N \N \N \N -178 \N \N 2020-10-28 19:00:42.694321 1 Equipments, Assets, Internal Hardware, Allocation Tracking hr_maintenance Odoo S.A. /base/static/description/icon.png uninstalled \N Maintenance - HR 19 \n Bridge between HR and Maintenance. f f f LGPL-3 125 t f \N \N \N \N -133 \N \N 2020-10-28 19:00:42.694321 1 uom Odoo S.A. /base/static/description/icon.png uninstalled \N Units of measure 5 \nThis is the base module for managing Units of measure.\n========================================================================\n f f f LGPL-3 100 f f \N \N \N \N -134 \N \N 2020-10-28 19:00:42.694321 1 base_gengo Odoo S.A. /base/static/description/icon.png uninstalled \N Automated Translations through Gengo API 12 \nAutomated Translations through Gengo API\n========================================\n\nThis module will install passive scheduler job for automated translations \nusing the Gengo API. To activate it, you must\n1) Configure your Gengo authentication parameters under `Settings > Companies > Gengo Parameters`\n2) Launch the wizard under `Settings > Application Terms > Gengo: Manual Request of Translation` and follow the wizard.\n\nThis wizard will activate the CRON job and the Scheduler and will start the automatic translation via Gengo Services for all the terms where you requested it.\n f f f LGPL-3 100 f f \N \N \N \N -135 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/survey Create surveys and analyze answers survey Odoo S.A. /survey/static/description/icon.png uninstalled \N Surveys 17 \nCreate beautiful surveys and visualize answers\n==============================================\n\nIt depends on the answers or reviews of some questions by different users. A\nsurvey may have multiple pages. Each page may contain multiple questions and\neach question may have multiple answers. Different users may give different\nanswers of question and according to that survey is done. Partners are also\nsent mails with personal token for the invitation of the survey.\n t f f LGPL-3 105 f f \N \N \N \N -136 \N \N 2020-10-28 19:00:42.694321 1 test_inherits_depends Odoo S.A. /base/static/description/icon.png uninstalled \N test-inherits-depends 9 A module to verify the inheritance using _inherits in non-original modules. f f f LGPL-3 100 f f \N \N \N \N -137 \N \N 2020-10-28 19:00:42.694321 1 association Odoo S.A. /base/static/description/icon.png uninstalled \N Associations Management 17 \nThis module is to configure modules related to an association.\n==============================================================\n\nIt installs the profile for associations to manage events, registrations, memberships, \nmembership products (schemes).\n f f f LGPL-3 100 f f \N \N \N \N -197 \N \N 2020-10-28 19:00:42.694321 1 Attract visitors to subscribe to mailing lists website_mass_mailing Odoo S.A. /website_mass_mailing/static/description/icon.png uninstalled \N Newsletter Subscribe Button 1 \nThis module brings a new building block with a mailing list widget to drop on any page of your website.\nOn a simple click, your visitors can subscribe to mailing lists managed in the Email Marketing app.\n f f f LGPL-3 100 t f \N \N \N \N -139 \N \N 2020-10-28 19:00:42.694321 1 l10n_eu_service Odoo S.A. /base/static/description/icon.png uninstalled \N EU Mini One Stop Shop (MOSS) 14 \nEU Mini One Stop Shop (MOSS) VAT for telecommunications, broadcasting and electronic services\n=============================================================================================\n\nAs of January 1rst, 2015, telecommunications, broadcasting\nand electronic services sold within the European Union\nhave to be always taxed in the country where the customer\nbelongs. In order to simplify the application of this EU\ndirective, the Mini One Stop Shop (MOSS) registration scheme\nallows businesses to make a unique tax declaration.\n\nThis module makes it possible by helping with the creation\nof the required EU fiscal positions and taxes in order to\nautomatically apply and record the required taxes.\n\nThis module installs a wizard to help setup fiscal positions\nand taxes for selling electronic services inside EU.\n\nThe wizard lets you select:\n - the EU countries to which you are selling these\n services\n - your national VAT tax for services, to be mapped\n to the target country's tax\n - optionally: a template fiscal position, in order\n to copy the account mapping. Should be your\n existing B2C Intra-EU fiscal position. (defaults\n to no account mapping)\n - optionally: an account to use for collecting the\n tax amounts (defaults to the account used by your\n national VAT tax for services)\n\nIt creates the corresponding fiscal positions and taxes,\nautomatically applicable for EU sales with a customer\nin the selected countries.\nThe wizard can be run again for adding more countries.\n\nReferences\n++++++++++\n- Directive 2008/8/EC\n- Council Implementing Regulation (EU) No 1042/2013\n\n f f f LGPL-3 100 f f \N \N \N \N -141 \N \N 2020-10-28 19:00:42.694321 1 document Odoo S.A. /base/static/description/icon.png uninstalled \N Attachments List and Document Indexation 27 \nAttachments list and document indexation\n========================================\n* Show attachment on the top of the forms\n* Document Indexation: odt\n f f f LGPL-3 100 f f \N \N \N \N -143 \N \N 2020-10-28 19:00:42.694321 1 Payment Acquirer: Buckaroo Implementation payment_buckaroo Odoo S.A. /payment_buckaroo/static/description/icon.png uninstalled \N Buckaroo Payment Acquirer 8 Buckaroo Payment Acquirer f f f LGPL-3 100 f f \N \N \N \N -179 \N \N 2020-10-28 19:00:42.694321 1 test_testing_utilities Odoo S.A. /base/static/description/icon.png uninstalled \N Test testing utilities 9 Non-trivial testing utilities can require models & all\n \nThis here module is useful to validate that they're doing what they're \nsupposed to do\n f f f LGPL-3 100 f f \N \N \N \N -144 \N \N 2020-10-28 19:00:42.694321 1 Manage your debts and credits thanks to simple sale/purchase receipts account_voucher Odoo S.A. /base/static/description/icon.png uninstalled \N Sale & Purchase Vouchers 8 \nTODO\n\nold description:\nInvoicing & Payments by Accounting Voucher & Receipts\n=====================================================\nThe specific and easy-to-use Invoicing system in Odoo allows you to keep track of your accounting, even when you are not an accountant. It provides an easy way to follow up on your vendors and customers. \n\nYou could use this simplified accounting in case you work with an (external) account to keep your books, and you still want to keep track of payments. \n\nThe Invoicing system includes receipts and vouchers (an easy way to keep track of sales and purchases). It also offers you an easy method of registering payments, without having to encode complete abstracts of account.\n\nThis module manages:\n\n* Voucher Entry\n* Voucher Receipt [Sales & Purchase]\n* Voucher Payment [Customer & Vendors]\n f f f LGPL-3 20 f f \N \N \N \N -145 \N \N 2020-10-28 19:00:42.694321 1 account_lock Odoo S.A. /base/static/description/icon.png uninstalled \N Irreversible Lock Date 8 \n Make the lock date irreversible:\n\n * You cannot define stricter conditions on advisors than on users. Then, the lock date on advisor must be set before the lock date for users.\n * You cannot lock a period that is not finished yet. Then, the lock date for advisors must be set before the last day of the previous month.\n * The new lock date for advisors must be set after the previous lock date.\n f f f LGPL-3 100 f f \N \N \N \N -146 \N \N 2020-10-28 19:00:42.694321 1 Sell event tickets online website_event_sale Odoo S.A. /website_event_sale/static/description/icon.png uninstalled \N Online Event Ticketing 1 \nSell event tickets through eCommerce app.\n f f f LGPL-3 100 t f \N \N \N \N -147 \N \N 2020-10-28 19:00:42.694321 1 Payment Acquirer: Ogone Implementation payment_ogone Odoo S.A. /payment_ogone/static/description/icon.png uninstalled \N Ogone Payment Acquirer 8 Ogone Payment Acquirer f f f LGPL-3 100 f f \N \N \N \N -150 \N \N 2020-10-28 19:00:42.694321 1 base_import_module Odoo S.A. /base/static/description/icon.png uninstalled \N Base import module 6 \nImport a custom data module\n===========================\n\nThis module allows authorized users to import a custom data module (.xml files and static assests)\nfor customization purpose.\n f f f LGPL-3 100 f f \N \N \N \N -151 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/mailing Design, send and track emails mass_mailing Odoo S.A. /mass_mailing/static/description/icon.png uninstalled \N Email Marketing 17 Odoo Mass Mailing\n-----------------\n\nEasily send mass mailing to your leads, opportunities or customers\nwith Odoo Mass Mailing. Track\nmarketing campaigns performance to improve conversion rates. Design\nprofessional emails and reuse templates in a few clicks.\n\nSend Professional Emails\n------------------------\n\nImport database of prospects or filter on existing leads, opportunities and\ncustomers in just a few clicks.\n\nDefine email templates to reuse content or specific design for your newsletter.\nSetup several email servers with their own IP/domain to optimise opening rates.\n\nOrganize Marketing Campaigns\n----------------------------\n\nDesign, Send, Track by Campaigns with our Lead Automation app.\n\nGet real time statistics on campaigns performance to improve your conversion\nrate. Track mails sent, received, opened and answered.\n\nEasily manage your marketing campaigns, discussion groups, leads and\nopportunities in one simple and powerful platform.\n\nIntegrated with Odoo Apps\n-------------------------\n\nGet access to mass mailing features from every Odoo app to improve the way your\nusers communicate.\n\nSend template of emails from Odoo CRM opportunities, select leads based\non marketing segments, send job offers and automate\nanswers to applicants, reuse email template in the lead automation marketing\ncampaigns.\n\nAnswers to your emails appears automatically in the history of every document\nwith the social network module.\n\nClean Your Lead Database\n------------------------\n\nGet a clean lead database that improves over the time using the performance of\nyour mails. Odoo handle bounce mails efficiently, flag erroneous leads\naccordingly and gives you statistics on the quality of your leads.\n\nOne click emails send\n---------------------\n\nThe marketing department will love working on campaigns. But you can also give\na one click mass mailing facility to all others users on their own prospects or\ndocuments.\n\nSelect a few documents (e.g. leads, support tickets, suppliers, applicants,\n...) and send emails to their contacts in one click, reusing existing emails\ntemplates.\n\nFollow-up On Answers\n--------------------\n\nThe chatter feature enables you to communicate faster and more efficiently with\nyour customer. Get documents created automatically (leads, opportunities,\ntasks, ...) based on answers to your mass mailing campaigns Follow the\ndiscussion directly on the business documents within Odoo or via email.\n\nGet all the negotiations and discussions attached to the right document and\nrelevent managers notified on specific events.\n\nCampaigns Dashboard\n-------------------\n\nGet the insights you need to make smarter marketing campaign. Track statistics\nper campaign: bounce rates, sent mails, best content, etc. The clear dashboards\ngives you a direct overview of your campaign performance.\n\nFully Integrated With Others Apps\n---------------------------------\n\nDefine automated actions (e.g. ask a salesperson to call, send an email, ...)\nbased on triggers (no activity since 20 days, answered a promotional email,\netc.)\n\nOptimize campaigns from lead to close, on every channel. Make smarter decisions\nabout where to invest and show the impact of your marketing activities on your\ncompany's bottom line.\n\nIntegrate a contact form in your website easily. Forms submissions create leads\nautomatically in Odoo CRM. Leads can be used in marketing campaigns.\n\nManage your sales funnel with no\neffort. Attract leads, follow-up on phone calls and meetings. Analyse the\nquality of your leads to make informed decisions and save time by integrating\nemails directly into the application.\n\n t f f LGPL-3 110 f f \N \N \N \N -152 \N \N 2020-10-28 19:00:42.694321 1 Check printing commons account_check_printing Odoo S.A. /account_check_printing/static/description/icon.png uninstalled \N Check Printing Base 8 \nThis module offers the basic functionalities to make payments by printing checks.\nIt must be used as a dependency for modules that provide country-specific check templates.\nThe check settings are located in the accounting journals configuration page.\n f f f LGPL-3 100 f f \N \N \N \N -153 \N \N 2020-10-28 19:00:42.694321 1 account_bank_statement_import Odoo S.A. /base/static/description/icon.png uninstalled \N Account Bank Statement Import 8 Generic Wizard to Import Bank Statements.\n\n(This module does not include any type of import format.)\n\nOFX and QIF imports are available in Enterprise version. f f f LGPL-3 100 t f \N \N \N \N -156 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/community-builder membership Odoo S.A. /membership/static/description/icon.png uninstalled \N Members 5 \nThis module allows you to manage all operations for managing memberships.\n=========================================================================\n\nIt supports different kind of members:\n--------------------------------------\n * Free member\n * Associated member (e.g.: a group subscribes to a membership for all subsidiaries)\n * Paid members\n * Special member prices\n\nIt is integrated with sales and accounting to allow you to automatically\ninvoice and send propositions for membership renewal.\n f f f LGPL-3 100 f f \N \N \N \N -157 \N \N 2020-10-28 19:00:42.694321 1 Drop Shipping stock_dropshipping Odoo S.A. /base/static/description/icon.png uninstalled \N Drop Shipping 18 \nManage drop shipping orders\n===========================\n\nThis module adds a pre-configured Drop Shipping operation type\nas well as a procurement route that allow configuring Drop\nShipping products and orders.\n\nWhen drop shipping is used the goods are directly transferred\nfrom vendors to customers (direct delivery) without\ngoing through the retailer's warehouse. In this case no\ninternal transfer document is needed.\n\n f f f LGPL-3 100 f f \N \N \N \N -158 \N \N 2020-10-28 19:00:42.694321 1 test_translation_import Odoo S.A. /base/static/description/icon.png uninstalled \N test-translation-import 9 A module to test translation import. f f f LGPL-3 100 f f \N \N \N \N -160 \N \N 2020-10-28 19:00:42.694321 1 Payment Acquirer: Adyen Implementation payment_adyen Odoo S.A. /payment_adyen/static/description/icon.png uninstalled \N Adyen Payment Acquirer 8 Adyen Payment Acquirer f f f LGPL-3 100 f f \N \N \N \N -161 \N \N 2020-10-28 19:00:42.694321 1 Centralize your address book contacts Odoo S.A. /contacts/static/description/icon.png uninstalled \N Contacts 12 \nThis module gives you a quick view of your contacts directory, accessible from your home page.\nYou can track your vendors, customers and other contacts.\n t f f LGPL-3 100 f f \N \N \N \N -162 \N \N 2020-10-28 19:00:42.694321 1 SMS Text Messaging sms Odoo S.A. /base/static/description/icon.png uninstalled \N SMS gateway 12 \nThis module gives a framework for SMS text messaging\n----------------------------------------------------\n\nThe service is provided by the In App Purchase Odoo platform.\n f f f LGPL-3 100 t f \N \N \N \N -167 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/manufacturing Manufacturing Orders & BOMs mrp Odoo S.A. /mrp/static/description/icon.png uninstalled \N Manufacturing 25 Odoo Manufacturing Resource Planning\n------------------------------------\n\nManage Bill of Materials, plan manufacturing orders, track work orders with the\nOdoo Open Source MRP app.\n\nGet all your assembly or manufacturing operations managed by Odoo. Schedule\nmanufacturing orders and work orders automatically. Review the proposed\nplanning with the smart kanban and gantt views. Use the advanced analytics\nfeatures to detect bottleneck in resources capacities and inventory locations.\n\nSchedule Manufacturing Orders Efficiently\n-----------------------------------------\n\nGet manufacturing orders and work orders scheduled automatically based on your\nprocurement rules, quantities forecasted and dependent demand (demand for this\npart based on another part consuming it).\n\nDefine Flexible Master Data\n---------------------------\n\nGet the flexibility to create multi-level bill of materials, optional routing,\nversion changes and phantom bill of materials. You can use BoM for kits or for\nmanufacturing orders.\n\nGet Flexibility In All Operations\n---------------------------------\n\nEdit manually all proposed operations at any level of the progress. With Odoo,\nyou will not be frustrated by a rigid system.\n\nSchedule Work Orders\n--------------------\n\nCheck resources capacities and fix bottlenecks. Define routings and plan the\nworking time and capacity of your resources. Quickly identify resource\nrequirements and bottlenecks to ensure your production meets your delivery\nschedule dates.\n\n\nA Productive User Interface\n---------------------------\n\nOrganize manufacturing orders and work orders the way you like it. Process next\norders from the list view, control in the calendar view and edit the proposed\nschedule in the Gantt view.\n\n\nInventory & Manufacturing Analytics\n-----------------------------------\n\nTrack the evolution of the stock value, according to the level of manufacturing\nactivities as they progress in the transformation process.\n\nFully Integrated with Operations\n--------------------------------\n\nGet your manufacturing resource planning accurate with it's full integration\nwith sales and purchases apps. The accounting integration allows real time\naccounting valuation and deeper reporting on costs and revenues on your\nmanufacturing operations.\n\n t f f LGPL-3 16 f f \N \N \N \N -170 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/events Publish events, sell tickets website_event Odoo S.A. /website_event/static/description/icon.png uninstalled \N Events 1 Organize Events, Trainings & Webinars\n-------------------------------------\n\n### Schedule, Promote, Sell, Organize\n\nOrganize, promote and sell events online. Whether you organize meetings, conferences, trainings or webinars, Odoo gives you all the features you need to manage your events.\n\nCreate Awesome Event Pages\n--------------------------\n\n### Get rid of old WYSIWYG editors\n\nCreate beautiful event pages by drag & droping well designed *'Building Blocks'*. Publish event photos, speakers, schedule, etc.\n\nOdoo's unique *'edit inline'* approach makes website creation surprisingly easy. "Want to introduce a speaker? to change the price of a ticket? to update a banner? promote sponsors?" just click and change.\n\nSell Tickets Online\n-------------------\n\n### Automate the registration and payment process\n\nSell registrations to your event with the multi-ticketing feature. Events can be free or for a fee. Attendees can pay online with a credit card or on invoice, based on your configuration.\n\nBoost your sales with early-bird prices, special conditions for members, or extra services with multiple tickets.\n\nA Clean Google Analytics Integration\n------------------------------------\n\n### Control your sales funnel with Google Analytics\n\nGet a clear visibility of your sales funnel. Odoo's Google Analytics trackers are configured by default to track all kind of events related to shopping carts, call-to-actions, etc.\n\nAs Odoo marketing tools (mass mailing, campaigns, etc) are also linked with Google Analytics, you get a full view of your business.\n\nPromote Events Efficiently\n--------------------------\n\n### Mass Mailing & Social Media\n\nUse the segmentation, the social network integration and mass mailing features to promote your events to the right audience. Setup automated emails to attendees to send them last minute details.\n\nDesigner-Friendly Themes\n------------------------\n\n### Designers love working on Odoo\n\nThemes are awesome and easy to design. You don't need to develop to create new pages, themes or building blocks. We use a clean HTML structure, a [bootstrap](http://getbootstrap.com/) CSS and our modularity allows to distribute your themes easily.\n\nThe building block approach allows the website to stay clean after the end-users start creating new contents.\n\nMake Your Event More Visible\n----------------------------\n\n### SEO tools at your finger tips\n\nSEO tools are ready to use, with no configuration required. Odoo suggests keywords according to Google most searched terms, Google Analytics tracks your shopping cart events and sitemap are created automatically.\n\nWe even do structured content automatically to promote your events and products efficiently in Google.\n\nLeverage Social Media\n---------------------\n\n### Optimize: from Ads to Conversions\n\nCreate new landing pages easily with the Odoo inline edition feature. Send visitors of your different marketing campaigns to event landing pages to optimize conversions.\n\nAnd Much More...\n----------------\n\n### Schedule\n\n- Calendar of Events\n- Publish related documents\n- Ressources allocation\n- Automate purchases (catering...)\n- Multiple locations and organizers\n- Mobile Interface\n\n### Sell\n\n- Online or offline sales\n- Automated invoicing\n- Cancellation policies\n- Specific prices for members\n- Dashboards and reporting\n\n### Organize\n\n- Advanced Planification\n- Print Badges\n- Automate Follow-up Emails\n- Min/Max capacities\n- Manage classes and ressources\n- Create group of attendees\n- Automate statisfaction surveys\n\nFully Integrated With Others Apps\n---------------------------------\n\n### Get hundreds of open source apps for free\n\n\n### eCommerce\n\nPromote products, sell online, optimize visitors' shopping experiences.\n\n\n### Blogs\n\nWrite news, attract new visitors, build customer loyalty.\n\n\n### Our Team\n\nCreate a great "About us" page by presenting your team efficiently.\n t f f LGPL-3 166 f f \N \N \N \N -174 \N \N 2020-10-28 19:00:42.694321 1 test_main_flows Odoo S.A. /base/static/description/icon.png uninstalled \N Test Main Flow 12 \nThis module will test the main workflow of Odoo.\nIt will install some main apps and will try to execute the most important actions.\n f f f LGPL-3 100 f f \N \N \N \N -171 \N \N 2020-10-28 19:00:59.657843 1 test_converter Odoo S.A. /base/static/description/icon.png uninstalled \N test-field-converter 9 Tests of field conversions f f f LGPL-3 100 f f OpenERP SA \N \N \N -182 \N \N 2020-10-28 19:00:42.694321 1 Build your own dashboards board Odoo S.A. /board/static/description/icon.png uninstalled \N Dashboards 6 \nLets the user create a custom dashboard.\n========================================\n\nAllows users to create custom dashboard.\n t f f LGPL-3 100 f f \N \N \N \N -183 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/purchase Purchase orders, tenders and agreements purchase Odoo S.A. /purchase/static/description/icon.png uninstalled \N Purchase 7 Odoo Supply Chain\n-----------------\n\nAutomate requisition-to-pay, control invoicing with the Odoo\nOpen Source Supply Chain.\n\nAutomate procurement propositions, launch request for quotations, track\npurchase orders, manage vendors' information, control products reception and\ncheck vendors' invoices.\n\nAutomated Procurement Propositions\n----------------------------------\n\nReduce inventory level with procurement rules. Get the right purchase\nproposition at the right time to reduce your inventory level. Improve your\npurchase and inventory performance with procurement rules depending on stock\nlevels, logistic rules, sales orders, forecasted manufacturing orders, etc.\n\nSend requests for quotations or purchase orders to your vendor in one click.\nGet access to product receptions and invoices from your purchase order.\n\nPurchase Tenders\n----------------\n\nLaunch purchase tenders, integrate vendor's answers in the process and\ncompare propositions. Choose the best offer and send purchase orders easily.\nUse reporting to analyse the quality of your vendors afterwards.\n\n\nEmail integrations\n------------------\n\nIntegrate all vendor's communications on the purchase orders (or RfQs) to get\na strong traceability on the negotiation or after sales service issues. Use the\nclaim management module to track issues related to vendors.\n\nStandard Price, Average Price, FIFO\n-----------------------------------\n\nUse the costing method that reflects your business: standard price, average\nprice, fifo or lifo. Get your accounting entries and the right inventory\nvaluation in real-time; Odoo manages everything for you, transparently.\n\nImport Vendor Pricelists\n--------------------------\n\nTake smart purchase decisions using the best prices. Easily import vendor's\npricelists to make smarter purchase decisions based on promotions, prices\ndepending on quantities and special contract conditions. You can even base your\nsale price depending on your vendor's prices.\n\nControl Products and Invoices\n-----------------------------\n\nNo product or order is left behind, the inventory control allows you to manage\nback orders, refunds, product reception and quality control. Choose the right\ncontrol method according to your need.\n\nControl vendor bills with no effort. Choose the right method according to\nyour need: pre-generate draft invoices based on purchase orders, on products\nreceptions, create invoices manually and import lines from purchase orders,\netc.\n\n t f f LGPL-3 60 f f \N \N \N \N -184 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/events event_sale Odoo S.A. /base/static/description/icon.png uninstalled \N Events Sales 17 \nCreating registration with sales orders.\n========================================\n\nThis module allows you to automate and connect your registration creation with\nyour main sale flow and therefore, to enable the invoicing feature of registrations.\n\nIt defines a new kind of service products that offers you the possibility to\nchoose an event category associated with it. When you encode a sales order for\nthat product, you will be able to choose an existing event of that category and\nwhen you confirm your sales order it will automatically create a registration for\nthis event.\n f f f LGPL-3 100 t f \N \N \N \N -185 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/events Trainings, Conferences, Meetings, Exhibitions, Registrations event Odoo S.A. /event/static/description/icon.png uninstalled \N Events Organization 17 \nOrganization and management of Events.\n======================================\n\nThe event module allows you to efficiently organize events and all related tasks: planning, registration tracking,\nattendances, etc.\n\nKey Features\n------------\n* Manage your Events and Registrations\n* Use emails to automatically confirm and send acknowledgments for any event registration\n f f f LGPL-3 100 f f \N \N \N \N -186 \N \N 2020-10-28 19:00:42.694321 1 https://www.odoo.com/page/crm Track leads and close opportunities crm Odoo S.A. /crm/static/description/icon.png uninstalled \N CRM 5 Odoo CRM\n--------\n\nBoost sales productivity, improve win rates, grow revenue with the Odoo\nOpen Source CRM.\n\nManage your sales funnel with no effort. Attract leads, follow-up on phone\ncalls and meetings. Analyse the quality of your leads to make informed\ndecisions and save time by integrating emails directly into the application.\n\nYour Sales Funnel, The Way You Like It\n--------------------------------------\n\nTrack your opportunities pipeline with the revolutionary kanban view. Work\ninside your sales funnel and get instant visual information about next actions,\nnew messages, top opportunities and expected revenues.\n\nLead Management Made Easy\n-------------------------\n\nCreate leads automatically from incoming emails. Analyse leads efficiency and\ncompare performance by campaigns, channels or Sales Team.\n\nFind duplicates, merge leads and assign them to the right salesperson in one\noperation. Spend less time on administration and more time on qualifying leads.\n\nOrganize Your Opportunities\n---------------------------\n\nGet your opportunities organized to stay focused on the best deals. Manage all\nyour customer interactions from the opportunity like emails, phone calls,\ninternal notes, meetings and quotations.\n\nFollow opportunities that interest you to get notified upon specific events:\ndeal won or lost, stage changed, new customer demand, etc.\n\nEmail Integration and Automation\n--------------------------------\n\nWork with the email applications you already use every day. Whether your\ncompany uses Microsoft Outlook or Gmail, no one needs to change the way they\nwork, so everyone stays productive.\n\nRoute, sort and filter incoming emails automatically. Odoo CRM handles incoming\nemails and route them to the right opportunities or Sales Team. New leads are\ncreated on the fly and interested salespersons are notified automatically.\n\nCollaborative Agenda\n--------------------\n\nSchedule your meetings and phone calls using the integrated calendar. You can\nsee your agenda and your colleagues' in one view. As a manager, it's easy to\nsee what your team is busy with.\n\nLead Automation and Marketing Campaigns\n---------------------------------------\n\nDrive performance by automating tasks with Odoo CRM.\n\nUse our marketing campaigns to automate lead acquisition, follow ups and\npromotions. Define automated actions (e.g. ask a salesperson to call, send an\nemail, ...) based on triggers (no activity since 20 days, answered a\npromotional email, etc.)\n\nOptimize campaigns from lead to close, on every channel. Make smarter decisions\nabout where to invest and show the impact of your marketing activities on your\ncompany's bottom line.\n\nCustomize Your Sales Cycle\n--------------------------\n\nCustomize your sales cycle by configuring sales stages that perfectly fit your\nsales approach. Control statistics to get accurate forecasts to improve your\nsales performance at every stage of your customer relationship.\n\nDrive Engagement with Gamification\n----------------------------------\n\n### Leverage your team's natural desire for competition\n\nReinforce good habits and improve win rates with real-time recognition and\nrewards inspired by [game mechanics](http://en.wikipedia.org/wiki/Gamification).\nAlign Sales Teams around clear business objectives with challenges, personal\nobjectives and team leader boards.\n\n### Leaderboards\n\nPromote leaders and competition amongst Sales Team with performance ratios.\n\n### Personal Objectives\n\nAssign clear goals to users to align them with the company objectives.\n\n### Team Targets\n\nCompare revenues with forecasts and budgets in real time.\n\n t f f LGPL-3 5 f f \N \N \N \N -187 \N \N 2020-10-28 19:00:42.694321 1 test_convert Odoo S.A. /base/static/description/icon.png uninstalled \N test_convert 19 Data for xml conversion tests f f f LGPL-3 100 f f \N \N \N \N -192 \N \N 2020-10-28 19:00:42.694321 1 theme_bootswatch Odoo S.A. /theme_bootswatch/static/description/icon.png uninstalled \N Bootswatch Theme 24 Bootswatch themes f f f LGPL-3 900 f f \N \N \N \N -193 \N \N 2020-10-28 19:00:42.694321 1 Barcodes Scanning and Parsing barcodes Odoo S.A. /base/static/description/icon.png uninstalled \N Barcode 6 ==============================\nBarcodes module documentation\n==============================\n\nThis module brings barcode encoding logic and client-side barcode scanning utilities.\n\n\nBarcodes encoding\n==============================\n\nThe Barcodes module defines barcode nomenclatures whose rules identify specific type \nof items e.g. products, locations. It contains the following features:\n\n- Patterns to identify barcodes containing a numerical value (e.g. weight, price)\n- Definitin of barcode aliases that allow to identify the same product with different barcodes\n- Unlimited barcode patterns and definitions,\n- Support for encodings EAN-13, EAN-8 and UPC-A\n\nBarcode encodings\n-----------------\n\nA barcode is an arbitrary long sequence of ASCII characters. An EAN-13 barcode is a 13 digit\nbarcode, whose 13th digit is the checksum. \n\nSimple barcodes and rules\n-------------------------\n\nThe default nomenclature assumes an EAN-13 encoding for product barcodes. It defines a rule \nfor Unit Products whose encoding is EAN-13, and whose pattern is '.', i.e. any barcode \nmatches this pattern. Scanning the barcode of a product, say '5410013101703', matches this rule. \nThe scanned item is thus identified as a Unit Product, and is retrieved from the product table.\n\nNote: the special character '.' in patterns is matched by any character. To explicitely specify \nthe '.' character in a pattern, escape it with '\\'. The '\\' character has to be escaped as well\n('\\\\') to be explicitely specified.\n\nLet us now suppose that we identify other items with barcodes, say stock locations. We define a\nnew rule in the nomenclature with the corresponding type (in our example, the type is 'Location'),\nand whose pattern is e.g. '414.', that is, any location barcode starts with '414'. Scanning a barcode\nlocation, say '41401', matches this Location rule, and the corresponding location is retrieved from\nthe location table.\n\nNote: Rules have a sequence field which indicates the order the rules are evaluated (ASC). In our \nprevious examples, the Unit Product rule should have a larger sequence that then Location rule, \nbecause we want the latter one to be evaluated first.\n\nBarcodes with numerical content\n--------------------------------\n\nBarcodes may encode numerical content, which is decoded by the barcodes module. To that purpose,\none have to define a new rule for barcodes with numerical content (e.g. barcodes for Weighted \nProducts). The numerical content in a pattern is specified between braces (special characters '{' and \n'}'). The content of the braces must be a sequence of 'N's (representing the whole part of the numerical \ncontent) followed by a sequence of 'D's (representing the decimal part of the numerical content). \nFor instance, let us define a new rule for Weighted Products whose pattern is '21.....{NNDDD}.'. Since\nwe assume EAN-13 encoding for product barcodes, the encoding of this rule should be EAN-13 as well.\n\nLet us now assume that we want to write a barcode for a given Weighted Product, say oranges. We first \nhave to define in product oranges a barcode that will match the Weighted Product rule. This barcode \nmust start with '21' and be a correct EAN-13 barcode (i.e. the 13th digit must be a correct checksum). \nMoreover, all the numerical content must be set to a '0'. For instance, let us set the barcode to \n'2100001000004'. \n\nWe now want to write a barcode for 2.75kg of oranges. This barcode should be '2100001027506' (the \nnumerical content of this barcode is '02750', and the correct checksum is '6'). When scanned, this \nbarcode matches the Weighted Product rule (since is starts with '21'). The numerical content is extracted, \nand replaced by a sequence of '0's. The correct checksum is then computed for the obtained barcode \n('2100001000004') and the corresponding product (oranges) is retrieved from product table.\n\nNote: the special characters '{' and '}' in patterns are used to identify numerical content. To \nexplicitely specify '{' or '}' in a pattern, they must be escaped.\n\n\nStrict EAN-13 field of barcode nomenclatures\n--------------------------------------------\n\nMany barcode scanners strip the leading zero when scanning EAN-13 barcodes. Barcode nomenclatures\nhave a boolean field "Use strict EAN13". If False, when trying to match a scanned barcode with\na rule whose encoding is EAN-13, if the barcode is of length 12 and, by prepending it by a 0,\nthe last digit is the correct checksum, we automatically prepend the barcode by 0 and try to\nfind a match with this new barcode. If "Use strict EAN13" is set to True, we look for a pattern\nmatching the original, 12-digit long, barcode.\n\n\n\nBarcodes scanning\n==============================\n\nScanning\n--------\n\nUse a USB scanner (that mimics keyboard inputs) in order to work with barcodes in Odoo.\nThe scanner must be configured to use no prefix and a carriage return or tab as suffix.\nThe delay between each character input must be less than or equal to 50 milliseconds.\nMost barcode scanners will work out of the box.\nHowever, make sure the scanner uses the same keyboard layout as the device it's plugged in.\nEither by setting the device's keyboard layout to US QWERTY (default value for most readers)\nor by changing the scanner's keyboard layout (check the manual).\n\n\nBarcode events\n------------------------------\n\nWhen the module barcodes is installed, it instanciate a singleton of the javascript class BarcodeEvents.\nThe purpose of this component is to listen to keypresses to detect barcodes, then dispatch those barcodes\non core.bus inside a 'barcode_event'.\nAll keypress events are buffered until there is no more keypress during 50ms or a carriage return / tab is\ninputted (because most barcode scanners use this as a suffix).\nIf the buffered keys looks like a barcode, an event is triggered :\ncore.bus.trigger('barcode_scanned', barcode);\nOtherwise, the keypresses are 'resent'. However, for security reasons, a keypress event programmatically\ncrafted doesn't trigger native browser behaviors. For this reason, BarcodeEvents doesn't intercept keypresses\nwhose target is an editable element (eg. input) or when ctrl/cmd/alt is pushed.\nTo catch keypresses targetting an editable element, it must have the attribute barcode_events="true".\n\n\nBarcode handlers\n------------------------------\n\nTo keep the web client consistent, components that want to listen to barcode events should include BarcodeHandlerMixin.\nIt requires method on_barcode_scanned(barcode) to be implemented and exposes methods start_listening and stop_listening\nAs long as it is the descendant of a View managed by a ViewManager is only listens while the view is attached.\n\n\nForm view barcode handler\n------------------------------\n\nIt is possible for a form view to listen to barcode events, handle them client side and/or server-side.\nWhen the barcode is handled server-side, it works like an onchange. The relevant model must include the\nBarcodeEventsMixin and redefine method on_barcode_scanned. This method receives the barcode scanned and\nthe `self` is a pseudo-record representing the content of the form view, just like in @api.onchange methods.\nBarcodes prefixed with 'O-CMD' or 'O-BTN' are reserved for special features and are never passed to on_barcode_scanned.\nThe form view barcode handler can be extended to add client-side handling. Please refer to the (hopefully\nwell enough) documented file for more informations.\n\n\nButton barcode handler\n------------------------------\n\nAdd an attribute 'barcode_trigger' to a button to be able to trigger it by scanning a barcode. Example :\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

Interaction between rules

\n
\n

\n Global rules (non group-specific) are restrictions, and cannot be bypassed.\n Group-specific rules grant additional permissions, but are constrained within the bounds of global ones.\n The first group rules restrict further the global rules, but can be relaxed by additional group rules.\n

\n

\n Detailed algorithm:\n

    \n
  1. Global rules are combined together with a logical AND operator, and with the result of the following steps
  2. \n
  3. Group-specific rules are combined together with a logical OR operator
  4. \n
  5. If user belongs to several groups, the results from step 2 are combined with logical OR operator
  6. \n
\n

\n

Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 OR GROUP_A_RULE_2) OR (GROUP_B_RULE_1 OR GROUP_B_RULE_2) )

\n
\n \n \n base/views/ir_rule_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -53 ir.rule tree ir.rule \N 16 tree \n\n \n \n \n \n \n \n \n \n \n base/views/ir_rule_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -72 ir.default form view ir.default \N 16 form \n
\n \n \n \n \n \n \n \n \n \n \n
\n base/views/ir_default_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -54 ir.rule search ir.rule \N 16 search \n\n \n \n \n \n \n \n \n \n \n \n \n base/views/ir_rule_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -55 ir.sequence form ir.sequence \N 16 form \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 Current Year with Century: %(year)s\n Current Year without Century: %(y)s\n Month: %(month)s\n Day: %(day)s\n \n \n Day of the Year: %(doy)s\n Week of the Year: %(woy)s\n Day of the Week (0:Monday): %(weekday)s\n \n \n Hour 00->24: %(h24)s\n Hour 00->12: %(h12)s\n Minute: %(min)s\n Second: %(sec)s\n \n \n \n
\n When subsequences per date range are used, you can prefix variables with 'range_'\n to use the beginning of the range instead of the current date, e.g. %(range_year)s instead of %(year)s.\n
\n
\n
\n
\n
\n
\n base/views/ir_sequence_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -56 ir.sequence tree ir.sequence \N 16 tree \n\n \n \n \n \n \n \n \n \n \n base/views/ir_sequence_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -57 ir.sequence search ir.sequence \N 16 search \n\n \n \n \n \n base/views/ir_sequence_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -58 ir.translation search ir.translation \N 16 search \n\n \n \n \n \n \n \n \n \n base/views/ir_translation_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -59 ir.translation form ir.translation \N 16 form \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 base/views/ir_translation_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -60 ir.translation tree ir.translation \N 16 tree \n\n \n \n \n \n \n \n \n base/views/ir_translation_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -61 ir.translation tree ir.translation \N 16 tree \n\n \n \n \n \n \n \n base/views/ir_translation_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -62 ir.ui.menu.tree ir.ui.menu \N 16 tree \n\n \n \n base/views/ir_ui_menu_views.xml \N child_id primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -63 ir.ui.menu form ir.ui.menu \N 16 form \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 base/views/ir_ui_menu_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -64 ir.ui.menu tree ir.ui.menu \N 8 tree \n\n \n \n \n base/views/ir_ui_menu_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -65 ir.ui.menu.search ir.ui.menu \N 16 search \n\n \n \n \n base/views/ir_ui_menu_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -66 ir.ui.view form ir.ui.view \N 16 form \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Upgrade\n
Installed
\n \n \n \n \n \n \n \n \n base/views/ir_module_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -87 report_irmodulereference \N base.report_irmodulereference 16 qweb \n\n \n \n \n
\n

Introspection report on objects

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ModuleNameVersionDirectoryWeb
\n \n
\n Reports :\n
\n \n
\n Menu :\n
\n \n
\n View :\n
\n \n
\n Dependencies :\n
\n
\n - \n
\n\n \n \n \n \n \n \n \n \n
Object:
\n , , required, readonly\n
\n
\n
\n
\n
\n
\n
\n base/report/ir_module_report_templates.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -106 res.lang.search res.lang \N 16 search \n\n \n \n \n \n \n base/views/res_lang_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -88 Module Update base.module.update \N 16 form \n
\n \n \n \n Click on Update below to start the process...\n \n \n \n \n \n
\n
\n
\n
\n
\n
\n \n base/wizard/base_module_update_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -89 Load a Translation base.language.install \N 16 form \n
\n \n \n \n \n \n \n The selected language has been successfully installed.\nYou must change the preferences of the user to view the changes.\n \n
\n
\n
\n
\n \n base/wizard/base_language_install_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -90 Import Translation base.language.import \N 16 form \n
\n \n \n \n \n \n \n \n
\n
\n
\n base/wizard/base_import_language_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -91 Module Upgrade base.module.upgrade \N 16 form \n
\n

This module will trigger the uninstallation of below modules.

\n

This operation will permanently erase all data currently stored by the modules!

\n

If you wish to cancel the process, press the cancel button below

\n \n \n
\n
\n \n base/wizard/base_module_upgrade_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -92 Module Upgrade Install base.module.upgrade \N 20 form \n
\n
The selected modules have been updated / installed !
\n
We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)."
\n
\n
\n
\n base/wizard/base_module_upgrade_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -93 Uninstall module base.module.uninstall \N 16 form \n
\n \n

The following apps will be uninstalled

\n Show technical modules\n \n \n \n \n \n \n \n \n
\n Icon\n
\n

\n

\n
\n \n

\n
\n
\n
\n
\n
\n
\n

The following documents will be permanently lost

\n \n \n \n \n \n \n
\n
\n \n base/wizard/base_module_uninstall_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -107 res.partner.title.tree res.partner.title \N 16 tree \n\n \n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -108 res.partner.title.form res.partner.title \N 16 form \n
\n \n \n \n \n
\n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -94 Export Translations base.language.export \N 16 form \n
\n \n \n \n \n \n \n \n
\n

Export Complete

\n

Here is the exported translation file:

\n

This file was generated using the universal Unicode/UTF-8 file encoding, please be sure to view and edit\n using the same encoding.

\n

The next step depends on the file format:\n

    \n
  • CSV format: you may edit it directly with your favorite spreadsheet software,\n the rightmost column (value) contains the translations
  • \n
  • PO(T) format: you should edit it with a PO editor such as\n POEdit, or your preferred text editor
  • \n
  • TGZ format: bundles multiple PO(T) files as a single archive
  • \n
\n

\n

For more details about translating Odoo in your language, please refer to the\n documentation.

\n
\n
\n
\n
\n
\n \n base/wizard/base_export_language_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -95 Generate Missing Terms base.update.translations \N 16 form \n
\n \n \n \n
\n
\n
\n base/wizard/base_update_translations_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -96 base.partner.merge.automatic.wizard.form base.partner.merge.automatic.wizard \N 16 form \n
\n \n \n

There is no more contacts to merge for this request...

\n \n \n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
%a - Abbreviated weekday name.
\n
%A - Full weekday name.
\n
%b - Abbreviated month name.
\n
%B - Full month name."
\n
%d - Day of the month [01,31]."
\n
%j - Day of the year [001,366]."
\n
%H - Hour (24-hour clock) [00,23]."
\n
%I - Hour (12-hour clock) [01,12]."
\n
%M - Minute [00,59]."
\n
%p - Equivalent of either AM or PM."
\n
%S - Seconds [00,61]."
\n
%w - Weekday number [0(Sunday),6]."
\n
%y - Year without century [00,99]."
\n
%Y - Year with century."
\n
%m - Month number [01,12]."
\n
\n \n
1. %b, %B ==> Dec, December
\n
2. %a ,%A ==> Fri, Friday
\n
3. %y, %Y ==> 08, 2008
\n
4. %d, %m ==> 05, 12
\n
5. %H:%M:%S ==> 18:25:20
\n
6. %I:%M:%S %p ==> 06:25:20 PM
\n
7. %j ==> 340
\n
8. %S ==> 20
\n
9. %w ==> 5 ( Friday is the 6th day)
\n
\n
\n \n base/views/res_lang_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -110 res.partner.simplified.form res.partner \N 16 form \n
\n \n \n \n
\n \n

\n \n

\n \n
\n \n \n \n \n \n \n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -111 res.partner.form.address res.partner \N 20 form \n
\n \n
\n

\n \n

\n
\n \n \n \n \n \n \n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -112 res.partner.form res.partner \N 2 form \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 base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -113 res.partner.form res.partner \N 1 form \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 \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n \n Delivery\n Invoice\n \n Logo\n Avatar\n \n \n
\n
\n \n
\n
\n
\n
\n \n \n
\n \n \n
\n
Phone:
\n
Mobile:
\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 base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -114 res.partner.view.form.private res.partner \N 300 form \n
\n \n \n \n
\n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -115 res.partner.select res.partner \N 16 search \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -125 res.partner.bank.search res.partner.bank \N 16 search \n\n \n \n \n \n base/views/res_bank_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -116 res.partner.kanban res.partner \N 16 kanban \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 Delivery\n \n \n Invoice\n \n \n \n Logo\n \n \n Avatar\n \n \n \n
\n \n
\n
    \n
  • \n
  • \n
  • at
  • \n
  • \n
  • \n
  • ,
  • \n
  • \n
\n \n
\n \n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -117 Contact Tags res.partner.category \N 16 form \n
\n \n \n \n \n \n
\n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -118 Contact Tags res.partner.category \N 6 tree \n\n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -119 Industry res.partner.industry \N 16 form \n
\n \n \n \n \n \n
\n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -120 Industry res.partner.industry \N 6 tree \n\n \n \n \n \n base/views/res_partner_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -121 res.bank.form res.bank \N 16 form \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n base/views/res_bank_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -122 res.bank.tree res.bank \N 16 tree \n\n \n \n \n \n base/views/res_bank_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -123 res.partner.bank.form res.partner.bank \N 15 form \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n base/views/res_bank_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -124 res.partner.bank.tree res.partner.bank \N 16 tree \n\n \n \n \n \n \n \n \n base/views/res_bank_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -126 res.country.tree res.country \N 16 tree \n\n \n \n \n base/views/res_country_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -127 res.country.form res.country \N 16 form \n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
Choose a subview of partners that includes only address fields, to change the way users can input addresses.
\n \n
Change the way addresses are displayed in reports
\n \n
\n
\n
\n
\n
\n
\n
No Record Found
\n
\n
\n \n base/views/res_config_settings_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -154 paper_format_view_tree report.paperformat \N 16 tree \n\n \n \n base/views/report_paperformat_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -155 paper_format_view_form report.paperformat \N 16 form \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n base/views/report_paperformat_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -156 onboarding_container \N base.onboarding_container 16 qweb \n\n \n
\n
\n
\n \n \n \n
\n \n
\n
\n \n \n \n Nice work! Your configuration is done.\n \n \n
\n
\n
\n
\n
\n base/views/onboarding_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -157 onboarding_step \N base.onboarding_step 16 qweb \n\n
\n \n
\n
\n
\n \n \n
\n
\n base/views/onboarding_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -158 onboarding_confetti \N base.onboarding_confetti 16 qweb \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 base/views/onboarding_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -159 onboarding_company_step \N base.onboarding_company_step 16 qweb \n\n \n Company Data\n \n Set your company's data for documents header/footer.\n \n Let's start!\n \n \n \n \n \n base/views/onboarding_views.xml \N \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -160 base.company.onboarding.form res.company \N 1000 form \n\n
\n
\n
\n
\n
base/views/onboarding_views.xml 98 \N primary t 1 2020-10-28 19:00:42.694321 1 2020-10-28 19:00:42.694321 -161 _assets_utils \N web._assets_utils 16 qweb \n\n \n \n \n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -162 _assets_primary_variables \N web._assets_primary_variables 16 qweb \n\n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -163 _assets_secondary_variables \N web._assets_secondary_variables 16 qweb \n\n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -164 _assets_helpers \N web._assets_helpers 16 qweb \n\n \n \n \n\n \n \n \n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -165 _assets_backend_helpers \N web._assets_backend_helpers 16 qweb \n\n \n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -166 _assets_frontend_helpers \N web._assets_frontend_helpers 16 qweb \n\n \n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -167 _assets_bootstrap \N web._assets_bootstrap 16 qweb \n\n \n \n \n \n \n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -168 Common Assets (used in backend interface and website) \N web.assets_common 16 qweb \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 web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -172 Login Layout \N web.login_layout 16 qweb \n\n \n \n \n \n \n \n \n \n \n\n
\n
\n
\n
\n Logo\n
\n \n \n
\n
\n
\n
\n
\n\n web/views/webclient_templates.xml \N \N primary t 1 2020-10-28 19:00:59.657843 1 2020-10-28 19:00:59.657843 -173 Login \N web.login 16 qweb \n\n \n