diff --git a/backup_database/competition_availablecategory.sql b/backup_database/competition_availablecategory.sql deleted file mode 100644 index 78b3f2c..0000000 --- a/backup_database/competition_availablecategory.sql +++ /dev/null @@ -1,94 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.4.12 --- http://www.phpmyadmin.net --- --- Client : localhost --- Généré le : Mer 18 Juillet 2018 à 14:32 --- Version du serveur : 5.6.26 --- Version de PHP : 7.1.16 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Base de données : `ffg_judging` --- - --- -------------------------------------------------------- - --- --- Structure de la table `competition_availablecategory` --- - -CREATE TABLE IF NOT EXISTS `competition_availablecategory` ( - `id` int(11) NOT NULL, - `is_active` tinyint(1) NOT NULL, - `category_id` int(11) DEFAULT NULL, - `division_id` int(11) DEFAULT NULL -) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; - --- --- Contenu de la table `competition_availablecategory` --- - -INSERT INTO `competition_availablecategory` (`id`, `is_active`, `category_id`, `division_id`) VALUES -(1, 1, 1, 5), -(2, 1, 2, 5), -(3, 1, 3, 5), -(4, 1, 4, 1), -(5, 1, 5, 1), -(6, 1, 6, 1), -(7, 1, 7, 1), -(8, 1, 8, 1), -(9, 1, 4, 2), -(10, 1, 5, 2), -(11, 1, 6, 2), -(12, 1, 7, 2), -(13, 1, 8, 2), -(14, 1, 9, 3), -(15, 1, 10, 3), -(16, 1, 11, 3), -(17, 1, 12, 3), -(18, 1, 13, 4); - --- --- Index pour les tables exportées --- - --- --- Index pour la table `competition_availablecategory` --- -ALTER TABLE `competition_availablecategory` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `competition_availablecat_division_id_category_id_7cbea8cc_uniq` (`division_id`,`category_id`), - ADD KEY `competition_availabl_category_id_d9b4ab8c_fk_competiti` (`category_id`); - --- --- AUTO_INCREMENT pour les tables exportées --- - --- --- AUTO_INCREMENT pour la table `competition_availablecategory` --- -ALTER TABLE `competition_availablecategory` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=19; --- --- Contraintes pour les tables exportées --- - --- --- Contraintes pour la table `competition_availablecategory` --- -ALTER TABLE `competition_availablecategory` - ADD CONSTRAINT `competition_availabl_category_id_d9b4ab8c_fk_competiti` FOREIGN KEY (`category_id`) REFERENCES `competition_category` (`id`), - ADD CONSTRAINT `competition_availabl_division_id_88e96c01_fk_competiti` FOREIGN KEY (`division_id`) REFERENCES `competition_division` (`id`); - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/backup_database/competition_category.sql b/backup_database/competition_category.sql deleted file mode 100644 index e0ff56b..0000000 --- a/backup_database/competition_category.sql +++ /dev/null @@ -1,76 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.4.12 --- http://www.phpmyadmin.net --- --- Client : localhost --- Généré le : Mer 18 Juillet 2018 à 14:31 --- Version du serveur : 5.6.26 --- Version de PHP : 7.1.16 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Base de données : `ffg_judging` --- - --- -------------------------------------------------------- - --- --- Structure de la table `competition_category` --- - -CREATE TABLE IF NOT EXISTS `competition_category` ( - `id` int(11) NOT NULL, - `label` varchar(25) NOT NULL, - `acronym` varchar(7) NOT NULL, - `is_active` tinyint(1) NOT NULL -) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; - --- --- Contenu de la table `competition_category` --- - -INSERT INTO `competition_category` (`id`, `label`, `acronym`, `is_active`) VALUES -(1, '-8 ans', '-8', 1), -(2, '-9 ans', '-9', 1), -(3, '-10 ans', '-10', 1), -(4, '11 ans', '11', 1), -(5, '12 ans', '12', 1), -(6, '13-14 ans', '13-14', 1), -(7, 'Juniors', 'Ju', 1), -(8, 'Seniors', 'Se', 1), -(9, 'Niveau 1', 'N1', 1), -(10, 'Niveau 2', 'N2', 1), -(11, 'Niveau 3', 'N3', 1), -(12, 'Niveau 4', 'N4', 1), -(13, 'Bronze', 'Bronze', 1); - --- --- Index pour les tables exportées --- - --- --- Index pour la table `competition_category` --- -ALTER TABLE `competition_category` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT pour les tables exportées --- - --- --- AUTO_INCREMENT pour la table `competition_category` --- -ALTER TABLE `competition_category` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=14; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/backup_database/competition_division.sql b/backup_database/competition_division.sql deleted file mode 100644 index ea5e39d..0000000 --- a/backup_database/competition_division.sql +++ /dev/null @@ -1,62 +0,0 @@ -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Base de données : `ffg_judging` --- - --- -------------------------------------------------------- - --- --- Structure de la table `competition_division` --- - -CREATE TABLE IF NOT EXISTS `competition_division` ( - `id` int(11) NOT NULL, - `label` varchar(25) NOT NULL, - `acronym` varchar(5) NOT NULL, - `is_active` tinyint(1) NOT NULL -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; - --- --- Contenu de la table `competition_division` --- - -INSERT INTO `competition_division` (`id`, `label`, `acronym`, `is_active`) VALUES -(1, 'Division 1', 'D1', 1), -(2, 'Division 2', 'D2', 1), -(3, 'Division 3', 'D3', 1), -(4, 'Division 4', 'D4', 1), -(5, 'Division Préparatoire', 'Prépa', 1); - --- --- Index pour les tables exportées --- - --- --- Index pour la table `competition_division` --- -ALTER TABLE `competition_division` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT pour les tables exportées --- - --- --- AUTO_INCREMENT pour la table `competition_division` --- -ALTER TABLE `competition_division` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - - - diff --git a/backup_database/khana-2021-05-15.sql b/backup_database/khana-2021-05-15.sql deleted file mode 100644 index b73b54a..0000000 --- a/backup_database/khana-2021-05-15.sql +++ /dev/null @@ -1,5690 +0,0 @@ --- phpMyAdmin SQL Dump --- version 5.1.0 --- https://www.phpmyadmin.net/ --- --- Hôte : localhost --- Généré le : sam. 15 mai 2021 à 08:19 --- Version du serveur : 8.0.19 --- Version de PHP : 7.3.24-(to be removed in future macOS) - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Base de données : `khana` --- - --- -------------------------------------------------------- - --- --- Structure de la table `auth_group` --- - -CREATE TABLE `auth_group` ( - `id` int NOT NULL, - `name` varchar(150) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `auth_group_permissions` --- - -CREATE TABLE `auth_group_permissions` ( - `id` int NOT NULL, - `group_id` int NOT NULL, - `permission_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `auth_permission` --- - -CREATE TABLE `auth_permission` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `content_type_id` int NOT NULL, - `codename` varchar(100) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `auth_permission` --- - -INSERT INTO `auth_permission` (`id`, `name`, `content_type_id`, `codename`) VALUES -(1, 'Can add content type', 1, 'add_contenttype'), -(2, 'Can change content type', 1, 'change_contenttype'), -(3, 'Can delete content type', 1, 'delete_contenttype'), -(4, 'Can view content type', 1, 'view_contenttype'), -(5, 'Can add log entry', 2, 'add_logentry'), -(6, 'Can change log entry', 2, 'change_logentry'), -(7, 'Can delete log entry', 2, 'delete_logentry'), -(8, 'Can view log entry', 2, 'view_logentry'), -(9, 'Can add permission', 3, 'add_permission'), -(10, 'Can change permission', 3, 'change_permission'), -(11, 'Can delete permission', 3, 'delete_permission'), -(12, 'Can view permission', 3, 'view_permission'), -(13, 'Can add group', 4, 'add_group'), -(14, 'Can change group', 4, 'change_group'), -(15, 'Can delete group', 4, 'delete_group'), -(16, 'Can view group', 4, 'view_group'), -(17, 'Can add user', 5, 'add_user'), -(18, 'Can change user', 5, 'change_user'), -(19, 'Can delete user', 5, 'delete_user'), -(20, 'Can view user', 5, 'view_user'), -(21, 'Can add session', 6, 'add_session'), -(22, 'Can change session', 6, 'change_session'), -(23, 'Can delete session', 6, 'delete_session'), -(24, 'Can view session', 6, 'view_session'), -(25, 'Can add Accident', 7, 'add_accident'), -(26, 'Can change Accident', 7, 'change_accident'), -(27, 'Can delete Accident', 7, 'delete_accident'), -(28, 'Can view Accident', 7, 'view_accident'), -(29, 'Can add CanDo', 8, 'add_candorelation'), -(30, 'Can change CanDo', 8, 'change_candorelation'), -(31, 'Can delete CanDo', 8, 'delete_candorelation'), -(32, 'Can view CanDo', 8, 'view_candorelation'), -(33, 'Can add Gymnast', 9, 'add_gymnast'), -(34, 'Can change Gymnast', 9, 'change_gymnast'), -(35, 'Can delete Gymnast', 9, 'delete_gymnast'), -(36, 'Can view Gymnast', 9, 'view_gymnast'), -(37, 'Can add ToDo', 10, 'add_todorelation'), -(38, 'Can change ToDo', 10, 'change_todorelation'), -(39, 'Can delete ToDo', 10, 'delete_todorelation'), -(40, 'Can view ToDo', 10, 'view_todorelation'), -(41, 'Can add Club', 11, 'add_club'), -(42, 'Can change Club', 11, 'change_club'), -(43, 'Can delete Club', 11, 'delete_club'), -(44, 'Can view Club', 11, 'view_club'), -(45, 'Can add Country', 12, 'add_country'), -(46, 'Can change Country', 12, 'change_country'), -(47, 'Can delete Country', 12, 'delete_country'), -(48, 'Can view Country', 12, 'view_country'), -(49, 'Can add Place', 13, 'add_place'), -(50, 'Can change Place', 13, 'change_place'), -(51, 'Can delete Place', 13, 'delete_place'), -(52, 'Can view Place', 13, 'view_place'), -(53, 'Can add Course', 14, 'add_course'), -(54, 'Can change Course', 14, 'change_course'), -(55, 'Can delete Course', 14, 'delete_course'), -(56, 'Can view Course', 14, 'view_course'), -(57, 'Can add Event', 15, 'add_event'), -(58, 'Can change Event', 15, 'change_event'), -(59, 'Can delete Event', 15, 'delete_event'), -(60, 'Can view Event', 15, 'view_event'), -(61, 'Can add Event Type', 16, 'add_eventtype'), -(62, 'Can change Event Type', 16, 'change_eventtype'), -(63, 'Can delete Event Type', 16, 'delete_eventtype'), -(64, 'Can view Event Type', 16, 'view_eventtype'), -(65, 'Can add Group', 17, 'add_group'), -(66, 'Can change Group', 17, 'change_group'), -(67, 'Can delete Group', 17, 'delete_group'), -(68, 'Can view Group', 17, 'view_group'), -(69, 'Can add Planning Line', 18, 'add_planningline'), -(70, 'Can change Planning Line', 18, 'change_planningline'), -(71, 'Can delete Planning Line', 18, 'delete_planningline'), -(72, 'Can view Planning Line', 18, 'view_planningline'), -(73, 'Can add Round', 19, 'add_round'), -(74, 'Can change Round', 19, 'change_round'), -(75, 'Can delete Round', 19, 'delete_round'), -(76, 'Can view Round', 19, 'view_round'), -(77, 'Can add Season', 20, 'add_season'), -(78, 'Can change Season', 20, 'change_season'), -(79, 'Can delete Season', 20, 'delete_season'), -(80, 'Can view Season', 20, 'view_season'), -(81, 'Can add Subgroup', 21, 'add_subgroup'), -(82, 'Can change Subgroup', 21, 'change_subgroup'), -(83, 'Can delete Subgroup', 21, 'delete_subgroup'), -(84, 'Can view Subgroup', 21, 'view_subgroup'), -(85, 'Can add Training', 22, 'add_training'), -(86, 'Can change Training', 22, 'change_training'), -(87, 'Can delete Training', 22, 'delete_training'), -(88, 'Can view Training', 22, 'view_training'), -(89, 'Can add Indisponibilité', 23, 'add_unavailability'), -(90, 'Can change Indisponibilité', 23, 'change_unavailability'), -(91, 'Can delete Indisponibilité', 23, 'delete_unavailability'), -(92, 'Can view Indisponibilité', 23, 'view_unavailability'), -(93, 'Can add chrono', 24, 'add_chrono'), -(94, 'Can change chrono', 24, 'change_chrono'), -(95, 'Can delete chrono', 24, 'delete_chrono'), -(96, 'Can view chrono', 24, 'view_chrono'), -(97, 'Can add Educatif', 25, 'add_educative'), -(98, 'Can change Educatif', 25, 'change_educative'), -(99, 'Can delete Educatif', 25, 'delete_educative'), -(100, 'Can view Educatif', 25, 'view_educative'), -(101, 'Can add routine_ skill', 26, 'add_routine_skill'), -(102, 'Can change routine_ skill', 26, 'change_routine_skill'), -(103, 'Can delete routine_ skill', 26, 'delete_routine_skill'), -(104, 'Can view routine_ skill', 26, 'view_routine_skill'), -(105, 'Can add Landing', 27, 'add_touchposition'), -(106, 'Can change Landing', 27, 'change_touchposition'), -(107, 'Can delete Landing', 27, 'delete_touchposition'), -(108, 'Can view Landing', 27, 'view_touchposition'), -(109, 'Can add Routine', 28, 'add_routine'), -(110, 'Can change Routine', 28, 'change_routine'), -(111, 'Can delete Routine', 28, 'delete_routine'), -(112, 'Can view Routine', 28, 'view_routine'), -(113, 'Can add Skill', 29, 'add_skill'), -(114, 'Can change Skill', 29, 'change_skill'), -(115, 'Can delete Skill', 29, 'delete_skill'), -(116, 'Can view Skill', 29, 'view_skill'), -(117, 'Can add competition', 30, 'add_competition'), -(118, 'Can change competition', 30, 'change_competition'), -(119, 'Can delete competition', 30, 'delete_competition'), -(120, 'Can view competition', 30, 'view_competition'), -(121, 'Can add division', 31, 'add_division'), -(122, 'Can change division', 31, 'change_division'), -(123, 'Can delete division', 31, 'delete_division'), -(124, 'Can view division', 31, 'view_division'), -(125, 'Can add level', 32, 'add_level'), -(126, 'Can change level', 32, 'change_level'), -(127, 'Can delete level', 32, 'delete_level'), -(128, 'Can view level', 32, 'view_level'), -(129, 'Can add point', 33, 'add_point'), -(130, 'Can change point', 33, 'change_point'), -(131, 'Can delete point', 33, 'delete_point'), -(132, 'Can view point', 33, 'view_point'), -(133, 'Can add profile', 34, 'add_profile'), -(134, 'Can change profile', 34, 'change_profile'), -(135, 'Can delete profile', 34, 'delete_profile'), -(136, 'Can view profile', 34, 'view_profile'), -(137, 'Can add Has Routine', 35, 'add_hasroutine'), -(138, 'Can change Has Routine', 35, 'change_hasroutine'), -(139, 'Can delete Has Routine', 35, 'delete_hasroutine'), -(140, 'Can view Has Routine', 35, 'view_hasroutine'), -(141, 'Can add Has Routine', 36, 'add_gymnasthasroutine'), -(142, 'Can change Has Routine', 36, 'change_gymnasthasroutine'), -(143, 'Can delete Has Routine', 36, 'delete_gymnasthasroutine'), -(144, 'Can view Has Routine', 36, 'view_gymnasthasroutine'), -(145, 'Can add message', 37, 'add_message'), -(146, 'Can change message', 37, 'change_message'), -(147, 'Can delete message', 37, 'delete_message'), -(148, 'Can view message', 37, 'view_message'), -(149, 'Can add evaluation', 38, 'add_evaluation'), -(150, 'Can change evaluation', 38, 'change_evaluation'), -(151, 'Can delete evaluation', 38, 'delete_evaluation'), -(152, 'Can view evaluation', 38, 'view_evaluation'), -(153, 'Can add event_ participation', 39, 'add_event_participation'), -(154, 'Can change event_ participation', 39, 'change_event_participation'), -(155, 'Can delete event_ participation', 39, 'delete_event_participation'), -(156, 'Can view event_ participation', 39, 'view_event_participation'); - --- -------------------------------------------------------- - --- --- Structure de la table `auth_user` --- - -CREATE TABLE `auth_user` ( - `id` int NOT NULL, - `password` varchar(128) NOT NULL, - `last_login` datetime(6) DEFAULT NULL, - `is_superuser` tinyint(1) NOT NULL, - `username` varchar(150) NOT NULL, - `first_name` varchar(150) NOT NULL, - `last_name` varchar(150) NOT NULL, - `email` varchar(254) NOT NULL, - `is_staff` tinyint(1) NOT NULL, - `is_active` tinyint(1) NOT NULL, - `date_joined` datetime(6) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `auth_user` --- - -INSERT INTO `auth_user` (`id`, `password`, `last_login`, `is_superuser`, `username`, `first_name`, `last_name`, `email`, `is_staff`, `is_active`, `date_joined`) VALUES -(1, 'pbkdf2_sha256$260000$MsRLQqEnJ9N0gYGOV3kFN0$eh6l8SPvkAzWKxeEt+4Oo2i/LtQqOkQHxnhxuLvvV+4=', '2021-05-13 14:19:47.490470', 1, 'Gregory', 'Gregory', 'Trullemans', 'gregory@flyingacrobaticstrampoline.be', 1, 1, '2019-03-16 16:59:22.000000'), -(2, 'pbkdf2_sha256$120000$0muwiBmI2PGm$jMvtA92u/ao+l+2z9DKJ9nNNCgWBjqwR4lxuCdnpj8E=', NULL, 1, 'Morgane', 'Morgane', 'Petit', 'morgane@flyingacrobaticstrampoline.be', 1, 1, '2019-03-17 07:55:28.000000'), -(3, 'pbkdf2_sha256$120000$a3DrPGLiEP43$7uxCc9GdcpvKBGIG1g+v95Tp6P8xps24W9HF+aYuKQA=', NULL, 0, 'Stéphane', 'Stéphane', 'Gilles', 'sgilles@hotmail.be', 1, 1, '2019-03-17 07:56:24.000000'), -(4, 'pbkdf2_sha256$260000$x6VvhIhcei1vI3IKdRyxik$oEdBsh+13poVd52wXT4JXaTJL1BJEc4di82JnT78Ys4=', NULL, 0, 'felix_vanye', 'Felix', 'Vanye', '', 0, 1, '2021-05-14 15:51:59.000000'), -(5, 'pbkdf2_sha256$260000$9GpNFQsVosDtH2LNmIJ8qV$HR0tHGCSjee+JwU06dpwGmh/wRFhYI//JokATO0pWbE=', NULL, 0, 'lola_vanmol', 'Lola', 'Van Mal', '', 0, 1, '2021-05-14 15:52:29.000000'), -(6, 'pbkdf2_sha256$260000$ngJJ4HPC1J25R0a7LQnzOr$Wh76DRYn7xLPy7xmq+4DFz8fFfFirPF9PEEYBgfxQbs=', NULL, 0, 'safwane_salhi', 'Safwane', 'Salhi', 'Salhi.safwane.b@gmail.com', 0, 1, '2021-05-14 15:53:13.000000'), -(7, 'pbkdf2_sha256$260000$wmF8GO5iJvBKCwGaPtj6sy$Jqrq/cJDGLcwVQe15HOXvfWCqWnN/qP2aOLlvNyD/YE=', NULL, 0, 'romain_scokart', 'Romain', 'Scokart', 'rscokart@gmail.com', 0, 1, '2021-05-14 15:53:39.000000'), -(8, 'pbkdf2_sha256$260000$MfuBWGlOD1YM4WFOr5vGYe$C9BR5JLTdeF5YCXY/3rC6elNzDw8hIxBzV2/kCGbsRc=', NULL, 0, 'sebastian_raschke', 'Sebastian', 'Raschke', 'sebastianr1401@gmail.com', 0, 1, '2021-05-14 15:53:59.000000'), -(9, 'pbkdf2_sha256$260000$PbY54jYQXwkFNxHZakesNj$q44yCuMz5T0jcy3N+MzU+l7XQgV87S54TpPx0KlraJI=', NULL, 0, 'roswitha_raschke', 'Raschke', 'Roswitha', 'roswithar7@hotmail.com', 0, 1, '2021-05-14 15:54:18.000000'), -(10, 'pbkdf2_sha256$260000$ML4IbLu6pGElbgyaNJuNOd$UME4WOkpLaA4DKbJO58FKWMEofg2FFnU2hxsoAx2Kvw=', NULL, 0, 'lucas_pesesse', 'Lucas', 'Pesesse', '', 0, 1, '2021-05-14 15:54:32.000000'), -(11, 'pbkdf2_sha256$260000$gVMnCEruOB11nwnJKxPUPJ$HaI9zL8jSaLUP7UBp2M6qivNn8FDamu0GJnHV90/vjc=', NULL, 0, 'pauline_lefevre', 'Pauline', 'Lefevre', '', 0, 1, '2021-05-14 15:54:47.000000'), -(12, 'pbkdf2_sha256$260000$lbbyHUcdzkVJpohnciw5Fn$aEB4uORHSaFtNdjPtodxqf+rtH5sZxFSLKEBLM3xLxY=', NULL, 0, 'martin_jacquet', 'Martin', 'Jacquet', '', 0, 1, '2021-05-14 15:55:03.000000'), -(13, 'pbkdf2_sha256$260000$9fuHufdHZQOInAoKCnO7NV$MsmkmexeiDoYh7p+askl8C7iKyzLea0HQ9JE+U7o2z8=', NULL, 0, 'noelia_grandamartinez', 'Noelia', 'Granda Martinez', 'grandamartineznoelia@gmail.com', 0, 1, '2021-05-14 15:55:17.000000'), -(14, 'pbkdf2_sha256$260000$xGkYbKwpF8MPQ4gmRUNQ3f$NhAC9Wi12E0LkzdAbkhZSqKiM+ygteNOg7aZ6dsxXjQ=', NULL, 0, 'marine_geirnart', 'Marine', 'Geirnart', 'marinegeirnaert7@gmail.com', 0, 1, '2021-05-14 15:55:34.000000'); - --- -------------------------------------------------------- - --- --- Structure de la table `auth_user_groups` --- - -CREATE TABLE `auth_user_groups` ( - `id` int NOT NULL, - `user_id` int NOT NULL, - `group_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `auth_user_user_permissions` --- - -CREATE TABLE `auth_user_user_permissions` ( - `id` int NOT NULL, - `user_id` int NOT NULL, - `permission_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `communication_message` --- - -CREATE TABLE `communication_message` ( - `id` int NOT NULL, - `written_at` datetime(6) NOT NULL, - `read_at` datetime(6) NOT NULL, - `title` varchar(255) NOT NULL, - `body` longtext, - `content` longtext, - `recipient_id` int NOT NULL, - `sender_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `communication_message` --- - -INSERT INTO `communication_message` (`id`, `written_at`, `read_at`, `title`, `body`, `content`, `recipient_id`, `sender_id`) VALUES -(2, '2019-04-13 10:33:08.753877', '2019-04-15 08:02:43.489659', 'Test de message Morgane -> Gregory', 'petit test qui va bien.', NULL, 1, 1), -(3, '2019-04-14 14:26:58.939913', '2019-04-14 14:27:02.243513', 'test de foprm', 'test de form !', NULL, 1, 1), -(4, '2019-04-14 14:35:56.294439', '2019-04-14 14:35:56.294469', 'test de test', 'et sans faute dans le titre cette fois-ci !', NULL, 1, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `competition_competition` --- - -CREATE TABLE `competition_competition` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(10) NOT NULL, - `reglement` varchar(100) DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `competition_division` --- - -CREATE TABLE `competition_division` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(10) NOT NULL, - `competition_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `competition_level` --- - -CREATE TABLE `competition_level` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(10) NOT NULL, - `division_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `competition_point` --- - -CREATE TABLE `competition_point` ( - `id` int NOT NULL, - `routine_type` smallint UNSIGNED NOT NULL, - `point_execution` decimal(5,3) NOT NULL, - `point_difficulty` decimal(3,1) NOT NULL, - `point_time_of_flight` decimal(5,3) NOT NULL, - `penality` decimal(3,1) NOT NULL, - `total` decimal(6,3) NOT NULL, - `event_id` int NOT NULL, - `gymnast_id` int NOT NULL, - `point_horizontal_displacement` decimal(4,3) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `competition_point` --- - -INSERT INTO `competition_point` (`id`, `routine_type`, `point_execution`, `point_difficulty`, `point_time_of_flight`, `penality`, `total`, `event_id`, `gymnast_id`, `point_horizontal_displacement`) VALUES -(1, 0, '15.800', '0.0', '14.125', '0.0', '39.175', 7, 1, '9.250'), -(2, 1, '15.600', '5.1', '13.760', '0.0', '43.410', 7, 1, '8.950'), -(4, 1, '3.400', '2.9', '3.625', '0.0', '11.625', 3, 11, '1.700'), -(5, 0, '16.800', '6.7', '16.750', '0.0', '49.500', 3, 11, '9.250'), -(6, 0, '13.900', '6.7', '15.895', '0.0', '45.195', 3, 5, '8.700'), -(7, 1, '15.800', '12.0', '16.085', '0.0', '52.935', 3, 5, '9.050'), -(8, 0, '14.400', '3.7', '14.820', '0.0', '42.020', 3, 4, '9.100'), -(9, 1, '13.000', '8.8', '13.865', '0.0', '44.815', 3, 4, '9.150'), -(10, 2, '12.800', '8.8', '13.925', '0.0', '44.375', 3, 4, '8.850'), -(11, 0, '14.400', '0.0', '13.060', '0.0', '36.760', 2, 2, '9.300'), -(12, 1, '14.100', '5.2', '13.535', '0.0', '42.435', 2, 2, '9.600'), -(13, 0, '16.600', '6.7', '15.940', '0.0', '48.640', 2, 5, '9.400'), -(14, 1, '15.500', '12.0', '15.590', '0.0', '51.240', 2, 5, '8.150'), -(15, 0, '13.800', '0.0', '12.840', '0.0', '35.940', 2, 7, '9.300'), -(16, 1, '15.200', '2.7', '12.535', '0.0', '39.885', 2, 7, '9.450'), -(17, 0, '16.300', '0.0', '13.620', '0.0', '39.320', 2, 1, '9.400'), -(18, 1, '16.600', '4.0', '13.890', '0.0', '43.940', 2, 1, '9.450'), -(19, 0, '13.700', '0.0', '12.685', '0.0', '35.785', 2, 6, '9.400'), -(20, 1, '12.600', '2.7', '11.405', '0.0', '35.805', 2, 6, '9.100'), -(21, 0, '13.400', '0.0', '11.720', '0.0', '34.570', 7, 6, '9.450'), -(22, 1, '14.700', '2.3', '11.755', '0.0', '38.155', 7, 6, '9.400'), -(23, 0, '14.900', '5.1', '14.465', '0.0', '42.315', 7, 5, '7.850'), -(24, 1, '13.400', '11.0', '15.700', '0.0', '49.150', 7, 5, '9.050'), -(25, 0, '15.800', '6.7', '15.445', '0.0', '47.145', 8, 5, '9.200'), -(26, 1, '15.600', '10.8', '15.455', '0.2', '50.355', 8, 5, '8.700'), -(27, 0, '15.400', '9.8', '0.000', '0.0', '25.200', 7, 8, '0.000'), -(28, 1, '14.200', '1.4', '9.660', '0.0', '35.110', 7, 8, '9.850'), -(29, 0, '15.800', '0.0', '0.000', '0.0', '25.600', 2, 8, '9.800'), -(30, 1, '13.600', '1.7', '9.140', '0.6', '33.540', 2, 8, '9.700'), -(31, 0, '2.900', '3.4', '1.655', '0.0', '9.655', 9, 5, '1.700'), -(32, 1, '3.300', '1.7', '3.295', '0.0', '10.045', 9, 5, '1.750'), -(33, 0, '14.100', '4.9', '15.240', '2.0', '39.740', 1, 11, '7.500'), -(34, 1, '17.200', '11.6', '17.035', '0.0', '54.935', 1, 11, '9.100'), -(35, 0, '14.400', '3.7', '14.885', '0.0', '42.635', 1, 4, '9.650'), -(36, 1, '13.100', '8.1', '12.840', '0.0', '42.440', 1, 4, '8.400'), -(37, 0, '16.000', '3.7', '14.730', '0.0', '43.980', 9, 4, '9.550'), -(38, 1, '13.900', '8.8', '14.225', '0.4', '45.225', 9, 4, '8.700'), -(39, 0, '15.400', '4.9', '15.080', '0.0', '43.380', 9, 11, '8.000'), -(40, 1, '16.600', '11.6', '16.475', '0.0', '53.025', 9, 11, '8.350'), -(41, 0, '6.300', '3.6', '6.396', '0.0', '19.596', 1, 5, '3.300'), -(42, 1, '14.200', '11.2', '14.345', '0.0', '47.695', 1, 5, '7.950'), -(43, 2, '14.200', '10.9', '15.655', '0.0', '49.605', 3, 5, '8.850'), -(44, 0, '16.300', '3.7', '15.285', '0.0', '44.735', 5, 4, '9.450'), -(45, 1, '14.300', '8.8', '14.485', '0.0', '47.085', 5, 4, '9.500'), -(46, 2, '4.300', '3.6', '4.410', '0.0', '14.860', 5, 4, '2.550'), -(47, 0, '16.100', '6.7', '16.590', '0.0', '48.740', 5, 11, '9.350'), -(48, 1, '17.500', '11.6', '17.235', '0.0', '55.585', 5, 11, '9.250'), -(49, 2, '15.400', '13.3', '16.445', '0.0', '54.095', 5, 11, '8.950'), -(50, 0, '15.900', '6.5', '14.995', '0.0', '46.595', 5, 5, '9.200'), -(51, 1, '13.400', '9.5', '12.540', '0.0', '42.690', 5, 5, '7.250'), -(52, 0, '13.900', '0.0', '12.320', '0.0', '35.020', 5, 1, '8.800'), -(53, 1, '14.600', '5.1', '13.385', '0.0', '42.735', 5, 1, '9.650'), -(54, 0, '2.700', '0.0', '2.655', '0.0', '7.155', 5, 2, '1.800'), -(55, 1, '12.900', '5.2', '12.990', '0.0', '39.890', 5, 2, '8.800'), -(56, 0, '14.100', '0.0', '13.315', '0.0', '36.665', 8, 2, '9.250'), -(57, 1, '7.000', '2.4', '6.805', '0.0', '20.555', 8, 2, '4.350'), -(58, 0, '13.600', '0.0', '12.330', '0.0', '35.030', 1, 2, '9.100'), -(59, 1, '12.800', '5.2', '13.275', '0.0', '40.825', 1, 2, '9.550'), -(60, 0, '13.000', '0.0', '10.910', '0.0', '32.210', 10, 2, '8.300'), -(61, 1, '13.500', '5.0', '12.015', '0.0', '39.315', 10, 2, '8.800'), -(62, 0, '14.200', '0.0', '14.225', '0.0', '37.575', 11, 2, '9.150'), -(63, 1, '11.200', '6.0', '14.275', '0.0', '40.175', 11, 2, '8.700'), -(64, 0, '14.800', '0.0', '12.545', '0.0', '37.045', 12, 2, '9.700'), -(65, 1, '12.500', '6.0', '12.245', '0.0', '40.095', 12, 2, '9.350'), -(66, 2, '14.000', '6.0', '12.260', '0.0', '41.360', 12, 2, '9.100'), -(67, 0, '15.400', '0.0', '14.355', '0.0', '39.355', 13, 5, '9.600'), -(68, 1, '8.866', '7.6', '10.400', '0.0', '33.766', 13, 5, '6.900'), -(69, 0, '13.600', '0.0', '15.650', '0.0', '38.300', 14, 5, '9.050'), -(70, 1, '14.100', '9.0', '14.750', '0.0', '46.700', 14, 5, '8.850'), -(71, 0, '15.900', '0.0', '12.850', '0.0', '38.250', 14, 1, '9.500'), -(72, 1, '15.300', '4.5', '12.760', '0.0', '41.510', 14, 1, '8.950'), -(73, 0, '16.000', '0.0', '12.680', '0.0', '38.380', 15, 1, '9.700'), -(74, 1, '14.300', '5.4', '11.775', '0.0', '40.825', 15, 1, '9.350'), -(75, 0, '10.500', '0.0', '9.310', '0.0', '26.060', 16, 1, '6.250'), -(76, 1, '13.700', '4.5', '12.605', '0.0', '39.705', 16, 1, '8.900'), -(77, 0, '16.500', '0.0', '15.120', '0.0', '40.870', 16, 5, '9.250'), -(78, 1, '14.100', '10.0', '14.120', '0.0', '46.620', 16, 5, '8.400'), -(79, 2, '15.900', '10.0', '14.630', '0.0', '49.580', 16, 5, '9.050'), -(80, 0, '15.300', '3.1', '14.195', '0.0', '40.995', 10, 5, '8.400'), -(81, 1, '16.800', '10.6', '15.390', '0.0', '51.990', 10, 5, '9.200'), -(82, 0, '6.800', '0.0', '6.630', '0.0', '16.780', 11, 5, '3.350'), -(83, 1, '14.900', '10.4', '14.670', '0.2', '48.170', 11, 5, '8.400'), -(84, 0, '14.700', '2.8', '15.245', '0.0', '42.045', 12, 5, '9.300'), -(85, 1, '13.200', '10.7', '14.560', '0.0', '47.110', 12, 5, '8.650'), -(86, 0, '16.000', '4.1', '16.880', '0.0', '46.030', 14, 11, '9.050'), -(87, 1, '5.300', '5.9', '6.800', '0.0', '21.200', 14, 11, '3.200'), -(88, 0, '14.300', '3.6', '15.140', '0.0', '40.590', 15, 11, '7.550'), -(89, 1, '14.800', '9.9', '15.440', '1.2', '47.340', 15, 11, '8.400'), -(90, 0, '15.700', '0.0', '13.340', '0.0', '37.990', 10, 1, '8.950'), -(91, 1, '16.500', '3.5', '13.090', '1.0', '41.690', 10, 1, '9.600'), -(92, 0, '16.300', '0.0', '13.620', '0.0', '38.870', 11, 1, '8.950'), -(93, 1, '15.800', '5.1', '13.595', '0.0', '43.295', 11, 1, '8.800'), -(94, 0, '15.900', '0.0', '13.770', '0.0', '39.220', 12, 1, '9.550'), -(95, 1, '13.600', '5.1', '13.550', '0.0', '41.300', 12, 1, '9.050'), -(96, 0, '15.200', '2.3', '14.835', '2.0', '39.185', 14, 4, '8.850'), -(97, 1, '11.700', '8.1', '13.640', '0.0', '42.540', 14, 4, '9.100'); - --- -------------------------------------------------------- - --- --- Structure de la table `django_admin_log` --- - -CREATE TABLE `django_admin_log` ( - `id` int NOT NULL, - `action_time` datetime(6) NOT NULL, - `object_id` longtext, - `object_repr` varchar(200) NOT NULL, - `action_flag` smallint UNSIGNED NOT NULL, - `change_message` longtext NOT NULL, - `content_type_id` int DEFAULT NULL, - `user_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `django_admin_log` --- - -INSERT INTO `django_admin_log` (`id`, `action_time`, `object_id`, `object_repr`, `action_flag`, `change_message`, `content_type_id`, `user_id`) VALUES -(1, '2019-03-16 17:07:05.826821', '1', 'Belgique (BE)', 1, '[{\"added\": {}}]', 12, 1), -(2, '2019-03-16 17:07:55.846154', '1', 'Ecole du pré vert (Lillois-Witterzée)', 1, '[{\"added\": {}}]', 13, 1), -(3, '2019-03-16 17:08:09.373101', '1', 'Flying Acrobatics Trampoline Club (à Lillois-Witterzée)', 1, '[{\"added\": {}}]', 11, 1), -(4, '2019-03-16 17:08:46.032839', '1', 'sulley', 2, '[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\"]}}]', 5, 1), -(5, '2019-03-16 17:16:24.868507', '1', 'Granda Martinez, Noelia', 1, '[{\"added\": {}}]', 9, 1), -(6, '2019-03-16 17:34:48.780874', '1', 'Season object (1)', 1, '[{\"added\": {}}]', 20, 1), -(7, '2019-03-16 18:51:13.177673', '1', 'Samedi - 10:00 à 12:00 (]>)', 1, '[{\"added\": {}}]', 14, 1), -(8, '2019-03-16 18:52:01.910461', '1', '2019-03-16 (Granda Martinez, Noelia, Samedi - 10:00 à 12:00 (]>))', 1, '[{\"added\": {}}]', 22, 1), -(9, '2019-03-16 19:08:03.088624', '1', '1', 1, '[{\"added\": {}}]', 19, 1), -(10, '2019-03-16 19:08:46.820482', '2', '2', 1, '[{\"added\": {}}]', 19, 1), -(11, '2019-03-16 19:09:53.818363', '3', '3', 1, '[{\"added\": {}}]', 19, 1), -(12, '2019-03-16 19:10:18.519101', '4', '4', 1, '[{\"added\": {}}]', 19, 1), -(13, '2019-03-16 19:10:39.190813', '5', '5', 1, '[{\"added\": {}}]', 19, 1), -(14, '2019-03-17 07:24:19.601018', '1', '1', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(15, '2019-03-17 07:53:57.999270', '2', 'Lundi (17:00 à 19:00)', 1, '[{\"added\": {}}]', 14, 1), -(16, '2019-03-17 07:54:50.955985', '3', 'Mercredi (17:00 à 19:00)', 1, '[{\"added\": {}}]', 14, 1), -(17, '2019-03-17 07:55:11.960993', '1', 'Gregory', 2, '[{\"changed\": {\"fields\": [\"username\"]}}]', 5, 1), -(18, '2019-03-17 07:55:28.913146', '2', 'Morgane', 1, '[{\"added\": {}}]', 5, 1), -(19, '2019-03-17 07:56:02.644134', '2', 'Morgane', 2, '[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\", \"is_staff\", \"is_superuser\"]}}]', 5, 1), -(20, '2019-03-17 07:56:24.493637', '3', 'Stéphane', 1, '[{\"added\": {}}]', 5, 1), -(21, '2019-03-17 07:56:43.759045', '3', 'Stéphane', 2, '[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\", \"is_staff\"]}}]', 5, 1), -(22, '2019-03-17 07:57:55.295615', '3', 'Mercredi (17:00 à 19:00)', 2, '[{\"changed\": {\"fields\": [\"trainers\"]}}]', 14, 1), -(23, '2019-03-17 07:58:09.428269', '2', 'Lundi (17:00 à 19:00)', 2, '[{\"changed\": {\"fields\": [\"trainers\"]}}]', 14, 1), -(24, '2019-03-17 08:00:54.091624', '4', 'Vendredi (17:15 à 19:15)', 1, '[{\"added\": {}}]', 14, 1), -(25, '2019-03-17 08:02:37.122250', '2', 'Ten Gaerde (Dilbeek)', 1, '[{\"added\": {}}]', 13, 1), -(26, '2019-03-17 08:02:46.033234', '2', 'Ten Gaerde (à Dilbeek)', 1, '[{\"added\": {}}]', 11, 1), -(27, '2019-03-17 08:04:19.888606', '5', 'Samedi (19:00 à 21:30)', 1, '[{\"added\": {}}]', 14, 1), -(28, '2019-03-17 08:09:53.576286', '6', 'Dimanche (11:00 à 13:00)', 1, '[{\"added\": {}}]', 14, 1), -(29, '2019-03-17 08:50:48.112852', '2', 'Lundi (17:00 à 19:00) le 2019-03-18, Granda Martinez, Noelia', 1, '[{\"added\": {}}]', 22, 1), -(30, '2019-03-17 08:51:10.250070', '3', 'Mercredi (17:00 à 19:00) le 2019-03-20, Granda Martinez, Noelia', 1, '[{\"added\": {}}]', 22, 1), -(31, '2019-03-17 08:51:30.250069', '4', 'Vendredi (17:15 à 19:15) le 2019-03-22, Granda Martinez, Noelia', 1, '[{\"added\": {}}]', 22, 1), -(32, '2019-03-17 08:51:44.981529', '5', 'Samedi (10:00 à 12:00) le 2019-03-23, Granda Martinez, Noelia', 1, '[{\"added\": {}}]', 22, 1), -(33, '2019-03-17 09:43:54.720710', '6', '1', 1, '[{\"added\": {}}]', 19, 1), -(34, '2019-03-17 09:44:20.083394', '7', '2', 1, '[{\"added\": {}}]', 19, 1), -(35, '2019-03-17 09:45:07.550487', '8', '3', 1, '[{\"added\": {}}]', 19, 1), -(36, '2019-03-17 09:45:24.020966', '9', '4', 1, '[{\"added\": {}}]', 19, 1), -(37, '2019-03-17 09:45:53.640505', '10', '5', 1, '[{\"added\": {}}]', 19, 1), -(38, '2019-03-17 09:46:09.216595', '11', '6', 1, '[{\"added\": {}}]', 19, 1), -(39, '2019-03-17 09:46:30.533286', '12', '7', 1, '[{\"added\": {}}]', 19, 1), -(40, '2019-03-17 09:46:41.996833', '2', '2', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(41, '2019-03-17 09:46:47.766106', '3', '3', 2, '[{\"changed\": {\"fields\": [\"round_information\", \"nb_of_realisation\"]}}]', 19, 1), -(42, '2019-03-17 09:59:50.953988', '13', '7', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(43, '2019-03-17 09:59:54.281243', '14', '6', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(44, '2019-03-17 09:59:58.212264', '15', '5', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(45, '2019-03-17 10:00:02.019723', '16', '4', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(46, '2019-03-17 10:00:07.154531', '17', '3', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(47, '2019-03-17 10:00:09.899485', '18', '2', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(48, '2019-03-17 10:00:15.800907', '19', '1', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(49, '2019-03-17 10:01:24.798105', '26', '7', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(50, '2019-03-17 10:01:27.576634', '25', '6', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(51, '2019-03-17 10:01:30.646825', '24', '5', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(52, '2019-03-17 10:01:33.930232', '23', '4', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(53, '2019-03-17 10:01:36.445703', '22', '3', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(54, '2019-03-17 10:01:39.326982', '21', '2', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(55, '2019-03-17 10:01:42.527468', '20', '1', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(56, '2019-03-17 10:02:14.252830', '27', '7', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(57, '2019-03-17 10:02:16.887148', '28', '6', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(58, '2019-03-17 10:02:19.726284', '29', '5', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(59, '2019-03-17 10:02:22.189048', '30', '4', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(60, '2019-03-17 10:02:24.775481', '31', '3', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(61, '2019-03-17 10:02:27.108521', '32', '2', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(62, '2019-03-17 10:02:30.405647', '33', '1', 2, '[{\"changed\": {\"fields\": [\"training\"]}}]', 19, 1), -(63, '2019-03-17 15:19:55.815904', '1', 'Granda Martinez, Noelia', 2, '[{\"changed\": {\"fields\": [\"club\"]}}]', 9, 1), -(64, '2019-03-17 15:33:26.471562', '494', '10 | (10 |)', 1, '[{\"added\": {}}]', 28, 1), -(65, '2019-03-17 15:33:49.857196', '494', '10 | (10 |)', 2, '[{\"changed\": {\"fields\": [\"difficulty\"]}}]', 28, 1), -(66, '2019-03-17 15:34:43.892368', '1', '1 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(67, '2019-03-17 15:34:49.828994', '2', '2 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(68, '2019-03-17 15:34:55.989404', '3', '3 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(69, '2019-03-17 15:35:02.399768', '4', '3 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(70, '2019-03-17 15:35:06.268595', '5', '4 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(71, '2019-03-17 15:35:10.814648', '6', '4 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(72, '2019-03-17 15:35:15.853337', '7', '5 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(73, '2019-03-17 15:35:20.095282', '8', '6 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(74, '2019-03-17 15:35:25.214217', '9', '7 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(75, '2019-03-17 15:35:29.522873', '10', '8 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(76, '2019-03-17 15:35:33.310238', '11', '9 - 10 | : Chandelle', 1, '[{\"added\": {}}]', 26, 1), -(77, '2019-03-17 15:35:59.066547', '11', '10 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(78, '2019-03-17 15:36:01.634429', '10', '9 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(79, '2019-03-17 15:36:03.319794', '9', '8 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(80, '2019-03-17 15:36:04.816238', '8', '7 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(81, '2019-03-17 15:36:06.263925', '7', '6 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(82, '2019-03-17 15:36:07.654326', '6', '5 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(83, '2019-03-17 15:36:09.168784', '5', '5 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(84, '2019-03-17 15:36:10.745198', '4', '4 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(85, '2019-03-17 15:36:29.929936', '11', '10 - 10 | : Chandelle', 3, '', 26, 1), -(86, '2019-03-17 15:36:40.138777', '10', '10 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(87, '2019-03-17 15:36:41.921275', '9', '9 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(88, '2019-03-17 15:36:43.820197', '8', '8 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(89, '2019-03-17 15:36:45.152772', '7', '7 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(90, '2019-03-17 15:36:46.423923', '6', '6 - 10 | : Chandelle', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(91, '2019-03-17 15:37:34.869340', '1', 'Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.60', 1, '[{\"added\": {}}]', 24, 1), -(92, '2019-03-17 17:05:37.818321', '1', '2018-19', 2, '[{\"changed\": {\"fields\": [\"datebegin\"]}}]', 20, 1), -(93, '2019-03-20 09:13:03.315050', '1', 'Profile object (1)', 1, '[{\"added\": {}}]', 34, 1), -(94, '2019-03-20 09:21:23.319588', '2', 'Profile object (2)', 1, '[{\"added\": {}}]', 34, 1), -(95, '2019-03-20 09:21:28.235413', '3', 'Profile object (3)', 1, '[{\"added\": {}}]', 34, 1), -(96, '2019-03-20 13:54:43.331653', '1', 'Granda Martinez, Noelia', 2, '[{\"changed\": {\"fields\": [\"address\", \"postal\", \"city\", \"gsm\", \"email\", \"gsmm\", \"gsmp\"]}}]', 9, 1), -(97, '2019-03-20 13:56:29.356661', '1', 'Granda Martinez, Noelia', 2, '[{\"changed\": {\"fields\": [\"niss\", \"fedid\"]}}]', 9, 1), -(98, '2019-03-20 14:38:06.236172', '2', 'Pesesse, Lucas', 1, '[{\"added\": {}}]', 9, 1), -(99, '2019-03-20 14:38:36.784265', '3', 'Scokart, Romain', 1, '[{\"added\": {}}]', 9, 1), -(100, '2019-03-20 14:38:54.762671', '4', 'Raschke, Roswitha', 1, '[{\"added\": {}}]', 9, 1), -(101, '2019-03-20 20:09:33.686931', '5', 'Salhi, Safwane', 1, '[{\"added\": {}}]', 9, 1), -(102, '2019-03-20 20:10:06.664345', '6', 'Van Mol, Lola', 1, '[{\"added\": {}}]', 9, 1), -(103, '2019-03-21 08:17:33.408482', '34', '8', 1, '[{\"added\": {}}]', 19, 1), -(104, '2019-03-21 08:18:31.277898', '35', '9', 1, '[{\"added\": {}}]', 19, 1), -(105, '2019-03-21 08:18:54.676621', '36', '10', 1, '[{\"added\": {}}]', 19, 1), -(106, '2019-03-21 08:19:12.866241', '37', '12', 1, '[{\"added\": {}}]', 19, 1), -(107, '2019-03-21 08:19:17.005369', '37', '11', 2, '[{\"changed\": {\"fields\": [\"round_number\"]}}]', 19, 1), -(108, '2019-03-21 13:17:02.981507', '4', '4', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(109, '2019-03-21 13:17:06.298329', '9', '4', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(110, '2019-03-21 13:17:08.915235', '16', '4', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(111, '2019-03-21 13:17:11.607551', '23', '4', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(112, '2019-03-21 13:17:13.317558', '30', '4', 2, '[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]', 19, 1), -(113, '2019-03-21 18:30:59.051088', '1', 'Profile object (1)', 2, '[{\"changed\": {\"fields\": [\"sidebar_color\"]}}]', 34, 1), -(114, '2019-03-22 12:31:31.952778', '1', 'Profile object (1)', 2, '[{\"changed\": {\"fields\": [\"sidebar_color\"]}}]', 34, 1), -(115, '2019-03-22 12:31:43.955102', '1', 'Granda Martinez, Noelia', 2, '[]', 9, 1), -(116, '2019-03-22 12:33:34.648749', '5', 'Salhi, Safwane', 2, '[{\"changed\": {\"fields\": [\"birthdate\"]}}]', 9, 1), -(117, '2019-03-22 12:35:40.875425', '2', 'Pesesse, Lucas', 2, '[{\"changed\": {\"fields\": [\"birthdate\"]}}]', 9, 1), -(118, '2019-03-22 12:36:34.545437', '7', 'Vanye, Felix', 1, '[{\"added\": {}}]', 9, 1), -(119, '2019-03-22 12:37:01.251514', '6', 'Van Mol, Lola', 2, '[{\"changed\": {\"fields\": [\"birthdate\"]}}]', 9, 1), -(120, '2019-03-22 12:37:34.275312', '8', 'Lefevre, Pauline', 1, '[{\"added\": {}}]', 9, 1), -(121, '2019-03-22 12:37:50.386555', '6', 'Van Mol, Lola', 2, '[{\"changed\": {\"fields\": [\"trainer\"]}}]', 9, 1), -(122, '2019-03-22 12:38:29.467117', '3', 'Scokart, Romain', 2, '[{\"changed\": {\"fields\": [\"birthdate\"]}}]', 9, 1), -(123, '2019-03-22 12:38:43.813345', '4', 'Raschke, Roswitha', 2, '[{\"changed\": {\"fields\": [\"birthdate\"]}}]', 9, 1), -(124, '2019-03-22 12:40:27.688878', '9', 'Geirnart, Marine', 1, '[{\"added\": {}}]', 9, 1), -(125, '2019-03-22 13:20:50.011564', '5', 'Salhi, Safwane', 2, '[{\"changed\": {\"fields\": [\"gsm\"]}}]', 9, 1), -(126, '2019-03-22 13:21:22.425281', '3', 'Scokart, Romain', 2, '[{\"changed\": {\"fields\": [\"phone\"]}}]', 9, 1), -(127, '2019-03-22 13:22:22.106012', '9', 'Geirnart, Marine', 2, '[{\"changed\": {\"fields\": [\"phone\"]}}]', 9, 1), -(128, '2019-03-22 13:22:59.849048', '9', 'Geirnart, Marine', 2, '[]', 9, 1), -(129, '2019-03-22 13:23:25.845330', '9', 'Geirnart, Marine', 2, '[{\"changed\": {\"fields\": [\"phone\", \"gsm\"]}}]', 9, 1), -(130, '2019-03-22 13:23:47.458811', '9', 'Geirnart, Marine', 2, '[{\"changed\": {\"fields\": [\"gsm\"]}}]', 9, 1), -(131, '2019-03-22 13:24:31.347783', '3', 'Scokart, Romain', 2, '[{\"changed\": {\"fields\": [\"phone\", \"gsm\"]}}]', 9, 1), -(132, '2019-03-22 13:24:56.060010', '4', 'Raschke, Roswitha', 2, '[{\"changed\": {\"fields\": [\"gsm\"]}}]', 9, 1), -(133, '2019-03-22 13:25:53.543562', '5', 'Salhi, Safwane', 2, '[{\"changed\": {\"fields\": [\"email\"]}}]', 9, 1), -(134, '2019-03-22 13:26:20.764879', '4', 'Raschke, Roswitha', 2, '[{\"changed\": {\"fields\": [\"email\"]}}]', 9, 1), -(135, '2019-03-22 13:28:16.044346', '5', 'Salhi, Safwane', 2, '[{\"changed\": {\"fields\": [\"gsm\", \"email\"]}}]', 9, 1), -(136, '2019-03-22 13:29:31.277776', '4', 'Raschke, Roswitha', 2, '[{\"changed\": {\"fields\": [\"gsm\"]}}]', 9, 1), -(137, '2019-03-23 12:32:46.228674', '1', 'Granda Martinez, Noelia', 2, '[{\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - PO /\"}}, {\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - Dos - 4 pattes\"}}, {\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - \\u00be Avant / + vrille\"}}]', 9, 1), -(138, '2019-03-23 16:37:14.319453', '1', 'Granda Martinez, Noelia', 2, '[{\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - Dos - 4 pattes\"}}, {\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - PO /\"}}, {\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - \\u00be Avant / + vrille\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Assis - vrille, ventre\"}}]', 9, 1), -(139, '2019-03-23 16:38:03.265570', '1', 'Granda Martinez, Noelia', 2, '[{\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Dos - Assis\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Assis - ventre o\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Dos - \\u00bd, ventre\"}}]', 9, 1), -(140, '2019-03-24 14:33:04.579452', '1', 'Profile object (1)', 2, '[]', 34, 1), -(141, '2019-03-24 14:34:39.696965', '1', 'Profile object (1)', 2, '[{\"changed\": {\"fields\": [\"template_color\"]}}]', 34, 1), -(142, '2019-03-24 16:04:25.937584', '1', 'Profile object (1)', 2, '[{\"changed\": {\"fields\": [\"template_color\"]}}]', 34, 1), -(143, '2019-03-24 16:22:50.618415', '2', 'Profile object (2)', 2, '[{\"changed\": {\"fields\": [\"birth_date\"]}}]', 34, 1), -(144, '2019-03-24 16:23:49.613338', '2', 'Profile object (2)', 2, '[{\"changed\": {\"fields\": [\"gsm\"]}}]', 34, 1), -(145, '2019-03-24 16:23:59.640976', '2', 'Profile object (2)', 2, '[{\"changed\": {\"fields\": [\"gsm\"]}}]', 34, 1), -(146, '2019-03-24 16:24:55.124708', '3', 'Profile object (3)', 2, '[{\"changed\": {\"fields\": [\"birth_date\", \"gsm\"]}}]', 34, 1), -(147, '2019-03-28 16:13:47.773104', '22', 'Avant o (.4 - o)', 2, '[{\"changed\": {\"fields\": [\"prerequisite\"]}}]', 29, 1), -(148, '2019-03-28 19:01:55.237902', '1', 'Compétition (CPT)', 1, '[{\"added\": {}}]', 16, 1), -(149, '2019-03-28 19:02:02.756035', '2', 'Démonstration (Démo)', 1, '[{\"added\": {}}]', 16, 1), -(150, '2019-03-28 19:02:10.500844', '3', 'Initiation (Ini)', 1, '[{\"added\": {}}]', 16, 1), -(151, '2019-03-30 09:37:58.131872', '495', 'Imposé Noya (Imposé Noya)', 1, '[{\"added\": {}}]', 28, 1), -(152, '2019-03-30 10:37:50.581270', '11', '1 - Imposé Noya : Arrière /', 1, '[{\"added\": {}}]', 26, 1), -(153, '2019-03-30 10:38:08.479467', '12', '2 - Imposé Noya : Barani /', 1, '[{\"added\": {}}]', 26, 1), -(154, '2019-03-30 10:38:30.622813', '13', '3 - Imposé Noya : <', 1, '[{\"added\": {}}]', 26, 1), -(155, '2019-03-30 10:39:08.101004', '14', '4 - Imposé Noya : Barani <', 1, '[{\"added\": {}}]', 26, 1), -(156, '2019-03-30 10:39:36.703671', '15', '5 - Imposé Noya : Arrière <', 1, '[{\"added\": {}}]', 26, 1), -(157, '2019-03-30 15:05:46.885854', '16', '6 - Imposé Noya : o', 1, '[{\"added\": {}}]', 26, 1), -(158, '2019-03-30 15:05:59.279977', '17', '4 - Imposé Noya : Barani o', 1, '[{\"added\": {}}]', 26, 1), -(159, '2019-03-30 15:06:14.097725', '18', '8 - Imposé Noya : //', 1, '[{\"added\": {}}]', 26, 1), -(160, '2019-03-30 15:06:25.003946', '19', '9 - Imposé Noya : Piqué', 1, '[{\"added\": {}}]', 26, 1), -(161, '2019-03-30 15:06:34.773422', '20', '10 - Imposé Noya : BBO o', 1, '[{\"added\": {}}]', 26, 1), -(162, '2019-03-30 15:37:44.022218', '1', 'HasRoutine object (1)', 1, '[{\"added\": {}}]', 35, 1), -(163, '2019-03-30 15:38:11.595583', '2', 'HasRoutine object (2)', 1, '[{\"added\": {}}]', 35, 1), -(164, '2019-03-30 15:39:55.994691', '10', 'Granda Martinez2, Noelia', 3, '', 9, 1), -(165, '2019-03-31 07:20:15.509415', '1', 'Granda Martinez, Noelia', 2, '[{\"changed\": {\"fields\": [\"picture\"]}}]', 9, 1), -(166, '2019-03-31 07:27:01.097853', '2', 'Pesesse, Lucas', 2, '[{\"changed\": {\"fields\": [\"picture\"]}}]', 9, 1), -(167, '2019-03-31 19:38:21.820419', '11', 'Raschke, Sebastian', 1, '[{\"added\": {}}]', 9, 1), -(168, '2019-03-31 19:40:00.621815', '12', 'Geirnart, Marine', 1, '[{\"added\": {}}]', 9, 1), -(169, '2019-04-01 17:57:33.637908', '12', 'Geirnart, Marine', 3, '', 9, 1), -(170, '2019-04-01 18:08:10.078447', '1', 'GymnastHasRoutine object (1)', 1, '[{\"added\": {}}]', 36, 1), -(171, '2019-04-01 18:08:24.517375', '2', 'GymnastHasRoutine object (2)', 1, '[{\"added\": {}}]', 36, 1), -(172, '2019-04-02 12:21:24.823223', '1', 'Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.94', 2, '[{\"changed\": {\"fields\": [\"routineType\", \"score\"]}}]', 24, 1), -(173, '2019-04-02 12:33:19.878440', '1', 'Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.94', 2, '[]', 24, 1), -(174, '2019-04-02 13:22:50.486058', '2', 'Granda Martinez, Noelia le 2019-04-02 : L1 D2 Junior 1 (L1 D2 Junior 1) pour 16.53', 1, '[{\"added\": {}}]', 24, 1), -(175, '2019-04-02 13:23:04.443972', '3', 'Granda Martinez, Noelia le 2019-04-02 : L1 D2 Junior 1 (L1 D2 Junior 1) pour 16.34', 1, '[{\"added\": {}}]', 24, 1), -(176, '2019-04-02 14:29:45.238657', '37', '11', 2, '[{\"changed\": {\"fields\": [\"is_important\"]}}]', 19, 1), -(177, '2019-04-02 14:29:49.446797', '36', '10', 2, '[{\"changed\": {\"fields\": [\"is_important\"]}}]', 19, 1), -(178, '2019-04-02 14:29:52.865006', '35', '9', 2, '[{\"changed\": {\"fields\": [\"is_important\"]}}]', 19, 1), -(179, '2019-04-02 14:29:55.705310', '34', '8', 2, '[{\"changed\": {\"fields\": [\"is_important\"]}}]', 19, 1), -(180, '2019-04-02 17:23:32.640952', '3', 'Granda Martinez, Noelia - 3 : L1 D2 Junior 1 (L1 D2 Junior 1)', 1, '[{\"added\": {}}]', 36, 1), -(181, '2019-04-06 16:36:13.950676', '17', '7 - L1 D2 Junior 1 : Barani o', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(182, '2019-04-07 20:32:14.981917', '256', '| 2 (| 2)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(183, '2019-04-07 20:32:20.931883', '366', 'Debout (-)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(184, '2019-04-07 20:32:25.090772', '459', 'Debout (de l\'assis) (beb) (D)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(185, '2019-04-07 20:33:31.950302', '457', 'Tomber Assis (beb) (A)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(186, '2019-04-07 20:33:36.663112', '318', 'Rebonds plat dos (-)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(187, '2019-04-07 20:33:40.993809', '462', 'Demi tour debout (de l\'assis) (beh) (D 1)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(188, '2019-04-07 20:33:45.385602', '461', 'Demi tour debout (de l\'assis) (beb) (D 1)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(189, '2019-04-08 17:25:10.185948', '495', 'L1 D2 Junior 1 (L1 D2 Junior 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 28, 1), -(190, '2019-04-08 17:38:15.476995', '213', 'Vrille et ½ debout (de l\'assis) (- 3)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(191, '2019-04-08 17:38:21.529610', '214', 'Vrille debout (D 2)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(192, '2019-04-08 17:38:27.759193', '463', 'Vrille debout (de l\'assis) (beh) (D 2)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(193, '2019-04-08 17:38:32.135002', '464', 'Vrille debout (de l\'assis) (b2b) (D 2)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(194, '2019-04-08 17:38:39.182627', '462', 'Demi tour debout (de l\'assis) (beh) (D 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(195, '2019-04-08 17:38:43.071476', '461', 'Demi tour debout (de l\'assis) (beb) (D 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(196, '2019-04-08 17:38:47.339896', '69', '½ debout (D 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(197, '2019-04-08 17:38:50.887701', '460', 'Debout (de l\'assis) (beh) (D)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(198, '2019-04-08 17:38:56.542895', '459', 'Debout (de l\'assis) (beb) (D)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(199, '2019-04-08 17:39:02.937159', '14', 'Debout (D)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(200, '2019-04-08 17:39:09.110313', '335', 'Assis - vrille, ventre (.1 2 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(201, '2019-04-08 17:39:13.446746', '204', 'Assis - vrille, plat dos (1. 2 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(202, '2019-04-08 17:39:18.799558', '82', 'Roller (- 2)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(203, '2019-04-08 17:39:25.740977', '338', 'Assis - vrille et ½, plat dos (1. 3 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(204, '2019-04-08 17:39:33.068653', '156', 'Assis - vrille et ½, dos (.1 3)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(205, '2019-04-08 17:39:38.180152', '146', 'Assis - vrille et ½, assis (-3)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(206, '2019-04-08 17:39:45.251762', '101', 'Assis - ventre / (.1 -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(207, '2019-04-08 17:39:50.902367', '328', 'Assis - ventre o (.1 - o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(208, '2019-04-08 17:41:03.013708', '329', 'Assis - ventre < (.1 - <)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(209, '2019-04-08 17:41:07.339589', '157', 'Assis - salto avant, dos (.3 - 0)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(210, '2019-04-08 17:41:11.548034', '319', 'Assis - plat dos (beh) (1. - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(211, '2019-04-08 17:41:15.187811', '199', 'Assis - plat dos (beb) (1. -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(212, '2019-04-08 17:41:19.042647', '333', 'Assis - grouper + vrille, ventre (.1 2 o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(213, '2019-04-08 17:41:22.665504', '336', 'Assis - grouper + vrille et ½, plat dos (.1 3 o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(214, '2019-04-08 17:41:26.610338', '330', 'Assis - grouper + ½, plat dos (.1 1 o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(215, '2019-04-08 17:41:32.066439', '340', 'Assis - double vrille, ventre (.1 4 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(216, '2019-04-08 17:41:37.083965', '327', 'Assis - double vrille, plat dos (1. 4 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(217, '2019-04-08 17:41:46.689672', '341', 'Assis - double vrille et ½, plat dos (.1 5 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(218, '2019-04-08 17:41:52.087261', '453', 'Assis - Dos (1. - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(219, '2019-04-08 17:41:57.474661', '201', 'Assis - ½, ventre (1. 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(220, '2019-04-08 17:42:01.665097', '332', 'Assis - ½, plat dos (.1 1 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(221, '2019-04-08 17:42:06.545291', '102', 'Assis - ½, dos (.1 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(222, '2019-04-08 17:42:11.738104', '100', 'Assis - ½, Assis (A 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(223, '2019-04-08 17:44:39.011527', '468', 'ATR - roule (.1 - o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(224, '2019-04-08 17:44:42.554427', '469', 'Poirier - plat dos (.1 - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(225, '2019-04-08 17:44:46.017340', '192', 'Poirier - Curviligne fermé (.1 - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(226, '2019-04-08 17:47:10.240939', '467', 'Ventre - ATR (.1 - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(227, '2019-04-08 17:47:14.051889', '278', 'Assis < (A <)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(228, '2019-04-08 17:47:19.056518', '196', 'Kaboom, ATR (1. - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(229, '2019-04-08 17:47:22.411365', '190', 'Dos - ATR (1. -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(230, '2019-04-08 17:47:25.628929', '191', 'Dos - ½, ATR (1. 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(231, '2019-04-08 17:47:29.443604', '189', '4 pattes - ATR (.1 -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(232, '2019-04-08 18:10:55.234121', '208', '4 pattes - assis (1. -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(233, '2019-04-08 18:10:58.742237', '423', '4 pattes - Culbute, assis (.3 - o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(234, '2019-04-08 18:11:01.592458', '424', '4 pattes - Culbute, dos (.2 - c)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(235, '2019-04-08 18:11:04.935868', '179', '4 pattes - ½, Assis (A 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(236, '2019-04-08 18:11:08.052226', '187', '4 pattes - ½, Dos (- 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(237, '2019-04-08 18:11:13.289119', '380', '4 pattes - avant < (.3 - <)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(238, '2019-04-08 18:11:18.325959', '387', '4 pattes - avant <, ( (.2 - <)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(239, '2019-04-08 18:11:22.570232', '207', '4 pattes - avant o (.3 - o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(240, '2019-04-08 18:11:25.398615', '206', '4 pattes - avant o, ( (.2 - o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(241, '2019-04-08 18:11:28.102859', '388', '4 pattes - avant /, ( (.2 - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(242, '2019-04-08 18:11:31.277667', '181', '4 pattes - ventre (.0 0)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(243, '2019-04-08 18:11:35.352357', '182', 'Debout (1. -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(244, '2019-04-08 18:11:38.716804', '183', 'Rebonds 4 pattes (-)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(245, '2019-04-08 18:12:45.783557', '10', '4 pattes (.1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(246, '2019-04-08 18:12:48.827416', '384', 'PO /, 4 pattes (2. - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(247, '2019-04-08 18:12:51.464354', '219', 'PO o, 4 pattes (2. - o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(248, '2019-04-08 18:12:54.754886', '382', 'PO <, 4 pattes (2. - <)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(249, '2019-04-08 18:12:58.126336', '211', 'Plat dos - ½, 4 pattes (- 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(250, '2019-04-08 18:13:03.289694', '443', 'Kaboom avant / + demi, 4 pattes (.2 1 /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(251, '2019-04-08 18:13:07.575686', '441', 'Kaboom avant o + demi, 4 pattes (.2 1 o)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(252, '2019-04-08 18:13:11.098258', '442', 'Kaboom avant < + demi, 4 pattes (.2 1 <)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(253, '2019-04-08 18:13:13.957056', '217', 'Dos - 4 pattes (.2 - /)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(254, '2019-04-08 18:13:17.114817', '178', 'Assis - ½, 4 pattes (- 1)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(255, '2019-04-08 18:13:20.572973', '180', 'Assis - 4 pattes (.1 -)', 2, '[{\"changed\": {\"fields\": [\"is_competitive\"]}}]', 29, 1), -(256, '2019-04-11 18:26:01.987928', '50', '10 - BOT Imposé -10 ans : Assis <', 3, '', 26, 1), -(257, '2019-04-11 18:26:01.989076', '49', '9 - BOT Imposé -10 ans : ½ debout', 3, '', 26, 1), -(258, '2019-04-11 18:26:01.989939', '48', '8 - BOT Imposé -10 ans : Dos', 3, '', 26, 1), -(259, '2019-04-11 18:26:01.990734', '47', '7 - BOT Imposé -10 ans : o', 3, '', 26, 1), -(260, '2019-04-11 18:26:01.991674', '46', '6 - BOT Imposé -10 ans : ½ tour', 3, '', 26, 1), -(261, '2019-04-11 18:36:32.384835', '55', '10 - BOT Imposé -10 ans : ½ debout', 3, '', 26, 1), -(262, '2019-04-11 18:36:32.386376', '54', '9 - BOT Imposé -10 ans : Dos', 3, '', 26, 1), -(263, '2019-04-11 18:36:32.387225', '53', '8 - BOT Imposé -10 ans : o', 3, '', 26, 1), -(264, '2019-04-11 18:36:32.388109', '52', '7 - BOT Imposé -10 ans : ½ tour', 3, '', 26, 1), -(265, '2019-04-11 18:36:32.388887', '51', '6 - BOT Imposé -10 ans : <', 3, '', 26, 1), -(266, '2019-04-11 18:36:32.389614', '45', '5 - BOT Imposé -10 ans : Debout', 3, '', 26, 1), -(267, '2019-04-11 18:36:32.390438', '44', '4 - BOT Imposé -10 ans : Assis', 3, '', 26, 1), -(268, '2019-04-11 18:36:32.391112', '43', '3 - BOT Imposé -10 ans : <', 3, '', 26, 1), -(269, '2019-04-12 06:59:12.834853', '68', '12 - BOT Imposé -10 ans : Debout', 3, '', 26, 1), -(270, '2019-04-12 06:59:12.836037', '64', '11 - BOT Imposé -10 ans : Assis <', 3, '', 26, 1), -(271, '2019-04-12 11:17:58.069658', '182', 'Debout (4p) (1. -)', 2, '[{\"changed\": {\"fields\": [\"shortLabel\"]}}]', 29, 1), -(272, '2019-04-12 11:18:27.966400', '73', '2 - BOT F4 : Debout', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(273, '2019-04-12 11:18:53.228544', '42', '2 - BOT Imposé -10 ans : Debout', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(274, '2019-04-13 10:26:17.751235', '1', 'Message object (1)', 1, '[{\"added\": {}}]', 37, 1), -(275, '2019-04-13 10:33:08.754333', '2', 'Message object (2)', 1, '[{\"added\": {}}]', 37, 1), -(276, '2019-04-14 14:27:45.076257', '1', 'Message object (1)', 3, '', 37, 1), -(277, '2019-04-14 14:55:23.700729', '2', 'Message object (2)', 2, '[{\"changed\": {\"fields\": [\"is_read\"]}}]', 37, 1), -(278, '2019-04-15 08:02:43.490510', '2', 'Message object (2)', 2, '[{\"changed\": {\"fields\": [\"is_read\"]}}]', 37, 1), -(279, '2019-04-21 10:09:30.927117', '2', 'Portugal (PO)', 1, '[{\"added\": {}}]', 12, 1), -(280, '2019-04-21 12:24:46.834847', '3', 'Championnat Flamand (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]', 15, 1), -(281, '2019-04-21 12:26:44.582759', '2', 'Championnat FfG (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]', 15, 1), -(282, '2019-04-22 09:30:57.472392', '141', 'Half in trif < (12. 1-1 <)', 2, '[{\"changed\": {\"fields\": [\"ageGirl\", \"prerequisite\"]}}]', 29, 1), -(283, '2019-04-22 09:35:25.283506', '513', 'Prog Half In Triffis o (11. 1-- o)', 1, '[{\"added\": {}}]', 29, 1), -(284, '2019-04-22 09:38:00.110993', '514', 'Prog Half In Triffis < (11. 1-- <)', 1, '[{\"added\": {}}]', 29, 1), -(285, '2019-04-22 19:07:48.420291', '2', 'Ten Gaerde (Dilbeek)', 2, '[{\"changed\": {\"fields\": [\"nbkm\", \"timing\"]}}]', 13, 1), -(286, '2019-04-27 08:05:03.298185', '5', 'Championnat de belgique (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]', 15, 1), -(287, '2019-04-27 08:05:21.572684', '5', 'Championnat de belgique (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"datebegin\"]}}]', 15, 1), -(288, '2019-04-27 08:05:31.678835', '2', 'Championnat FfG (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]', 15, 1), -(289, '2019-04-27 08:06:14.377560', '5', 'Championnat de Belgique (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"name\"]}}]', 15, 1), -(290, '2019-04-27 08:06:31.651305', '3', 'Championnat Flamand (à Lillois-Witterzée)', 2, '[{\"changed\": {\"fields\": [\"datebegin\"]}}]', 15, 1), -(291, '2019-04-30 13:42:04.310035', '1', '2018-19', 2, '[]', 20, 1), -(292, '2019-05-02 13:24:58.441971', '4', 'Stage (Stg)', 1, '[{\"added\": {}}]', 16, 1), -(293, '2019-05-02 20:16:40.797152', '3', 'Raschke, Sebastian - 46.600', 3, '', 33, 1), -(294, '2019-05-07 13:27:42.618610', '423', '4 pattes - Culbute, assis (.3 - o)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(295, '2019-05-07 13:27:53.252778', '424', '4 pattes - Culbute, dos (.2 - c)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(296, '2019-05-07 13:27:57.853834', '380', '4 pattes - avant < (.3 - <)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(297, '2019-05-07 13:28:07.123825', '387', '4 pattes - avant <, ( (.2 - <)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(298, '2019-05-07 13:28:20.168011', '99', '2 ¾ avant < (.11 --- <)', 2, '[{\"changed\": {\"fields\": [\"ageGirl\"]}}]', 29, 1), -(299, '2019-05-07 13:29:29.096506', '207', '4 pattes - avant o (.3 - o)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(300, '2019-05-07 13:29:33.311690', '388', '4 pattes - avant /, ( (.2 - /)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(301, '2019-05-07 13:29:40.911258', '227', 'Arrière / + ½ (4. 1 /)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(302, '2019-05-07 13:30:10.070443', '331', 'Assis - carper + ½, plat dos (.1 1 <)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(303, '2019-05-07 13:30:19.307386', '337', 'Assis - carper + vrille et ½, plat dos (.1 3 <)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(304, '2019-05-07 13:30:23.317752', '334', 'Assis - carper + vrille, ventre (.1 2 <)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(305, '2019-05-07 13:30:34.773627', '332', 'Assis - ½, plat dos (.1 1 /)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(306, '2019-05-07 13:30:40.911343', '338', 'Assis - vrille et ½, plat dos (1. 3 /)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(307, '2019-05-07 13:30:48.332124', '324', 'Assis - vrille et ½, ventre (.1 3 /)', 2, '[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]', 29, 1), -(308, '2019-05-07 16:18:48.533784', '207', '4 pattes - avant o (.3 - o)', 2, '[]', 29, 1), -(309, '2019-05-09 12:43:26.679691', '5', 'Salhi, Safwane', 2, '[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]', 9, 1), -(310, '2019-05-09 12:56:48.094711', '5', 'Salhi, Safwane', 2, '[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]', 9, 1), -(311, '2019-05-09 12:59:55.335621', '179', '4 - Safwane\'s L2 : HIHO o', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(312, '2019-05-09 13:00:00.043611', '180', '5 - Safwane\'s L2 : Rudy out o', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(313, '2019-05-09 13:00:04.060466', '182', '7 - Safwane\'s L2 : 2 Back <', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(314, '2019-05-09 13:00:07.852379', '183', '8 - Safwane\'s L2 : Barani /', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(315, '2019-05-09 13:00:24.187686', '182', '6 - Safwane\'s L2 : 2 Back <', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(316, '2019-05-09 13:00:26.892465', '183', '7 - Safwane\'s L2 : Barani /', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(317, '2019-05-09 13:00:28.635841', '184', '8 - Safwane\'s L2 : 2 Back o', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(318, '2019-05-09 13:00:30.945293', '185', '9 - Safwane\'s L2 : Out <', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(319, '2019-05-09 13:00:33.200384', '186', '10 - Safwane\'s L2 : FIFO /', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 26, 1), -(320, '2019-05-09 13:01:06.555629', '186', '10 - Safwane\'s L2 : 2 Back /', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(321, '2019-05-09 13:02:04.376509', '8', 'Salhi, Safwane - 2 : Safwane\'s L2 (Safwane\'s L2)', 3, '', 36, 1), -(322, '2019-05-10 07:27:10.476505', '366', 'Debout (genoux) (-)', 2, '[{\"changed\": {\"fields\": [\"shortLabel\"]}}]', 29, 1), -(323, '2019-05-13 15:19:28.235621', '12', 'Jaquet, Martin', 1, '[{\"added\": {}}]', 9, 1), -(324, '2019-05-17 06:03:54.998370', '294', '8 - Rivoal 8 : Avant <', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(325, '2019-05-17 06:14:45.979413', '525', 'Rivoal 09 (Rivoal 09)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(326, '2019-05-17 06:14:48.976005', '524', 'Rivoal 08 (Rivoal 08)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(327, '2019-05-17 06:14:52.161091', '523', 'Rivoal 07 (Rivoal 07)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(328, '2019-05-17 06:14:54.664058', '520', 'Rivoal 05 (Rivoal 05)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(329, '2019-05-17 06:14:57.377010', '517', 'Rivoal 02 (Rivoal 02)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(330, '2019-05-17 06:14:59.543920', '522', 'Rivoal 06 (Rivoal 06)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(331, '2019-05-17 06:15:01.584902', '519', 'Rivoal 04 (Rivoal 04)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(332, '2019-05-17 06:15:04.965989', '518', 'Rivoal 03 (Rivoal 03)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(333, '2019-05-17 06:15:08.856178', '521', 'Rivoal 01 (Rivoal 01)', 2, '[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]', 28, 1), -(334, '2019-05-17 09:41:15.159382', '371', '3 - Rivoal 14 : Arrière <', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(335, '2019-05-17 09:41:20.296814', '372', '4 - Rivoal 14 : Barani /', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(336, '2019-05-17 09:41:24.112818', '373', '5 - Rivoal 14 : Full', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(337, '2019-05-17 09:41:28.964084', '374', '6 - Rivoal 14 : Barani <', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(338, '2019-05-17 09:41:33.438606', '375', '7 - Rivoal 14 : Arrière o', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(339, '2019-05-17 09:41:39.403202', '376', '8 - Rivoal 14 : Barani o', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(340, '2019-05-17 09:41:43.079332', '377', '9 - Rivoal 14 : Arrière /', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(341, '2019-05-17 09:41:50.549838', '378', '10 - Rivoal 14 : Out o', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(342, '2019-05-17 09:42:40.800045', '370', '2 - Rivoal 14 : Cody o', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(343, '2019-05-17 09:42:43.953019', '369', '1 - Rivoal 14 : Arrière /', 2, '[{\"changed\": {\"fields\": [\"routine\"]}}]', 26, 1), -(344, '2019-05-17 09:43:26.196626', '369', '1 - Rivoal 14 : ¾ Arrière /', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(345, '2019-05-17 10:57:03.551522', '459', '9 - Rivoal 22 : 1 ¾ o', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(346, '2019-05-17 11:10:36.877832', '515', '5 - Rivoal 28 : Out <', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(347, '2019-05-17 11:33:49.510691', '543', '1 - Rivoal 36 : Triffis <', 2, '[{\"changed\": {\"fields\": [\"skill\"]}}]', 26, 1), -(348, '2019-05-21 09:41:39.654025', '1', 'Granda Martinez, Noelia', 2, '[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]', 9, 1), -(349, '2019-05-21 12:03:09.354893', '17', 'GymFed PV1 2018 (à Sint-Gillis-Bij-Dendermonde)', 3, '', 15, 1), -(350, '2019-05-23 07:29:30.657915', '553', 'Miller < (8. 33 <)', 1, '[{\"added\": {}}]', 29, 1), -(351, '2019-05-25 05:27:49.888951', '2', 'Lundi (17:00 à 19:00)', 2, '[{\"changed\": {\"fields\": [\"gymnasts\"]}}]', 14, 1), -(352, '2019-05-25 05:29:19.957098', '3', 'Mercredi (17:00 à 19:00)', 2, '[{\"changed\": {\"fields\": [\"gymnasts\"]}}]', 14, 1), -(353, '2019-05-25 05:29:33.612014', '4', 'Vendredi (17:15 à 19:15)', 2, '[{\"changed\": {\"fields\": [\"gymnasts\"]}}]', 14, 1), -(354, '2019-05-25 05:30:17.873334', '5', 'Samedi (19:00 à 21:30)', 2, '[{\"changed\": {\"fields\": [\"gymnasts\"]}}]', 14, 1), -(355, '2019-05-25 05:30:30.728802', '5', 'Samedi (19:00 à 21:30)', 2, '[{\"changed\": {\"fields\": [\"gymnasts\"]}}]', 14, 1), -(356, '2019-05-25 14:35:20.519598', '1', 'Samedi (10:00 à 12:00)', 2, '[{\"changed\": {\"fields\": [\"gymnasts\"]}}]', 14, 1), -(357, '2019-05-30 20:59:24.032124', '276', 'RBO < (.5 3 <)', 2, '[{\"changed\": {\"fields\": [\"difficulty\"]}}]', 29, 1), -(358, '2019-05-30 20:59:31.677600', '161', 'RBO / (.5 3 /)', 2, '[{\"changed\": {\"fields\": [\"difficulty\"]}}]', 29, 1), -(359, '2019-06-05 11:29:04.403771', '1', 'Event_Participation object (1)', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 39, 1), -(360, '2019-06-05 11:29:08.209961', '2', 'Event_Participation object (2)', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 39, 1), -(361, '2019-06-05 11:29:11.254482', '3', 'Event_Participation object (3)', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 39, 1), -(362, '2019-06-05 11:29:14.684353', '4', 'Event_Participation object (4)', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 39, 1), -(363, '2019-06-05 11:29:18.068418', '5', 'Event_Participation object (5)', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 39, 1), -(364, '2019-06-05 11:29:22.141290', '5', 'Event_Participation object (5)', 2, '[{\"changed\": {\"fields\": [\"rank\"]}}]', 39, 1), -(365, '2019-07-02 16:34:37.424323', '10', 'Raschke, Sebastian - 1 : Sebastian\'s L1 (Sebastian\'s L1)', 3, '', 36, 1), -(366, '2019-07-02 16:34:37.427187', '9', 'Raschke, Sebastian - 1 : Sebastian\'s L1 (Sebastian\'s L1)', 3, '', 36, 1), -(367, '2019-07-02 16:37:03.624800', '11', 'Raschke, Sebastian', 2, '[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]', 9, 1), -(368, '2021-05-14 15:52:00.048602', '4', 'felix_vanye', 1, '[{\"added\": {}}]', 5, 1), -(369, '2021-05-14 15:52:29.932317', '5', 'lola_vanmol', 1, '[{\"added\": {}}]', 5, 1), -(370, '2021-05-14 15:53:13.487890', '6', 'safwane_salhi', 1, '[{\"added\": {}}]', 5, 1), -(371, '2021-05-14 15:53:39.595475', '7', 'romain_scokart', 1, '[{\"added\": {}}]', 5, 1), -(372, '2021-05-14 15:53:59.901878', '8', 'sebastian_raschke', 1, '[{\"added\": {}}]', 5, 1), -(373, '2021-05-14 15:54:18.742618', '9', 'roswitha_raschke', 1, '[{\"added\": {}}]', 5, 1), -(374, '2021-05-14 15:54:32.925715', '10', 'lucas_pesesse', 1, '[{\"added\": {}}]', 5, 1), -(375, '2021-05-14 15:54:47.353731', '11', 'pauline_lefevre', 1, '[{\"added\": {}}]', 5, 1), -(376, '2021-05-14 15:55:03.268631', '12', 'martin_jacquet', 1, '[{\"added\": {}}]', 5, 1), -(377, '2021-05-14 15:55:17.846841', '13', 'noelia_grandamartinez', 1, '[{\"added\": {}}]', 5, 1), -(378, '2021-05-14 15:55:34.427274', '14', 'marine_geirnart', 1, '[{\"added\": {}}]', 5, 1), -(379, '2021-05-14 15:56:08.287436', '4', 'felix_vanye', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(380, '2021-05-14 15:56:35.061415', '8', 'sebastian_raschke', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(381, '2021-05-14 15:56:42.993166', '11', 'pauline_lefevre', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(382, '2021-05-14 15:56:49.361491', '7', 'romain_scokart', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(383, '2021-05-14 15:56:57.734071', '9', 'roswitha_raschke', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(384, '2021-05-14 15:57:03.935964', '6', 'safwane_salhi', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(385, '2021-05-14 15:57:12.759136', '13', 'noelia_grandamartinez', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(386, '2021-05-14 15:57:18.990483', '12', 'martin_jacquet', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(387, '2021-05-14 15:57:26.671492', '14', 'marine_geirnart', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(388, '2021-05-14 15:57:32.653788', '10', 'lucas_pesesse', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(389, '2021-05-14 15:57:39.134482', '5', 'lola_vanmol', 2, '[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]', 5, 1), -(390, '2021-05-14 16:03:14.389855', '13', 'noelia_grandamartinez', 2, '[{\"changed\": {\"fields\": [\"Email address\"]}}]', 5, 1), -(391, '2021-05-14 16:03:29.766215', '7', 'romain_scokart', 2, '[{\"changed\": {\"fields\": [\"Email address\"]}}]', 5, 1), -(392, '2021-05-14 16:03:41.428129', '9', 'roswitha_raschke', 2, '[{\"changed\": {\"fields\": [\"Email address\"]}}]', 5, 1), -(393, '2021-05-14 16:03:52.789633', '6', 'safwane_salhi', 2, '[{\"changed\": {\"fields\": [\"Email address\"]}}]', 5, 1), -(394, '2021-05-14 16:04:13.290407', '14', 'marine_geirnart', 2, '[{\"changed\": {\"fields\": [\"Email address\"]}}]', 5, 1), -(395, '2021-05-14 16:04:24.381626', '8', 'sebastian_raschke', 2, '[{\"changed\": {\"fields\": [\"Email address\"]}}]', 5, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `django_content_type` --- - -CREATE TABLE `django_content_type` ( - `id` int NOT NULL, - `app_label` varchar(100) NOT NULL, - `model` varchar(100) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `django_content_type` --- - -INSERT INTO `django_content_type` (`id`, `app_label`, `model`) VALUES -(2, 'admin', 'logentry'), -(4, 'auth', 'group'), -(3, 'auth', 'permission'), -(5, 'auth', 'user'), -(37, 'communication', 'message'), -(30, 'competition', 'competition'), -(31, 'competition', 'division'), -(32, 'competition', 'level'), -(33, 'competition', 'point'), -(1, 'contenttypes', 'contenttype'), -(11, 'location', 'club'), -(12, 'location', 'country'), -(13, 'location', 'place'), -(24, 'objective', 'chrono'), -(25, 'objective', 'educative'), -(38, 'objective', 'evaluation'), -(28, 'objective', 'routine'), -(26, 'objective', 'routine_skill'), -(29, 'objective', 'skill'), -(27, 'objective', 'touchposition'), -(7, 'people', 'accident'), -(8, 'people', 'candorelation'), -(9, 'people', 'gymnast'), -(36, 'people', 'gymnasthasroutine'), -(35, 'people', 'hasroutine'), -(10, 'people', 'todorelation'), -(14, 'planning', 'course'), -(15, 'planning', 'event'), -(16, 'planning', 'eventtype'), -(39, 'planning', 'event_participation'), -(17, 'planning', 'group'), -(18, 'planning', 'planningline'), -(19, 'planning', 'round'), -(20, 'planning', 'season'), -(21, 'planning', 'subgroup'), -(22, 'planning', 'training'), -(23, 'planning', 'unavailability'), -(34, 'profile', 'profile'), -(6, 'sessions', 'session'); - --- -------------------------------------------------------- - --- --- Structure de la table `django_migrations` --- - -CREATE TABLE `django_migrations` ( - `id` int NOT NULL, - `app` varchar(255) NOT NULL, - `name` varchar(255) NOT NULL, - `applied` datetime(6) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `django_migrations` --- - -INSERT INTO `django_migrations` (`id`, `app`, `name`, `applied`) VALUES -(1, 'contenttypes', '0001_initial', '2019-03-16 16:59:00.657450'), -(2, 'auth', '0001_initial', '2019-03-16 16:59:00.914835'), -(3, 'admin', '0001_initial', '2019-03-16 16:59:00.967445'), -(4, 'admin', '0002_logentry_remove_auto_add', '2019-03-16 16:59:00.975539'), -(5, 'admin', '0003_logentry_add_action_flag_choices', '2019-03-16 16:59:00.983472'), -(6, 'contenttypes', '0002_remove_content_type_name', '2019-03-16 16:59:01.030281'), -(7, 'auth', '0002_alter_permission_name_max_length', '2019-03-16 16:59:01.049069'), -(8, 'auth', '0003_alter_user_email_max_length', '2019-03-16 16:59:01.071616'), -(9, 'auth', '0004_alter_user_username_opts', '2019-03-16 16:59:01.080350'), -(10, 'auth', '0005_alter_user_last_login_null', '2019-03-16 16:59:01.102376'), -(11, 'auth', '0006_require_contenttypes_0002', '2019-03-16 16:59:01.104115'), -(12, 'auth', '0007_alter_validators_add_error_messages', '2019-03-16 16:59:01.113151'), -(13, 'auth', '0008_alter_user_username_max_length', '2019-03-16 16:59:01.136096'), -(14, 'auth', '0009_alter_user_last_name_max_length', '2019-03-16 16:59:01.157712'), -(15, 'objective', '0001_initial', '2019-03-16 16:59:01.365576'), -(16, 'people', '0001_initial', '2019-03-16 16:59:01.746510'), -(17, 'location', '0001_initial', '2019-03-16 16:59:01.865134'), -(18, 'planning', '0001_initial', '2019-03-16 16:59:02.613955'), -(19, 'competition', '0001_initial', '2019-03-16 16:59:02.673549'), -(20, 'competition', '0002_auto_20190316_1658', '2019-03-16 16:59:02.853924'), -(21, 'objective', '0002_auto_20190316_1658', '2019-03-16 16:59:03.288224'), -(22, 'sessions', '0001_initial', '2019-03-16 16:59:03.319048'), -(23, 'planning', '0002_course_season', '2019-03-16 18:43:04.958510'), -(24, 'planning', '0003_auto_20190316_1857', '2019-03-16 18:57:05.720058'), -(25, 'planning', '0004_auto_20190317_0722', '2019-03-17 07:22:22.139534'), -(26, 'people', '0002_gymnast_club', '2019-03-17 12:38:45.360181'), -(27, 'objective', '0003_auto_20190318_0855', '2019-03-18 08:55:53.887858'), -(28, 'planning', '0005_auto_20190318_0855', '2019-03-18 08:55:54.016288'), -(29, 'profile', '0001_initial', '2019-03-20 09:09:57.861088'), -(30, 'planning', '0006_auto_20190321_1739', '2019-03-21 17:39:42.664542'), -(31, 'profile', '0002_auto_20190321_1739', '2019-03-21 17:39:42.766676'), -(32, 'objective', '0004_auto_20190330_0920', '2019-03-30 09:20:36.586282'), -(33, 'people', '0003_auto_20190330_0920', '2019-03-30 09:20:36.740542'), -(34, 'profile', '0003_auto_20190330_0920', '2019-03-30 09:20:36.757192'), -(35, 'people', '0004_auto_20190330_0932', '2019-03-30 09:34:08.721075'), -(36, 'objective', '0005_auto_20190330_1652', '2019-03-30 16:53:40.505489'), -(37, 'people', '0005_auto_20190330_1652', '2019-03-30 16:53:40.725061'), -(38, 'people', '0006_auto_20190331_0735', '2019-03-31 07:35:11.567879'), -(39, 'objective', '0006_auto_20190401_1755', '2019-04-01 17:55:44.194410'), -(40, 'people', '0007_auto_20190401_1755', '2019-04-01 17:55:44.596862'), -(41, 'objective', '0007_auto_20190402_0820', '2019-04-02 08:20:59.124672'), -(42, 'people', '0008_auto_20190402_0820', '2019-04-02 08:20:59.232894'), -(43, 'objective', '0008_auto_20190402_0830', '2019-04-02 08:30:48.035071'), -(44, 'people', '0009_auto_20190402_1215', '2019-04-02 12:15:20.463250'), -(45, 'people', '0010_auto_20190402_1356', '2019-04-02 13:56:13.230389'), -(46, 'planning', '0007_round_is_important', '2019-04-02 14:23:47.944401'), -(47, 'competition', '0003_auto_20190402_2026', '2019-04-02 20:26:50.050381'), -(48, 'objective', '0009_auto_20190402_2026', '2019-04-02 20:26:50.094729'), -(49, 'competition', '0004_auto_20190402_2032', '2019-04-02 20:32:39.945227'), -(50, 'location', '0002_auto_20190402_2032', '2019-04-02 20:32:40.049055'), -(51, 'objective', '0010_auto_20190402_2032', '2019-04-02 20:32:40.388637'), -(52, 'people', '0011_auto_20190402_2032', '2019-04-02 20:32:40.498361'), -(53, 'planning', '0008_auto_20190402_2032', '2019-04-02 20:32:40.725722'), -(54, 'profile', '0004_auto_20190402_2032', '2019-04-02 20:32:40.791402'), -(55, 'competition', '0005_auto_20190402_2035', '2019-04-02 20:35:43.114517'), -(56, 'location', '0003_auto_20190402_2035', '2019-04-02 20:35:43.134526'), -(57, 'objective', '0011_auto_20190402_2035', '2019-04-02 20:35:43.436988'), -(58, 'people', '0012_auto_20190402_2035', '2019-04-02 20:35:43.549872'), -(59, 'planning', '0009_auto_20190402_2035', '2019-04-02 20:35:43.767073'), -(60, 'profile', '0005_auto_20190402_2035', '2019-04-02 20:35:43.825101'), -(61, 'objective', '0012_auto_20190407_1837', '2019-04-07 18:37:09.898639'), -(62, 'profile', '0006_profile_picture', '2019-04-12 19:50:43.681762'), -(63, 'communication', '0001_initial', '2019-04-13 10:18:15.101055'), -(64, 'profile', '0007_auto_20190413_1014', '2019-04-13 10:18:15.118748'), -(65, 'communication', '0002_auto_20190413_1028', '2019-04-13 10:28:23.217520'), -(66, 'objective', '0013_auto_20190429_0708', '2019-04-29 07:09:04.298754'), -(67, 'competition', '0006_auto_20190429_1125', '2019-04-29 11:26:05.675460'), -(68, 'profile', '0008_profile_is_sidebar_minified', '2019-05-02 16:10:33.952398'), -(69, 'objective', '0014_evaluation', '2019-05-08 11:43:38.664849'), -(70, 'people', '0013_auto_20190509_0805', '2019-05-09 08:05:24.252149'), -(71, 'planning', '0010_auto_20190512_1401', '2019-05-12 14:01:32.597519'), -(72, 'planning', '0011_auto_20190512_1428', '2019-05-12 14:28:24.811319'), -(73, 'planning', '0012_round_coachid', '2019-05-13 07:20:20.492491'), -(74, 'competition', '0007_auto_20190524_1211', '2019-05-24 12:29:19.932493'), -(75, 'objective', '0015_auto_20190524_1211', '2019-05-24 12:29:19.953843'), -(76, 'planning', '0013_auto_20190525_0524', '2019-05-25 05:24:43.955171'), -(77, 'planning', '0014_auto_20190525_0526', '2019-05-25 05:26:24.524659'), -(78, 'planning', '0015_auto_20190525_0606', '2019-05-25 06:06:54.778111'), -(79, 'planning', '0016_auto_20190525_1453', '2019-05-25 14:54:02.683925'), -(80, 'planning', '0017_auto_20190525_1544', '2019-05-25 15:44:20.841301'), -(81, 'planning', '0018_remove_event_gymnasts', '2019-05-29 06:43:37.113007'), -(82, 'planning', '0019_event_participation', '2019-05-29 06:44:44.597093'), -(83, 'planning', '0020_event_gymnasts', '2019-05-29 06:48:26.265924'), -(84, 'auth', '0010_alter_group_name_max_length', '2021-05-13 14:18:17.889891'), -(85, 'auth', '0011_update_proxy_permissions', '2021-05-13 14:18:17.893986'), -(86, 'auth', '0012_alter_user_first_name_max_length', '2021-05-13 14:18:17.969824'), -(87, 'communication', '0003_auto_20210513_1058', '2021-05-13 14:18:18.716037'), -(88, 'objective', '0016_rename_information_educative_content', '2021-05-13 14:18:18.774588'), -(89, 'people', '0014_auto_20210513_1058', '2021-05-13 14:18:18.874018'), -(90, 'planning', '0021_auto_20210513_1058', '2021-05-13 14:18:19.047230'), -(91, 'people', '0015_auto_20210514_1619', '2021-05-14 16:19:54.774613'), -(92, 'people', '0016_auto_20210515_0800', '2021-05-15 08:00:38.300185'); - --- -------------------------------------------------------- - --- --- Structure de la table `django_session` --- - -CREATE TABLE `django_session` ( - `session_key` varchar(40) NOT NULL, - `session_data` longtext NOT NULL, - `expire_date` datetime(6) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `django_session` --- - -INSERT INTO `django_session` (`session_key`, `session_data`, `expire_date`) VALUES -('23paed2lm4tjf7nqq1fvqjxmu0sr2t11', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-06-04 17:54:02.740231'), -('6op83nravuhc2jzigo96af35xvop83kb', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-06-08 18:44:23.494892'), -('6t07699f0drrljsc8ryi13bvnxcqmi4t', 'MjNhYjJiZjQwYjVmM2IyYjU4ODgwYjg4MThhM2QxOTE1Y2MxZjQ3YTp7fQ==', '2019-04-07 14:39:21.947805'), -('82mu8wir4cr41xqdvmtwq6r8l2j4iorp', 'YzFkNzExYzExYTBiOTU0YzExZDZjYmVhZjQxMGMyMmI5ZDY5YTIzMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoiMSIsInRlbXBsYXRlIjowLCJzaWRlYmFyIjozLCJjbHViaWQiOm51bGx9', '2019-04-08 07:46:29.604032'), -('ayk18p51v90021i0pd1ip2tgllds0cks', 'MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==', '2019-04-16 14:40:10.608516'), -('bij6mikfracjnh93p9cko574fd25gh5p', 'NTc1MTA0NTg0MTJlYTg2OTFmZjM4OTE5NTlhMjZiZGYyZmJkOTAyYjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-07-16 16:44:15.299094'), -('civtk0g6oeg5cn4ilr8ps5th8ju8yfgu', 'MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==', '2019-05-07 07:33:03.984331'), -('dh8b9238kvc8o2ite70psu7ipmts6nrx', 'MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==', '2019-05-05 14:32:59.868444'), -('fswheipsozsl377f4aiozjf6zqhj18sp', 'MjNhYjJiZjQwYjVmM2IyYjU4ODgwYjg4MThhM2QxOTE1Y2MxZjQ3YTp7fQ==', '2019-04-07 14:38:49.818435'), -('j0pum843f5301s0p8lc22wdiln94nuu9', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-06-24 16:48:54.109843'), -('ja2rwvwyoblryemmt8nehgdpuo4ysphx', '.eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1lhCBn:Lvj-vjeOGAjm0OrJFZS3HP_pMf08OQUd5HNikC1u3MA', '2021-05-27 14:19:47.495453'), -('jwl4q1rodgkywh9cky07l02lcie2fvfr', 'MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==', '2019-05-06 15:10:46.298768'), -('kouvkyowlwjngjz5i7twuud1s50f6mv7', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-06-19 07:35:52.293996'), -('kr02sxsqff3noe58cm9iw7ys7mwwr498', 'NjgwMmNkODRkZjc3MWIwOGUzNmZhZmMwNjA0N2U5NzBiZDY1ZDg4MTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwidGVtcGxhdGUiOjAsInNpZGViYXIiOjMsImNsdWJpZCI6bnVsbH0=', '2019-04-07 17:27:03.695355'), -('qjhbaubem5k812l44vr5xcr1nsdf351i', 'M2NkNDYyOTJhMDRkMzY3YWZmYzQyMGMwMzE2NDA5OTU0YTZhNzIxOTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoiMSIsInRlbXBsYXRlIjowLCJzaWRlYmFyIjo0LCJjbHViaWQiOm51bGx9', '2019-04-10 08:30:38.010451'), -('qqg7cnsbtie0ts9xjl5xto005mmqxu7h', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-05-29 19:03:34.966988'), -('t617fv72solfdrt7svjdt7m6o9i809h9', 'ZDRhNmU4NGVlMWNmMmIzMzY3YmVlYjZkNTEyYThmMjBhOTI3YTliNzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsLCJpc19zaWRlYmFyX21pbmlmaWVkIjp0cnVlfQ==', '2019-05-27 15:26:56.991624'), -('u21qz3oehhjpz9wrvopabrtfu11eugrj', 'NTZhMDEzZTFhNzg4ZjUzOWJjNTA3MThlMGQxMjQ5ZmUzOTIzN2I4NDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==', '2019-04-28 16:50:11.403552'), -('u2vzobd0c56za64xvtz6uhrr7mytln39', 'NDRjYzNlYmZmMDc2YWMxNDUzYTUwMmE1NmQ1MzJmMWJlZTgyM2ZjNjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6MywiY2x1YmlkIjpudWxsfQ==', '2019-04-09 19:51:33.058565'), -('wpr1lztsf4ipc3jh4adv8tvm2bkwli04', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-06-04 20:12:35.361069'), -('xmubh0d5qev35w6p2dyskqhxmgfo8ndf', 'OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==', '2019-06-04 20:11:26.805029'), -('xncx1jdqwhwz2bt8fpvk6hu7nyqhk0s5', 'NTZhMDEzZTFhNzg4ZjUzOWJjNTA3MThlMGQxMjQ5ZmUzOTIzN2I4NDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==', '2019-04-22 18:17:21.821640'); - --- -------------------------------------------------------- - --- --- Structure de la table `location_club` --- - -CREATE TABLE `location_club` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(4) NOT NULL, - `active` tinyint(1) NOT NULL, - `place_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `location_club` --- - -INSERT INTO `location_club` (`id`, `name`, `acronym`, `active`, `place_id`) VALUES -(1, 'Flying Acrobatics Trampoline Club', 'FATC', 1, 1), -(2, 'Ten Gaerde', 'TG', 1, 2); - --- -------------------------------------------------------- - --- --- Structure de la table `location_country` --- - -CREATE TABLE `location_country` ( - `id` int NOT NULL, - `nameus` varchar(255) NOT NULL, - `namefr` varchar(255) NOT NULL, - `nationality` varchar(255) NOT NULL, - `iso2` varchar(2) NOT NULL, - `iso3` varchar(3) NOT NULL, - `isonum` smallint UNSIGNED NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `location_country` --- - -INSERT INTO `location_country` (`id`, `nameus`, `namefr`, `nationality`, `iso2`, `iso3`, `isonum`) VALUES -(1, 'Belgium', 'Belgique', 'Belge', 'BE', 'BEL', 56), -(2, 'Portugal', 'Portugal', 'Portugese', 'PT', 'PRT', 620), -(3, 'Kosovo', 'Kosovo', 'Kosovar', 'XK', 'XKX', 0), -(4, 'Afghanistan', 'Afghanistan', 'Afghane', 'AF', 'AFG', 4), -(5, 'Albania', 'Albanie', 'Albanaise', 'AL', 'ALB', 8), -(6, 'Antarctica', 'Antartique', 'Antartique', 'AQ', 'ATA', 10), -(7, 'Algeria', 'Algérie', 'Algérienne', 'DZ', 'DZA', 12), -(8, 'American Samoa', 'Samoa Américaines', 'Samoane', 'AS', 'ASM', 16), -(9, 'Andorra', 'Andorre', 'Andorrane', 'AD', 'AND', 20), -(10, 'Angola', 'Angola', 'Angolaise', 'AO', 'AGO', 24), -(11, 'Antigua and Barbuda', 'Antigua-et-Barbuda', 'Antiguayenne', 'AG', 'ATG', 28), -(12, 'Azerbaijan', 'Azerbaïdjan', 'Azérie', 'AZ', 'AZE', 31), -(13, 'Argentina', 'Argentine', 'Argentine', 'AR', 'ARG', 32), -(14, 'Australia', 'Australie', 'Australlienne', 'AU', 'AUS', 36), -(15, 'Austria', 'Autriche', 'Autrichienne', 'AT', 'AUT', 40), -(16, 'Bahamas', 'Bahamas', 'Bahaméen', 'BS', 'BHS', 44), -(17, 'Bahrain', 'Bahreïn', 'Bahreïnienne', 'BH', 'BHR', 48), -(18, 'Bangladesh', 'Bangladesh', 'Bangladeshie', 'BD', 'BGD', 50), -(19, 'Armenia', 'Arménie', 'Arménienne', 'AM', 'ARM', 51), -(20, 'Barbados', 'Barbade', 'Barbadien', 'BB', 'BRB', 52), -(21, 'Bermuda', 'Bermudes', 'Bermudienne', 'BM', 'BMU', 60), -(22, 'Bhutan', 'Bhoutan', 'Bhoutanaise', 'BT', 'BTN', 64), -(23, 'Bolivia', 'Bolivie', 'Bolivienne', 'BO', 'BOL', 68), -(24, 'Bosnia and Herzegovina', 'Bosnie-Herzégovine', 'Bosnienne', 'BA', 'BIH', 70), -(25, 'Botswana', 'Botswana', 'Botswanaise', 'BW', 'BWA', 72), -(26, 'Bouvet Island', 'Ile Bouvet', 'Norvégienne', 'BV', 'BVT', 74), -(27, 'Brazil', 'Brésil', 'Brésilienne', 'BR', 'BRA', 76), -(28, 'Belize', 'Belize', 'Bélizienne', 'BZ', 'BLZ', 84), -(29, 'British Indian Ocean Territory', 'Territoire Britannique de l\'Océan Indien', 'Anglaise', 'IO', 'IOT', 86), -(30, 'Solomon Islands', 'Iles Salomon', 'Salomonienne', 'SB', 'SLB', 90), -(31, 'British Virgin Islands', 'Iles Vierges Britannique', 'Anglaise', 'VG', 'VGB', 92), -(32, 'Brunei', 'Brunei', 'Brunéienne', 'BN', 'BRN', 96), -(33, 'Bulgaria', 'Bulgarie', 'Bulgare', 'BG', 'BGR', 100), -(34, 'Myanmar [Burma]', 'Myanmar', 'Myanmaraise', 'MM', 'MMR', 104), -(35, 'Burundi', 'Burundi', 'Burundaise', 'BI', 'BDI', 108), -(36, 'Belarus', 'Biélorussie', 'Biélorusse', 'BY', 'BLR', 112), -(37, 'Cambodia', 'Cambodge', 'Cambodgienne', 'KH', 'KHM', 116), -(38, 'Cameroon', 'Cameroun', 'Camerounaise', 'CM', 'CMR', 120), -(39, 'Canada', 'Canada', 'Canadienne', 'CA', 'CAN', 124), -(40, 'Cape Verde', 'Cap Vert', 'Cap-Verdienne', 'CV', 'CPV', 132), -(41, 'Cayman Islands', 'Iles Caïmans', 'Anglaise', 'KY', 'CYM', 136), -(42, 'Central African Republic', 'République d\'Afrique Centrale', 'Centrafricaine', 'CF', 'CAF', 140), -(43, 'Sri Lanka', 'Sri Lnaka', 'Sri-Lankaise', 'LK', 'LKA', 144), -(44, 'Chad', 'Chad', 'Chadienne', 'TD', 'TCD', 148), -(45, 'Chile', 'Chili', 'Chilienne', 'CL', 'CHL', 152), -(46, 'China', 'Chine', 'Chinoise', 'CN', 'CHN', 156), -(47, 'Taiwan', 'Taiwan', 'Taïwanaise', 'TW', 'TWN', 158), -(48, 'Christmas Island', 'Ile Christmas', 'Australienne', 'CX', 'CXR', 162), -(49, 'Cocos [Keeling] Islands', 'Iles Cocos', 'Australienne', 'CC', 'CCK', 166), -(50, 'Colombia', 'Colombie', 'Colombienne', 'CO', 'COL', 170), -(51, 'Comoros', 'Comores', 'Comorienne', 'KM', 'COM', 174), -(52, 'Mayotte', 'Mayotte', 'Mahoraise', 'YT', 'MYT', 175), -(53, 'Republic of the Congo', 'République du Congo', 'Congolaise', 'CG', 'COG', 178), -(54, 'Congo', 'Congo', 'Congolaise', 'CD', 'COD', 180), -(55, 'Cook Islands', 'Iles Cook', 'Anglaise', 'CK', 'COK', 184), -(56, 'Costa Rica', 'Costa Rica', 'Costaricainne', 'CR', 'CRI', 188), -(57, 'Croatia', 'Croatie', 'Croate', 'HR', 'HRV', 191), -(58, 'Cuba', 'Cuba', 'Cubaine', 'CU', 'CUB', 192), -(59, 'Cyprus', 'Chypre', 'Chypriote', 'CY', 'CYP', 196), -(60, 'Czech Republic', 'République Tchèque', 'Tchèque', 'CZ', 'CZE', 203), -(61, 'Benin', 'Bénin', 'Béninoise', 'BJ', 'BEN', 204), -(62, 'Denmark', 'Danemark', 'Danoise', 'DK', 'DNK', 208), -(63, 'Dominica', 'Dominique', 'Dominiquaise', 'DM', 'DMA', 212), -(64, 'Dominican Republic', 'République Dominicaine', 'Dominicaine', 'DO', 'DOM', 214), -(65, 'Ecuador', 'Equateur', 'Equatorienne', 'EC', 'ECU', 218), -(66, 'El Salvador', 'Salvador', 'Salvadorienne', 'SV', 'SLV', 222), -(67, 'Equatorial Guinea', 'Guinée Equatoriale', 'Guinéo-Équatorienne', 'GQ', 'GNQ', 226), -(68, 'Ethiopia', 'Ethiopie', 'Ethiopienne', 'ET', 'ETH', 231), -(69, 'Eritrea', 'Eritrée', 'Erythréenne', 'ER', 'ERI', 232), -(70, 'Estonia', 'Estonie', 'Estonienne', 'EE', 'EST', 233), -(71, 'Faroe Islands', 'Iles Féroé', 'Féroïenne', 'FO', 'FRO', 234), -(72, 'Falkland Islands', 'Iles Malouines', 'Anglaise', 'FK', 'FLK', 238), -(73, 'South Georgia and the South Sandwich Islands', 'Géorgie du Sud et Iles Sandwich du Sud', 'Argentine', 'GS', 'SGS', 239), -(74, 'Fiji', 'Fiji', 'Fidjienne', 'FJ', 'FJI', 242), -(75, 'Finland', 'Finlande', 'Finlandaise', 'FI', 'FIN', 246), -(76, 'Åland', 'Aland', 'Alandais', 'AX', 'ALA', 248), -(77, 'France', 'France', 'Française', 'FR', 'FRA', 250), -(78, 'French Guiana', 'Guinée Française', 'Française', 'GF', 'GUF', 254), -(79, 'French Polynesia', 'Polynésie Française', 'Française', 'PF', 'PYF', 258), -(80, 'French Southern Territories', 'Terres Australes Française', 'Française', 'TF', 'ATF', 260), -(81, 'Djibouti', 'Djibouti', 'Djiboutienne', 'DJ', 'DJI', 262), -(82, 'Gabon', 'Gabon', 'Gabonnaise', 'GA', 'GAB', 266), -(83, 'Georgia', 'Georgie', 'Géorgienne', 'GE', 'GEO', 268), -(84, 'Gambia', 'Gambie', 'Gambienne', 'GM', 'GMB', 270), -(85, 'Palestine', 'Palestine', 'Pelestinienne', 'PS', 'PSE', 275), -(86, 'Germany', 'Allemagne', 'Allemande', 'DE', 'DEU', 276), -(87, 'Ghana', 'Ghana', 'Ghanéenne', 'GH', 'GHA', 288), -(88, 'Gibraltar', 'Gibraltar', 'Gibraltarienne', 'GI', 'GIB', 292), -(89, 'Kiribati', 'Kiribati', 'Kiribatienne', 'KI', 'KIR', 296), -(90, 'Greece', 'Grèce', 'Grecque', 'GR', 'GRC', 300), -(91, 'Greenland', 'Groenland', 'Groenlandaise', 'GL', 'GRL', 304), -(92, 'Grenada', 'Grenade', 'Grenadienne', 'GD', 'GRD', 308), -(93, 'Guadeloupe', 'Guadeloupe', 'Guadeloupéenne', 'GP', 'GLP', 312), -(94, 'Guam', 'Guam', 'Guamienne', 'GU', 'GUM', 316), -(95, 'Guatemala', 'Guatémala', 'Guatémaltèque', 'GT', 'GTM', 320), -(96, 'Guinea', 'Guinée', 'Guinéenne', 'GN', 'GIN', 324), -(97, 'Guyana', 'Guyane', 'Guyanienne', 'GY', 'GUY', 328), -(98, 'Haiti', 'Haïti', 'Haïtienne', 'HT', 'HTI', 332), -(99, 'Heard Island and McDonald Islands', 'Ile Heard et Iles McDonald', 'Australienne', 'HM', 'HMD', 334), -(100, 'Vatican City', 'Vatican', 'Vaticanne', 'VA', 'VAT', 336), -(101, 'Honduras', 'Honduras', 'Hondurienne', 'HN', 'HND', 340), -(102, 'Hong Kong', 'Hong Kong', 'Hongkongaise', 'HK', 'HKG', 344), -(103, 'Hungary', 'Hongrie', 'Hongroise', 'HU', 'HUN', 348), -(104, 'Iceland', 'Islande', 'Islandaise', 'IS', 'ISL', 352), -(105, 'India', 'Inde', 'Indienne', 'IN', 'IND', 356), -(106, 'Indonesia', 'Indonésie', 'Indonésienne', 'ID', 'IDN', 360), -(107, 'Iran', 'Iran', 'Irannienne', 'IR', 'IRN', 364), -(108, 'Iraq', 'Iraq', 'Iraquienne', 'IQ', 'IRQ', 368), -(109, 'Ireland', 'Irlande', 'Irlandaise', 'IE', 'IRL', 372), -(110, 'Israel', 'Israel', 'Israelienne', 'IL', 'ISR', 376), -(111, 'Italy', 'Italie', 'Italienne', 'IT', 'ITA', 380), -(112, 'Ivory Coast', 'Côte d\'Ivoire', 'Ivoirienne', 'CI', 'CIV', 384), -(113, 'Jamaica', 'Jamaïque', 'Jamaïquaine', 'JM', 'JAM', 388), -(114, 'Japan', 'Japon', 'Japonnaise', 'JP', 'JPN', 392), -(115, 'Kazakhstan', 'Kazakhstan', 'Kazakhe', 'KZ', 'KAZ', 398), -(116, 'Jordan', 'Jordanie', 'Jordanienne', 'JO', 'JOR', 400), -(117, 'Kenya', 'Kenya', 'Kenyane', 'KE', 'KEN', 404), -(118, 'North Korea', 'Corée du Nord', 'Nord-Coréenne', 'KP', 'PRK', 408), -(119, 'South Korea', 'Corée du Sud', 'Sud-Coréenne', 'KR', 'KOR', 410), -(120, 'Kuwait', 'Koweit', 'Koweitienne', 'KW', 'KWT', 414), -(121, 'Kyrgyzstan', 'Kyrgyzstan', 'Kirghizes', 'KG', 'KGZ', 417), -(122, 'Laos', 'Laos', 'Laotienne', 'LA', 'LAO', 418), -(123, 'Lebanon', 'Liban', 'Libannaise', 'LB', 'LBN', 422), -(124, 'Lesotho', 'Lesotho', 'Lesothien ', 'LS', 'LSO', 426), -(125, 'Latvia', 'Lettonie', 'Lettone', 'LV', 'LVA', 428), -(126, 'Liberia', 'Libéria', 'Libérienne', 'LR', 'LBR', 430), -(127, 'Libya', 'Lybie', 'Lybienne', 'LY', 'LBY', 434), -(128, 'Liechtenstein', 'Liechtenstein', 'Liechtensteinoise', 'LI', 'LIE', 438), -(129, 'Lithuania', 'Lithuanie', 'Lithuanienne', 'LT', 'LTU', 440), -(130, 'Luxembourg', 'Luxembourg', 'Luxembourgeoise', 'LU', 'LUX', 442), -(131, 'Macao', 'Macao', 'Macanaise', 'MO', 'MAC', 446), -(132, 'Madagascar', 'Madagascar', 'Malgache', 'MG', 'MDG', 450), -(133, 'Malawi', 'Malawi', 'Malawite', 'MW', 'MWI', 454), -(134, 'Malaysia', 'Malaisie', 'Malaisienne', 'MY', 'MYS', 458), -(135, 'Maldives', 'Maldives', 'Maldivienne', 'MV', 'MDV', 462), -(136, 'Mali', 'Mali', 'Malienne', 'ML', 'MLI', 466), -(137, 'Malta', 'Malte', 'Maltaise', 'MT', 'MLT', 470), -(138, 'Martinique', 'Martinique', 'Martiniquaise', 'MQ', 'MTQ', 474), -(139, 'Mauritania', 'Mauritanie', 'Mauritanienne', 'MR', 'MRT', 478), -(140, 'Mauritius', 'Maurice', 'Mauricien', 'MU', 'MUS', 480), -(141, 'Mexico', 'Mexique', 'Mexiquaine', 'MX', 'MEX', 484), -(142, 'Monaco', 'Monaco', 'Monégasque', 'MC', 'MCO', 492), -(143, 'Mongolia', 'Mongolie', 'Mongolienne', 'MN', 'MNG', 496), -(144, 'Moldova', 'Moldavie', 'Moldavienne', 'MD', 'MDA', 498), -(145, 'Montenegro', 'Monténégro', 'Monténégrine', 'ME', 'MNE', 499), -(146, 'Montserrat', 'Montserrat', 'Montserratien', 'MS', 'MSR', 500), -(147, 'Morocco', 'Maroc', 'Marocaine', 'MA', 'MAR', 504), -(148, 'Mozambique', 'Mozambique', 'Mozambicaine', 'MZ', 'MOZ', 508), -(149, 'Oman', 'Oman', 'Omanaise', 'OM', 'OMN', 512), -(150, 'Namibia', 'Namibie', 'Namibienne', 'NA', 'NAM', 516), -(151, 'Nauru', 'Nauru', 'Nauruane', 'NR', 'NRU', 520), -(152, 'Nepal', 'Népal', 'Népalienne', 'NP', 'NPL', 524), -(153, 'Netherlands', 'Pays-Bas', 'Néerlandaise', 'NL', 'NLD', 528), -(154, 'Curacao', 'Curacao', 'Curacienne', 'CW', 'CUW', 531), -(155, 'Aruba', 'Aruba', 'Arubaine', 'AW', 'ABW', 533), -(156, 'Sint Maarten', 'Saint-Martin (Royaume des Pays-Bas)', 'Néerlandaise', 'SX', 'SXM', 534), -(157, 'Bonaire', 'Bonaire, Saint-Eustache et Saba', 'Bonairienne', 'BQ', 'BES', 535), -(158, 'New Caledonia', 'Nouvelle-Calédonie', 'Néo-Calédonienne', 'NC', 'NCL', 540), -(159, 'Vanuatu', 'Vanuatu', 'Vanouataise', 'VU', 'VUT', 548), -(160, 'New Zealand', 'Nouvelle-Zélande', 'Néo-zélandaise', 'NZ', 'NZL', 554), -(161, 'Nicaragua', 'Nicaragua', 'Nicaraguayenne', 'NI', 'NIC', 558), -(162, 'Niger', 'Niger', 'Nigérienne', 'NE', 'NER', 562), -(163, 'Nigeria', 'Nigéria', 'Nigérianne', 'NG', 'NGA', 566), -(164, 'Niue', 'Niue', 'Niouéenne', 'NU', 'NIU', 570), -(165, 'Norfolk Island', 'Ile Norfolk', 'Australienne', 'NF', 'NFK', 574), -(166, 'Norway', 'Norvège', 'Norvégienne', 'NO', 'NOR', 578), -(167, 'Northern Mariana Islands', 'Iles Marianne du nord', 'Américaine', 'MP', 'MNP', 580), -(168, 'U.S. Minor Outlying Islands', 'Iles Mineures Eloignées des Etats-Unis', 'Américaine', 'UM', 'UMI', 581), -(169, 'Micronesia', 'Micronesie', 'Micronésienne', 'FM', 'FSM', 583), -(170, 'Marshall Islands', 'Iles Marshall', 'Marshallais', 'MH', 'MHL', 584), -(171, 'Palau', 'Palaos', 'Palaoise', 'PW', 'PLW', 585), -(172, 'Pakistan', 'Pakistan', 'Pakistanainse', 'PK', 'PAK', 586), -(173, 'Panama', 'Panama', 'Panaméenne', 'PA', 'PAN', 591), -(174, 'Papua New Guinea', 'Papouasie-Nouvelle-Guinée', 'Papouan-Néo-Guinéenne', 'PG', 'PNG', 598), -(175, 'Paraguay', 'Paraguay', 'Paraguayenne', 'PY', 'PRY', 600), -(176, 'Peru', 'Pérou', 'Péruvienne', 'PE', 'PER', 604), -(177, 'Philippines', 'Philippines', 'Philippine', 'PH', 'PHL', 608), -(178, 'Pitcairn Islands', 'Iles Pitcairn', 'Anglaise', 'PN', 'PCN', 612), -(179, 'Poland', 'Pologne', 'Polonaise', 'PL', 'POL', 616), -(180, 'Guinea-Bissau', 'Guinée-Bissau', 'Bissau-Guinéenne', 'GW', 'GNB', 624), -(181, 'East Timor', 'Timor Oriental', 'Timoraise', 'TL', 'TLS', 626), -(182, 'Puerto Rico', 'Porto Rico', 'Porto-Ricaine', 'PR', 'PRI', 630), -(183, 'Qatar', 'Qatar', 'Qatarie', 'QA', 'QAT', 634), -(184, 'Réunion', 'Réunion', 'Réunionnaise', 'RE', 'REU', 638), -(185, 'Romania', 'Roumanie', 'Roumaine', 'RO', 'ROU', 642), -(186, 'Russia', 'Russie', 'Russe', 'RU', 'RUS', 643), -(187, 'Rwanda', 'Rwanda', 'Rwandaise', 'RW', 'RWA', 646), -(188, 'Saint Barthélemy', 'Saint Barthélemy', 'Française', 'BL', 'BLM', 652), -(189, 'Saint Helena', 'Saint Helene', 'Sainte-Hélénien', 'SH', 'SHN', 654), -(190, 'Saint Kitts and Nevis', 'Saint-Kitts-et-Nevis', 'Kitticien', 'KN', 'KNA', 659), -(191, 'Anguilla', 'Anguilla', 'Anguillane', 'AI', 'AIA', 660), -(192, 'Saint Lucia', 'Sainte-Lucie', 'Saint-Lucien', 'LC', 'LCA', 662), -(193, 'Saint Martin', 'Saint Martin (Française)', 'Saint-Martinoise', 'MF', 'MAF', 663), -(194, 'Saint Pierre and Miquelon', 'Saint Pierre et Miquelon', 'Saint-Pierraise', 'PM', 'SPM', 666), -(195, 'Saint Vincent and the Grenadines', 'Saint Vincent et les Grenadines', 'Saint-Vincentais et Grenadin', 'VC', 'VCT', 670), -(196, 'San Marino', 'République de Saint-Marin', 'Saint-Marinaise', 'SM', 'SMR', 674), -(197, 'São Tomé and Príncipe', 'Sao Tomé-et-Principe', 'Sao-Tomienne', 'ST', 'STP', 678), -(198, 'Saudi Arabia', 'Arabie Saoudite', 'Saoudienne', 'SA', 'SAU', 682), -(199, 'Senegal', 'Sénégal', 'Sénégalaise', 'SN', 'SEN', 686), -(200, 'Serbia', 'Serbie', 'Serbe', 'RS', 'SRB', 688), -(201, 'Seychelles', 'Seychelles', 'Seychellois', 'SC', 'SYC', 690), -(202, 'Sierra Leone', 'Sierra Leone', 'Sierra-Léonaise', 'SL', 'SLE', 694), -(203, 'Singapore', 'Singapoure', 'Singapourien', 'SG', 'SGP', 702), -(204, 'Slovakia', 'Slovaquie', 'Slovaque', 'SK', 'SVK', 703), -(205, 'Vietnam', 'Vietnam', 'Vietnamienne', 'VN', 'VNM', 704), -(206, 'Slovenia', 'Slovénie', 'Slovénienne', 'SI', 'SVN', 705), -(207, 'Somalia', 'Somalie', 'Somalienne', 'SO', 'SOM', 706), -(208, 'South Africa', 'Afrique du Sud', 'Sud-Africaine', 'ZA', 'ZAF', 710), -(209, 'Zimbabwe', 'Zimbabwe', 'Zimbabwéenne', 'ZW', 'ZWE', 716), -(210, 'Spain', 'Espagne', 'Espagnole', 'ES', 'ESP', 724), -(211, 'South Sudan', 'Soudan du Sud', 'Sud-Soudanaise', 'SS', 'SSD', 728), -(212, 'Sudan', 'Soudan', 'Soudannaise', 'SD', 'SDN', 729), -(213, 'Western Sahara', 'Sahara Occidental', 'Sahraouie', 'EH', 'ESH', 732), -(214, 'Suriname', 'Suriname', 'Surinamienne', 'SR', 'SUR', 740), -(215, 'Svalbard and Jan Mayen', 'Svalbard et Jan Mayen', 'Norvégienne', 'SJ', 'SJM', 744), -(216, 'Swaziland', 'Swaziland', 'Swazie', 'SZ', 'SWZ', 748), -(217, 'Sweden', 'Suède', 'Suédoise', 'SE', 'SWE', 752), -(218, 'Switzerland', 'Suisse', 'Suisse', 'CH', 'CHE', 756), -(219, 'Syria', 'Syrie', 'Syrienne', 'SY', 'SYR', 760), -(220, 'Tajikistan', 'Tajikistan', 'Tadjike', 'TJ', 'TJK', 762), -(221, 'Thailand', 'Thaïland', 'Thaïlandaise', 'TH', 'THA', 764), -(222, 'Togo', 'Togo', 'Togolaise', 'TG', 'TGO', 768), -(223, 'Tokelau', 'Tokelau', 'Tokelauien', 'TK', 'TKL', 772), -(224, 'Tonga', 'Tonga', 'Tonguien', 'TO', 'TON', 776), -(225, 'Trinidad and Tobago', 'Trinité-et-Tobago', 'Trinitéennes', 'TT', 'TTO', 780), -(226, 'United Arab Emirates', 'Emiras', 'Emirienne', 'AE', 'ARE', 784), -(227, 'Tunisia', 'Tunisie', 'Tunisienne', 'TN', 'TUN', 788), -(228, 'Turkey', 'Turkie', 'Turque', 'TR', 'TUR', 792), -(229, 'Turkmenistan', 'Turkmenistan', 'Turkmène', 'TM', 'TKM', 795), -(230, 'Turks and Caicos Islands', 'Iles Turks-et-Caïques', 'Anglaise', 'TC', 'TCA', 796), -(231, 'Tuvalu', 'Tuvalu', 'Tuvaluane', 'TV', 'TUV', 798), -(232, 'Uganda', 'Ouganda', 'Ougandaise', 'UG', 'UGA', 800), -(233, 'Ukraine', 'Ukraine', 'Ukrainienne', 'UA', 'UKR', 804), -(234, 'Macedonia', 'Macédoine', 'Macédonienne', 'MK', 'MKD', 807), -(235, 'Egypt', 'Egypte', 'Egyptienne', 'EG', 'EGY', 818), -(236, 'United Kingdom', 'Royaume Uni', 'Anglaise', 'GB', 'GBR', 826), -(237, 'Guernsey', 'Guernesey', 'Anglaise', 'GG', 'GGY', 831), -(238, 'Jersey', 'Jersey', 'Jersiaise', 'JE', 'JEY', 832), -(239, 'Isle of Man', 'Ile de Man', 'Anglaise', 'IM', 'IMN', 833), -(240, 'Tanzania', 'Tanzanie', 'Tanzanienne', 'TZ', 'TZA', 834), -(241, 'United States', 'Etats-Unis', 'Américaine', 'US', 'USA', 840), -(242, 'U.S. Virgin Islands', 'Iles Vierges des Etats-Unis', 'Américaine', 'VI', 'VIR', 850), -(243, 'Burkina Faso', 'Burkina', 'Burkinabé', 'BF', 'BFA', 854), -(244, 'Uruguay', 'Uruguay', 'Uruguayenne', 'UY', 'URY', 858), -(245, 'Uzbekistan', 'Uzbekisan', 'Ousbèke', 'UZ', 'UZB', 860), -(246, 'Venezuela', 'Vénézuela', 'Vénézuélienne', 'VE', 'VEN', 862), -(247, 'Wallis and Futuna', 'Wallis et Futuna', 'Wallisienne', 'WF', 'WLF', 876), -(248, 'Samoa', 'Samoa', 'Samoan', 'WS', 'WSM', 882), -(249, 'Yemen', 'Yemen', 'Yéménite', 'YE', 'YEM', 887), -(250, 'Zambia', 'Zambie', 'Zambienne', 'ZM', 'ZMB', 894), -(251, 'Apatride', 'Apatride', 'Apatride', 'XA', 'XXA', 991), -(252, 'Réfugié ONU', 'Réfugié ONU', 'Réfugié ONU', 'XB', 'XXB', 992), -(253, 'Réfugié (autre)', 'Réfugié (autre)', 'Réfugié (autre)', 'XC', 'XXC', 993), -(254, 'Non Spécifiée', 'Non Spécifiée', 'Non Spécifiée', 'XX', 'XXX', 999); - --- -------------------------------------------------------- - --- --- Structure de la table `location_place` --- - -CREATE TABLE `location_place` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `address` varchar(255) NOT NULL, - `postal` int UNSIGNED NOT NULL, - `city` varchar(255) NOT NULL, - `nbkm` int UNSIGNED DEFAULT NULL, - `timing` int UNSIGNED DEFAULT NULL, - `active` tinyint(1) NOT NULL, - `country_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `location_place` --- - -INSERT INTO `location_place` (`id`, `name`, `address`, `postal`, `city`, `nbkm`, `timing`, `active`, `country_id`) VALUES -(1, 'Ecole du pré vert', 'Rue René Franq', 1428, 'Lillois-Witterzée', NULL, NULL, 1, 1), -(2, 'Ten Gaerde', 'Jozef Mertensstraat, 17b', 1702, 'Dilbeek', 37, 28, 1, 1), -(3, 'Gemeentelijk Sportcentrum Hulshout', 'Industriepark 3', 2235, 'Hulsout', 75, 60, 1, 1), -(4, 'Sportcentrum Sint-gillis Dendermonde', 'Van Langenhovestraat 203 A', 9200, 'Sint-Gillis-Bij-Dendermonde', 65, 55, 1, 1), -(5, 'Gimno Clube de Santarém', 'Pavilhão Gimnodesportivo de Santarém Sala 2, Nave Anexa', 2000, 'Santarem', 2000, 300, 1, 2), -(6, 'Evenementenhal Zonhoven', 'Rozenkransweg 4', 3520, 'Zonhoven', 100, 65, 1, 1), -(7, 'Stedelijke Sporthal Eeklo', 'Burgemeester Lionel Pussemierstraat 157', 9900, 'Eeklo', 110, 75, 1, 1), -(8, 'Sportpark Beveren', 'Klapperstraat 103', 9120, 'Beveren-Waas', 80, 80, 1, 1), -(9, 'Hemelrijkhal', 'Moerkantsebaan 89', 2910, 'Essen', 120, 75, 1, 1), -(10, 'Sportcomplex Palaestra', 'Kastanjelaan 35', 9800, 'Petegem-aan-de-Leie', 95, 60, 1, 1), -(11, 'Sporthal \'t Venneke', 'Den Geer 21', 2180, 'Ekeren', 85, 55, 1, 1), -(12, 'Topsporthal Vlaanderen', 'Zuiderlaan 14', 9000, 'Gent', 85, 55, 1, 1), -(13, 'Sport Vlaanderen Netepark', 'Vorselaarsebaan 60', 2200, 'Herentals', 102, 70, 1, 1), -(14, 'Gemeentelijke Sporthal Ingelmunster', 'Bollewerpstraat 92A', 8770, 'Ingelmunster', 120, 80, 1, 1), -(15, 'Sporthal Den Uyt', 'Rode Kruislaan 20', 2400, 'Mol', 115, 80, 1, 1), -(16, 'Sporthal Bleukens', 'Hoolsterberg 36', 2490, 'Balen', 112, 75, 1, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_chrono` --- - -CREATE TABLE `objective_chrono` ( - `id` int NOT NULL, - `routine_type` smallint UNSIGNED NOT NULL, - `date` date NOT NULL, - `score` decimal(5,2) NOT NULL, - `gymnast_id` int NOT NULL, - `routine_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_chrono` --- - -INSERT INTO `objective_chrono` (`id`, `routine_type`, `date`, `score`, `gymnast_id`, `routine_id`) VALUES -(1, 0, '2019-03-17', '18.94', 1, 494), -(2, 1, '2019-04-02', '16.53', 1, 495), -(3, 2, '2019-04-02', '16.34', 1, 495), -(4, 0, '2018-10-08', '18.64', 1, 494), -(5, 1, '2019-02-10', '16.30', 1, 495), -(6, 2, '2019-04-29', '15.87', 1, 495), -(7, 0, '2018-01-22', '18.75', 1, 494), -(8, 0, '2018-04-16', '18.81', 1, 494), -(9, 0, '2018-04-02', '21.12', 5, 494), -(10, 0, '2019-01-21', '21.57', 5, 494), -(11, 0, '2019-05-17', '22.07', 5, 494), -(12, 0, '2019-05-20', '17.97', 2, 494), -(13, 0, '2019-05-20', '16.13', 7, 494), -(14, 0, '2019-05-20', '16.20', 6, 494), -(15, 0, '2019-05-20', '14.91', 8, 494), -(16, 0, '2019-05-20', '16.08', 9, 494); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_educative` --- - -CREATE TABLE `objective_educative` ( - `id` int NOT NULL, - `content` longtext, - `longLabel` varchar(255) NOT NULL, - `shortLabel` varchar(255) NOT NULL, - `difficulty` decimal(3,1) NOT NULL, - `level` smallint UNSIGNED NOT NULL, - `rank` smallint UNSIGNED NOT NULL, - `ageBoy` smallint UNSIGNED DEFAULT NULL, - `ageGirl` smallint UNSIGNED DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_educative` --- - -INSERT INTO `objective_educative` (`id`, `content`, `longLabel`, `shortLabel`, `difficulty`, `level`, `rank`, `ageBoy`, `ageGirl`) VALUES -(1, '', 'Saut groupé', 'o', '0.0', 2, 2, 6, 6), -(2, '', 'Chandelle', 'Chandelle', '0.0', 0, 0, 6, 6), -(3, '', 'Saut carpé', '<', '0.0', 3, 3, 7, 7), -(4, '', 'Saut écart', '//', '0.0', 2, 2, 6, 6), -(5, '', 'Tomber Assis', 'Assis', '0.0', 1, 2, 6, 6), -(6, '', 'Tomber plat dos tendu bras en haut', 'Plat dos (beh)', '0.1', 2, 4, 6, 6), -(7, '', 'Tomber plat dos groupé', 'Plat dos o', '0.1', 3, 6, 7, 7), -(8, '', 'Tomber plat dos carpé', 'Plat dos <', '0.1', 3, 7, 7, 7), -(9, '', 'Tomber dos', 'Dos', '0.1', 3, 5, 7, 7), -(10, 'Commentaires concernant le 4 pattes :\r\n\r\n - comment l\'aborder\r\n - les erreurs \'courantes\'\r\n - blablabla\r\n - …', 'Tomber quadrupédique', '4 pattes', '0.1', 1, 2, 6, 6), -(11, '', 'Tomber ventre', 'Ventre', '0.1', 2, 4, 6, 6), -(12, '', 'Tomber ventre ouvert', 'Ventre (', '0.1', 3, 5, 8, 8), -(13, '', 'Tomber dos fermé', 'Dos fermé', '0.1', 4, 10, 8, 8), -(14, '', 'Debout (de l\'assis)', 'Debout', '0.0', 1, 2, 6, 6), -(15, '', 'Debout (du ventre)', 'Debout', '0.1', 2, 4, 6, 6), -(16, '', 'Debout (du dos)', 'Debout', '0.1', 3, 5, 7, 7), -(17, '', 'Petit piqué groupé', 'Petit piqué', '0.3', 4, 6, 7, 7), -(18, '', 'Petit piqué carpé', 'Petit piqué <', '0.3', 5, 7, 7, 7), -(19, '', 'Piqué tendu', 'Piqué', '0.3', 8, 9, 10, 10), -(20, '', 'Piqué groupé', 'Piqué o', '0.3', 6, 6, 9, 9), -(21, '', 'Piqué carpé', 'Piqué <', '0.3', 7, 9, 9, 9), -(22, 'Il constitue une étape à franchir très importante pour le débutant. C\'est l\'exercice qui va lui permettre de passer dans un monde nouveau, inconnu, les rotations aériennes en avant. Il fascine les jeunes élèves en raison de l\'apparente facilité de réalisation et de leur envie pressante de réaliser leurs premiers saltos.\r\n\r\nLe salto avant est une rotation transversale avant de 360° dans l’espace, départ de la station debout arrivée à la station debout.\r\n\r\n\r\n## Analyse technique\r\nA l’entrée de la toile, les bras sont verticaux au dessus de la tête, le corps allongé et gainé en fond de toile. Il ne faut pas anticiper le mouvement par un balayage du buste, mais bien attendre le renvoi de la toile. En sortie de celle-ci, nous aurons un balayage du buste synchronisé avec le renvoi de la toile.\r\n\r\nLors de la mise en rotation, les fessiers et les abdominaux doivent être contractés énergiquement afin d’éviter que le bassin ne parte vers l’arrière. Le regard sera dirigé vers les jambes pendant la rotation. L’inconvénient à l’ouverture du salto avant est que la prise d’informations visuelles ne vient que très tardivement. C’est pourquoi le salto avant ne s\'utilise pas à l\'intérieur d\'une série, il sera remplacé avantageusement pas un *barani*, qui permet une prise d\'informations visuelles plus favorable à l\'enchaînement.\r\n\r\nLes bras, les omoplates et les épaules seront soulevés en direction du plafond, légèrement vers l’avant. Le corps s’élève, puis une action énergique de fermeture permet d’adopter une position groupée ou carpée. Cette action sera suivie de l’action inverse d’ouverture à l’oblique avant haute pour être totale à une heure au plus tard, les bras collés le long du corps. Le corps amorcera l’approche de la toile en restant dans une position gainée.\r\n\r\n\r\n## Biomécanique\r\nAu take-off, les membres inférieurs sont verticaux, le tronc incliné vers l\'avant formant un angle de rotation de 50° par rapport à la verticale. Les membres supérieurs sont élevés, tendus au dessus de la tête. Le regard est fixé au loin à l\'oblique basse. Cette position placera le centre de gravité en avant du polygone de sustentation.\r\n\r\nL\'élévation du corps est créée par la réaction de la toile à l\'action des membres inférieurs, tendus en sortie de toile. Le centre de gravité se trouvant en avant de la réaction de la toile, la poussée est excentrique et crée une rotation en avant autour d\'un axe transversal.\r\n\r\nL\'abaissement des membres supérieurs augmente le moment angulaire de l\'ensemble du corps (transfert de moments angulaires relatifs). La projection du centre de gravité est légèrement en avant de la base d\'appui. Le *salto avant* va se réaliser avec un déplacement vers l\'avant (30 à 50 cm). Ce déplacement est normal et doit être recherché par l\'exécutant.\r\n\r\nLe corps s\'élève animé d\'une rotation vers l\'avant autour de l\'axe transversal. Une action dynamique et explosive de fermeture du corps permet d’adopter soit une position groupée, soit une position carpée. Cette fermeture sur le tronc se fait lors de la phase ascendante. La position est bien marquée, les mains attrapent les genoux ou les chevilles et la vitesse maximale de la rotation est, à ce moment, atteinte.\r\n\r\nLa fermeture est suivie d’une action inverse d’ouverture tout aussi dynamique et explosive, à la verticale. Les jambes, les cuisses et le bassin commencent à se réaligner, les bras s’allongent le long du corps pour tendre vers une position tendue.\r\n\r\nL\'action de pénétration des membres inférieurs dans la toile doit être verticale afin que leur cône de pénétration soit symétrique par rapport à une verticale abaissée au centre du polygone de sustentation. C\'est cette condition qui permet d\'obtenir une réaction verticale utilisée par le trampoliniste pour la réalisation du saut suivant.\r\n\r\n\r\n## Démarche pédagogique\r\nComme dans toute réalisation nouvelle, il ne faut pas exiger du débutant un salto avant parfait, et surtout pas une ouverture parfaite, que ce soit en termes de position ou de timing. L\'ouverture idéale ne pourra se faire que quand l\'élève aura acquis tous les éléments nécessaires à sa réalisation, à commencer par la capacité de réaliser un salto avant carpé (pour un groupé) ou tendu (pour un carpé), ainsi que la capacité de réaliser un salto avant groupé (ou carpé suivant le cas) jusqu\'au ventre.\r\n\r\nLors de l\'apprentissage, il ne faudra pas hésiter à être progressif et à avancer étapes par étapes. Il ne faudra pas non plus hésiter à avoir recours à des manipulations. Manipulations et utilisation de tapis ont un point commun : mieux vaut une fois de trop qu\'une fois trop peu !\r\n\r\n\r\n### Prérequis\r\n\r\nToutes les figures avec un départ vers l\'avant préparent au *salto avant*. Nous y retrouvons l\'essentiel : la poussée complète, le placement des membres supérieurs et la position de la tête.\r\n\r\n - 4 pattes\r\n - Ventre\r\n - Petit piqué\r\n - Culbute avant (au sol)\r\n\r\nAttention cependant au départ de ces figures : certaines, telles que le *4 pattes* et le *ventre* n\'utilisent pas le même mouvement de bras. Le *salto avant*, le *petit piqué*, ... exigent un placement de bras alors que le *ventre* et le *4 pattes* exigent un lancer de bras.\r\n\r\n\r\n### Educatifs\r\n\r\nVoici un ensemble d\'éducatifs qu\'il est possible de travailler grâce à des montages au sol.\r\n\r\n#### montage pour rotation\r\n\r\n - Culbute sur banc ou plinth (axe).\r\n - Culbute sur mousse penché (vitesse).\r\n\r\n\r\n#### montage pour départ\r\n\r\n - Culbute par-dessus un obstacle (enrouler).\r\n - Culbute sur un obstacle (montée).\r\n\r\n\r\n#### montage pour ouverture\r\n\r\n - Culbute sur un mousse élevé, arrivée à terre.\r\n - Culbute sur un mousse penché, ouverture plat dos.\r\n\r\n\r\n\r\n\r\n### Progressions\r\n\r\nDeux progressions différentes existent pour aborder le *salto avant*. Il n\'y en a pas de meilleure ou de moins bonne : leur efficacité dépend des facilités d\'apprentissage de l\'élève et du bagage acrobatique déjà acquis. Mais avant d\'aborder ces deux progressions, il faut en réaliser une autre : l\'apprentissage de l\'anticipation de bras.\r\n\r\n#### Apprentissage de l’anticipation de bras\r\n\r\nLa technique n\'est pas très compliquée. Néanmoins, c\'est un mouvement qui sera utile tout au long de la carrière du trampoliniste. Il ne faut donc pas hésiter à prendre le temps nécessaire pour que l\'élève maîtrise correctement cette technique.\r\n\r\nIl faut commencer par demander à l\'élève de réaliser plusieurs chandelles en gardant les bras tendus, collés aux oreilles. L\'élève doit ensuite réaliser le même exercice mais, cette fois, les bras tendus, en bas, collés au corps.\r\n\r\nDemander ensuite à l\'élève de réaliser des chandelles alternées : lors de la première, l\'élève monte les bras ; lors de la suivante, il les abaisse. La montée et descente des bras se fait par le côté. Une fois l\'élève capable de cela, il faut lui demander de réaliser le même exercice avec la montée et la descente des bras au cours de la même chandelle.\r\n\r\nL\'élève doit ensuite réaliser l\'anticipation de bras, à savoir trois mouvements de bras au cours de la même chandelle. Les deux premiers sont les mouvements normaux d\'une chandelle habituelle, le deuxième est simplement réalisé plus rapidement afin de pouvoir, avant d\'avoir atteint la phase de landing, commencer à remonter les bras de manière à ce que, au point mort bas, les bras soient correctement placés, tendus, collés aux oreilles.\r\n\r\nUne fois cette étape maîtrisée, on peut varier le saut sur lequel l\'anticipation de bras est faite, en commençant par un saut de base.\r\n\r\n#### Par 4 pattes\r\n\r\nPasser par la position quadrupédique est sans doute la première approche qui peut être faite du salto avant de par sa similitude avec ce dernier et sa simplicité d’exécution. Cette approche permettra aussi de travailler l\'ouverture ainsi que le contrôle de rotation.\r\n\r\nIl ne faudra pas hésiter à revenir à certaines de ces étapes une fois le salto acquis, afin d’accroître la maîtrise des moments précités. Avant d\'aborder le vif du sujet nous proscrirons une étape précise, celle du *4 pattes - ATR*. Cette étape nécessite la mise de main dans la toile va amener à une ouverture des épaules, du corps, \\ldots et cela contrecarrera l\'apprentissage plus qu\'autre chose.\r\n\r\nIl faut, comme première étape, reprendre une étape de la progression du *petit piqué* : Demander à l\'élève de réaliser un *4 pattes - ½ salto, dos*. Là encore, les mains restent en contact jusqu\'au passage de tête de l\'exécutant et, lors des premières réalisations, l’entraîneur veillera à demander à l\'élève d\'aller jusqu\'à l\'assis avant de demander une arrivée dos : mieux vaut s\'assurer que l\'exécutant à trop de rotation (arrivée assis) plutôt que trop peu (arrivée nuque).\r\n\r\nA partir de cette progression, et une fois celle-ci maîtrisée, il faut demander à l\'élève de réaliser une fermeture groupée immédiatement suivie d\'une demi-ouverture afin d\'arriver assis. Une fois l\'arrivée assis bien maîtrisée, demander à l\'élève de réaliser le même exercice mais avec une arrivée plat dos. Ici encore il vaut mieux d\'abord privilégier une grande quantité de rotation avant d\'affiner le contrôle et de diminuer cette quantité. Cet étape peut continuer d\'être travaillée en parallèle et même après l\'étape suivante, en mettant alors l\'accent sur le moment et le dynamisme de l\'ouverture.\r\n\r\nL\'étape d\'après consiste à demander à l\'élève une arrivée debout, droit, sur ses pieds et, si possible, de pouvoir effectuer une chandelle après. Il faudra veiller à privilégier une légère sous-rotation afin d\'éviter les accidents.\r\n\r\nCes deux dernières étapes devraient, dans l\'idéal, également pouvoir être réalisées à partir d\'un tomber genoux. De la sorte, le nombre de quarts de rotation du buste est augmenté et participe ainsi à la complexification de l\'étape d\'apprentissage.\r\n\r\n#### Par culbute\r\n\r\nSeconde approche du salto avant. Celle-ci à l\'avantage de mettre l\'accent sur la mise en rotation depuis la station, via l\'évolution vers un placement de plus en plus droit.\r\n\r\nLà aussi, des étapes de la progression du *petit piqué* seront reprises et quelque peu modifiées afin de mieux correspondre à notre objectif.\r\n\r\nDemander à l\'élève de se placer sur une des lignes rouges verticales, accroupi, et de réaliser une culbute avant comme s\'il se trouvait au sol. Demander plusieurs répétitions et veiller au bon placement des mains, au rentrer de tête de l\'élève et à la manière dont il pilote la culbute. Cette dernière devra se faire le plus possible sur un axe frontal à l\'élève. Si, une fois cette étape maîtrisée, l\'élève peut faire pareil avec une prise des genoux en mains.\r\n\r\nDemander à l\'élève de se placer sur une des lignes rouges, accroupi, et de réaliser une culbute avant, bras tendus sur le côté afin que les mains ne puissent pas prendre appui sur la toile. Demander plusieurs répétitions et veiller au bon placement des mains, au rentrer de tête de l\'élève et à la manière dont il pilote la culbute. Cette dernière devra se faire le plus possible sur un axe frontal à l\'élève. Si, une fois cette étape maîtrisée, l\'élève peut faire pareil avec une prise des genoux en mains, cela sera utile pour plus tard. Une fois maîtrisé depuis un départ accroupi, demander le même exercice, départ debout dans une position carpée, bras tendus sur le côté, avec les jambes pliées (elles devront l\'être de moins en moins au fil des répétitions, jusqu\'à être complètement tendues).\r\n\r\nMême démarche qu\'à l’étape précédente, si ce n\'est que l\'élève doit essayer, lors de sa culbute, que ni les mains ni la tête (y compris l\'arrière de celle-ci) ne touche le support à aucun moment. Si l\'élève n\'y arrive pas, l\'entraîneur peut lui conseiller de donner une impulsion avec ses chevilles et ses pieds afin de pouvoir arriver directement sur le haut du dos lors de la culbute.\r\n\r\nDemander à l\'élève de se placer sur une des lignes rouges, debout, jambes tendues, en position carpée, et de réaliser une culbute avant, bras tendus sur le côté, de manière à ce que ni les mains, ni la tête ne touchent le support devant lui. Cette fois-ci l\'élève doit faire des rebonds, même petits. Dans un premier temps, il sera demandé à l\'élève d\'aller jusqu\'à l\'assis, puis, une fois que cette arrivée sera maîtrisée, il lui sera alors demandé de n\'aller \"que\" jusqu\'au dos. Une fois que l\'élève commence à maîtriser l\'exercice, l\'amplitude des bonds peut être augmentée.\r\n\r\n\r\n\r\n### Défauts type\r\n#### Appréhension au départ\r\n\r\n - Se penche en avant/Recule les pieds à la dernière chandelle.\r\n - Fermeture du bassin dans la toile.\r\n - Trop rapide avec les bras.\r\n - Ne regarde pas devant.\r\n - Ne travaille pas avec les épaules.\r\n\r\n\r\n#### Appréhension à l’arrivée\r\n\r\n - Regarde sur le côté à l’ouverture.\r\n - Reste corps fermé pour regarder en bas.\r\n - Ouvre trop le corps (banane), cherche la toile avec les pieds.\r\n\r\n\r\n## Evolutions\r\nLe *salto avant* a peu d\'utilité en tant que tel mais possède deux évolutions principales : le *barani* et le *double avant* soit via la *1 ¾* soit via le *half out*. Une autre évolution possible est d\'utiliser le salto avant à la suite d\'une arrivée dos via le *ball out* ou *barani ball out*.', 'Salto avant groupé', 'Avant o', '0.5', 5, 8, 8, 8), -(23, '', 'Salto avant carpé', 'Avant <', '0.6', 6, 9, 8, 9), -(24, '', 'Salto avant tendu', 'Avant /', '0.6', 8, 10, 10, 10), -(25, '', 'Salto arrière groupé', 'Arrière o', '0.5', 7, 8, 8, 8), -(26, '', 'Salto arrière carpé', 'Arrière <', '0.6', 8, 9, 9, 9), -(27, 'Cf info \"trampoline\" France : abordage des positions carpés et tendues en même temps que le groupé.', 'Salto arrière tendu', 'Arrière /', '0.6', 9, 9, 9, 10), -(28, '', 'Demi tour', '½ tour', '0.1', 1, 1, 6, 6), -(29, '', 'Vrille', 'Vrille', '0.2', 2, 2, 6, 6), -(30, '', 'Cody groupé', 'Cody o', '0.6', 9, 9, 9, 9), -(31, '### Apprentissage\r\nPlusieurs étapes peuvent être utilisée pour approcher le barani o.\r\n\r\n#### 4 pattes - avant, plat dos - 1/2 debout\r\n\r\n* un bon 4 pattes\r\n* pousser le dos haut vers le plafond\r\n* ouverture en plat dos\r\n\r\n#### 3/4 Avant o - 1/2 debout\r\n1. bon départ vers le haut\r\n2. bras bien placés à la vertical\r\n3. poussée des épaule vers le plafond au départ...\r\n\r\nEt encore plein d\'autres étapes.', 'Barani groupé', 'Barani o', '0.6', 6, 8, 10, 10), -(32, '', 'Barani carpé', 'Barani <', '0.6', 7, 10, 10, 10), -(33, '', 'Barani tendu', 'Barani /', '0.6', 8, 11, 11, 11), -(34, '', 'Demi tour tomber ventre', '½ ventre', '0.2', 3, 5, 7, 7), -(35, '', 'Demi tour dos', '½ dos', '0.2', 4, 6, 7, 7), -(36, '', 'Ventre - plat dos tendu', 'Ventre - Plat dos /', '0.2', 5, 6, 7, 7), -(37, '', 'Ventre - Dos', 'Ventre - Dos', '0.2', 5, 6, 7, 7), -(38, '', 'Ventre - demi tour, ventre', 'Ventre - ½, ventre', '0.3', 5, 7, 7, 7), -(39, '', 'Dos - vrille, dos', 'Cattwist', '0.2', 4, 7, 7, 7), -(40, '', 'Porpus groupé', 'Porpus o', '0.5', 6, 9, 8, 9), -(41, '', 'Porpus carpé', 'Porpus <', '0.6', 7, 10, 8, 8), -(42, '', 'Porpus tendu', 'Porpus /', '0.6', 8, 10, 10, 10), -(43, '', 'Arrière groupé jusqu\'au dos', 'Arrière o, dos', '0.6', 8, 8, 11, 11), -(44, '', 'Arrière carpé jusqu\'au dos', 'Arrière <, dos', '0.7', 9, 9, 11, 11), -(45, '', 'Arrière tendu jusqu\'au dos', 'Arrière /, dos', '0.7', 10, 10, 11, 11), -(46, '', 'Pull-over groupé', 'PO o', '0.3', 4, 6, 7, 7), -(47, '', 'Pull-over carpé', 'PO <', '0.3', 5, 8, 7, 7), -(48, '', 'Dos - double vrille, dos', '2 Cattwist', '0.4', 6, 9, 8, 8), -(49, '', 'Dos - triple vrille, dos', '3 Cattwist', '0.6', 8, 11, 10, 10), -(50, '', 'Trois quart Arrière groupé', '¾ Arrière o', '0.3', 8, 8, 9, 9), -(51, '', 'Trois quart Arrière carpé', '¾ Arrière <', '0.3', 9, 9, 9, 9), -(52, '', 'Trois quart Arrière tendu', '¾ Arrière /', '0.3', 10, 10, 9, 9), -(53, '', 'Salto avant groupé jusqu\'au ventre', 'Avant o, ventre', '0.6', 8, 9, 9, 10), -(54, '', 'Salto avant carpé jusqu\'au ventre', 'Avant <, ventre', '0.6', 9, 9, 9, 10), -(56, '', 'Barani carpé jusqu\'au dos', 'Barani <, dos', '0.7', 8, 11, 10, 10), -(57, '', 'Barani tendu jusqu\'au dos', 'Barani /, dos', '0.7', 9, 9, 11, 11), -(58, '', 'Barani Ball Out groupé', 'BBO o', '0.7', 8, 11, 9, 10), -(59, '', 'Barani Ball Out carpé', 'BBO <', '0.7', 9, 12, 10, 11), -(60, '', 'Barani Ball Out tendu', 'BBO /', '0.7', 10, 13, 10, 11), -(61, '', 'Cody carpé', 'Cody <', '0.6', 10, 10, 10, 11), -(62, '', 'Cody tendu', 'Cody /', '0.6', 13, 13, 10, 13), -(63, '', 'Pull-over groupé jusqu\'au dos', 'PO o, dos', '0.5', 6, 8, 8, 8), -(64, '', 'Pull-over carpé jusqu\'au dos', 'PO <, dos', '0.5', 7, 9, 9, 9), -(65, '', 'Barani in full out groupé', 'BIFO o', '1.3', 13, 13, 15, 16), -(66, '', 'Barani in full out carpé', 'BIFO <', '1.5', 15, 15, 16, 17), -(67, '', 'Barani in full out tendu', 'BIFO /', '1.5', 16, 16, 17, 18), -(68, '', 'Demi tour assis', '½ Assis', '0.1', 2, 3, 6, 6), -(69, '', 'Demi tour debout (de l\'assis)', '½ debout', '0.1', 2, 3, 6, 6), -(70, '', 'Demi tour debout (de ventre)', '½ Debout', '0.2', 3, 7, 7, 7), -(71, '', 'Demi tour debout (du dos)', '½ debout', '0.2', 4, 6, 7, 7), -(72, '', '1 ¾ Avant groupé', '1 ¾ o', '0.8', 9, 13, 11, 12), -(73, '', '1 ¾ Avant carpé', '1 ¾ <', '0.9', 10, 13, 12, 13), -(74, '', 'Rudy tendu', 'Rudy', '0.8', 10, 13, 11, 11), -(75, '', 'Rudy groupé', 'Rudy o', '0.8', 10, 13, 10, 10), -(76, '', 'Rudy carpé', 'Rudy <', '0.9', 10, 13, 10, 10), -(77, '', 'Trois quart avant tendu + vrille', '¾ Avant / + vrille', '0.5', 9, 9, 9, 9), -(78, '', 'Full avant jusqu\'au ventre', 'Barani + ½, ventre', '0.9', 10, 13, 11, 11), -(79, '', 'Prog BIFO groupé', 'Prog BIFO o', '1.0', 11, 11, 13, 13), -(80, '', 'Prog BIFO carpé', 'Prog BIFO <', '1.1', 12, 12, 13, 13), -(81, '', 'Prog BIFO tendu', 'Prog BIFO /', '1.1', 13, 13, 15, 15), -(82, '', 'Assis - vrille, assis', 'Roller', '0.2', 3, 4, 7, 7), -(83, '', 'Vrille, dos', 'Vrille, dos', '0.3', 5, 7, 8, 8), -(84, '', 'Vrille, ventre', 'Vrille, ventre', '0.3', 5, 5, 8, 9), -(85, '', 'Vrille, assis', 'Vrille, assis', '0.2', 4, 4, 7, 7), -(86, '', 'Rudy out fliffis carpé', 'Rudy out <', '1.5', 15, 15, 14, 15), -(87, '', 'Prog FIRO groupé', 'Prog FIRO o', '1.2', 12, 12, 14, 14), -(88, '', 'Prog FIRO carpé', 'Prog FIRO <', '1.3', 13, 13, 13, 13), -(89, '', 'Prog FIRO tendu', 'Prog FIRO /', '1.3', 14, 14, 14, 14), -(90, '', 'Dos - vrille et demi, dos', 'Corkscrew', '0.5', 7, 11, 8, 9), -(91, '', 'Double salto arrière groupé', '2 Back o', '1.0', 11, 11, 12, 12), -(92, '', 'Double salto arrière carpé', '2 Back <', '1.2', 12, 12, 13, 14), -(93, '', 'Double salto arrière tendu', '2 Back /', '1.2', 13, 14, 14, 15), -(94, '10 chandelles chronométrées.', '10 chandelles', '10 Chandelles', '0.0', 0, 0, NULL, NULL), -(95, '', 'Full', 'Full', '0.7', 12, 12, 10, 10), -(96, '', 'Half out Triffis carpé', 'Triffis <', '2.0', 20, 20, 18, NULL), -(97, '', 'Half out Triffis groupé', 'Triffis o', '1.7', 17, 17, 18, 18), -(98, '', '2 ¾ avant groupé', '2 ¾ avant o', '1.3', 13, 13, 16, 17), -(99, '', '2 ¾ avant carpé', '2 ¾ avant <', '1.5', 15, 15, 16, 16), -(100, '', 'Assis - demi tour, Assis', 'Assis - ½, Assis', '0.1', 4, 6, 7, 7), -(101, '', 'Assis - ventre tendu', 'Assis - ventre /', '0.1', 4, 5, 7, 7), -(102, '', 'Assis - demi tour, dos', 'Assis - ½, dos', '0.2', 5, 6, 7, 7), -(104, '', 'Dos - ventre tendu', 'Dos - ventre', '0.2', 6, 8, 7, 7), -(105, '', 'Dos - demi tour, dos', 'Dos - ½, dos', '0.3', 5, 9, 7, 7), -(106, '', 'Double full', '2 full', '0.9', 14, 14, 13, 13), -(107, '', 'Triple full', '3 full', '1.1', 16, 16, 14, 14), -(108, '', 'Randy', 'Randy', '1.0', 13, 14, 13, 15), -(109, '', 'Ady', 'Ady', '1.2', 13, 13, 15, 17), -(110, '', 'Rudy out fliffis groupé', 'Rudy out o', '1.3', 13, 13, 14, 14), -(111, '', 'Half In Half Out groupé', 'HIHO o', '1.2', 12, 12, 14, 14), -(112, '', 'Half In Half Out carpé', 'HIHO <', '1.4', 13, 13, 14, 15), -(113, '', 'Half out fliffis groupé', 'Out o', '1.1', 11, 11, 12, 12), -(114, '', 'Half out fliffis carpé', 'Out <', '1.3', 12, 12, 13, 13), -(115, '', 'Full In Rudy Out groupé', 'FIRO o', '1.5', 15, 15, 16, NULL), -(116, '', 'Full In Rudy Out carpé', 'FIRO <', '1.7', 17, 17, 18, NULL), -(117, '', 'Randy out fliffis groupé', 'Randy out o', '1.5', 15, 15, 16, 18), -(118, '', 'Randy out fliffis carpé', 'Randy out <', '1.7', 17, 17, 17, 18), -(119, '', 'Full In Rudy Out tendu', 'FIRO /', '1.7', 18, 18, 18, NULL), -(120, '', 'Half In Half Out tendu', 'HIHO /', '1.4', 15, 15, 16, 16), -(121, '', 'Half In Rudy Out groupé', 'HIRO o', '1.4', 14, 14, 14, 17), -(122, '', 'Half In Rudy Out carpé', 'HIRO <', '1.6', 15, 15, 16, 18), -(123, '', 'Ventre passer tête, arriver dos', 'Ventre passer tête, dos', '0.2', 8, 9, 7, 7), -(125, '', 'Pull-over groupé, arriver ventre', 'PO o, ventre', '0.2', 7, 8, 7, 7), -(126, '', 'Pull-over groupé + demi tour, (plat) dos', 'PO o + ½, (plat) dos', '0.3', 3, 3, 7, 7), -(127, '', 'Back In Full Out groupé', 'Back in Full o', '1.2', 14, 14, 14, NULL), -(128, '', 'Back In Full Out carpé', 'Back in Full <', '1.4', 15, 15, 14, NULL), -(129, '', 'Back In Full Out tendu', 'Back in Full /', '1.4', 15, 15, 14, NULL), -(130, '', 'Full In Full Out groupé', 'FIFO o', '1.4', 16, 16, 15, 17), -(131, '', 'Full In Full Out tendu', 'FIFO /', '1.6', 18, 18, 16, 18), -(132, '', 'Full in full out carpé', 'FIFO <', '1.6', 17, 17, 15, 17), -(133, '', 'Full in 2 full out groupé', 'Miller o', '1.6', 18, 18, 16, NULL), -(135, '', 'Half In Randy Out groupé', 'Half In Randy Out o', '1.4', 15, 15, 17, NULL), -(136, '', 'Full In double Full Out carpé', 'Miller <', '1.8', 19, 19, 16, NULL), -(137, '', 'Full In double Full Out tendu', 'Miller /', '1.8', 20, 20, 17, NULL), -(138, '', 'Half in fliffis groupé', 'Barani in back o', '1.1', 11, 11, 12, NULL), -(139, '', 'Half in fliffis carpé', 'Barani in back <', '1.3', 12, 12, 13, NULL), -(140, '', 'Half In Half Out Triffis groupé', 'Half in trif o', '1.8', 18, 18, 18, NULL), -(141, '', 'Half In Half Out Triffis carpé', 'Half in trif <', '2.1', 21, 21, 18, 19), -(142, '', 'Ventre - vrille, plat dos', 'Ventre - vrille, plat dos', '0.4', 6, 8, 8, 8), -(143, '', 'Vrille et demi, ventre', 'Vrille et ½, ventre', '0.4', 7, 6, 8, 9), -(145, '', 'Dos - vrille, ventre', 'Dos - vrille, ventre', '0.4', 5, 8, 8, 8), -(146, '', 'Assis - vrille et demi, assis', 'Assis - vrille et ½, assis', '0.3', 7, 7, 8, 8), -(148, '', 'Ventre - vrille et demi, ventre', 'Ventre - vrille et ½, ventre', '0.5', 7, 9, 8, 9), -(149, '', '2 Vrilles, assis', '2 Vrilles, assis', '0.4', 8, 8, 9, 10), -(150, '', 'Vrille et demi, dos', 'Vrille et ½, dos', '0.4', 6, 8, 9, 10), -(152, '', 'Ventre - barani', 'Ventre - barani', '0.4', 15, 15, 8, 10), -(153, '', 'Trois quart avant groupé', '¾ Avant o + vrille', '0.3', 6, 7, 8, 9), -(154, '', 'Trois quart avant carpé', '¾ Avant <', '0.3', 7, 8, 8, 9), -(155, '', 'Trois quart avant tendu', '¾ Avant /', '0.3', 8, 10, 8, 9), -(156, '', 'Assis - vrille et demi, dos', 'Assis - vrille et ½, dos', '0.4', 8, 8, 9, 10), -(157, '', 'Assis - salto avant jusqu\'au dos', 'Assis - salto avant, dos', '0.3', 5, 10, 9, 10), -(158, '', 'Cody groupé, arriver ventre', 'Cody o, ventre', '0.5', 10, 10, 9, 10), -(159, '', 'Barani groupé jusqu\'au dos', 'Barani o, dos', '0.7', 7, 11, 9, 10), -(160, '', 'Cody demi carpé', 'Cody L', '0.6', 12, 12, 10, 11), -(161, '', 'Rudy ball out tendu', 'RBO /', '0.9', 12, 14, 11, 13), -(162, '', 'Cody full', 'Cody full', '0.9', 14, 14, 11, 13), -(163, '', 'Randy Ball Out', 'Randy Ball Out', '1.2', 14, 14, 13, 16), -(164, '', 'Prog Rudy Ball Out tendu', 'Full Ball Out /', '0.9', 10, 13, 10, 13), -(165, '', 'Double cody groupé', '2 cody o', '1.1', 12, 12, 13, 18), -(166, '', 'Ventre - out groupé', 'Ventre - out o', '0.9', 13, 13, 12, 13), -(167, '', 'Half out ball out groupé', 'HOBO o', '1.2', 15, 15, 14, 14), -(168, '', 'Half out ball out carpé', 'HOBO <', '1.4', 14, 14, 14, NULL), -(169, '', 'Ball Out groupé', 'BO o', '0.6', 7, 10, 9, 10), -(170, '', 'Ball Out carpé', 'BO <', '0.6', 8, 11, 10, 11), -(171, 'Test de commentaire.\r\n\r\n#### test de titre.\r\ntout plein d\'explication du feu de dieu.', 'Libre', 'Libre', '3.5', 4, 4, NULL, NULL), -(172, '', 'Kaboom arrière groupé', 'Kaboom o', '0.3', 5, 11, 7, 7), -(173, '', 'Kaboom arrière carpé', 'Kaboom <', '0.3', 6, 11, NULL, NULL), -(174, '', 'Kaboom arrière tendu', 'Kaboom /', '0.3', 7, 11, NULL, NULL), -(175, '', 'Kaboom avant groupé', 'Kaboom avant o', '0.3', 7, 11, NULL, NULL), -(176, '', 'Kaboom avant carpé', 'Kaboom avant <', '0.3', 6, 11, NULL, NULL), -(177, '', 'Kaboom avant tendu', 'Kaboom avant /', '0.3', 9, 11, NULL, NULL), -(178, '', 'Assis - demi tour, 4 pattes', 'Assis - ½, 4 pattes', '0.1', 1, 3, 6, 6), -(179, '', '4 pattes - demi tour, Assis', '4 pattes - ½, Assis', '0.1', 1, 3, 6, 6), -(180, '', 'Assis - 4 pattes', 'Assis - 4 pattes', '0.1', 3, 3, 7, 7), -(181, '##### Explication sur le 4pattes - ventre\r\n\r\n - a quoi il sert\r\n - comment\r\n - pourquoi\r\n - …\r\n\r\nle tout par description de l\'entraineur dans la base de données.', '4 pattes - ventre', '4 pattes - ventre', '0.0', 1, 3, 6, 6), -(182, '', 'Debout (du 4 pattes)', 'Debout (4p)', '0.1', 1, 2, 6, 6), -(183, '', 'Rebonds quadrupédique', 'Rebonds 4 pattes', '0.0', 0, 1, 6, 6), -(184, '', 'Rebonds assis', 'Rebonds assis', '0.0', 0, 1, 6, 6), -(185, '', 'Rebonds dos', 'Rebonds dos', '0.0', 1, 1, 6, 6), -(186, '', 'Rebonds ventre', 'Rebonds ventre', '0.0', 1, 3, 6, 6), -(187, '', '4 pattes - demi tour, Dos', '4 pattes - ½, Dos', '0.1', 1, 3, 6, 6), -(188, '', 'Pull-over groupé, arriver assis', 'PO o, assis', '0.3', 5, 7, 7, 7), -(189, '', '4 pattes - poirier', '4 pattes - ATR', '0.1', 3, 5, 7, 7), -(190, '', 'Dos - poirier', 'Dos - ATR', '0.1', 5, 10, 7, 7), -(191, '', 'Dos - demi tour, poirier', 'Dos - ½, ATR', '0.2', 7, 10, NULL, NULL), -(192, '', 'Poirier - Curviligne fermé', 'Poirier - Curviligne fermé', '0.1', 4, 8, 7, 7), -(193, '', 'Kaboom arrière groupé, arriver assis', 'Kaboom o, assis', '0.3', 6, 11, NULL, NULL), -(194, '', 'Kaboom arrière groupé arriver ventre', 'Kaboom o, ventre', '0.2', 6, 11, NULL, NULL), -(195, '', 'Kaboom arrière arriver dos', 'Kaboom, dos', '0.5', 7, 11, NULL, NULL), -(196, '', 'Kaboom arrière arriver poirier', 'Kaboom, ATR', '0.1', 7, 11, NULL, NULL), -(197, '', 'Rebonds curviligne fermé', 'Rebonds curviligne fermé', '0.0', 1, 4, 6, 6), -(198, '', 'Rebonds curviligne ouvert', 'Rebonds curviligne ouvert', '0.0', 1, 4, 6, 6), -(199, '', 'Assis - plat dos (beb)', 'Assis - plat dos (beb)', '0.1', 1, 3, 6, 6), -(200, '', 'Chute faciale - ventre', 'Chute faciale - ventre', '0.0', 2, 2, 6, 6), -(201, '', 'Assis - demi tour, ventre', 'Assis - ½, ventre', '0.2', 2, 4, 6, 6), -(202, '', 'Ventre - demi tour, plat dos', 'Ventre - ½, plat dos', '0.1', 2, 4, 6, 6), -(203, '', 'Plat dos - demi tour, ventre', 'Plat dos - ½, ventre', '0.1', 2, 6, 6, 6), -(204, '', 'Assis - vrille, plat dos', 'Assis - vrille, plat dos', '0.3', 3, 4, 7, 7), -(206, '', '4 pattes - salto avant groupé, curviligne ouvert', '4 pattes - avant o, (', '0.2', 5, 8, 7, 7), -(207, '', '4 pattes - salto avant groupé', '4 pattes - avant o', '0.3', 6, 6, 6, 6), -(208, 'Niveau 3 car on veut être sur que si le 4 pattes se passe mal, l\'élève puisse tomber en ventre (qui lui se trouve au niveau 2)', '4 pattes - assis', '4 pattes - assis', '0.1', 2, 4, 6, 6), -(209, '', 'Ventre - Assis', 'Ventre - Assis', '0.1', 3, 5, 7, 7), -(210, '', 'Ventre - demi tour, Assis', 'Ventre - ½, Assis', '0.1', 2, 5, 6, 6), -(211, '', 'Plat dos - demi tour, 4 pattes', 'Plat dos - ½, 4 pattes', '0.1', 1, 5, 6, 6), -(212, '', 'Dos - vrille et demi, ventre', 'Dos - vrille et ½, ventre', '0.3', 5, 8, NULL, NULL), -(213, '', 'Vrille et demi debout (de l\'assis)', 'Vrille et ½ debout (de l\'assis)', '0.3', 4, 5, 7, 7), -(214, '', 'Vrille debout (de l\'assis) bras en haut puis en bas', 'Vrille debout', '0.2', 3, 4, 7, 7), -(215, '', 'Vrille debout (du dos)', 'Vrille debout (du dos)', '0.3', 5, 8, 7, 7), -(216, '', 'Vrille et demi debout (du dos)', 'Vrille et ½ debout (du dos)', '0.4', 6, 9, NULL, NULL), -(217, '', 'Dos - 4 pattes', 'Dos - 4 pattes', '0.2', 4, 8, 7, 7), -(218, '', 'Dos - Assis', 'Dos - Assis', '0.1', 1, 7, 6, 6), -(219, '', 'Pull-over groupé, arriver 4 pattes', 'PO o, 4 pattes', '0.2', 6, 7, NULL, NULL), -(220, '', 'Prog Rudy Ball Out groupé', 'Full Ball Out o', '0.8', 8, 11, NULL, NULL), -(221, '', 'Prog Rudy Ball Out carpé', 'Full Ball Out <', '0.9', 9, 12, NULL, NULL), -(222, '', 'Cody groupé arriver (plat) dos', 'Cody o, (plat) dos', '0.7', 10, 10, NULL, NULL), -(223, '', 'Cody carpé, arriver (plat) dos', 'Cody <, (plat) dos', '0.8', 11, 11, NULL, NULL), -(224, '', 'Ball Out groupé, arriver ventre', 'BO o, ventre', '0.7', 8, 11, NULL, NULL), -(225, '', 'Ball Out carpé, arriver ventre', 'BO <, ventre', '0.8', 9, 12, NULL, NULL), -(226, '', 'Trois quart Arrière tendu + demi', '¾ Arrière / + ½', '0.4', 10, 10, NULL, NULL), -(227, '', 'Arrière tendu + demi tour', 'Arrière / + ½', '0.6', 11, 11, 10, 10), -(228, '', 'Demi tour piqué', '½ piqué', '0.4', 9, 9, NULL, NULL), -(229, '', 'Half In groupé', 'Half In o', '0.6', 9, 12, NULL, NULL), -(230, '', 'Half In carpé', 'Half In <', '0.6', 10, 12, NULL, NULL), -(231, '', 'Half In groupé, arriver ventre', 'Half In o, ventre', '0.7', 10, 13, NULL, NULL), -(232, '', 'Half In carpé, arriver ventre', 'Half In <, ventre', '0.8', 11, 11, NULL, NULL), -(233, '', 'Prog Half In Half Out groupé', 'Prog HIHO o', '0.9', 11, 11, NULL, NULL), -(234, '', 'Prog Half In Half Out carpé', 'Prog HIHO <', '1.0', 12, 12, NULL, NULL), -(235, '', 'Prog Half In Rudy Out groupé', 'Prog HIRO o', '1.1', 13, 13, NULL, NULL), -(236, '', 'Prog Half In Rudy Out carpé', 'Prog HIRO <', '1.2', 14, 14, NULL, NULL), -(237, '', 'Full arriver dos', 'Full, dos', '0.9', 13, 13, NULL, NULL), -(238, '', 'Rudy arrière arriver ventre', 'Full + ½, ventre', '1.0', 14, 14, NULL, NULL), -(239, '', 'Prog Full In Full Out groupé', 'Prog FIFO o', '1.1', 15, 15, NULL, NULL), -(240, '', 'Prog Full In Full Out carpé', 'Prog FIFO <', '1.2', 16, 16, NULL, NULL), -(241, '', 'Prog Full In Full Out carpé', 'Prog FIFO /', '1.2', 17, 17, NULL, NULL), -(242, '', 'Prog Full In 2 Full Out groupé', 'Prog Miller o', '1.3', 17, 17, NULL, NULL), -(243, '', 'Prog Full In 2 Full Out carpé', 'Prog Miller <', '1.4', 18, 18, NULL, NULL), -(244, '', 'Prog Full In 2 Full Out tendu', 'Prog Miller /', '1.4', 19, 19, NULL, NULL), -(245, '', 'Vrille et demi', 'Vrille et ½', '0.3', 4, 3, NULL, NULL), -(246, '', 'Dos - vrille passer tête arriver dos', 'Dos - vrille passer tête, dos o', '0.7', 9, 9, NULL, NULL), -(247, '', 'Dos - vrille passer tête arriver dos', 'Dos - vrille passer tête <', '0.7', 10, 13, NULL, NULL), -(248, '', 'Jonah ball out groupé', 'Jonah ball out o', '0.7', 9, 12, NULL, NULL), -(249, '', 'Jonah ball out carpé', 'Jonah ball out <', '0.8', 10, 13, NULL, NULL), -(250, '', 'Imposé', 'Imposé', '0.0', 0, 0, NULL, NULL), -(251, '', 'Double full In Double full out', 'Killer (Poliaroush)', '2.0', 21, 21, NULL, NULL), -(252, '', 'Rudy Triffis carpé', 'Rudy Trif <', '2.2', 22, 22, NULL, NULL), -(253, '', 'Half In Randy Out carpé', 'Half In Randy Out <', '1.8', 18, 18, NULL, NULL), -(254, '', 'Rudy In Half Out carpé', 'FIFO <', '1.6', 16, 16, NULL, NULL), -(255, 'Rebondir en chandelle sans utiliser les bras. Les bras restent complètement collés au corps durant l\'exercice.', 'Chandelle bras en bas', '| 1', '0.0', 1, 2, NULL, NULL), -(256, 'Chandelle où les mains sont posées sur les hanches.', 'Chandelle mains aux hanches', '| 2', '0.0', 1, 1, 6, 6), -(257, 'Chandelle où les bras restent tendus, collés au oreilles.', 'Chandelle bras en haut', '| 3', '0.0', 2, 3, NULL, NULL), -(258, '', 'Rudy Triffis groupé', 'Rudy Trif o', '1.9', 19, 19, NULL, NULL), -(259, '', 'Culbute avant', 'Culbute', '0.5', 3, 3, NULL, NULL), -(260, '', 'Culbute avant sans les mains', 'Culbute sans les mains', '0.5', 4, 4, NULL, NULL), -(261, '', 'Culbute avant sans les mains sans la tête', 'Culbute sans les mains sans la tête', '0.5', 5, 5, NULL, NULL), -(262, '', 'Dos - demi tour, ventre', 'Dos - ½, ventre', '0.1', 2, 7, NULL, NULL), -(263, '', 'Double vrille', 'Double vrille', '0.4', 5, 4, NULL, NULL), -(264, '', 'Saut groupé + demi tour', 'o + ½', '0.1', 1, 3, NULL, NULL), -(265, '', 'Saut carpé + demi tour', '< + ½', '0.1', 1, 4, NULL, NULL), -(266, '', 'Saut écart + demi tour', '// + ½', '0.1', 1, 3, NULL, NULL), -(267, '', 'Demi tour + saut groupé', '½ + o', '0.1', 1, 3, NULL, NULL), -(268, '', 'Demi tour + saut carpé', '½ + <', '0.1', 1, 4, NULL, NULL), -(269, '', 'Demi tour + saut écart', '½ + //', '0.1', 1, 3, NULL, NULL), -(270, '', 'Barani puck', 'Barani puck', '0.6', 6, 11, NULL, NULL), -(271, '', 'Salto avant groupé + vrille', 'Avant o + vrille', '0.7', 7, 9, NULL, NULL), -(272, '', 'salto avant carpé + vrille', 'Avant < + vrille', '0.7', 7, 10, NULL, NULL), -(273, '', 'Salto avant tendu + vrille', 'Avant / + vrille', '0.7', 8, 12, NULL, NULL), -(274, '', 'Ball Out Tendu', 'BO /', '0.7', 8, 12, NULL, NULL), -(275, '', 'Rudy Ball out groupé', 'RBO o', '0.9', 9, 13, NULL, NULL), -(276, '', 'Rudy Ball out carpé', 'RBO <', '0.9', 10, 14, NULL, NULL), -(277, '', 'Tomber Assis groupé', 'Assis o', '0.0', 0, 3, NULL, NULL), -(278, '', 'Tomber Assis carpé', 'Assis <', '0.0', 0, 4, NULL, NULL), -(279, '', 'Saut groupé + vrille', 'o + vrille', '0.2', 2, 4, NULL, NULL), -(280, '', 'Saut groupé + vrille et demi', 'o + vrille et ½', '0.3', 3, 5, NULL, NULL), -(281, '', 'Vrille + saut groupé', 'Vrille + o', '0.2', 2, 4, NULL, NULL), -(282, '', 'Vrille et demi + saut groupé', 'Vrille et ½ + o', '0.3', 3, 5, NULL, NULL), -(283, '', 'Double vrille + saut groupé', 'Double vrille + saut groupé', '0.4', 4, 6, NULL, NULL), -(284, '', 'Vrille + saut écart', 'Vrille + //', '0.2', 2, 4, NULL, NULL), -(285, '', 'vrille et demi + saut écart', 'vrille et ½ + //', '0.3', 3, 5, NULL, NULL), -(286, '', 'double vrille + saut écart', 'double vrille + saut écart', '0.4', 4, 6, NULL, NULL), -(287, '', 'Saut écart + vrille', '// + vrille', '0.2', 2, 4, NULL, NULL), -(288, '', 'Saut écart + vrille et demi', '// + vrille et ½', '0.3', 3, 5, NULL, NULL), -(289, '', 'Saut écart + double vrille', '// + 2 vrilles', '0.4', 4, 6, NULL, NULL), -(290, '', 'Saut carpé + vrille', '< + vrille', '0.2', 2, 5, NULL, NULL), -(291, '', 'Saut carpé + vrille et demi', '< + vrille et ½', '0.3', 3, 6, NULL, NULL), -(292, '', 'Saut carpé + double vrille', '< + 2 vrilles', '0.4', 4, 7, NULL, NULL), -(293, '', 'Vrille + saut carpé', 'Vrille + <', '0.2', 2, 5, NULL, NULL), -(294, '', 'Vrille et demi + saut carpé', 'Vrille et ½ + <', '0.3', 3, 6, NULL, NULL), -(295, '', 'Double vrille + saut carpé', 'Double vrille + saut carpé', '0.4', 4, 7, NULL, NULL), -(296, '', 'Demi tour + saut groupé + demi tour', '½ + o + ½', '0.2', 2, 4, NULL, NULL), -(297, '', 'Demi tour + saut carpé + demi tour', '½ + < + ½', '0.2', 2, 5, NULL, NULL), -(298, '', 'demi tour + saut écart + demi tour', '½ + // + ½', '0.2', 2, 4, NULL, NULL), -(299, '', 'demi tour + saut groupé + vrille', '½ + o + vrille', '0.3', 3, 5, NULL, NULL), -(300, '', 'demi tour + saut carpé + vrille', '½ + < + vrille', '0.3', 3, 6, NULL, NULL), -(301, '', 'Demi tour + saut écart + vrille', '½ + // + vrille', '0.3', 3, 5, NULL, NULL), -(302, '', 'Saut groupé + double vrille', 'o + 2 vrilles', '0.4', 4, 6, NULL, NULL), -(303, '', 'Vrille + saut groupé + demi tour', 'Vrille + o + ½', '0.3', 3, 5, NULL, NULL), -(304, '', 'Vrille + saut carpé + demi tour', 'Vrille + < + ½', '0.3', 3, 6, NULL, NULL), -(305, '', 'Vrille + saut écart + demi tour', 'Vrille + // + ½', '0.3', 3, 5, NULL, NULL), -(306, '', 'Vrille + saut écart + vrille', 'Vrille + // + vrille', '0.4', 4, 6, NULL, NULL), -(307, '', 'Vrille + saut groupé + vrille', 'Vrille + o + vrille', '0.4', 4, 6, NULL, NULL), -(308, '', 'Vrille + saut carpé + vrille', 'Vrille + < + vrille', '0.4', 4, 7, NULL, NULL), -(309, '', 'Demi tour + saut groupé + vrille et demi', '½ + o + vrille et ½', '0.5', 5, 6, NULL, NULL), -(310, '', 'Demi tour + saut écart + vrille et demi', '½ + // + vrille et ½', '0.4', 4, 5, NULL, NULL), -(311, '', 'Demi tour + saut carpé + vrille et demi', '½ + < + vrille et ½', '0.4', 4, 7, NULL, NULL), -(312, '', 'Vrille et demi + saut groupé + demi tour', 'Vrille et ½ + o + ½', '0.4', 4, 6, NULL, NULL), -(313, '', 'Vrille et demi + saut écart + demi tour', 'Vrille et ½ + // + ½', '0.4', 4, 6, NULL, NULL), -(314, '', 'Vrille et demi + saut carpé + demi tour', 'Vrille et ½ + < + ½', '0.4', 4, 7, NULL, NULL), -(315, '', 'Cody carpé, arriver ventre', 'Cody <, ventre', '0.5', 5, 11, NULL, NULL), -(316, '', 'Cody tendu, arriver ventre', 'Cody /, ventre', '0.5', 6, 14, NULL, NULL), -(317, '', 'Cody tendu, arriver (plat) dos', 'Cody /, (plat) dos', '0.8', 9, 15, NULL, NULL), -(318, '', 'Rebonds plat dos', 'Rebonds plat dos', '0.0', 1, 1, 7, 7), -(319, '', 'Assis - plat dos (beh)', 'Assis - plat dos (beh)', '0.1', 2, 2, NULL, NULL), -(320, '', 'Demi tour (bras en bas)', 'Demi tour (bras en bas)', '0.1', 2, 2, NULL, NULL), -(321, '', 'Demi tour (bras en haut)', 'Demi tour (bras en haut)', '0.1', 2, 2, NULL, NULL), -(322, '', 'Demi tour (h2b)', '½ tour (h2b)', '0.1', 2, 2, NULL, NULL), -(323, '', 'Demi tour (b2h)', 'Demi tour (b2h)', '0.1', 2, 2, NULL, NULL), -(324, '', 'Assis - vrille et demi, ventre', 'Assis - vrille et ½, ventre', '0.4', 5, 7, 9, 9), -(325, '', 'Ventre - vrille, ventre', 'Ventre - vrille, ventre', '0.2', 3, 5, NULL, NULL), -(326, '', 'Ventre - vrille et demi, dos', 'Ventre - vrille et ½, dos', '0.3', 4, 6, NULL, NULL), -(327, '', 'Assis - double vrille, plat dos', 'Assis - double vrille, plat dos', '0.5', 6, 8, NULL, NULL), -(328, '', 'Assis - ventre groupé', 'Assis - ventre o', '0.1', 1, 5, NULL, NULL), -(329, '', 'Assis - ventre carpé', 'Assis - ventre <', '0.1', 1, 5, NULL, NULL), -(330, '', 'Assis - grouper + demi tour, plat dos', 'Assis - grouper + ½, plat dos', '0.2', 2, 6, NULL, NULL), -(331, '', 'Assis - carper + demi tour, plat dos', 'Assis - carper + ½, plat dos', '0.2', 2, 6, 7, 7), -(332, '', 'Assis - demi tour, plat dos', 'Assis - ½, plat dos', '0.2', 3, 6, 7, 7), -(333, '', 'Assis - grouper + vrille, ventre', 'Assis - grouper + vrille, ventre', '0.3', 3, 7, NULL, NULL), -(334, '', 'Assis - carper + vrille, ventre', 'Assis - carper + vrille, ventre', '0.3', 3, 7, 8, 8), -(335, '', 'Assis - vrille, ventre', 'Assis - vrille, ventre', '0.3', 4, 8, NULL, NULL), -(336, '', 'Assis - grouper + vrille et demi, plat dos', 'Assis - grouper + vrille et ½, plat dos', '0.4', 4, 8, NULL, NULL), -(337, '', 'Assis - carper + vrille et demi, plat dos', 'Assis - carper + vrille et ½, plat dos', '0.4', 4, 8, 9, 9), -(338, '', 'Assis - vrille et demi, plat dos', 'Assis - vrille et ½, plat dos', '0.4', 5, 8, 9, 9), -(340, '', 'Assis - double vrille, ventre', 'Assis - double vrille, ventre', '0.5', 6, 8, NULL, NULL), -(341, '', 'Assis - double vrille et demi, plat dos', 'Assis - double vrille et ½, plat dos', '0.6', 7, 9, NULL, NULL), -(342, '', 'Dos - ventre groupé', 'Dos - ventre groupé', '0.2', 2, 8, NULL, NULL), -(343, '', 'Dos - ventre carpé', 'Dos - ventre carpé', '0.2', 2, 8, NULL, NULL), -(344, '', 'Dos - grouper + demi tour, plat dos', 'Dos - grouper + ½, plat dos', '0.3', 3, 9, NULL, NULL), -(345, '', 'Dos - carper + demi tour, plat dos', 'Dos - carper + ½, plat dos', '0.3', 3, 9, NULL, NULL), -(346, '', 'Dos - grouper + vrille, ventre', 'Dos - grouper + vrille, ventre', '0.4', 4, 10, NULL, NULL), -(347, '', 'Dos - carper + vrille, ventre', 'Dos - carper + vrille, ventre', '0.4', 4, 10, NULL, NULL), -(348, '', 'Dos - demi tour, plat dos', 'Dos - ½, plat dos', '0.3', 4, 10, NULL, NULL), -(351, '', 'Dos - grouper + vrille et demi, plat dos', 'Dos - grouper + vrille et ½, plat dos', '0.5', 5, 11, NULL, NULL), -(352, '', 'Dos - carper + vrille et demi, plat dos', 'Dos - carper + vrille et ½, plat dos', '0.5', 5, 10, NULL, NULL), -(353, '', 'Dos - vrille et demi, plat dos', 'Dos - vrille et ½, plat dos', '0.5', 6, 11, NULL, NULL), -(354, '', 'Dos - double vrille, ventre', 'Dos - double vrille, ventre', '0.6', 7, 12, NULL, NULL), -(355, '', 'Dos - double vrille et demi, plat dos', 'Dos - double vrille et ½, plat dos', '0.7', 8, 12, NULL, NULL), -(356, '', 'Tomber ventre groupé', 'Ventre o', '0.1', 1, 3, NULL, NULL), -(357, '', 'Tomber ventre carpé', 'Ventre <', '0.1', 1, 3, NULL, NULL), -(358, '', 'Tomber ventre en reculant', 'Ventre en reculant', '0.1', 2, 5, NULL, NULL), -(359, '', 'Tomber plat dos en avançant', 'Tomber plat dos en avançant', '0.1', 2, 5, NULL, NULL), -(360, '', 'Curviligne fermé en avançant', 'Curviligne fermé en avançant', '0.1', 2, 5, NULL, NULL), -(361, '', 'Genoux - plat dos groupé', 'Genoux - plat dos groupé', '0.1', 1, 4, NULL, NULL), -(362, '', 'Genoux - plat dos carpé', 'Genoux - plat dos carpé', '0.1', 1, 5, NULL, NULL), -(363, '', 'Genoux - plat dos tendu', 'Genoux - plat dos tendu', '0.1', 2, 6, NULL, NULL), -(364, '', 'Genoux - Assis', 'Genoux - Assis', '0.0', 1, 5, NULL, NULL), -(365, '', 'Tomber genoux', 'Genoux', '0.0', 1, 3, NULL, NULL), -(366, '', 'Debout (de Genoux)', 'Debout (genoux)', '0.0', 1, 1, 6, 6), -(367, '', 'Genoux - salto avant groupé', 'Genoux - avant o', '0.5', 5, 7, NULL, NULL), -(368, '', 'Genoux - salto avant carpé', 'Genoux - avant <', '0.5', 5, 7, NULL, NULL), -(369, '', 'Genoux - Barani groupé', 'Genoux - Barani o', '0.6', 6, 9, NULL, NULL), -(370, '', 'Genoux - Barani carpé', 'Genoux - Barani <', '0.6', 6, 10, NULL, NULL), -(371, '', 'Ventre - plat dos groupé', 'Ventre - plat dos o', '0.2', 2, 4, NULL, NULL), -(372, '', 'Ventre - plat dos carpé', 'Ventre - plat dos <', '0.2', 2, 7, NULL, NULL), -(374, '', 'Genoux - Piqué groupé', 'Genoux - Piqué o', '0.3', 3, 5, NULL, NULL), -(375, '', 'Genoux - Piqué carpé', 'Genoux - Piqué <', '0.3', 3, 5, NULL, NULL), -(376, '', 'Genoux - Piqué tendu', 'Genoux - Piqué', '0.3', 4, 7, NULL, NULL), -(377, '', 'Salto avant tendu, ventre', 'Avant /, ventre', '0.7', 8, 8, NULL, NULL), -(378, '', 'Barani In Full Out puck', 'Barani In Full Out puck', '1.3', 13, 13, NULL, NULL), -(379, '', 'Barani In Full Out demi carpé', 'BIFO L', '1.5', 15, 15, NULL, NULL), -(380, '', '4 pattes - salto avant carpé', '4 pattes - avant <', '0.3', 3, 5, 7, 7), -(381, '', 'Pull-over carpé, arriver assis', 'PO <, assis', '0.3', 3, 6, NULL, NULL), -(382, '', 'Pull-over carpé, arriver 4 pattes', 'PO <, 4 pattes', '0.2', 2, 6, NULL, NULL), -(383, '', 'Pull-over carpé, arriver ventre', 'PO <, ventre', '0.2', 2, 7, NULL, NULL), -(384, '', 'Pull-over tendu, arriver 4 pattes', 'PO /, 4 pattes', '0.2', 3, 7, NULL, NULL), -(385, '', 'Pull-over tendu, arriver ventre', 'PO /, ventre', '0.2', 3, 6, NULL, NULL), -(386, '', 'Pull-over carpé + demi tour, (plat) dos', 'PO < + ½, (plat) dos', '0.3', 3, 8, NULL, NULL), -(387, '', '4 pattes - salto avant carpé, curviligne ouvert', '4 pattes - avant <, (', '0.2', 2, 2, 7, 7), -(388, '', '4 pattes - salto avant tendu, curviligne ouvert', '4 pattes - avant /, (', '0.2', 3, 3, 7, 7), -(389, '', 'Trois quart avant groupé + vrille', '¾ Avant o + vrille', '0.5', 5, 9, NULL, NULL), -(390, '', 'Trois quart avant carpé + vrille', '¾ Avant < + vrille', '0.5', 5, 9, NULL, NULL), -(391, '', 'Vrille (bras en bas)', 'Vrille (beb)', '0.2', 3, 2, NULL, NULL), -(392, '', 'Vrille bras en haut', 'Vrille beh', '0.2', 3, 3, NULL, NULL), -(393, '', 'Vrille bras de bas en haut', 'Vrille b2h', '0.2', 3, 3, NULL, NULL), -(394, '', 'Vrille bras de haut en bas', 'Vrille h2b', '0.2', 3, 3, NULL, NULL), -(395, '', 'Vrille bras en bas, en haut, en bas', 'Vrille bhb', '0.2', 3, 3, NULL, NULL), -(396, '', 'Vrille bras en haut, en bas, en haut', 'Vrille hbh', '0.2', 3, 3, NULL, NULL), -(397, '', 'Double vrille bras en haut', 'Double vrille bras en haut', '0.4', 5, 5, NULL, NULL), -(398, '', 'Double vrille bras en bas', 'Double vrille bras en bas', '0.4', 5, 5, NULL, NULL), -(399, '', 'Double vrille bras de bas en haut', 'Double vrille bras de bas en haut', '0.4', 5, 5, NULL, NULL), -(400, '', 'Double vrille bras de haut en bas', 'Double vrille bras de haut en bas', '0.4', 5, 5, NULL, NULL), -(401, '', 'Vrille et demi bras en bas', 'Vrille et ½ beb', '0.3', 4, 4, NULL, NULL), -(402, '', 'Vrille et demi bras en haut', 'Vrille et ½ beh', '0.3', 4, 4, NULL, NULL), -(403, '', 'Vrille et demi bras de bas en haut', 'Vrille et ½ b2h', '0.3', 4, 4, NULL, NULL), -(404, '', 'Vrille et demi bras de haut en bas', 'Vrille et ½ h2b', '0.3', 4, 4, NULL, NULL), -(405, '', 'Vrille et demi bras en bas, en haut, en bas, en haut', 'Vrille et ½ bhbh', '0.3', 4, 4, NULL, NULL), -(406, '', 'Vrille et demi bras en haut en bas en haut en bas', 'Vrille et ½ bras en haut en bas en haut en bas', '0.3', 4, 4, NULL, NULL), -(407, '', 'Double vrille une vrille beb, une vrille beh', 'Double vrille une vrille beb, une vrille beh', '0.4', 5, 5, NULL, NULL), -(408, '', 'Double vrille une vrille beh, une vrille beb', 'Double vrille une vrille beh, une vrille beb', '0.4', 5, 5, NULL, NULL), -(409, '', 'Half In Half Out puck', 'Half In Half Out puck', '1.2', 12, 13, NULL, NULL), -(410, '', 'Half In Half Out demi carpé', 'HIHO L', '1.4', 14, 14, NULL, NULL), -(411, '', 'Double arrière demi-groupé', '2 back puck', '1.0', 10, 12, NULL, NULL), -(412, '', 'Double arrière demi-carpé', '2 back L', '1.2', 12, 13, NULL, NULL), -(413, '', 'Cody groupé + demi tour, plat-dos', 'Cody o + ½, plat-dos', '0.6', 6, 10, NULL, NULL), -(414, '', 'Cody carpé + demi tour, plat-dos', 'Cody < + ½, plat-dos', '0.6', 6, 11, NULL, NULL), -(415, '', 'Cody groupé + vrille, ventre', 'Cody o + vrille, ventre', '0.7', 7, 11, NULL, NULL), -(416, '', 'Cody carpé + vrille, ventre', 'Cody < + vrille, ventre', '0.7', 7, 12, NULL, NULL), -(417, '', 'Cody groupé + vrille, debout', 'Cody full o', '0.8', 8, 12, NULL, NULL), -(418, '', 'Cody carpé + vrille, debout', 'Cody full <', '0.9', 9, 12, NULL, NULL), -(419, '', 'Cody tendu + demi tour, plat-dos', 'Cody / + ½, plat-dos', '0.6', 7, 15, NULL, NULL), -(420, '', 'Cody tendu + vrille, ventre', 'Cody / + vrille, ventre', '0.7', 8, 16, NULL, NULL), -(421, '', 'Cody tendu + vrille et demi, plat dos', 'Cody tendu + vrille et ½, plat dos', '0.8', 9, 17, NULL, NULL), -(422, '', 'Cody tendu + vrille et demi, debout', 'Cody tendu + vrille et ½, debout', '1.0', 11, 17, NULL, NULL), -(423, '', '4 pattes - Culbute, arriver assis', '4 pattes - Culbute, assis', '0.3', 3, 5, 6, 6), -(424, '', '4 pattes - Culbute, arriver dos', '4 pattes - Culbute, dos', '0.2', 2, 2, 6, 6), -(425, '', 'Kaboom arrière carpé, arriver ventre', 'Kaboom <, ventre', '0.2', 2, 12, NULL, NULL), -(426, '', 'Kaboom arrière tendu, arriver ventre', 'Kaboom /, ventre', '0.2', 3, 13, NULL, NULL), -(427, '(abaisser un bras)', 'Kaboom arrière tendu + demi tour, arriver plat dos', 'Kaboom / + ½, plat dos', '0.3', 4, 13, NULL, NULL), -(428, '', 'Kaboom arrière tendu + vrille, arriver ventre', 'Kaboom / + vrille, ventre', '0.4', 5, 14, NULL, NULL), -(429, '', 'Kaboom arrière - double arrière groupé', 'Kaboom double o', '0.8', 8, 13, NULL, NULL), -(430, '', 'Kaboom arrière tendu, arriver dos', 'Kaboom /, arriver dos', '0.5', 6, 12, NULL, NULL), -(431, '', 'Kaboom arrière - double arrière carpé', 'Kaboom double <', '0.9', 9, 13, NULL, NULL), -(432, '', 'Kaboom arrière tendu + vrille', 'Kaboom Full', '0.5', 6, 13, NULL, NULL), -(433, '', 'Kaboom arrière tendu + vrille, arriver plat dos', 'Kaboom Full, plat dos', '0.7', 8, 14, NULL, NULL), -(434, '', 'Kaboom arrière tendu + vrille et demi, arriver ventre', 'Kaboom Full + ½, ventre', '0.8', 9, 15, NULL, NULL), -(435, '', 'Kaboom arrière tendu + vrille et demi, arriver plat dos', 'Kaboom Full + ½, plat dos', '0.5', 6, 15, NULL, NULL), -(436, '', 'Kaboom arrière tendu + demi tour, debout', 'Kaboom / + ½, debout', '0.4', 5, 14, NULL, NULL), -(437, '', 'Kaboom arrière tendu + vrille et demi', 'Kaboom Full + ½, debout', '0.6', 7, 16, NULL, NULL), -(438, '', 'Kaboom avant groupé, arriver plat dos', 'Kaboom avant o, plat dos', '0.2', 2, 8, NULL, NULL), -(439, '', 'Kaboom avant carpé, arriver plat dos', 'Kaboom avant <, plat dos', '0.2', 2, 8, NULL, NULL), -(440, '', 'Kaboom avant tendu, arriver plat dos', 'Kaboom avant /, plat dos', '0.2', 3, 9, NULL, NULL), -(441, '', 'Kaboom avant groupé + demi tour, arriver 4 pattes', 'Kaboom avant o + demi, 4 pattes', '0.3', 3, 9, NULL, NULL), -(442, '', 'Kaboom avant carpé + demi tour, arriver 4 pattes', 'Kaboom avant < + demi, 4 pattes', '0.3', 3, 9, NULL, NULL), -(443, '', 'Kaboom avant tendu + demi tour, arriver 4 pattes', 'Kaboom avant / + demi, 4 pattes', '0.3', 4, 10, NULL, NULL), -(444, '', 'Kaboom avant groupé + vrille, arriver plat dos', 'Kaboom avant o + vrille, plat dos', '0.4', 4, 10, NULL, NULL), -(445, '', 'Kaboom avant carpé + vrille, arriver plat dos', 'Kaboom avant < + vrille, plat dos', '0.4', 4, 11, NULL, NULL), -(446, '', 'Kaboom avant tendu + vrille, arriver plat dos', 'Kaboom avant / + vrille, plat dos', '0.4', 5, 12, NULL, NULL), -(447, '', 'Vrille debout (du ventre)', 'Vrille debout (du ventre)', '0.3', 4, 8, NULL, NULL), -(448, '', 'Half In trois quart groupé, arriver plat dos', 'Half In trois quart o, plat dos', '0.4', 4, 9, NULL, NULL), -(449, '', 'Half In trois quart carpé, arriver plat dos', 'Half In trois quart <, plat dos', '0.4', 4, 10, NULL, NULL), -(450, '', 'Barani carpé, arriver ventre', 'Barani <, ventre', '0.4', 4, 11, NULL, NULL); -INSERT INTO `objective_educative` (`id`, `content`, `longLabel`, `shortLabel`, `difficulty`, `level`, `rank`, `ageBoy`, `ageGirl`) VALUES -(451, '', 'Barani groupé, arriver ventre', 'Barani o, ventre', '0.4', 4, 9, NULL, NULL), -(452, '', 'Barani tendu, arriver ventre', 'Barani /, ventre', '0.4', 5, 12, NULL, NULL), -(453, '', 'Assis - Dos', 'Assis - Dos', '0.1', 2, 3, NULL, NULL), -(454, '', 'Tomber plat dos tendu bras en bas', 'Plat dos (beb)', '0.1', 2, 2, NULL, NULL), -(455, '', 'Tomber plat dos tendu bras de haut en bas', 'Plat dos (h2b)', '0.1', 2, 5, NULL, NULL), -(456, '', 'Tomber plat dos tendu bras de bas en haut', 'Plat dos (b2h)', '0.1', 2, 2, NULL, NULL), -(457, '', 'Tomber Assis bras en bas', 'Tomber Assis (beb)', '0.0', 1, 1, 6, 6), -(458, '', 'Tomber Assis bras en haut', 'Tomber Assis (b2h)', '0.0', 1, 4, NULL, NULL), -(459, '', 'Debout (de l\'assis) bras en bas', 'Debout (de l\'assis) (beb)', '0.0', 1, 1, 6, 6), -(460, '', 'Debout (de l\'assis) bras en haut', 'Debout (de l\'assis) (beh)', '0.0', 1, 2, NULL, NULL), -(461, '', 'Demi tour debout (de l\'assis) bras en bas', 'Demi tour debout (de l\'assis) (beb)', '0.0', 1, 1, 6, 6), -(462, '', 'Demi tour debout (de l\'assis) bras en haut', 'Demi tour debout (de l\'assis) (beh)', '0.0', 1, 1, 6, 6), -(463, '', 'Vrille debout (de l\'assis) bras en haut', 'Vrille debout (de l\'assis) (beh)', '0.2', 3, 3, NULL, NULL), -(464, '', 'Vrille debout (de l\'assis) bras en bas', 'Vrille debout (de l\'assis) (b2b)', '0.2', 3, 3, NULL, NULL), -(465, '', 'Prog Half out fliffis groupé', '1 ¾ o, plat dos', '0.8', 8, 8, NULL, NULL), -(466, '', 'Prog Half out fliffis carpé', '1 ¾ <, plat dos', '0.9', 9, 9, NULL, NULL), -(467, '', 'Ventre - Poirier', 'Ventre - ATR', '0.1', 2, 6, NULL, NULL), -(468, '', 'Poirier - rouler', 'ATR - roule', '0.1', 1, 5, NULL, NULL), -(469, '', 'Poirier - plat dos', 'Poirier - plat dos', '0.1', 2, 7, NULL, NULL), -(471, '', 'Ball Out tendu, arriver ventre', 'Ball Out /, ventre', '0.8', 9, 13, NULL, NULL), -(472, '', 'Porpus full groupé, arriver plat dos', 'Porpus full o, plat dos', '0.7', 7, 10, NULL, NULL), -(473, '', 'Porpus full carpé, arriver plat dos', 'Porpus full <, plat dos', '0.7', 7, 11, NULL, NULL), -(474, '', 'Porpus full tendu, arriver plat dos', 'Porpus full /, plat dos', '0.7', 8, 12, NULL, NULL), -(475, '', 'Jonah ball out tendu', 'Jonah ball out /', '0.8', 9, 14, NULL, NULL), -(476, '', 'Porpus groupé + demi, arriver ventre', 'Porpus o + demi, ventre', '0.6', 6, 10, NULL, NULL), -(477, '', 'Porpus carpé + demi, arriver ventre', 'Porpus < + demi, ventre', '0.6', 6, 11, NULL, NULL), -(478, '', 'Porpus tendu + demi, arriver ventre', 'Porpus / + demi, ventre', '0.6', 7, 11, NULL, NULL), -(479, '', 'Vrille et demi, tomber ventre', 'Vrille et ½, ventre', '0.4', 5, 6, NULL, NULL), -(480, '', 'Pull-over tendu', 'PO /', '0.3', 4, 9, NULL, NULL), -(481, '', 'Double pull-over groupé', 'Double pull-over o', '0.8', 8, 11, NULL, NULL), -(482, '', 'Double pull-over carpé', 'Double pull-over <', '0.9', 9, 12, NULL, NULL), -(483, '', 'Pull-over tendu + demi tour, (plat) dos', 'PO / + ½, (plat) dos', '0.3', 4, 7, NULL, NULL), -(484, '', 'Pull-over tendu - vrille, ventre', 'PO / - vrille, ventre', '0.4', 5, 8, NULL, NULL), -(485, '', 'Pull-over tendu - vrille et demi, arriver plat dos', 'PO / - vrille et ½, plat dos', '0.5', 6, 6, NULL, NULL), -(486, '', 'Pull-over tendu + demi tour, debout', 'PO / + ½', '0.4', 5, 10, NULL, NULL), -(487, '', 'Pull-over tendu + vrille, debout', 'PO / + vrille, debout', '0.5', 6, 11, NULL, NULL), -(488, '', 'Pull-over tendu + demi tour, arrivée ventre', 'PO / + demi, ventre', '0.6', 7, 11, NULL, NULL), -(489, '', 'Pull-over tendu + vrille, arriver plat-dos', 'PO / + vrille, plat-dos', '0.7', 8, 9, NULL, NULL), -(490, '', 'Pull-over tendu + vrille et demi, arriver ventre', 'PO / + vrille et demi, ventre', '0.8', 9, 10, NULL, NULL), -(492, '', 'Ventre - double vrille, arriver plat dos', 'Ventre - double vrille, plat dos', '0.4', 5, 8, NULL, NULL), -(493, '', 'Ventre - Double vrille, ventre', 'Ventre - Double vrille, ventre', '0.2', 3, 7, NULL, NULL), -(494, NULL, 'Dix Chandelles', '10 |', '0.0', 0, 0, 6, 6), -(495, NULL, 'FfG Imposé D2 Junior 1', 'L1 D2 Junior 1', '4.0', 9, 12, 11, 11), -(496, NULL, 'BOT Imposé -14 ans', 'BOT Imposé -14 ans', '3.5', 9, 13, 10, 11), -(497, NULL, 'BOT imposé -12 ans', 'BOT imposé -12 ans', '2.1', 7, 9, 10, 10), -(498, NULL, 'BOT Imposé -10 ans', 'BOT -10 ans', '0.7', 4, 6, 7, 7), -(499, NULL, 'BOT imposé Fédérale 4', 'BOT F4', '0.7', 4, 7, 7, 7), -(500, NULL, 'BOT Imposé Fédérale 3', 'BOT F3', '1.2', 7, 9, 8, 8), -(501, NULL, 'BOT Imposé Fédérale 2', 'BOT F2', '2.5', 9, 10, 10, 10), -(502, NULL, 'BOT Imposé Fédérale 1', 'BOT F1', '4.2', 10, 13, 10, 11), -(503, NULL, 'BOT Imposé Bronze', 'BOT Imposé Bronze', '0.5', 3, 4, 7, 7), -(504, NULL, 'BOT Imposé Argent', 'BOT Imposé Argent', '0.7', 4, 7, 7, 7), -(505, NULL, 'BOT Imposé Or', 'BOT Imposé Or', '1.2', 7, 9, 8, 8), -(506, NULL, 'FfG Imposé -10 ans (avec bonus)', 'FfG -10 ans (bonus)', '1.6', 7, 9, 10, 10), -(507, NULL, 'FfG Imposé D1 -12 ans', 'FfG Imposé D1 -12 ans', '3.6', 10, 12, 11, 11), -(508, NULL, 'FfG Imposé D1 Senior 1', 'FfG Imposé D1 Senior 1', '10.3', 20, 21, 18, 18), -(509, NULL, 'Safwane\'s L2', 'Safwane\'s L2', '12.0', 18, 18, 18, 18), -(510, NULL, 'Safwane\'s L4', 'Safwane\'s L4', '15.0', 20, 21, 18, 18), -(511, NULL, 'Sebastian\'s L4', 'Sebastian\'s L4', '16.4', 20, 21, 18, 18), -(512, NULL, 'Sebastian\'s L2', 'Sebastian\'s L2', '13.1', 18, 18, 18, 18), -(513, '', 'Prog Half In Triffis groupé', 'Prog Half In Triffis o', '1.4', 14, 14, 17, 18), -(514, '', 'Prog Half In Triffis carré', 'Prog Half In Triffis <', '1.6', 16, 16, 18, 19), -(515, NULL, 'Imposé Roswitha', 'Roswitha\'s L1', '6.9', 13, 15, 14, 15), -(516, NULL, 'Roswitha\'s L2', 'Roswitha\'s L2', '9.1', 15, 16, 14, 15), -(517, NULL, 'Rivoal 02', 'Rivoal 02', '3.4', 10, 11, 10, 10), -(518, NULL, 'Rivoal 03', 'Rivoal 03', '3.6', 9, 12, 11, 11), -(519, NULL, 'Rivoal 04', 'Rivoal 04', '3.9', 9, 12, 11, 11), -(520, NULL, 'Rivoal 05', 'Rivoal 05', '4.2', 10, 11, 10, 10), -(521, NULL, 'Rivoal 01', 'Rivoal 01', '2.4', 9, 10, 10, 10), -(522, NULL, 'Rivoal 06', 'Rivoal 06', '4.5', 9, 12, 11, 11), -(523, NULL, 'Rivoal 07', 'Rivoal 07', '4.8', 10, 11, 10, 10), -(524, NULL, 'Rivoal 08', 'Rivoal 08', '4.9', 12, 13, 10, 10), -(525, NULL, 'Rivoal 09', 'Rivoal 09', '5.0', 12, 13, 11, 11), -(526, NULL, 'Rivoal 10', 'Rivoal 10', '5.4', 12, 13, 10, 10), -(527, NULL, 'Rivoal 11', 'Rivoal 11', '5.5', 12, 13, 10, 10), -(528, NULL, 'Rivoal 12', 'Rivoal 12', '5.7', 12, 13, 11, 11), -(529, NULL, 'Rivoal 13', 'Rivoal 13', '6.0', 12, 14, 11, 11), -(530, NULL, 'Rivoal 14', 'Rivoal 14', '6.2', 12, 13, 12, 12), -(531, NULL, 'Rivoal 15', 'Rivoal 15', '6.5', 12, 14, 12, 12), -(532, NULL, 'Rivoal 16', 'Rivoal 16', '6.7', 12, 12, 12, 12), -(533, NULL, 'Rivoal 17', 'Rivoal 17', '7.0', 12, 14, 12, 12), -(534, NULL, 'Rivoal 18', 'Rivoal 18', '7.0', 12, 13, 14, 14), -(535, NULL, 'Rivoal 19', 'Rivoal 19', '7.0', 12, 13, 13, 13), -(536, NULL, 'Rivoal 20', 'Rivoal 20', '7.4', 12, 14, 12, 12), -(537, NULL, 'Rivoal 21', 'Rivoal 21', '7.7', 12, 13, 13, 13), -(538, NULL, 'Rivoal 22', 'Rivoal 22', '8.1', 12, 13, 13, 13), -(539, NULL, 'Rivoal 23', 'Rivoal 23', '8.4', 12, 15, 13, 13), -(540, NULL, 'Rivoal 24', 'Rivoal 24', '8.5', 12, 15, 13, 13), -(541, NULL, 'Rivoal 25', 'Rivoal 25', '9.1', 12, 15, 14, 14), -(542, NULL, 'Rivoal 26', 'Rivoal 26', '9.4', 14, 15, 14, 13), -(543, NULL, 'Rivoal 27', 'Rivoal 27', '10.0', 15, 16, 14, 15), -(544, NULL, 'Rivoal 28', 'Rivoal 28', '10.4', 15, 16, 14, 15), -(545, NULL, 'Rivoal 29', 'Rivoal 29', '11.1', 16, 17, 15, 17), -(546, NULL, 'Rivoal 30', 'Rivoal 30', '11.4', 16, 16, 15, 17), -(547, NULL, 'Rivoal 31', 'Rivoal 31', '12.0', 16, 16, 15, 17), -(548, NULL, 'Rivoal 32', 'Rivoal 32', '12.5', 16, 16, 15, 17), -(549, NULL, 'Rivoal 33', 'Rivoal 33', '13.1', 18, 19, 16, 18), -(550, NULL, 'Rivoal 34', 'Rivoal 34', '13.3', 18, 18, 18, 18), -(551, NULL, 'Rivoal 35', 'Rivoal 35', '13.7', 18, 18, 18, 18), -(552, NULL, 'Rivoal 36', 'Rivoal 36', '15.0', 22, 23, 18, 18), -(553, '', 'Full in 2 full out carpé', 'Miller <', '1.8', 18, 18, 17, 17), -(554, NULL, 'QDE N1A1', 'QDE N1A1', '0.1', 2, 3, 6, 6), -(555, NULL, 'QDE N1A2', 'QDE N1A2', '0.2', 2, 4, 6, 6), -(556, NULL, 'QDE N1A3', 'QDE N1A3', '0.4', 3, 3, 7, 7), -(557, NULL, 'QDE N1A4', 'QDE N1A4', '0.3', 2, 3, 6, 6), -(558, NULL, 'QDE N1A5', 'QDE N1A5', '0.8', 5, 9, 8, 8), -(559, NULL, 'Sebastian\'s L1', 'Sebastian\'s L1', '11.0', 20, 21, 18, 15); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_educative_educative` --- - -CREATE TABLE `objective_educative_educative` ( - `id` int NOT NULL, - `from_educative_id` int NOT NULL, - `to_educative_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_educative_educative` --- - -INSERT INTO `objective_educative_educative` (`id`, `from_educative_id`, `to_educative_id`) VALUES -(271, 3, 5), -(270, 3, 10), -(211, 5, 184), -(226, 6, 5), -(225, 6, 185), -(227, 6, 199), -(276, 7, 1), -(277, 7, 6), -(274, 8, 3), -(275, 8, 6), -(273, 9, 6), -(272, 9, 185), -(212, 10, 183), -(234, 11, 181), -(235, 11, 197), -(373, 13, 9), -(206, 14, 184), -(217, 15, 182), -(437, 16, 14), -(236, 29, 2), -(436, 34, 201), -(267, 34, 203), -(369, 35, 6), -(366, 35, 9), -(368, 35, 11), -(367, 35, 202), -(357, 39, 185), -(359, 39, 187), -(358, 39, 202), -(361, 39, 203), -(360, 39, 211), -(309, 46, 10), -(398, 47, 10), -(321, 48, 212), -(221, 69, 14), -(220, 69, 28), -(391, 70, 70), -(390, 70, 182), -(364, 71, 16), -(365, 71, 28), -(344, 82, 178), -(345, 82, 179), -(343, 82, 201), -(346, 82, 210), -(376, 85, 178), -(377, 85, 179), -(378, 85, 199), -(375, 85, 201), -(22, 94, 171), -(427, 95, 228), -(355, 100, 5), -(356, 100, 14), -(354, 100, 28), -(352, 100, 68), -(353, 100, 180), -(399, 102, 100), -(400, 102, 199), -(380, 157, 180), -(26, 171, 68), -(90, 171, 69), -(19, 171, 94), -(204, 178, 5), -(205, 178, 183), -(203, 178, 184), -(199, 179, 183), -(198, 179, 184), -(336, 180, 5), -(197, 181, 183), -(207, 182, 183), -(201, 187, 183), -(200, 187, 185), -(339, 189, 6), -(337, 189, 9), -(340, 189, 183), -(338, 189, 197), -(410, 190, 47), -(351, 192, 189), -(350, 192, 197), -(209, 197, 186), -(210, 198, 185), -(202, 199, 184), -(213, 201, 178), -(215, 201, 181), -(216, 201, 199), -(214, 201, 203), -(230, 202, 185), -(231, 202, 186), -(232, 202, 187), -(222, 203, 185), -(262, 204, 82), -(261, 204, 178), -(266, 204, 187), -(263, 204, 199), -(264, 204, 201), -(265, 204, 202), -(318, 207, 206), -(332, 208, 5), -(331, 208, 10), -(333, 208, 182), -(279, 209, 182), -(278, 209, 208), -(330, 210, 179), -(335, 211, 183), -(334, 211, 185), -(421, 212, 203), -(420, 213, 214), -(342, 214, 29), -(341, 214, 69), -(411, 215, 71), -(418, 216, 215), -(407, 218, 184), -(408, 218, 185), -(396, 219, 190); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_educative_prerequisite` --- - -CREATE TABLE `objective_educative_prerequisite` ( - `id` int NOT NULL, - `from_educative_id` int NOT NULL, - `to_educative_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_educative_prerequisite` --- - -INSERT INTO `objective_educative_prerequisite` (`id`, `from_educative_id`, `to_educative_id`) VALUES -(182, 1, 2), -(183, 3, 2), -(184, 4, 2), -(185, 5, 2), -(44, 6, 5), -(43, 7, 6), -(42, 7, 277), -(41, 8, 6), -(40, 8, 278), -(186, 9, 6), -(187, 10, 2), -(159, 11, 10), -(160, 12, 11), -(188, 13, 2), -(189, 13, 6), -(190, 14, 5), -(191, 15, 11), -(192, 16, 9), -(193, 17, 261), -(194, 18, 17), -(176, 19, 155), -(179, 20, 153), -(180, 20, 356), -(177, 21, 154), -(178, 21, 357), -(195, 22, 17), -(196, 22, 207), -(422, 22, 259), -(197, 23, 18), -(199, 23, 380), -(200, 24, 23), -(202, 25, 7), -(201, 25, 46), -(206, 25, 362), -(203, 26, 8), -(205, 26, 47), -(204, 26, 362), -(207, 27, 6), -(208, 28, 2), -(209, 29, 28), -(210, 30, 36), -(212, 31, 22), -(211, 31, 153), -(214, 32, 23), -(213, 32, 154), -(215, 33, 24), -(216, 33, 155), -(9, 34, 6), -(7, 34, 11), -(8, 34, 28), -(217, 35, 11), -(218, 36, 6), -(219, 36, 15), -(288, 36, 372), -(221, 37, 6), -(220, 37, 11), -(222, 37, 15), -(223, 38, 37), -(225, 39, 202), -(226, 39, 262), -(227, 40, 104), -(229, 41, 40), -(228, 41, 104), -(230, 42, 41), -(231, 43, 25), -(232, 44, 26), -(233, 45, 27), -(234, 46, 9), -(235, 47, 9), -(236, 48, 39), -(237, 49, 48), -(238, 50, 125), -(247, 51, 383), -(248, 52, 385), -(174, 53, 22), -(175, 54, 23), -(253, 56, 32), -(250, 57, 33), -(251, 58, 169), -(252, 59, 170), -(254, 60, 274), -(255, 61, 30), -(99, 62, 160), -(256, 63, 46), -(257, 64, 47), -(259, 68, 5), -(258, 68, 28), -(261, 69, 14), -(260, 69, 28), -(263, 70, 15), -(262, 70, 28), -(264, 71, 16), -(265, 71, 28), -(279, 73, 72), -(266, 74, 77), -(293, 75, 389), -(294, 76, 390), -(373, 86, 110), -(372, 86, 276), -(271, 90, 145), -(270, 91, 45), -(269, 92, 91), -(268, 93, 317), -(320, 93, 412), -(272, 95, 226), -(273, 95, 227), -(274, 96, 97), -(275, 97, 98), -(276, 99, 98), -(277, 100, 180), -(139, 104, 101), -(417, 105, 104), -(280, 108, 74), -(278, 109, 108), -(284, 117, 110), -(296, 122, 86), -(295, 122, 112), -(246, 125, 125), -(245, 126, 125), -(286, 135, 121), -(423, 141, 140), -(145, 145, 348), -(98, 160, 223), -(35, 161, 164), -(287, 163, 161), -(396, 164, 474), -(420, 192, 469), -(402, 212, 39), -(394, 220, 472), -(395, 221, 473), -(1, 237, 95), -(2, 238, 237), -(3, 239, 238), -(4, 240, 239), -(6, 242, 240), -(5, 243, 242), -(285, 253, 135), -(10, 260, 259), -(11, 261, 260), -(12, 263, 245), -(13, 264, 1), -(14, 264, 28), -(15, 265, 3), -(16, 265, 28), -(18, 266, 4), -(17, 266, 28), -(19, 267, 1), -(20, 267, 28), -(21, 268, 3), -(22, 268, 28), -(24, 269, 4), -(23, 269, 28), -(26, 270, 31), -(25, 270, 32), -(27, 271, 31), -(28, 272, 32), -(29, 273, 33), -(31, 274, 42), -(30, 274, 170), -(33, 275, 220), -(34, 276, 221), -(36, 277, 1), -(37, 277, 5), -(38, 278, 3), -(39, 278, 5), -(45, 279, 264), -(46, 280, 279), -(47, 281, 267), -(48, 282, 281), -(49, 283, 282), -(50, 284, 269), -(51, 285, 284), -(52, 286, 285), -(53, 287, 266), -(54, 288, 287), -(55, 290, 265), -(56, 291, 290), -(57, 292, 291), -(58, 293, 268), -(59, 294, 293), -(60, 295, 294), -(61, 296, 264), -(62, 296, 267), -(63, 297, 265), -(64, 297, 268), -(65, 298, 266), -(66, 298, 269), -(67, 299, 296), -(68, 300, 297), -(69, 301, 298), -(70, 302, 280), -(71, 303, 296), -(72, 304, 297), -(73, 305, 298), -(75, 306, 284), -(77, 306, 287), -(76, 306, 301), -(74, 306, 305), -(81, 307, 279), -(78, 307, 281), -(79, 307, 299), -(80, 307, 303), -(83, 308, 290), -(85, 308, 293), -(84, 308, 300), -(82, 308, 304), -(86, 309, 307), -(88, 310, 301), -(89, 311, 300), -(90, 312, 282), -(91, 312, 303), -(93, 313, 285), -(92, 313, 305), -(95, 314, 294), -(94, 314, 304), -(96, 315, 61), -(97, 315, 158), -(100, 316, 315), -(101, 317, 62), -(102, 319, 5), -(105, 324, 5), -(104, 324, 11), -(103, 324, 201), -(106, 324, 245), -(107, 325, 11), -(108, 325, 29), -(109, 326, 9), -(110, 326, 11), -(111, 326, 150), -(112, 327, 204), -(113, 328, 180), -(114, 329, 180), -(115, 330, 328), -(116, 331, 329), -(117, 332, 101), -(118, 333, 330), -(119, 334, 331), -(120, 335, 332), -(121, 336, 333), -(122, 337, 334), -(125, 340, 338), -(126, 341, 340), -(127, 342, 217), -(133, 342, 328), -(132, 343, 329), -(128, 343, 342), -(129, 344, 342), -(130, 345, 331), -(131, 345, 343), -(135, 346, 84), -(134, 346, 345), -(136, 347, 345), -(140, 348, 104), -(138, 348, 332), -(147, 351, 145), -(148, 351, 338), -(149, 352, 337), -(150, 352, 347), -(151, 353, 145), -(152, 353, 324), -(154, 354, 340), -(153, 354, 353), -(156, 355, 341), -(155, 355, 354), -(157, 356, 1), -(158, 356, 11), -(161, 357, 3), -(162, 357, 11), -(163, 358, 11), -(164, 359, 6), -(165, 360, 359), -(166, 361, 7), -(167, 362, 8), -(169, 371, 7), -(168, 371, 186), -(170, 372, 8), -(171, 372, 11), -(173, 377, 24), -(181, 379, 66), -(198, 380, 207), -(239, 381, 47), -(240, 382, 219), -(241, 383, 382), -(242, 384, 382), -(243, 385, 384), -(244, 386, 383), -(289, 387, 206), -(290, 388, 387), -(291, 389, 153), -(292, 390, 154), -(297, 391, 28), -(298, 392, 28), -(299, 393, 28), -(300, 394, 28), -(301, 395, 28), -(302, 396, 28), -(303, 397, 245), -(304, 398, 245), -(305, 399, 245), -(306, 400, 245), -(309, 401, 391), -(308, 402, 392), -(310, 403, 393), -(311, 404, 394), -(312, 405, 395), -(313, 406, 396), -(314, 407, 263), -(315, 408, 263), -(316, 409, 111), -(317, 410, 112), -(318, 411, 91), -(319, 412, 92), -(321, 413, 158), -(322, 414, 315), -(323, 415, 413), -(324, 416, 414), -(325, 416, 415), -(326, 417, 30), -(327, 417, 415), -(329, 418, 61), -(328, 418, 416), -(330, 419, 316), -(331, 420, 419), -(332, 421, 420), -(333, 422, 162), -(334, 422, 421), -(335, 424, 208), -(336, 425, 194), -(337, 426, 425), -(338, 427, 426), -(339, 428, 427), -(342, 429, 430), -(341, 430, 174), -(343, 431, 429), -(345, 432, 174), -(344, 432, 428), -(346, 433, 432), -(347, 434, 433), -(348, 435, 428), -(350, 436, 174), -(349, 436, 427), -(351, 437, 432), -(352, 437, 435), -(353, 439, 438), -(354, 440, 439), -(355, 441, 438), -(356, 442, 441), -(357, 443, 442), -(358, 444, 441), -(359, 445, 444), -(360, 446, 445), -(361, 447, 70), -(363, 448, 50), -(362, 448, 153), -(364, 449, 448), -(365, 450, 32), -(366, 451, 31), -(367, 452, 33), -(368, 453, 319), -(369, 454, 199), -(370, 455, 6), -(371, 456, 319), -(374, 458, 199), -(375, 460, 459), -(376, 461, 5), -(377, 462, 461), -(378, 463, 462), -(379, 464, 461), -(380, 465, 53), -(383, 465, 225), -(381, 466, 54), -(382, 466, 224), -(384, 467, 189), -(385, 468, 189), -(386, 469, 468), -(388, 471, 274), -(389, 472, 40), -(391, 473, 41), -(390, 473, 472), -(393, 474, 42), -(392, 474, 473), -(397, 475, 249), -(398, 476, 40), -(399, 477, 41), -(400, 478, 42), -(401, 479, 84), -(403, 480, 47), -(405, 481, 63), -(404, 481, 222), -(406, 482, 481), -(407, 483, 385), -(408, 484, 483), -(409, 485, 484), -(410, 486, 480), -(411, 486, 483), -(412, 487, 486), -(413, 488, 486), -(414, 489, 484), -(415, 490, 489), -(418, 492, 38), -(419, 493, 326), -(421, 494, 250), -(424, 553, 132); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_evaluation` --- - -CREATE TABLE `objective_evaluation` ( - `id` int NOT NULL, - `date` date NOT NULL, - `value` smallint UNSIGNED NOT NULL, - `type_of_evaluator` tinyint(1) NOT NULL, - `educative_id` int NOT NULL, - `evaluator_id` int DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `objective_routine` --- - -CREATE TABLE `objective_routine` ( - `educative_ptr_id` int NOT NULL, - `active` tinyint(1) NOT NULL, - `is_competitive` tinyint(1) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_routine` --- - -INSERT INTO `objective_routine` (`educative_ptr_id`, `active`, `is_competitive`) VALUES -(494, 1, 1), -(495, 1, 1), -(496, 1, 1), -(497, 1, 1), -(498, 1, 1), -(499, 1, 1), -(500, 1, 1), -(501, 1, 1), -(502, 1, 1), -(503, 1, 1), -(504, 1, 1), -(505, 1, 1), -(506, 1, 1), -(507, 1, 1), -(508, 1, 1), -(509, 1, 1), -(510, 1, 1), -(511, 1, 1), -(512, 1, 1), -(515, 1, 1), -(516, 1, 1), -(517, 1, 1), -(518, 1, 1), -(519, 1, 1), -(520, 1, 1), -(521, 1, 1), -(522, 1, 1), -(523, 1, 1), -(524, 1, 1), -(525, 1, 1), -(526, 1, 1), -(527, 1, 1), -(528, 1, 1), -(529, 1, 1), -(530, 1, 1), -(531, 1, 1), -(532, 1, 1), -(533, 1, 1), -(534, 1, 1), -(535, 1, 1), -(536, 1, 1), -(537, 1, 1), -(538, 1, 1), -(539, 1, 1), -(540, 1, 1), -(541, 1, 1), -(542, 1, 1), -(543, 1, 1), -(544, 1, 1), -(545, 1, 1), -(546, 1, 1), -(547, 1, 1), -(548, 1, 1), -(549, 1, 1), -(550, 1, 1), -(551, 1, 1), -(552, 1, 1), -(554, 1, 0), -(555, 1, 0), -(556, 1, 0), -(557, 1, 0), -(558, 1, 0), -(559, 1, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_routine_skill` --- - -CREATE TABLE `objective_routine_skill` ( - `id` int NOT NULL, - `rank` smallint UNSIGNED NOT NULL, - `routine_id` int NOT NULL, - `skill_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_routine_skill` --- - -INSERT INTO `objective_routine_skill` (`id`, `rank`, `routine_id`, `skill_id`) VALUES -(1, 1, 494, 2), -(2, 2, 494, 2), -(3, 3, 494, 2), -(4, 4, 494, 2), -(5, 5, 494, 2), -(6, 6, 494, 2), -(7, 7, 494, 2), -(8, 8, 494, 2), -(9, 9, 494, 2), -(10, 10, 494, 2), -(11, 1, 495, 27), -(12, 2, 495, 33), -(13, 3, 495, 3), -(14, 4, 495, 32), -(15, 5, 495, 26), -(16, 6, 495, 1), -(17, 7, 495, 31), -(18, 8, 495, 4), -(19, 9, 495, 19), -(20, 10, 495, 58), -(21, 1, 496, 27), -(22, 2, 496, 68), -(23, 3, 496, 69), -(24, 4, 496, 1), -(25, 5, 496, 26), -(26, 6, 496, 32), -(27, 7, 496, 25), -(28, 8, 496, 4), -(29, 9, 496, 19), -(30, 10, 496, 59), -(31, 1, 497, 25), -(32, 2, 497, 31), -(33, 3, 497, 3), -(34, 4, 497, 11), -(35, 5, 497, 15), -(36, 6, 497, 1), -(37, 7, 497, 68), -(38, 8, 497, 69), -(39, 9, 497, 3), -(40, 10, 497, 23), -(41, 1, 498, 34), -(42, 2, 498, 15), -(56, 3, 498, 4), -(57, 4, 498, 5), -(58, 5, 498, 14), -(59, 6, 498, 3), -(60, 7, 498, 28), -(61, 8, 498, 1), -(62, 9, 498, 9), -(63, 10, 498, 71), -(72, 1, 499, 11), -(73, 2, 499, 15), -(74, 3, 499, 68), -(76, 4, 499, 14), -(77, 5, 499, 1), -(80, 7, 499, 5), -(81, 7, 499, 69), -(82, 8, 499, 4), -(83, 9, 499, 9), -(84, 10, 499, 71), -(85, 1, 500, 68), -(86, 2, 500, 69), -(87, 3, 500, 3), -(88, 4, 500, 11), -(89, 5, 500, 16), -(90, 6, 500, 1), -(91, 7, 500, 9), -(92, 8, 500, 71), -(93, 9, 500, 4), -(94, 10, 500, 25), -(95, 1, 501, 27), -(96, 2, 501, 68), -(97, 3, 501, 69), -(98, 4, 501, 3), -(99, 5, 501, 26), -(100, 6, 501, 1), -(101, 7, 501, 32), -(102, 8, 501, 4), -(103, 9, 501, 19), -(104, 10, 501, 71), -(105, 1, 502, 52), -(106, 2, 502, 30), -(107, 3, 502, 4), -(108, 4, 502, 27), -(109, 5, 502, 32), -(110, 6, 502, 26), -(111, 7, 502, 1), -(112, 8, 502, 25), -(113, 9, 502, 19), -(114, 10, 502, 59), -(115, 1, 503, 68), -(116, 2, 503, 14), -(117, 3, 503, 4), -(118, 4, 503, 28), -(119, 5, 503, 3), -(120, 6, 503, 11), -(121, 7, 503, 15), -(122, 8, 503, 1), -(123, 9, 503, 5), -(124, 10, 503, 69), -(125, 1, 505, 68), -(126, 2, 505, 69), -(127, 3, 505, 3), -(128, 4, 505, 11), -(129, 5, 505, 15), -(130, 6, 505, 1), -(131, 7, 505, 9), -(132, 8, 505, 71), -(133, 9, 505, 4), -(134, 10, 505, 25), -(135, 1, 504, 11), -(136, 2, 504, 16), -(137, 3, 504, 68), -(138, 4, 504, 14), -(139, 5, 504, 1), -(140, 6, 504, 5), -(141, 7, 504, 69), -(142, 8, 504, 4), -(143, 9, 504, 9), -(144, 10, 504, 71), -(145, 1, 506, 25), -(146, 2, 506, 68), -(147, 3, 506, 14), -(148, 4, 506, 4), -(149, 5, 506, 34), -(150, 6, 506, 15), -(151, 7, 506, 3), -(152, 8, 506, 28), -(153, 9, 506, 1), -(154, 10, 506, 31), -(155, 1, 507, 19), -(156, 2, 507, 58), -(157, 3, 507, 4), -(158, 4, 507, 27), -(159, 5, 507, 33), -(160, 6, 507, 1), -(161, 7, 507, 25), -(162, 8, 507, 3), -(163, 9, 507, 52), -(164, 10, 507, 30), -(165, 1, 508, 96), -(166, 2, 508, 122), -(167, 3, 508, 32), -(168, 4, 508, 27), -(169, 5, 508, 33), -(170, 6, 508, 95), -(171, 7, 508, 31), -(172, 8, 508, 25), -(173, 9, 508, 67), -(174, 10, 508, 131), -(175, 1, 509, 97), -(176, 2, 509, 112), -(177, 3, 509, 113), -(179, 4, 509, 111), -(180, 5, 509, 110), -(182, 6, 509, 92), -(183, 7, 509, 33), -(184, 8, 509, 91), -(185, 9, 509, 114), -(186, 10, 509, 93), -(187, 1, 510, 96), -(188, 2, 510, 112), -(189, 3, 510, 97), -(190, 4, 510, 111), -(191, 5, 510, 110), -(192, 6, 510, 92), -(193, 7, 510, 114), -(194, 8, 510, 122), -(195, 9, 510, 86), -(196, 10, 510, 137), -(197, 1, 511, 96), -(198, 2, 511, 140), -(199, 3, 511, 97), -(200, 4, 511, 122), -(201, 5, 511, 86), -(202, 6, 511, 112), -(203, 7, 511, 114), -(204, 8, 511, 254), -(205, 9, 511, 119), -(206, 10, 511, 137), -(207, 1, 512, 97), -(208, 2, 512, 111), -(209, 3, 512, 113), -(210, 4, 512, 91), -(211, 5, 512, 110), -(212, 6, 512, 92), -(213, 7, 512, 110), -(214, 8, 512, 112), -(215, 9, 512, 114), -(216, 10, 512, 131), -(217, 1, 515, 52), -(218, 2, 515, 30), -(219, 3, 515, 25), -(220, 4, 515, 95), -(221, 5, 515, 26), -(222, 6, 515, 33), -(223, 7, 515, 92), -(224, 8, 515, 31), -(225, 9, 515, 27), -(226, 10, 515, 93), -(227, 1, 516, 86), -(228, 2, 516, 27), -(229, 3, 516, 113), -(230, 4, 516, 91), -(231, 5, 516, 33), -(232, 6, 516, 26), -(233, 7, 516, 114), -(234, 8, 516, 25), -(235, 9, 516, 73), -(236, 10, 516, 161), -(237, 1, 517, 52), -(238, 2, 517, 30), -(239, 3, 517, 4), -(240, 4, 517, 27), -(241, 5, 517, 32), -(242, 6, 517, 34), -(243, 7, 517, 15), -(244, 8, 517, 3), -(245, 9, 517, 19), -(246, 10, 517, 58), -(247, 1, 518, 27), -(248, 2, 518, 33), -(249, 3, 518, 26), -(250, 4, 518, 34), -(251, 5, 518, 15), -(252, 6, 518, 3), -(253, 7, 518, 25), -(254, 8, 518, 4), -(255, 9, 518, 19), -(256, 10, 518, 58), -(257, 1, 519, 27), -(258, 2, 519, 32), -(259, 3, 519, 1), -(260, 4, 519, 25), -(261, 5, 519, 33), -(262, 6, 519, 3), -(263, 7, 519, 26), -(264, 8, 519, 4), -(265, 9, 519, 19), -(266, 10, 519, 58), -(267, 1, 520, 52), -(268, 2, 520, 30), -(269, 3, 520, 4), -(270, 4, 520, 27), -(271, 5, 520, 32), -(272, 6, 520, 26), -(273, 7, 520, 1), -(274, 8, 520, 25), -(275, 9, 520, 19), -(276, 10, 520, 58), -(277, 1, 521, 27), -(278, 2, 521, 68), -(279, 3, 521, 69), -(280, 4, 521, 1), -(281, 5, 521, 25), -(282, 6, 521, 3), -(283, 7, 521, 31), -(284, 8, 521, 4), -(285, 9, 521, 19), -(286, 10, 521, 71), -(287, 1, 524, 52), -(288, 2, 524, 30), -(289, 3, 524, 25), -(290, 4, 524, 32), -(291, 5, 524, 95), -(292, 6, 524, 31), -(293, 7, 524, 4), -(294, 8, 524, 23), -(295, 9, 524, 19), -(296, 10, 524, 58), -(297, 1, 523, 52), -(298, 2, 523, 30), -(299, 3, 523, 27), -(300, 4, 523, 32), -(301, 5, 523, 26), -(302, 6, 523, 4), -(303, 7, 523, 31), -(304, 8, 523, 25), -(305, 9, 523, 19), -(306, 10, 523, 58), -(307, 1, 522, 19), -(308, 2, 522, 58), -(309, 3, 522, 25), -(310, 4, 522, 33), -(311, 5, 522, 4), -(312, 6, 522, 27), -(313, 7, 522, 32), -(314, 8, 522, 3), -(315, 9, 522, 26), -(316, 10, 522, 33), -(317, 1, 525, 52), -(318, 2, 525, 30), -(319, 3, 525, 25), -(321, 5, 525, 32), -(322, 6, 525, 95), -(323, 7, 525, 74), -(324, 8, 525, 4), -(325, 9, 525, 25), -(326, 10, 525, 19), -(327, 11, 525, 58), -(328, 1, 526, 52), -(329, 2, 526, 30), -(330, 3, 526, 25), -(331, 4, 526, 32), -(332, 5, 526, 95), -(333, 6, 526, 25), -(334, 7, 526, 31), -(335, 8, 526, 26), -(336, 9, 526, 19), -(337, 10, 526, 58), -(339, 2, 527, 52), -(340, 3, 527, 30), -(341, 4, 527, 27), -(342, 5, 527, 32), -(343, 6, 527, 95), -(344, 7, 527, 31), -(345, 8, 527, 26), -(346, 9, 527, 25), -(347, 10, 527, 19), -(348, 11, 527, 58), -(349, 1, 528, 52), -(350, 2, 528, 30), -(351, 3, 528, 27), -(352, 4, 528, 32), -(353, 5, 528, 95), -(354, 6, 528, 74), -(355, 7, 528, 25), -(356, 8, 528, 26), -(357, 9, 528, 19), -(358, 10, 528, 58), -(359, 1, 529, 27), -(360, 2, 529, 33), -(361, 3, 529, 95), -(362, 4, 529, 32), -(363, 5, 529, 26), -(364, 6, 529, 74), -(365, 7, 529, 31), -(366, 8, 529, 25), -(367, 9, 529, 19), -(368, 10, 529, 58), -(369, 1, 530, 52), -(370, 2, 530, 30), -(371, 3, 530, 26), -(372, 4, 530, 33), -(373, 5, 530, 95), -(374, 6, 530, 32), -(375, 7, 530, 25), -(376, 8, 530, 31), -(377, 9, 530, 27), -(378, 10, 530, 113), -(379, 1, 531, 113), -(380, 2, 531, 27), -(381, 3, 531, 33), -(382, 4, 531, 95), -(383, 5, 531, 74), -(384, 6, 531, 26), -(385, 7, 531, 32), -(386, 8, 531, 25), -(387, 9, 531, 19), -(388, 10, 531, 58), -(389, 1, 532, 91), -(390, 2, 532, 113), -(391, 3, 532, 26), -(392, 4, 532, 33), -(393, 5, 532, 27), -(394, 6, 532, 95), -(395, 7, 532, 32), -(396, 8, 532, 25), -(397, 9, 532, 19), -(398, 10, 532, 58), -(399, 1, 533, 113), -(400, 2, 533, 27), -(401, 3, 533, 33), -(402, 4, 533, 95), -(403, 5, 533, 74), -(404, 6, 533, 26), -(405, 7, 533, 32), -(406, 8, 533, 25), -(407, 9, 533, 72), -(408, 10, 533, 58), -(410, 2, 534, 52), -(411, 3, 534, 30), -(412, 4, 534, 26), -(413, 5, 534, 33), -(414, 6, 534, 27), -(415, 7, 534, 95), -(416, 8, 534, 74), -(417, 9, 534, 25), -(418, 10, 534, 113), -(419, 11, 534, 111), -(420, 1, 535, 114), -(421, 2, 535, 27), -(422, 3, 535, 33), -(423, 4, 535, 95), -(424, 5, 535, 32), -(425, 6, 535, 26), -(426, 7, 535, 31), -(427, 8, 535, 25), -(428, 9, 535, 72), -(429, 10, 535, 58), -(430, 1, 536, 113), -(431, 2, 536, 91), -(432, 3, 536, 33), -(433, 4, 536, 95), -(434, 5, 536, 74), -(436, 7, 536, 26), -(437, 8, 536, 32), -(438, 9, 536, 25), -(439, 10, 536, 72), -(440, 11, 536, 58), -(441, 1, 537, 114), -(442, 2, 537, 27), -(443, 3, 537, 113), -(444, 4, 537, 95), -(445, 5, 537, 74), -(446, 6, 537, 26), -(447, 7, 537, 32), -(448, 8, 537, 25), -(449, 9, 537, 72), -(450, 10, 537, 58), -(451, 1, 538, 114), -(452, 2, 538, 91), -(453, 3, 538, 113), -(454, 4, 538, 95), -(455, 5, 538, 74), -(456, 6, 538, 26), -(457, 7, 538, 32), -(458, 8, 538, 25), -(459, 9, 538, 72), -(460, 10, 538, 58), -(461, 1, 539, 114), -(462, 2, 539, 27), -(463, 3, 539, 113), -(464, 4, 539, 91), -(465, 5, 539, 33), -(466, 6, 539, 95), -(467, 7, 539, 74), -(468, 8, 539, 26), -(469, 9, 539, 72), -(470, 10, 539, 161), -(471, 1, 540, 114), -(472, 2, 540, 91), -(473, 3, 540, 113), -(474, 4, 540, 27), -(475, 5, 540, 74), -(476, 6, 540, 26), -(477, 7, 540, 33), -(478, 8, 540, 95), -(479, 9, 540, 73), -(480, 10, 540, 161), -(481, 1, 541, 114), -(482, 2, 541, 111), -(483, 3, 541, 113), -(484, 4, 541, 91), -(485, 5, 541, 74), -(486, 6, 541, 26), -(487, 7, 541, 33), -(488, 8, 541, 95), -(489, 9, 541, 73), -(490, 10, 541, 161), -(491, 1, 542, 127), -(492, 2, 542, 114), -(493, 3, 542, 91), -(494, 4, 542, 113), -(495, 5, 542, 95), -(496, 6, 542, 74), -(497, 7, 542, 106), -(498, 8, 542, 26), -(499, 9, 542, 73), -(500, 10, 542, 161), -(501, 1, 543, 86), -(502, 2, 543, 111), -(503, 3, 543, 114), -(504, 4, 543, 91), -(505, 5, 543, 113), -(506, 6, 543, 95), -(507, 7, 543, 74), -(508, 8, 543, 26), -(509, 9, 543, 73), -(510, 10, 543, 161), -(511, 1, 544, 86), -(512, 2, 544, 91), -(513, 3, 544, 110), -(514, 4, 544, 27), -(515, 5, 544, 114), -(517, 7, 544, 92), -(518, 8, 544, 113), -(519, 9, 544, 26), -(520, 10, 544, 73), -(521, 11, 544, 161), -(522, 1, 545, 130), -(523, 2, 545, 65), -(524, 3, 545, 127), -(526, 5, 545, 114), -(527, 6, 545, 111), -(528, 7, 545, 113), -(529, 8, 545, 91), -(530, 9, 545, 74), -(531, 10, 545, 73), -(532, 11, 545, 161), -(533, 1, 546, 86), -(534, 2, 546, 92), -(535, 3, 546, 114), -(536, 4, 546, 111), -(537, 5, 546, 113), -(538, 6, 546, 91), -(539, 7, 546, 74), -(540, 8, 546, 26), -(541, 9, 546, 65), -(542, 10, 546, 130), -(543, 1, 552, 96), -(544, 2, 552, 112), -(545, 3, 552, 97), -(546, 4, 552, 121), -(547, 5, 552, 86), -(548, 6, 552, 111), -(549, 7, 552, 67), -(550, 8, 552, 130), -(551, 9, 552, 114), -(552, 10, 552, 131), -(553, 1, 551, 97), -(554, 2, 551, 112), -(555, 3, 551, 86), -(556, 4, 551, 121), -(557, 5, 551, 110), -(558, 6, 551, 91), -(559, 7, 551, 65), -(560, 8, 551, 130), -(561, 9, 551, 113), -(562, 10, 551, 131), -(563, 1, 550, 97), -(564, 2, 550, 111), -(565, 3, 550, 86), -(566, 4, 550, 92), -(567, 5, 550, 114), -(568, 6, 550, 91), -(569, 7, 550, 65), -(570, 8, 550, 130), -(571, 9, 550, 113), -(572, 10, 550, 131), -(573, 1, 549, 86), -(574, 2, 549, 112), -(575, 3, 549, 110), -(576, 4, 549, 111), -(577, 5, 549, 65), -(578, 6, 549, 130), -(579, 7, 549, 114), -(580, 8, 549, 91), -(581, 9, 549, 113), -(582, 10, 549, 131), -(583, 1, 548, 86), -(584, 2, 548, 92), -(585, 3, 548, 114), -(586, 4, 548, 111), -(587, 5, 548, 113), -(588, 6, 548, 91), -(589, 7, 548, 110), -(590, 8, 548, 127), -(591, 9, 548, 65), -(592, 10, 548, 130), -(593, 1, 547, 86), -(594, 2, 547, 92), -(595, 3, 547, 114), -(596, 4, 547, 111), -(597, 5, 547, 113), -(598, 6, 547, 91), -(599, 7, 547, 74), -(600, 8, 547, 127), -(601, 9, 547, 65), -(602, 10, 547, 130), -(603, 1, 554, 5), -(604, 2, 554, 14), -(605, 3, 554, 1), -(606, 4, 554, 323), -(607, 5, 554, 4), -(608, 1, 555, 68), -(609, 2, 555, 14), -(610, 3, 555, 1), -(611, 4, 555, 5), -(612, 5, 555, 69), -(613, 1, 556, 4), -(614, 2, 556, 68), -(615, 3, 556, 69), -(616, 4, 556, 3), -(617, 5, 556, 29), -(618, 1, 557, 5), -(620, 3, 557, 68), -(621, 4, 557, 14), -(622, 5, 557, 1), -(623, 6, 557, 29), -(624, 1, 558, 68), -(625, 2, 558, 68), -(626, 3, 558, 69), -(627, 4, 558, 4), -(628, 5, 558, 22), -(629, 1, 559, 96), -(630, 2, 559, 112), -(632, 4, 559, 86), -(633, 5, 559, 27), -(634, 6, 559, 33), -(635, 7, 559, 95), -(636, 8, 559, 26), -(637, 9, 559, 25), -(638, 10, 559, 114), -(639, 11, 559, 137); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_skill` --- - -CREATE TABLE `objective_skill` ( - `educative_ptr_id` int NOT NULL, - `position` varchar(2) NOT NULL, - `rotationType` smallint UNSIGNED NOT NULL, - `rotation` smallint UNSIGNED NOT NULL, - `twist` smallint UNSIGNED NOT NULL, - `notation` varchar(25) NOT NULL, - `simplyNotation` varchar(25) NOT NULL, - `is_competitive` tinyint(1) NOT NULL, - `departure_id` int NOT NULL, - `landing_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_skill` --- - -INSERT INTO `objective_skill` (`educative_ptr_id`, `position`, `rotationType`, `rotation`, `twist`, `notation`, `simplyNotation`, `is_competitive`, `departure_id`, `landing_id`) VALUES -(1, 'o', 0, 0, 0, 'o', 'o', 1, 9, 9), -(2, '0', 0, 0, 0, '|', '|', 1, 9, 9), -(3, '0', 0, 0, 0, '<', '<', 1, 9, 9), -(4, '0', 0, 0, 0, '//', '//', 1, 9, 9), -(5, '0', 2, 0, 0, 'A', 'A', 1, 9, 1), -(6, '/', 2, 1, 0, '1. /', '1.', 1, 9, 4), -(7, 'o', 2, 1, 0, '1. o', '1. o', 1, 9, 4), -(8, '<', 2, 1, 0, '1. <', '1. <', 1, 9, 4), -(9, '/', 2, 1, 0, '1. /', '1.', 1, 9, 3), -(10, '0', 1, 1, 0, '.1', '.1', 0, 9, 5), -(11, '/', 1, 1, 0, '.1 - /', '.1 - /', 1, 9, 2), -(12, '/', 1, 1, 0, '.1 (', '.1 (', 1, 9, 7), -(13, '/', 2, 1, 0, '1.', '1.', 1, 9, 8), -(14, '/', 1, 0, 0, 'D', 'D', 1, 1, 9), -(15, '/', 2, 1, 0, '1. -', '1. -', 1, 2, 9), -(16, '/', 1, 1, 0, '.1 -', '.1 -', 1, 3, 9), -(17, 'o', 1, 3, 0, '.3 - o', '.3 - o', 1, 9, 3), -(18, '<', 1, 3, 0, '.3 - <', '.3 - <', 1, 9, 3), -(19, '/', 1, 3, 0, '.3 - /', '.3 - /', 1, 9, 3), -(20, 'o', 1, 3, 0, '.3 - o', '.3 - o', 1, 9, 3), -(21, '<', 1, 3, 0, '.3 - <', '.3 - <', 1, 9, 3), -(22, 'o', 1, 4, 0, '.4 - o', '.4 o', 1, 9, 9), -(23, '<', 1, 4, 0, '.4 - <', '.4 <', 1, 9, 9), -(24, '/', 1, 4, 0, '.4 - /', '.4 /', 1, 9, 9), -(25, 'o', 2, 4, 0, '4. - o', '4 o', 1, 9, 9), -(26, '<', 2, 4, 0, '4. - <', '4 <', 1, 9, 9), -(27, '/', 2, 4, 0, '4. - /', '4 /', 1, 9, 9), -(28, '/', 0, 0, 1, '-1', '-1', 1, 9, 9), -(29, '/', 0, 0, 2, '-2', '-2', 1, 9, 9), -(30, 'o', 2, 5, 0, '5. - o', '5 o', 1, 2, 9), -(31, 'o', 1, 4, 1, '.4 1 o', '4 1 o', 1, 9, 9), -(32, '<', 1, 4, 1, '.4 1 <', '4 1 <', 1, 9, 9), -(33, '/', 1, 4, 1, '.4 1 /', '4 1 /', 1, 9, 9), -(34, '/', 2, 1, 1, '1. 1 /', '1. 1', 1, 9, 2), -(35, '/', 1, 1, 1, '.1 1 /', '.1 1', 1, 9, 3), -(36, '/', 2, 2, 0, '2. - /', '2. /', 1, 2, 3), -(37, '/', 2, 2, 0, '2. - /', '2. /', 1, 2, 3), -(38, '/', 2, 2, 1, '2. 1 /', '2. 1 /', 1, 2, 2), -(39, '/', 0, 0, 2, '- 2', '- 2', 1, 3, 3), -(40, 'o', 1, 4, 0, '.4 - o', '.4 - o', 1, 3, 3), -(41, '<', 1, 4, 0, '.4 - <', '.4 - <', 1, 3, 3), -(42, '/', 1, 4, 0, '.4 - /', '.4 - /', 1, 3, 3), -(43, 'o', 2, 5, 0, '5. - o', '5. - o', 1, 9, 3), -(44, '<', 2, 5, 0, '5. - <', '5 - <', 1, 9, 3), -(45, '/', 2, 5, 0, '5. - /', '5 - /', 1, 9, 3), -(46, 'o', 2, 3, 0, '3. - o', '3. o', 1, 3, 9), -(47, '<', 2, 3, 0, '3. - <', '3. <', 1, 3, 9), -(48, '0', 0, 0, 4, '- 4', '- 4', 1, 3, 3), -(49, '0', 0, 0, 6, '- 6', '- 6', 1, 3, 3), -(50, 'o', 2, 3, 0, '3. - o', '3. - o', 1, 9, 2), -(51, '<', 2, 3, 0, '3. - <', '3. - <', 1, 9, 2), -(52, '/', 2, 3, 0, '3. - /', '3. - /', 1, 9, 2), -(53, 'o', 1, 5, 0, '.5 - o', '.5 - o', 1, 9, 9), -(54, '<', 1, 5, 0, '.5 - <', '.5 - <', 1, 9, 2), -(56, '<', 1, 5, 1, '.5 1 <', '.5 1 <', 1, 9, 3), -(57, '/', 1, 5, 1, '.5 1 /', '.5 1 /', 1, 9, 3), -(58, 'o', 1, 5, 1, '.5 1 o', '.5 1 o', 1, 3, 9), -(59, '<', 1, 5, 1, '.5 1 <', '.5 1 <', 1, 3, 9), -(60, '/', 1, 5, 1, '.5 1 /', '.5 1 /', 1, 3, 9), -(61, '<', 2, 5, 0, '5. - <', '5. - <', 1, 2, 9), -(62, '/', 2, 5, 0, '5. - /', '5. - /', 1, 2, 9), -(63, 'o', 2, 4, 0, '4. - o', '4. - o', 1, 3, 3), -(64, '<', 2, 4, 0, '4. - <', '4. - <', 1, 3, 3), -(65, 'o', 1, 8, 3, '.8 12 o', '.8 12 o', 1, 9, 9), -(66, '<', 1, 8, 3, '.8 12 <', '.8 12 <', 1, 9, 9), -(67, '/', 1, 8, 3, '.8 12 /', '.8 12 /', 1, 9, 9), -(68, '0', 1, 0, 1, '1 A', '1 A', 1, 9, 1), -(69, '0', 1, 0, 1, 'D 1', 'D 1', 1, 1, 9), -(70, '0', 2, 1, 1, '1. 1', '1. 1', 1, 2, 9), -(71, '0', 1, 1, 1, '.1 1', '.1 1', 1, 3, 9), -(72, 'o', 1, 7, 0, '.7 -- o', '.7 -- o', 1, 9, 3), -(73, '<', 1, 7, 0, '.7 -- <', '.7 -- <', 1, 9, 3), -(74, '/', 1, 4, 3, '.4 3 /', '.4 3 /', 1, 9, 9), -(75, 'o', 1, 4, 3, '.4 3 /', '.4 3 o', 1, 9, 9), -(76, '<', 1, 4, 3, '.4 3 /', '.4 3 <', 1, 9, 9), -(77, '/', 1, 3, 2, '.3 2 /', '.3 2 /', 1, 9, 4), -(78, '/', 1, 5, 2, '.5 2 /', '.5 2 /', 1, 9, 2), -(79, 'o', 1, 7, 2, '.7 2- o', '.7 2- o', 1, 9, 4), -(80, '<', 1, 7, 2, '.7 2- <', '.7 2- <', 1, 9, 4), -(81, '/', 1, 7, 2, '.7 11 /', '.7 11 /', 1, 9, 4), -(82, '0', 0, 0, 2, '- 2', '- 2', 1, 1, 1), -(83, '/', 2, 1, 2, '1. 2 /', '1. 2', 1, 9, 3), -(84, '/', 1, 1, 2, '.1 2 /', '.1 2', 1, 9, 2), -(85, '0', 2, 0, 2, 'A 2', 'A 2', 1, 9, 1), -(86, '<', 1, 8, 3, '.8 -3 <', '.8 3 <', 1, 9, 9), -(87, 'o', 1, 7, 4, '.7 22 o', '.7 22 o', 1, 9, 4), -(88, '<', 1, 7, 4, '.7 22 <', '.7 22 <', 1, 9, 4), -(89, '/', 1, 7, 4, '.7 22 /', '.7 22 /', 1, 9, 4), -(90, '/', 1, 2, 3, '.2 3 /', '.2 3 /', 1, 3, 3), -(91, 'o', 2, 8, 0, '8. -- o', '8. -- o', 1, 9, 9), -(92, '<', 2, 8, 0, '8. -- <', '8. -- <', 1, 9, 9), -(93, '/', 2, 8, 0, '8. -- /', '8. -- /', 1, 9, 9), -(95, '/', 2, 4, 2, '4. 2 /', '4. 2 /', 1, 9, 9), -(96, '<', 1, 12, 1, '.12 --1 <', '.12 --1 <', 1, 9, 9), -(97, 'o', 1, 12, 1, '.12 --1 o', '.12 --1 o', 1, 9, 9), -(98, 'o', 1, 11, 0, '.11 --- o', '.11 --- o', 1, 9, 3), -(99, '<', 1, 11, 0, '.11 --- <', '.11 --- <', 1, 9, 3), -(100, '/', 1, 0, 1, 'A 1', 'A 1', 1, 1, 1), -(101, '/', 1, 1, 0, '.1 -', '.1', 1, 1, 2), -(102, '/', 1, 1, 1, '.1 1', '.1 1', 1, 1, 3), -(104, '/', 1, 2, 0, '.2 - /', '.2 - /', 1, 3, 2), -(105, '0', 1, 2, 1, '.2 1 /', '.2 1 /', 1, 3, 3), -(106, '/', 2, 4, 4, '4. 4 /', '4. 4 /', 1, 9, 9), -(107, '/', 2, 4, 6, '4. 6 /', '4. 6 /', 1, 9, 9), -(108, '/', 1, 4, 5, '.4 5 /', '.4 5 /', 1, 9, 9), -(109, '/', 1, 4, 7, '.4 7 /', '.4 7 /', 1, 9, 9), -(110, 'o', 1, 8, 3, '.8 -3 o', '.8 -3 o', 1, 9, 9), -(111, 'o', 2, 8, 2, '8. 11 o', '8. 11 o', 1, 9, 9), -(112, '<', 2, 8, 2, '8. 11 <', '8. 11 <', 1, 9, 9), -(113, 'o', 1, 8, 1, '.8 -1 o', '.8 -1 o', 1, 9, 9), -(114, '<', 1, 8, 1, '.8 -1 <', '.8 -1 <', 1, 9, 9), -(115, 'o', 1, 8, 5, '.8 23 o', '.8 23 o', 1, 9, 9), -(116, '<', 1, 8, 5, '.8 23 <', '.8 23 <', 1, 9, 9), -(117, 'o', 1, 8, 5, '.8 -5 o', '.8 -5 o', 1, 9, 9), -(118, '<', 1, 8, 5, '.8 -5 <', '.8 -5 <', 1, 9, 9), -(119, '/', 1, 8, 5, '.8 23 /', '.8 23 /', 1, 9, 9), -(120, '/', 2, 8, 2, '8. 11 /', '8. 11 /', 1, 9, 9), -(121, 'o', 2, 8, 4, '8. 13 o', '8. 13 o', 1, 9, 9), -(122, '<', 2, 8, 4, '8. 13 <', '8. 13 <', 1, 9, 9), -(123, '0', 1, 2, 0, '.2 -', '.2', 1, 2, 3), -(125, '0', 2, 2, 0, '2. - o', '2. - o', 1, 3, 2), -(126, 'o', 2, 2, 1, '2. 1 o', '2. 1 o', 1, 3, 3), -(127, 'o', 2, 8, 2, '8. -2 o', '8. -2 o', 1, 9, 9), -(128, '<', 2, 8, 2, '8. -2 <', '8. -2 <', 1, 9, 9), -(129, '/', 2, 8, 2, '8. -2 /', '8. -2 /', 1, 9, 9), -(130, 'o', 2, 8, 4, '8. 22 o', '8. 22 o', 1, 9, 9), -(131, '/', 2, 8, 4, '8. 22 /', '8. 22 /', 1, 9, 9), -(132, '<', 2, 8, 4, '8. 22 <', '8. 22 <', 1, 9, 9), -(133, 'o', 2, 8, 6, '8. 33 o', '8. 33 o', 1, 9, 9), -(135, 'o', 2, 8, 4, '8. 13 o', '8. 13 o', 1, 9, 9), -(136, '<', 2, 8, 6, '8. 33 <', '8. 33 <', 1, 9, 9), -(137, '/', 2, 8, 6, '8. 33 /', '8. 33 /', 1, 9, 9), -(138, 'o', 1, 8, 1, '.8 1- o', '.8 1- o', 1, 9, 9), -(139, '<', 1, 8, 1, '.8 1- <', '.8 1- <', 1, 9, 9), -(140, 'o', 2, 12, 2, '12. 1-1 o', '12. 1-1 o', 1, 9, 9), -(141, '<', 2, 12, 2, '12. 1-1 <', '12. 1-1 <', 1, 9, 9), -(142, '0', 2, 2, 2, '2. 2', '2. 2', 1, 2, 4), -(143, '0', 2, 1, 3, '1. 3', '1. 3', 1, 9, 2), -(145, '/', 1, 2, 2, '.2 2 /', '.2 2 /', 1, 3, 2), -(146, '0', 0, 0, 3, '-3', '-3', 1, 1, 1), -(148, '0', 2, 2, 3, '2. 3', '2. 3', 1, 2, 2), -(149, '0', 2, 0, 4, 'A 4', 'A 4', 1, 9, 1), -(150, '0', 2, 1, 3, '1. 3', '1. 3', 1, 9, 3), -(152, '0', 1, 3, 1, '.3 1', '.3 1', 1, 2, 9), -(153, 'o', 1, 3, 0, '.3 - o', '.3 - o', 1, 9, 3), -(154, '<', 1, 3, 0, '.3 - <', '.3 - <', 1, 9, 3), -(155, '/', 1, 3, 0, '.3 - /', '.3 - /', 1, 9, 3), -(156, '0', 1, 1, 3, '.1 3', '.1 3', 1, 1, 3), -(157, '0', 1, 3, 0, '.3 - 0', '.3 - 0', 1, 1, 3), -(158, 'o', 2, 4, 0, '4. - o', '4. - o', 1, 2, 2), -(159, 'o', 1, 5, 1, '.5 1- o', '.5 1- o', 1, 9, 3), -(160, '0', 2, 5, 0, '5. - L', '5. - L', 1, 2, 9), -(161, '/', 1, 5, 3, '.5 3 /', '.5 3 /', 1, 3, 9), -(162, '/', 2, 5, 2, '5. 2 /', '5. 2 /', 1, 2, 9), -(163, '/', 1, 5, 5, '.5 5 /', '.5 5 /', 1, 3, 9), -(164, '/', 1, 5, 2, '.5 2 /', '.5 2 /', 1, 3, 9), -(165, 'o', 2, 9, 0, '9. -- o', '9. -- o', 1, 2, 9), -(166, 'o', 1, 7, 1, '.7 -1 o', '.7 -1 o', 1, 2, 9), -(167, 'o', 1, 9, 1, '.9 -1 o', '.9 -1 o', 1, 3, 9), -(168, '<', 1, 9, 1, '.9 -1 <', '.9 -1 <', 1, 3, 9), -(169, 'o', 1, 5, 0, '.5 - o', '.5 - o', 1, 3, 9), -(170, 'o', 1, 5, 0, '.5 - o', '.5 - o', 1, 3, 9), -(172, 'o', 2, 3, 0, '3. - o', '3. - o', 1, 8, 9), -(173, '<', 2, 3, 0, '3. - <', '3. - <', 1, 8, 9), -(174, '/', 2, 3, 0, '3. - /', '3. - /', 1, 8, 9), -(175, 'o', 1, 3, 0, '.3 - o', '.3 - o', 1, 7, 9), -(176, '<', 1, 3, 0, '.3 - <', '.3 - <', 1, 7, 9), -(177, '/', 1, 3, 0, '.3 - /', '.3 - /', 1, 7, 9), -(178, '0', 0, 0, 1, '- 1', '- 1', 0, 1, 5), -(179, '0', 0, 0, 1, 'A 1', 'A 1', 0, 5, 1), -(180, '0', 1, 1, 0, '.1 -', '.1 -', 0, 1, 5), -(181, '0', 1, 0, 0, '.0 0', '.0 0', 0, 5, 2), -(182, '0', 2, 1, 0, '1. -', '1. -', 0, 5, 9), -(183, '0', 0, 0, 0, '-', '-', 0, 5, 5), -(184, '0', 0, 0, 0, '-', '-', 1, 1, 1), -(185, '0', 0, 0, 0, '-', '-', 1, 3, 3), -(186, '0', 0, 0, 0, '-', '-', 1, 2, 2), -(187, '0', 0, 0, 1, '- 1', '- 1', 0, 5, 3), -(188, 'o', 2, 3, 0, '3. - o', '3. - o', 1, 3, 1), -(189, '0', 1, 1, 0, '.1 -', '.1 -', 0, 5, 6), -(190, '0', 2, 1, 0, '1. -', '1. -', 0, 3, 6), -(191, '0', 2, 1, 1, '1. 1', '1. 1', 0, 3, 6), -(192, '0', 1, 1, 0, '.1 - /', '.1 - /', 0, 6, 8), -(193, 'o', 2, 3, 0, '3. - o', '3. - o', 1, 8, 9), -(194, 'o', 2, 2, 0, '2. - o', '2. - o', 1, 8, 2), -(195, 'o', 2, 4, 0, '4. - o', '4. - o', 1, 8, 3), -(196, '/', 2, 1, 0, '1. - /', '1. - /', 0, 8, 6), -(197, '0', 0, 0, 0, '-', '-', 1, 8, 9), -(198, '0', 0, 0, 0, '-', '-', 1, 7, 7), -(199, '0', 2, 1, 0, '1. -', '1. -', 1, 1, 4), -(200, '0', 1, 0, 0, '-', '-', 1, 10, 2), -(201, '0', 2, 1, 1, '1. 1', '1. 1', 1, 1, 2), -(202, '/', 0, 0, 1, '- 1', '- 1', 1, 2, 4), -(203, '/', 0, 0, 1, '- 1', '- 1', 1, 4, 2), -(204, '/', 2, 1, 2, '1. 2 /', '1. 2 /', 1, 1, 4), -(206, 'o', 1, 2, 0, '.2 - o', '.2 - o', 0, 5, 7), -(207, 'o', 1, 3, 0, '.3 - o', '.3 - o', 0, 5, 9), -(208, '0', 2, 1, 0, '1. -', '1. -', 0, 5, 1), -(209, '0', 2, 1, 0, '1. -', '1. -', 1, 2, 1), -(210, '0', 0, 0, 1, '- 1', '- 1', 1, 9, 1), -(211, '0', 0, 0, 1, '- 1', '- 1', 0, 4, 5), -(212, '0', 0, 0, 3, '- 3', '- 3', 1, 3, 2), -(213, '0', 1, 0, 3, '- 3', '- 3', 1, 1, 9), -(214, '0', 1, 0, 2, 'D 2', 'D 2', 1, 1, 9), -(215, '0', 1, 1, 2, '.1 2', '.1 2', 1, 3, 9), -(216, '0', 1, 1, 3, '.1 3', '.1 3', 1, 3, 9), -(217, '/', 1, 2, 0, '.2 - /', '.2 - /', 0, 3, 5), -(218, '0', 1, 1, 0, '.1 -', '.1 -', 1, 3, 1), -(219, 'o', 2, 2, 0, '2. - o', '2. - o', 0, 3, 5), -(220, 'o', 1, 5, 2, '.5 2 o', '.5 2 o', 1, 3, 9), -(221, '<', 1, 5, 2, '.5 2 <', '.5 2 <', 1, 3, 9), -(222, 'o', 2, 6, 0, '6. -- o', '6. -- o', 1, 2, 3), -(223, '<', 2, 6, 0, '6. -- <', '6. -- <', 1, 2, 3), -(224, 'o', 1, 6, 0, '.6 -- o', '.6 -- o', 1, 3, 2), -(225, '<', 1, 6, 0, '.6 -- <', '.6 -- <', 1, 3, 2), -(226, '/', 2, 3, 1, '3. 1 /', '3. 1 /', 1, 9, 3), -(227, '/', 2, 4, 1, '4. 1 /', '4. 1 /', 1, 9, 9), -(228, '/', 2, 3, 1, '3. 1 /', '3. 1 /', 1, 9, 3), -(229, 'o', 2, 4, 1, '4. 1 o', '4. 1 o', 1, 9, 9), -(230, '<', 2, 4, 1, '4. 1 <', '4. 1 <', 1, 9, 9), -(231, 'o', 2, 5, 1, '5. -1 o', '5. -1 o', 1, 9, 2), -(232, '<', 2, 5, 1, '5. -1 <', '5. -1 <', 1, 9, 2), -(233, 'o', 2, 7, 1, '7. 1- o', '7. 1- o', 1, 9, 3), -(234, '<', 2, 7, 1, '7. 1- <', '7. 1- <', 1, 9, 3), -(235, 'o', 2, 7, 3, '7. 12 o', '7. 12 o', 1, 9, 3), -(236, '<', 2, 7, 3, '7. 12 <', '7. 12 <', 1, 9, 3), -(237, '/', 2, 5, 2, '5. 2 /', '5. 2 /', 1, 9, 3), -(238, '/', 2, 5, 3, '5. 12 /', '5. 12 /', 1, 9, 2), -(239, 'o', 2, 7, 3, '7. 3- o', '7. 3- o', 1, 9, 3), -(240, '<', 2, 7, 3, '7. 3- <', '7. 3- <', 1, 9, 3), -(241, '/', 2, 7, 3, '7. 3- /', '7. 3- /', 1, 9, 3), -(242, 'o', 2, 7, 5, '7. 32 o', '7. 32 o', 1, 9, 3), -(243, '<', 2, 7, 5, '7. 32 <', '7. 32 <', 1, 9, 3), -(244, '/', 2, 7, 5, '7. 32 /', '7. 32 /', 1, 9, 3), -(245, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(246, 'o', 1, 4, 2, '.4 2 o', '.4 2 o', 1, 3, 3), -(247, '<', 1, 4, 2, '.4 2 <', '.4 2 <', 1, 3, 3), -(248, 'o', 1, 5, 1, '.5 1- o', '.5 1- o', 1, 3, 9), -(249, '<', 1, 5, 1, '.5 1- <', '.5 1- <', 1, 3, 9), -(251, '/', 2, 8, 8, '8. 44 /', '8. 44 /', 1, 9, 9), -(252, '<', 1, 12, 3, '.12 --3 <', '.12 --3 <', 1, 9, 9), -(253, '<', 1, 8, 6, '.8 15 <', '.8 15 <', 1, 9, 9), -(254, '<', 2, 8, 4, '8. 31 <', '8. 31 <', 1, 9, 9), -(255, '0', 0, 0, 0, '| 1', '| 1', 1, 9, 9), -(256, '0', 0, 0, 0, '| 2', '| 2', 1, 9, 9), -(257, '0', 0, 0, 0, '| 3', '| 3', 1, 9, 9), -(258, 'o', 1, 12, 3, '.12 --3 o', '--3 o', 1, 9, 9), -(259, 'o', 1, 4, 0, 'c->', 'c->', 1, 9, 9), -(260, 'o', 1, 4, 0, 'c->/m', 'c->/m', 1, 9, 9), -(261, 'o', 1, 4, 0, 'c->/m/t', 'c->/m/t', 1, 9, 9), -(262, '/', 0, 0, 1, '-1', '-1', 1, 3, 2), -(263, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(264, 'o', 0, 0, 1, 'o 1', 'o 1', 1, 9, 9), -(265, '<', 0, 0, 1, '< 1', '< 1', 1, 9, 9), -(266, '//', 0, 0, 1, '//1', '//1', 1, 9, 9), -(267, 'o', 0, 0, 1, '-1o', '-1o', 1, 9, 9), -(268, '<', 0, 0, 1, '-1<', '-1<', 1, 9, 9), -(269, '//', 0, 0, 1, '-1//', '-1//', 1, 9, 9), -(270, 'c', 1, 4, 1, '.4 1 c', '.4 1 c', 1, 9, 9), -(271, 'o', 1, 4, 2, '.4 2 o', '.4 2 o', 1, 9, 9), -(272, '<', 1, 4, 2, '.4 2 <', '.4 2 <', 1, 9, 9), -(273, '/', 1, 4, 2, '.4 2 /', '.4 2 /', 1, 9, 9), -(274, '/', 1, 5, 0, '.5 -- /', '.5 -- /', 1, 3, 9), -(275, 'o', 1, 5, 3, '.5 3 o', '.5 3 o', 1, 9, 9), -(276, '<', 1, 5, 3, '.5 3 <', '.5 3 <', 1, 3, 9), -(277, 'o', 2, 0, 0, 'A o', 'A o', 1, 9, 1), -(278, '<', 2, 0, 0, 'A <', 'A <', 0, 9, 6), -(279, 'o', 0, 0, 2, '-', '-', 1, 9, 9), -(280, 'o', 0, 0, 3, 'o 3', 'o 3', 1, 9, 9), -(281, 'o', 0, 0, 2, '2 o', '2 o', 1, 9, 9), -(282, 'o', 0, 0, 3, '3 o', '3 o', 1, 9, 9), -(283, 'o', 0, 0, 4, '4 o', '4 o', 1, 9, 9), -(284, '//', 0, 0, 2, '2//', '2//', 1, 9, 9), -(285, '//', 0, 0, 3, '3//', '3//', 1, 9, 9), -(286, '//', 0, 0, 4, '4//', '4//', 1, 9, 9), -(287, '//', 0, 0, 2, '//2', '//2', 1, 9, 9), -(288, '//', 0, 0, 3, '//3', '//3', 1, 9, 9), -(289, '//', 0, 0, 4, '//4', '//4', 1, 9, 9), -(290, '<', 0, 0, 2, '< 2', '< 2', 1, 9, 9), -(291, '<', 0, 0, 3, '< 3', '< 3', 1, 9, 9), -(292, '<', 0, 0, 4, '< 4', '< 4', 1, 9, 9), -(293, '<', 0, 0, 2, '2 <', '2 <', 1, 9, 9), -(294, '<', 0, 0, 3, '3 <', '3 <', 1, 9, 9), -(295, '<', 0, 0, 4, '4 <', '4 <', 1, 9, 9), -(296, 'c', 0, 0, 2, '1 o 1', '1 o 1', 1, 9, 9), -(297, '<', 0, 0, 2, '1 < 1', '1 < 1', 1, 9, 9), -(298, '//', 0, 0, 2, '1 // 1', '1 // 1', 1, 9, 9), -(299, 'o', 0, 0, 3, '1 o 2', '1 o 2', 1, 9, 9), -(300, '<', 0, 0, 3, '1< 2', '1< 2', 1, 9, 9), -(301, '//', 0, 0, 3, '1 // 2', '1 // 2', 1, 9, 9), -(302, 'o', 0, 0, 4, 'o 4', 'o 4', 1, 9, 9), -(303, 'c', 0, 0, 3, '2 o 1', '2 o 1', 1, 9, 9), -(304, '<', 0, 0, 3, '2 < 1', '2 < 1', 1, 9, 9), -(305, '//', 0, 0, 3, '2 // 1', '2 // 1', 1, 9, 9), -(306, '//', 0, 0, 4, '2 // 2', '2 // 2', 1, 9, 9), -(307, 'o', 0, 0, 4, '2 o 2', '2 o 2', 1, 9, 9), -(308, '<', 0, 0, 4, '2 < 2', '2 < 2', 1, 9, 9), -(309, 'o', 0, 0, 5, '2 o 3', '2 o 3', 1, 9, 9), -(310, '//', 0, 0, 4, '1 // 3', '1 // 3', 1, 9, 9), -(311, '<', 0, 0, 4, '1 < 3', '1 < 3', 1, 9, 9), -(312, 'o', 0, 0, 4, '3 o 1', '3 o 1', 1, 9, 9), -(313, '//', 0, 0, 4, '3 // 1', '3 // 1', 1, 9, 9), -(314, '<', 0, 0, 4, '3 < 1', '3 < 1', 1, 9, 9), -(315, '<', 2, 4, 0, '4. - <', '4. - <', 1, 2, 2), -(316, '/', 2, 4, 0, '4. - /', '4. - /', 1, 2, 2), -(317, '/', 0, 6, 0, '6. -- /', '6. -- /', 1, 2, 3), -(318, '/', 0, 0, 0, '-', '-', 1, 3, 3), -(319, '/', 2, 1, 0, '1. - /', '1. - /', 1, 1, 3), -(320, '/', 0, 0, 1, '-1', '-1', 1, 9, 9), -(321, '/', 0, 0, 1, '-1', '-1', 1, 9, 9), -(322, '/', 0, 0, 1, '-1', '-1', 1, 9, 9), -(323, '/', 0, 0, 1, '-1', '-1', 1, 9, 9), -(324, '/', 1, 1, 3, '.1 3 /', '.1 3 /', 1, 9, 9), -(325, '/', 0, 0, 2, '-2', '-2', 1, 2, 2), -(326, '/', 0, 0, 3, '-', '-', 1, 2, 3), -(327, '/', 2, 1, 4, '1. 4 /', '1. 4 /', 1, 1, 4), -(328, 'o', 1, 1, 0, '.1 - o', '.1 - o', 1, 1, 2), -(329, '<', 1, 1, 0, '.1 - <', '.1 - <', 1, 1, 2), -(330, 'o', 1, 1, 1, '.1 1 o', '.1 1 o', 1, 1, 4), -(331, '<', 1, 1, 1, '.1 1 <', '.1 1 <', 1, 1, 4), -(332, '/', 1, 1, 1, '.1 1 /', '.1 1 /', 1, 1, 4), -(333, 'o', 1, 1, 2, '.1 2 o', '.1 2 o', 1, 1, 2), -(334, '<', 1, 1, 2, '.1 2 <', '.1 2 <', 1, 1, 2), -(335, '/', 1, 1, 2, '.1 2 /', '.1 2 /', 1, 1, 2), -(336, 'o', 1, 1, 3, '.1 3 o', '.1 3 o', 1, 1, 4), -(337, '<', 1, 1, 3, '.1 3 <', '.1 3 <', 1, 1, 4), -(338, '/', 2, 1, 3, '1. 3 /', '1. 3 /', 1, 1, 4), -(340, '/', 1, 1, 4, '.1 4 /', '.1 4 /', 1, 1, 2), -(341, '/', 1, 1, 5, '.1 5 /', '.1 5 /', 1, 1, 2), -(342, 'o', 1, 2, 0, '.2 - o', '.2 - o', 1, 3, 2), -(343, '<', 1, 2, 0, '.2 - <', '.2 - <', 1, 3, 2), -(344, 'o', 1, 2, 1, '.2 1 o', '.2 1 o', 1, 3, 4), -(345, '<', 1, 2, 1, '.2 1 <', '.2 1 <', 1, 3, 4), -(346, 'o', 1, 2, 2, '.2 2 o', '.2 2 o', 1, 3, 2), -(347, '<', 1, 2, 2, '.2 2 <', '.2 2 <', 1, 3, 2), -(348, '/', 1, 2, 1, '.2 1 /', '.2 1 /', 1, 3, 4), -(351, 'o', 1, 2, 3, '.2 3 o', '.2 3 o', 1, 3, 4), -(352, '<', 1, 2, 3, '.2 3 <', '.2 3 <', 1, 3, 4), -(353, '/', 1, 2, 3, '.2 3 /', '.2 3 /', 1, 3, 4), -(354, '/', 1, 2, 4, '.2 4 /', '.2 4 /', 1, 3, 2), -(355, '/', 1, 2, 5, '.2 5 /', '.2 5 /', 1, 3, 4), -(356, 'o', 1, 1, 0, '.1 - o', '.1 - o', 1, 9, 2), -(357, '<', 1, 1, 0, '.1 - <', '.1 - <', 1, 9, 2), -(358, '/', 1, 1, 0, '.1 - /', '.1 - /', 1, 9, 2), -(359, '/', 2, 1, 0, '1. - /', '1. - /', 1, 9, 4), -(360, '/', 2, 1, 0, '1. - )', '1. - )', 1, 9, 8), -(361, 'o', 2, 1, 0, '1. - o', '1. - o', 1, 11, 4), -(362, '<', 2, 1, 0, '1. - <', '1. - <', 1, 11, 4), -(363, '/', 2, 1, 0, '1. - /', '1. - /', 1, 11, 4), -(364, '/', 0, 0, 0, '-', '-', 1, 11, 1), -(365, '/', 0, 0, 0, '-', '-', 1, 9, 11), -(366, '/', 0, 0, 0, '-', '-', 1, 11, 9), -(367, 'o', 1, 4, 0, '.4 - o', '.4 - o', 1, 11, 9), -(368, '<', 1, 4, 0, '.4 - <', '.4 - <', 1, 11, 9), -(369, 'o', 1, 4, 1, '.4 1 o', '.4 1 o', 1, 11, 9), -(370, '<', 1, 4, 1, '.4 1 <', '.4 1 <', 1, 11, 9), -(371, 'o', 2, 2, 0, '2. - o', '2. - o', 1, 2, 4), -(372, '<', 2, 2, 0, '2. - <', '2. - <', 1, 2, 4), -(374, 'o', 1, 3, 0, '.3 - o', '.3 - o', 1, 11, 3), -(375, '<', 1, 3, 0, '.3 - <', '.3 - <', 1, 11, 3), -(376, '/', 1, 3, 0, '.3 - /', '.3 - /', 1, 11, 3), -(377, '/', 1, 5, 0, '.5 -- /', '.5 -- /', 1, 9, 2), -(378, 'c', 1, 8, 3, '.8 12 c', '.8 12 c', 1, 9, 9), -(379, 'L', 1, 8, 3, '.8 12 L', '.8 12 L', 1, 9, 9), -(380, '<', 1, 3, 0, '.3 - <', '.3 - <', 0, 5, 9), -(381, '<', 2, 3, 0, '3. - <', '3. - <', 1, 3, 1), -(382, '<', 2, 2, 0, '2. - <', '2. - <', 0, 3, 5), -(383, '<', 2, 2, 0, '2. - <', '2. - <', 1, 3, 2), -(384, '/', 2, 2, 0, '2. - /', '2. - /', 0, 3, 5), -(385, '/', 2, 2, 0, '2. - /', '2. - /', 1, 3, 2), -(386, '<', 2, 2, 1, '2. 1 <', '2. 1 <', 1, 3, 4), -(387, '<', 1, 2, 0, '.2 - <', '.2 - <', 0, 5, 7), -(388, '/', 1, 2, 0, '.2 - /', '.2 - /', 0, 5, 7), -(389, 'o', 1, 3, 2, '.3 2 o', '.3 2 o', 1, 9, 4), -(390, '<', 1, 3, 2, '.3 2 <', '.3 2 <', 1, 9, 4), -(391, '/', 0, 0, 2, '- 2', '- 2', 1, 9, 9), -(392, '/', 0, 0, 2, '- 2', '- 2', 1, 9, 9), -(393, '/', 0, 0, 2, '-', '-', 1, 9, 9), -(394, '/', 0, 0, 2, '- 2', '- 2', 1, 9, 9), -(395, '/', 0, 0, 2, '- 2', '- 2', 1, 9, 9), -(396, '/', 0, 0, 2, '- 2', '- 2', 1, 9, 9), -(397, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(398, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(399, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(400, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(401, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(402, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(403, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(404, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(405, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(406, '/', 0, 0, 3, '- 3', '- 3', 1, 9, 9), -(407, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(408, '/', 0, 0, 4, '- 4', '- 4', 1, 9, 9), -(409, 'c', 2, 8, 2, '8. 11 c', '8. 11 c', 1, 9, 9), -(410, 'L', 2, 8, 2, '8. 11 L', '8. 11 L', 1, 9, 9), -(411, 'c', 2, 8, 0, '8. -- c', '8. -- c', 1, 9, 9), -(412, 'L', 2, 8, 0, '8. -- L', '8. -- L', 1, 9, 9), -(413, 'o', 2, 4, 1, '4. 1 o', '4. 1 o', 1, 2, 4), -(414, '<', 2, 4, 1, '4. 1 <', '4. 1 <', 1, 2, 4), -(415, 'o', 2, 4, 2, '4. 2 o', '4. 2 o', 1, 2, 2), -(416, '<', 2, 4, 2, '4. 2 <', '4. 2 <', 1, 2, 2), -(417, 'o', 2, 5, 2, '5. 2 o', '5. 2 o', 1, 2, 9), -(418, '<', 2, 5, 2, '5. 2 <', '5. 2 <', 1, 2, 9), -(419, '/', 2, 4, 1, '4. 1 /', '4. 1 /', 1, 2, 4), -(420, '/', 2, 4, 2, '4. 2 /', '4. 2 /', 1, 2, 2), -(421, '/', 2, 4, 3, '4. 3 /', '4. 3 /', 1, 2, 4), -(422, '/', 2, 5, 3, '5. 3 /', '5. 3 /', 1, 2, 9), -(423, 'o', 1, 3, 0, '.3 - o', '.3 - o', 0, 5, 1), -(424, 'c', 1, 2, 0, '.2 - c', '.2 - c', 0, 5, 3), -(425, '<', 2, 2, 0, '2. - <', '2. - <', 1, 8, 2), -(426, '/', 2, 2, 0, '2. - /', '2. - /', 1, 8, 2), -(427, '/', 2, 2, 1, '2. 1 /', '2. 1 /', 1, 8, 4), -(428, '/', 2, 2, 2, '2. 2 /', '2. 2 /', 1, 8, 2), -(429, 'o', 2, 7, 0, '7. -- o', '7. -- o', 1, 8, 9), -(430, '/', 2, 4, 0, '4. - /', '4. - /', 1, 8, 4), -(431, '<', 2, 7, 0, '7. -- <', '7. -- <', 1, 8, 9), -(432, '/', 2, 3, 2, '3. 2 /', '3. 2 /', 1, 8, 9), -(433, '/', 2, 4, 2, '4. 2 /', '4. 2 /', 1, 8, 4), -(434, '/', 2, 4, 3, '4. 3 /', '4. 3 /', 1, 8, 2), -(435, '/', 2, 2, 3, '2. 3 /', '2. 3 /', 1, 8, 4), -(436, '/', 2, 3, 1, '3. 1 /', '3. 1 /', 1, 8, 9), -(437, '/', 2, 3, 3, '3. 3 /', '3. 3 /', 1, 8, 9), -(438, 'o', 1, 2, 0, '.2 - o', '.2 - o', 1, 7, 4), -(439, '<', 1, 2, 0, '.2 - <', '.2 - <', 1, 7, 4), -(440, '/', 1, 2, 0, '.2 - /', '.2 - /', 1, 7, 4), -(441, 'o', 1, 2, 1, '.2 1 o', '.2 1 o', 0, 7, 5), -(442, '<', 1, 2, 1, '.2 1 <', '.2 1 <', 0, 7, 5), -(443, '/', 1, 2, 1, '.2 1 /', '.2 1 /', 0, 7, 5), -(444, 'o', 1, 2, 2, '.2 2 o', '.2 2 o', 1, 7, 4), -(445, '<', 1, 2, 2, '.2 2 <', '.2 2 <', 1, 7, 4), -(446, '/', 1, 2, 2, '.2 2 /', '.2 2 /', 1, 7, 4), -(447, '/', 2, 1, 2, '1. 2 /', '1. 2 /', 1, 2, 9), -(448, 'o', 2, 3, 1, '3. 1 o', '3. 1 o', 1, 9, 4), -(449, '<', 2, 3, 1, '3. 1 <', '3. 1 <', 1, 9, 3), -(450, '<', 1, 3, 1, '.3 1 <', '.3 1 <', 1, 9, 2), -(451, 'o', 1, 3, 1, '.3 1 o', '.3 1 o', 1, 9, 2), -(452, '/', 1, 3, 1, '.3 1 /', '.3 1 /', 1, 9, 2), -(453, '/', 2, 1, 0, '1. - /', '1. - /', 1, 1, 3), -(454, '/', 2, 1, 0, '1. - /', '1. - /', 1, 9, 4), -(455, '/', 2, 1, 0, '1. - /', '1. - /', 1, 9, 4), -(456, '/', 2, 1, 0, '1. - /', '1. - /', 1, 9, 4), -(457, '/', 0, 0, 0, 'A', 'A', 1, 9, 1), -(458, '/', 0, 0, 0, 'A', 'A', 1, 9, 1), -(459, '/', 0, 0, 0, 'D', 'D', 1, 1, 9), -(460, '/', 0, 0, 0, 'D', 'D', 1, 1, 9), -(461, '/', 0, 0, 0, 'D 1', 'D 1', 1, 1, 9), -(462, '/', 0, 0, 0, 'D 1', 'D 1', 1, 1, 9), -(463, '/', 0, 0, 2, 'D 2', 'D 2', 1, 1, 9), -(464, '/', 0, 0, 2, 'D 2', 'D 2', 1, 1, 9), -(465, 'o', 1, 7, 0, '.7 -- o', '.7 -- o', 1, 9, 4), -(466, '<', 1, 7, 0, '.7 -- <', '.7 -- <', 1, 9, 4), -(467, '/', 1, 1, 0, '.1 - /', '.1 - /', 0, 2, 6), -(468, 'o', 1, 1, 0, '.1 - o', '.1 - o', 0, 6, 3), -(469, '/', 1, 1, 0, '.1 - /', '.1 - /', 0, 6, 4), -(471, '/', 1, 6, 0, '.6 -- /', '.6 -- /', 1, 3, 2), -(472, 'o', 1, 4, 2, '.4 2 o', '.4 2 o', 1, 3, 4), -(473, '<', 1, 4, 2, '.4 2 <', '.4 2 <', 1, 3, 4), -(474, '/', 1, 4, 2, '.4 2 /', '.4 2 /', 1, 3, 4), -(475, '/', 1, 5, 1, '.5 1- /', '.5 1- /', 1, 9, 9), -(476, 'o', 1, 4, 1, '.4 1 o', '.4 1 o', 1, 3, 2), -(477, '<', 1, 4, 1, '.4 1 <', '.4 1 <', 1, 3, 2), -(478, '/', 1, 4, 1, '.4 1 /', '.4 1 /', 1, 3, 2), -(479, '/', 2, 1, 3, '1. 3 /', '1. 3 /', 1, 9, 2), -(480, '/', 2, 3, 0, '3. - /', '3. - /', 1, 3, 9), -(481, 'o', 2, 7, 0, '7. -- o', '7. -- o', 1, 3, 9), -(482, '<', 2, 7, 0, '7. -- <', '7. -- <', 1, 3, 9), -(483, '/', 2, 2, 1, '2. 1 /', '2. 1 /', 1, 3, 4), -(484, '/', 2, 2, 2, '2. 2 /', '2. 2 /', 1, 3, 2), -(485, '/', 2, 2, 3, '2. 3 /', '2. 3 /', 1, 3, 4), -(486, '/', 2, 3, 1, '3. 1 /', '3. 1 /', 1, 3, 9), -(487, '/', 2, 3, 2, '3. 2 /', '3. 2 /', 1, 3, 9), -(488, '/', 2, 4, 1, '4. 1 /', '4. 1 /', 1, 3, 2), -(489, '/', 2, 4, 2, '4. 2 /', '4. 2 /', 1, 3, 4), -(490, '/', 2, 4, 3, '4. 3 /', '4. 3 /', 1, 3, 2), -(492, '/', 2, 2, 2, '2. 2 /', '2. 2 /', 1, 2, 4), -(493, '/', 0, 0, 2, '- 2', '- 2', 1, 9, 9), -(513, 'o', 2, 11, 1, '11. 1-- o', '11. 1-- o', 0, 9, 3), -(514, '<', 2, 11, 1, '11. 1-- <', '11. 1-- <', 0, 9, 3), -(553, '<', 2, 8, 6, '8. 33 <', '8. 33 <', 1, 9, 9); - --- -------------------------------------------------------- - --- --- Structure de la table `objective_touchposition` --- - -CREATE TABLE `objective_touchposition` ( - `id` int NOT NULL, - `longLabel` varchar(30) NOT NULL, - `shortLabel` varchar(15) NOT NULL, - `competition` tinyint(1) NOT NULL, - `default` tinyint(1) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `objective_touchposition` --- - -INSERT INTO `objective_touchposition` (`id`, `longLabel`, `shortLabel`, `competition`, `default`) VALUES -(1, 'Assis', 'Assis', 1, 0), -(2, 'Ventre', 'Ventre', 1, 0), -(3, 'Dos', 'Dos', 1, 0), -(4, 'Plat dos', 'Plat dos', 1, 0), -(5, 'Quadrupédique', '4 pattes', 0, 0), -(6, 'Appui tendu renversé', 'ATR', 0, 0), -(7, 'Curviligne ouvert', 'Ventre ouvert', 0, 0), -(8, 'Curviligne fermé', 'Dos fermé', 0, 0), -(9, 'Debout', 'Debout', 1, 1), -(10, 'Chute faciale', 'Chute faciale', 0, 0), -(11, 'Genoux', 'Gnx', 0, 0); - --- -------------------------------------------------------- - --- --- Structure de la table `people_accident` --- - -CREATE TABLE `people_accident` ( - `id` int NOT NULL, - `content` longtext, - `date` date NOT NULL, - `educative_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `people_accident` --- - -INSERT INTO `people_accident` (`id`, `content`, `date`, `educative_id`, `gymnast_id`) VALUES -(1, 'Test d\'interface !', '2019-01-01', 270, 1), -(2, 'test de l\'interface graphique.', '2019-04-01', 181, 1), -(3, 'test d\'ajout d\'accident (29-04)', '2019-05-04', 116, 1), -(4, 'A oublié mon anniversaire (test de 29 avril)', '2019-02-05', 2, 1), -(5, 'Test sons forcing du format de date.', '2019-03-11', 66, 1), -(6, 'Description à venir', '2019-05-13', 46, 7); - --- -------------------------------------------------------- - --- --- Structure de la table `people_candorelation` --- - -CREATE TABLE `people_candorelation` ( - `id` int NOT NULL, - `date` date NOT NULL, - `educative_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `people_candorelation` --- - -INSERT INTO `people_candorelation` (`id`, `date`, `educative_id`, `gymnast_id`) VALUES -(1, '2019-03-23', 335, 1), -(2, '2019-03-23', 218, 1), -(3, '2019-03-23', 328, 1), -(4, '2019-03-23', 262, 1), -(5, '2019-03-23', 2, 1), -(6, '2019-03-23', 183, 1), -(7, '2019-03-23', 28, 1), -(8, '2019-03-23', 33, 1), -(9, '2019-03-23', 184, 1), -(10, '2019-03-23', 256, 1), -(11, '2019-03-23', 366, 1), -(12, '2019-03-23', 459, 1), -(13, '2019-03-23', 461, 1), -(14, '2019-03-23', 462, 1), -(15, '2019-03-23', 185, 1), -(16, '2019-03-23', 318, 1), -(17, '2019-03-23', 457, 1), -(18, '2019-03-23', 255, 1), -(19, '2019-03-23', 14, 1), -(20, '2019-03-23', 460, 1), -(21, '2019-03-23', 182, 1), -(22, '2019-03-23', 5, 1), -(23, '2019-03-23', 10, 1), -(24, '2019-03-23', 424, 1), -(25, '2019-03-23', 387, 1), -(26, '2019-03-23', 200, 1), -(27, '2019-03-23', 323, 1), -(28, '2019-03-23', 320, 1), -(29, '2019-03-23', 321, 1), -(30, '2019-03-23', 322, 1), -(31, '2019-03-23', 4, 1), -(32, '2019-03-23', 1, 1), -(33, '2019-03-23', 319, 1), -(34, '2019-03-23', 456, 1), -(35, '2019-03-23', 454, 1), -(36, '2019-03-23', 29, 1), -(37, '2019-03-23', 391, 1), -(38, '2019-03-24', 181, 1), -(39, '2019-03-24', 186, 1), -(40, '2019-05-10', 2, 5), -(41, '2019-05-10', 28, 5), -(42, '2019-05-10', 74, 5), -(43, '2019-05-10', 97, 5), -(44, '2019-05-10', 96, 5), -(45, '2019-05-10', 136, 5), -(46, '2019-05-10', 243, 5), -(47, '2019-05-10', 244, 5), -(48, '2019-05-10', 185, 5), -(49, '2019-05-10', 318, 5), -(50, '2019-05-10', 256, 5), -(51, '2019-05-10', 4, 5), -(52, '2019-05-10', 5, 5), -(53, '2019-05-10', 1, 5), -(54, '2019-05-10', 29, 5), -(55, '2019-05-10', 10, 5), -(56, '2019-05-10', 366, 5), -(57, '2019-05-10', 255, 5), -(58, '2019-05-10', 3, 5), -(59, '2019-05-10', 264, 5), -(60, '2019-05-10', 257, 5), -(61, '2019-05-10', 269, 5), -(62, '2019-05-10', 267, 5), -(63, '2019-05-10', 68, 5), -(64, '2019-05-10', 265, 5), -(65, '2019-05-11', 202, 5), -(66, '2019-05-11', 331, 5), -(67, '2019-05-11', 330, 5), -(68, '2019-05-11', 332, 5), -(69, '2019-05-11', 337, 5), -(70, '2019-05-11', 336, 5), -(71, '2019-05-13', 2, 6), -(72, '2019-05-13', 2, 9), -(73, '2019-05-13', 183, 6), -(74, '2019-05-13', 459, 6), -(75, '2019-05-13', 366, 6), -(76, '2019-05-13', 461, 6), -(77, '2019-05-13', 462, 6), -(78, '2019-05-13', 184, 6), -(79, '2019-05-13', 185, 6), -(80, '2019-05-13', 457, 6), -(81, '2019-05-13', 256, 6), -(82, '2019-05-13', 28, 6), -(83, '2019-05-13', 10, 6), -(84, '2019-05-13', 4, 6), -(85, '2019-05-13', 3, 6), -(86, '2019-05-13', 5, 6), -(87, '2019-05-13', 14, 6), -(88, '2019-05-13', 1, 6), -(89, '2019-05-13', 29, 6), -(90, '2019-05-13', 456, 6), -(91, '2019-05-13', 454, 6), -(92, '2019-05-13', 255, 6), -(93, '2019-05-13', 182, 6), -(94, '2019-05-13', 319, 6), -(95, '2019-05-13', 323, 6), -(96, '2019-05-13', 179, 8), -(97, '2019-05-13', 181, 8), -(98, '2019-05-13', 453, 8), -(99, '2019-05-13', 178, 8), -(100, '2019-05-13', 278, 8), -(101, '2019-05-13', 382, 6), -(102, '2019-05-13', 210, 6), -(103, '2019-05-13', 192, 9), -(104, '2019-05-13', 34, 9), -(105, '2019-05-13', 207, 9), -(106, '2019-05-13', 100, 9), -(107, '2019-05-13', 37, 12), -(108, '2019-05-13', 102, 6), -(109, '2019-05-13', 39, 6), -(110, '2019-05-13', 328, 9), -(111, '2019-05-13', 329, 9), -(112, '2019-05-13', 189, 9), -(113, '2019-05-13', 328, 12), -(114, '2019-05-13', 329, 12), -(115, '2019-05-13', 189, 12), -(116, '2019-05-13', 188, 9), -(117, '2019-05-13', 383, 9), -(118, '2019-05-13', 380, 12), -(119, '2019-05-13', 211, 12), -(120, '2019-05-13', 456, 8), -(121, '2019-05-13', 454, 8), -(122, '2019-05-13', 187, 8), -(123, '2019-05-13', 199, 8), -(124, '2019-05-13', 9, 6), -(125, '2019-05-13', 22, 9), -(126, '2019-05-13', 217, 9), -(127, '2019-05-13', 104, 9), -(128, '2019-05-13', 343, 9), -(129, '2019-05-13', 203, 12), -(130, '2019-05-13', 7, 12), -(131, '2019-05-13', 218, 12), -(132, '2019-05-14', 459, 5), -(133, '2019-05-14', 461, 5), -(134, '2019-05-14', 462, 5), -(135, '2019-05-14', 183, 5), -(136, '2019-05-14', 184, 5), -(137, '2019-05-14', 457, 5), -(138, '2019-05-14', 460, 5), -(139, '2019-05-14', 391, 5), -(140, '2019-05-14', 454, 5), -(141, '2019-05-14', 322, 5), -(142, '2019-05-14', 266, 5), -(143, '2019-05-14', 320, 5), -(144, '2019-05-14', 200, 5), -(145, '2019-05-14', 14, 5), -(146, '2019-05-14', 424, 5), -(147, '2019-05-14', 182, 5), -(148, '2019-05-14', 323, 5), -(149, '2019-05-14', 456, 5), -(150, '2019-05-14', 181, 5), -(151, '2019-05-14', 259, 5), -(152, '2019-05-14', 392, 5), -(153, '2019-05-14', 126, 5), -(154, '2019-05-14', 180, 5), -(155, '2019-05-14', 69, 5), -(156, '2019-05-14', 15, 5), -(157, '2019-05-14', 260, 5), -(158, '2019-05-14', 11, 5), -(159, '2019-05-14', 27, 5), -(160, '2019-05-14', 26, 5), -(161, '2019-05-14', 44, 5), -(162, '2019-05-14', 48, 5), -(163, '2019-05-14', 50, 5), -(164, '2019-05-14', 154, 5), -(165, '2019-05-14', 30, 5), -(166, '2019-05-14', 57, 5), -(167, '2019-05-14', 228, 5), -(168, '2019-05-14', 51, 5), -(169, '2019-05-14', 32, 5), -(170, '2019-05-14', 61, 5), -(171, '2019-05-14', 45, 5), -(172, '2019-05-14', 158, 5), -(173, '2019-05-14', 458, 5), -(174, '2019-05-14', 82, 5), -(175, '2019-05-14', 6, 5), -(176, '2019-05-14', 298, 5), -(177, '2019-05-14', 35, 5), -(178, '2019-05-14', 71, 5), -(179, '2019-05-14', 268, 5), -(180, '2019-05-14', 9, 5), -(181, '2019-05-14', 16, 5), -(182, '2019-05-14', 364, 5), -(183, '2019-05-17', 2, 4), -(184, '2019-05-17', 185, 4), -(185, '2019-05-17', 28, 4), -(186, '2019-05-17', 457, 4), -(187, '2019-05-17', 1, 4), -(188, '2019-05-17', 4, 4), -(189, '2019-05-17', 5, 4), -(190, '2019-05-17', 29, 4), -(191, '2019-05-17', 256, 4), -(192, '2019-05-17', 323, 4), -(193, '2019-05-17', 320, 4), -(194, '2019-05-17', 321, 4), -(195, '2019-05-17', 255, 4), -(196, '2019-05-17', 257, 4), -(197, '2019-05-17', 462, 4), -(198, '2019-05-17', 461, 4), -(199, '2019-05-20', 366, 4), -(200, '2019-05-20', 22, 6), -(201, '2019-05-20', 25, 6), -(202, '2019-05-20', 23, 6), -(203, '2019-05-20', 31, 6), -(204, '2019-05-20', 183, 9), -(205, '2019-05-20', 184, 9), -(206, '2019-05-20', 185, 9), -(207, '2019-05-20', 256, 9), -(208, '2019-05-20', 28, 9), -(209, '2019-05-20', 4, 9), -(210, '2019-05-20', 10, 9), -(211, '2019-05-20', 5, 9), -(212, '2019-05-20', 318, 9), -(213, '2019-05-20', 1, 9), -(214, '2019-05-20', 255, 9), -(215, '2019-05-20', 3, 9), -(216, '2019-05-20', 14, 9), -(217, '2019-05-20', 182, 9), -(218, '2019-05-20', 257, 9), -(219, '2019-05-20', 9, 9), -(220, '2019-05-20', 2, 8), -(221, '2019-05-20', 4, 8), -(222, '2019-05-20', 256, 8), -(223, '2019-05-20', 5, 8), -(224, '2019-05-20', 182, 8), -(225, '2019-05-20', 28, 8), -(226, '2019-05-20', 1, 8), -(227, '2019-05-21', 11, 9), -(228, '2019-05-21', 255, 8), -(229, '2019-05-21', 3, 8), -(230, '2019-05-21', 10, 8), -(231, '2019-05-21', 257, 8), -(232, '2019-05-21', 257, 6), -(233, '2019-05-21', 259, 6), -(234, '2019-05-21', 3, 1), -(235, '2019-05-21', 258, 11), -(236, '2019-05-21', 2, 11), -(237, '2019-05-21', 28, 11), -(238, '2019-05-21', 1, 11), -(239, '2019-05-21', 4, 11), -(240, '2019-05-21', 5, 11), -(241, '2019-05-21', 29, 11), -(242, '2019-05-21', 259, 11), -(243, '2019-05-21', 3, 11), -(244, '2019-05-21', 11, 11), -(245, '2019-05-21', 9, 11), -(246, '2019-05-21', 35, 11), -(247, '2019-05-21', 28, 7), -(248, '2019-05-21', 2, 7), -(249, '2019-05-21', 185, 7), -(250, '2019-05-21', 3, 7), -(251, '2019-05-21', 11, 7), -(252, '2019-05-21', 9, 7), -(253, '2019-05-21', 31, 7), -(254, '2019-05-21', 256, 7), -(255, '2019-05-22', 197, 6), -(256, '2019-05-22', 198, 6), -(257, '2019-05-23', 116, 5), -(258, '2019-05-23', 553, 5), -(259, '2019-05-26', 78, 4), -(260, '2019-05-26', 268, 4), -(261, '2019-05-26', 459, 4), -(262, '2019-05-26', 318, 4), -(263, '2019-05-26', 183, 4), -(264, '2019-05-26', 184, 4), -(265, '2019-07-02', 256, 11), -(266, '2019-07-02', 366, 11), -(267, '2019-07-02', 459, 11), -(268, '2019-07-02', 461, 11), -(269, '2019-07-02', 462, 11), -(270, '2019-07-02', 185, 11), -(271, '2019-07-02', 183, 11), -(272, '2019-07-02', 184, 11), -(273, '2019-07-02', 200, 11), -(274, '2019-07-02', 255, 11), -(275, '2019-07-02', 319, 11), -(276, '2019-07-02', 14, 11), -(277, '2019-07-02', 460, 11), -(278, '2019-07-02', 182, 11), -(279, '2019-07-02', 323, 11), -(280, '2019-07-02', 320, 11), -(281, '2019-07-02', 321, 11), -(282, '2019-07-02', 322, 11), -(283, '2019-07-02', 456, 11), -(284, '2019-07-02', 454, 11), -(285, '2019-07-02', 10, 11), -(286, '2019-07-02', 391, 11), -(287, '2019-07-02', 180, 11), -(288, '2019-07-02', 178, 11), -(289, '2019-07-02', 181, 11), -(290, '2019-07-02', 388, 11), -(291, '2019-07-02', 187, 11), -(292, '2019-07-02', 179, 11), -(293, '2019-07-02', 257, 11), -(294, '2019-07-02', 267, 11), -(295, '2019-07-02', 269, 11), -(296, '2019-07-02', 68, 11), -(297, '2019-07-02', 69, 11), -(298, '2019-07-02', 365, 11), -(299, '2019-07-02', 264, 11), -(300, '2019-07-02', 266, 11), -(301, '2019-07-02', 186, 11), -(302, '2019-07-02', 126, 11), -(303, '2019-07-02', 277, 11), -(304, '2019-07-02', 357, 11), -(305, '2019-07-02', 356, 11), -(306, '2019-07-02', 393, 11), -(307, '2019-07-02', 394, 11), -(308, '2019-07-02', 395, 11), -(309, '2019-07-02', 392, 11), -(310, '2019-07-02', 396, 11), -(311, '2019-07-02', 464, 11), -(312, '2019-07-02', 245, 11), -(313, '2019-07-02', 208, 11), -(314, '2019-07-02', 201, 11), -(315, '2019-07-02', 82, 11), -(316, '2019-07-02', 260, 11), -(317, '2019-07-02', 15, 11), -(318, '2019-07-02', 268, 11), -(319, '2019-07-02', 296, 11), -(320, '2019-07-02', 298, 11), -(321, '2019-07-02', 263, 11), -(322, '2019-07-02', 265, 11), -(323, '2019-07-02', 279, 11), -(324, '2019-07-02', 287, 11), -(325, '2019-07-02', 458, 11), -(326, '2019-07-02', 278, 11), -(327, '2019-07-02', 6, 11), -(328, '2019-07-02', 202, 11), -(329, '2019-07-02', 371, 11), -(330, '2019-07-02', 281, 11), -(331, '2019-07-02', 284, 11), -(332, '2019-07-02', 214, 11), -(333, '2019-07-02', 404, 11), -(334, '2019-07-02', 401, 11), -(335, '2019-07-02', 402, 11), -(336, '2019-07-02', 85, 11), -(337, '2019-07-02', 423, 11), -(338, '2019-07-02', 189, 11), -(339, '2019-07-02', 380, 11), -(340, '2019-07-02', 329, 11), -(341, '2019-07-02', 328, 11), -(342, '2019-07-02', 101, 11), -(343, '2019-07-02', 96, 11), -(344, '2019-07-02', 131, 11), -(346, '2019-07-02', 257, 1), -(347, '2019-07-02', 468, 11), -(348, '2019-07-02', 209, 11), -(349, '2019-07-02', 84, 11), -(350, '2019-07-02', 100, 11), -(351, '2019-07-02', 102, 11), -(352, '2019-07-02', 332, 11), -(353, '2019-07-02', 20, 11), -(354, '2019-07-02', 37, 11), -(355, '2019-07-02', 7, 11), -(356, '2019-07-02', 218, 11), -(357, '2019-07-02', 83, 11), -(358, '2019-07-02', 31, 11), -(359, '2019-07-02', 25, 11), -(360, '2019-07-02', 22, 11), -(361, '2019-07-02', 30, 11), -(362, '2019-07-02', 228, 11), -(363, '2019-07-02', 21, 11), -(364, '2019-07-02', 19, 11), -(365, '2019-07-02', 26, 11), -(366, '2019-07-02', 27, 11), -(367, '2019-07-02', 23, 11), -(368, '2019-07-02', 32, 11), -(369, '2019-07-02', 61, 11), -(370, '2019-07-02', 169, 11), -(371, '2019-07-02', 190, 11), -(372, '2019-07-02', 24, 11), -(373, '2019-07-02', 170, 11), -(374, '2019-07-02', 58, 11), -(375, '2019-07-02', 33, 11), -(376, '2019-07-02', 95, 2); - --- -------------------------------------------------------- - --- --- Structure de la table `people_gymnast` --- - -CREATE TABLE `people_gymnast` ( - `id` int NOT NULL, - `content` longtext, - `birthdate` date NOT NULL, - `gender` smallint UNSIGNED NOT NULL, - `niss` varchar(11) DEFAULT NULL, - `address` varchar(255) DEFAULT NULL, - `postal` varchar(6) DEFAULT NULL, - `city` varchar(150) DEFAULT NULL, - `phone` varchar(9) DEFAULT NULL, - `gsm` varchar(10) DEFAULT NULL, - `fedid` varchar(10) DEFAULT NULL, - `gsm_mother` varchar(10) DEFAULT NULL, - `gsm_father` varchar(10) DEFAULT NULL, - `orientation` smallint UNSIGNED DEFAULT NULL, - `picture` varchar(100) DEFAULT NULL, - `trainer_id` int DEFAULT NULL, - `user_id` int DEFAULT NULL, - `club_id` int DEFAULT NULL, - `email_father` varchar(255) DEFAULT NULL, - `email_mother` varchar(255) DEFAULT NULL, - `created_at` datetime(6) NOT NULL, - `year_of_practice` smallint UNSIGNED NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `people_gymnast` --- - -INSERT INTO `people_gymnast` (`id`, `content`, `birthdate`, `gender`, `niss`, `address`, `postal`, `city`, `phone`, `gsm`, `fedid`, `gsm_mother`, `gsm_father`, `orientation`, `picture`, `trainer_id`, `user_id`, `club_id`, `email_father`, `email_mother`, `created_at`, `year_of_practice`) VALUES -(1, 'Arrête toi dès qu\'une douleur au mollet se fait sentir.', '2003-01-28', 1, '03012824878', 'Rue De Coeurcq, 79', '1480', 'Tubize', NULL, '0472495888', '66196', '0470937641', '0471663470', 0, 'noelia.jpg', 1, 13, 1, NULL, 'noa-noelia@hotmail.com', '2019-05-09 08:05:24.132823', 8), -(2, '', '2007-07-19', 0, NULL, 'Rue du radoux, 98', '1430', 'Bierghes', NULL, NULL, NULL, '0494277453', '0494277583', NULL, 'Lucasljpg', 2, 10, 1, NULL, 'san.deleu@gmail.com', '2019-05-09 08:05:24.132823', 0), -(3, '', '2001-12-30', 0, NULL, 'Chemin de Wisbech, 15', '1430', 'Quenast', NULL, '0488195678', NULL, '0485897973', '0486307558', NULL, '', 1, 7, 1, NULL, 'val.mertens@gmail.com', '2019-05-09 08:05:24.132823', 0), -(4, '', '1996-05-07', 1, NULL, NULL, NULL, NULL, NULL, '0470442024', NULL, NULL, NULL, NULL, '', 1, 9, 2, NULL, 'monika_raschke@yahoo.de', '2019-05-09 08:05:24.132823', 0), -(5, '', '2001-05-30', 0, NULL, 'Rue De La Briqueterie, 5', '1480', 'Tubize', NULL, '0485183267', NULL, '0477298629', '0485427606', 1, '', 1, 6, 1, 'salhi.yahya@gmail.com', 'sabina.buonvivere@isbbt.be', '2019-05-09 08:05:24.132823', 9), -(6, '', '2007-08-29', 1, NULL, 'Rue Grand-mère, 6', '1421', 'Ophain', NULL, NULL, NULL, '0476680449', '0475659922', NULL, '', 2, 5, 1, 'amiral1969@hotmail.com', 'eloirmuriel@gmail.com', '2019-05-09 08:05:24.132823', 0), -(7, '', '2007-05-21', 0, NULL, 'Chaussée d\'Ophain, 121', '1420', 'Braine-l\'Alleud', NULL, NULL, NULL, '0478675942', '0476786285', NULL, '', 1, 4, 1, NULL, 'laetitiavanye@gmail.com', '2019-05-09 08:05:24.132823', 0), -(8, '', '2010-09-18', 1, NULL, 'Rue des archers, 50a', '7090', 'Braine-le-comte', NULL, NULL, NULL, '0472873019', '0473608197', NULL, '', 2, 11, 1, NULL, 'vdcarine@hotmail.com', '2019-05-09 08:05:24.132823', 0), -(9, '', '2002-11-12', 1, NULL, 'Clos du Val de l\'Écossais, 27', '1420', 'Braine-l\'Alleud', NULL, '0485696624', NULL, '0485814619', '0478523543', 1, '', 1, 14, 1, 'Daniel@isea.tc', 'evelyne.gallet@hotmail.com', '2019-05-09 08:05:24.132823', 0), -(11, '', '1999-01-14', 0, NULL, NULL, NULL, NULL, NULL, '0476020907', NULL, NULL, NULL, 1, '', 1, 8, 2, NULL, 'monika_raschke@yahoo.de', '2019-05-09 08:05:24.132823', 14), -(12, '', '2006-07-18', 0, NULL, 'Avenue du taillis, 20', '1470', 'Genappe', NULL, NULL, NULL, '0496121079', '0473119542', 0, '', 2, 12, 1, NULL, 'marie-noelle.rainchon@bnpparibasfortis.com', '2019-05-13 15:19:28.234919', 0); - --- -------------------------------------------------------- - --- --- Structure de la table `people_gymnasthasroutine` --- - -CREATE TABLE `people_gymnasthasroutine` ( - `id` int NOT NULL, - `routine_type` smallint UNSIGNED NOT NULL, - `datebegin` date NOT NULL, - `dateend` date DEFAULT NULL, - `gymnast_id` int NOT NULL, - `routine_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `people_gymnasthasroutine` --- - -INSERT INTO `people_gymnasthasroutine` (`id`, `routine_type`, `datebegin`, `dateend`, `gymnast_id`, `routine_id`) VALUES -(1, 1, '2018-09-01', NULL, 1, 495), -(2, 2, '2018-09-01', NULL, 1, 495), -(3, 3, '2018-09-01', NULL, 1, 495), -(4, 1, '2018-09-01', NULL, 4, 515), -(5, 2, '2018-09-01', NULL, 4, 516), -(6, 1, '2018-12-01', NULL, 5, 508), -(7, 2, '2018-12-01', NULL, 5, 509), -(8, 3, '2018-09-01', NULL, 4, 516), -(11, 1, '2019-07-02', NULL, 11, 559); - --- -------------------------------------------------------- - --- --- Structure de la table `people_todorelation` --- - -CREATE TABLE `people_todorelation` ( - `id` int NOT NULL, - `date` date NOT NULL, - `educative_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_course` --- - -CREATE TABLE `planning_course` ( - `id` int NOT NULL, - `content` longtext, - `datebegin` datetime(6) NOT NULL, - `dateend` datetime(6) NOT NULL, - `iso_day_number` smallint UNSIGNED NOT NULL, - `hour_begin` time(6) NOT NULL, - `hour_end` time(6) NOT NULL, - `club_id` int NOT NULL, - `season_id` int DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_course` --- - -INSERT INTO `planning_course` (`id`, `content`, `datebegin`, `dateend`, `iso_day_number`, `hour_begin`, `hour_end`, `club_id`, `season_id`) VALUES -(1, '', '2018-09-01 00:00:00.000000', '2019-06-30 23:59:59.000000', 6, '10:00:00.000000', '12:00:00.000000', 1, 1), -(2, '', '2018-09-01 00:00:00.000000', '2019-06-30 23:59:59.000000', 1, '17:00:00.000000', '19:00:00.000000', 1, 1), -(3, '', '2018-09-01 00:00:00.000000', '2019-06-30 23:59:59.000000', 3, '17:00:00.000000', '19:00:00.000000', 1, 1), -(4, '', '2018-09-01 00:00:00.000000', '2019-06-30 23:59:59.000000', 5, '17:15:00.000000', '19:15:00.000000', 1, 1), -(5, '', '2018-09-01 00:00:00.000000', '2019-06-30 23:59:59.000000', 6, '19:00:00.000000', '21:30:00.000000', 2, 1), -(6, '', '2018-09-01 00:00:00.000000', '2019-09-01 23:59:59.000000', 6, '11:00:00.000000', '13:00:00.000000', 2, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_course_gymnasts` --- - -CREATE TABLE `planning_course_gymnasts` ( - `id` int NOT NULL, - `course_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_course_gymnasts` --- - -INSERT INTO `planning_course_gymnasts` (`id`, `course_id`, `gymnast_id`) VALUES -(31, 1, 1), -(32, 1, 2), -(33, 1, 6), -(34, 1, 7), -(35, 1, 8), -(36, 1, 9), -(1, 2, 1), -(2, 2, 2), -(3, 2, 4), -(4, 2, 5), -(5, 2, 6), -(6, 2, 7), -(7, 2, 8), -(8, 2, 9), -(9, 2, 12), -(10, 3, 1), -(11, 3, 3), -(12, 3, 5), -(13, 3, 6), -(14, 3, 7), -(15, 3, 8), -(16, 3, 9), -(17, 4, 1), -(18, 4, 3), -(19, 4, 4), -(20, 4, 5), -(21, 4, 7), -(29, 5, 4), -(30, 5, 5), -(28, 5, 11); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_course_trainers` --- - -CREATE TABLE `planning_course_trainers` ( - `id` int NOT NULL, - `course_id` int NOT NULL, - `user_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_course_trainers` --- - -INSERT INTO `planning_course_trainers` (`id`, `course_id`, `user_id`) VALUES -(1, 1, 1), -(2, 2, 1), -(6, 2, 2), -(3, 3, 1), -(4, 3, 2), -(5, 3, 3), -(7, 4, 1), -(8, 5, 1), -(9, 6, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_event` --- - -CREATE TABLE `planning_event` ( - `id` int NOT NULL, - `content` longtext, - `datebegin` datetime(6) NOT NULL, - `dateend` datetime(6) NOT NULL, - `name` varchar(255) NOT NULL, - `eventtype_id` int NOT NULL, - `place_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_event` --- - -INSERT INTO `planning_event` (`id`, `content`, `datebegin`, `dateend`, `name`, `eventtype_id`, `place_id`) VALUES -(1, 'Test de l\'interface graphique', '2019-03-31 09:03:00.000000', '2019-03-31 19:03:00.000000', 'GymFed PV3 2019', 1, 8), -(2, 'Championnat FfG.', '2019-05-05 09:30:00.000000', '2019-05-05 16:00:00.000000', 'Championnat FfG', 1, 1), -(3, 'Chpt flamand', '2019-04-27 09:00:00.000000', '2019-04-28 18:00:00.000000', 'Vlaams Kampioenschap', 1, 3), -(4, 'Fête du club l’avant dernier dimanche de juin. Répétitions générale à 10h, démo à 13.', '2019-06-23 09:06:00.000000', '2019-06-23 17:06:00.000000', 'Fête du club', 2, 1), -(5, '(à venir)', '2019-05-18 09:00:00.000000', '2019-05-19 16:00:00.000000', 'Championnat de Belgique 2019', 1, 4), -(6, '(à venir… troisième test)', '2019-07-04 09:07:00.000000', '2019-07-07 09:07:00.000000', 'Scalabis Cup 2019', 1, 5), -(7, '', '2019-02-10 09:00:00.000000', '2019-02-10 16:00:00.000000', 'Championnat BCBW (Open)', 1, 1), -(8, '', '2019-01-26 10:50:00.000000', '2019-01-27 10:50:00.000000', 'GymFed PV1 2019', 1, 6), -(9, '', '2019-02-16 11:26:00.000000', '2019-02-17 11:26:00.000000', 'GymFed PV2 2019', 1, 7), -(10, '', '2018-01-28 09:00:00.000000', '2018-01-28 17:00:00.000000', 'GymFed PV1 2018', 1, 4), -(11, '', '2018-03-25 09:00:00.000000', '2018-03-25 17:00:00.000000', 'GymFed PV3 2018', 1, 16), -(12, '', '2018-05-20 09:00:00.000000', '2018-05-20 17:00:00.000000', 'Championnat de Belgique 2018', 1, 9), -(13, '', '2017-01-28 09:00:00.000000', '2017-01-29 17:00:00.000000', 'GymFed PV1 2017', 1, 13), -(14, '', '2017-02-18 09:00:00.000000', '2017-02-19 17:00:00.000000', 'GymFed PV2 2017', 1, 14), -(15, '', '2017-03-25 09:00:00.000000', '2017-03-26 17:00:00.000000', 'GymFed PV3 2017', 1, 15), -(16, '', '2017-05-13 09:00:00.000000', '2017-05-14 17:00:00.000000', 'Championnat de Belgique 2017', 1, 8), -(18, '', '2020-02-01 09:00:00.000000', '2020-02-02 17:00:00.000000', 'GymFed PV1 2020', 1, 6), -(19, '', '2020-03-07 09:00:00.000000', '2020-03-08 17:00:00.000000', 'GymFed PV2 2020', 1, 9), -(20, '', '2020-03-28 09:00:00.000000', '2020-03-29 17:00:00.000000', 'GymFed PV3 2020', 1, 10), -(21, '', '2020-05-02 09:00:00.000000', '2020-05-03 17:00:00.000000', 'Vlaams Kampioenschap', 1, 11), -(22, '', '2020-05-30 09:00:00.000000', '2020-05-31 17:00:00.000000', 'Groot Belgisch Kampioenschap', 1, 12); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_eventtype` --- - -CREATE TABLE `planning_eventtype` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(5) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_eventtype` --- - -INSERT INTO `planning_eventtype` (`id`, `name`, `acronym`) VALUES -(1, 'Compétition', 'CPT'), -(2, 'Démonstration', 'Démo'), -(3, 'Initiation', 'Ini'), -(4, 'Stage', 'Stg'); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_event_participation` --- - -CREATE TABLE `planning_event_participation` ( - `id` int NOT NULL, - `rank` smallint UNSIGNED NOT NULL, - `event_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_event_participation` --- - -INSERT INTO `planning_event_participation` (`id`, `rank`, `event_id`, `gymnast_id`) VALUES -(1, 10, 5, 1), -(2, 6, 5, 5), -(3, 2, 5, 11), -(4, 5, 5, 4), -(5, 5, 5, 2), -(6, 0, 6, 11), -(7, 0, 6, 5); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_group` --- - -CREATE TABLE `planning_group` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(50) NOT NULL, - `active` tinyint(1) NOT NULL, - `season` varchar(9) NOT NULL, - `club_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_planningline` --- - -CREATE TABLE `planning_planningline` ( - `id` int NOT NULL, - `content` longtext, - `date` date NOT NULL, - `order` smallint UNSIGNED NOT NULL, - `todo` varchar(255) NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_round` --- - -CREATE TABLE `planning_round` ( - `id` int NOT NULL, - `content` longtext, - `round_information` varchar(255) DEFAULT NULL, - `round_number` smallint UNSIGNED DEFAULT NULL, - `gymnast_evaluation` smallint UNSIGNED DEFAULT NULL, - `nb_of_realisation` smallint UNSIGNED DEFAULT NULL, - `nb_of_success` smallint UNSIGNED DEFAULT NULL, - `educative_id` int DEFAULT NULL, - `training_id` int NOT NULL, - `coach_evaluation` smallint UNSIGNED DEFAULT NULL, - `is_important` tinyint(1) NOT NULL, - `coachid_id` int DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_round` --- - -INSERT INTO `planning_round` (`id`, `content`, `round_information`, `round_number`, `gymnast_evaluation`, `nb_of_realisation`, `nb_of_success`, `educative_id`, `training_id`, `coach_evaluation`, `is_important`, `coachid_id`) VALUES -(1, '', 'LIBRE', 1, NULL, NULL, NULL, NULL, 1, NULL, 0, NULL), -(2, '', '| 1, 2 et 3', 2, NULL, NULL, NULL, NULL, 1, NULL, 0, NULL), -(3, '', '| & |4', 3, NULL, NULL, NULL, NULL, 1, NULL, 0, NULL), -(4, '', 'Sauts de base', 4, NULL, NULL, NULL, NULL, 1, NULL, 0, NULL), -(5, '', 'Tombers de bases', 5, NULL, 3, NULL, NULL, 1, NULL, 0, NULL), -(6, '', 'LIBRE', 1, NULL, NULL, NULL, NULL, 2, NULL, 0, NULL), -(7, '', '|1, 2 & 3', 2, NULL, NULL, NULL, NULL, 2, NULL, 0, NULL), -(8, '', '| & |4', 3, NULL, NULL, NULL, NULL, 2, NULL, 0, NULL), -(9, '', 'Sauts de base', 4, NULL, NULL, NULL, NULL, 2, NULL, 0, NULL), -(10, '', 'Tombers de bases', 5, NULL, NULL, NULL, NULL, 2, NULL, 0, NULL), -(11, '', '4.-*', 6, NULL, 3, NULL, NULL, 2, NULL, 0, NULL), -(12, '', '41*', 7, NULL, 3, NULL, NULL, 2, NULL, 0, NULL), -(13, '', '41*', 7, NULL, 3, NULL, NULL, 3, NULL, 0, NULL), -(14, '', '4.-*', 6, NULL, 3, NULL, NULL, 3, NULL, 0, NULL), -(15, '', 'Tombers de bases', 5, NULL, NULL, NULL, NULL, 3, NULL, 0, NULL), -(16, '', 'Sauts de base', 4, NULL, NULL, NULL, NULL, 3, NULL, 0, NULL), -(17, '', '| & |4', 3, NULL, NULL, NULL, NULL, 3, NULL, 0, NULL), -(18, '', '|1, 2 & 3', 2, NULL, NULL, NULL, NULL, 3, NULL, 0, NULL), -(19, '', 'LIBRE', 1, NULL, NULL, NULL, NULL, 3, NULL, 0, NULL), -(20, '', 'LIBRE', 1, NULL, NULL, NULL, NULL, 4, 9, 0, NULL), -(21, '', '|1, 2 & 3', 2, NULL, NULL, NULL, NULL, 4, NULL, 0, NULL), -(22, '', '| & |4', 3, NULL, NULL, NULL, NULL, 4, 8, 0, NULL), -(23, '', 'Sauts de base', 4, NULL, NULL, NULL, NULL, 4, NULL, 0, NULL), -(24, '', 'Tombers de bases', 5, NULL, NULL, NULL, NULL, 4, NULL, 0, NULL), -(25, '', '4.-*', 6, NULL, 3, NULL, NULL, 4, 7, 0, NULL), -(26, '', '41*', 7, NULL, 3, NULL, NULL, 4, 7, 0, NULL), -(27, '', '41*', 7, NULL, 3, NULL, NULL, 5, NULL, 0, NULL), -(28, '', '4.-*', 6, NULL, 3, NULL, NULL, 5, NULL, 0, NULL), -(29, '', 'Tombers de bases', 5, NULL, NULL, NULL, NULL, 5, NULL, 0, NULL), -(30, '', 'Sauts de base', 4, NULL, NULL, NULL, NULL, 5, NULL, 0, NULL), -(31, '', '| & |4', 3, NULL, NULL, NULL, NULL, 5, NULL, 0, NULL), -(32, '', '|1, 2 & 3', 2, NULL, NULL, NULL, NULL, 5, NULL, 0, NULL), -(33, '', 'LIBRE', 1, NULL, NULL, NULL, NULL, 5, NULL, 0, NULL), -(34, '', 'L1 [-5]', 8, NULL, 2, NULL, NULL, 4, 6, 1, NULL), -(35, '', 'L1 [3-6]', 9, NULL, 2, NULL, NULL, 4, NULL, 1, NULL), -(36, '', 'L1 [6-8]', 10, NULL, 3, NULL, NULL, 4, NULL, 1, NULL), -(37, '', 'L1 [8-]', 11, NULL, 3, NULL, NULL, 4, NULL, 1, NULL); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_season` --- - -CREATE TABLE `planning_season` ( - `id` int NOT NULL, - `datebegin` datetime(6) NOT NULL, - `dateend` datetime(6) NOT NULL, - `label` varchar(11) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_season` --- - -INSERT INTO `planning_season` (`id`, `datebegin`, `dateend`, `label`) VALUES -(1, '2018-09-03 00:00:00.000000', '2019-08-31 23:59:59.000000', '2018-19'); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_subgroup` --- - -CREATE TABLE `planning_subgroup` ( - `id` int NOT NULL, - `name` varchar(255) NOT NULL, - `acronym` varchar(50) NOT NULL, - `active` tinyint(1) NOT NULL, - `group_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_subgroup_courses` --- - -CREATE TABLE `planning_subgroup_courses` ( - `id` int NOT NULL, - `subgroup_id` int NOT NULL, - `course_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_subgroup_gymnasts` --- - -CREATE TABLE `planning_subgroup_gymnasts` ( - `id` int NOT NULL, - `subgroup_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_training` --- - -CREATE TABLE `planning_training` ( - `id` int NOT NULL, - `trainingdate` date NOT NULL, - `course_id` int NOT NULL, - `gymnast_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `planning_training` --- - -INSERT INTO `planning_training` (`id`, `trainingdate`, `course_id`, `gymnast_id`) VALUES -(1, '2019-03-16', 1, 1), -(2, '2019-03-18', 2, 1), -(3, '2019-03-20', 3, 1), -(4, '2019-03-22', 4, 1), -(5, '2019-03-23', 1, 1); - --- -------------------------------------------------------- - --- --- Structure de la table `planning_unavailability` --- - -CREATE TABLE `planning_unavailability` ( - `id` int NOT NULL, - `content` longtext, - `datebegin` datetime(6) NOT NULL, - `dateend` datetime(6) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `planning_unavailability_course` --- - -CREATE TABLE `planning_unavailability_course` ( - `id` int NOT NULL, - `unavailability_id` int NOT NULL, - `course_id` int NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Structure de la table `profile_profile` --- - -CREATE TABLE `profile_profile` ( - `id` int NOT NULL, - `birth_date` date DEFAULT NULL, - `gsm` varchar(10) DEFAULT NULL, - `template_color` smallint UNSIGNED NOT NULL, - `user_id` int NOT NULL, - `sidebar_color` smallint UNSIGNED NOT NULL, - `picture` varchar(100) DEFAULT NULL, - `is_sidebar_minified` tinyint(1) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Déchargement des données de la table `profile_profile` --- - -INSERT INTO `profile_profile` (`id`, `birth_date`, `gsm`, `template_color`, `user_id`, `sidebar_color`, `picture`, `is_sidebar_minified`) VALUES -(1, '1982-02-05', '0494923851', 0, 1, 4, '', 1), -(2, '1995-02-23', '0470606857', 1, 2, 0, NULL, 0), -(3, '1988-03-27', '0472534432', 0, 3, 0, NULL, 0); - --- --- Index pour les tables déchargées --- - --- --- Index pour la table `auth_group` --- -ALTER TABLE `auth_group` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `name` (`name`); - --- --- Index pour la table `auth_group_permissions` --- -ALTER TABLE `auth_group_permissions` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`), - ADD KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`); - --- --- Index pour la table `auth_permission` --- -ALTER TABLE `auth_permission` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`); - --- --- Index pour la table `auth_user` --- -ALTER TABLE `auth_user` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `username` (`username`); - --- --- Index pour la table `auth_user_groups` --- -ALTER TABLE `auth_user_groups` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `auth_user_groups_user_id_group_id_94350c0c_uniq` (`user_id`,`group_id`), - ADD KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`); - --- --- Index pour la table `auth_user_user_permissions` --- -ALTER TABLE `auth_user_user_permissions` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq` (`user_id`,`permission_id`), - ADD KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`); - --- --- Index pour la table `communication_message` --- -ALTER TABLE `communication_message` - ADD PRIMARY KEY (`id`), - ADD KEY `communication_message_recipient_id_8c3f807e_fk_auth_user_id` (`recipient_id`), - ADD KEY `communication_message_sender_id_11380a9e_fk_auth_user_id` (`sender_id`); - --- --- Index pour la table `competition_competition` --- -ALTER TABLE `competition_competition` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `competition_division` --- -ALTER TABLE `competition_division` - ADD PRIMARY KEY (`id`), - ADD KEY `competition_division_competition_id_cb3fe124_fk_competiti` (`competition_id`); - --- --- Index pour la table `competition_level` --- -ALTER TABLE `competition_level` - ADD PRIMARY KEY (`id`), - ADD KEY `competition_level_division_id_e44dbf30_fk_competiti` (`division_id`); - --- --- Index pour la table `competition_point` --- -ALTER TABLE `competition_point` - ADD PRIMARY KEY (`id`), - ADD KEY `competition_point_event_id_bebf2cc0_fk_planning_event_id` (`event_id`), - ADD KEY `competition_point_gymnast_id_570cd8c2_fk_people_gymnast_id` (`gymnast_id`); - --- --- Index pour la table `django_admin_log` --- -ALTER TABLE `django_admin_log` - ADD PRIMARY KEY (`id`), - ADD KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`), - ADD KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`); - --- --- Index pour la table `django_content_type` --- -ALTER TABLE `django_content_type` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`); - --- --- Index pour la table `django_migrations` --- -ALTER TABLE `django_migrations` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `django_session` --- -ALTER TABLE `django_session` - ADD PRIMARY KEY (`session_key`), - ADD KEY `django_session_expire_date_a5c62663` (`expire_date`); - --- --- Index pour la table `location_club` --- -ALTER TABLE `location_club` - ADD PRIMARY KEY (`id`), - ADD KEY `location_club_place_id_bbca5590_fk_location_place_id` (`place_id`); - --- --- Index pour la table `location_country` --- -ALTER TABLE `location_country` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `location_place` --- -ALTER TABLE `location_place` - ADD PRIMARY KEY (`id`), - ADD KEY `location_place_country_id_1a74c9da_fk_location_country_id` (`country_id`); - --- --- Index pour la table `objective_chrono` --- -ALTER TABLE `objective_chrono` - ADD PRIMARY KEY (`id`), - ADD KEY `objective_chrono_gymnast_id_d3baf571_fk_people_gymnast_id` (`gymnast_id`), - ADD KEY `objective_chrono_routine_id_38901ccf_fk_objective` (`routine_id`); - --- --- Index pour la table `objective_educative` --- -ALTER TABLE `objective_educative` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `objective_educative_educative` --- -ALTER TABLE `objective_educative_educative` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `objective_educative_educ_from_educative_id_to_edu_4372d00a_uniq` (`from_educative_id`,`to_educative_id`), - ADD KEY `objective_educative__to_educative_id_62d30efe_fk_objective` (`to_educative_id`); - --- --- Index pour la table `objective_educative_prerequisite` --- -ALTER TABLE `objective_educative_prerequisite` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `objective_educative_prer_from_educative_id_to_edu_bd7d1934_uniq` (`from_educative_id`,`to_educative_id`), - ADD KEY `objective_educative__to_educative_id_c339c635_fk_objective` (`to_educative_id`); - --- --- Index pour la table `objective_evaluation` --- -ALTER TABLE `objective_evaluation` - ADD PRIMARY KEY (`id`), - ADD KEY `objective_evaluation_educative_id_ab2e8989_fk_objective` (`educative_id`), - ADD KEY `objective_evaluation_evaluator_id_6078229a_fk_auth_user_id` (`evaluator_id`); - --- --- Index pour la table `objective_routine` --- -ALTER TABLE `objective_routine` - ADD PRIMARY KEY (`educative_ptr_id`); - --- --- Index pour la table `objective_routine_skill` --- -ALTER TABLE `objective_routine_skill` - ADD PRIMARY KEY (`id`), - ADD KEY `objective_routine_sk_routine_id_215b4210_fk_objective` (`routine_id`), - ADD KEY `objective_routine_sk_skill_id_ca0b2196_fk_objective` (`skill_id`); - --- --- Index pour la table `objective_skill` --- -ALTER TABLE `objective_skill` - ADD PRIMARY KEY (`educative_ptr_id`), - ADD KEY `objective_skill_departure_id_bd149525_fk_objective` (`departure_id`), - ADD KEY `objective_skill_landing_id_77d746fb_fk_objective` (`landing_id`); - --- --- Index pour la table `objective_touchposition` --- -ALTER TABLE `objective_touchposition` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `people_accident` --- -ALTER TABLE `people_accident` - ADD PRIMARY KEY (`id`), - ADD KEY `people_accident_gymnast_id_dbf0f434_fk_people_gymnast_id` (`gymnast_id`), - ADD KEY `people_accident_educative_id_d979abab_fk_objective` (`educative_id`); - --- --- Index pour la table `people_candorelation` --- -ALTER TABLE `people_candorelation` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `people_candorelation_gymnast_id_educative_id_92839690_uniq` (`gymnast_id`,`educative_id`), - ADD KEY `people_candorelation_educative_id_e1578bf0_fk_objective` (`educative_id`); - --- --- Index pour la table `people_gymnast` --- -ALTER TABLE `people_gymnast` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `user_id` (`user_id`), - ADD KEY `people_gymnast_trainer_id_45fcadd7_fk_auth_user_id` (`trainer_id`), - ADD KEY `people_gymnast_club_id_f41793af_fk_location_club_id` (`club_id`); - --- --- Index pour la table `people_gymnasthasroutine` --- -ALTER TABLE `people_gymnasthasroutine` - ADD PRIMARY KEY (`id`), - ADD KEY `people_gymnasthasrou_gymnast_id_903b53cb_fk_people_gy` (`gymnast_id`), - ADD KEY `people_gymnasthasrou_routine_id_d18d3c78_fk_objective` (`routine_id`); - --- --- Index pour la table `people_todorelation` --- -ALTER TABLE `people_todorelation` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `people_todorelation_gymnast_id_educative_id_95e13462_uniq` (`gymnast_id`,`educative_id`), - ADD KEY `people_todorelation_educative_id_9e67817d_fk_objective` (`educative_id`); - --- --- Index pour la table `planning_course` --- -ALTER TABLE `planning_course` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_course_club_id_a5511d92_fk_location_club_id` (`club_id`), - ADD KEY `planning_course_season_id_728e18fa_fk_planning_season_id` (`season_id`); - --- --- Index pour la table `planning_course_gymnasts` --- -ALTER TABLE `planning_course_gymnasts` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `planning_course_gymnast_course_id_gymnast_id_60878469_uniq` (`course_id`,`gymnast_id`), - ADD KEY `planning_course_gymn_gymnast_id_48bb398b_fk_people_gy` (`gymnast_id`); - --- --- Index pour la table `planning_course_trainers` --- -ALTER TABLE `planning_course_trainers` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `planning_course_trainers_course_id_user_id_b97b4c60_uniq` (`course_id`,`user_id`), - ADD KEY `planning_course_trainers_user_id_98010d80_fk_auth_user_id` (`user_id`); - --- --- Index pour la table `planning_event` --- -ALTER TABLE `planning_event` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_event_eventtype_id_2ba10477_fk_planning_eventtype_id` (`eventtype_id`), - ADD KEY `planning_event_place_id_aafebfa4_fk_location_place_id` (`place_id`); - --- --- Index pour la table `planning_eventtype` --- -ALTER TABLE `planning_eventtype` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `planning_event_participation` --- -ALTER TABLE `planning_event_participation` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_event_parti_event_id_0a769321_fk_planning_` (`event_id`), - ADD KEY `planning_event_parti_gymnast_id_bcb0945a_fk_people_gy` (`gymnast_id`); - --- --- Index pour la table `planning_group` --- -ALTER TABLE `planning_group` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_group_club_id_24022be5_fk_location_club_id` (`club_id`); - --- --- Index pour la table `planning_planningline` --- -ALTER TABLE `planning_planningline` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_planningline_gymnast_id_ca3c8734_fk_people_gymnast_id` (`gymnast_id`); - --- --- Index pour la table `planning_round` --- -ALTER TABLE `planning_round` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_round_educative_id_b179a654_fk_objective_educative_id` (`educative_id`), - ADD KEY `planning_round_training_id_c0511756_fk_planning_training_id` (`training_id`), - ADD KEY `planning_round_coachid_id_06897586_fk_auth_user_id` (`coachid_id`); - --- --- Index pour la table `planning_season` --- -ALTER TABLE `planning_season` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `planning_subgroup` --- -ALTER TABLE `planning_subgroup` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_subgroup_group_id_3053be03_fk_planning_group_id` (`group_id`); - --- --- Index pour la table `planning_subgroup_courses` --- -ALTER TABLE `planning_subgroup_courses` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `planning_subgroup_courses_subgroup_id_course_id_cec1c1f0_uniq` (`subgroup_id`,`course_id`), - ADD KEY `planning_subgroup_co_course_id_95f2fae3_fk_planning_` (`course_id`); - --- --- Index pour la table `planning_subgroup_gymnasts` --- -ALTER TABLE `planning_subgroup_gymnasts` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `planning_subgroup_gymnasts_subgroup_id_gymnast_id_5a4a8751_uniq` (`subgroup_id`,`gymnast_id`), - ADD KEY `planning_subgroup_gy_gymnast_id_ea3a4f7a_fk_people_gy` (`gymnast_id`); - --- --- Index pour la table `planning_training` --- -ALTER TABLE `planning_training` - ADD PRIMARY KEY (`id`), - ADD KEY `planning_training_course_id_6cd13c60_fk_planning_course_id` (`course_id`), - ADD KEY `planning_training_gymnast_id_3c2a8365_fk_people_gymnast_id` (`gymnast_id`); - --- --- Index pour la table `planning_unavailability` --- -ALTER TABLE `planning_unavailability` - ADD PRIMARY KEY (`id`); - --- --- Index pour la table `planning_unavailability_course` --- -ALTER TABLE `planning_unavailability_course` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `planning_unavailability__unavailability_id_course_c1ec8b96_uniq` (`unavailability_id`,`course_id`), - ADD KEY `planning_unavailabil_course_id_66f21587_fk_planning_` (`course_id`); - --- --- Index pour la table `profile_profile` --- -ALTER TABLE `profile_profile` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `user_id` (`user_id`); - --- --- AUTO_INCREMENT pour les tables déchargées --- - --- --- AUTO_INCREMENT pour la table `auth_group` --- -ALTER TABLE `auth_group` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `auth_group_permissions` --- -ALTER TABLE `auth_group_permissions` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `auth_permission` --- -ALTER TABLE `auth_permission` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=157; - --- --- AUTO_INCREMENT pour la table `auth_user` --- -ALTER TABLE `auth_user` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; - --- --- AUTO_INCREMENT pour la table `auth_user_groups` --- -ALTER TABLE `auth_user_groups` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `auth_user_user_permissions` --- -ALTER TABLE `auth_user_user_permissions` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `communication_message` --- -ALTER TABLE `communication_message` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; - --- --- AUTO_INCREMENT pour la table `competition_competition` --- -ALTER TABLE `competition_competition` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `competition_division` --- -ALTER TABLE `competition_division` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `competition_level` --- -ALTER TABLE `competition_level` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `competition_point` --- -ALTER TABLE `competition_point` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=98; - --- --- AUTO_INCREMENT pour la table `django_admin_log` --- -ALTER TABLE `django_admin_log` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=396; - --- --- AUTO_INCREMENT pour la table `django_content_type` --- -ALTER TABLE `django_content_type` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; - --- --- AUTO_INCREMENT pour la table `django_migrations` --- -ALTER TABLE `django_migrations` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=93; - --- --- AUTO_INCREMENT pour la table `location_club` --- -ALTER TABLE `location_club` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; - --- --- AUTO_INCREMENT pour la table `location_country` --- -ALTER TABLE `location_country` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=255; - --- --- AUTO_INCREMENT pour la table `location_place` --- -ALTER TABLE `location_place` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; - --- --- AUTO_INCREMENT pour la table `objective_chrono` --- -ALTER TABLE `objective_chrono` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; - --- --- AUTO_INCREMENT pour la table `objective_educative` --- -ALTER TABLE `objective_educative` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=560; - --- --- AUTO_INCREMENT pour la table `objective_educative_educative` --- -ALTER TABLE `objective_educative_educative` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=438; - --- --- AUTO_INCREMENT pour la table `objective_educative_prerequisite` --- -ALTER TABLE `objective_educative_prerequisite` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=425; - --- --- AUTO_INCREMENT pour la table `objective_evaluation` --- -ALTER TABLE `objective_evaluation` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `objective_routine_skill` --- -ALTER TABLE `objective_routine_skill` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=640; - --- --- AUTO_INCREMENT pour la table `objective_touchposition` --- -ALTER TABLE `objective_touchposition` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; - --- --- AUTO_INCREMENT pour la table `people_accident` --- -ALTER TABLE `people_accident` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; - --- --- AUTO_INCREMENT pour la table `people_candorelation` --- -ALTER TABLE `people_candorelation` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=377; - --- --- AUTO_INCREMENT pour la table `people_gymnast` --- -ALTER TABLE `people_gymnast` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; - --- --- AUTO_INCREMENT pour la table `people_gymnasthasroutine` --- -ALTER TABLE `people_gymnasthasroutine` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; - --- --- AUTO_INCREMENT pour la table `people_todorelation` --- -ALTER TABLE `people_todorelation` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_course` --- -ALTER TABLE `planning_course` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; - --- --- AUTO_INCREMENT pour la table `planning_course_gymnasts` --- -ALTER TABLE `planning_course_gymnasts` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; - --- --- AUTO_INCREMENT pour la table `planning_course_trainers` --- -ALTER TABLE `planning_course_trainers` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; - --- --- AUTO_INCREMENT pour la table `planning_event` --- -ALTER TABLE `planning_event` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23; - --- --- AUTO_INCREMENT pour la table `planning_eventtype` --- -ALTER TABLE `planning_eventtype` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; - --- --- AUTO_INCREMENT pour la table `planning_event_participation` --- -ALTER TABLE `planning_event_participation` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; - --- --- AUTO_INCREMENT pour la table `planning_group` --- -ALTER TABLE `planning_group` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_planningline` --- -ALTER TABLE `planning_planningline` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_round` --- -ALTER TABLE `planning_round` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38; - --- --- AUTO_INCREMENT pour la table `planning_season` --- -ALTER TABLE `planning_season` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; - --- --- AUTO_INCREMENT pour la table `planning_subgroup` --- -ALTER TABLE `planning_subgroup` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_subgroup_courses` --- -ALTER TABLE `planning_subgroup_courses` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_subgroup_gymnasts` --- -ALTER TABLE `planning_subgroup_gymnasts` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_training` --- -ALTER TABLE `planning_training` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; - --- --- AUTO_INCREMENT pour la table `planning_unavailability` --- -ALTER TABLE `planning_unavailability` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `planning_unavailability_course` --- -ALTER TABLE `planning_unavailability_course` - MODIFY `id` int NOT NULL AUTO_INCREMENT; - --- --- AUTO_INCREMENT pour la table `profile_profile` --- -ALTER TABLE `profile_profile` - MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; - --- --- Contraintes pour les tables déchargées --- - --- --- Contraintes pour la table `auth_group_permissions` --- -ALTER TABLE `auth_group_permissions` - ADD CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`), - ADD CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`); - --- --- Contraintes pour la table `auth_permission` --- -ALTER TABLE `auth_permission` - ADD CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`); - --- --- Contraintes pour la table `auth_user_groups` --- -ALTER TABLE `auth_user_groups` - ADD CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`), - ADD CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `auth_user_user_permissions` --- -ALTER TABLE `auth_user_user_permissions` - ADD CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`), - ADD CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `communication_message` --- -ALTER TABLE `communication_message` - ADD CONSTRAINT `communication_message_recipient_id_8c3f807e_fk_auth_user_id` FOREIGN KEY (`recipient_id`) REFERENCES `auth_user` (`id`), - ADD CONSTRAINT `communication_message_sender_id_11380a9e_fk_auth_user_id` FOREIGN KEY (`sender_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `competition_division` --- -ALTER TABLE `competition_division` - ADD CONSTRAINT `competition_division_competition_id_cb3fe124_fk_competiti` FOREIGN KEY (`competition_id`) REFERENCES `competition_competition` (`id`); - --- --- Contraintes pour la table `competition_level` --- -ALTER TABLE `competition_level` - ADD CONSTRAINT `competition_level_division_id_e44dbf30_fk_competiti` FOREIGN KEY (`division_id`) REFERENCES `competition_division` (`id`); - --- --- Contraintes pour la table `competition_point` --- -ALTER TABLE `competition_point` - ADD CONSTRAINT `competition_point_event_id_bebf2cc0_fk_planning_event_id` FOREIGN KEY (`event_id`) REFERENCES `planning_event` (`id`), - ADD CONSTRAINT `competition_point_gymnast_id_570cd8c2_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `django_admin_log` --- -ALTER TABLE `django_admin_log` - ADD CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`), - ADD CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `location_club` --- -ALTER TABLE `location_club` - ADD CONSTRAINT `location_club_place_id_bbca5590_fk_location_place_id` FOREIGN KEY (`place_id`) REFERENCES `location_place` (`id`); - --- --- Contraintes pour la table `location_place` --- -ALTER TABLE `location_place` - ADD CONSTRAINT `location_place_country_id_1a74c9da_fk_location_country_id` FOREIGN KEY (`country_id`) REFERENCES `location_country` (`id`); - --- --- Contraintes pour la table `objective_chrono` --- -ALTER TABLE `objective_chrono` - ADD CONSTRAINT `objective_chrono_gymnast_id_d3baf571_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`), - ADD CONSTRAINT `objective_chrono_routine_id_38901ccf_fk_objective` FOREIGN KEY (`routine_id`) REFERENCES `objective_routine` (`educative_ptr_id`); - --- --- Contraintes pour la table `objective_educative_educative` --- -ALTER TABLE `objective_educative_educative` - ADD CONSTRAINT `objective_educative__from_educative_id_230986ab_fk_objective` FOREIGN KEY (`from_educative_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `objective_educative__to_educative_id_62d30efe_fk_objective` FOREIGN KEY (`to_educative_id`) REFERENCES `objective_educative` (`id`); - --- --- Contraintes pour la table `objective_educative_prerequisite` --- -ALTER TABLE `objective_educative_prerequisite` - ADD CONSTRAINT `objective_educative__from_educative_id_46cb94bf_fk_objective` FOREIGN KEY (`from_educative_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `objective_educative__to_educative_id_c339c635_fk_objective` FOREIGN KEY (`to_educative_id`) REFERENCES `objective_educative` (`id`); - --- --- Contraintes pour la table `objective_evaluation` --- -ALTER TABLE `objective_evaluation` - ADD CONSTRAINT `objective_evaluation_educative_id_ab2e8989_fk_objective` FOREIGN KEY (`educative_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `objective_evaluation_evaluator_id_6078229a_fk_auth_user_id` FOREIGN KEY (`evaluator_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `objective_routine` --- -ALTER TABLE `objective_routine` - ADD CONSTRAINT `objective_routine_educative_ptr_id_a95b5c43_fk_objective` FOREIGN KEY (`educative_ptr_id`) REFERENCES `objective_educative` (`id`); - --- --- Contraintes pour la table `objective_routine_skill` --- -ALTER TABLE `objective_routine_skill` - ADD CONSTRAINT `objective_routine_sk_routine_id_215b4210_fk_objective` FOREIGN KEY (`routine_id`) REFERENCES `objective_routine` (`educative_ptr_id`), - ADD CONSTRAINT `objective_routine_sk_skill_id_ca0b2196_fk_objective` FOREIGN KEY (`skill_id`) REFERENCES `objective_skill` (`educative_ptr_id`); - --- --- Contraintes pour la table `objective_skill` --- -ALTER TABLE `objective_skill` - ADD CONSTRAINT `objective_skill_departure_id_bd149525_fk_objective` FOREIGN KEY (`departure_id`) REFERENCES `objective_touchposition` (`id`), - ADD CONSTRAINT `objective_skill_educative_ptr_id_b8a6ff4f_fk_objective` FOREIGN KEY (`educative_ptr_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `objective_skill_landing_id_77d746fb_fk_objective` FOREIGN KEY (`landing_id`) REFERENCES `objective_touchposition` (`id`); - --- --- Contraintes pour la table `people_accident` --- -ALTER TABLE `people_accident` - ADD CONSTRAINT `people_accident_educative_id_d979abab_fk_objective` FOREIGN KEY (`educative_id`) REFERENCES `objective_skill` (`educative_ptr_id`), - ADD CONSTRAINT `people_accident_gymnast_id_dbf0f434_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `people_candorelation` --- -ALTER TABLE `people_candorelation` - ADD CONSTRAINT `people_candorelation_educative_id_e1578bf0_fk_objective` FOREIGN KEY (`educative_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `people_candorelation_gymnast_id_4441d4df_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `people_gymnast` --- -ALTER TABLE `people_gymnast` - ADD CONSTRAINT `people_gymnast_club_id_f41793af_fk_location_club_id` FOREIGN KEY (`club_id`) REFERENCES `location_club` (`id`), - ADD CONSTRAINT `people_gymnast_trainer_id_45fcadd7_fk_auth_user_id` FOREIGN KEY (`trainer_id`) REFERENCES `auth_user` (`id`), - ADD CONSTRAINT `people_gymnast_user_id_42eebbdb_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `people_gymnasthasroutine` --- -ALTER TABLE `people_gymnasthasroutine` - ADD CONSTRAINT `people_gymnasthasrou_gymnast_id_903b53cb_fk_people_gy` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`), - ADD CONSTRAINT `people_gymnasthasrou_routine_id_d18d3c78_fk_objective` FOREIGN KEY (`routine_id`) REFERENCES `objective_routine` (`educative_ptr_id`); - --- --- Contraintes pour la table `people_todorelation` --- -ALTER TABLE `people_todorelation` - ADD CONSTRAINT `people_todorelation_educative_id_9e67817d_fk_objective` FOREIGN KEY (`educative_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `people_todorelation_gymnast_id_a0554086_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `planning_course` --- -ALTER TABLE `planning_course` - ADD CONSTRAINT `planning_course_club_id_a5511d92_fk_location_club_id` FOREIGN KEY (`club_id`) REFERENCES `location_club` (`id`), - ADD CONSTRAINT `planning_course_season_id_728e18fa_fk_planning_season_id` FOREIGN KEY (`season_id`) REFERENCES `planning_season` (`id`); - --- --- Contraintes pour la table `planning_course_gymnasts` --- -ALTER TABLE `planning_course_gymnasts` - ADD CONSTRAINT `planning_course_gymn_course_id_d4a11d1b_fk_planning_` FOREIGN KEY (`course_id`) REFERENCES `planning_course` (`id`), - ADD CONSTRAINT `planning_course_gymn_gymnast_id_48bb398b_fk_people_gy` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `planning_course_trainers` --- -ALTER TABLE `planning_course_trainers` - ADD CONSTRAINT `planning_course_trai_course_id_a7caa10e_fk_planning_` FOREIGN KEY (`course_id`) REFERENCES `planning_course` (`id`), - ADD CONSTRAINT `planning_course_trainers_user_id_98010d80_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`); - --- --- Contraintes pour la table `planning_event` --- -ALTER TABLE `planning_event` - ADD CONSTRAINT `planning_event_eventtype_id_2ba10477_fk_planning_eventtype_id` FOREIGN KEY (`eventtype_id`) REFERENCES `planning_eventtype` (`id`), - ADD CONSTRAINT `planning_event_place_id_aafebfa4_fk_location_place_id` FOREIGN KEY (`place_id`) REFERENCES `location_place` (`id`); - --- --- Contraintes pour la table `planning_event_participation` --- -ALTER TABLE `planning_event_participation` - ADD CONSTRAINT `planning_event_parti_event_id_0a769321_fk_planning_` FOREIGN KEY (`event_id`) REFERENCES `planning_event` (`id`), - ADD CONSTRAINT `planning_event_parti_gymnast_id_bcb0945a_fk_people_gy` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `planning_group` --- -ALTER TABLE `planning_group` - ADD CONSTRAINT `planning_group_club_id_24022be5_fk_location_club_id` FOREIGN KEY (`club_id`) REFERENCES `location_club` (`id`); - --- --- Contraintes pour la table `planning_planningline` --- -ALTER TABLE `planning_planningline` - ADD CONSTRAINT `planning_planningline_gymnast_id_ca3c8734_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `planning_round` --- -ALTER TABLE `planning_round` - ADD CONSTRAINT `planning_round_coachid_id_06897586_fk_auth_user_id` FOREIGN KEY (`coachid_id`) REFERENCES `auth_user` (`id`), - ADD CONSTRAINT `planning_round_educative_id_b179a654_fk_objective_educative_id` FOREIGN KEY (`educative_id`) REFERENCES `objective_educative` (`id`), - ADD CONSTRAINT `planning_round_training_id_c0511756_fk_planning_training_id` FOREIGN KEY (`training_id`) REFERENCES `planning_training` (`id`); - --- --- Contraintes pour la table `planning_subgroup` --- -ALTER TABLE `planning_subgroup` - ADD CONSTRAINT `planning_subgroup_group_id_3053be03_fk_planning_group_id` FOREIGN KEY (`group_id`) REFERENCES `planning_group` (`id`); - --- --- Contraintes pour la table `planning_subgroup_courses` --- -ALTER TABLE `planning_subgroup_courses` - ADD CONSTRAINT `planning_subgroup_co_course_id_95f2fae3_fk_planning_` FOREIGN KEY (`course_id`) REFERENCES `planning_course` (`id`), - ADD CONSTRAINT `planning_subgroup_co_subgroup_id_6ff23e31_fk_planning_` FOREIGN KEY (`subgroup_id`) REFERENCES `planning_subgroup` (`id`); - --- --- Contraintes pour la table `planning_subgroup_gymnasts` --- -ALTER TABLE `planning_subgroup_gymnasts` - ADD CONSTRAINT `planning_subgroup_gy_gymnast_id_ea3a4f7a_fk_people_gy` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`), - ADD CONSTRAINT `planning_subgroup_gy_subgroup_id_bdc56111_fk_planning_` FOREIGN KEY (`subgroup_id`) REFERENCES `planning_subgroup` (`id`); - --- --- Contraintes pour la table `planning_training` --- -ALTER TABLE `planning_training` - ADD CONSTRAINT `planning_training_course_id_6cd13c60_fk_planning_course_id` FOREIGN KEY (`course_id`) REFERENCES `planning_course` (`id`), - ADD CONSTRAINT `planning_training_gymnast_id_3c2a8365_fk_people_gymnast_id` FOREIGN KEY (`gymnast_id`) REFERENCES `people_gymnast` (`id`); - --- --- Contraintes pour la table `planning_unavailability_course` --- -ALTER TABLE `planning_unavailability_course` - ADD CONSTRAINT `planning_unavailabil_course_id_66f21587_fk_planning_` FOREIGN KEY (`course_id`) REFERENCES `planning_course` (`id`), - ADD CONSTRAINT `planning_unavailabil_unavailability_id_72768613_fk_planning_` FOREIGN KEY (`unavailability_id`) REFERENCES `planning_unavailability` (`id`); - --- --- Contraintes pour la table `profile_profile` --- -ALTER TABLE `profile_profile` - ADD CONSTRAINT `profile_profile_user_id_7b0aedd8_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`); -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/backup_database/person_gymnast.csv b/backup_database/person_gymnast.csv deleted file mode 100644 index d1d74f5..0000000 --- a/backup_database/person_gymnast.csv +++ /dev/null @@ -1,66 +0,0 @@ -"1","Delginiesse","Lou","Acrotramp Blocry","2007-05-30","F","121510","1","64","17" -"2","Delginiesse","Léa","Acrotramp Blocry","2004-04-01","F","121509","1","24","17" -"3","Gatelier","Léa","Acrotramp Blocry","2005-09-22","F","141305","1","51","17" -"4","Henry","Océane","Acrotramp Blocry","2003-05-26","F","99539","1","20","17" -"5","Herlant","Pénéline","Acrotramp Blocry","2006-08-30","F","122578","1","40","17" -"6","Reynaert","Sara","Acrotramp Blocry","2006-02-22","F","122573","1","61","17" -"7","Trejo","Metzli","Acrotramp Blocry","2004-06-17","F","141308","1","18","17" -"8","Beauclercq","Nathan","Acrotramp Blocry","2005-01-22","M","141301","1","17","17" -"9","De Mesmaeker","Adrien","Acrotramp Blocry","2004-04-09","M","122585","1","33","17" -"10","Detalle","Mattéo","Acrotramp Blocry","2006-10-25","M","122588","1","26","17" -"11","Garcia Moreau","Matéo","Acrotramp Blocry","2005-08-24","M","99555","1","37","17" -"12","Jarman","Joshua","Acrotramp Blocry","2006-01-10","M","141315","1","11","17" -"13","Pablos Martin","Hugo","Acrotramp Blocry","2004-08-12","M","141313","1","34","17" -"14","Van Poucke Cotton","Nelson","Acrotramp Blocry","2007-01-23","M","141306","1","57","17" -"15","Vanhuffel","Trystan","Acrotramp Blocry","2005-04-03","M","141303","1","21","17" -"16","Ingels","Cedric","CGOM ASBL","2007-06-08","M","82832","1","44","17" -"17","Charles","Angelique","Acrotramp Blocry","1992-08-10","F","10900","1","5","16" -"18","Leblanc","Olivia","Acrotramp Blocry","2000-12-19","F","112449","1","59","16" -"19","Luyten","Clara","Acrotramp Blocry","2003-07-23","F","112450","1","56","16" -"20","Tombeux","Juliette","Acrotramp Blocry","2005-12-28","F","99545","1","14","16" -"21","Eglem","Elisa","Aquilon Lillois","2005-02-24","F","133827","1","27","16" -"22","Geirnaert","Marine","Aquilon Lillois","2002-11-12","F","74759","1","13","16" -"23","Kraled","Anyssa","Aquilon Lillois","2004-10-18","F","96489","1","1","16" -"24","Catteau","Marine","CGOM ASBL","2004-02-05","F","135223","1","36","16" -"25","Gaeremynck","Laurine","CGOM ASBL","2002-03-01","F","10012","1","31","16" -"26","Ernaelsten","Perrine","TRAMPO NAMUR CLUB","2004-12-09","F","54365","1","4","16" -"27","Brodzinski","Barthélemy","Acrotramp Blocry","2002-06-24","M","58261","1","49","16" -"28","Goens","François","Acrotramp Blocry","2001-08-27","M","141309","1","29","16" -"29","Le Grelle","Jérémie","Acrotramp Blocry","2000-10-24","M","96217","1","39","16" -"30","Simon","Matthias","Acrotramp Blocry","2003-02-24","M","122574","1","60","16" -"31","Devos","Hugo","CGOM ASBL","2006-05-22","M","133688","1","28","16" -"32","Dhulst","Louis","CGOM ASBL","2006-09-27","M","127026","1","54","16" -"33","Jeunehomme","Nathan","TRAMPO NAMUR CLUB","2003-03-05","M","126730","1","23","16" -"34","Breugelmans","Baptiste","Acrotramp Blocry","2002-10-21","M","122559","1","53","15" -"35","Huwaerts","Leslie","Acrotramp Blocry","2001-12-08","F","71725","1","48","15" -"36","Gheysens","Julie","CGOM ASBL","2005-06-01","F","42242","1","2","15" -"37","Herpoel","Cyrielle","CGOM ASBL","2005-10-28","F","69829","1","43","15" -"38","Platteau Holvoet","Raphael","CGOM ASBL","2005-02-25","M","120509","1","45","15" -"39","Roussel","Leina","CGOM ASBL","2004-03-17","F","80890","1","3","18" -"40","Vanbiervliet","Zoë","CGOM ASBL","2000-12-11","F","10216","1","47","14" -"41","Vandenberghe","Zélie","CGOM ASBL","2003-08-07","F","42230","1","41","14" -"42","Jacquet","Quentin","Acrotramp Blocry","2004-10-19","M","99547","1","66","14" -"43","Moens","Aymeric","Acrotramp Blocry","2001-02-26","M","58294","1","65","12" -"44","Debusschere","Tom","CGOM ASBL","2003-02-11","M","91937","1","8","14" -"45","Jaillet","Robin","CGOM ASBL","2001-06-29","M","97949","1","25","14" -"46","Scokart","Romain","Flying Acrobatics Trampoline Club","2001-12-30","M","103263","1","42","14" -"47","Herlant","Ophéliane","Acrotramp Blocry","2008-11-03","F","122577","1","15","3" -"48","Lannoye","Cédric","Acrotramp Blocry","2008-06-30","M","141316","1","38","3" -"49","May","boris","Acrotramp Blocry","2008-06-17","M","144052","1","12","3" -"50","Mean","Juliette","Acrotramp Blocry","2008-02-05","F","54451","1","35","3" -"51","Reynart","Flore","Acrotramp Blocry","2008-07-15","F","141297","1","46","3" -"52","Romain","Mathis","Acrotramp Blocry","2008-02-28","M","141307","1","50","3" -"53","Cordier","Jeanne","Acrotramp Blocry","2010-01-10","F","144055","1","58","2" -"54","Demaret","Louise","Acrotramp Blocry","2009-09-27","F","96169","1","6","2" -"55","Ebertitan","Kenza","Acrotramp Blocry","2009-06-26","F","141304","1","55","2" -"56","Halin","Axel","Acrotramp Blocry","2009-02-13","M","141310","1","9","2" -"57","Renette","Zebulon","Acrotramp Blocry","2009-02-14","M","141317","1","63","2" -"58","Mertens","Déborah","Flying Acrobatics Trampoline Club","2009-11-04","F","119801","1","16","2" -"59","Salhi","Safwane","Flying Acrobatics Trampoline Club","2001-05-30","M","4283","1","30","7" -"60","Pesesse","Lucas","Flying Acrobatics Trampoline Club","2007-07-19","M","70414","1","32","4" -"61","Carlini","Gabriel","Flying Acrobatics Trampoline Club","2006-08-11","M","103673","1","22","5" -"62","Demacker","Naomy","CGOM ASBL","2004-04-14","F","123439","1","10","11" -"63","Damri","Neila","TRAMPO NAMUR CLUB","2004-06-14","F","25026","1","62","11" -"64","Granda Martinez","Noelia","Flying Acrobatics Trampoline Club","2003-01-28","F","66196","1","52","12" -"65","Vanholder","Noah","Flying Acrobatics Trampoline Club","2003-05-21","M","101994","1","7","12" -"66","Pirson","Maxime","TRAMPO NAMUR CLUB","2000-11-08","M","24332","1","19","13" diff --git a/backup_database/person_gymnast.sql b/backup_database/person_gymnast.sql deleted file mode 100644 index cab4171..0000000 --- a/backup_database/person_gymnast.sql +++ /dev/null @@ -1,146 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.4.12 --- http://www.phpmyadmin.net --- --- Client : localhost --- Généré le : Mar 24 Juillet 2018 à 21:42 --- Version du serveur : 5.6.26 --- Version de PHP : 7.1.16 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Base de données : `ffg_judging` --- - --- -------------------------------------------------------- - --- --- Structure de la table `person_gymnast` --- - -CREATE TABLE IF NOT EXISTS `person_gymnast` ( - `id` int(11) NOT NULL, - `lastname` varchar(255) NOT NULL, - `firstname` varchar(255) NOT NULL, - `club` varchar(255) NOT NULL, - `birthdate` date NOT NULL, - `gender` varchar(1) NOT NULL, - `licence` int(11) DEFAULT NULL, - `is_present` tinyint(1) NOT NULL, - `bib` int(11) DEFAULT NULL, - `category_id` int(11) DEFAULT NULL -) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8; - --- --- Contenu de la table `person_gymnast` --- - -INSERT INTO `person_gymnast` (`id`, `lastname`, `firstname`, `club`, `birthdate`, `gender`, `licence`, `is_present`, `bib`, `category_id`) VALUES -(1, 'Delginiesse', 'Lou', 'Acrotramp Blocry', '2007-05-30', 'F', 121510, 1, 64, 17), -(2, 'Delginiesse', 'Léa', 'Acrotramp Blocry', '2004-04-01', 'F', 121509, 1, 24, 17), -(3, 'Gatelier', 'Léa', 'Acrotramp Blocry', '2005-09-22', 'F', 141305, 1, 51, 17), -(4, 'Henry', 'Océane', 'Acrotramp Blocry', '2003-05-26', 'F', 99539, 1, 20, 17), -(5, 'Herlant', 'Pénéline', 'Acrotramp Blocry', '2006-08-30', 'F', 122578, 1, 40, 17), -(6, 'Reynaert', 'Sara', 'Acrotramp Blocry', '2006-02-22', 'F', 122573, 1, 61, 17), -(7, 'Trejo', 'Metzli', 'Acrotramp Blocry', '2004-06-17', 'F', 141308, 1, 18, 17), -(8, 'Beauclercq', 'Nathan', 'Acrotramp Blocry', '2005-01-22', 'M', 141301, 1, 17, 17), -(9, 'De Mesmaeker', 'Adrien', 'Acrotramp Blocry', '2004-04-09', 'M', 122585, 1, 33, 17), -(10, 'Detalle', 'Mattéo', 'Acrotramp Blocry', '2006-10-25', 'M', 122588, 1, 26, 17), -(11, 'Garcia Moreau', 'Matéo', 'Acrotramp Blocry', '2005-08-24', 'M', 99555, 1, 37, 17), -(12, 'Jarman', 'Joshua', 'Acrotramp Blocry', '2006-01-10', 'M', 141315, 1, 11, 17), -(13, 'Pablos Martin', 'Hugo', 'Acrotramp Blocry', '2004-08-12', 'M', 141313, 1, 34, 17), -(14, 'Van Poucke Cotton', 'Nelson', 'Acrotramp Blocry', '2007-01-23', 'M', 141306, 1, 57, 17), -(15, 'Vanhuffel', 'Trystan', 'Acrotramp Blocry', '2005-04-03', 'M', 141303, 1, 21, 17), -(16, 'Ingels', 'Cedric', 'CGOM ASBL', '2007-06-08', 'M', 82832, 1, 44, 17), -(17, 'Charles', 'Angelique', 'Acrotramp Blocry', '1992-08-10', 'F', 10900, 1, 5, 16), -(18, 'Leblanc', 'Olivia', 'Acrotramp Blocry', '2000-12-19', 'F', 112449, 1, 59, 16), -(19, 'Luyten', 'Clara', 'Acrotramp Blocry', '2003-07-23', 'F', 112450, 1, 56, 16), -(20, 'Tombeux', 'Juliette', 'Acrotramp Blocry', '2005-12-28', 'F', 99545, 1, 14, 16), -(21, 'Eglem', 'Elisa', 'Aquilon Lillois', '2005-02-24', 'F', 133827, 1, 27, 16), -(22, 'Geirnaert', 'Marine', 'Aquilon Lillois', '2002-11-12', 'F', 74759, 1, 13, 16), -(23, 'Kraled', 'Anyssa', 'Aquilon Lillois', '2004-10-18', 'F', 96489, 1, 1, 16), -(24, 'Catteau', 'Marine', 'CGOM ASBL', '2004-02-05', 'F', 135223, 1, 36, 16), -(25, 'Gaeremynck', 'Laurine', 'CGOM ASBL', '2002-03-01', 'F', 10012, 1, 31, 16), -(26, 'Ernaelsten', 'Perrine', 'TRAMPO NAMUR CLUB', '2004-12-09', 'F', 54365, 1, 4, 16), -(27, 'Brodzinski', 'Barthélemy', 'Acrotramp Blocry', '2002-06-24', 'M', 58261, 1, 49, 16), -(28, 'Goens', 'François', 'Acrotramp Blocry', '2001-08-27', 'M', 141309, 1, 29, 16), -(29, 'Le Grelle', 'Jérémie', 'Acrotramp Blocry', '2000-10-24', 'M', 96217, 1, 39, 16), -(30, 'Simon', 'Matthias', 'Acrotramp Blocry', '2003-02-24', 'M', 122574, 1, 60, 16), -(31, 'Devos', 'Hugo', 'CGOM ASBL', '2006-05-22', 'M', 133688, 1, 28, 16), -(32, 'Dhulst', 'Louis', 'CGOM ASBL', '2006-09-27', 'M', 127026, 1, 54, 16), -(33, 'Jeunehomme', 'Nathan', 'TRAMPO NAMUR CLUB', '2003-03-05', 'M', 126730, 1, 23, 16), -(34, 'Breugelmans', 'Baptiste', 'Acrotramp Blocry', '2002-10-21', 'M', 122559, 1, 53, 15), -(35, 'Huwaerts', 'Leslie', 'Acrotramp Blocry', '2001-12-08', 'F', 71725, 1, 48, 15), -(36, 'Gheysens', 'Julie', 'CGOM ASBL', '2005-06-01', 'F', 42242, 1, 2, 15), -(37, 'Herpoel', 'Cyrielle', 'CGOM ASBL', '2005-10-28', 'F', 69829, 1, 43, 15), -(38, 'Platteau Holvoet', 'Raphael', 'CGOM ASBL', '2005-02-25', 'M', 120509, 1, 45, 15), -(39, 'Roussel', 'Leina', 'CGOM ASBL', '2004-03-17', 'F', 80890, 1, 3, 18), -(40, 'Vanbiervliet', 'Zoë', 'CGOM ASBL', '2000-12-11', 'F', 10216, 1, 47, 14), -(41, 'Vandenberghe', 'Zélie', 'CGOM ASBL', '2003-08-07', 'F', 42230, 1, 41, 14), -(42, 'Jacquet', 'Quentin', 'Acrotramp Blocry', '2004-10-19', 'M', 99547, 1, 66, 14), -(43, 'Moens', 'Aymeric', 'Acrotramp Blocry', '2001-02-26', 'M', 58294, 1, 65, 12), -(44, 'Debusschere', 'Tom', 'CGOM ASBL', '2003-02-11', 'M', 91937, 1, 8, 14), -(45, 'Jaillet', 'Robin', 'CGOM ASBL', '2001-06-29', 'M', 97949, 1, 25, 14), -(46, 'Scokart', 'Romain', 'Flying Acrobatics Trampoline Club', '2001-12-30', 'M', 103263, 1, 42, 14), -(47, 'Herlant', 'Ophéliane', 'Acrotramp Blocry', '2008-11-03', 'F', 122577, 1, 15, 3), -(48, 'Lannoye', 'Cédric', 'Acrotramp Blocry', '2008-06-30', 'M', 141316, 1, 38, 3), -(49, 'May', 'boris', 'Acrotramp Blocry', '2008-06-17', 'M', 144052, 1, 12, 3), -(50, 'Mean', 'Juliette', 'Acrotramp Blocry', '2008-02-05', 'F', 54451, 1, 35, 3), -(51, 'Reynart', 'Flore', 'Acrotramp Blocry', '2008-07-15', 'F', 141297, 1, 46, 3), -(52, 'Romain', 'Mathis', 'Acrotramp Blocry', '2008-02-28', 'M', 141307, 1, 50, 3), -(53, 'Cordier', 'Jeanne', 'Acrotramp Blocry', '2010-01-10', 'F', 144055, 1, 58, 2), -(54, 'Demaret', 'Louise', 'Acrotramp Blocry', '2009-09-27', 'F', 96169, 1, 6, 2), -(55, 'Ebertitan', 'Kenza', 'Acrotramp Blocry', '2009-06-26', 'F', 141304, 1, 55, 2), -(56, 'Halin', 'Axel', 'Acrotramp Blocry', '2009-02-13', 'M', 141310, 1, 9, 2), -(57, 'Renette', 'Zebulon', 'Acrotramp Blocry', '2009-02-14', 'M', 141317, 1, 63, 2), -(58, 'Mertens', 'Déborah', 'Flying Acrobatics Trampoline Club', '2009-11-04', 'F', 119801, 1, 16, 2), -(59, 'Salhi', 'Safwane', 'Flying Acrobatics Trampoline Club', '2001-05-30', 'M', 4283, 1, 30, 7), -(60, 'Pesesse', 'Lucas', 'Flying Acrobatics Trampoline Club', '2007-07-19', 'M', 70414, 1, 32, 4), -(61, 'Carlini', 'Gabriel', 'Flying Acrobatics Trampoline Club', '2006-08-11', 'M', 103673, 1, 22, 5), -(62, 'Demacker', 'Naomy', 'CGOM ASBL', '2004-04-14', 'F', 123439, 1, 10, 11), -(63, 'Damri', 'Neila', 'TRAMPO NAMUR CLUB', '2004-06-14', 'F', 25026, 1, 62, 11), -(64, 'Granda Martinez', 'Noelia', 'Flying Acrobatics Trampoline Club', '2003-01-28', 'F', 66196, 1, 52, 12), -(65, 'Vanholder', 'Noah', 'Flying Acrobatics Trampoline Club', '2003-05-21', 'M', 101994, 1, 7, 12), -(66, 'Pirson', 'Maxime', 'TRAMPO NAMUR CLUB', '2000-11-08', 'M', 24332, 1, 19, 13); - --- --- Index pour les tables exportées --- - --- --- Index pour la table `person_gymnast` --- -ALTER TABLE `person_gymnast` - ADD PRIMARY KEY (`id`), - ADD KEY `person_gymnast_category_id_f8d57860_fk_technic_a` (`category_id`); - --- --- AUTO_INCREMENT pour les tables exportées --- - --- --- AUTO_INCREMENT pour la table `person_gymnast` --- -ALTER TABLE `person_gymnast` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=67; --- --- Contraintes pour les tables exportées --- - --- --- Contraintes pour la table `person_gymnast` --- -ALTER TABLE `person_gymnast` - ADD CONSTRAINT `person_gymnast_category_id_f8d57860_fk_technic_a` FOREIGN KEY (`category_id`) REFERENCES `technic_availablecategory` (`id`); - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/db.json b/db.json index 9228bba..fe4b134 100644 --- a/db.json +++ b/db.json @@ -1 +1 @@ -[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "people", "model": "accident"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "people", "model": "candorelation"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "people", "model": "gymnast"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "people", "model": "todorelation"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "location", "model": "club"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "location", "model": "country"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "location", "model": "place"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "planning", "model": "course"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "planning", "model": "event"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "planning", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "planning", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "planning", "model": "planningline"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "planning", "model": "round"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "planning", "model": "season"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "planning", "model": "subgroup"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "planning", "model": "training"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "planning", "model": "unavailability"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "objective", "model": "chrono"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "objective", "model": "educative"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "objective", "model": "routineskill"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "objective", "model": "touchposition"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "objective", "model": "routine"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "objective", "model": "skill"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "competition", "model": "competition"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "competition", "model": "division"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "competition", "model": "level"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "competition", "model": "point"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "profile", "model": "profile"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "people", "model": "hasroutine"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "people", "model": "gymnasthasroutine"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "communication", "model": "message"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "objective", "model": "evaluation"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "planning", "model": "event_participation"}}, {"model": "admin.logentry", "pk": 1, "fields": {"action_time": "2019-03-16T17:07:05.826", "user": 1, "content_type": 12, "object_id": "1", "object_repr": "Belgique (BE)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 2, "fields": {"action_time": "2019-03-16T17:07:55.846", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Ecole du pré vert (Lillois-Witterzée)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 3, "fields": {"action_time": "2019-03-16T17:08:09.373", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "Flying Acrobatics Trampoline Club (à Lillois-Witterzée)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 4, "fields": {"action_time": "2019-03-16T17:08:46.032", "user": 1, "content_type": 5, "object_id": "1", "object_repr": "sulley", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\"]}}]"}}, {"model": "admin.logentry", "pk": 5, "fields": {"action_time": "2019-03-16T17:16:24.868", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 6, "fields": {"action_time": "2019-03-16T17:34:48.780", "user": 1, "content_type": 20, "object_id": "1", "object_repr": "Season object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 7, "fields": {"action_time": "2019-03-16T18:51:13.177", "user": 1, "content_type": 14, "object_id": "1", "object_repr": "Samedi - 10:00 à 12:00 (]>)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 8, "fields": {"action_time": "2019-03-16T18:52:01.910", "user": 1, "content_type": 22, "object_id": "1", "object_repr": "2019-03-16 (Granda Martinez, Noelia, Samedi - 10:00 à 12:00 (]>))", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 9, "fields": {"action_time": "2019-03-16T19:08:03.088", "user": 1, "content_type": 19, "object_id": "1", "object_repr": "1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 10, "fields": {"action_time": "2019-03-16T19:08:46.820", "user": 1, "content_type": 19, "object_id": "2", "object_repr": "2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 11, "fields": {"action_time": "2019-03-16T19:09:53.818", "user": 1, "content_type": 19, "object_id": "3", "object_repr": "3", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 12, "fields": {"action_time": "2019-03-16T19:10:18.519", "user": 1, "content_type": 19, "object_id": "4", "object_repr": "4", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 13, "fields": {"action_time": "2019-03-16T19:10:39.190", "user": 1, "content_type": 19, "object_id": "5", "object_repr": "5", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 14, "fields": {"action_time": "2019-03-17T07:24:19.601", "user": 1, "content_type": 19, "object_id": "1", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 15, "fields": {"action_time": "2019-03-17T07:53:57.999", "user": 1, "content_type": 14, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 16, "fields": {"action_time": "2019-03-17T07:54:50.955", "user": 1, "content_type": 14, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 17, "fields": {"action_time": "2019-03-17T07:55:11.960", "user": 1, "content_type": 5, "object_id": "1", "object_repr": "Gregory", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"username\"]}}]"}}, {"model": "admin.logentry", "pk": 18, "fields": {"action_time": "2019-03-17T07:55:28.913", "user": 1, "content_type": 5, "object_id": "2", "object_repr": "Morgane", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 19, "fields": {"action_time": "2019-03-17T07:56:02.644", "user": 1, "content_type": 5, "object_id": "2", "object_repr": "Morgane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\", \"is_staff\", \"is_superuser\"]}}]"}}, {"model": "admin.logentry", "pk": 20, "fields": {"action_time": "2019-03-17T07:56:24.493", "user": 1, "content_type": 5, "object_id": "3", "object_repr": "Stéphane", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 21, "fields": {"action_time": "2019-03-17T07:56:43.759", "user": 1, "content_type": 5, "object_id": "3", "object_repr": "Stéphane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\", \"is_staff\"]}}]"}}, {"model": "admin.logentry", "pk": 22, "fields": {"action_time": "2019-03-17T07:57:55.295", "user": 1, "content_type": 14, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"trainers\"]}}]"}}, {"model": "admin.logentry", "pk": 23, "fields": {"action_time": "2019-03-17T07:58:09.428", "user": 1, "content_type": 14, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"trainers\"]}}]"}}, {"model": "admin.logentry", "pk": 24, "fields": {"action_time": "2019-03-17T08:00:54.091", "user": 1, "content_type": 14, "object_id": "4", "object_repr": "Vendredi (17:15 à 19:15)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 25, "fields": {"action_time": "2019-03-17T08:02:37.122", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "Ten Gaerde (Dilbeek)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 26, "fields": {"action_time": "2019-03-17T08:02:46.033", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "Ten Gaerde (à Dilbeek)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 27, "fields": {"action_time": "2019-03-17T08:04:19.888", "user": 1, "content_type": 14, "object_id": "5", "object_repr": "Samedi (19:00 à 21:30)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 28, "fields": {"action_time": "2019-03-17T08:09:53.576", "user": 1, "content_type": 14, "object_id": "6", "object_repr": "Dimanche (11:00 à 13:00)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 29, "fields": {"action_time": "2019-03-17T08:50:48.112", "user": 1, "content_type": 22, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00) le 2019-03-18, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 30, "fields": {"action_time": "2019-03-17T08:51:10.250", "user": 1, "content_type": 22, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00) le 2019-03-20, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 31, "fields": {"action_time": "2019-03-17T08:51:30.250", "user": 1, "content_type": 22, "object_id": "4", "object_repr": "Vendredi (17:15 à 19:15) le 2019-03-22, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 32, "fields": {"action_time": "2019-03-17T08:51:44.981", "user": 1, "content_type": 22, "object_id": "5", "object_repr": "Samedi (10:00 à 12:00) le 2019-03-23, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 33, "fields": {"action_time": "2019-03-17T09:43:54.720", "user": 1, "content_type": 19, "object_id": "6", "object_repr": "1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 34, "fields": {"action_time": "2019-03-17T09:44:20.083", "user": 1, "content_type": 19, "object_id": "7", "object_repr": "2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 35, "fields": {"action_time": "2019-03-17T09:45:07.550", "user": 1, "content_type": 19, "object_id": "8", "object_repr": "3", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 36, "fields": {"action_time": "2019-03-17T09:45:24.020", "user": 1, "content_type": 19, "object_id": "9", "object_repr": "4", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 37, "fields": {"action_time": "2019-03-17T09:45:53.640", "user": 1, "content_type": 19, "object_id": "10", "object_repr": "5", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 38, "fields": {"action_time": "2019-03-17T09:46:09.216", "user": 1, "content_type": 19, "object_id": "11", "object_repr": "6", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 39, "fields": {"action_time": "2019-03-17T09:46:30.533", "user": 1, "content_type": 19, "object_id": "12", "object_repr": "7", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 40, "fields": {"action_time": "2019-03-17T09:46:41.996", "user": 1, "content_type": 19, "object_id": "2", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 41, "fields": {"action_time": "2019-03-17T09:46:47.766", "user": 1, "content_type": 19, "object_id": "3", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"round_information\", \"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 42, "fields": {"action_time": "2019-03-17T09:59:50.953", "user": 1, "content_type": 19, "object_id": "13", "object_repr": "7", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 43, "fields": {"action_time": "2019-03-17T09:59:54.281", "user": 1, "content_type": 19, "object_id": "14", "object_repr": "6", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 44, "fields": {"action_time": "2019-03-17T09:59:58.212", "user": 1, "content_type": 19, "object_id": "15", "object_repr": "5", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 45, "fields": {"action_time": "2019-03-17T10:00:02.019", "user": 1, "content_type": 19, "object_id": "16", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 46, "fields": {"action_time": "2019-03-17T10:00:07.154", "user": 1, "content_type": 19, "object_id": "17", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 47, "fields": {"action_time": "2019-03-17T10:00:09.899", "user": 1, "content_type": 19, "object_id": "18", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2019-03-17T10:00:15.800", "user": 1, "content_type": 19, "object_id": "19", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2019-03-17T10:01:24.798", "user": 1, "content_type": 19, "object_id": "26", "object_repr": "7", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2019-03-17T10:01:27.576", "user": 1, "content_type": 19, "object_id": "25", "object_repr": "6", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2019-03-17T10:01:30.646", "user": 1, "content_type": 19, "object_id": "24", "object_repr": "5", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2019-03-17T10:01:33.930", "user": 1, "content_type": 19, "object_id": "23", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 53, "fields": {"action_time": "2019-03-17T10:01:36.445", "user": 1, "content_type": 19, "object_id": "22", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 54, "fields": {"action_time": "2019-03-17T10:01:39.326", "user": 1, "content_type": 19, "object_id": "21", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 55, "fields": {"action_time": "2019-03-17T10:01:42.527", "user": 1, "content_type": 19, "object_id": "20", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 56, "fields": {"action_time": "2019-03-17T10:02:14.252", "user": 1, "content_type": 19, "object_id": "27", "object_repr": "7", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 57, "fields": {"action_time": "2019-03-17T10:02:16.887", "user": 1, "content_type": 19, "object_id": "28", "object_repr": "6", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 58, "fields": {"action_time": "2019-03-17T10:02:19.726", "user": 1, "content_type": 19, "object_id": "29", "object_repr": "5", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 59, "fields": {"action_time": "2019-03-17T10:02:22.189", "user": 1, "content_type": 19, "object_id": "30", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 60, "fields": {"action_time": "2019-03-17T10:02:24.775", "user": 1, "content_type": 19, "object_id": "31", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 61, "fields": {"action_time": "2019-03-17T10:02:27.108", "user": 1, "content_type": 19, "object_id": "32", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 62, "fields": {"action_time": "2019-03-17T10:02:30.405", "user": 1, "content_type": 19, "object_id": "33", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 63, "fields": {"action_time": "2019-03-17T15:19:55.815", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"club\"]}}]"}}, {"model": "admin.logentry", "pk": 64, "fields": {"action_time": "2019-03-17T15:33:26.471", "user": 1, "content_type": 28, "object_id": "494", "object_repr": "10 | (10 |)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 65, "fields": {"action_time": "2019-03-17T15:33:49.857", "user": 1, "content_type": 28, "object_id": "494", "object_repr": "10 | (10 |)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"difficulty\"]}}]"}}, {"model": "admin.logentry", "pk": 66, "fields": {"action_time": "2019-03-17T15:34:43.892", "user": 1, "content_type": 26, "object_id": "1", "object_repr": "1 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 67, "fields": {"action_time": "2019-03-17T15:34:49.828", "user": 1, "content_type": 26, "object_id": "2", "object_repr": "2 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 68, "fields": {"action_time": "2019-03-17T15:34:55.989", "user": 1, "content_type": 26, "object_id": "3", "object_repr": "3 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 69, "fields": {"action_time": "2019-03-17T15:35:02.399", "user": 1, "content_type": 26, "object_id": "4", "object_repr": "3 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 70, "fields": {"action_time": "2019-03-17T15:35:06.268", "user": 1, "content_type": 26, "object_id": "5", "object_repr": "4 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 71, "fields": {"action_time": "2019-03-17T15:35:10.814", "user": 1, "content_type": 26, "object_id": "6", "object_repr": "4 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 72, "fields": {"action_time": "2019-03-17T15:35:15.853", "user": 1, "content_type": 26, "object_id": "7", "object_repr": "5 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 73, "fields": {"action_time": "2019-03-17T15:35:20.095", "user": 1, "content_type": 26, "object_id": "8", "object_repr": "6 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 74, "fields": {"action_time": "2019-03-17T15:35:25.214", "user": 1, "content_type": 26, "object_id": "9", "object_repr": "7 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 75, "fields": {"action_time": "2019-03-17T15:35:29.522", "user": 1, "content_type": 26, "object_id": "10", "object_repr": "8 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 76, "fields": {"action_time": "2019-03-17T15:35:33.310", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "9 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 77, "fields": {"action_time": "2019-03-17T15:35:59.066", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "10 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 78, "fields": {"action_time": "2019-03-17T15:36:01.634", "user": 1, "content_type": 26, "object_id": "10", "object_repr": "9 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 79, "fields": {"action_time": "2019-03-17T15:36:03.319", "user": 1, "content_type": 26, "object_id": "9", "object_repr": "8 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 80, "fields": {"action_time": "2019-03-17T15:36:04.816", "user": 1, "content_type": 26, "object_id": "8", "object_repr": "7 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2019-03-17T15:36:06.263", "user": 1, "content_type": 26, "object_id": "7", "object_repr": "6 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2019-03-17T15:36:07.654", "user": 1, "content_type": 26, "object_id": "6", "object_repr": "5 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2019-03-17T15:36:09.168", "user": 1, "content_type": 26, "object_id": "5", "object_repr": "5 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2019-03-17T15:36:10.745", "user": 1, "content_type": 26, "object_id": "4", "object_repr": "4 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2019-03-17T15:36:29.929", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "10 - 10 | : Chandelle", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2019-03-17T15:36:40.138", "user": 1, "content_type": 26, "object_id": "10", "object_repr": "10 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2019-03-17T15:36:41.921", "user": 1, "content_type": 26, "object_id": "9", "object_repr": "9 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2019-03-17T15:36:43.820", "user": 1, "content_type": 26, "object_id": "8", "object_repr": "8 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2019-03-17T15:36:45.152", "user": 1, "content_type": 26, "object_id": "7", "object_repr": "7 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2019-03-17T15:36:46.423", "user": 1, "content_type": 26, "object_id": "6", "object_repr": "6 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2019-03-17T15:37:34.869", "user": 1, "content_type": 24, "object_id": "1", "object_repr": "Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.60", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2019-03-17T17:05:37.818", "user": 1, "content_type": 20, "object_id": "1", "object_repr": "2018-19", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]"}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2019-03-20T09:13:03.315", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2019-03-20T09:21:23.319", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2019-03-20T09:21:28.235", "user": 1, "content_type": 34, "object_id": "3", "object_repr": "Profile object (3)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2019-03-20T13:54:43.331", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"address\", \"postal\", \"city\", \"gsm\", \"email\", \"gsmm\", \"gsmp\"]}}]"}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2019-03-20T13:56:29.356", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"niss\", \"fedid\"]}}]"}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2019-03-20T14:38:06.236", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "Pesesse, Lucas", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2019-03-20T14:38:36.784", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2019-03-20T14:38:54.762", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2019-03-20T20:09:33.686", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2019-03-20T20:10:06.664", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "Van Mol, Lola", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2019-03-21T08:17:33.408", "user": 1, "content_type": 19, "object_id": "34", "object_repr": "8", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2019-03-21T08:18:31.277", "user": 1, "content_type": 19, "object_id": "35", "object_repr": "9", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2019-03-21T08:18:54.676", "user": 1, "content_type": 19, "object_id": "36", "object_repr": "10", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2019-03-21T08:19:12.866", "user": 1, "content_type": 19, "object_id": "37", "object_repr": "12", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2019-03-21T08:19:17.005", "user": 1, "content_type": 19, "object_id": "37", "object_repr": "11", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"round_number\"]}}]"}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2019-03-21T13:17:02.981", "user": 1, "content_type": 19, "object_id": "4", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2019-03-21T13:17:06.298", "user": 1, "content_type": 19, "object_id": "9", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2019-03-21T13:17:08.915", "user": 1, "content_type": 19, "object_id": "16", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2019-03-21T13:17:11.607", "user": 1, "content_type": 19, "object_id": "23", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2019-03-21T13:17:13.317", "user": 1, "content_type": 19, "object_id": "30", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2019-03-21T18:30:59.051", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"sidebar_color\"]}}]"}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2019-03-22T12:31:31.952", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"sidebar_color\"]}}]"}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2019-03-22T12:31:43.955", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2019-03-22T12:33:34.648", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2019-03-22T12:35:40.875", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "Pesesse, Lucas", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 118, "fields": {"action_time": "2019-03-22T12:36:34.545", "user": 1, "content_type": 9, "object_id": "7", "object_repr": "Vanye, Felix", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 119, "fields": {"action_time": "2019-03-22T12:37:01.251", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "Van Mol, Lola", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 120, "fields": {"action_time": "2019-03-22T12:37:34.275", "user": 1, "content_type": 9, "object_id": "8", "object_repr": "Lefevre, Pauline", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 121, "fields": {"action_time": "2019-03-22T12:37:50.386", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "Van Mol, Lola", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"trainer\"]}}]"}}, {"model": "admin.logentry", "pk": 122, "fields": {"action_time": "2019-03-22T12:38:29.467", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 123, "fields": {"action_time": "2019-03-22T12:38:43.813", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 124, "fields": {"action_time": "2019-03-22T12:40:27.688", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 125, "fields": {"action_time": "2019-03-22T13:20:50.011", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 126, "fields": {"action_time": "2019-03-22T13:21:22.425", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\"]}}]"}}, {"model": "admin.logentry", "pk": 127, "fields": {"action_time": "2019-03-22T13:22:22.106", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\"]}}]"}}, {"model": "admin.logentry", "pk": 128, "fields": {"action_time": "2019-03-22T13:22:59.849", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 129, "fields": {"action_time": "2019-03-22T13:23:25.845", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\", \"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 130, "fields": {"action_time": "2019-03-22T13:23:47.458", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 131, "fields": {"action_time": "2019-03-22T13:24:31.347", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\", \"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 132, "fields": {"action_time": "2019-03-22T13:24:56.060", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 133, "fields": {"action_time": "2019-03-22T13:25:53.543", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"email\"]}}]"}}, {"model": "admin.logentry", "pk": 134, "fields": {"action_time": "2019-03-22T13:26:20.764", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"email\"]}}]"}}, {"model": "admin.logentry", "pk": 135, "fields": {"action_time": "2019-03-22T13:28:16.044", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\", \"email\"]}}]"}}, {"model": "admin.logentry", "pk": 136, "fields": {"action_time": "2019-03-22T13:29:31.277", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 137, "fields": {"action_time": "2019-03-23T12:32:46.228", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - PO /\"}}, {\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - Dos - 4 pattes\"}}, {\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - \\u00be Avant / + vrille\"}}]"}}, {"model": "admin.logentry", "pk": 138, "fields": {"action_time": "2019-03-23T16:37:14.319", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - Dos - 4 pattes\"}}, {\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - PO /\"}}, {\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - \\u00be Avant / + vrille\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Assis - vrille, ventre\"}}]"}}, {"model": "admin.logentry", "pk": 139, "fields": {"action_time": "2019-03-23T16:38:03.265", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Dos - Assis\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Assis - ventre o\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Dos - \\u00bd, ventre\"}}]"}}, {"model": "admin.logentry", "pk": 140, "fields": {"action_time": "2019-03-24T14:33:04.579", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 141, "fields": {"action_time": "2019-03-24T14:34:39.696", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"template_color\"]}}]"}}, {"model": "admin.logentry", "pk": 142, "fields": {"action_time": "2019-03-24T16:04:25.937", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"template_color\"]}}]"}}, {"model": "admin.logentry", "pk": 143, "fields": {"action_time": "2019-03-24T16:22:50.618", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birth_date\"]}}]"}}, {"model": "admin.logentry", "pk": 144, "fields": {"action_time": "2019-03-24T16:23:49.613", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 145, "fields": {"action_time": "2019-03-24T16:23:59.640", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 146, "fields": {"action_time": "2019-03-24T16:24:55.124", "user": 1, "content_type": 34, "object_id": "3", "object_repr": "Profile object (3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birth_date\", \"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 147, "fields": {"action_time": "2019-03-28T16:13:47.773", "user": 1, "content_type": 29, "object_id": "22", "object_repr": "Avant o (.4 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"prerequisite\"]}}]"}}, {"model": "admin.logentry", "pk": 148, "fields": {"action_time": "2019-03-28T19:01:55.237", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Compétition (CPT)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 149, "fields": {"action_time": "2019-03-28T19:02:02.756", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Démonstration (Démo)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 150, "fields": {"action_time": "2019-03-28T19:02:10.500", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "Initiation (Ini)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 151, "fields": {"action_time": "2019-03-30T09:37:58.131", "user": 1, "content_type": 28, "object_id": "495", "object_repr": "Imposé Noya (Imposé Noya)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 152, "fields": {"action_time": "2019-03-30T10:37:50.581", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "1 - Imposé Noya : Arrière /", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 153, "fields": {"action_time": "2019-03-30T10:38:08.479", "user": 1, "content_type": 26, "object_id": "12", "object_repr": "2 - Imposé Noya : Barani /", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 154, "fields": {"action_time": "2019-03-30T10:38:30.622", "user": 1, "content_type": 26, "object_id": "13", "object_repr": "3 - Imposé Noya : <", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 155, "fields": {"action_time": "2019-03-30T10:39:08.101", "user": 1, "content_type": 26, "object_id": "14", "object_repr": "4 - Imposé Noya : Barani <", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 156, "fields": {"action_time": "2019-03-30T10:39:36.703", "user": 1, "content_type": 26, "object_id": "15", "object_repr": "5 - Imposé Noya : Arrière <", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 157, "fields": {"action_time": "2019-03-30T15:05:46.885", "user": 1, "content_type": 26, "object_id": "16", "object_repr": "6 - Imposé Noya : o", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 158, "fields": {"action_time": "2019-03-30T15:05:59.279", "user": 1, "content_type": 26, "object_id": "17", "object_repr": "4 - Imposé Noya : Barani o", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 159, "fields": {"action_time": "2019-03-30T15:06:14.097", "user": 1, "content_type": 26, "object_id": "18", "object_repr": "8 - Imposé Noya : //", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 160, "fields": {"action_time": "2019-03-30T15:06:25.003", "user": 1, "content_type": 26, "object_id": "19", "object_repr": "9 - Imposé Noya : Piqué", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 161, "fields": {"action_time": "2019-03-30T15:06:34.773", "user": 1, "content_type": 26, "object_id": "20", "object_repr": "10 - Imposé Noya : BBO o", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 162, "fields": {"action_time": "2019-03-30T15:37:44.022", "user": 1, "content_type": 35, "object_id": "1", "object_repr": "HasRoutine object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 163, "fields": {"action_time": "2019-03-30T15:38:11.595", "user": 1, "content_type": 35, "object_id": "2", "object_repr": "HasRoutine object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 164, "fields": {"action_time": "2019-03-30T15:39:55.994", "user": 1, "content_type": 9, "object_id": "10", "object_repr": "Granda Martinez2, Noelia", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 165, "fields": {"action_time": "2019-03-31T07:20:15.509", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"picture\"]}}]"}}, {"model": "admin.logentry", "pk": 166, "fields": {"action_time": "2019-03-31T07:27:01.097", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "Pesesse, Lucas", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"picture\"]}}]"}}, {"model": "admin.logentry", "pk": 167, "fields": {"action_time": "2019-03-31T19:38:21.820", "user": 1, "content_type": 9, "object_id": "11", "object_repr": "Raschke, Sebastian", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 168, "fields": {"action_time": "2019-03-31T19:40:00.621", "user": 1, "content_type": 9, "object_id": "12", "object_repr": "Geirnart, Marine", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 169, "fields": {"action_time": "2019-04-01T17:57:33.637", "user": 1, "content_type": 9, "object_id": "12", "object_repr": "Geirnart, Marine", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 170, "fields": {"action_time": "2019-04-01T18:08:10.078", "user": 1, "content_type": 36, "object_id": "1", "object_repr": "GymnastHasRoutine object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 171, "fields": {"action_time": "2019-04-01T18:08:24.517", "user": 1, "content_type": 36, "object_id": "2", "object_repr": "GymnastHasRoutine object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 172, "fields": {"action_time": "2019-04-02T12:21:24.823", "user": 1, "content_type": 24, "object_id": "1", "object_repr": "Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.94", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routineType\", \"score\"]}}]"}}, {"model": "admin.logentry", "pk": 173, "fields": {"action_time": "2019-04-02T12:33:19.878", "user": 1, "content_type": 24, "object_id": "1", "object_repr": "Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.94", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 174, "fields": {"action_time": "2019-04-02T13:22:50.486", "user": 1, "content_type": 24, "object_id": "2", "object_repr": "Granda Martinez, Noelia le 2019-04-02 : L1 D2 Junior 1 (L1 D2 Junior 1) pour 16.53", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 175, "fields": {"action_time": "2019-04-02T13:23:04.443", "user": 1, "content_type": 24, "object_id": "3", "object_repr": "Granda Martinez, Noelia le 2019-04-02 : L1 D2 Junior 1 (L1 D2 Junior 1) pour 16.34", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 176, "fields": {"action_time": "2019-04-02T14:29:45.238", "user": 1, "content_type": 19, "object_id": "37", "object_repr": "11", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 177, "fields": {"action_time": "2019-04-02T14:29:49.446", "user": 1, "content_type": 19, "object_id": "36", "object_repr": "10", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 178, "fields": {"action_time": "2019-04-02T14:29:52.865", "user": 1, "content_type": 19, "object_id": "35", "object_repr": "9", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 179, "fields": {"action_time": "2019-04-02T14:29:55.705", "user": 1, "content_type": 19, "object_id": "34", "object_repr": "8", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 180, "fields": {"action_time": "2019-04-02T17:23:32.640", "user": 1, "content_type": 36, "object_id": "3", "object_repr": "Granda Martinez, Noelia - 3 : L1 D2 Junior 1 (L1 D2 Junior 1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 181, "fields": {"action_time": "2019-04-06T16:36:13.950", "user": 1, "content_type": 26, "object_id": "17", "object_repr": "7 - L1 D2 Junior 1 : Barani o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 182, "fields": {"action_time": "2019-04-07T20:32:14.981", "user": 1, "content_type": 29, "object_id": "256", "object_repr": "| 2 (| 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 183, "fields": {"action_time": "2019-04-07T20:32:20.931", "user": 1, "content_type": 29, "object_id": "366", "object_repr": "Debout (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 184, "fields": {"action_time": "2019-04-07T20:32:25.090", "user": 1, "content_type": 29, "object_id": "459", "object_repr": "Debout (de l'assis) (beb) (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 185, "fields": {"action_time": "2019-04-07T20:33:31.950", "user": 1, "content_type": 29, "object_id": "457", "object_repr": "Tomber Assis (beb) (A)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 186, "fields": {"action_time": "2019-04-07T20:33:36.663", "user": 1, "content_type": 29, "object_id": "318", "object_repr": "Rebonds plat dos (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 187, "fields": {"action_time": "2019-04-07T20:33:40.993", "user": 1, "content_type": 29, "object_id": "462", "object_repr": "Demi tour debout (de l'assis) (beh) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 188, "fields": {"action_time": "2019-04-07T20:33:45.385", "user": 1, "content_type": 29, "object_id": "461", "object_repr": "Demi tour debout (de l'assis) (beb) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 189, "fields": {"action_time": "2019-04-08T17:25:10.185", "user": 1, "content_type": 28, "object_id": "495", "object_repr": "L1 D2 Junior 1 (L1 D2 Junior 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 190, "fields": {"action_time": "2019-04-08T17:38:15.476", "user": 1, "content_type": 29, "object_id": "213", "object_repr": "Vrille et ½ debout (de l'assis) (- 3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 191, "fields": {"action_time": "2019-04-08T17:38:21.529", "user": 1, "content_type": 29, "object_id": "214", "object_repr": "Vrille debout (D 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 192, "fields": {"action_time": "2019-04-08T17:38:27.759", "user": 1, "content_type": 29, "object_id": "463", "object_repr": "Vrille debout (de l'assis) (beh) (D 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 193, "fields": {"action_time": "2019-04-08T17:38:32.135", "user": 1, "content_type": 29, "object_id": "464", "object_repr": "Vrille debout (de l'assis) (b2b) (D 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 194, "fields": {"action_time": "2019-04-08T17:38:39.182", "user": 1, "content_type": 29, "object_id": "462", "object_repr": "Demi tour debout (de l'assis) (beh) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 195, "fields": {"action_time": "2019-04-08T17:38:43.071", "user": 1, "content_type": 29, "object_id": "461", "object_repr": "Demi tour debout (de l'assis) (beb) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 196, "fields": {"action_time": "2019-04-08T17:38:47.339", "user": 1, "content_type": 29, "object_id": "69", "object_repr": "½ debout (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 197, "fields": {"action_time": "2019-04-08T17:38:50.887", "user": 1, "content_type": 29, "object_id": "460", "object_repr": "Debout (de l'assis) (beh) (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 198, "fields": {"action_time": "2019-04-08T17:38:56.542", "user": 1, "content_type": 29, "object_id": "459", "object_repr": "Debout (de l'assis) (beb) (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 199, "fields": {"action_time": "2019-04-08T17:39:02.937", "user": 1, "content_type": 29, "object_id": "14", "object_repr": "Debout (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 200, "fields": {"action_time": "2019-04-08T17:39:09.110", "user": 1, "content_type": 29, "object_id": "335", "object_repr": "Assis - vrille, ventre (.1 2 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 201, "fields": {"action_time": "2019-04-08T17:39:13.446", "user": 1, "content_type": 29, "object_id": "204", "object_repr": "Assis - vrille, plat dos (1. 2 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 202, "fields": {"action_time": "2019-04-08T17:39:18.799", "user": 1, "content_type": 29, "object_id": "82", "object_repr": "Roller (- 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 203, "fields": {"action_time": "2019-04-08T17:39:25.740", "user": 1, "content_type": 29, "object_id": "338", "object_repr": "Assis - vrille et ½, plat dos (1. 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 204, "fields": {"action_time": "2019-04-08T17:39:33.068", "user": 1, "content_type": 29, "object_id": "156", "object_repr": "Assis - vrille et ½, dos (.1 3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 205, "fields": {"action_time": "2019-04-08T17:39:38.180", "user": 1, "content_type": 29, "object_id": "146", "object_repr": "Assis - vrille et ½, assis (-3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 206, "fields": {"action_time": "2019-04-08T17:39:45.251", "user": 1, "content_type": 29, "object_id": "101", "object_repr": "Assis - ventre / (.1 -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 207, "fields": {"action_time": "2019-04-08T17:39:50.902", "user": 1, "content_type": 29, "object_id": "328", "object_repr": "Assis - ventre o (.1 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 208, "fields": {"action_time": "2019-04-08T17:41:03.013", "user": 1, "content_type": 29, "object_id": "329", "object_repr": "Assis - ventre < (.1 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 209, "fields": {"action_time": "2019-04-08T17:41:07.339", "user": 1, "content_type": 29, "object_id": "157", "object_repr": "Assis - salto avant, dos (.3 - 0)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 210, "fields": {"action_time": "2019-04-08T17:41:11.548", "user": 1, "content_type": 29, "object_id": "319", "object_repr": "Assis - plat dos (beh) (1. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 211, "fields": {"action_time": "2019-04-08T17:41:15.187", "user": 1, "content_type": 29, "object_id": "199", "object_repr": "Assis - plat dos (beb) (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 212, "fields": {"action_time": "2019-04-08T17:41:19.042", "user": 1, "content_type": 29, "object_id": "333", "object_repr": "Assis - grouper + vrille, ventre (.1 2 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 213, "fields": {"action_time": "2019-04-08T17:41:22.665", "user": 1, "content_type": 29, "object_id": "336", "object_repr": "Assis - grouper + vrille et ½, plat dos (.1 3 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 214, "fields": {"action_time": "2019-04-08T17:41:26.610", "user": 1, "content_type": 29, "object_id": "330", "object_repr": "Assis - grouper + ½, plat dos (.1 1 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 215, "fields": {"action_time": "2019-04-08T17:41:32.066", "user": 1, "content_type": 29, "object_id": "340", "object_repr": "Assis - double vrille, ventre (.1 4 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 216, "fields": {"action_time": "2019-04-08T17:41:37.083", "user": 1, "content_type": 29, "object_id": "327", "object_repr": "Assis - double vrille, plat dos (1. 4 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 217, "fields": {"action_time": "2019-04-08T17:41:46.689", "user": 1, "content_type": 29, "object_id": "341", "object_repr": "Assis - double vrille et ½, plat dos (.1 5 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 218, "fields": {"action_time": "2019-04-08T17:41:52.087", "user": 1, "content_type": 29, "object_id": "453", "object_repr": "Assis - Dos (1. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 219, "fields": {"action_time": "2019-04-08T17:41:57.474", "user": 1, "content_type": 29, "object_id": "201", "object_repr": "Assis - ½, ventre (1. 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 220, "fields": {"action_time": "2019-04-08T17:42:01.665", "user": 1, "content_type": 29, "object_id": "332", "object_repr": "Assis - ½, plat dos (.1 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 221, "fields": {"action_time": "2019-04-08T17:42:06.545", "user": 1, "content_type": 29, "object_id": "102", "object_repr": "Assis - ½, dos (.1 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 222, "fields": {"action_time": "2019-04-08T17:42:11.738", "user": 1, "content_type": 29, "object_id": "100", "object_repr": "Assis - ½, Assis (A 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 223, "fields": {"action_time": "2019-04-08T17:44:39.011", "user": 1, "content_type": 29, "object_id": "468", "object_repr": "ATR - roule (.1 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 224, "fields": {"action_time": "2019-04-08T17:44:42.554", "user": 1, "content_type": 29, "object_id": "469", "object_repr": "Poirier - plat dos (.1 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 225, "fields": {"action_time": "2019-04-08T17:44:46.017", "user": 1, "content_type": 29, "object_id": "192", "object_repr": "Poirier - Curviligne fermé (.1 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 226, "fields": {"action_time": "2019-04-08T17:47:10.240", "user": 1, "content_type": 29, "object_id": "467", "object_repr": "Ventre - ATR (.1 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 227, "fields": {"action_time": "2019-04-08T17:47:14.051", "user": 1, "content_type": 29, "object_id": "278", "object_repr": "Assis < (A <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 228, "fields": {"action_time": "2019-04-08T17:47:19.056", "user": 1, "content_type": 29, "object_id": "196", "object_repr": "Kaboom, ATR (1. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 229, "fields": {"action_time": "2019-04-08T17:47:22.411", "user": 1, "content_type": 29, "object_id": "190", "object_repr": "Dos - ATR (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 230, "fields": {"action_time": "2019-04-08T17:47:25.628", "user": 1, "content_type": 29, "object_id": "191", "object_repr": "Dos - ½, ATR (1. 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 231, "fields": {"action_time": "2019-04-08T17:47:29.443", "user": 1, "content_type": 29, "object_id": "189", "object_repr": "4 pattes - ATR (.1 -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 232, "fields": {"action_time": "2019-04-08T18:10:55.234", "user": 1, "content_type": 29, "object_id": "208", "object_repr": "4 pattes - assis (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 233, "fields": {"action_time": "2019-04-08T18:10:58.742", "user": 1, "content_type": 29, "object_id": "423", "object_repr": "4 pattes - Culbute, assis (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 234, "fields": {"action_time": "2019-04-08T18:11:01.592", "user": 1, "content_type": 29, "object_id": "424", "object_repr": "4 pattes - Culbute, dos (.2 - c)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 235, "fields": {"action_time": "2019-04-08T18:11:04.935", "user": 1, "content_type": 29, "object_id": "179", "object_repr": "4 pattes - ½, Assis (A 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 236, "fields": {"action_time": "2019-04-08T18:11:08.052", "user": 1, "content_type": 29, "object_id": "187", "object_repr": "4 pattes - ½, Dos (- 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 237, "fields": {"action_time": "2019-04-08T18:11:13.289", "user": 1, "content_type": 29, "object_id": "380", "object_repr": "4 pattes - avant < (.3 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 238, "fields": {"action_time": "2019-04-08T18:11:18.325", "user": 1, "content_type": 29, "object_id": "387", "object_repr": "4 pattes - avant <, ( (.2 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 239, "fields": {"action_time": "2019-04-08T18:11:22.570", "user": 1, "content_type": 29, "object_id": "207", "object_repr": "4 pattes - avant o (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 240, "fields": {"action_time": "2019-04-08T18:11:25.398", "user": 1, "content_type": 29, "object_id": "206", "object_repr": "4 pattes - avant o, ( (.2 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 241, "fields": {"action_time": "2019-04-08T18:11:28.102", "user": 1, "content_type": 29, "object_id": "388", "object_repr": "4 pattes - avant /, ( (.2 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 242, "fields": {"action_time": "2019-04-08T18:11:31.277", "user": 1, "content_type": 29, "object_id": "181", "object_repr": "4 pattes - ventre (.0 0)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 243, "fields": {"action_time": "2019-04-08T18:11:35.352", "user": 1, "content_type": 29, "object_id": "182", "object_repr": "Debout (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 244, "fields": {"action_time": "2019-04-08T18:11:38.716", "user": 1, "content_type": 29, "object_id": "183", "object_repr": "Rebonds 4 pattes (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 245, "fields": {"action_time": "2019-04-08T18:12:45.783", "user": 1, "content_type": 29, "object_id": "10", "object_repr": "4 pattes (.1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 246, "fields": {"action_time": "2019-04-08T18:12:48.827", "user": 1, "content_type": 29, "object_id": "384", "object_repr": "PO /, 4 pattes (2. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 247, "fields": {"action_time": "2019-04-08T18:12:51.464", "user": 1, "content_type": 29, "object_id": "219", "object_repr": "PO o, 4 pattes (2. - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 248, "fields": {"action_time": "2019-04-08T18:12:54.754", "user": 1, "content_type": 29, "object_id": "382", "object_repr": "PO <, 4 pattes (2. - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 249, "fields": {"action_time": "2019-04-08T18:12:58.126", "user": 1, "content_type": 29, "object_id": "211", "object_repr": "Plat dos - ½, 4 pattes (- 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 250, "fields": {"action_time": "2019-04-08T18:13:03.289", "user": 1, "content_type": 29, "object_id": "443", "object_repr": "Kaboom avant / + demi, 4 pattes (.2 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 251, "fields": {"action_time": "2019-04-08T18:13:07.575", "user": 1, "content_type": 29, "object_id": "441", "object_repr": "Kaboom avant o + demi, 4 pattes (.2 1 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 252, "fields": {"action_time": "2019-04-08T18:13:11.098", "user": 1, "content_type": 29, "object_id": "442", "object_repr": "Kaboom avant < + demi, 4 pattes (.2 1 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 253, "fields": {"action_time": "2019-04-08T18:13:13.957", "user": 1, "content_type": 29, "object_id": "217", "object_repr": "Dos - 4 pattes (.2 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 254, "fields": {"action_time": "2019-04-08T18:13:17.114", "user": 1, "content_type": 29, "object_id": "178", "object_repr": "Assis - ½, 4 pattes (- 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 255, "fields": {"action_time": "2019-04-08T18:13:20.572", "user": 1, "content_type": 29, "object_id": "180", "object_repr": "Assis - 4 pattes (.1 -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 256, "fields": {"action_time": "2019-04-11T18:26:01.987", "user": 1, "content_type": 26, "object_id": "50", "object_repr": "10 - BOT Imposé -10 ans : Assis <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 257, "fields": {"action_time": "2019-04-11T18:26:01.989", "user": 1, "content_type": 26, "object_id": "49", "object_repr": "9 - BOT Imposé -10 ans : ½ debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 258, "fields": {"action_time": "2019-04-11T18:26:01.989", "user": 1, "content_type": 26, "object_id": "48", "object_repr": "8 - BOT Imposé -10 ans : Dos", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 259, "fields": {"action_time": "2019-04-11T18:26:01.990", "user": 1, "content_type": 26, "object_id": "47", "object_repr": "7 - BOT Imposé -10 ans : o", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 260, "fields": {"action_time": "2019-04-11T18:26:01.991", "user": 1, "content_type": 26, "object_id": "46", "object_repr": "6 - BOT Imposé -10 ans : ½ tour", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 261, "fields": {"action_time": "2019-04-11T18:36:32.384", "user": 1, "content_type": 26, "object_id": "55", "object_repr": "10 - BOT Imposé -10 ans : ½ debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 262, "fields": {"action_time": "2019-04-11T18:36:32.386", "user": 1, "content_type": 26, "object_id": "54", "object_repr": "9 - BOT Imposé -10 ans : Dos", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 263, "fields": {"action_time": "2019-04-11T18:36:32.387", "user": 1, "content_type": 26, "object_id": "53", "object_repr": "8 - BOT Imposé -10 ans : o", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 264, "fields": {"action_time": "2019-04-11T18:36:32.388", "user": 1, "content_type": 26, "object_id": "52", "object_repr": "7 - BOT Imposé -10 ans : ½ tour", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 265, "fields": {"action_time": "2019-04-11T18:36:32.388", "user": 1, "content_type": 26, "object_id": "51", "object_repr": "6 - BOT Imposé -10 ans : <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 266, "fields": {"action_time": "2019-04-11T18:36:32.389", "user": 1, "content_type": 26, "object_id": "45", "object_repr": "5 - BOT Imposé -10 ans : Debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 267, "fields": {"action_time": "2019-04-11T18:36:32.390", "user": 1, "content_type": 26, "object_id": "44", "object_repr": "4 - BOT Imposé -10 ans : Assis", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 268, "fields": {"action_time": "2019-04-11T18:36:32.391", "user": 1, "content_type": 26, "object_id": "43", "object_repr": "3 - BOT Imposé -10 ans : <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 269, "fields": {"action_time": "2019-04-12T06:59:12.834", "user": 1, "content_type": 26, "object_id": "68", "object_repr": "12 - BOT Imposé -10 ans : Debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 270, "fields": {"action_time": "2019-04-12T06:59:12.836", "user": 1, "content_type": 26, "object_id": "64", "object_repr": "11 - BOT Imposé -10 ans : Assis <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 271, "fields": {"action_time": "2019-04-12T11:17:58.069", "user": 1, "content_type": 29, "object_id": "182", "object_repr": "Debout (4p) (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 272, "fields": {"action_time": "2019-04-12T11:18:27.966", "user": 1, "content_type": 26, "object_id": "73", "object_repr": "2 - BOT F4 : Debout", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 273, "fields": {"action_time": "2019-04-12T11:18:53.228", "user": 1, "content_type": 26, "object_id": "42", "object_repr": "2 - BOT Imposé -10 ans : Debout", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 274, "fields": {"action_time": "2019-04-13T10:26:17.751", "user": 1, "content_type": 37, "object_id": "1", "object_repr": "Message object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 275, "fields": {"action_time": "2019-04-13T10:33:08.754", "user": 1, "content_type": 37, "object_id": "2", "object_repr": "Message object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 276, "fields": {"action_time": "2019-04-14T14:27:45.076", "user": 1, "content_type": 37, "object_id": "1", "object_repr": "Message object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 277, "fields": {"action_time": "2019-04-14T14:55:23.700", "user": 1, "content_type": 37, "object_id": "2", "object_repr": "Message object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_read\"]}}]"}}, {"model": "admin.logentry", "pk": 278, "fields": {"action_time": "2019-04-15T08:02:43.490", "user": 1, "content_type": 37, "object_id": "2", "object_repr": "Message object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_read\"]}}]"}}, {"model": "admin.logentry", "pk": 279, "fields": {"action_time": "2019-04-21T10:09:30.927", "user": 1, "content_type": 12, "object_id": "2", "object_repr": "Portugal (PO)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 280, "fields": {"action_time": "2019-04-21T12:24:46.834", "user": 1, "content_type": 15, "object_id": "3", "object_repr": "Championnat Flamand (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 281, "fields": {"action_time": "2019-04-21T12:26:44.582", "user": 1, "content_type": 15, "object_id": "2", "object_repr": "Championnat FfG (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 282, "fields": {"action_time": "2019-04-22T09:30:57.472", "user": 1, "content_type": 29, "object_id": "141", "object_repr": "Half in trif < (12. 1-1 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageGirl\", \"prerequisite\"]}}]"}}, {"model": "admin.logentry", "pk": 283, "fields": {"action_time": "2019-04-22T09:35:25.283", "user": 1, "content_type": 29, "object_id": "513", "object_repr": "Prog Half In Triffis o (11. 1-- o)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 284, "fields": {"action_time": "2019-04-22T09:38:00.110", "user": 1, "content_type": 29, "object_id": "514", "object_repr": "Prog Half In Triffis < (11. 1-- <)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 285, "fields": {"action_time": "2019-04-22T19:07:48.420", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "Ten Gaerde (Dilbeek)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nbkm\", \"timing\"]}}]"}}, {"model": "admin.logentry", "pk": 286, "fields": {"action_time": "2019-04-27T08:05:03.298", "user": 1, "content_type": 15, "object_id": "5", "object_repr": "Championnat de belgique (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 287, "fields": {"action_time": "2019-04-27T08:05:21.572", "user": 1, "content_type": 15, "object_id": "5", "object_repr": "Championnat de belgique (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]"}}, {"model": "admin.logentry", "pk": 288, "fields": {"action_time": "2019-04-27T08:05:31.678", "user": 1, "content_type": 15, "object_id": "2", "object_repr": "Championnat FfG (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 289, "fields": {"action_time": "2019-04-27T08:06:14.377", "user": 1, "content_type": 15, "object_id": "5", "object_repr": "Championnat de Belgique (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]"}}, {"model": "admin.logentry", "pk": 290, "fields": {"action_time": "2019-04-27T08:06:31.651", "user": 1, "content_type": 15, "object_id": "3", "object_repr": "Championnat Flamand (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]"}}, {"model": "admin.logentry", "pk": 291, "fields": {"action_time": "2019-04-30T13:42:04.310", "user": 1, "content_type": 20, "object_id": "1", "object_repr": "2018-19", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2019-05-02T13:24:58.441", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Stage (Stg)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2019-05-02T20:16:40.797", "user": 1, "content_type": 33, "object_id": "3", "object_repr": "Raschke, Sebastian - 46.600", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 294, "fields": {"action_time": "2019-05-07T13:27:42.618", "user": 1, "content_type": 29, "object_id": "423", "object_repr": "4 pattes - Culbute, assis (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 295, "fields": {"action_time": "2019-05-07T13:27:53.252", "user": 1, "content_type": 29, "object_id": "424", "object_repr": "4 pattes - Culbute, dos (.2 - c)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 296, "fields": {"action_time": "2019-05-07T13:27:57.853", "user": 1, "content_type": 29, "object_id": "380", "object_repr": "4 pattes - avant < (.3 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 297, "fields": {"action_time": "2019-05-07T13:28:07.123", "user": 1, "content_type": 29, "object_id": "387", "object_repr": "4 pattes - avant <, ( (.2 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 298, "fields": {"action_time": "2019-05-07T13:28:20.168", "user": 1, "content_type": 29, "object_id": "99", "object_repr": "2 ¾ avant < (.11 --- <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 299, "fields": {"action_time": "2019-05-07T13:29:29.096", "user": 1, "content_type": 29, "object_id": "207", "object_repr": "4 pattes - avant o (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 300, "fields": {"action_time": "2019-05-07T13:29:33.311", "user": 1, "content_type": 29, "object_id": "388", "object_repr": "4 pattes - avant /, ( (.2 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 301, "fields": {"action_time": "2019-05-07T13:29:40.911", "user": 1, "content_type": 29, "object_id": "227", "object_repr": "Arrière / + ½ (4. 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 302, "fields": {"action_time": "2019-05-07T13:30:10.070", "user": 1, "content_type": 29, "object_id": "331", "object_repr": "Assis - carper + ½, plat dos (.1 1 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 303, "fields": {"action_time": "2019-05-07T13:30:19.307", "user": 1, "content_type": 29, "object_id": "337", "object_repr": "Assis - carper + vrille et ½, plat dos (.1 3 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 304, "fields": {"action_time": "2019-05-07T13:30:23.317", "user": 1, "content_type": 29, "object_id": "334", "object_repr": "Assis - carper + vrille, ventre (.1 2 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 305, "fields": {"action_time": "2019-05-07T13:30:34.773", "user": 1, "content_type": 29, "object_id": "332", "object_repr": "Assis - ½, plat dos (.1 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 306, "fields": {"action_time": "2019-05-07T13:30:40.911", "user": 1, "content_type": 29, "object_id": "338", "object_repr": "Assis - vrille et ½, plat dos (1. 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 307, "fields": {"action_time": "2019-05-07T13:30:48.332", "user": 1, "content_type": 29, "object_id": "324", "object_repr": "Assis - vrille et ½, ventre (.1 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 308, "fields": {"action_time": "2019-05-07T16:18:48.533", "user": 1, "content_type": 29, "object_id": "207", "object_repr": "4 pattes - avant o (.3 - o)", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 309, "fields": {"action_time": "2019-05-09T12:43:26.679", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 310, "fields": {"action_time": "2019-05-09T12:56:48.094", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 311, "fields": {"action_time": "2019-05-09T12:59:55.335", "user": 1, "content_type": 26, "object_id": "179", "object_repr": "4 - Safwane's L2 : HIHO o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 312, "fields": {"action_time": "2019-05-09T13:00:00.043", "user": 1, "content_type": 26, "object_id": "180", "object_repr": "5 - Safwane's L2 : Rudy out o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 313, "fields": {"action_time": "2019-05-09T13:00:04.060", "user": 1, "content_type": 26, "object_id": "182", "object_repr": "7 - Safwane's L2 : 2 Back <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 314, "fields": {"action_time": "2019-05-09T13:00:07.852", "user": 1, "content_type": 26, "object_id": "183", "object_repr": "8 - Safwane's L2 : Barani /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 315, "fields": {"action_time": "2019-05-09T13:00:24.187", "user": 1, "content_type": 26, "object_id": "182", "object_repr": "6 - Safwane's L2 : 2 Back <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 316, "fields": {"action_time": "2019-05-09T13:00:26.892", "user": 1, "content_type": 26, "object_id": "183", "object_repr": "7 - Safwane's L2 : Barani /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 317, "fields": {"action_time": "2019-05-09T13:00:28.635", "user": 1, "content_type": 26, "object_id": "184", "object_repr": "8 - Safwane's L2 : 2 Back o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 318, "fields": {"action_time": "2019-05-09T13:00:30.945", "user": 1, "content_type": 26, "object_id": "185", "object_repr": "9 - Safwane's L2 : Out <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 319, "fields": {"action_time": "2019-05-09T13:00:33.200", "user": 1, "content_type": 26, "object_id": "186", "object_repr": "10 - Safwane's L2 : FIFO /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 320, "fields": {"action_time": "2019-05-09T13:01:06.555", "user": 1, "content_type": 26, "object_id": "186", "object_repr": "10 - Safwane's L2 : 2 Back /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 321, "fields": {"action_time": "2019-05-09T13:02:04.376", "user": 1, "content_type": 36, "object_id": "8", "object_repr": "Salhi, Safwane - 2 : Safwane's L2 (Safwane's L2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 322, "fields": {"action_time": "2019-05-10T07:27:10.476", "user": 1, "content_type": 29, "object_id": "366", "object_repr": "Debout (genoux) (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 323, "fields": {"action_time": "2019-05-13T15:19:28.235", "user": 1, "content_type": 9, "object_id": "12", "object_repr": "Jaquet, Martin", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 324, "fields": {"action_time": "2019-05-17T06:03:54.998", "user": 1, "content_type": 26, "object_id": "294", "object_repr": "8 - Rivoal 8 : Avant <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 325, "fields": {"action_time": "2019-05-17T06:14:45.979", "user": 1, "content_type": 28, "object_id": "525", "object_repr": "Rivoal 09 (Rivoal 09)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 326, "fields": {"action_time": "2019-05-17T06:14:48.976", "user": 1, "content_type": 28, "object_id": "524", "object_repr": "Rivoal 08 (Rivoal 08)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 327, "fields": {"action_time": "2019-05-17T06:14:52.161", "user": 1, "content_type": 28, "object_id": "523", "object_repr": "Rivoal 07 (Rivoal 07)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 328, "fields": {"action_time": "2019-05-17T06:14:54.664", "user": 1, "content_type": 28, "object_id": "520", "object_repr": "Rivoal 05 (Rivoal 05)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 329, "fields": {"action_time": "2019-05-17T06:14:57.377", "user": 1, "content_type": 28, "object_id": "517", "object_repr": "Rivoal 02 (Rivoal 02)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 330, "fields": {"action_time": "2019-05-17T06:14:59.543", "user": 1, "content_type": 28, "object_id": "522", "object_repr": "Rivoal 06 (Rivoal 06)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 331, "fields": {"action_time": "2019-05-17T06:15:01.584", "user": 1, "content_type": 28, "object_id": "519", "object_repr": "Rivoal 04 (Rivoal 04)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 332, "fields": {"action_time": "2019-05-17T06:15:04.965", "user": 1, "content_type": 28, "object_id": "518", "object_repr": "Rivoal 03 (Rivoal 03)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 333, "fields": {"action_time": "2019-05-17T06:15:08.856", "user": 1, "content_type": 28, "object_id": "521", "object_repr": "Rivoal 01 (Rivoal 01)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 334, "fields": {"action_time": "2019-05-17T09:41:15.159", "user": 1, "content_type": 26, "object_id": "371", "object_repr": "3 - Rivoal 14 : Arrière <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 335, "fields": {"action_time": "2019-05-17T09:41:20.296", "user": 1, "content_type": 26, "object_id": "372", "object_repr": "4 - Rivoal 14 : Barani /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 336, "fields": {"action_time": "2019-05-17T09:41:24.112", "user": 1, "content_type": 26, "object_id": "373", "object_repr": "5 - Rivoal 14 : Full", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 337, "fields": {"action_time": "2019-05-17T09:41:28.964", "user": 1, "content_type": 26, "object_id": "374", "object_repr": "6 - Rivoal 14 : Barani <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 338, "fields": {"action_time": "2019-05-17T09:41:33.438", "user": 1, "content_type": 26, "object_id": "375", "object_repr": "7 - Rivoal 14 : Arrière o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 339, "fields": {"action_time": "2019-05-17T09:41:39.403", "user": 1, "content_type": 26, "object_id": "376", "object_repr": "8 - Rivoal 14 : Barani o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 340, "fields": {"action_time": "2019-05-17T09:41:43.079", "user": 1, "content_type": 26, "object_id": "377", "object_repr": "9 - Rivoal 14 : Arrière /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 341, "fields": {"action_time": "2019-05-17T09:41:50.549", "user": 1, "content_type": 26, "object_id": "378", "object_repr": "10 - Rivoal 14 : Out o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 342, "fields": {"action_time": "2019-05-17T09:42:40.800", "user": 1, "content_type": 26, "object_id": "370", "object_repr": "2 - Rivoal 14 : Cody o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 343, "fields": {"action_time": "2019-05-17T09:42:43.953", "user": 1, "content_type": 26, "object_id": "369", "object_repr": "1 - Rivoal 14 : Arrière /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 344, "fields": {"action_time": "2019-05-17T09:43:26.196", "user": 1, "content_type": 26, "object_id": "369", "object_repr": "1 - Rivoal 14 : ¾ Arrière /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 345, "fields": {"action_time": "2019-05-17T10:57:03.551", "user": 1, "content_type": 26, "object_id": "459", "object_repr": "9 - Rivoal 22 : 1 ¾ o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 346, "fields": {"action_time": "2019-05-17T11:10:36.877", "user": 1, "content_type": 26, "object_id": "515", "object_repr": "5 - Rivoal 28 : Out <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 347, "fields": {"action_time": "2019-05-17T11:33:49.510", "user": 1, "content_type": 26, "object_id": "543", "object_repr": "1 - Rivoal 36 : Triffis <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 348, "fields": {"action_time": "2019-05-21T09:41:39.654", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 349, "fields": {"action_time": "2019-05-21T12:03:09.354", "user": 1, "content_type": 15, "object_id": "17", "object_repr": "GymFed PV1 2018 (à Sint-Gillis-Bij-Dendermonde)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 350, "fields": {"action_time": "2019-05-23T07:29:30.657", "user": 1, "content_type": 29, "object_id": "553", "object_repr": "Miller < (8. 33 <)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 351, "fields": {"action_time": "2019-05-25T05:27:49.888", "user": 1, "content_type": 14, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 352, "fields": {"action_time": "2019-05-25T05:29:19.957", "user": 1, "content_type": 14, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 353, "fields": {"action_time": "2019-05-25T05:29:33.612", "user": 1, "content_type": 14, "object_id": "4", "object_repr": "Vendredi (17:15 à 19:15)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 354, "fields": {"action_time": "2019-05-25T05:30:17.873", "user": 1, "content_type": 14, "object_id": "5", "object_repr": "Samedi (19:00 à 21:30)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 355, "fields": {"action_time": "2019-05-25T05:30:30.728", "user": 1, "content_type": 14, "object_id": "5", "object_repr": "Samedi (19:00 à 21:30)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 356, "fields": {"action_time": "2019-05-25T14:35:20.519", "user": 1, "content_type": 14, "object_id": "1", "object_repr": "Samedi (10:00 à 12:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 357, "fields": {"action_time": "2019-05-30T20:59:24.032", "user": 1, "content_type": 29, "object_id": "276", "object_repr": "RBO < (.5 3 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"difficulty\"]}}]"}}, {"model": "admin.logentry", "pk": 358, "fields": {"action_time": "2019-05-30T20:59:31.677", "user": 1, "content_type": 29, "object_id": "161", "object_repr": "RBO / (.5 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"difficulty\"]}}]"}}, {"model": "admin.logentry", "pk": 359, "fields": {"action_time": "2019-06-05T11:29:04.403", "user": 1, "content_type": 39, "object_id": "1", "object_repr": "Event_Participation object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 360, "fields": {"action_time": "2019-06-05T11:29:08.209", "user": 1, "content_type": 39, "object_id": "2", "object_repr": "Event_Participation object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 361, "fields": {"action_time": "2019-06-05T11:29:11.254", "user": 1, "content_type": 39, "object_id": "3", "object_repr": "Event_Participation object (3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 362, "fields": {"action_time": "2019-06-05T11:29:14.684", "user": 1, "content_type": 39, "object_id": "4", "object_repr": "Event_Participation object (4)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 363, "fields": {"action_time": "2019-06-05T11:29:18.068", "user": 1, "content_type": 39, "object_id": "5", "object_repr": "Event_Participation object (5)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 364, "fields": {"action_time": "2019-06-05T11:29:22.141", "user": 1, "content_type": 39, "object_id": "5", "object_repr": "Event_Participation object (5)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 365, "fields": {"action_time": "2019-07-02T16:34:37.424", "user": 1, "content_type": 36, "object_id": "10", "object_repr": "Raschke, Sebastian - 1 : Sebastian's L1 (Sebastian's L1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 366, "fields": {"action_time": "2019-07-02T16:34:37.427", "user": 1, "content_type": 36, "object_id": "9", "object_repr": "Raschke, Sebastian - 1 : Sebastian's L1 (Sebastian's L1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 367, "fields": {"action_time": "2019-07-02T16:37:03.624", "user": 1, "content_type": 9, "object_id": "11", "object_repr": "Raschke, Sebastian", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 368, "fields": {"action_time": "2021-05-14T15:52:00.048", "user": 1, "content_type": 5, "object_id": "4", "object_repr": "felix_vanye", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 369, "fields": {"action_time": "2021-05-14T15:52:29.932", "user": 1, "content_type": 5, "object_id": "5", "object_repr": "lola_vanmol", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 370, "fields": {"action_time": "2021-05-14T15:53:13.487", "user": 1, "content_type": 5, "object_id": "6", "object_repr": "safwane_salhi", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 371, "fields": {"action_time": "2021-05-14T15:53:39.595", "user": 1, "content_type": 5, "object_id": "7", "object_repr": "romain_scokart", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 372, "fields": {"action_time": "2021-05-14T15:53:59.901", "user": 1, "content_type": 5, "object_id": "8", "object_repr": "sebastian_raschke", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 373, "fields": {"action_time": "2021-05-14T15:54:18.742", "user": 1, "content_type": 5, "object_id": "9", "object_repr": "roswitha_raschke", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 374, "fields": {"action_time": "2021-05-14T15:54:32.925", "user": 1, "content_type": 5, "object_id": "10", "object_repr": "lucas_pesesse", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 375, "fields": {"action_time": "2021-05-14T15:54:47.353", "user": 1, "content_type": 5, "object_id": "11", "object_repr": "pauline_lefevre", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 376, "fields": {"action_time": "2021-05-14T15:55:03.268", "user": 1, "content_type": 5, "object_id": "12", "object_repr": "martin_jacquet", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 377, "fields": {"action_time": "2021-05-14T15:55:17.846", "user": 1, "content_type": 5, "object_id": "13", "object_repr": "noelia_grandamartinez", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 378, "fields": {"action_time": "2021-05-14T15:55:34.427", "user": 1, "content_type": 5, "object_id": "14", "object_repr": "marine_geirnart", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 379, "fields": {"action_time": "2021-05-14T15:56:08.287", "user": 1, "content_type": 5, "object_id": "4", "object_repr": "felix_vanye", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 380, "fields": {"action_time": "2021-05-14T15:56:35.061", "user": 1, "content_type": 5, "object_id": "8", "object_repr": "sebastian_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 381, "fields": {"action_time": "2021-05-14T15:56:42.993", "user": 1, "content_type": 5, "object_id": "11", "object_repr": "pauline_lefevre", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 382, "fields": {"action_time": "2021-05-14T15:56:49.361", "user": 1, "content_type": 5, "object_id": "7", "object_repr": "romain_scokart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 383, "fields": {"action_time": "2021-05-14T15:56:57.734", "user": 1, "content_type": 5, "object_id": "9", "object_repr": "roswitha_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 384, "fields": {"action_time": "2021-05-14T15:57:03.935", "user": 1, "content_type": 5, "object_id": "6", "object_repr": "safwane_salhi", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 385, "fields": {"action_time": "2021-05-14T15:57:12.759", "user": 1, "content_type": 5, "object_id": "13", "object_repr": "noelia_grandamartinez", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 386, "fields": {"action_time": "2021-05-14T15:57:18.990", "user": 1, "content_type": 5, "object_id": "12", "object_repr": "martin_jacquet", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 387, "fields": {"action_time": "2021-05-14T15:57:26.671", "user": 1, "content_type": 5, "object_id": "14", "object_repr": "marine_geirnart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 388, "fields": {"action_time": "2021-05-14T15:57:32.653", "user": 1, "content_type": 5, "object_id": "10", "object_repr": "lucas_pesesse", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 389, "fields": {"action_time": "2021-05-14T15:57:39.134", "user": 1, "content_type": 5, "object_id": "5", "object_repr": "lola_vanmol", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 390, "fields": {"action_time": "2021-05-14T16:03:14.389", "user": 1, "content_type": 5, "object_id": "13", "object_repr": "noelia_grandamartinez", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 391, "fields": {"action_time": "2021-05-14T16:03:29.766", "user": 1, "content_type": 5, "object_id": "7", "object_repr": "romain_scokart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 392, "fields": {"action_time": "2021-05-14T16:03:41.428", "user": 1, "content_type": 5, "object_id": "9", "object_repr": "roswitha_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 393, "fields": {"action_time": "2021-05-14T16:03:52.789", "user": 1, "content_type": 5, "object_id": "6", "object_repr": "safwane_salhi", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 394, "fields": {"action_time": "2021-05-14T16:04:13.290", "user": 1, "content_type": 5, "object_id": "14", "object_repr": "marine_geirnart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 395, "fields": {"action_time": "2021-05-14T16:04:24.381", "user": 1, "content_type": 5, "object_id": "8", "object_repr": "sebastian_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 396, "fields": {"action_time": "2021-05-15T14:41:26.828", "user": 1, "content_type": 5, "object_id": "5", "object_repr": "lola_vanmol", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 397, "fields": {"action_time": "2021-05-16T11:05:40.702", "user": 1, "content_type": 20, "object_id": "2", "object_repr": "2020-21", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add content type", "content_type": 1, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change content type", "content_type": 1, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete content type", "content_type": 1, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can view content type", "content_type": 1, "codename": "view_contenttype"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can add log entry", "content_type": 2, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can change log entry", "content_type": 2, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can delete log entry", "content_type": 2, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can view log entry", "content_type": 2, "codename": "view_logentry"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can add permission", "content_type": 3, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can change permission", "content_type": 3, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can delete permission", "content_type": 3, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can view permission", "content_type": 3, "codename": "view_permission"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add group", "content_type": 4, "codename": "add_group"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change group", "content_type": 4, "codename": "change_group"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete group", "content_type": 4, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can view group", "content_type": 4, "codename": "view_group"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can add user", "content_type": 5, "codename": "add_user"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can change user", "content_type": 5, "codename": "change_user"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can delete user", "content_type": 5, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can view user", "content_type": 5, "codename": "view_user"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can view session", "content_type": 6, "codename": "view_session"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add Accident", "content_type": 7, "codename": "add_accident"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change Accident", "content_type": 7, "codename": "change_accident"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete Accident", "content_type": 7, "codename": "delete_accident"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can view Accident", "content_type": 7, "codename": "view_accident"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can add CanDo", "content_type": 8, "codename": "add_candorelation"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can change CanDo", "content_type": 8, "codename": "change_candorelation"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can delete CanDo", "content_type": 8, "codename": "delete_candorelation"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can view CanDo", "content_type": 8, "codename": "view_candorelation"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can add Gymnast", "content_type": 9, "codename": "add_gymnast"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can change Gymnast", "content_type": 9, "codename": "change_gymnast"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can delete Gymnast", "content_type": 9, "codename": "delete_gymnast"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can view Gymnast", "content_type": 9, "codename": "view_gymnast"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add ToDo", "content_type": 10, "codename": "add_todorelation"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change ToDo", "content_type": 10, "codename": "change_todorelation"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete ToDo", "content_type": 10, "codename": "delete_todorelation"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can view ToDo", "content_type": 10, "codename": "view_todorelation"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can add Club", "content_type": 11, "codename": "add_club"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can change Club", "content_type": 11, "codename": "change_club"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can delete Club", "content_type": 11, "codename": "delete_club"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can view Club", "content_type": 11, "codename": "view_club"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can add Country", "content_type": 12, "codename": "add_country"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can change Country", "content_type": 12, "codename": "change_country"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can delete Country", "content_type": 12, "codename": "delete_country"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can view Country", "content_type": 12, "codename": "view_country"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add Place", "content_type": 13, "codename": "add_place"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change Place", "content_type": 13, "codename": "change_place"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete Place", "content_type": 13, "codename": "delete_place"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can view Place", "content_type": 13, "codename": "view_place"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can add Course", "content_type": 14, "codename": "add_course"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can change Course", "content_type": 14, "codename": "change_course"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can delete Course", "content_type": 14, "codename": "delete_course"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can view Course", "content_type": 14, "codename": "view_course"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can add Event", "content_type": 15, "codename": "add_event"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can change Event", "content_type": 15, "codename": "change_event"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can delete Event", "content_type": 15, "codename": "delete_event"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can view Event", "content_type": 15, "codename": "view_event"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add Event Type", "content_type": 16, "codename": "add_eventtype"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change Event Type", "content_type": 16, "codename": "change_eventtype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete Event Type", "content_type": 16, "codename": "delete_eventtype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can view Event Type", "content_type": 16, "codename": "view_eventtype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can add Group", "content_type": 17, "codename": "add_group"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can change Group", "content_type": 17, "codename": "change_group"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can delete Group", "content_type": 17, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can view Group", "content_type": 17, "codename": "view_group"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can add Planning Line", "content_type": 18, "codename": "add_planningline"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can change Planning Line", "content_type": 18, "codename": "change_planningline"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can delete Planning Line", "content_type": 18, "codename": "delete_planningline"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can view Planning Line", "content_type": 18, "codename": "view_planningline"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add Round", "content_type": 19, "codename": "add_round"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change Round", "content_type": 19, "codename": "change_round"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete Round", "content_type": 19, "codename": "delete_round"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can view Round", "content_type": 19, "codename": "view_round"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can add Season", "content_type": 20, "codename": "add_season"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can change Season", "content_type": 20, "codename": "change_season"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can delete Season", "content_type": 20, "codename": "delete_season"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can view Season", "content_type": 20, "codename": "view_season"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can add Subgroup", "content_type": 21, "codename": "add_subgroup"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can change Subgroup", "content_type": 21, "codename": "change_subgroup"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can delete Subgroup", "content_type": 21, "codename": "delete_subgroup"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can view Subgroup", "content_type": 21, "codename": "view_subgroup"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add Training", "content_type": 22, "codename": "add_training"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change Training", "content_type": 22, "codename": "change_training"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete Training", "content_type": 22, "codename": "delete_training"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can view Training", "content_type": 22, "codename": "view_training"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can add Indisponibilité", "content_type": 23, "codename": "add_unavailability"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can change Indisponibilité", "content_type": 23, "codename": "change_unavailability"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can delete Indisponibilité", "content_type": 23, "codename": "delete_unavailability"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can view Indisponibilité", "content_type": 23, "codename": "view_unavailability"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can add chrono", "content_type": 24, "codename": "add_chrono"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can change chrono", "content_type": 24, "codename": "change_chrono"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can delete chrono", "content_type": 24, "codename": "delete_chrono"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can view chrono", "content_type": 24, "codename": "view_chrono"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add Educatif", "content_type": 25, "codename": "add_educative"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change Educatif", "content_type": 25, "codename": "change_educative"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete Educatif", "content_type": 25, "codename": "delete_educative"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can view Educatif", "content_type": 25, "codename": "view_educative"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can add routine_ skill", "content_type": 26, "codename": "add_routine_skill"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can change routine_ skill", "content_type": 26, "codename": "change_routine_skill"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can delete routine_ skill", "content_type": 26, "codename": "delete_routine_skill"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can view routine_ skill", "content_type": 26, "codename": "view_routine_skill"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can add Landing", "content_type": 27, "codename": "add_touchposition"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can change Landing", "content_type": 27, "codename": "change_touchposition"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can delete Landing", "content_type": 27, "codename": "delete_touchposition"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can view Landing", "content_type": 27, "codename": "view_touchposition"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add Routine", "content_type": 28, "codename": "add_routine"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change Routine", "content_type": 28, "codename": "change_routine"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete Routine", "content_type": 28, "codename": "delete_routine"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can view Routine", "content_type": 28, "codename": "view_routine"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can add Skill", "content_type": 29, "codename": "add_skill"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can change Skill", "content_type": 29, "codename": "change_skill"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can delete Skill", "content_type": 29, "codename": "delete_skill"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can view Skill", "content_type": 29, "codename": "view_skill"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can add competition", "content_type": 30, "codename": "add_competition"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can change competition", "content_type": 30, "codename": "change_competition"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can delete competition", "content_type": 30, "codename": "delete_competition"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can view competition", "content_type": 30, "codename": "view_competition"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add division", "content_type": 31, "codename": "add_division"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change division", "content_type": 31, "codename": "change_division"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete division", "content_type": 31, "codename": "delete_division"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can view division", "content_type": 31, "codename": "view_division"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can add level", "content_type": 32, "codename": "add_level"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can change level", "content_type": 32, "codename": "change_level"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can delete level", "content_type": 32, "codename": "delete_level"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can view level", "content_type": 32, "codename": "view_level"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can add point", "content_type": 33, "codename": "add_point"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can change point", "content_type": 33, "codename": "change_point"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can delete point", "content_type": 33, "codename": "delete_point"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can view point", "content_type": 33, "codename": "view_point"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add profile", "content_type": 34, "codename": "add_profile"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change profile", "content_type": 34, "codename": "change_profile"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete profile", "content_type": 34, "codename": "delete_profile"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can view profile", "content_type": 34, "codename": "view_profile"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can add Has Routine", "content_type": 35, "codename": "add_hasroutine"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can change Has Routine", "content_type": 35, "codename": "change_hasroutine"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can delete Has Routine", "content_type": 35, "codename": "delete_hasroutine"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can view Has Routine", "content_type": 35, "codename": "view_hasroutine"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can add Has Routine", "content_type": 36, "codename": "add_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can change Has Routine", "content_type": 36, "codename": "change_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can delete Has Routine", "content_type": 36, "codename": "delete_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can view Has Routine", "content_type": 36, "codename": "view_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add message", "content_type": 37, "codename": "add_message"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change message", "content_type": 37, "codename": "change_message"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete message", "content_type": 37, "codename": "delete_message"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can view message", "content_type": 37, "codename": "view_message"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can add evaluation", "content_type": 38, "codename": "add_evaluation"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can change evaluation", "content_type": 38, "codename": "change_evaluation"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can delete evaluation", "content_type": 38, "codename": "delete_evaluation"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can view evaluation", "content_type": 38, "codename": "view_evaluation"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can add event_ participation", "content_type": 39, "codename": "add_event_participation"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can change event_ participation", "content_type": 39, "codename": "change_event_participation"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can delete event_ participation", "content_type": 39, "codename": "delete_event_participation"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can view event_ participation", "content_type": 39, "codename": "view_event_participation"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add routine skill", "content_type": 26, "codename": "add_routineskill"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change routine skill", "content_type": 26, "codename": "change_routineskill"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete routine skill", "content_type": 26, "codename": "delete_routineskill"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can view routine skill", "content_type": 26, "codename": "view_routineskill"}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$260000$MsRLQqEnJ9N0gYGOV3kFN0$eh6l8SPvkAzWKxeEt+4Oo2i/LtQqOkQHxnhxuLvvV+4=", "last_login": "2021-05-28T22:33:33.723", "is_superuser": true, "username": "Gregory", "first_name": "Gregory", "last_name": "Trullemans", "email": "gregory@flyingacrobaticstrampoline.be", "is_staff": true, "is_active": true, "date_joined": "2019-03-16T16:59:22", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$120000$0muwiBmI2PGm$jMvtA92u/ao+l+2z9DKJ9nNNCgWBjqwR4lxuCdnpj8E=", "last_login": null, "is_superuser": true, "username": "Morgane", "first_name": "Morgane", "last_name": "Petit", "email": "morgane@flyingacrobaticstrampoline.be", "is_staff": true, "is_active": true, "date_joined": "2019-03-17T07:55:28", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 3, "fields": {"password": "pbkdf2_sha256$120000$a3DrPGLiEP43$7uxCc9GdcpvKBGIG1g+v95Tp6P8xps24W9HF+aYuKQA=", "last_login": null, "is_superuser": false, "username": "Stéphane", "first_name": "Stéphane", "last_name": "Gilles", "email": "sgilles@hotmail.be", "is_staff": true, "is_active": true, "date_joined": "2019-03-17T07:56:24", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 4, "fields": {"password": "pbkdf2_sha256$260000$x6VvhIhcei1vI3IKdRyxik$oEdBsh+13poVd52wXT4JXaTJL1BJEc4di82JnT78Ys4=", "last_login": null, "is_superuser": false, "username": "felix_vanye", "first_name": "Felix", "last_name": "Vanye", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:51:59", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 5, "fields": {"password": "pbkdf2_sha256$260000$9GpNFQsVosDtH2LNmIJ8qV$HR0tHGCSjee+JwU06dpwGmh/wRFhYI//JokATO0pWbE=", "last_login": null, "is_superuser": false, "username": "lola_vanmol", "first_name": "Lola", "last_name": "Van Mol", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:52:29", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 6, "fields": {"password": "pbkdf2_sha256$260000$ngJJ4HPC1J25R0a7LQnzOr$Wh76DRYn7xLPy7xmq+4DFz8fFfFirPF9PEEYBgfxQbs=", "last_login": null, "is_superuser": false, "username": "safwane_salhi", "first_name": "Safwane", "last_name": "Salhi", "email": "Salhi.safwane.b@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:53:13", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 7, "fields": {"password": "pbkdf2_sha256$260000$wmF8GO5iJvBKCwGaPtj6sy$Jqrq/cJDGLcwVQe15HOXvfWCqWnN/qP2aOLlvNyD/YE=", "last_login": null, "is_superuser": false, "username": "romain_scokart", "first_name": "Romain", "last_name": "Scokart", "email": "rscokart@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:53:39", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 8, "fields": {"password": "pbkdf2_sha256$260000$MfuBWGlOD1YM4WFOr5vGYe$C9BR5JLTdeF5YCXY/3rC6elNzDw8hIxBzV2/kCGbsRc=", "last_login": null, "is_superuser": false, "username": "sebastian_raschke", "first_name": "Sebastian", "last_name": "Raschke", "email": "sebastianr1401@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:53:59", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 9, "fields": {"password": "pbkdf2_sha256$260000$PbY54jYQXwkFNxHZakesNj$q44yCuMz5T0jcy3N+MzU+l7XQgV87S54TpPx0KlraJI=", "last_login": null, "is_superuser": false, "username": "roswitha_raschke", "first_name": "Raschke", "last_name": "Roswitha", "email": "roswithar7@hotmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:54:18", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 10, "fields": {"password": "pbkdf2_sha256$260000$ML4IbLu6pGElbgyaNJuNOd$UME4WOkpLaA4DKbJO58FKWMEofg2FFnU2hxsoAx2Kvw=", "last_login": null, "is_superuser": false, "username": "lucas_pesesse", "first_name": "Lucas", "last_name": "Pesesse", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:54:32", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$260000$gVMnCEruOB11nwnJKxPUPJ$HaI9zL8jSaLUP7UBp2M6qivNn8FDamu0GJnHV90/vjc=", "last_login": null, "is_superuser": false, "username": "pauline_lefevre", "first_name": "Pauline", "last_name": "Lefevre", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:54:47", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$260000$lbbyHUcdzkVJpohnciw5Fn$aEB4uORHSaFtNdjPtodxqf+rtH5sZxFSLKEBLM3xLxY=", "last_login": null, "is_superuser": false, "username": "martin_jacquet", "first_name": "Martin", "last_name": "Jacquet", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:55:03", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 13, "fields": {"password": "pbkdf2_sha256$260000$9fuHufdHZQOInAoKCnO7NV$MsmkmexeiDoYh7p+askl8C7iKyzLea0HQ9JE+U7o2z8=", "last_login": null, "is_superuser": false, "username": "noelia_grandamartinez", "first_name": "Noelia", "last_name": "Granda Martinez", "email": "grandamartineznoelia@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:55:17", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 14, "fields": {"password": "pbkdf2_sha256$260000$xGkYbKwpF8MPQ4gmRUNQ3f$NhAC9Wi12E0LkzdAbkhZSqKiM+ygteNOg7aZ6dsxXjQ=", "last_login": null, "is_superuser": false, "username": "marine_geirnart", "first_name": "Marine", "last_name": "Geirnart", "email": "marinegeirnaert7@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:55:34", "groups": [], "user_permissions": []}}, {"model": "sessions.session", "pk": "23paed2lm4tjf7nqq1fvqjxmu0sr2t11", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-04T17:54:02.740"}}, {"model": "sessions.session", "pk": "2addouibgkwkf51yq4ock7eaku5r30lx", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1liBll:chJxtG4LUz61hin8Mi1DfPAKN5NM1QnA-VwcgNP_XGc", "expire_date": "2021-05-30T08:05:01.449"}}, {"model": "sessions.session", "pk": "6op83nravuhc2jzigo96af35xvop83kb", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-08T18:44:23.494"}}, {"model": "sessions.session", "pk": "6t07699f0drrljsc8ryi13bvnxcqmi4t", "fields": {"session_data": "MjNhYjJiZjQwYjVmM2IyYjU4ODgwYjg4MThhM2QxOTE1Y2MxZjQ3YTp7fQ==", "expire_date": "2019-04-07T14:39:21.947"}}, {"model": "sessions.session", "pk": "82mu8wir4cr41xqdvmtwq6r8l2j4iorp", "fields": {"session_data": "YzFkNzExYzExYTBiOTU0YzExZDZjYmVhZjQxMGMyMmI5ZDY5YTIzMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoiMSIsInRlbXBsYXRlIjowLCJzaWRlYmFyIjozLCJjbHViaWQiOm51bGx9", "expire_date": "2019-04-08T07:46:29.604"}}, {"model": "sessions.session", "pk": "ayk18p51v90021i0pd1ip2tgllds0cks", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-16T14:40:10.608"}}, {"model": "sessions.session", "pk": "bij6mikfracjnh93p9cko574fd25gh5p", "fields": {"session_data": "NTc1MTA0NTg0MTJlYTg2OTFmZjM4OTE5NTlhMjZiZGYyZmJkOTAyYjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-07-16T16:44:15.299"}}, {"model": "sessions.session", "pk": "civtk0g6oeg5cn4ilr8ps5th8ju8yfgu", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-07T07:33:03.984"}}, {"model": "sessions.session", "pk": "dh8b9238kvc8o2ite70psu7ipmts6nrx", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-05T14:32:59.868"}}, {"model": "sessions.session", "pk": "fswheipsozsl377f4aiozjf6zqhj18sp", "fields": {"session_data": "MjNhYjJiZjQwYjVmM2IyYjU4ODgwYjg4MThhM2QxOTE1Y2MxZjQ3YTp7fQ==", "expire_date": "2019-04-07T14:38:49.818"}}, {"model": "sessions.session", "pk": "j0pum843f5301s0p8lc22wdiln94nuu9", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-24T16:48:54.109"}}, {"model": "sessions.session", "pk": "ja2rwvwyoblryemmt8nehgdpuo4ysphx", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1lhCBn:Lvj-vjeOGAjm0OrJFZS3HP_pMf08OQUd5HNikC1u3MA", "expire_date": "2021-05-27T14:19:47.495"}}, {"model": "sessions.session", "pk": "jwl4q1rodgkywh9cky07l02lcie2fvfr", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-06T15:10:46.298"}}, {"model": "sessions.session", "pk": "kouvkyowlwjngjz5i7twuud1s50f6mv7", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-19T07:35:52.293"}}, {"model": "sessions.session", "pk": "kr02sxsqff3noe58cm9iw7ys7mwwr498", "fields": {"session_data": "NjgwMmNkODRkZjc3MWIwOGUzNmZhZmMwNjA0N2U5NzBiZDY1ZDg4MTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwidGVtcGxhdGUiOjAsInNpZGViYXIiOjMsImNsdWJpZCI6bnVsbH0=", "expire_date": "2019-04-07T17:27:03.695"}}, {"model": "sessions.session", "pk": "llcf8k7qkv9qn0syin0344evxfs3xtpo", "fields": {"session_data": ".eJxVjMEOwiAQRP-FsyGwXUvx6N1vIAu7SNXQpLQn47_bJj1oMqd5b-atAq1LCWuTOYysLsqq028XKT2l7oAfVO-TTlNd5jHqXdEHbfo2sbyuh_t3UKiVbR3BmtRHQCD2g2F0lChj9uzP2bguWzKCvQV0nRMcxJKHLd6AIUxOfb7fEjdi:1liFBj:KREIK8GY_B3mkWW6f6K81Ha8xNhBa114C4av6Aa1KEw", "expire_date": "2021-05-30T11:44:03.487"}}, {"model": "sessions.session", "pk": "qjhbaubem5k812l44vr5xcr1nsdf351i", "fields": {"session_data": "M2NkNDYyOTJhMDRkMzY3YWZmYzQyMGMwMzE2NDA5OTU0YTZhNzIxOTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoiMSIsInRlbXBsYXRlIjowLCJzaWRlYmFyIjo0LCJjbHViaWQiOm51bGx9", "expire_date": "2019-04-10T08:30:38.010"}}, {"model": "sessions.session", "pk": "qqg7cnsbtie0ts9xjl5xto005mmqxu7h", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-29T19:03:34.966"}}, {"model": "sessions.session", "pk": "t617fv72solfdrt7svjdt7m6o9i809h9", "fields": {"session_data": "ZDRhNmU4NGVlMWNmMmIzMzY3YmVlYjZkNTEyYThmMjBhOTI3YTliNzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsLCJpc19zaWRlYmFyX21pbmlmaWVkIjp0cnVlfQ==", "expire_date": "2019-05-27T15:26:56.991"}}, {"model": "sessions.session", "pk": "u21qz3oehhjpz9wrvopabrtfu11eugrj", "fields": {"session_data": "NTZhMDEzZTFhNzg4ZjUzOWJjNTA3MThlMGQxMjQ5ZmUzOTIzN2I4NDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-28T16:50:11.403"}}, {"model": "sessions.session", "pk": "u2vzobd0c56za64xvtz6uhrr7mytln39", "fields": {"session_data": "NDRjYzNlYmZmMDc2YWMxNDUzYTUwMmE1NmQ1MzJmMWJlZTgyM2ZjNjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6MywiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-09T19:51:33.058"}}, {"model": "sessions.session", "pk": "wpr1lztsf4ipc3jh4adv8tvm2bkwli04", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-04T20:12:35.361"}}, {"model": "sessions.session", "pk": "xmubh0d5qev35w6p2dyskqhxmgfo8ndf", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-04T20:11:26.805"}}, {"model": "sessions.session", "pk": "xncx1jdqwhwz2bt8fpvk6hu7nyqhk0s5", "fields": {"session_data": "NTZhMDEzZTFhNzg4ZjUzOWJjNTA3MThlMGQxMjQ5ZmUzOTIzN2I4NDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-22T18:17:21.821"}}, {"model": "sessions.session", "pk": "ytgz1nrw4ffcbyts805hk8skdyfzh76z", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1lml2r:l038vb5O8TCuQOgnWwVm097viDD3RTrecpNPlfkh7mg", "expire_date": "2021-06-11T22:33:33.749"}}, {"model": "people.gymnast", "pk": 1, "fields": {"content": "Arrête toi dès qu'une douleur au mollet se fait sentir.", "birthdate": "2003-01-28", "gender": 1, "niss": "03012824878", "address": "Rue De Coeurcq, 79", "postal": "1480", "city": "Tubize", "phone": null, "gsm": "0472495888", "federation_id": "66196", "gsm_main_responsible": "0470937641", "email_main_responsible": null, "gsm_second_responsible": "0471663470", "email_second_responsible": "noa-noelia@hotmail.com", "orientation": 0, "user": 13, "trainer": 1, "club": 1, "picture": "noelia.jpg", "year_of_practice": 8, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 2, "fields": {"content": "", "birthdate": "2007-07-19", "gender": 0, "niss": null, "address": "Rue du radoux, 98", "postal": "1430", "city": "Bierghes", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0494277453", "email_main_responsible": null, "gsm_second_responsible": "0494277583", "email_second_responsible": "san.deleu@gmail.com", "orientation": null, "user": 10, "trainer": 2, "club": 1, "picture": "Lucasljpg", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 3, "fields": {"content": "", "birthdate": "2001-12-30", "gender": 0, "niss": null, "address": "Chemin de Wisbech, 15", "postal": "1430", "city": "Quenast", "phone": null, "gsm": "0488195678", "federation_id": null, "gsm_main_responsible": "0485897973", "email_main_responsible": null, "gsm_second_responsible": "0486307558", "email_second_responsible": "val.mertens@gmail.com", "orientation": null, "user": 7, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 4, "fields": {"content": "", "birthdate": "1996-05-07", "gender": 1, "niss": null, "address": null, "postal": null, "city": null, "phone": null, "gsm": "0470442024", "federation_id": null, "gsm_main_responsible": null, "email_main_responsible": null, "gsm_second_responsible": null, "email_second_responsible": "monika_raschke@yahoo.de", "orientation": null, "user": 9, "trainer": 1, "club": 2, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 5, "fields": {"content": "", "birthdate": "2001-05-30", "gender": 0, "niss": null, "address": "Rue De La Briqueterie, 5", "postal": "1480", "city": "Tubize", "phone": null, "gsm": "0485183267", "federation_id": null, "gsm_main_responsible": "0477298629", "email_main_responsible": "salhi.yahya@gmail.com", "gsm_second_responsible": "0485427606", "email_second_responsible": "sabina.buonvivere@isbbt.be", "orientation": 1, "user": 6, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 9, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 6, "fields": {"content": "", "birthdate": "2007-08-29", "gender": 1, "niss": null, "address": "Rue Grand-mère, 6", "postal": "1421", "city": "Ophain", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0476680449", "email_main_responsible": "amiral1969@hotmail.com", "gsm_second_responsible": "0475659922", "email_second_responsible": "eloirmuriel@gmail.com", "orientation": null, "user": 5, "trainer": 2, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 7, "fields": {"content": "", "birthdate": "2007-05-21", "gender": 0, "niss": null, "address": "Chaussée d'Ophain, 121", "postal": "1420", "city": "Braine-l'Alleud", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0478675942", "email_main_responsible": null, "gsm_second_responsible": "0476786285", "email_second_responsible": "laetitiavanye@gmail.com", "orientation": null, "user": 4, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 8, "fields": {"content": "", "birthdate": "2010-09-18", "gender": 1, "niss": null, "address": "Rue des archers, 50a", "postal": "7090", "city": "Braine-le-comte", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0472873019", "email_main_responsible": null, "gsm_second_responsible": "0473608197", "email_second_responsible": "vdcarine@hotmail.com", "orientation": null, "user": 11, "trainer": 2, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 9, "fields": {"content": "", "birthdate": "2002-11-12", "gender": 1, "niss": null, "address": "Clos du Val de l'Écossais, 27", "postal": "1420", "city": "Braine-l'Alleud", "phone": null, "gsm": "0485696624", "federation_id": null, "gsm_main_responsible": "0485814619", "email_main_responsible": "Daniel@isea.tc", "gsm_second_responsible": "0478523543", "email_second_responsible": "evelyne.gallet@hotmail.com", "orientation": 1, "user": 14, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 11, "fields": {"content": "", "birthdate": "1999-01-14", "gender": 0, "niss": null, "address": null, "postal": null, "city": null, "phone": null, "gsm": "0476020907", "federation_id": null, "gsm_main_responsible": null, "email_main_responsible": null, "gsm_second_responsible": null, "email_second_responsible": "monika_raschke@yahoo.de", "orientation": 1, "user": 8, "trainer": 1, "club": 2, "picture": "", "year_of_practice": 14, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 12, "fields": {"content": "", "birthdate": "2006-07-18", "gender": 0, "niss": null, "address": "Avenue du taillis, 20", "postal": "1470", "city": "Genappe", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0496121079", "email_main_responsible": null, "gsm_second_responsible": "0473119542", "email_second_responsible": "marie-noelle.rainchon@bnpparibasfortis.com", "orientation": 0, "user": 12, "trainer": 2, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-13T15:19:28.234"}}, {"model": "people.accident", "pk": 1, "fields": {"content": "Test d'interface !", "gymnast": 1, "educative": 270, "date": "2019-01-01"}}, {"model": "people.accident", "pk": 2, "fields": {"content": "test de l'interface graphique.", "gymnast": 1, "educative": 181, "date": "2019-04-01"}}, {"model": "people.accident", "pk": 3, "fields": {"content": "test d'ajout d'accident (29-04)", "gymnast": 1, "educative": 116, "date": "2019-05-04"}}, {"model": "people.accident", "pk": 4, "fields": {"content": "A oublié mon anniversaire (test de 29 avril)", "gymnast": 1, "educative": 2, "date": "2019-02-05"}}, {"model": "people.accident", "pk": 5, "fields": {"content": "Test sons forcing du format de date.", "gymnast": 1, "educative": 66, "date": "2019-03-11"}}, {"model": "people.accident", "pk": 6, "fields": {"content": "Description à venir", "gymnast": 7, "educative": 46, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 1, "fields": {"gymnast": 1, "educative": 335, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 2, "fields": {"gymnast": 1, "educative": 218, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 3, "fields": {"gymnast": 1, "educative": 328, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 4, "fields": {"gymnast": 1, "educative": 262, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 5, "fields": {"gymnast": 1, "educative": 2, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 6, "fields": {"gymnast": 1, "educative": 183, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 7, "fields": {"gymnast": 1, "educative": 28, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 8, "fields": {"gymnast": 1, "educative": 33, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 9, "fields": {"gymnast": 1, "educative": 184, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 10, "fields": {"gymnast": 1, "educative": 256, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 11, "fields": {"gymnast": 1, "educative": 366, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 12, "fields": {"gymnast": 1, "educative": 459, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 13, "fields": {"gymnast": 1, "educative": 461, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 14, "fields": {"gymnast": 1, "educative": 462, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 15, "fields": {"gymnast": 1, "educative": 185, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 16, "fields": {"gymnast": 1, "educative": 318, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 17, "fields": {"gymnast": 1, "educative": 457, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 18, "fields": {"gymnast": 1, "educative": 255, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 19, "fields": {"gymnast": 1, "educative": 14, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 20, "fields": {"gymnast": 1, "educative": 460, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 21, "fields": {"gymnast": 1, "educative": 182, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 22, "fields": {"gymnast": 1, "educative": 5, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 23, "fields": {"gymnast": 1, "educative": 10, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 24, "fields": {"gymnast": 1, "educative": 424, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 25, "fields": {"gymnast": 1, "educative": 387, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 26, "fields": {"gymnast": 1, "educative": 200, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 27, "fields": {"gymnast": 1, "educative": 323, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 28, "fields": {"gymnast": 1, "educative": 320, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 29, "fields": {"gymnast": 1, "educative": 321, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 30, "fields": {"gymnast": 1, "educative": 322, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 31, "fields": {"gymnast": 1, "educative": 4, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 32, "fields": {"gymnast": 1, "educative": 1, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 33, "fields": {"gymnast": 1, "educative": 319, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 34, "fields": {"gymnast": 1, "educative": 456, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 35, "fields": {"gymnast": 1, "educative": 454, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 36, "fields": {"gymnast": 1, "educative": 29, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 37, "fields": {"gymnast": 1, "educative": 391, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 38, "fields": {"gymnast": 1, "educative": 181, "date": "2019-03-24"}}, {"model": "people.candorelation", "pk": 39, "fields": {"gymnast": 1, "educative": 186, "date": "2019-03-24"}}, {"model": "people.candorelation", "pk": 40, "fields": {"gymnast": 5, "educative": 2, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 41, "fields": {"gymnast": 5, "educative": 28, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 42, "fields": {"gymnast": 5, "educative": 74, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 43, "fields": {"gymnast": 5, "educative": 97, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 44, "fields": {"gymnast": 5, "educative": 96, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 45, "fields": {"gymnast": 5, "educative": 136, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 46, "fields": {"gymnast": 5, "educative": 243, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 47, "fields": {"gymnast": 5, "educative": 244, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 48, "fields": {"gymnast": 5, "educative": 185, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 49, "fields": {"gymnast": 5, "educative": 318, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 50, "fields": {"gymnast": 5, "educative": 256, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 51, "fields": {"gymnast": 5, "educative": 4, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 52, "fields": {"gymnast": 5, "educative": 5, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 53, "fields": {"gymnast": 5, "educative": 1, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 54, "fields": {"gymnast": 5, "educative": 29, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 55, "fields": {"gymnast": 5, "educative": 10, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 56, "fields": {"gymnast": 5, "educative": 366, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 57, "fields": {"gymnast": 5, "educative": 255, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 58, "fields": {"gymnast": 5, "educative": 3, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 59, "fields": {"gymnast": 5, "educative": 264, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 60, "fields": {"gymnast": 5, "educative": 257, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 61, "fields": {"gymnast": 5, "educative": 269, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 62, "fields": {"gymnast": 5, "educative": 267, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 63, "fields": {"gymnast": 5, "educative": 68, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 64, "fields": {"gymnast": 5, "educative": 265, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 65, "fields": {"gymnast": 5, "educative": 202, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 66, "fields": {"gymnast": 5, "educative": 331, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 67, "fields": {"gymnast": 5, "educative": 330, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 68, "fields": {"gymnast": 5, "educative": 332, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 69, "fields": {"gymnast": 5, "educative": 337, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 70, "fields": {"gymnast": 5, "educative": 336, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 71, "fields": {"gymnast": 6, "educative": 2, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 72, "fields": {"gymnast": 9, "educative": 2, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 73, "fields": {"gymnast": 6, "educative": 183, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 74, "fields": {"gymnast": 6, "educative": 459, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 75, "fields": {"gymnast": 6, "educative": 366, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 76, "fields": {"gymnast": 6, "educative": 461, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 77, "fields": {"gymnast": 6, "educative": 462, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 78, "fields": {"gymnast": 6, "educative": 184, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 79, "fields": {"gymnast": 6, "educative": 185, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 80, "fields": {"gymnast": 6, "educative": 457, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 81, "fields": {"gymnast": 6, "educative": 256, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 82, "fields": {"gymnast": 6, "educative": 28, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 83, "fields": {"gymnast": 6, "educative": 10, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 84, "fields": {"gymnast": 6, "educative": 4, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 85, "fields": {"gymnast": 6, "educative": 3, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 86, "fields": {"gymnast": 6, "educative": 5, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 87, "fields": {"gymnast": 6, "educative": 14, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 88, "fields": {"gymnast": 6, "educative": 1, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 89, "fields": {"gymnast": 6, "educative": 29, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 90, "fields": {"gymnast": 6, "educative": 456, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 91, "fields": {"gymnast": 6, "educative": 454, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 92, "fields": {"gymnast": 6, "educative": 255, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 93, "fields": {"gymnast": 6, "educative": 182, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 94, "fields": {"gymnast": 6, "educative": 319, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 95, "fields": {"gymnast": 6, "educative": 323, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 96, "fields": {"gymnast": 8, "educative": 179, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 97, "fields": {"gymnast": 8, "educative": 181, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 98, "fields": {"gymnast": 8, "educative": 453, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 99, "fields": {"gymnast": 8, "educative": 178, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 100, "fields": {"gymnast": 8, "educative": 278, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 101, "fields": {"gymnast": 6, "educative": 382, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 102, "fields": {"gymnast": 6, "educative": 210, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 103, "fields": {"gymnast": 9, "educative": 192, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 104, "fields": {"gymnast": 9, "educative": 34, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 105, "fields": {"gymnast": 9, "educative": 207, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 106, "fields": {"gymnast": 9, "educative": 100, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 107, "fields": {"gymnast": 12, "educative": 37, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 108, "fields": {"gymnast": 6, "educative": 102, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 109, "fields": {"gymnast": 6, "educative": 39, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 110, "fields": {"gymnast": 9, "educative": 328, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 111, "fields": {"gymnast": 9, "educative": 329, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 112, "fields": {"gymnast": 9, "educative": 189, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 113, "fields": {"gymnast": 12, "educative": 328, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 114, "fields": {"gymnast": 12, "educative": 329, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 115, "fields": {"gymnast": 12, "educative": 189, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 116, "fields": {"gymnast": 9, "educative": 188, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 117, "fields": {"gymnast": 9, "educative": 383, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 118, "fields": {"gymnast": 12, "educative": 380, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 119, "fields": {"gymnast": 12, "educative": 211, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 120, "fields": {"gymnast": 8, "educative": 456, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 121, "fields": {"gymnast": 8, "educative": 454, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 122, "fields": {"gymnast": 8, "educative": 187, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 123, "fields": {"gymnast": 8, "educative": 199, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 124, "fields": {"gymnast": 6, "educative": 9, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 125, "fields": {"gymnast": 9, "educative": 22, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 126, "fields": {"gymnast": 9, "educative": 217, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 127, "fields": {"gymnast": 9, "educative": 104, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 128, "fields": {"gymnast": 9, "educative": 343, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 129, "fields": {"gymnast": 12, "educative": 203, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 130, "fields": {"gymnast": 12, "educative": 7, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 131, "fields": {"gymnast": 12, "educative": 218, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 132, "fields": {"gymnast": 5, "educative": 459, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 133, "fields": {"gymnast": 5, "educative": 461, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 134, "fields": {"gymnast": 5, "educative": 462, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 135, "fields": {"gymnast": 5, "educative": 183, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 136, "fields": {"gymnast": 5, "educative": 184, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 137, "fields": {"gymnast": 5, "educative": 457, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 138, "fields": {"gymnast": 5, "educative": 460, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 139, "fields": {"gymnast": 5, "educative": 391, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 140, "fields": {"gymnast": 5, "educative": 454, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 141, "fields": {"gymnast": 5, "educative": 322, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 142, "fields": {"gymnast": 5, "educative": 266, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 143, "fields": {"gymnast": 5, "educative": 320, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 144, "fields": {"gymnast": 5, "educative": 200, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 145, "fields": {"gymnast": 5, "educative": 14, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 146, "fields": {"gymnast": 5, "educative": 424, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 147, "fields": {"gymnast": 5, "educative": 182, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 148, "fields": {"gymnast": 5, "educative": 323, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 149, "fields": {"gymnast": 5, "educative": 456, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 150, "fields": {"gymnast": 5, "educative": 181, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 151, "fields": {"gymnast": 5, "educative": 259, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 152, "fields": {"gymnast": 5, "educative": 392, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 153, "fields": {"gymnast": 5, "educative": 126, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 154, "fields": {"gymnast": 5, "educative": 180, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 155, "fields": {"gymnast": 5, "educative": 69, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 156, "fields": {"gymnast": 5, "educative": 15, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 157, "fields": {"gymnast": 5, "educative": 260, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 158, "fields": {"gymnast": 5, "educative": 11, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 159, "fields": {"gymnast": 5, "educative": 27, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 160, "fields": {"gymnast": 5, "educative": 26, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 161, "fields": {"gymnast": 5, "educative": 44, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 162, "fields": {"gymnast": 5, "educative": 48, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 163, "fields": {"gymnast": 5, "educative": 50, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 164, "fields": {"gymnast": 5, "educative": 154, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 165, "fields": {"gymnast": 5, "educative": 30, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 166, "fields": {"gymnast": 5, "educative": 57, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 167, "fields": {"gymnast": 5, "educative": 228, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 168, "fields": {"gymnast": 5, "educative": 51, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 169, "fields": {"gymnast": 5, "educative": 32, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 170, "fields": {"gymnast": 5, "educative": 61, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 171, "fields": {"gymnast": 5, "educative": 45, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 172, "fields": {"gymnast": 5, "educative": 158, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 173, "fields": {"gymnast": 5, "educative": 458, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 174, "fields": {"gymnast": 5, "educative": 82, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 175, "fields": {"gymnast": 5, "educative": 6, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 176, "fields": {"gymnast": 5, "educative": 298, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 177, "fields": {"gymnast": 5, "educative": 35, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 178, "fields": {"gymnast": 5, "educative": 71, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 179, "fields": {"gymnast": 5, "educative": 268, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 180, "fields": {"gymnast": 5, "educative": 9, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 181, "fields": {"gymnast": 5, "educative": 16, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 182, "fields": {"gymnast": 5, "educative": 364, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 183, "fields": {"gymnast": 4, "educative": 2, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 184, "fields": {"gymnast": 4, "educative": 185, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 185, "fields": {"gymnast": 4, "educative": 28, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 186, "fields": {"gymnast": 4, "educative": 457, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 187, "fields": {"gymnast": 4, "educative": 1, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 188, "fields": {"gymnast": 4, "educative": 4, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 189, "fields": {"gymnast": 4, "educative": 5, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 190, "fields": {"gymnast": 4, "educative": 29, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 191, "fields": {"gymnast": 4, "educative": 256, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 192, "fields": {"gymnast": 4, "educative": 323, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 193, "fields": {"gymnast": 4, "educative": 320, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 194, "fields": {"gymnast": 4, "educative": 321, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 195, "fields": {"gymnast": 4, "educative": 255, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 196, "fields": {"gymnast": 4, "educative": 257, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 197, "fields": {"gymnast": 4, "educative": 462, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 198, "fields": {"gymnast": 4, "educative": 461, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 199, "fields": {"gymnast": 4, "educative": 366, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 200, "fields": {"gymnast": 6, "educative": 22, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 201, "fields": {"gymnast": 6, "educative": 25, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 202, "fields": {"gymnast": 6, "educative": 23, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 203, "fields": {"gymnast": 6, "educative": 31, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 204, "fields": {"gymnast": 9, "educative": 183, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 205, "fields": {"gymnast": 9, "educative": 184, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 206, "fields": {"gymnast": 9, "educative": 185, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 207, "fields": {"gymnast": 9, "educative": 256, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 208, "fields": {"gymnast": 9, "educative": 28, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 209, "fields": {"gymnast": 9, "educative": 4, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 210, "fields": {"gymnast": 9, "educative": 10, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 211, "fields": {"gymnast": 9, "educative": 5, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 212, "fields": {"gymnast": 9, "educative": 318, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 213, "fields": {"gymnast": 9, "educative": 1, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 214, "fields": {"gymnast": 9, "educative": 255, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 215, "fields": {"gymnast": 9, "educative": 3, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 216, "fields": {"gymnast": 9, "educative": 14, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 217, "fields": {"gymnast": 9, "educative": 182, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 218, "fields": {"gymnast": 9, "educative": 257, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 219, "fields": {"gymnast": 9, "educative": 9, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 220, "fields": {"gymnast": 8, "educative": 2, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 221, "fields": {"gymnast": 8, "educative": 4, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 222, "fields": {"gymnast": 8, "educative": 256, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 223, "fields": {"gymnast": 8, "educative": 5, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 224, "fields": {"gymnast": 8, "educative": 182, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 225, "fields": {"gymnast": 8, "educative": 28, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 226, "fields": {"gymnast": 8, "educative": 1, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 227, "fields": {"gymnast": 9, "educative": 11, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 228, "fields": {"gymnast": 8, "educative": 255, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 229, "fields": {"gymnast": 8, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 230, "fields": {"gymnast": 8, "educative": 10, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 231, "fields": {"gymnast": 8, "educative": 257, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 232, "fields": {"gymnast": 6, "educative": 257, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 233, "fields": {"gymnast": 6, "educative": 259, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 234, "fields": {"gymnast": 1, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 235, "fields": {"gymnast": 11, "educative": 258, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 236, "fields": {"gymnast": 11, "educative": 2, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 237, "fields": {"gymnast": 11, "educative": 28, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 238, "fields": {"gymnast": 11, "educative": 1, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 239, "fields": {"gymnast": 11, "educative": 4, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 240, "fields": {"gymnast": 11, "educative": 5, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 241, "fields": {"gymnast": 11, "educative": 29, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 242, "fields": {"gymnast": 11, "educative": 259, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 243, "fields": {"gymnast": 11, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 244, "fields": {"gymnast": 11, "educative": 11, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 245, "fields": {"gymnast": 11, "educative": 9, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 246, "fields": {"gymnast": 11, "educative": 35, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 247, "fields": {"gymnast": 7, "educative": 28, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 248, "fields": {"gymnast": 7, "educative": 2, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 249, "fields": {"gymnast": 7, "educative": 185, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 250, "fields": {"gymnast": 7, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 251, "fields": {"gymnast": 7, "educative": 11, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 252, "fields": {"gymnast": 7, "educative": 9, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 253, "fields": {"gymnast": 7, "educative": 31, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 254, "fields": {"gymnast": 7, "educative": 256, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 255, "fields": {"gymnast": 6, "educative": 197, "date": "2019-05-22"}}, {"model": "people.candorelation", "pk": 256, "fields": {"gymnast": 6, "educative": 198, "date": "2019-05-22"}}, {"model": "people.candorelation", "pk": 257, "fields": {"gymnast": 5, "educative": 116, "date": "2019-05-23"}}, {"model": "people.candorelation", "pk": 258, "fields": {"gymnast": 5, "educative": 553, "date": "2019-05-23"}}, {"model": "people.candorelation", "pk": 259, "fields": {"gymnast": 4, "educative": 78, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 260, "fields": {"gymnast": 4, "educative": 268, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 261, "fields": {"gymnast": 4, "educative": 459, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 262, "fields": {"gymnast": 4, "educative": 318, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 263, "fields": {"gymnast": 4, "educative": 183, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 264, "fields": {"gymnast": 4, "educative": 184, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 265, "fields": {"gymnast": 11, "educative": 256, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 266, "fields": {"gymnast": 11, "educative": 366, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 267, "fields": {"gymnast": 11, "educative": 459, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 268, "fields": {"gymnast": 11, "educative": 461, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 269, "fields": {"gymnast": 11, "educative": 462, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 270, "fields": {"gymnast": 11, "educative": 185, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 271, "fields": {"gymnast": 11, "educative": 183, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 272, "fields": {"gymnast": 11, "educative": 184, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 273, "fields": {"gymnast": 11, "educative": 200, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 274, "fields": {"gymnast": 11, "educative": 255, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 275, "fields": {"gymnast": 11, "educative": 319, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 276, "fields": {"gymnast": 11, "educative": 14, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 277, "fields": {"gymnast": 11, "educative": 460, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 278, "fields": {"gymnast": 11, "educative": 182, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 279, "fields": {"gymnast": 11, "educative": 323, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 280, "fields": {"gymnast": 11, "educative": 320, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 281, "fields": {"gymnast": 11, "educative": 321, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 282, "fields": {"gymnast": 11, "educative": 322, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 283, "fields": {"gymnast": 11, "educative": 456, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 284, "fields": {"gymnast": 11, "educative": 454, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 285, "fields": {"gymnast": 11, "educative": 10, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 286, "fields": {"gymnast": 11, "educative": 391, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 287, "fields": {"gymnast": 11, "educative": 180, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 288, "fields": {"gymnast": 11, "educative": 178, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 289, "fields": {"gymnast": 11, "educative": 181, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 290, "fields": {"gymnast": 11, "educative": 388, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 291, "fields": {"gymnast": 11, "educative": 187, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 292, "fields": {"gymnast": 11, "educative": 179, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 293, "fields": {"gymnast": 11, "educative": 257, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 294, "fields": {"gymnast": 11, "educative": 267, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 295, "fields": {"gymnast": 11, "educative": 269, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 296, "fields": {"gymnast": 11, "educative": 68, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 297, "fields": {"gymnast": 11, "educative": 69, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 298, "fields": {"gymnast": 11, "educative": 365, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 299, "fields": {"gymnast": 11, "educative": 264, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 300, "fields": {"gymnast": 11, "educative": 266, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 301, "fields": {"gymnast": 11, "educative": 186, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 302, "fields": {"gymnast": 11, "educative": 126, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 303, "fields": {"gymnast": 11, "educative": 277, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 304, "fields": {"gymnast": 11, "educative": 357, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 305, "fields": {"gymnast": 11, "educative": 356, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 306, "fields": {"gymnast": 11, "educative": 393, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 307, "fields": {"gymnast": 11, "educative": 394, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 308, "fields": {"gymnast": 11, "educative": 395, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 309, "fields": {"gymnast": 11, "educative": 392, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 310, "fields": {"gymnast": 11, "educative": 396, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 311, "fields": {"gymnast": 11, "educative": 464, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 312, "fields": {"gymnast": 11, "educative": 245, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 313, "fields": {"gymnast": 11, "educative": 208, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 314, "fields": {"gymnast": 11, "educative": 201, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 315, "fields": {"gymnast": 11, "educative": 82, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 316, "fields": {"gymnast": 11, "educative": 260, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 317, "fields": {"gymnast": 11, "educative": 15, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 318, "fields": {"gymnast": 11, "educative": 268, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 319, "fields": {"gymnast": 11, "educative": 296, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 320, "fields": {"gymnast": 11, "educative": 298, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 321, "fields": {"gymnast": 11, "educative": 263, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 322, "fields": {"gymnast": 11, "educative": 265, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 323, "fields": {"gymnast": 11, "educative": 279, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 324, "fields": {"gymnast": 11, "educative": 287, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 325, "fields": {"gymnast": 11, "educative": 458, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 326, "fields": {"gymnast": 11, "educative": 278, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 327, "fields": {"gymnast": 11, "educative": 6, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 328, "fields": {"gymnast": 11, "educative": 202, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 329, "fields": {"gymnast": 11, "educative": 371, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 330, "fields": {"gymnast": 11, "educative": 281, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 331, "fields": {"gymnast": 11, "educative": 284, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 332, "fields": {"gymnast": 11, "educative": 214, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 333, "fields": {"gymnast": 11, "educative": 404, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 334, "fields": {"gymnast": 11, "educative": 401, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 335, "fields": {"gymnast": 11, "educative": 402, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 336, "fields": {"gymnast": 11, "educative": 85, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 337, "fields": {"gymnast": 11, "educative": 423, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 338, "fields": {"gymnast": 11, "educative": 189, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 339, "fields": {"gymnast": 11, "educative": 380, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 340, "fields": {"gymnast": 11, "educative": 329, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 341, "fields": {"gymnast": 11, "educative": 328, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 342, "fields": {"gymnast": 11, "educative": 101, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 343, "fields": {"gymnast": 11, "educative": 96, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 344, "fields": {"gymnast": 11, "educative": 131, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 346, "fields": {"gymnast": 1, "educative": 257, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 347, "fields": {"gymnast": 11, "educative": 468, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 348, "fields": {"gymnast": 11, "educative": 209, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 349, "fields": {"gymnast": 11, "educative": 84, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 350, "fields": {"gymnast": 11, "educative": 100, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 351, "fields": {"gymnast": 11, "educative": 102, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 352, "fields": {"gymnast": 11, "educative": 332, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 353, "fields": {"gymnast": 11, "educative": 20, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 354, "fields": {"gymnast": 11, "educative": 37, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 355, "fields": {"gymnast": 11, "educative": 7, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 356, "fields": {"gymnast": 11, "educative": 218, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 357, "fields": {"gymnast": 11, "educative": 83, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 358, "fields": {"gymnast": 11, "educative": 31, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 359, "fields": {"gymnast": 11, "educative": 25, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 360, "fields": {"gymnast": 11, "educative": 22, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 361, "fields": {"gymnast": 11, "educative": 30, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 362, "fields": {"gymnast": 11, "educative": 228, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 363, "fields": {"gymnast": 11, "educative": 21, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 364, "fields": {"gymnast": 11, "educative": 19, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 365, "fields": {"gymnast": 11, "educative": 26, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 366, "fields": {"gymnast": 11, "educative": 27, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 367, "fields": {"gymnast": 11, "educative": 23, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 368, "fields": {"gymnast": 11, "educative": 32, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 369, "fields": {"gymnast": 11, "educative": 61, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 370, "fields": {"gymnast": 11, "educative": 169, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 371, "fields": {"gymnast": 11, "educative": 190, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 372, "fields": {"gymnast": 11, "educative": 24, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 373, "fields": {"gymnast": 11, "educative": 170, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 374, "fields": {"gymnast": 11, "educative": 58, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 375, "fields": {"gymnast": 11, "educative": 33, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 376, "fields": {"gymnast": 2, "educative": 95, "date": "2019-07-02"}}, {"model": "people.gymnasthasroutine", "pk": 1, "fields": {"gymnast": 1, "routine": 495, "routine_type": 1, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 2, "fields": {"gymnast": 1, "routine": 495, "routine_type": 2, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 3, "fields": {"gymnast": 1, "routine": 495, "routine_type": 3, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 4, "fields": {"gymnast": 4, "routine": 515, "routine_type": 1, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 5, "fields": {"gymnast": 4, "routine": 516, "routine_type": 2, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 6, "fields": {"gymnast": 5, "routine": 508, "routine_type": 1, "datebegin": "2018-12-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 7, "fields": {"gymnast": 5, "routine": 509, "routine_type": 2, "datebegin": "2018-12-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 8, "fields": {"gymnast": 4, "routine": 516, "routine_type": 3, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 11, "fields": {"gymnast": 11, "routine": 559, "routine_type": 1, "datebegin": "2019-07-02", "dateend": null}}, {"model": "location.country", "pk": 1, "fields": {"nameus": "Belgium", "namefr": "Belgique", "nationality": "Belge", "iso2": "BE", "iso3": "BEL", "isonum": 56}}, {"model": "location.country", "pk": 2, "fields": {"nameus": "Portugal", "namefr": "Portugal", "nationality": "Portugese", "iso2": "PT", "iso3": "PRT", "isonum": 620}}, {"model": "location.country", "pk": 3, "fields": {"nameus": "Kosovo", "namefr": "Kosovo", "nationality": "Kosovar", "iso2": "XK", "iso3": "XKX", "isonum": 0}}, {"model": "location.country", "pk": 4, "fields": {"nameus": "Afghanistan", "namefr": "Afghanistan", "nationality": "Afghane", "iso2": "AF", "iso3": "AFG", "isonum": 4}}, {"model": "location.country", "pk": 5, "fields": {"nameus": "Albania", "namefr": "Albanie", "nationality": "Albanaise", "iso2": "AL", "iso3": "ALB", "isonum": 8}}, {"model": "location.country", "pk": 6, "fields": {"nameus": "Antarctica", "namefr": "Antartique", "nationality": "Antartique", "iso2": "AQ", "iso3": "ATA", "isonum": 10}}, {"model": "location.country", "pk": 7, "fields": {"nameus": "Algeria", "namefr": "Algérie", "nationality": "Algérienne", "iso2": "DZ", "iso3": "DZA", "isonum": 12}}, {"model": "location.country", "pk": 8, "fields": {"nameus": "American Samoa", "namefr": "Samoa Américaines", "nationality": "Samoane", "iso2": "AS", "iso3": "ASM", "isonum": 16}}, {"model": "location.country", "pk": 9, "fields": {"nameus": "Andorra", "namefr": "Andorre", "nationality": "Andorrane", "iso2": "AD", "iso3": "AND", "isonum": 20}}, {"model": "location.country", "pk": 10, "fields": {"nameus": "Angola", "namefr": "Angola", "nationality": "Angolaise", "iso2": "AO", "iso3": "AGO", "isonum": 24}}, {"model": "location.country", "pk": 11, "fields": {"nameus": "Antigua and Barbuda", "namefr": "Antigua-et-Barbuda", "nationality": "Antiguayenne", "iso2": "AG", "iso3": "ATG", "isonum": 28}}, {"model": "location.country", "pk": 12, "fields": {"nameus": "Azerbaijan", "namefr": "Azerbaïdjan", "nationality": "Azérie", "iso2": "AZ", "iso3": "AZE", "isonum": 31}}, {"model": "location.country", "pk": 13, "fields": {"nameus": "Argentina", "namefr": "Argentine", "nationality": "Argentine", "iso2": "AR", "iso3": "ARG", "isonum": 32}}, {"model": "location.country", "pk": 14, "fields": {"nameus": "Australia", "namefr": "Australie", "nationality": "Australlienne", "iso2": "AU", "iso3": "AUS", "isonum": 36}}, {"model": "location.country", "pk": 15, "fields": {"nameus": "Austria", "namefr": "Autriche", "nationality": "Autrichienne", "iso2": "AT", "iso3": "AUT", "isonum": 40}}, {"model": "location.country", "pk": 16, "fields": {"nameus": "Bahamas", "namefr": "Bahamas", "nationality": "Bahaméen", "iso2": "BS", "iso3": "BHS", "isonum": 44}}, {"model": "location.country", "pk": 17, "fields": {"nameus": "Bahrain", "namefr": "Bahreïn", "nationality": "Bahreïnienne", "iso2": "BH", "iso3": "BHR", "isonum": 48}}, {"model": "location.country", "pk": 18, "fields": {"nameus": "Bangladesh", "namefr": "Bangladesh", "nationality": "Bangladeshie", "iso2": "BD", "iso3": "BGD", "isonum": 50}}, {"model": "location.country", "pk": 19, "fields": {"nameus": "Armenia", "namefr": "Arménie", "nationality": "Arménienne", "iso2": "AM", "iso3": "ARM", "isonum": 51}}, {"model": "location.country", "pk": 20, "fields": {"nameus": "Barbados", "namefr": "Barbade", "nationality": "Barbadien", "iso2": "BB", "iso3": "BRB", "isonum": 52}}, {"model": "location.country", "pk": 21, "fields": {"nameus": "Bermuda", "namefr": "Bermudes", "nationality": "Bermudienne", "iso2": "BM", "iso3": "BMU", "isonum": 60}}, {"model": "location.country", "pk": 22, "fields": {"nameus": "Bhutan", "namefr": "Bhoutan", "nationality": "Bhoutanaise", "iso2": "BT", "iso3": "BTN", "isonum": 64}}, {"model": "location.country", "pk": 23, "fields": {"nameus": "Bolivia", "namefr": "Bolivie", "nationality": "Bolivienne", "iso2": "BO", "iso3": "BOL", "isonum": 68}}, {"model": "location.country", "pk": 24, "fields": {"nameus": "Bosnia and Herzegovina", "namefr": "Bosnie-Herzégovine", "nationality": "Bosnienne", "iso2": "BA", "iso3": "BIH", "isonum": 70}}, {"model": "location.country", "pk": 25, "fields": {"nameus": "Botswana", "namefr": "Botswana", "nationality": "Botswanaise", "iso2": "BW", "iso3": "BWA", "isonum": 72}}, {"model": "location.country", "pk": 26, "fields": {"nameus": "Bouvet Island", "namefr": "Ile Bouvet", "nationality": "Norvégienne", "iso2": "BV", "iso3": "BVT", "isonum": 74}}, {"model": "location.country", "pk": 27, "fields": {"nameus": "Brazil", "namefr": "Brésil", "nationality": "Brésilienne", "iso2": "BR", "iso3": "BRA", "isonum": 76}}, {"model": "location.country", "pk": 28, "fields": {"nameus": "Belize", "namefr": "Belize", "nationality": "Bélizienne", "iso2": "BZ", "iso3": "BLZ", "isonum": 84}}, {"model": "location.country", "pk": 29, "fields": {"nameus": "British Indian Ocean Territory", "namefr": "Territoire Britannique de l'Océan Indien", "nationality": "Anglaise", "iso2": "IO", "iso3": "IOT", "isonum": 86}}, {"model": "location.country", "pk": 30, "fields": {"nameus": "Solomon Islands", "namefr": "Iles Salomon", "nationality": "Salomonienne", "iso2": "SB", "iso3": "SLB", "isonum": 90}}, {"model": "location.country", "pk": 31, "fields": {"nameus": "British Virgin Islands", "namefr": "Iles Vierges Britannique", "nationality": "Anglaise", "iso2": "VG", "iso3": "VGB", "isonum": 92}}, {"model": "location.country", "pk": 32, "fields": {"nameus": "Brunei", "namefr": "Brunei", "nationality": "Brunéienne", "iso2": "BN", "iso3": "BRN", "isonum": 96}}, {"model": "location.country", "pk": 33, "fields": {"nameus": "Bulgaria", "namefr": "Bulgarie", "nationality": "Bulgare", "iso2": "BG", "iso3": "BGR", "isonum": 100}}, {"model": "location.country", "pk": 34, "fields": {"nameus": "Myanmar [Burma]", "namefr": "Myanmar", "nationality": "Myanmaraise", "iso2": "MM", "iso3": "MMR", "isonum": 104}}, {"model": "location.country", "pk": 35, "fields": {"nameus": "Burundi", "namefr": "Burundi", "nationality": "Burundaise", "iso2": "BI", "iso3": "BDI", "isonum": 108}}, {"model": "location.country", "pk": 36, "fields": {"nameus": "Belarus", "namefr": "Biélorussie", "nationality": "Biélorusse", "iso2": "BY", "iso3": "BLR", "isonum": 112}}, {"model": "location.country", "pk": 37, "fields": {"nameus": "Cambodia", "namefr": "Cambodge", "nationality": "Cambodgienne", "iso2": "KH", "iso3": "KHM", "isonum": 116}}, {"model": "location.country", "pk": 38, "fields": {"nameus": "Cameroon", "namefr": "Cameroun", "nationality": "Camerounaise", "iso2": "CM", "iso3": "CMR", "isonum": 120}}, {"model": "location.country", "pk": 39, "fields": {"nameus": "Canada", "namefr": "Canada", "nationality": "Canadienne", "iso2": "CA", "iso3": "CAN", "isonum": 124}}, {"model": "location.country", "pk": 40, "fields": {"nameus": "Cape Verde", "namefr": "Cap Vert", "nationality": "Cap-Verdienne", "iso2": "CV", "iso3": "CPV", "isonum": 132}}, {"model": "location.country", "pk": 41, "fields": {"nameus": "Cayman Islands", "namefr": "Iles Caïmans", "nationality": "Anglaise", "iso2": "KY", "iso3": "CYM", "isonum": 136}}, {"model": "location.country", "pk": 42, "fields": {"nameus": "Central African Republic", "namefr": "République d'Afrique Centrale", "nationality": "Centrafricaine", "iso2": "CF", "iso3": "CAF", "isonum": 140}}, {"model": "location.country", "pk": 43, "fields": {"nameus": "Sri Lanka", "namefr": "Sri Lnaka", "nationality": "Sri-Lankaise", "iso2": "LK", "iso3": "LKA", "isonum": 144}}, {"model": "location.country", "pk": 44, "fields": {"nameus": "Chad", "namefr": "Chad", "nationality": "Chadienne", "iso2": "TD", "iso3": "TCD", "isonum": 148}}, {"model": "location.country", "pk": 45, "fields": {"nameus": "Chile", "namefr": "Chili", "nationality": "Chilienne", "iso2": "CL", "iso3": "CHL", "isonum": 152}}, {"model": "location.country", "pk": 46, "fields": {"nameus": "China", "namefr": "Chine", "nationality": "Chinoise", "iso2": "CN", "iso3": "CHN", "isonum": 156}}, {"model": "location.country", "pk": 47, "fields": {"nameus": "Taiwan", "namefr": "Taiwan", "nationality": "Taïwanaise", "iso2": "TW", "iso3": "TWN", "isonum": 158}}, {"model": "location.country", "pk": 48, "fields": {"nameus": "Christmas Island", "namefr": "Ile Christmas", "nationality": "Australienne", "iso2": "CX", "iso3": "CXR", "isonum": 162}}, {"model": "location.country", "pk": 49, "fields": {"nameus": "Cocos [Keeling] Islands", "namefr": "Iles Cocos", "nationality": "Australienne", "iso2": "CC", "iso3": "CCK", "isonum": 166}}, {"model": "location.country", "pk": 50, "fields": {"nameus": "Colombia", "namefr": "Colombie", "nationality": "Colombienne", "iso2": "CO", "iso3": "COL", "isonum": 170}}, {"model": "location.country", "pk": 51, "fields": {"nameus": "Comoros", "namefr": "Comores", "nationality": "Comorienne", "iso2": "KM", "iso3": "COM", "isonum": 174}}, {"model": "location.country", "pk": 52, "fields": {"nameus": "Mayotte", "namefr": "Mayotte", "nationality": "Mahoraise", "iso2": "YT", "iso3": "MYT", "isonum": 175}}, {"model": "location.country", "pk": 53, "fields": {"nameus": "Republic of the Congo", "namefr": "République du Congo", "nationality": "Congolaise", "iso2": "CG", "iso3": "COG", "isonum": 178}}, {"model": "location.country", "pk": 54, "fields": {"nameus": "Congo", "namefr": "Congo", "nationality": "Congolaise", "iso2": "CD", "iso3": "COD", "isonum": 180}}, {"model": "location.country", "pk": 55, "fields": {"nameus": "Cook Islands", "namefr": "Iles Cook", "nationality": "Anglaise", "iso2": "CK", "iso3": "COK", "isonum": 184}}, {"model": "location.country", "pk": 56, "fields": {"nameus": "Costa Rica", "namefr": "Costa Rica", "nationality": "Costaricainne", "iso2": "CR", "iso3": "CRI", "isonum": 188}}, {"model": "location.country", "pk": 57, "fields": {"nameus": "Croatia", "namefr": "Croatie", "nationality": "Croate", "iso2": "HR", "iso3": "HRV", "isonum": 191}}, {"model": "location.country", "pk": 58, "fields": {"nameus": "Cuba", "namefr": "Cuba", "nationality": "Cubaine", "iso2": "CU", "iso3": "CUB", "isonum": 192}}, {"model": "location.country", "pk": 59, "fields": {"nameus": "Cyprus", "namefr": "Chypre", "nationality": "Chypriote", "iso2": "CY", "iso3": "CYP", "isonum": 196}}, {"model": "location.country", "pk": 60, "fields": {"nameus": "Czech Republic", "namefr": "République Tchèque", "nationality": "Tchèque", "iso2": "CZ", "iso3": "CZE", "isonum": 203}}, {"model": "location.country", "pk": 61, "fields": {"nameus": "Benin", "namefr": "Bénin", "nationality": "Béninoise", "iso2": "BJ", "iso3": "BEN", "isonum": 204}}, {"model": "location.country", "pk": 62, "fields": {"nameus": "Denmark", "namefr": "Danemark", "nationality": "Danoise", "iso2": "DK", "iso3": "DNK", "isonum": 208}}, {"model": "location.country", "pk": 63, "fields": {"nameus": "Dominica", "namefr": "Dominique", "nationality": "Dominiquaise", "iso2": "DM", "iso3": "DMA", "isonum": 212}}, {"model": "location.country", "pk": 64, "fields": {"nameus": "Dominican Republic", "namefr": "République Dominicaine", "nationality": "Dominicaine", "iso2": "DO", "iso3": "DOM", "isonum": 214}}, {"model": "location.country", "pk": 65, "fields": {"nameus": "Ecuador", "namefr": "Equateur", "nationality": "Equatorienne", "iso2": "EC", "iso3": "ECU", "isonum": 218}}, {"model": "location.country", "pk": 66, "fields": {"nameus": "El Salvador", "namefr": "Salvador", "nationality": "Salvadorienne", "iso2": "SV", "iso3": "SLV", "isonum": 222}}, {"model": "location.country", "pk": 67, "fields": {"nameus": "Equatorial Guinea", "namefr": "Guinée Equatoriale", "nationality": "Guinéo-Équatorienne", "iso2": "GQ", "iso3": "GNQ", "isonum": 226}}, {"model": "location.country", "pk": 68, "fields": {"nameus": "Ethiopia", "namefr": "Ethiopie", "nationality": "Ethiopienne", "iso2": "ET", "iso3": "ETH", "isonum": 231}}, {"model": "location.country", "pk": 69, "fields": {"nameus": "Eritrea", "namefr": "Eritrée", "nationality": "Erythréenne", "iso2": "ER", "iso3": "ERI", "isonum": 232}}, {"model": "location.country", "pk": 70, "fields": {"nameus": "Estonia", "namefr": "Estonie", "nationality": "Estonienne", "iso2": "EE", "iso3": "EST", "isonum": 233}}, {"model": "location.country", "pk": 71, "fields": {"nameus": "Faroe Islands", "namefr": "Iles Féroé", "nationality": "Féroïenne", "iso2": "FO", "iso3": "FRO", "isonum": 234}}, {"model": "location.country", "pk": 72, "fields": {"nameus": "Falkland Islands", "namefr": "Iles Malouines", "nationality": "Anglaise", "iso2": "FK", "iso3": "FLK", "isonum": 238}}, {"model": "location.country", "pk": 73, "fields": {"nameus": "South Georgia and the South Sandwich Islands", "namefr": "Géorgie du Sud et Iles Sandwich du Sud", "nationality": "Argentine", "iso2": "GS", "iso3": "SGS", "isonum": 239}}, {"model": "location.country", "pk": 74, "fields": {"nameus": "Fiji", "namefr": "Fiji", "nationality": "Fidjienne", "iso2": "FJ", "iso3": "FJI", "isonum": 242}}, {"model": "location.country", "pk": 75, "fields": {"nameus": "Finland", "namefr": "Finlande", "nationality": "Finlandaise", "iso2": "FI", "iso3": "FIN", "isonum": 246}}, {"model": "location.country", "pk": 76, "fields": {"nameus": "Åland", "namefr": "Aland", "nationality": "Alandais", "iso2": "AX", "iso3": "ALA", "isonum": 248}}, {"model": "location.country", "pk": 77, "fields": {"nameus": "France", "namefr": "France", "nationality": "Française", "iso2": "FR", "iso3": "FRA", "isonum": 250}}, {"model": "location.country", "pk": 78, "fields": {"nameus": "French Guiana", "namefr": "Guinée Française", "nationality": "Française", "iso2": "GF", "iso3": "GUF", "isonum": 254}}, {"model": "location.country", "pk": 79, "fields": {"nameus": "French Polynesia", "namefr": "Polynésie Française", "nationality": "Française", "iso2": "PF", "iso3": "PYF", "isonum": 258}}, {"model": "location.country", "pk": 80, "fields": {"nameus": "French Southern Territories", "namefr": "Terres Australes Française", "nationality": "Française", "iso2": "TF", "iso3": "ATF", "isonum": 260}}, {"model": "location.country", "pk": 81, "fields": {"nameus": "Djibouti", "namefr": "Djibouti", "nationality": "Djiboutienne", "iso2": "DJ", "iso3": "DJI", "isonum": 262}}, {"model": "location.country", "pk": 82, "fields": {"nameus": "Gabon", "namefr": "Gabon", "nationality": "Gabonnaise", "iso2": "GA", "iso3": "GAB", "isonum": 266}}, {"model": "location.country", "pk": 83, "fields": {"nameus": "Georgia", "namefr": "Georgie", "nationality": "Géorgienne", "iso2": "GE", "iso3": "GEO", "isonum": 268}}, {"model": "location.country", "pk": 84, "fields": {"nameus": "Gambia", "namefr": "Gambie", "nationality": "Gambienne", "iso2": "GM", "iso3": "GMB", "isonum": 270}}, {"model": "location.country", "pk": 85, "fields": {"nameus": "Palestine", "namefr": "Palestine", "nationality": "Pelestinienne", "iso2": "PS", "iso3": "PSE", "isonum": 275}}, {"model": "location.country", "pk": 86, "fields": {"nameus": "Germany", "namefr": "Allemagne", "nationality": "Allemande", "iso2": "DE", "iso3": "DEU", "isonum": 276}}, {"model": "location.country", "pk": 87, "fields": {"nameus": "Ghana", "namefr": "Ghana", "nationality": "Ghanéenne", "iso2": "GH", "iso3": "GHA", "isonum": 288}}, {"model": "location.country", "pk": 88, "fields": {"nameus": "Gibraltar", "namefr": "Gibraltar", "nationality": "Gibraltarienne", "iso2": "GI", "iso3": "GIB", "isonum": 292}}, {"model": "location.country", "pk": 89, "fields": {"nameus": "Kiribati", "namefr": "Kiribati", "nationality": "Kiribatienne", "iso2": "KI", "iso3": "KIR", "isonum": 296}}, {"model": "location.country", "pk": 90, "fields": {"nameus": "Greece", "namefr": "Grèce", "nationality": "Grecque", "iso2": "GR", "iso3": "GRC", "isonum": 300}}, {"model": "location.country", "pk": 91, "fields": {"nameus": "Greenland", "namefr": "Groenland", "nationality": "Groenlandaise", "iso2": "GL", "iso3": "GRL", "isonum": 304}}, {"model": "location.country", "pk": 92, "fields": {"nameus": "Grenada", "namefr": "Grenade", "nationality": "Grenadienne", "iso2": "GD", "iso3": "GRD", "isonum": 308}}, {"model": "location.country", "pk": 93, "fields": {"nameus": "Guadeloupe", "namefr": "Guadeloupe", "nationality": "Guadeloupéenne", "iso2": "GP", "iso3": "GLP", "isonum": 312}}, {"model": "location.country", "pk": 94, "fields": {"nameus": "Guam", "namefr": "Guam", "nationality": "Guamienne", "iso2": "GU", "iso3": "GUM", "isonum": 316}}, {"model": "location.country", "pk": 95, "fields": {"nameus": "Guatemala", "namefr": "Guatémala", "nationality": "Guatémaltèque", "iso2": "GT", "iso3": "GTM", "isonum": 320}}, {"model": "location.country", "pk": 96, "fields": {"nameus": "Guinea", "namefr": "Guinée", "nationality": "Guinéenne", "iso2": "GN", "iso3": "GIN", "isonum": 324}}, {"model": "location.country", "pk": 97, "fields": {"nameus": "Guyana", "namefr": "Guyane", "nationality": "Guyanienne", "iso2": "GY", "iso3": "GUY", "isonum": 328}}, {"model": "location.country", "pk": 98, "fields": {"nameus": "Haiti", "namefr": "Haïti", "nationality": "Haïtienne", "iso2": "HT", "iso3": "HTI", "isonum": 332}}, {"model": "location.country", "pk": 99, "fields": {"nameus": "Heard Island and McDonald Islands", "namefr": "Ile Heard et Iles McDonald", "nationality": "Australienne", "iso2": "HM", "iso3": "HMD", "isonum": 334}}, {"model": "location.country", "pk": 100, "fields": {"nameus": "Vatican City", "namefr": "Vatican", "nationality": "Vaticanne", "iso2": "VA", "iso3": "VAT", "isonum": 336}}, {"model": "location.country", "pk": 101, "fields": {"nameus": "Honduras", "namefr": "Honduras", "nationality": "Hondurienne", "iso2": "HN", "iso3": "HND", "isonum": 340}}, {"model": "location.country", "pk": 102, "fields": {"nameus": "Hong Kong", "namefr": "Hong Kong", "nationality": "Hongkongaise", "iso2": "HK", "iso3": "HKG", "isonum": 344}}, {"model": "location.country", "pk": 103, "fields": {"nameus": "Hungary", "namefr": "Hongrie", "nationality": "Hongroise", "iso2": "HU", "iso3": "HUN", "isonum": 348}}, {"model": "location.country", "pk": 104, "fields": {"nameus": "Iceland", "namefr": "Islande", "nationality": "Islandaise", "iso2": "IS", "iso3": "ISL", "isonum": 352}}, {"model": "location.country", "pk": 105, "fields": {"nameus": "India", "namefr": "Inde", "nationality": "Indienne", "iso2": "IN", "iso3": "IND", "isonum": 356}}, {"model": "location.country", "pk": 106, "fields": {"nameus": "Indonesia", "namefr": "Indonésie", "nationality": "Indonésienne", "iso2": "ID", "iso3": "IDN", "isonum": 360}}, {"model": "location.country", "pk": 107, "fields": {"nameus": "Iran", "namefr": "Iran", "nationality": "Irannienne", "iso2": "IR", "iso3": "IRN", "isonum": 364}}, {"model": "location.country", "pk": 108, "fields": {"nameus": "Iraq", "namefr": "Iraq", "nationality": "Iraquienne", "iso2": "IQ", "iso3": "IRQ", "isonum": 368}}, {"model": "location.country", "pk": 109, "fields": {"nameus": "Ireland", "namefr": "Irlande", "nationality": "Irlandaise", "iso2": "IE", "iso3": "IRL", "isonum": 372}}, {"model": "location.country", "pk": 110, "fields": {"nameus": "Israel", "namefr": "Israel", "nationality": "Israelienne", "iso2": "IL", "iso3": "ISR", "isonum": 376}}, {"model": "location.country", "pk": 111, "fields": {"nameus": "Italy", "namefr": "Italie", "nationality": "Italienne", "iso2": "IT", "iso3": "ITA", "isonum": 380}}, {"model": "location.country", "pk": 112, "fields": {"nameus": "Ivory Coast", "namefr": "Côte d'Ivoire", "nationality": "Ivoirienne", "iso2": "CI", "iso3": "CIV", "isonum": 384}}, {"model": "location.country", "pk": 113, "fields": {"nameus": "Jamaica", "namefr": "Jamaïque", "nationality": "Jamaïquaine", "iso2": "JM", "iso3": "JAM", "isonum": 388}}, {"model": "location.country", "pk": 114, "fields": {"nameus": "Japan", "namefr": "Japon", "nationality": "Japonnaise", "iso2": "JP", "iso3": "JPN", "isonum": 392}}, {"model": "location.country", "pk": 115, "fields": {"nameus": "Kazakhstan", "namefr": "Kazakhstan", "nationality": "Kazakhe", "iso2": "KZ", "iso3": "KAZ", "isonum": 398}}, {"model": "location.country", "pk": 116, "fields": {"nameus": "Jordan", "namefr": "Jordanie", "nationality": "Jordanienne", "iso2": "JO", "iso3": "JOR", "isonum": 400}}, {"model": "location.country", "pk": 117, "fields": {"nameus": "Kenya", "namefr": "Kenya", "nationality": "Kenyane", "iso2": "KE", "iso3": "KEN", "isonum": 404}}, {"model": "location.country", "pk": 118, "fields": {"nameus": "North Korea", "namefr": "Corée du Nord", "nationality": "Nord-Coréenne", "iso2": "KP", "iso3": "PRK", "isonum": 408}}, {"model": "location.country", "pk": 119, "fields": {"nameus": "South Korea", "namefr": "Corée du Sud", "nationality": "Sud-Coréenne", "iso2": "KR", "iso3": "KOR", "isonum": 410}}, {"model": "location.country", "pk": 120, "fields": {"nameus": "Kuwait", "namefr": "Koweit", "nationality": "Koweitienne", "iso2": "KW", "iso3": "KWT", "isonum": 414}}, {"model": "location.country", "pk": 121, "fields": {"nameus": "Kyrgyzstan", "namefr": "Kyrgyzstan", "nationality": "Kirghizes", "iso2": "KG", "iso3": "KGZ", "isonum": 417}}, {"model": "location.country", "pk": 122, "fields": {"nameus": "Laos", "namefr": "Laos", "nationality": "Laotienne", "iso2": "LA", "iso3": "LAO", "isonum": 418}}, {"model": "location.country", "pk": 123, "fields": {"nameus": "Lebanon", "namefr": "Liban", "nationality": "Libannaise", "iso2": "LB", "iso3": "LBN", "isonum": 422}}, {"model": "location.country", "pk": 124, "fields": {"nameus": "Lesotho", "namefr": "Lesotho", "nationality": "Lesothien ", "iso2": "LS", "iso3": "LSO", "isonum": 426}}, {"model": "location.country", "pk": 125, "fields": {"nameus": "Latvia", "namefr": "Lettonie", "nationality": "Lettone", "iso2": "LV", "iso3": "LVA", "isonum": 428}}, {"model": "location.country", "pk": 126, "fields": {"nameus": "Liberia", "namefr": "Libéria", "nationality": "Libérienne", "iso2": "LR", "iso3": "LBR", "isonum": 430}}, {"model": "location.country", "pk": 127, "fields": {"nameus": "Libya", "namefr": "Lybie", "nationality": "Lybienne", "iso2": "LY", "iso3": "LBY", "isonum": 434}}, {"model": "location.country", "pk": 128, "fields": {"nameus": "Liechtenstein", "namefr": "Liechtenstein", "nationality": "Liechtensteinoise", "iso2": "LI", "iso3": "LIE", "isonum": 438}}, {"model": "location.country", "pk": 129, "fields": {"nameus": "Lithuania", "namefr": "Lithuanie", "nationality": "Lithuanienne", "iso2": "LT", "iso3": "LTU", "isonum": 440}}, {"model": "location.country", "pk": 130, "fields": {"nameus": "Luxembourg", "namefr": "Luxembourg", "nationality": "Luxembourgeoise", "iso2": "LU", "iso3": "LUX", "isonum": 442}}, {"model": "location.country", "pk": 131, "fields": {"nameus": "Macao", "namefr": "Macao", "nationality": "Macanaise", "iso2": "MO", "iso3": "MAC", "isonum": 446}}, {"model": "location.country", "pk": 132, "fields": {"nameus": "Madagascar", "namefr": "Madagascar", "nationality": "Malgache", "iso2": "MG", "iso3": "MDG", "isonum": 450}}, {"model": "location.country", "pk": 133, "fields": {"nameus": "Malawi", "namefr": "Malawi", "nationality": "Malawite", "iso2": "MW", "iso3": "MWI", "isonum": 454}}, {"model": "location.country", "pk": 134, "fields": {"nameus": "Malaysia", "namefr": "Malaisie", "nationality": "Malaisienne", "iso2": "MY", "iso3": "MYS", "isonum": 458}}, {"model": "location.country", "pk": 135, "fields": {"nameus": "Maldives", "namefr": "Maldives", "nationality": "Maldivienne", "iso2": "MV", "iso3": "MDV", "isonum": 462}}, {"model": "location.country", "pk": 136, "fields": {"nameus": "Mali", "namefr": "Mali", "nationality": "Malienne", "iso2": "ML", "iso3": "MLI", "isonum": 466}}, {"model": "location.country", "pk": 137, "fields": {"nameus": "Malta", "namefr": "Malte", "nationality": "Maltaise", "iso2": "MT", "iso3": "MLT", "isonum": 470}}, {"model": "location.country", "pk": 138, "fields": {"nameus": "Martinique", "namefr": "Martinique", "nationality": "Martiniquaise", "iso2": "MQ", "iso3": "MTQ", "isonum": 474}}, {"model": "location.country", "pk": 139, "fields": {"nameus": "Mauritania", "namefr": "Mauritanie", "nationality": "Mauritanienne", "iso2": "MR", "iso3": "MRT", "isonum": 478}}, {"model": "location.country", "pk": 140, "fields": {"nameus": "Mauritius", "namefr": "Maurice", "nationality": "Mauricien", "iso2": "MU", "iso3": "MUS", "isonum": 480}}, {"model": "location.country", "pk": 141, "fields": {"nameus": "Mexico", "namefr": "Mexique", "nationality": "Mexiquaine", "iso2": "MX", "iso3": "MEX", "isonum": 484}}, {"model": "location.country", "pk": 142, "fields": {"nameus": "Monaco", "namefr": "Monaco", "nationality": "Monégasque", "iso2": "MC", "iso3": "MCO", "isonum": 492}}, {"model": "location.country", "pk": 143, "fields": {"nameus": "Mongolia", "namefr": "Mongolie", "nationality": "Mongolienne", "iso2": "MN", "iso3": "MNG", "isonum": 496}}, {"model": "location.country", "pk": 144, "fields": {"nameus": "Moldova", "namefr": "Moldavie", "nationality": "Moldavienne", "iso2": "MD", "iso3": "MDA", "isonum": 498}}, {"model": "location.country", "pk": 145, "fields": {"nameus": "Montenegro", "namefr": "Monténégro", "nationality": "Monténégrine", "iso2": "ME", "iso3": "MNE", "isonum": 499}}, {"model": "location.country", "pk": 146, "fields": {"nameus": "Montserrat", "namefr": "Montserrat", "nationality": "Montserratien", "iso2": "MS", "iso3": "MSR", "isonum": 500}}, {"model": "location.country", "pk": 147, "fields": {"nameus": "Morocco", "namefr": "Maroc", "nationality": "Marocaine", "iso2": "MA", "iso3": "MAR", "isonum": 504}}, {"model": "location.country", "pk": 148, "fields": {"nameus": "Mozambique", "namefr": "Mozambique", "nationality": "Mozambicaine", "iso2": "MZ", "iso3": "MOZ", "isonum": 508}}, {"model": "location.country", "pk": 149, "fields": {"nameus": "Oman", "namefr": "Oman", "nationality": "Omanaise", "iso2": "OM", "iso3": "OMN", "isonum": 512}}, {"model": "location.country", "pk": 150, "fields": {"nameus": "Namibia", "namefr": "Namibie", "nationality": "Namibienne", "iso2": "NA", "iso3": "NAM", "isonum": 516}}, {"model": "location.country", "pk": 151, "fields": {"nameus": "Nauru", "namefr": "Nauru", "nationality": "Nauruane", "iso2": "NR", "iso3": "NRU", "isonum": 520}}, {"model": "location.country", "pk": 152, "fields": {"nameus": "Nepal", "namefr": "Népal", "nationality": "Népalienne", "iso2": "NP", "iso3": "NPL", "isonum": 524}}, {"model": "location.country", "pk": 153, "fields": {"nameus": "Netherlands", "namefr": "Pays-Bas", "nationality": "Néerlandaise", "iso2": "NL", "iso3": "NLD", "isonum": 528}}, {"model": "location.country", "pk": 154, "fields": {"nameus": "Curacao", "namefr": "Curacao", "nationality": "Curacienne", "iso2": "CW", "iso3": "CUW", "isonum": 531}}, {"model": "location.country", "pk": 155, "fields": {"nameus": "Aruba", "namefr": "Aruba", "nationality": "Arubaine", "iso2": "AW", "iso3": "ABW", "isonum": 533}}, {"model": "location.country", "pk": 156, "fields": {"nameus": "Sint Maarten", "namefr": "Saint-Martin (Royaume des Pays-Bas)", "nationality": "Néerlandaise", "iso2": "SX", "iso3": "SXM", "isonum": 534}}, {"model": "location.country", "pk": 157, "fields": {"nameus": "Bonaire", "namefr": "Bonaire, Saint-Eustache et Saba", "nationality": "Bonairienne", "iso2": "BQ", "iso3": "BES", "isonum": 535}}, {"model": "location.country", "pk": 158, "fields": {"nameus": "New Caledonia", "namefr": "Nouvelle-Calédonie", "nationality": "Néo-Calédonienne", "iso2": "NC", "iso3": "NCL", "isonum": 540}}, {"model": "location.country", "pk": 159, "fields": {"nameus": "Vanuatu", "namefr": "Vanuatu", "nationality": "Vanouataise", "iso2": "VU", "iso3": "VUT", "isonum": 548}}, {"model": "location.country", "pk": 160, "fields": {"nameus": "New Zealand", "namefr": "Nouvelle-Zélande", "nationality": "Néo-zélandaise", "iso2": "NZ", "iso3": "NZL", "isonum": 554}}, {"model": "location.country", "pk": 161, "fields": {"nameus": "Nicaragua", "namefr": "Nicaragua", "nationality": "Nicaraguayenne", "iso2": "NI", "iso3": "NIC", "isonum": 558}}, {"model": "location.country", "pk": 162, "fields": {"nameus": "Niger", "namefr": "Niger", "nationality": "Nigérienne", "iso2": "NE", "iso3": "NER", "isonum": 562}}, {"model": "location.country", "pk": 163, "fields": {"nameus": "Nigeria", "namefr": "Nigéria", "nationality": "Nigérianne", "iso2": "NG", "iso3": "NGA", "isonum": 566}}, {"model": "location.country", "pk": 164, "fields": {"nameus": "Niue", "namefr": "Niue", "nationality": "Niouéenne", "iso2": "NU", "iso3": "NIU", "isonum": 570}}, {"model": "location.country", "pk": 165, "fields": {"nameus": "Norfolk Island", "namefr": "Ile Norfolk", "nationality": "Australienne", "iso2": "NF", "iso3": "NFK", "isonum": 574}}, {"model": "location.country", "pk": 166, "fields": {"nameus": "Norway", "namefr": "Norvège", "nationality": "Norvégienne", "iso2": "NO", "iso3": "NOR", "isonum": 578}}, {"model": "location.country", "pk": 167, "fields": {"nameus": "Northern Mariana Islands", "namefr": "Iles Marianne du nord", "nationality": "Américaine", "iso2": "MP", "iso3": "MNP", "isonum": 580}}, {"model": "location.country", "pk": 168, "fields": {"nameus": "U.S. Minor Outlying Islands", "namefr": "Iles Mineures Eloignées des Etats-Unis", "nationality": "Américaine", "iso2": "UM", "iso3": "UMI", "isonum": 581}}, {"model": "location.country", "pk": 169, "fields": {"nameus": "Micronesia", "namefr": "Micronesie", "nationality": "Micronésienne", "iso2": "FM", "iso3": "FSM", "isonum": 583}}, {"model": "location.country", "pk": 170, "fields": {"nameus": "Marshall Islands", "namefr": "Iles Marshall", "nationality": "Marshallais", "iso2": "MH", "iso3": "MHL", "isonum": 584}}, {"model": "location.country", "pk": 171, "fields": {"nameus": "Palau", "namefr": "Palaos", "nationality": "Palaoise", "iso2": "PW", "iso3": "PLW", "isonum": 585}}, {"model": "location.country", "pk": 172, "fields": {"nameus": "Pakistan", "namefr": "Pakistan", "nationality": "Pakistanainse", "iso2": "PK", "iso3": "PAK", "isonum": 586}}, {"model": "location.country", "pk": 173, "fields": {"nameus": "Panama", "namefr": "Panama", "nationality": "Panaméenne", "iso2": "PA", "iso3": "PAN", "isonum": 591}}, {"model": "location.country", "pk": 174, "fields": {"nameus": "Papua New Guinea", "namefr": "Papouasie-Nouvelle-Guinée", "nationality": "Papouan-Néo-Guinéenne", "iso2": "PG", "iso3": "PNG", "isonum": 598}}, {"model": "location.country", "pk": 175, "fields": {"nameus": "Paraguay", "namefr": "Paraguay", "nationality": "Paraguayenne", "iso2": "PY", "iso3": "PRY", "isonum": 600}}, {"model": "location.country", "pk": 176, "fields": {"nameus": "Peru", "namefr": "Pérou", "nationality": "Péruvienne", "iso2": "PE", "iso3": "PER", "isonum": 604}}, {"model": "location.country", "pk": 177, "fields": {"nameus": "Philippines", "namefr": "Philippines", "nationality": "Philippine", "iso2": "PH", "iso3": "PHL", "isonum": 608}}, {"model": "location.country", "pk": 178, "fields": {"nameus": "Pitcairn Islands", "namefr": "Iles Pitcairn", "nationality": "Anglaise", "iso2": "PN", "iso3": "PCN", "isonum": 612}}, {"model": "location.country", "pk": 179, "fields": {"nameus": "Poland", "namefr": "Pologne", "nationality": "Polonaise", "iso2": "PL", "iso3": "POL", "isonum": 616}}, {"model": "location.country", "pk": 180, "fields": {"nameus": "Guinea-Bissau", "namefr": "Guinée-Bissau", "nationality": "Bissau-Guinéenne", "iso2": "GW", "iso3": "GNB", "isonum": 624}}, {"model": "location.country", "pk": 181, "fields": {"nameus": "East Timor", "namefr": "Timor Oriental", "nationality": "Timoraise", "iso2": "TL", "iso3": "TLS", "isonum": 626}}, {"model": "location.country", "pk": 182, "fields": {"nameus": "Puerto Rico", "namefr": "Porto Rico", "nationality": "Porto-Ricaine", "iso2": "PR", "iso3": "PRI", "isonum": 630}}, {"model": "location.country", "pk": 183, "fields": {"nameus": "Qatar", "namefr": "Qatar", "nationality": "Qatarie", "iso2": "QA", "iso3": "QAT", "isonum": 634}}, {"model": "location.country", "pk": 184, "fields": {"nameus": "Réunion", "namefr": "Réunion", "nationality": "Réunionnaise", "iso2": "RE", "iso3": "REU", "isonum": 638}}, {"model": "location.country", "pk": 185, "fields": {"nameus": "Romania", "namefr": "Roumanie", "nationality": "Roumaine", "iso2": "RO", "iso3": "ROU", "isonum": 642}}, {"model": "location.country", "pk": 186, "fields": {"nameus": "Russia", "namefr": "Russie", "nationality": "Russe", "iso2": "RU", "iso3": "RUS", "isonum": 643}}, {"model": "location.country", "pk": 187, "fields": {"nameus": "Rwanda", "namefr": "Rwanda", "nationality": "Rwandaise", "iso2": "RW", "iso3": "RWA", "isonum": 646}}, {"model": "location.country", "pk": 188, "fields": {"nameus": "Saint Barthélemy", "namefr": "Saint Barthélemy", "nationality": "Française", "iso2": "BL", "iso3": "BLM", "isonum": 652}}, {"model": "location.country", "pk": 189, "fields": {"nameus": "Saint Helena", "namefr": "Saint Helene", "nationality": "Sainte-Hélénien", "iso2": "SH", "iso3": "SHN", "isonum": 654}}, {"model": "location.country", "pk": 190, "fields": {"nameus": "Saint Kitts and Nevis", "namefr": "Saint-Kitts-et-Nevis", "nationality": "Kitticien", "iso2": "KN", "iso3": "KNA", "isonum": 659}}, {"model": "location.country", "pk": 191, "fields": {"nameus": "Anguilla", "namefr": "Anguilla", "nationality": "Anguillane", "iso2": "AI", "iso3": "AIA", "isonum": 660}}, {"model": "location.country", "pk": 192, "fields": {"nameus": "Saint Lucia", "namefr": "Sainte-Lucie", "nationality": "Saint-Lucien", "iso2": "LC", "iso3": "LCA", "isonum": 662}}, {"model": "location.country", "pk": 193, "fields": {"nameus": "Saint Martin", "namefr": "Saint Martin (Française)", "nationality": "Saint-Martinoise", "iso2": "MF", "iso3": "MAF", "isonum": 663}}, {"model": "location.country", "pk": 194, "fields": {"nameus": "Saint Pierre and Miquelon", "namefr": "Saint Pierre et Miquelon", "nationality": "Saint-Pierraise", "iso2": "PM", "iso3": "SPM", "isonum": 666}}, {"model": "location.country", "pk": 195, "fields": {"nameus": "Saint Vincent and the Grenadines", "namefr": "Saint Vincent et les Grenadines", "nationality": "Saint-Vincentais et Grenadin", "iso2": "VC", "iso3": "VCT", "isonum": 670}}, {"model": "location.country", "pk": 196, "fields": {"nameus": "San Marino", "namefr": "République de Saint-Marin", "nationality": "Saint-Marinaise", "iso2": "SM", "iso3": "SMR", "isonum": 674}}, {"model": "location.country", "pk": 197, "fields": {"nameus": "São Tomé and Príncipe", "namefr": "Sao Tomé-et-Principe", "nationality": "Sao-Tomienne", "iso2": "ST", "iso3": "STP", "isonum": 678}}, {"model": "location.country", "pk": 198, "fields": {"nameus": "Saudi Arabia", "namefr": "Arabie Saoudite", "nationality": "Saoudienne", "iso2": "SA", "iso3": "SAU", "isonum": 682}}, {"model": "location.country", "pk": 199, "fields": {"nameus": "Senegal", "namefr": "Sénégal", "nationality": "Sénégalaise", "iso2": "SN", "iso3": "SEN", "isonum": 686}}, {"model": "location.country", "pk": 200, "fields": {"nameus": "Serbia", "namefr": "Serbie", "nationality": "Serbe", "iso2": "RS", "iso3": "SRB", "isonum": 688}}, {"model": "location.country", "pk": 201, "fields": {"nameus": "Seychelles", "namefr": "Seychelles", "nationality": "Seychellois", "iso2": "SC", "iso3": "SYC", "isonum": 690}}, {"model": "location.country", "pk": 202, "fields": {"nameus": "Sierra Leone", "namefr": "Sierra Leone", "nationality": "Sierra-Léonaise", "iso2": "SL", "iso3": "SLE", "isonum": 694}}, {"model": "location.country", "pk": 203, "fields": {"nameus": "Singapore", "namefr": "Singapoure", "nationality": "Singapourien", "iso2": "SG", "iso3": "SGP", "isonum": 702}}, {"model": "location.country", "pk": 204, "fields": {"nameus": "Slovakia", "namefr": "Slovaquie", "nationality": "Slovaque", "iso2": "SK", "iso3": "SVK", "isonum": 703}}, {"model": "location.country", "pk": 205, "fields": {"nameus": "Vietnam", "namefr": "Vietnam", "nationality": "Vietnamienne", "iso2": "VN", "iso3": "VNM", "isonum": 704}}, {"model": "location.country", "pk": 206, "fields": {"nameus": "Slovenia", "namefr": "Slovénie", "nationality": "Slovénienne", "iso2": "SI", "iso3": "SVN", "isonum": 705}}, {"model": "location.country", "pk": 207, "fields": {"nameus": "Somalia", "namefr": "Somalie", "nationality": "Somalienne", "iso2": "SO", "iso3": "SOM", "isonum": 706}}, {"model": "location.country", "pk": 208, "fields": {"nameus": "South Africa", "namefr": "Afrique du Sud", "nationality": "Sud-Africaine", "iso2": "ZA", "iso3": "ZAF", "isonum": 710}}, {"model": "location.country", "pk": 209, "fields": {"nameus": "Zimbabwe", "namefr": "Zimbabwe", "nationality": "Zimbabwéenne", "iso2": "ZW", "iso3": "ZWE", "isonum": 716}}, {"model": "location.country", "pk": 210, "fields": {"nameus": "Spain", "namefr": "Espagne", "nationality": "Espagnole", "iso2": "ES", "iso3": "ESP", "isonum": 724}}, {"model": "location.country", "pk": 211, "fields": {"nameus": "South Sudan", "namefr": "Soudan du Sud", "nationality": "Sud-Soudanaise", "iso2": "SS", "iso3": "SSD", "isonum": 728}}, {"model": "location.country", "pk": 212, "fields": {"nameus": "Sudan", "namefr": "Soudan", "nationality": "Soudannaise", "iso2": "SD", "iso3": "SDN", "isonum": 729}}, {"model": "location.country", "pk": 213, "fields": {"nameus": "Western Sahara", "namefr": "Sahara Occidental", "nationality": "Sahraouie", "iso2": "EH", "iso3": "ESH", "isonum": 732}}, {"model": "location.country", "pk": 214, "fields": {"nameus": "Suriname", "namefr": "Suriname", "nationality": "Surinamienne", "iso2": "SR", "iso3": "SUR", "isonum": 740}}, {"model": "location.country", "pk": 215, "fields": {"nameus": "Svalbard and Jan Mayen", "namefr": "Svalbard et Jan Mayen", "nationality": "Norvégienne", "iso2": "SJ", "iso3": "SJM", "isonum": 744}}, {"model": "location.country", "pk": 216, "fields": {"nameus": "Swaziland", "namefr": "Swaziland", "nationality": "Swazie", "iso2": "SZ", "iso3": "SWZ", "isonum": 748}}, {"model": "location.country", "pk": 217, "fields": {"nameus": "Sweden", "namefr": "Suède", "nationality": "Suédoise", "iso2": "SE", "iso3": "SWE", "isonum": 752}}, {"model": "location.country", "pk": 218, "fields": {"nameus": "Switzerland", "namefr": "Suisse", "nationality": "Suisse", "iso2": "CH", "iso3": "CHE", "isonum": 756}}, {"model": "location.country", "pk": 219, "fields": {"nameus": "Syria", "namefr": "Syrie", "nationality": "Syrienne", "iso2": "SY", "iso3": "SYR", "isonum": 760}}, {"model": "location.country", "pk": 220, "fields": {"nameus": "Tajikistan", "namefr": "Tajikistan", "nationality": "Tadjike", "iso2": "TJ", "iso3": "TJK", "isonum": 762}}, {"model": "location.country", "pk": 221, "fields": {"nameus": "Thailand", "namefr": "Thaïland", "nationality": "Thaïlandaise", "iso2": "TH", "iso3": "THA", "isonum": 764}}, {"model": "location.country", "pk": 222, "fields": {"nameus": "Togo", "namefr": "Togo", "nationality": "Togolaise", "iso2": "TG", "iso3": "TGO", "isonum": 768}}, {"model": "location.country", "pk": 223, "fields": {"nameus": "Tokelau", "namefr": "Tokelau", "nationality": "Tokelauien", "iso2": "TK", "iso3": "TKL", "isonum": 772}}, {"model": "location.country", "pk": 224, "fields": {"nameus": "Tonga", "namefr": "Tonga", "nationality": "Tonguien", "iso2": "TO", "iso3": "TON", "isonum": 776}}, {"model": "location.country", "pk": 225, "fields": {"nameus": "Trinidad and Tobago", "namefr": "Trinité-et-Tobago", "nationality": "Trinitéennes", "iso2": "TT", "iso3": "TTO", "isonum": 780}}, {"model": "location.country", "pk": 226, "fields": {"nameus": "United Arab Emirates", "namefr": "Emiras", "nationality": "Emirienne", "iso2": "AE", "iso3": "ARE", "isonum": 784}}, {"model": "location.country", "pk": 227, "fields": {"nameus": "Tunisia", "namefr": "Tunisie", "nationality": "Tunisienne", "iso2": "TN", "iso3": "TUN", "isonum": 788}}, {"model": "location.country", "pk": 228, "fields": {"nameus": "Turkey", "namefr": "Turkie", "nationality": "Turque", "iso2": "TR", "iso3": "TUR", "isonum": 792}}, {"model": "location.country", "pk": 229, "fields": {"nameus": "Turkmenistan", "namefr": "Turkmenistan", "nationality": "Turkmène", "iso2": "TM", "iso3": "TKM", "isonum": 795}}, {"model": "location.country", "pk": 230, "fields": {"nameus": "Turks and Caicos Islands", "namefr": "Iles Turks-et-Caïques", "nationality": "Anglaise", "iso2": "TC", "iso3": "TCA", "isonum": 796}}, {"model": "location.country", "pk": 231, "fields": {"nameus": "Tuvalu", "namefr": "Tuvalu", "nationality": "Tuvaluane", "iso2": "TV", "iso3": "TUV", "isonum": 798}}, {"model": "location.country", "pk": 232, "fields": {"nameus": "Uganda", "namefr": "Ouganda", "nationality": "Ougandaise", "iso2": "UG", "iso3": "UGA", "isonum": 800}}, {"model": "location.country", "pk": 233, "fields": {"nameus": "Ukraine", "namefr": "Ukraine", "nationality": "Ukrainienne", "iso2": "UA", "iso3": "UKR", "isonum": 804}}, {"model": "location.country", "pk": 234, "fields": {"nameus": "Macedonia", "namefr": "Macédoine", "nationality": "Macédonienne", "iso2": "MK", "iso3": "MKD", "isonum": 807}}, {"model": "location.country", "pk": 235, "fields": {"nameus": "Egypt", "namefr": "Egypte", "nationality": "Egyptienne", "iso2": "EG", "iso3": "EGY", "isonum": 818}}, {"model": "location.country", "pk": 236, "fields": {"nameus": "United Kingdom", "namefr": "Royaume Uni", "nationality": "Anglaise", "iso2": "GB", "iso3": "GBR", "isonum": 826}}, {"model": "location.country", "pk": 237, "fields": {"nameus": "Guernsey", "namefr": "Guernesey", "nationality": "Anglaise", "iso2": "GG", "iso3": "GGY", "isonum": 831}}, {"model": "location.country", "pk": 238, "fields": {"nameus": "Jersey", "namefr": "Jersey", "nationality": "Jersiaise", "iso2": "JE", "iso3": "JEY", "isonum": 832}}, {"model": "location.country", "pk": 239, "fields": {"nameus": "Isle of Man", "namefr": "Ile de Man", "nationality": "Anglaise", "iso2": "IM", "iso3": "IMN", "isonum": 833}}, {"model": "location.country", "pk": 240, "fields": {"nameus": "Tanzania", "namefr": "Tanzanie", "nationality": "Tanzanienne", "iso2": "TZ", "iso3": "TZA", "isonum": 834}}, {"model": "location.country", "pk": 241, "fields": {"nameus": "United States", "namefr": "Etats-Unis", "nationality": "Américaine", "iso2": "US", "iso3": "USA", "isonum": 840}}, {"model": "location.country", "pk": 242, "fields": {"nameus": "U.S. Virgin Islands", "namefr": "Iles Vierges des Etats-Unis", "nationality": "Américaine", "iso2": "VI", "iso3": "VIR", "isonum": 850}}, {"model": "location.country", "pk": 243, "fields": {"nameus": "Burkina Faso", "namefr": "Burkina", "nationality": "Burkinabé", "iso2": "BF", "iso3": "BFA", "isonum": 854}}, {"model": "location.country", "pk": 244, "fields": {"nameus": "Uruguay", "namefr": "Uruguay", "nationality": "Uruguayenne", "iso2": "UY", "iso3": "URY", "isonum": 858}}, {"model": "location.country", "pk": 245, "fields": {"nameus": "Uzbekistan", "namefr": "Uzbekisan", "nationality": "Ousbèke", "iso2": "UZ", "iso3": "UZB", "isonum": 860}}, {"model": "location.country", "pk": 246, "fields": {"nameus": "Venezuela", "namefr": "Vénézuela", "nationality": "Vénézuélienne", "iso2": "VE", "iso3": "VEN", "isonum": 862}}, {"model": "location.country", "pk": 247, "fields": {"nameus": "Wallis and Futuna", "namefr": "Wallis et Futuna", "nationality": "Wallisienne", "iso2": "WF", "iso3": "WLF", "isonum": 876}}, {"model": "location.country", "pk": 248, "fields": {"nameus": "Samoa", "namefr": "Samoa", "nationality": "Samoan", "iso2": "WS", "iso3": "WSM", "isonum": 882}}, {"model": "location.country", "pk": 249, "fields": {"nameus": "Yemen", "namefr": "Yemen", "nationality": "Yéménite", "iso2": "YE", "iso3": "YEM", "isonum": 887}}, {"model": "location.country", "pk": 250, "fields": {"nameus": "Zambia", "namefr": "Zambie", "nationality": "Zambienne", "iso2": "ZM", "iso3": "ZMB", "isonum": 894}}, {"model": "location.country", "pk": 251, "fields": {"nameus": "Apatride", "namefr": "Apatride", "nationality": "Apatride", "iso2": "XA", "iso3": "XXA", "isonum": 991}}, {"model": "location.country", "pk": 252, "fields": {"nameus": "Réfugié ONU", "namefr": "Réfugié ONU", "nationality": "Réfugié ONU", "iso2": "XB", "iso3": "XXB", "isonum": 992}}, {"model": "location.country", "pk": 253, "fields": {"nameus": "Réfugié (autre)", "namefr": "Réfugié (autre)", "nationality": "Réfugié (autre)", "iso2": "XC", "iso3": "XXC", "isonum": 993}}, {"model": "location.country", "pk": 254, "fields": {"nameus": "Non Spécifiée", "namefr": "Non Spécifiée", "nationality": "Non Spécifiée", "iso2": "XX", "iso3": "XXX", "isonum": 999}}, {"model": "location.place", "pk": 1, "fields": {"name": "Ecole du pré vert", "address": "Rue René Franq", "postal": 1428, "city": "Lillois-Witterzée", "country": 1, "nbkm": null, "timing": null, "active": true}}, {"model": "location.place", "pk": 2, "fields": {"name": "Ten Gaerde", "address": "Jozef Mertensstraat, 17b", "postal": 1702, "city": "Dilbeek", "country": 1, "nbkm": 37, "timing": 28, "active": true}}, {"model": "location.place", "pk": 3, "fields": {"name": "Gemeentelijk Sportcentrum Hulshout", "address": "Industriepark 3", "postal": 2235, "city": "Hulsout", "country": 1, "nbkm": 75, "timing": 60, "active": true}}, {"model": "location.place", "pk": 4, "fields": {"name": "Sportcentrum Sint-gillis Dendermonde", "address": "Van Langenhovestraat 203 A", "postal": 9200, "city": "Sint-Gillis-Bij-Dendermonde", "country": 1, "nbkm": 65, "timing": 55, "active": true}}, {"model": "location.place", "pk": 5, "fields": {"name": "Gimno Clube de Santarém", "address": "Pavilhão Gimnodesportivo de Santarém Sala 2, Nave Anexa", "postal": 2000, "city": "Santarem", "country": 2, "nbkm": 2000, "timing": 300, "active": true}}, {"model": "location.place", "pk": 6, "fields": {"name": "Evenementenhal Zonhoven", "address": "Rozenkransweg 4", "postal": 3520, "city": "Zonhoven", "country": 1, "nbkm": 100, "timing": 65, "active": true}}, {"model": "location.place", "pk": 7, "fields": {"name": "Stedelijke Sporthal Eeklo", "address": "Burgemeester Lionel Pussemierstraat 157", "postal": 9900, "city": "Eeklo", "country": 1, "nbkm": 110, "timing": 75, "active": true}}, {"model": "location.place", "pk": 8, "fields": {"name": "Sportpark Beveren", "address": "Klapperstraat 103", "postal": 9120, "city": "Beveren-Waas", "country": 1, "nbkm": 80, "timing": 80, "active": true}}, {"model": "location.place", "pk": 9, "fields": {"name": "Hemelrijkhal", "address": "Moerkantsebaan 89", "postal": 2910, "city": "Essen", "country": 1, "nbkm": 120, "timing": 75, "active": true}}, {"model": "location.place", "pk": 10, "fields": {"name": "Sportcomplex Palaestra", "address": "Kastanjelaan 35", "postal": 9800, "city": "Petegem-aan-de-Leie", "country": 1, "nbkm": 95, "timing": 60, "active": true}}, {"model": "location.place", "pk": 11, "fields": {"name": "Sporthal 't Venneke", "address": "Den Geer 21", "postal": 2180, "city": "Ekeren", "country": 1, "nbkm": 85, "timing": 55, "active": true}}, {"model": "location.place", "pk": 12, "fields": {"name": "Topsporthal Vlaanderen", "address": "Zuiderlaan 14", "postal": 9000, "city": "Gent", "country": 1, "nbkm": 85, "timing": 55, "active": true}}, {"model": "location.place", "pk": 13, "fields": {"name": "Sport Vlaanderen Netepark", "address": "Vorselaarsebaan 60", "postal": 2200, "city": "Herentals", "country": 1, "nbkm": 102, "timing": 70, "active": true}}, {"model": "location.place", "pk": 14, "fields": {"name": "Gemeentelijke Sporthal Ingelmunster", "address": "Bollewerpstraat 92A", "postal": 8770, "city": "Ingelmunster", "country": 1, "nbkm": 120, "timing": 80, "active": true}}, {"model": "location.place", "pk": 15, "fields": {"name": "Sporthal Den Uyt", "address": "Rode Kruislaan 20", "postal": 2400, "city": "Mol", "country": 1, "nbkm": 115, "timing": 80, "active": true}}, {"model": "location.place", "pk": 16, "fields": {"name": "Sporthal Bleukens", "address": "Hoolsterberg 36", "postal": 2490, "city": "Balen", "country": 1, "nbkm": 112, "timing": 75, "active": true}}, {"model": "location.club", "pk": 1, "fields": {"place": 1, "name": "Flying Acrobatics Trampoline Club", "acronym": "FATC", "active": true}}, {"model": "location.club", "pk": 2, "fields": {"place": 2, "name": "Ten Gaerde", "acronym": "TG", "active": true}}, {"model": "planning.season", "pk": 1, "fields": {"datebegin": "2018-09-03T00:00:00", "dateend": "2019-08-31T23:59:59", "label": "2018-19"}}, {"model": "planning.season", "pk": 2, "fields": {"datebegin": "2020-08-15T00:00:00", "dateend": "2021-08-14T00:00:00", "label": "2020-21"}}, {"model": "planning.eventtype", "pk": 1, "fields": {"name": "Compétition", "acronym": "CPT"}}, {"model": "planning.eventtype", "pk": 2, "fields": {"name": "Démonstration", "acronym": "Démo"}}, {"model": "planning.eventtype", "pk": 3, "fields": {"name": "Initiation", "acronym": "Ini"}}, {"model": "planning.eventtype", "pk": 4, "fields": {"name": "Stage", "acronym": "Stg"}}, {"model": "planning.event", "pk": 1, "fields": {"content": "Test de l'interface graphique", "datebegin": "2019-03-31T09:03:00", "dateend": "2019-03-31T19:03:00", "place": 8, "eventtype": 1, "name": "GymFed PV3 2019"}}, {"model": "planning.event", "pk": 2, "fields": {"content": "Championnat FfG.", "datebegin": "2019-05-05T09:30:00", "dateend": "2019-05-05T16:00:00", "place": 1, "eventtype": 1, "name": "Championnat FfG"}}, {"model": "planning.event", "pk": 3, "fields": {"content": "Chpt flamand", "datebegin": "2019-04-27T09:00:00", "dateend": "2019-04-28T18:00:00", "place": 3, "eventtype": 1, "name": "Vlaams Kampioenschap"}}, {"model": "planning.event", "pk": 4, "fields": {"content": "Fête du club l’avant dernier dimanche de juin. Répétitions générale à 10h, démo à 13.", "datebegin": "2019-06-23T09:06:00", "dateend": "2019-06-23T17:06:00", "place": 1, "eventtype": 2, "name": "Fête du club"}}, {"model": "planning.event", "pk": 5, "fields": {"content": "(à venir)", "datebegin": "2019-05-18T09:00:00", "dateend": "2019-05-19T16:00:00", "place": 4, "eventtype": 1, "name": "Championnat de Belgique 2019"}}, {"model": "planning.event", "pk": 6, "fields": {"content": "(à venir… troisième test)", "datebegin": "2019-07-04T09:07:00", "dateend": "2019-07-07T09:07:00", "place": 5, "eventtype": 1, "name": "Scalabis Cup 2019"}}, {"model": "planning.event", "pk": 7, "fields": {"content": "", "datebegin": "2019-02-10T09:00:00", "dateend": "2019-02-10T16:00:00", "place": 1, "eventtype": 1, "name": "Championnat BCBW (Open)"}}, {"model": "planning.event", "pk": 8, "fields": {"content": "", "datebegin": "2019-01-26T10:50:00", "dateend": "2019-01-27T10:50:00", "place": 6, "eventtype": 1, "name": "GymFed PV1 2019"}}, {"model": "planning.event", "pk": 9, "fields": {"content": "", "datebegin": "2019-02-16T11:26:00", "dateend": "2019-02-17T11:26:00", "place": 7, "eventtype": 1, "name": "GymFed PV2 2019"}}, {"model": "planning.event", "pk": 10, "fields": {"content": "", "datebegin": "2018-01-28T09:00:00", "dateend": "2018-01-28T17:00:00", "place": 4, "eventtype": 1, "name": "GymFed PV1 2018"}}, {"model": "planning.event", "pk": 11, "fields": {"content": "", "datebegin": "2018-03-25T09:00:00", "dateend": "2018-03-25T17:00:00", "place": 16, "eventtype": 1, "name": "GymFed PV3 2018"}}, {"model": "planning.event", "pk": 12, "fields": {"content": "", "datebegin": "2018-05-20T09:00:00", "dateend": "2018-05-20T17:00:00", "place": 9, "eventtype": 1, "name": "Championnat de Belgique 2018"}}, {"model": "planning.event", "pk": 13, "fields": {"content": "", "datebegin": "2017-01-28T09:00:00", "dateend": "2017-01-29T17:00:00", "place": 13, "eventtype": 1, "name": "GymFed PV1 2017"}}, {"model": "planning.event", "pk": 14, "fields": {"content": "", "datebegin": "2017-02-18T09:00:00", "dateend": "2017-02-19T17:00:00", "place": 14, "eventtype": 1, "name": "GymFed PV2 2017"}}, {"model": "planning.event", "pk": 15, "fields": {"content": "", "datebegin": "2017-03-25T09:00:00", "dateend": "2017-03-26T17:00:00", "place": 15, "eventtype": 1, "name": "GymFed PV3 2017"}}, {"model": "planning.event", "pk": 16, "fields": {"content": "", "datebegin": "2017-05-13T09:00:00", "dateend": "2017-05-14T17:00:00", "place": 8, "eventtype": 1, "name": "Championnat de Belgique 2017"}}, {"model": "planning.event", "pk": 18, "fields": {"content": "", "datebegin": "2020-02-01T09:00:00", "dateend": "2020-02-02T17:00:00", "place": 6, "eventtype": 1, "name": "GymFed PV1 2020"}}, {"model": "planning.event", "pk": 19, "fields": {"content": "", "datebegin": "2020-03-07T09:00:00", "dateend": "2020-03-08T17:00:00", "place": 9, "eventtype": 1, "name": "GymFed PV2 2020"}}, {"model": "planning.event", "pk": 20, "fields": {"content": "", "datebegin": "2020-03-28T09:00:00", "dateend": "2020-03-29T17:00:00", "place": 10, "eventtype": 1, "name": "GymFed PV3 2020"}}, {"model": "planning.event", "pk": 21, "fields": {"content": "", "datebegin": "2020-05-02T09:00:00", "dateend": "2020-05-03T17:00:00", "place": 11, "eventtype": 1, "name": "Vlaams Kampioenschap"}}, {"model": "planning.event", "pk": 22, "fields": {"content": "", "datebegin": "2020-05-30T09:00:00", "dateend": "2020-05-31T17:00:00", "place": 12, "eventtype": 1, "name": "Groot Belgisch Kampioenschap"}}, {"model": "planning.event_participation", "pk": 1, "fields": {"event": 5, "gymnast": 1, "rank": 10}}, {"model": "planning.event_participation", "pk": 2, "fields": {"event": 5, "gymnast": 5, "rank": 6}}, {"model": "planning.event_participation", "pk": 3, "fields": {"event": 5, "gymnast": 11, "rank": 2}}, {"model": "planning.event_participation", "pk": 4, "fields": {"event": 5, "gymnast": 4, "rank": 5}}, {"model": "planning.event_participation", "pk": 5, "fields": {"event": 5, "gymnast": 2, "rank": 5}}, {"model": "planning.event_participation", "pk": 6, "fields": {"event": 6, "gymnast": 11, "rank": 0}}, {"model": "planning.event_participation", "pk": 7, "fields": {"event": 6, "gymnast": 5, "rank": 0}}, {"model": "planning.course", "pk": 1, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 6, "hour_begin": "10:00:00", "hour_end": "12:00:00", "season": 1, "trainers": [1], "gymnasts": [9, 1, 8, 2, 6, 7]}}, {"model": "planning.course", "pk": 2, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 1, "hour_begin": "17:00:00", "hour_end": "19:00:00", "season": 1, "trainers": [1, 2], "gymnasts": [9, 1, 12, 8, 2, 4, 5, 6, 7]}}, {"model": "planning.course", "pk": 3, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 3, "hour_begin": "17:00:00", "hour_end": "19:00:00", "season": 1, "trainers": [1, 2, 3], "gymnasts": [9, 1, 8, 5, 3, 6, 7]}}, {"model": "planning.course", "pk": 4, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 5, "hour_begin": "17:15:00", "hour_end": "19:15:00", "season": 1, "trainers": [1], "gymnasts": [1, 4, 5, 3, 7]}}, {"model": "planning.course", "pk": 5, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 2, "iso_day_number": 6, "hour_begin": "19:00:00", "hour_end": "21:30:00", "season": 1, "trainers": [1], "gymnasts": [11, 4, 5]}}, {"model": "planning.course", "pk": 6, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-09-01T23:59:59", "club": 2, "iso_day_number": 6, "hour_begin": "11:00:00", "hour_end": "13:00:00", "season": 1, "trainers": [1], "gymnasts": []}}, {"model": "planning.training", "pk": 1, "fields": {"gymnast": 1, "course": 1, "trainingdate": "2019-03-16"}}, {"model": "planning.training", "pk": 2, "fields": {"gymnast": 1, "course": 2, "trainingdate": "2019-03-18"}}, {"model": "planning.training", "pk": 3, "fields": {"gymnast": 1, "course": 3, "trainingdate": "2019-03-20"}}, {"model": "planning.training", "pk": 4, "fields": {"gymnast": 1, "course": 4, "trainingdate": "2019-03-22"}}, {"model": "planning.training", "pk": 5, "fields": {"gymnast": 1, "course": 1, "trainingdate": "2019-03-23"}}, {"model": "planning.round", "pk": 1, "fields": {"content": "", "training": 1, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 2, "fields": {"content": "", "training": 1, "educative": null, "round_information": "| 1, 2 et 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 3, "fields": {"content": "", "training": 1, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 4, "fields": {"content": "", "training": 1, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 5, "fields": {"content": "", "training": 1, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 6, "fields": {"content": "", "training": 2, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 7, "fields": {"content": "", "training": 2, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 8, "fields": {"content": "", "training": 2, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 9, "fields": {"content": "", "training": 2, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 10, "fields": {"content": "", "training": 2, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 11, "fields": {"content": "", "training": 2, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 12, "fields": {"content": "", "training": 2, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 13, "fields": {"content": "", "training": 3, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 14, "fields": {"content": "", "training": 3, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 15, "fields": {"content": "", "training": 3, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 16, "fields": {"content": "", "training": 3, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 17, "fields": {"content": "", "training": 3, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 18, "fields": {"content": "", "training": 3, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 19, "fields": {"content": "", "training": 3, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 20, "fields": {"content": "", "training": 4, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": 9, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 21, "fields": {"content": "", "training": 4, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 22, "fields": {"content": "", "training": 4, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": 8, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 23, "fields": {"content": "", "training": 4, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 24, "fields": {"content": "", "training": 4, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 25, "fields": {"content": "", "training": 4, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": 7, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 26, "fields": {"content": "", "training": 4, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": 7, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 27, "fields": {"content": "", "training": 5, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 28, "fields": {"content": "", "training": 5, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 29, "fields": {"content": "", "training": 5, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 30, "fields": {"content": "", "training": 5, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 31, "fields": {"content": "", "training": 5, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 32, "fields": {"content": "", "training": 5, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 33, "fields": {"content": "", "training": 5, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 34, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [-5]", "round_number": 8, "gymnast_evaluation": null, "coach_evaluation": 6, "coachid": null, "nb_of_realisation": 2, "nb_of_success": null, "is_important": true}}, {"model": "planning.round", "pk": 35, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [3-6]", "round_number": 9, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 2, "nb_of_success": null, "is_important": true}}, {"model": "planning.round", "pk": 36, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [6-8]", "round_number": 10, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": true}}, {"model": "planning.round", "pk": 37, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [8-]", "round_number": 11, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": true}}, {"model": "objective.educative", "pk": 1, "fields": {"content": "", "label": "Saut groupé", "short_label": "o", "difficulty": "0.0", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 2, "fields": {"content": "", "label": "Chandelle", "short_label": "Chandelle", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 3, "fields": {"content": "", "label": "Saut carpé", "short_label": "<", "difficulty": "0.0", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "educatives": [5, 10], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 4, "fields": {"content": "", "label": "Saut écart", "short_label": "//", "difficulty": "0.0", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 5, "fields": {"content": "", "label": "Tomber Assis", "short_label": "Assis", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [184], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 6, "fields": {"content": "", "label": "Tomber plat dos tendu bras en haut", "short_label": "Plat dos (beh)", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [199, 185, 5], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 7, "fields": {"content": "", "label": "Tomber plat dos groupé", "short_label": "Plat dos o", "difficulty": "0.1", "level": 3, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [1, 6], "prerequisites": [277, 6]}}, {"model": "objective.educative", "pk": 8, "fields": {"content": "", "label": "Tomber plat dos carpé", "short_label": "Plat dos <", "difficulty": "0.1", "level": 3, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [3, 6], "prerequisites": [278, 6]}}, {"model": "objective.educative", "pk": 9, "fields": {"content": "", "label": "Tomber dos", "short_label": "Dos", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [185, 6], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 10, "fields": {"content": "Commentaires concernant le 4 pattes :\r\n\r\n - comment l'aborder\r\n - les erreurs 'courantes'\r\n - blablabla\r\n - …", "label": "Tomber quadrupédique", "short_label": "4 pattes", "difficulty": "0.1", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [183], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 11, "fields": {"content": "", "label": "Tomber ventre", "short_label": "Ventre", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [181, 197], "prerequisites": [10]}}, {"model": "objective.educative", "pk": 12, "fields": {"content": "", "label": "Tomber ventre ouvert", "short_label": "Ventre (", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 13, "fields": {"content": "", "label": "Tomber dos fermé", "short_label": "Dos fermé", "difficulty": "0.1", "level": 4, "rank": 10, "age_boy": 8, "age_girl": 8, "educatives": [9], "prerequisites": [2, 6]}}, {"model": "objective.educative", "pk": 14, "fields": {"content": "", "label": "Debout (de l'assis)", "short_label": "Debout", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [184], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 15, "fields": {"content": "", "label": "Debout (du ventre)", "short_label": "Debout", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [182], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 16, "fields": {"content": "", "label": "Debout (du dos)", "short_label": "Debout", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [14], "prerequisites": [9]}}, {"model": "objective.educative", "pk": 17, "fields": {"content": "", "label": "Petit piqué groupé", "short_label": "Petit piqué", "difficulty": "0.3", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [261]}}, {"model": "objective.educative", "pk": 18, "fields": {"content": "", "label": "Petit piqué carpé", "short_label": "Petit piqué <", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [17]}}, {"model": "objective.educative", "pk": 19, "fields": {"content": "", "label": "Piqué tendu", "short_label": "Piqué", "difficulty": "0.3", "level": 8, "rank": 9, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [155]}}, {"model": "objective.educative", "pk": 20, "fields": {"content": "", "label": "Piqué groupé", "short_label": "Piqué o", "difficulty": "0.3", "level": 6, "rank": 6, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [356, 153]}}, {"model": "objective.educative", "pk": 21, "fields": {"content": "", "label": "Piqué carpé", "short_label": "Piqué <", "difficulty": "0.3", "level": 7, "rank": 9, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [357, 154]}}, {"model": "objective.educative", "pk": 22, "fields": {"content": "Il constitue une étape à franchir très importante pour le débutant. C'est l'exercice qui va lui permettre de passer dans un monde nouveau, inconnu, les rotations aériennes en avant. Il fascine les jeunes élèves en raison de l'apparente facilité de réalisation et de leur envie pressante de réaliser leurs premiers saltos.\r\n\r\nLe salto avant est une rotation transversale avant de 360° dans l’espace, départ de la station debout arrivée à la station debout.\r\n\r\n\r\n## Analyse technique\r\nA l’entrée de la toile, les bras sont verticaux au dessus de la tête, le corps allongé et gainé en fond de toile. Il ne faut pas anticiper le mouvement par un balayage du buste, mais bien attendre le renvoi de la toile. En sortie de celle-ci, nous aurons un balayage du buste synchronisé avec le renvoi de la toile.\r\n\r\nLors de la mise en rotation, les fessiers et les abdominaux doivent être contractés énergiquement afin d’éviter que le bassin ne parte vers l’arrière. Le regard sera dirigé vers les jambes pendant la rotation. L’inconvénient à l’ouverture du salto avant est que la prise d’informations visuelles ne vient que très tardivement. C’est pourquoi le salto avant ne s'utilise pas à l'intérieur d'une série, il sera remplacé avantageusement pas un *barani*, qui permet une prise d'informations visuelles plus favorable à l'enchaînement.\r\n\r\nLes bras, les omoplates et les épaules seront soulevés en direction du plafond, légèrement vers l’avant. Le corps s’élève, puis une action énergique de fermeture permet d’adopter une position groupée ou carpée. Cette action sera suivie de l’action inverse d’ouverture à l’oblique avant haute pour être totale à une heure au plus tard, les bras collés le long du corps. Le corps amorcera l’approche de la toile en restant dans une position gainée.\r\n\r\n\r\n## Biomécanique\r\nAu take-off, les membres inférieurs sont verticaux, le tronc incliné vers l'avant formant un angle de rotation de 50° par rapport à la verticale. Les membres supérieurs sont élevés, tendus au dessus de la tête. Le regard est fixé au loin à l'oblique basse. Cette position placera le centre de gravité en avant du polygone de sustentation.\r\n\r\nL'élévation du corps est créée par la réaction de la toile à l'action des membres inférieurs, tendus en sortie de toile. Le centre de gravité se trouvant en avant de la réaction de la toile, la poussée est excentrique et crée une rotation en avant autour d'un axe transversal.\r\n\r\nL'abaissement des membres supérieurs augmente le moment angulaire de l'ensemble du corps (transfert de moments angulaires relatifs). La projection du centre de gravité est légèrement en avant de la base d'appui. Le *salto avant* va se réaliser avec un déplacement vers l'avant (30 à 50 cm). Ce déplacement est normal et doit être recherché par l'exécutant.\r\n\r\nLe corps s'élève animé d'une rotation vers l'avant autour de l'axe transversal. Une action dynamique et explosive de fermeture du corps permet d’adopter soit une position groupée, soit une position carpée. Cette fermeture sur le tronc se fait lors de la phase ascendante. La position est bien marquée, les mains attrapent les genoux ou les chevilles et la vitesse maximale de la rotation est, à ce moment, atteinte.\r\n\r\nLa fermeture est suivie d’une action inverse d’ouverture tout aussi dynamique et explosive, à la verticale. Les jambes, les cuisses et le bassin commencent à se réaligner, les bras s’allongent le long du corps pour tendre vers une position tendue.\r\n\r\nL'action de pénétration des membres inférieurs dans la toile doit être verticale afin que leur cône de pénétration soit symétrique par rapport à une verticale abaissée au centre du polygone de sustentation. C'est cette condition qui permet d'obtenir une réaction verticale utilisée par le trampoliniste pour la réalisation du saut suivant.\r\n\r\n\r\n## Démarche pédagogique\r\nComme dans toute réalisation nouvelle, il ne faut pas exiger du débutant un salto avant parfait, et surtout pas une ouverture parfaite, que ce soit en termes de position ou de timing. L'ouverture idéale ne pourra se faire que quand l'élève aura acquis tous les éléments nécessaires à sa réalisation, à commencer par la capacité de réaliser un salto avant carpé (pour un groupé) ou tendu (pour un carpé), ainsi que la capacité de réaliser un salto avant groupé (ou carpé suivant le cas) jusqu'au ventre.\r\n\r\nLors de l'apprentissage, il ne faudra pas hésiter à être progressif et à avancer étapes par étapes. Il ne faudra pas non plus hésiter à avoir recours à des manipulations. Manipulations et utilisation de tapis ont un point commun : mieux vaut une fois de trop qu'une fois trop peu !\r\n\r\n\r\n### Prérequis\r\n\r\nToutes les figures avec un départ vers l'avant préparent au *salto avant*. Nous y retrouvons l'essentiel : la poussée complète, le placement des membres supérieurs et la position de la tête.\r\n\r\n - 4 pattes\r\n - Ventre\r\n - Petit piqué\r\n - Culbute avant (au sol)\r\n\r\nAttention cependant au départ de ces figures : certaines, telles que le *4 pattes* et le *ventre* n'utilisent pas le même mouvement de bras. Le *salto avant*, le *petit piqué*, ... exigent un placement de bras alors que le *ventre* et le *4 pattes* exigent un lancer de bras.\r\n\r\n\r\n### Educatifs\r\n\r\nVoici un ensemble d'éducatifs qu'il est possible de travailler grâce à des montages au sol.\r\n\r\n#### montage pour rotation\r\n\r\n - Culbute sur banc ou plinth (axe).\r\n - Culbute sur mousse penché (vitesse).\r\n\r\n\r\n#### montage pour départ\r\n\r\n - Culbute par-dessus un obstacle (enrouler).\r\n - Culbute sur un obstacle (montée).\r\n\r\n\r\n#### montage pour ouverture\r\n\r\n - Culbute sur un mousse élevé, arrivée à terre.\r\n - Culbute sur un mousse penché, ouverture plat dos.\r\n\r\n\r\n\r\n\r\n### Progressions\r\n\r\nDeux progressions différentes existent pour aborder le *salto avant*. Il n'y en a pas de meilleure ou de moins bonne : leur efficacité dépend des facilités d'apprentissage de l'élève et du bagage acrobatique déjà acquis. Mais avant d'aborder ces deux progressions, il faut en réaliser une autre : l'apprentissage de l'anticipation de bras.\r\n\r\n#### Apprentissage de l’anticipation de bras\r\n\r\nLa technique n'est pas très compliquée. Néanmoins, c'est un mouvement qui sera utile tout au long de la carrière du trampoliniste. Il ne faut donc pas hésiter à prendre le temps nécessaire pour que l'élève maîtrise correctement cette technique.\r\n\r\nIl faut commencer par demander à l'élève de réaliser plusieurs chandelles en gardant les bras tendus, collés aux oreilles. L'élève doit ensuite réaliser le même exercice mais, cette fois, les bras tendus, en bas, collés au corps.\r\n\r\nDemander ensuite à l'élève de réaliser des chandelles alternées : lors de la première, l'élève monte les bras ; lors de la suivante, il les abaisse. La montée et descente des bras se fait par le côté. Une fois l'élève capable de cela, il faut lui demander de réaliser le même exercice avec la montée et la descente des bras au cours de la même chandelle.\r\n\r\nL'élève doit ensuite réaliser l'anticipation de bras, à savoir trois mouvements de bras au cours de la même chandelle. Les deux premiers sont les mouvements normaux d'une chandelle habituelle, le deuxième est simplement réalisé plus rapidement afin de pouvoir, avant d'avoir atteint la phase de landing, commencer à remonter les bras de manière à ce que, au point mort bas, les bras soient correctement placés, tendus, collés aux oreilles.\r\n\r\nUne fois cette étape maîtrisée, on peut varier le saut sur lequel l'anticipation de bras est faite, en commençant par un saut de base.\r\n\r\n#### Par 4 pattes\r\n\r\nPasser par la position quadrupédique est sans doute la première approche qui peut être faite du salto avant de par sa similitude avec ce dernier et sa simplicité d’exécution. Cette approche permettra aussi de travailler l'ouverture ainsi que le contrôle de rotation.\r\n\r\nIl ne faudra pas hésiter à revenir à certaines de ces étapes une fois le salto acquis, afin d’accroître la maîtrise des moments précités. Avant d'aborder le vif du sujet nous proscrirons une étape précise, celle du *4 pattes - ATR*. Cette étape nécessite la mise de main dans la toile va amener à une ouverture des épaules, du corps, \\ldots et cela contrecarrera l'apprentissage plus qu'autre chose.\r\n\r\nIl faut, comme première étape, reprendre une étape de la progression du *petit piqué* : Demander à l'élève de réaliser un *4 pattes - ½ salto, dos*. Là encore, les mains restent en contact jusqu'au passage de tête de l'exécutant et, lors des premières réalisations, l’entraîneur veillera à demander à l'élève d'aller jusqu'à l'assis avant de demander une arrivée dos : mieux vaut s'assurer que l'exécutant à trop de rotation (arrivée assis) plutôt que trop peu (arrivée nuque).\r\n\r\nA partir de cette progression, et une fois celle-ci maîtrisée, il faut demander à l'élève de réaliser une fermeture groupée immédiatement suivie d'une demi-ouverture afin d'arriver assis. Une fois l'arrivée assis bien maîtrisée, demander à l'élève de réaliser le même exercice mais avec une arrivée plat dos. Ici encore il vaut mieux d'abord privilégier une grande quantité de rotation avant d'affiner le contrôle et de diminuer cette quantité. Cet étape peut continuer d'être travaillée en parallèle et même après l'étape suivante, en mettant alors l'accent sur le moment et le dynamisme de l'ouverture.\r\n\r\nL'étape d'après consiste à demander à l'élève une arrivée debout, droit, sur ses pieds et, si possible, de pouvoir effectuer une chandelle après. Il faudra veiller à privilégier une légère sous-rotation afin d'éviter les accidents.\r\n\r\nCes deux dernières étapes devraient, dans l'idéal, également pouvoir être réalisées à partir d'un tomber genoux. De la sorte, le nombre de quarts de rotation du buste est augmenté et participe ainsi à la complexification de l'étape d'apprentissage.\r\n\r\n#### Par culbute\r\n\r\nSeconde approche du salto avant. Celle-ci à l'avantage de mettre l'accent sur la mise en rotation depuis la station, via l'évolution vers un placement de plus en plus droit.\r\n\r\nLà aussi, des étapes de la progression du *petit piqué* seront reprises et quelque peu modifiées afin de mieux correspondre à notre objectif.\r\n\r\nDemander à l'élève de se placer sur une des lignes rouges verticales, accroupi, et de réaliser une culbute avant comme s'il se trouvait au sol. Demander plusieurs répétitions et veiller au bon placement des mains, au rentrer de tête de l'élève et à la manière dont il pilote la culbute. Cette dernière devra se faire le plus possible sur un axe frontal à l'élève. Si, une fois cette étape maîtrisée, l'élève peut faire pareil avec une prise des genoux en mains.\r\n\r\nDemander à l'élève de se placer sur une des lignes rouges, accroupi, et de réaliser une culbute avant, bras tendus sur le côté afin que les mains ne puissent pas prendre appui sur la toile. Demander plusieurs répétitions et veiller au bon placement des mains, au rentrer de tête de l'élève et à la manière dont il pilote la culbute. Cette dernière devra se faire le plus possible sur un axe frontal à l'élève. Si, une fois cette étape maîtrisée, l'élève peut faire pareil avec une prise des genoux en mains, cela sera utile pour plus tard. Une fois maîtrisé depuis un départ accroupi, demander le même exercice, départ debout dans une position carpée, bras tendus sur le côté, avec les jambes pliées (elles devront l'être de moins en moins au fil des répétitions, jusqu'à être complètement tendues).\r\n\r\nMême démarche qu'à l’étape précédente, si ce n'est que l'élève doit essayer, lors de sa culbute, que ni les mains ni la tête (y compris l'arrière de celle-ci) ne touche le support à aucun moment. Si l'élève n'y arrive pas, l'entraîneur peut lui conseiller de donner une impulsion avec ses chevilles et ses pieds afin de pouvoir arriver directement sur le haut du dos lors de la culbute.\r\n\r\nDemander à l'élève de se placer sur une des lignes rouges, debout, jambes tendues, en position carpée, et de réaliser une culbute avant, bras tendus sur le côté, de manière à ce que ni les mains, ni la tête ne touchent le support devant lui. Cette fois-ci l'élève doit faire des rebonds, même petits. Dans un premier temps, il sera demandé à l'élève d'aller jusqu'à l'assis, puis, une fois que cette arrivée sera maîtrisée, il lui sera alors demandé de n'aller \"que\" jusqu'au dos. Une fois que l'élève commence à maîtriser l'exercice, l'amplitude des bonds peut être augmentée.\r\n\r\n\r\n\r\n### Défauts type\r\n#### Appréhension au départ\r\n\r\n - Se penche en avant/Recule les pieds à la dernière chandelle.\r\n - Fermeture du bassin dans la toile.\r\n - Trop rapide avec les bras.\r\n - Ne regarde pas devant.\r\n - Ne travaille pas avec les épaules.\r\n\r\n\r\n#### Appréhension à l’arrivée\r\n\r\n - Regarde sur le côté à l’ouverture.\r\n - Reste corps fermé pour regarder en bas.\r\n - Ouvre trop le corps (banane), cherche la toile avec les pieds.\r\n\r\n\r\n## Evolutions\r\nLe *salto avant* a peu d'utilité en tant que tel mais possède deux évolutions principales : le *barani* et le *double avant* soit via la *1 ¾* soit via le *half out*. Une autre évolution possible est d'utiliser le salto avant à la suite d'une arrivée dos via le *ball out* ou *barani ball out*.", "label": "Salto avant groupé", "short_label": "Avant o", "difficulty": "0.5", "level": 5, "rank": 8, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [207, 259, 17]}}, {"model": "objective.educative", "pk": 23, "fields": {"content": "", "label": "Salto avant carpé", "short_label": "Avant <", "difficulty": "0.6", "level": 6, "rank": 9, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": [380, 18]}}, {"model": "objective.educative", "pk": 24, "fields": {"content": "", "label": "Salto avant tendu", "short_label": "Avant /", "difficulty": "0.6", "level": 8, "rank": 10, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [23]}}, {"model": "objective.educative", "pk": 25, "fields": {"content": "", "label": "Salto arrière groupé", "short_label": "Arrière o", "difficulty": "0.5", "level": 7, "rank": 8, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [362, 46, 7]}}, {"model": "objective.educative", "pk": 26, "fields": {"content": "", "label": "Salto arrière carpé", "short_label": "Arrière <", "difficulty": "0.6", "level": 8, "rank": 9, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [362, 47, 8]}}, {"model": "objective.educative", "pk": 27, "fields": {"content": "Cf info \"trampoline\" France : abordage des positions carpés et tendues en même temps que le groupé.", "label": "Salto arrière tendu", "short_label": "Arrière /", "difficulty": "0.6", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 28, "fields": {"content": "", "label": "Demi tour", "short_label": "½ tour", "difficulty": "0.1", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 29, "fields": {"content": "", "label": "Vrille", "short_label": "Vrille", "difficulty": "0.2", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [2], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 30, "fields": {"content": "", "label": "Cody groupé", "short_label": "Cody o", "difficulty": "0.6", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [36]}}, {"model": "objective.educative", "pk": 31, "fields": {"content": "### Apprentissage\r\nPlusieurs étapes peuvent être utilisée pour approcher le barani o.\r\n\r\n#### 4 pattes - avant, plat dos - 1/2 debout\r\n\r\n* un bon 4 pattes\r\n* pousser le dos haut vers le plafond\r\n* ouverture en plat dos\r\n\r\n#### 3/4 Avant o - 1/2 debout\r\n1. bon départ vers le haut\r\n2. bras bien placés à la vertical\r\n3. poussée des épaule vers le plafond au départ...\r\n\r\nEt encore plein d'autres étapes.", "label": "Barani groupé", "short_label": "Barani o", "difficulty": "0.6", "level": 6, "rank": 8, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [22, 153]}}, {"model": "objective.educative", "pk": 32, "fields": {"content": "", "label": "Barani carpé", "short_label": "Barani <", "difficulty": "0.6", "level": 7, "rank": 10, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [23, 154]}}, {"model": "objective.educative", "pk": 33, "fields": {"content": "", "label": "Barani tendu", "short_label": "Barani /", "difficulty": "0.6", "level": 8, "rank": 11, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": [24, 155]}}, {"model": "objective.educative", "pk": 34, "fields": {"content": "", "label": "Demi tour tomber ventre", "short_label": "½ ventre", "difficulty": "0.2", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [201, 203], "prerequisites": [28, 6, 11]}}, {"model": "objective.educative", "pk": 35, "fields": {"content": "", "label": "Demi tour dos", "short_label": "½ dos", "difficulty": "0.2", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [9, 6, 11, 202], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 36, "fields": {"content": "", "label": "Ventre - plat dos tendu", "short_label": "Ventre - Plat dos /", "difficulty": "0.2", "level": 5, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [15, 6, 372]}}, {"model": "objective.educative", "pk": 37, "fields": {"content": "", "label": "Ventre - Dos", "short_label": "Ventre - Dos", "difficulty": "0.2", "level": 5, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [15, 6, 11]}}, {"model": "objective.educative", "pk": 38, "fields": {"content": "", "label": "Ventre - demi tour, ventre", "short_label": "Ventre - ½, ventre", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [37]}}, {"model": "objective.educative", "pk": 39, "fields": {"content": "", "label": "Dos - vrille, dos", "short_label": "Cattwist", "difficulty": "0.2", "level": 4, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [187, 211, 203, 185, 202], "prerequisites": [262, 202]}}, {"model": "objective.educative", "pk": 40, "fields": {"content": "", "label": "Porpus groupé", "short_label": "Porpus o", "difficulty": "0.5", "level": 6, "rank": 9, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": [104]}}, {"model": "objective.educative", "pk": 41, "fields": {"content": "", "label": "Porpus carpé", "short_label": "Porpus <", "difficulty": "0.6", "level": 7, "rank": 10, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [104, 40]}}, {"model": "objective.educative", "pk": 42, "fields": {"content": "", "label": "Porpus tendu", "short_label": "Porpus /", "difficulty": "0.6", "level": 8, "rank": 10, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [41]}}, {"model": "objective.educative", "pk": 43, "fields": {"content": "", "label": "Arrière groupé jusqu'au dos", "short_label": "Arrière o, dos", "difficulty": "0.6", "level": 8, "rank": 8, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": [25]}}, {"model": "objective.educative", "pk": 44, "fields": {"content": "", "label": "Arrière carpé jusqu'au dos", "short_label": "Arrière <, dos", "difficulty": "0.7", "level": 9, "rank": 9, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": [26]}}, {"model": "objective.educative", "pk": 45, "fields": {"content": "", "label": "Arrière tendu jusqu'au dos", "short_label": "Arrière /, dos", "difficulty": "0.7", "level": 10, "rank": 10, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": [27]}}, {"model": "objective.educative", "pk": 46, "fields": {"content": "", "label": "Pull-over groupé", "short_label": "PO o", "difficulty": "0.3", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [10], "prerequisites": [9]}}, {"model": "objective.educative", "pk": 47, "fields": {"content": "", "label": "Pull-over carpé", "short_label": "PO <", "difficulty": "0.3", "level": 5, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [10], "prerequisites": [9]}}, {"model": "objective.educative", "pk": 48, "fields": {"content": "", "label": "Dos - double vrille, dos", "short_label": "2 Cattwist", "difficulty": "0.4", "level": 6, "rank": 9, "age_boy": 8, "age_girl": 8, "educatives": [212], "prerequisites": [39]}}, {"model": "objective.educative", "pk": 49, "fields": {"content": "", "label": "Dos - triple vrille, dos", "short_label": "3 Cattwist", "difficulty": "0.6", "level": 8, "rank": 11, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [48]}}, {"model": "objective.educative", "pk": 50, "fields": {"content": "", "label": "Trois quart Arrière groupé", "short_label": "¾ Arrière o", "difficulty": "0.3", "level": 8, "rank": 8, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [125]}}, {"model": "objective.educative", "pk": 51, "fields": {"content": "", "label": "Trois quart Arrière carpé", "short_label": "¾ Arrière <", "difficulty": "0.3", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [383]}}, {"model": "objective.educative", "pk": 52, "fields": {"content": "", "label": "Trois quart Arrière tendu", "short_label": "¾ Arrière /", "difficulty": "0.3", "level": 10, "rank": 10, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [385]}}, {"model": "objective.educative", "pk": 53, "fields": {"content": "", "label": "Salto avant groupé jusqu'au ventre", "short_label": "Avant o, ventre", "difficulty": "0.6", "level": 8, "rank": 9, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": [22]}}, {"model": "objective.educative", "pk": 54, "fields": {"content": "", "label": "Salto avant carpé jusqu'au ventre", "short_label": "Avant <, ventre", "difficulty": "0.6", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": [23]}}, {"model": "objective.educative", "pk": 56, "fields": {"content": "", "label": "Barani carpé jusqu'au dos", "short_label": "Barani <, dos", "difficulty": "0.7", "level": 8, "rank": 11, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [32]}}, {"model": "objective.educative", "pk": 57, "fields": {"content": "", "label": "Barani tendu jusqu'au dos", "short_label": "Barani /, dos", "difficulty": "0.7", "level": 9, "rank": 9, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": [33]}}, {"model": "objective.educative", "pk": 58, "fields": {"content": "", "label": "Barani Ball Out groupé", "short_label": "BBO o", "difficulty": "0.7", "level": 8, "rank": 11, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": [169]}}, {"model": "objective.educative", "pk": 59, "fields": {"content": "", "label": "Barani Ball Out carpé", "short_label": "BBO <", "difficulty": "0.7", "level": 9, "rank": 12, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": [170]}}, {"model": "objective.educative", "pk": 60, "fields": {"content": "", "label": "Barani Ball Out tendu", "short_label": "BBO /", "difficulty": "0.7", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": [274]}}, {"model": "objective.educative", "pk": 61, "fields": {"content": "", "label": "Cody carpé", "short_label": "Cody <", "difficulty": "0.6", "level": 10, "rank": 10, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": [30]}}, {"model": "objective.educative", "pk": 62, "fields": {"content": "", "label": "Cody tendu", "short_label": "Cody /", "difficulty": "0.6", "level": 13, "rank": 13, "age_boy": 10, "age_girl": 13, "educatives": [], "prerequisites": [160]}}, {"model": "objective.educative", "pk": 63, "fields": {"content": "", "label": "Pull-over groupé jusqu'au dos", "short_label": "PO o, dos", "difficulty": "0.5", "level": 6, "rank": 8, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [46]}}, {"model": "objective.educative", "pk": 64, "fields": {"content": "", "label": "Pull-over carpé jusqu'au dos", "short_label": "PO <, dos", "difficulty": "0.5", "level": 7, "rank": 9, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [47]}}, {"model": "objective.educative", "pk": 65, "fields": {"content": "", "label": "Barani in full out groupé", "short_label": "BIFO o", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 15, "age_girl": 16, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 66, "fields": {"content": "", "label": "Barani in full out carpé", "short_label": "BIFO <", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 67, "fields": {"content": "", "label": "Barani in full out tendu", "short_label": "BIFO /", "difficulty": "1.5", "level": 16, "rank": 16, "age_boy": 17, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 68, "fields": {"content": "", "label": "Demi tour assis", "short_label": "½ Assis", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [28, 5]}}, {"model": "objective.educative", "pk": 69, "fields": {"content": "", "label": "Demi tour debout (de l'assis)", "short_label": "½ debout", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [14, 28], "prerequisites": [14, 28]}}, {"model": "objective.educative", "pk": 70, "fields": {"content": "", "label": "Demi tour debout (de ventre)", "short_label": "½ Debout", "difficulty": "0.2", "level": 3, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [182, 70], "prerequisites": [15, 28]}}, {"model": "objective.educative", "pk": 71, "fields": {"content": "", "label": "Demi tour debout (du dos)", "short_label": "½ debout", "difficulty": "0.2", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [16, 28], "prerequisites": [16, 28]}}, {"model": "objective.educative", "pk": 72, "fields": {"content": "", "label": "1 ¾ Avant groupé", "short_label": "1 ¾ o", "difficulty": "0.8", "level": 9, "rank": 13, "age_boy": 11, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 73, "fields": {"content": "", "label": "1 ¾ Avant carpé", "short_label": "1 ¾ <", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 12, "age_girl": 13, "educatives": [], "prerequisites": [72]}}, {"model": "objective.educative", "pk": 74, "fields": {"content": "", "label": "Rudy tendu", "short_label": "Rudy", "difficulty": "0.8", "level": 10, "rank": 13, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": [77]}}, {"model": "objective.educative", "pk": 75, "fields": {"content": "", "label": "Rudy groupé", "short_label": "Rudy o", "difficulty": "0.8", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [389]}}, {"model": "objective.educative", "pk": 76, "fields": {"content": "", "label": "Rudy carpé", "short_label": "Rudy <", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": [390]}}, {"model": "objective.educative", "pk": 77, "fields": {"content": "", "label": "Trois quart avant tendu + vrille", "short_label": "¾ Avant / + vrille", "difficulty": "0.5", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 78, "fields": {"content": "", "label": "Full avant jusqu'au ventre", "short_label": "Barani + ½, ventre", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 79, "fields": {"content": "", "label": "Prog BIFO groupé", "short_label": "Prog BIFO o", "difficulty": "1.0", "level": 11, "rank": 11, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 80, "fields": {"content": "", "label": "Prog BIFO carpé", "short_label": "Prog BIFO <", "difficulty": "1.1", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 81, "fields": {"content": "", "label": "Prog BIFO tendu", "short_label": "Prog BIFO /", "difficulty": "1.1", "level": 13, "rank": 13, "age_boy": 15, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 82, "fields": {"content": "", "label": "Assis - vrille, assis", "short_label": "Roller", "difficulty": "0.2", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "educatives": [179, 178, 201, 210], "prerequisites": []}}, {"model": "objective.educative", "pk": 83, "fields": {"content": "", "label": "Vrille, dos", "short_label": "Vrille, dos", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 84, "fields": {"content": "", "label": "Vrille, ventre", "short_label": "Vrille, ventre", "difficulty": "0.3", "level": 5, "rank": 5, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 85, "fields": {"content": "", "label": "Vrille, assis", "short_label": "Vrille, assis", "difficulty": "0.2", "level": 4, "rank": 4, "age_boy": 7, "age_girl": 7, "educatives": [179, 178, 201, 199], "prerequisites": []}}, {"model": "objective.educative", "pk": 86, "fields": {"content": "", "label": "Rudy out fliffis carpé", "short_label": "Rudy out <", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": [276, 110]}}, {"model": "objective.educative", "pk": 87, "fields": {"content": "", "label": "Prog FIRO groupé", "short_label": "Prog FIRO o", "difficulty": "1.2", "level": 12, "rank": 12, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 88, "fields": {"content": "", "label": "Prog FIRO carpé", "short_label": "Prog FIRO <", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 89, "fields": {"content": "", "label": "Prog FIRO tendu", "short_label": "Prog FIRO /", "difficulty": "1.3", "level": 14, "rank": 14, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 90, "fields": {"content": "", "label": "Dos - vrille et demi, dos", "short_label": "Corkscrew", "difficulty": "0.5", "level": 7, "rank": 11, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": [145]}}, {"model": "objective.educative", "pk": 91, "fields": {"content": "", "label": "Double salto arrière groupé", "short_label": "2 Back o", "difficulty": "1.0", "level": 11, "rank": 11, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": [45]}}, {"model": "objective.educative", "pk": 92, "fields": {"content": "", "label": "Double salto arrière carpé", "short_label": "2 Back <", "difficulty": "1.2", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 14, "educatives": [], "prerequisites": [91]}}, {"model": "objective.educative", "pk": 93, "fields": {"content": "", "label": "Double salto arrière tendu", "short_label": "2 Back /", "difficulty": "1.2", "level": 13, "rank": 14, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": [317, 412]}}, {"model": "objective.educative", "pk": 94, "fields": {"content": "10 chandelles chronométrées.", "label": "10 chandelles", "short_label": "10 Chandelles", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": null, "age_girl": null, "educatives": [171], "prerequisites": []}}, {"model": "objective.educative", "pk": 95, "fields": {"content": "", "label": "Full", "short_label": "Full", "difficulty": "0.7", "level": 12, "rank": 12, "age_boy": 10, "age_girl": 10, "educatives": [228], "prerequisites": [227, 226]}}, {"model": "objective.educative", "pk": 96, "fields": {"content": "", "label": "Half out Triffis carpé", "short_label": "Triffis <", "difficulty": "2.0", "level": 20, "rank": 20, "age_boy": 18, "age_girl": null, "educatives": [], "prerequisites": [97]}}, {"model": "objective.educative", "pk": 97, "fields": {"content": "", "label": "Half out Triffis groupé", "short_label": "Triffis o", "difficulty": "1.7", "level": 17, "rank": 17, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": [98]}}, {"model": "objective.educative", "pk": 98, "fields": {"content": "", "label": "2 ¾ avant groupé", "short_label": "2 ¾ avant o", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 16, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 99, "fields": {"content": "", "label": "2 ¾ avant carpé", "short_label": "2 ¾ avant <", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 16, "educatives": [], "prerequisites": [98]}}, {"model": "objective.educative", "pk": 100, "fields": {"content": "", "label": "Assis - demi tour, Assis", "short_label": "Assis - ½, Assis", "difficulty": "0.1", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [180, 14, 28, 68, 5], "prerequisites": [180]}}, {"model": "objective.educative", "pk": 101, "fields": {"content": "", "label": "Assis - ventre tendu", "short_label": "Assis - ventre /", "difficulty": "0.1", "level": 4, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 102, "fields": {"content": "", "label": "Assis - demi tour, dos", "short_label": "Assis - ½, dos", "difficulty": "0.2", "level": 5, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [100, 199], "prerequisites": []}}, {"model": "objective.educative", "pk": 104, "fields": {"content": "", "label": "Dos - ventre tendu", "short_label": "Dos - ventre", "difficulty": "0.2", "level": 6, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [101]}}, {"model": "objective.educative", "pk": 105, "fields": {"content": "", "label": "Dos - demi tour, dos", "short_label": "Dos - ½, dos", "difficulty": "0.3", "level": 5, "rank": 9, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [104]}}, {"model": "objective.educative", "pk": 106, "fields": {"content": "", "label": "Double full", "short_label": "2 full", "difficulty": "0.9", "level": 14, "rank": 14, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 107, "fields": {"content": "", "label": "Triple full", "short_label": "3 full", "difficulty": "1.1", "level": 16, "rank": 16, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 108, "fields": {"content": "", "label": "Randy", "short_label": "Randy", "difficulty": "1.0", "level": 13, "rank": 14, "age_boy": 13, "age_girl": 15, "educatives": [], "prerequisites": [74]}}, {"model": "objective.educative", "pk": 109, "fields": {"content": "", "label": "Ady", "short_label": "Ady", "difficulty": "1.2", "level": 13, "rank": 13, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": [108]}}, {"model": "objective.educative", "pk": 110, "fields": {"content": "", "label": "Rudy out fliffis groupé", "short_label": "Rudy out o", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 111, "fields": {"content": "", "label": "Half In Half Out groupé", "short_label": "HIHO o", "difficulty": "1.2", "level": 12, "rank": 12, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 112, "fields": {"content": "", "label": "Half In Half Out carpé", "short_label": "HIHO <", "difficulty": "1.4", "level": 13, "rank": 13, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 113, "fields": {"content": "", "label": "Half out fliffis groupé", "short_label": "Out o", "difficulty": "1.1", "level": 11, "rank": 11, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 114, "fields": {"content": "", "label": "Half out fliffis carpé", "short_label": "Out <", "difficulty": "1.3", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 115, "fields": {"content": "", "label": "Full In Rudy Out groupé", "short_label": "FIRO o", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 116, "fields": {"content": "", "label": "Full In Rudy Out carpé", "short_label": "FIRO <", "difficulty": "1.7", "level": 17, "rank": 17, "age_boy": 18, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 117, "fields": {"content": "", "label": "Randy out fliffis groupé", "short_label": "Randy out o", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 18, "educatives": [], "prerequisites": [110]}}, {"model": "objective.educative", "pk": 118, "fields": {"content": "", "label": "Randy out fliffis carpé", "short_label": "Randy out <", "difficulty": "1.7", "level": 17, "rank": 17, "age_boy": 17, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 119, "fields": {"content": "", "label": "Full In Rudy Out tendu", "short_label": "FIRO /", "difficulty": "1.7", "level": 18, "rank": 18, "age_boy": 18, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 120, "fields": {"content": "", "label": "Half In Half Out tendu", "short_label": "HIHO /", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 16, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 121, "fields": {"content": "", "label": "Half In Rudy Out groupé", "short_label": "HIRO o", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": 14, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 122, "fields": {"content": "", "label": "Half In Rudy Out carpé", "short_label": "HIRO <", "difficulty": "1.6", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 18, "educatives": [], "prerequisites": [112, 86]}}, {"model": "objective.educative", "pk": 123, "fields": {"content": "", "label": "Ventre passer tête, arriver dos", "short_label": "Ventre passer tête, dos", "difficulty": "0.2", "level": 8, "rank": 9, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 125, "fields": {"content": "", "label": "Pull-over groupé, arriver ventre", "short_label": "PO o, ventre", "difficulty": "0.2", "level": 7, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [125]}}, {"model": "objective.educative", "pk": 126, "fields": {"content": "", "label": "Pull-over groupé + demi tour, (plat) dos", "short_label": "PO o + ½, (plat) dos", "difficulty": "0.3", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [125]}}, {"model": "objective.educative", "pk": 127, "fields": {"content": "", "label": "Back In Full Out groupé", "short_label": "Back in Full o", "difficulty": "1.2", "level": 14, "rank": 14, "age_boy": 14, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 128, "fields": {"content": "", "label": "Back In Full Out carpé", "short_label": "Back in Full <", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 14, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 129, "fields": {"content": "", "label": "Back In Full Out tendu", "short_label": "Back in Full /", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 14, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 130, "fields": {"content": "", "label": "Full In Full Out groupé", "short_label": "FIFO o", "difficulty": "1.4", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 131, "fields": {"content": "", "label": "Full In Full Out tendu", "short_label": "FIFO /", "difficulty": "1.6", "level": 18, "rank": 18, "age_boy": 16, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 132, "fields": {"content": "", "label": "Full in full out carpé", "short_label": "FIFO <", "difficulty": "1.6", "level": 17, "rank": 17, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 133, "fields": {"content": "", "label": "Full in 2 full out groupé", "short_label": "Miller o", "difficulty": "1.6", "level": 18, "rank": 18, "age_boy": 16, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 135, "fields": {"content": "", "label": "Half In Randy Out groupé", "short_label": "Half In Randy Out o", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 17, "age_girl": null, "educatives": [], "prerequisites": [121]}}, {"model": "objective.educative", "pk": 136, "fields": {"content": "", "label": "Full In double Full Out carpé", "short_label": "Miller <", "difficulty": "1.8", "level": 19, "rank": 19, "age_boy": 16, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 137, "fields": {"content": "", "label": "Full In double Full Out tendu", "short_label": "Miller /", "difficulty": "1.8", "level": 20, "rank": 20, "age_boy": 17, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 138, "fields": {"content": "", "label": "Half in fliffis groupé", "short_label": "Barani in back o", "difficulty": "1.1", "level": 11, "rank": 11, "age_boy": 12, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 139, "fields": {"content": "", "label": "Half in fliffis carpé", "short_label": "Barani in back <", "difficulty": "1.3", "level": 12, "rank": 12, "age_boy": 13, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 140, "fields": {"content": "", "label": "Half In Half Out Triffis groupé", "short_label": "Half in trif o", "difficulty": "1.8", "level": 18, "rank": 18, "age_boy": 18, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 141, "fields": {"content": "", "label": "Half In Half Out Triffis carpé", "short_label": "Half in trif <", "difficulty": "2.1", "level": 21, "rank": 21, "age_boy": 18, "age_girl": 19, "educatives": [], "prerequisites": [140]}}, {"model": "objective.educative", "pk": 142, "fields": {"content": "", "label": "Ventre - vrille, plat dos", "short_label": "Ventre - vrille, plat dos", "difficulty": "0.4", "level": 6, "rank": 8, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 143, "fields": {"content": "", "label": "Vrille et demi, ventre", "short_label": "Vrille et ½, ventre", "difficulty": "0.4", "level": 7, "rank": 6, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 145, "fields": {"content": "", "label": "Dos - vrille, ventre", "short_label": "Dos - vrille, ventre", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [348]}}, {"model": "objective.educative", "pk": 146, "fields": {"content": "", "label": "Assis - vrille et demi, assis", "short_label": "Assis - vrille et ½, assis", "difficulty": "0.3", "level": 7, "rank": 7, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 148, "fields": {"content": "", "label": "Ventre - vrille et demi, ventre", "short_label": "Ventre - vrille et ½, ventre", "difficulty": "0.5", "level": 7, "rank": 9, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 149, "fields": {"content": "", "label": "2 Vrilles, assis", "short_label": "2 Vrilles, assis", "difficulty": "0.4", "level": 8, "rank": 8, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 150, "fields": {"content": "", "label": "Vrille et demi, dos", "short_label": "Vrille et ½, dos", "difficulty": "0.4", "level": 6, "rank": 8, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 152, "fields": {"content": "", "label": "Ventre - barani", "short_label": "Ventre - barani", "difficulty": "0.4", "level": 15, "rank": 15, "age_boy": 8, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 153, "fields": {"content": "", "label": "Trois quart avant groupé", "short_label": "¾ Avant o + vrille", "difficulty": "0.3", "level": 6, "rank": 7, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 154, "fields": {"content": "", "label": "Trois quart avant carpé", "short_label": "¾ Avant <", "difficulty": "0.3", "level": 7, "rank": 8, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 155, "fields": {"content": "", "label": "Trois quart avant tendu", "short_label": "¾ Avant /", "difficulty": "0.3", "level": 8, "rank": 10, "age_boy": 8, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 156, "fields": {"content": "", "label": "Assis - vrille et demi, dos", "short_label": "Assis - vrille et ½, dos", "difficulty": "0.4", "level": 8, "rank": 8, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 157, "fields": {"content": "", "label": "Assis - salto avant jusqu'au dos", "short_label": "Assis - salto avant, dos", "difficulty": "0.3", "level": 5, "rank": 10, "age_boy": 9, "age_girl": 10, "educatives": [180], "prerequisites": []}}, {"model": "objective.educative", "pk": 158, "fields": {"content": "", "label": "Cody groupé, arriver ventre", "short_label": "Cody o, ventre", "difficulty": "0.5", "level": 10, "rank": 10, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 159, "fields": {"content": "", "label": "Barani groupé jusqu'au dos", "short_label": "Barani o, dos", "difficulty": "0.7", "level": 7, "rank": 11, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 160, "fields": {"content": "", "label": "Cody demi carpé", "short_label": "Cody L", "difficulty": "0.6", "level": 12, "rank": 12, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": [223]}}, {"model": "objective.educative", "pk": 161, "fields": {"content": "", "label": "Rudy ball out tendu", "short_label": "RBO /", "difficulty": "0.9", "level": 12, "rank": 14, "age_boy": 11, "age_girl": 13, "educatives": [], "prerequisites": [164]}}, {"model": "objective.educative", "pk": 162, "fields": {"content": "", "label": "Cody full", "short_label": "Cody full", "difficulty": "0.9", "level": 14, "rank": 14, "age_boy": 11, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 163, "fields": {"content": "", "label": "Randy Ball Out", "short_label": "Randy Ball Out", "difficulty": "1.2", "level": 14, "rank": 14, "age_boy": 13, "age_girl": 16, "educatives": [], "prerequisites": [161]}}, {"model": "objective.educative", "pk": 164, "fields": {"content": "", "label": "Prog Rudy Ball Out tendu", "short_label": "Full Ball Out /", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 13, "educatives": [], "prerequisites": [474]}}, {"model": "objective.educative", "pk": 165, "fields": {"content": "", "label": "Double cody groupé", "short_label": "2 cody o", "difficulty": "1.1", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 166, "fields": {"content": "", "label": "Ventre - out groupé", "short_label": "Ventre - out o", "difficulty": "0.9", "level": 13, "rank": 13, "age_boy": 12, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 167, "fields": {"content": "", "label": "Half out ball out groupé", "short_label": "HOBO o", "difficulty": "1.2", "level": 15, "rank": 15, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 168, "fields": {"content": "", "label": "Half out ball out carpé", "short_label": "HOBO <", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": 14, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 169, "fields": {"content": "", "label": "Ball Out groupé", "short_label": "BO o", "difficulty": "0.6", "level": 7, "rank": 10, "age_boy": 9, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 170, "fields": {"content": "", "label": "Ball Out carpé", "short_label": "BO <", "difficulty": "0.6", "level": 8, "rank": 11, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 171, "fields": {"content": "Test de commentaire.\r\n\r\n#### test de titre.\r\ntout plein d'explication du feu de dieu.", "label": "Libre", "short_label": "Libre", "difficulty": "3.5", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [94, 68, 69], "prerequisites": []}}, {"model": "objective.educative", "pk": 172, "fields": {"content": "", "label": "Kaboom arrière groupé", "short_label": "Kaboom o", "difficulty": "0.3", "level": 5, "rank": 11, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 173, "fields": {"content": "", "label": "Kaboom arrière carpé", "short_label": "Kaboom <", "difficulty": "0.3", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 174, "fields": {"content": "", "label": "Kaboom arrière tendu", "short_label": "Kaboom /", "difficulty": "0.3", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 175, "fields": {"content": "", "label": "Kaboom avant groupé", "short_label": "Kaboom avant o", "difficulty": "0.3", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 176, "fields": {"content": "", "label": "Kaboom avant carpé", "short_label": "Kaboom avant <", "difficulty": "0.3", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 177, "fields": {"content": "", "label": "Kaboom avant tendu", "short_label": "Kaboom avant /", "difficulty": "0.3", "level": 9, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 178, "fields": {"content": "", "label": "Assis - demi tour, 4 pattes", "short_label": "Assis - ½, 4 pattes", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [184, 183, 5], "prerequisites": []}}, {"model": "objective.educative", "pk": 179, "fields": {"content": "", "label": "4 pattes - demi tour, Assis", "short_label": "4 pattes - ½, Assis", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [184, 183], "prerequisites": []}}, {"model": "objective.educative", "pk": 180, "fields": {"content": "", "label": "Assis - 4 pattes", "short_label": "Assis - 4 pattes", "difficulty": "0.1", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "educatives": [5], "prerequisites": []}}, {"model": "objective.educative", "pk": 181, "fields": {"content": "##### Explication sur le 4pattes - ventre\r\n\r\n - a quoi il sert\r\n - comment\r\n - pourquoi\r\n - …\r\n\r\nle tout par description de l'entraineur dans la base de données.", "label": "4 pattes - ventre", "short_label": "4 pattes - ventre", "difficulty": "0.0", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [183], "prerequisites": []}}, {"model": "objective.educative", "pk": 182, "fields": {"content": "", "label": "Debout (du 4 pattes)", "short_label": "Debout (4p)", "difficulty": "0.1", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [183], "prerequisites": []}}, {"model": "objective.educative", "pk": 183, "fields": {"content": "", "label": "Rebonds quadrupédique", "short_label": "Rebonds 4 pattes", "difficulty": "0.0", "level": 0, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 184, "fields": {"content": "", "label": "Rebonds assis", "short_label": "Rebonds assis", "difficulty": "0.0", "level": 0, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 185, "fields": {"content": "", "label": "Rebonds dos", "short_label": "Rebonds dos", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 186, "fields": {"content": "", "label": "Rebonds ventre", "short_label": "Rebonds ventre", "difficulty": "0.0", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 187, "fields": {"content": "", "label": "4 pattes - demi tour, Dos", "short_label": "4 pattes - ½, Dos", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [185, 183], "prerequisites": []}}, {"model": "objective.educative", "pk": 188, "fields": {"content": "", "label": "Pull-over groupé, arriver assis", "short_label": "PO o, assis", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 189, "fields": {"content": "", "label": "4 pattes - poirier", "short_label": "4 pattes - ATR", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [197, 183, 9, 6], "prerequisites": []}}, {"model": "objective.educative", "pk": 190, "fields": {"content": "", "label": "Dos - poirier", "short_label": "Dos - ATR", "difficulty": "0.1", "level": 5, "rank": 10, "age_boy": 7, "age_girl": 7, "educatives": [47], "prerequisites": []}}, {"model": "objective.educative", "pk": 191, "fields": {"content": "", "label": "Dos - demi tour, poirier", "short_label": "Dos - ½, ATR", "difficulty": "0.2", "level": 7, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 192, "fields": {"content": "", "label": "Poirier - Curviligne fermé", "short_label": "Poirier - Curviligne fermé", "difficulty": "0.1", "level": 4, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [189, 197], "prerequisites": [469]}}, {"model": "objective.educative", "pk": 193, "fields": {"content": "", "label": "Kaboom arrière groupé, arriver assis", "short_label": "Kaboom o, assis", "difficulty": "0.3", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 194, "fields": {"content": "", "label": "Kaboom arrière groupé arriver ventre", "short_label": "Kaboom o, ventre", "difficulty": "0.2", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 195, "fields": {"content": "", "label": "Kaboom arrière arriver dos", "short_label": "Kaboom, dos", "difficulty": "0.5", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 196, "fields": {"content": "", "label": "Kaboom arrière arriver poirier", "short_label": "Kaboom, ATR", "difficulty": "0.1", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 197, "fields": {"content": "", "label": "Rebonds curviligne fermé", "short_label": "Rebonds curviligne fermé", "difficulty": "0.0", "level": 1, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [186], "prerequisites": []}}, {"model": "objective.educative", "pk": 198, "fields": {"content": "", "label": "Rebonds curviligne ouvert", "short_label": "Rebonds curviligne ouvert", "difficulty": "0.0", "level": 1, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [185], "prerequisites": []}}, {"model": "objective.educative", "pk": 199, "fields": {"content": "", "label": "Assis - plat dos (beb)", "short_label": "Assis - plat dos (beb)", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [184], "prerequisites": []}}, {"model": "objective.educative", "pk": 200, "fields": {"content": "", "label": "Chute faciale - ventre", "short_label": "Chute faciale - ventre", "difficulty": "0.0", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 201, "fields": {"content": "", "label": "Assis - demi tour, ventre", "short_label": "Assis - ½, ventre", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [181, 178, 199, 203], "prerequisites": []}}, {"model": "objective.educative", "pk": 202, "fields": {"content": "", "label": "Ventre - demi tour, plat dos", "short_label": "Ventre - ½, plat dos", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [187, 185, 186], "prerequisites": []}}, {"model": "objective.educative", "pk": 203, "fields": {"content": "", "label": "Plat dos - demi tour, ventre", "short_label": "Plat dos - ½, ventre", "difficulty": "0.1", "level": 2, "rank": 6, "age_boy": 6, "age_girl": 6, "educatives": [185], "prerequisites": []}}, {"model": "objective.educative", "pk": 204, "fields": {"content": "", "label": "Assis - vrille, plat dos", "short_label": "Assis - vrille, plat dos", "difficulty": "0.3", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "educatives": [187, 178, 201, 199, 82, 202], "prerequisites": []}}, {"model": "objective.educative", "pk": 206, "fields": {"content": "", "label": "4 pattes - salto avant groupé, curviligne ouvert", "short_label": "4 pattes - avant o, (", "difficulty": "0.2", "level": 5, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 207, "fields": {"content": "", "label": "4 pattes - salto avant groupé", "short_label": "4 pattes - avant o", "difficulty": "0.3", "level": 6, "rank": 6, "age_boy": 6, "age_girl": 6, "educatives": [206], "prerequisites": []}}, {"model": "objective.educative", "pk": 208, "fields": {"content": "Niveau 3 car on veut être sur que si le 4 pattes se passe mal, l'élève puisse tomber en ventre (qui lui se trouve au niveau 2)", "label": "4 pattes - assis", "short_label": "4 pattes - assis", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [182, 5, 10], "prerequisites": []}}, {"model": "objective.educative", "pk": 209, "fields": {"content": "", "label": "Ventre - Assis", "short_label": "Ventre - Assis", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [208, 182], "prerequisites": []}}, {"model": "objective.educative", "pk": 210, "fields": {"content": "", "label": "Ventre - demi tour, Assis", "short_label": "Ventre - ½, Assis", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": 6, "age_girl": 6, "educatives": [179], "prerequisites": []}}, {"model": "objective.educative", "pk": 211, "fields": {"content": "", "label": "Plat dos - demi tour, 4 pattes", "short_label": "Plat dos - ½, 4 pattes", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": 6, "age_girl": 6, "educatives": [185, 183], "prerequisites": []}}, {"model": "objective.educative", "pk": 212, "fields": {"content": "", "label": "Dos - vrille et demi, ventre", "short_label": "Dos - vrille et ½, ventre", "difficulty": "0.3", "level": 5, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [203], "prerequisites": [39]}}, {"model": "objective.educative", "pk": 213, "fields": {"content": "", "label": "Vrille et demi debout (de l'assis)", "short_label": "Vrille et ½ debout (de l'assis)", "difficulty": "0.3", "level": 4, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [214], "prerequisites": []}}, {"model": "objective.educative", "pk": 214, "fields": {"content": "", "label": "Vrille debout (de l'assis) bras en haut puis en bas", "short_label": "Vrille debout", "difficulty": "0.2", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "educatives": [69, 29], "prerequisites": []}}, {"model": "objective.educative", "pk": 215, "fields": {"content": "", "label": "Vrille debout (du dos)", "short_label": "Vrille debout (du dos)", "difficulty": "0.3", "level": 5, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [71], "prerequisites": []}}, {"model": "objective.educative", "pk": 216, "fields": {"content": "", "label": "Vrille et demi debout (du dos)", "short_label": "Vrille et ½ debout (du dos)", "difficulty": "0.4", "level": 6, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [215], "prerequisites": []}}, {"model": "objective.educative", "pk": 217, "fields": {"content": "", "label": "Dos - 4 pattes", "short_label": "Dos - 4 pattes", "difficulty": "0.2", "level": 4, "rank": 8, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 218, "fields": {"content": "", "label": "Dos - Assis", "short_label": "Dos - Assis", "difficulty": "0.1", "level": 1, "rank": 7, "age_boy": 6, "age_girl": 6, "educatives": [184, 185], "prerequisites": []}}, {"model": "objective.educative", "pk": 219, "fields": {"content": "", "label": "Pull-over groupé, arriver 4 pattes", "short_label": "PO o, 4 pattes", "difficulty": "0.2", "level": 6, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [190], "prerequisites": []}}, {"model": "objective.educative", "pk": 220, "fields": {"content": "", "label": "Prog Rudy Ball Out groupé", "short_label": "Full Ball Out o", "difficulty": "0.8", "level": 8, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [472]}}, {"model": "objective.educative", "pk": 221, "fields": {"content": "", "label": "Prog Rudy Ball Out carpé", "short_label": "Full Ball Out <", "difficulty": "0.9", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [473]}}, {"model": "objective.educative", "pk": 222, "fields": {"content": "", "label": "Cody groupé arriver (plat) dos", "short_label": "Cody o, (plat) dos", "difficulty": "0.7", "level": 10, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 223, "fields": {"content": "", "label": "Cody carpé, arriver (plat) dos", "short_label": "Cody <, (plat) dos", "difficulty": "0.8", "level": 11, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 224, "fields": {"content": "", "label": "Ball Out groupé, arriver ventre", "short_label": "BO o, ventre", "difficulty": "0.7", "level": 8, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 225, "fields": {"content": "", "label": "Ball Out carpé, arriver ventre", "short_label": "BO <, ventre", "difficulty": "0.8", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 226, "fields": {"content": "", "label": "Trois quart Arrière tendu + demi", "short_label": "¾ Arrière / + ½", "difficulty": "0.4", "level": 10, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 227, "fields": {"content": "", "label": "Arrière tendu + demi tour", "short_label": "Arrière / + ½", "difficulty": "0.6", "level": 11, "rank": 11, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 228, "fields": {"content": "", "label": "Demi tour piqué", "short_label": "½ piqué", "difficulty": "0.4", "level": 9, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 229, "fields": {"content": "", "label": "Half In groupé", "short_label": "Half In o", "difficulty": "0.6", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 230, "fields": {"content": "", "label": "Half In carpé", "short_label": "Half In <", "difficulty": "0.6", "level": 10, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 231, "fields": {"content": "", "label": "Half In groupé, arriver ventre", "short_label": "Half In o, ventre", "difficulty": "0.7", "level": 10, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 232, "fields": {"content": "", "label": "Half In carpé, arriver ventre", "short_label": "Half In <, ventre", "difficulty": "0.8", "level": 11, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 233, "fields": {"content": "", "label": "Prog Half In Half Out groupé", "short_label": "Prog HIHO o", "difficulty": "0.9", "level": 11, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 234, "fields": {"content": "", "label": "Prog Half In Half Out carpé", "short_label": "Prog HIHO <", "difficulty": "1.0", "level": 12, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 235, "fields": {"content": "", "label": "Prog Half In Rudy Out groupé", "short_label": "Prog HIRO o", "difficulty": "1.1", "level": 13, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 236, "fields": {"content": "", "label": "Prog Half In Rudy Out carpé", "short_label": "Prog HIRO <", "difficulty": "1.2", "level": 14, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 237, "fields": {"content": "", "label": "Full arriver dos", "short_label": "Full, dos", "difficulty": "0.9", "level": 13, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [95]}}, {"model": "objective.educative", "pk": 238, "fields": {"content": "", "label": "Rudy arrière arriver ventre", "short_label": "Full + ½, ventre", "difficulty": "1.0", "level": 14, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [237]}}, {"model": "objective.educative", "pk": 239, "fields": {"content": "", "label": "Prog Full In Full Out groupé", "short_label": "Prog FIFO o", "difficulty": "1.1", "level": 15, "rank": 15, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [238]}}, {"model": "objective.educative", "pk": 240, "fields": {"content": "", "label": "Prog Full In Full Out carpé", "short_label": "Prog FIFO <", "difficulty": "1.2", "level": 16, "rank": 16, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [239]}}, {"model": "objective.educative", "pk": 241, "fields": {"content": "", "label": "Prog Full In Full Out carpé", "short_label": "Prog FIFO /", "difficulty": "1.2", "level": 17, "rank": 17, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 242, "fields": {"content": "", "label": "Prog Full In 2 Full Out groupé", "short_label": "Prog Miller o", "difficulty": "1.3", "level": 17, "rank": 17, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [240]}}, {"model": "objective.educative", "pk": 243, "fields": {"content": "", "label": "Prog Full In 2 Full Out carpé", "short_label": "Prog Miller <", "difficulty": "1.4", "level": 18, "rank": 18, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [242]}}, {"model": "objective.educative", "pk": 244, "fields": {"content": "", "label": "Prog Full In 2 Full Out tendu", "short_label": "Prog Miller /", "difficulty": "1.4", "level": 19, "rank": 19, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 245, "fields": {"content": "", "label": "Vrille et demi", "short_label": "Vrille et ½", "difficulty": "0.3", "level": 4, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 246, "fields": {"content": "", "label": "Dos - vrille passer tête arriver dos", "short_label": "Dos - vrille passer tête, dos o", "difficulty": "0.7", "level": 9, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 247, "fields": {"content": "", "label": "Dos - vrille passer tête arriver dos", "short_label": "Dos - vrille passer tête <", "difficulty": "0.7", "level": 10, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 248, "fields": {"content": "", "label": "Jonah ball out groupé", "short_label": "Jonah ball out o", "difficulty": "0.7", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 249, "fields": {"content": "", "label": "Jonah ball out carpé", "short_label": "Jonah ball out <", "difficulty": "0.8", "level": 10, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 250, "fields": {"content": "", "label": "Imposé", "short_label": "Imposé", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 251, "fields": {"content": "", "label": "Double full In Double full out", "short_label": "Killer (Poliaroush)", "difficulty": "2.0", "level": 21, "rank": 21, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 252, "fields": {"content": "", "label": "Rudy Triffis carpé", "short_label": "Rudy Trif <", "difficulty": "2.2", "level": 22, "rank": 22, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 253, "fields": {"content": "", "label": "Half In Randy Out carpé", "short_label": "Half In Randy Out <", "difficulty": "1.8", "level": 18, "rank": 18, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [135]}}, {"model": "objective.educative", "pk": 254, "fields": {"content": "", "label": "Rudy In Half Out carpé", "short_label": "FIFO <", "difficulty": "1.6", "level": 16, "rank": 16, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 255, "fields": {"content": "Rebondir en chandelle sans utiliser les bras. Les bras restent complètement collés au corps durant l'exercice.", "label": "Chandelle bras en bas", "short_label": "| 1", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 256, "fields": {"content": "Chandelle où les mains sont posées sur les hanches.", "label": "Chandelle mains aux hanches", "short_label": "| 2", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 257, "fields": {"content": "Chandelle où les bras restent tendus, collés au oreilles.", "label": "Chandelle bras en haut", "short_label": "| 3", "difficulty": "0.0", "level": 2, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 258, "fields": {"content": "", "label": "Rudy Triffis groupé", "short_label": "Rudy Trif o", "difficulty": "1.9", "level": 19, "rank": 19, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 259, "fields": {"content": "", "label": "Culbute avant", "short_label": "Culbute", "difficulty": "0.5", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 260, "fields": {"content": "", "label": "Culbute avant sans les mains", "short_label": "Culbute sans les mains", "difficulty": "0.5", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [259]}}, {"model": "objective.educative", "pk": 261, "fields": {"content": "", "label": "Culbute avant sans les mains sans la tête", "short_label": "Culbute sans les mains sans la tête", "difficulty": "0.5", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [260]}}, {"model": "objective.educative", "pk": 262, "fields": {"content": "", "label": "Dos - demi tour, ventre", "short_label": "Dos - ½, ventre", "difficulty": "0.1", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 263, "fields": {"content": "", "label": "Double vrille", "short_label": "Double vrille", "difficulty": "0.4", "level": 5, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 264, "fields": {"content": "", "label": "Saut groupé + demi tour", "short_label": "o + ½", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28, 1]}}, {"model": "objective.educative", "pk": 265, "fields": {"content": "", "label": "Saut carpé + demi tour", "short_label": "< + ½", "difficulty": "0.1", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28, 3]}}, {"model": "objective.educative", "pk": 266, "fields": {"content": "", "label": "Saut écart + demi tour", "short_label": "// + ½", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28, 4]}}, {"model": "objective.educative", "pk": 267, "fields": {"content": "", "label": "Demi tour + saut groupé", "short_label": "½ + o", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28, 1]}}, {"model": "objective.educative", "pk": 268, "fields": {"content": "", "label": "Demi tour + saut carpé", "short_label": "½ + <", "difficulty": "0.1", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28, 3]}}, {"model": "objective.educative", "pk": 269, "fields": {"content": "", "label": "Demi tour + saut écart", "short_label": "½ + //", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28, 4]}}, {"model": "objective.educative", "pk": 270, "fields": {"content": "", "label": "Barani puck", "short_label": "Barani puck", "difficulty": "0.6", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [32, 31]}}, {"model": "objective.educative", "pk": 271, "fields": {"content": "", "label": "Salto avant groupé + vrille", "short_label": "Avant o + vrille", "difficulty": "0.7", "level": 7, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [31]}}, {"model": "objective.educative", "pk": 272, "fields": {"content": "", "label": "salto avant carpé + vrille", "short_label": "Avant < + vrille", "difficulty": "0.7", "level": 7, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [32]}}, {"model": "objective.educative", "pk": 273, "fields": {"content": "", "label": "Salto avant tendu + vrille", "short_label": "Avant / + vrille", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [33]}}, {"model": "objective.educative", "pk": 274, "fields": {"content": "", "label": "Ball Out Tendu", "short_label": "BO /", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [170, 42]}}, {"model": "objective.educative", "pk": 275, "fields": {"content": "", "label": "Rudy Ball out groupé", "short_label": "RBO o", "difficulty": "0.9", "level": 9, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [220]}}, {"model": "objective.educative", "pk": 276, "fields": {"content": "", "label": "Rudy Ball out carpé", "short_label": "RBO <", "difficulty": "0.9", "level": 10, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [221]}}, {"model": "objective.educative", "pk": 277, "fields": {"content": "", "label": "Tomber Assis groupé", "short_label": "Assis o", "difficulty": "0.0", "level": 0, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [1, 5]}}, {"model": "objective.educative", "pk": 278, "fields": {"content": "", "label": "Tomber Assis carpé", "short_label": "Assis <", "difficulty": "0.0", "level": 0, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [3, 5]}}, {"model": "objective.educative", "pk": 279, "fields": {"content": "", "label": "Saut groupé + vrille", "short_label": "o + vrille", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [264]}}, {"model": "objective.educative", "pk": 280, "fields": {"content": "", "label": "Saut groupé + vrille et demi", "short_label": "o + vrille et ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [279]}}, {"model": "objective.educative", "pk": 281, "fields": {"content": "", "label": "Vrille + saut groupé", "short_label": "Vrille + o", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [267]}}, {"model": "objective.educative", "pk": 282, "fields": {"content": "", "label": "Vrille et demi + saut groupé", "short_label": "Vrille et ½ + o", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [281]}}, {"model": "objective.educative", "pk": 283, "fields": {"content": "", "label": "Double vrille + saut groupé", "short_label": "Double vrille + saut groupé", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [282]}}, {"model": "objective.educative", "pk": 284, "fields": {"content": "", "label": "Vrille + saut écart", "short_label": "Vrille + //", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [269]}}, {"model": "objective.educative", "pk": 285, "fields": {"content": "", "label": "vrille et demi + saut écart", "short_label": "vrille et ½ + //", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [284]}}, {"model": "objective.educative", "pk": 286, "fields": {"content": "", "label": "double vrille + saut écart", "short_label": "double vrille + saut écart", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [285]}}, {"model": "objective.educative", "pk": 287, "fields": {"content": "", "label": "Saut écart + vrille", "short_label": "// + vrille", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [266]}}, {"model": "objective.educative", "pk": 288, "fields": {"content": "", "label": "Saut écart + vrille et demi", "short_label": "// + vrille et ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [287]}}, {"model": "objective.educative", "pk": 289, "fields": {"content": "", "label": "Saut écart + double vrille", "short_label": "// + 2 vrilles", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 290, "fields": {"content": "", "label": "Saut carpé + vrille", "short_label": "< + vrille", "difficulty": "0.2", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [265]}}, {"model": "objective.educative", "pk": 291, "fields": {"content": "", "label": "Saut carpé + vrille et demi", "short_label": "< + vrille et ½", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [290]}}, {"model": "objective.educative", "pk": 292, "fields": {"content": "", "label": "Saut carpé + double vrille", "short_label": "< + 2 vrilles", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [291]}}, {"model": "objective.educative", "pk": 293, "fields": {"content": "", "label": "Vrille + saut carpé", "short_label": "Vrille + <", "difficulty": "0.2", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [268]}}, {"model": "objective.educative", "pk": 294, "fields": {"content": "", "label": "Vrille et demi + saut carpé", "short_label": "Vrille et ½ + <", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [293]}}, {"model": "objective.educative", "pk": 295, "fields": {"content": "", "label": "Double vrille + saut carpé", "short_label": "Double vrille + saut carpé", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [294]}}, {"model": "objective.educative", "pk": 296, "fields": {"content": "", "label": "Demi tour + saut groupé + demi tour", "short_label": "½ + o + ½", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [267, 264]}}, {"model": "objective.educative", "pk": 297, "fields": {"content": "", "label": "Demi tour + saut carpé + demi tour", "short_label": "½ + < + ½", "difficulty": "0.2", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [268, 265]}}, {"model": "objective.educative", "pk": 298, "fields": {"content": "", "label": "demi tour + saut écart + demi tour", "short_label": "½ + // + ½", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [269, 266]}}, {"model": "objective.educative", "pk": 299, "fields": {"content": "", "label": "demi tour + saut groupé + vrille", "short_label": "½ + o + vrille", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [296]}}, {"model": "objective.educative", "pk": 300, "fields": {"content": "", "label": "demi tour + saut carpé + vrille", "short_label": "½ + < + vrille", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [297]}}, {"model": "objective.educative", "pk": 301, "fields": {"content": "", "label": "Demi tour + saut écart + vrille", "short_label": "½ + // + vrille", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [298]}}, {"model": "objective.educative", "pk": 302, "fields": {"content": "", "label": "Saut groupé + double vrille", "short_label": "o + 2 vrilles", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [280]}}, {"model": "objective.educative", "pk": 303, "fields": {"content": "", "label": "Vrille + saut groupé + demi tour", "short_label": "Vrille + o + ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [296]}}, {"model": "objective.educative", "pk": 304, "fields": {"content": "", "label": "Vrille + saut carpé + demi tour", "short_label": "Vrille + < + ½", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [297]}}, {"model": "objective.educative", "pk": 305, "fields": {"content": "", "label": "Vrille + saut écart + demi tour", "short_label": "Vrille + // + ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [298]}}, {"model": "objective.educative", "pk": 306, "fields": {"content": "", "label": "Vrille + saut écart + vrille", "short_label": "Vrille + // + vrille", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [301, 287, 284, 305]}}, {"model": "objective.educative", "pk": 307, "fields": {"content": "", "label": "Vrille + saut groupé + vrille", "short_label": "Vrille + o + vrille", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [299, 279, 281, 303]}}, {"model": "objective.educative", "pk": 308, "fields": {"content": "", "label": "Vrille + saut carpé + vrille", "short_label": "Vrille + < + vrille", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [300, 290, 293, 304]}}, {"model": "objective.educative", "pk": 309, "fields": {"content": "", "label": "Demi tour + saut groupé + vrille et demi", "short_label": "½ + o + vrille et ½", "difficulty": "0.5", "level": 5, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [307]}}, {"model": "objective.educative", "pk": 310, "fields": {"content": "", "label": "Demi tour + saut écart + vrille et demi", "short_label": "½ + // + vrille et ½", "difficulty": "0.4", "level": 4, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [301]}}, {"model": "objective.educative", "pk": 311, "fields": {"content": "", "label": "Demi tour + saut carpé + vrille et demi", "short_label": "½ + < + vrille et ½", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [300]}}, {"model": "objective.educative", "pk": 312, "fields": {"content": "", "label": "Vrille et demi + saut groupé + demi tour", "short_label": "Vrille et ½ + o + ½", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [303, 282]}}, {"model": "objective.educative", "pk": 313, "fields": {"content": "", "label": "Vrille et demi + saut écart + demi tour", "short_label": "Vrille et ½ + // + ½", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [305, 285]}}, {"model": "objective.educative", "pk": 314, "fields": {"content": "", "label": "Vrille et demi + saut carpé + demi tour", "short_label": "Vrille et ½ + < + ½", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [304, 294]}}, {"model": "objective.educative", "pk": 315, "fields": {"content": "", "label": "Cody carpé, arriver ventre", "short_label": "Cody <, ventre", "difficulty": "0.5", "level": 5, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [61, 158]}}, {"model": "objective.educative", "pk": 316, "fields": {"content": "", "label": "Cody tendu, arriver ventre", "short_label": "Cody /, ventre", "difficulty": "0.5", "level": 6, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [315]}}, {"model": "objective.educative", "pk": 317, "fields": {"content": "", "label": "Cody tendu, arriver (plat) dos", "short_label": "Cody /, (plat) dos", "difficulty": "0.8", "level": 9, "rank": 15, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [62]}}, {"model": "objective.educative", "pk": 318, "fields": {"content": "", "label": "Rebonds plat dos", "short_label": "Rebonds plat dos", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 319, "fields": {"content": "", "label": "Assis - plat dos (beh)", "short_label": "Assis - plat dos (beh)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 320, "fields": {"content": "", "label": "Demi tour (bras en bas)", "short_label": "Demi tour (bras en bas)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 321, "fields": {"content": "", "label": "Demi tour (bras en haut)", "short_label": "Demi tour (bras en haut)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 322, "fields": {"content": "", "label": "Demi tour (h2b)", "short_label": "½ tour (h2b)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 323, "fields": {"content": "", "label": "Demi tour (b2h)", "short_label": "Demi tour (b2h)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 324, "fields": {"content": "", "label": "Assis - vrille et demi, ventre", "short_label": "Assis - vrille et ½, ventre", "difficulty": "0.4", "level": 5, "rank": 7, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [201, 5, 11, 245]}}, {"model": "objective.educative", "pk": 325, "fields": {"content": "", "label": "Ventre - vrille, ventre", "short_label": "Ventre - vrille, ventre", "difficulty": "0.2", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [11, 29]}}, {"model": "objective.educative", "pk": 326, "fields": {"content": "", "label": "Ventre - vrille et demi, dos", "short_label": "Ventre - vrille et ½, dos", "difficulty": "0.3", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [9, 11, 150]}}, {"model": "objective.educative", "pk": 327, "fields": {"content": "", "label": "Assis - double vrille, plat dos", "short_label": "Assis - double vrille, plat dos", "difficulty": "0.5", "level": 6, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [204]}}, {"model": "objective.educative", "pk": 328, "fields": {"content": "", "label": "Assis - ventre groupé", "short_label": "Assis - ventre o", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [180]}}, {"model": "objective.educative", "pk": 329, "fields": {"content": "", "label": "Assis - ventre carpé", "short_label": "Assis - ventre <", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [180]}}, {"model": "objective.educative", "pk": 330, "fields": {"content": "", "label": "Assis - grouper + demi tour, plat dos", "short_label": "Assis - grouper + ½, plat dos", "difficulty": "0.2", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [328]}}, {"model": "objective.educative", "pk": 331, "fields": {"content": "", "label": "Assis - carper + demi tour, plat dos", "short_label": "Assis - carper + ½, plat dos", "difficulty": "0.2", "level": 2, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [329]}}, {"model": "objective.educative", "pk": 332, "fields": {"content": "", "label": "Assis - demi tour, plat dos", "short_label": "Assis - ½, plat dos", "difficulty": "0.2", "level": 3, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [101]}}, {"model": "objective.educative", "pk": 333, "fields": {"content": "", "label": "Assis - grouper + vrille, ventre", "short_label": "Assis - grouper + vrille, ventre", "difficulty": "0.3", "level": 3, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [330]}}, {"model": "objective.educative", "pk": 334, "fields": {"content": "", "label": "Assis - carper + vrille, ventre", "short_label": "Assis - carper + vrille, ventre", "difficulty": "0.3", "level": 3, "rank": 7, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": [331]}}, {"model": "objective.educative", "pk": 335, "fields": {"content": "", "label": "Assis - vrille, ventre", "short_label": "Assis - vrille, ventre", "difficulty": "0.3", "level": 4, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [332]}}, {"model": "objective.educative", "pk": 336, "fields": {"content": "", "label": "Assis - grouper + vrille et demi, plat dos", "short_label": "Assis - grouper + vrille et ½, plat dos", "difficulty": "0.4", "level": 4, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [333]}}, {"model": "objective.educative", "pk": 337, "fields": {"content": "", "label": "Assis - carper + vrille et demi, plat dos", "short_label": "Assis - carper + vrille et ½, plat dos", "difficulty": "0.4", "level": 4, "rank": 8, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": [334]}}, {"model": "objective.educative", "pk": 338, "fields": {"content": "", "label": "Assis - vrille et demi, plat dos", "short_label": "Assis - vrille et ½, plat dos", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": 9, "age_girl": 9, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 340, "fields": {"content": "", "label": "Assis - double vrille, ventre", "short_label": "Assis - double vrille, ventre", "difficulty": "0.5", "level": 6, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [338]}}, {"model": "objective.educative", "pk": 341, "fields": {"content": "", "label": "Assis - double vrille et demi, plat dos", "short_label": "Assis - double vrille et ½, plat dos", "difficulty": "0.6", "level": 7, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [340]}}, {"model": "objective.educative", "pk": 342, "fields": {"content": "", "label": "Dos - ventre groupé", "short_label": "Dos - ventre groupé", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [328, 217]}}, {"model": "objective.educative", "pk": 343, "fields": {"content": "", "label": "Dos - ventre carpé", "short_label": "Dos - ventre carpé", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [329, 342]}}, {"model": "objective.educative", "pk": 344, "fields": {"content": "", "label": "Dos - grouper + demi tour, plat dos", "short_label": "Dos - grouper + ½, plat dos", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [342]}}, {"model": "objective.educative", "pk": 345, "fields": {"content": "", "label": "Dos - carper + demi tour, plat dos", "short_label": "Dos - carper + ½, plat dos", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [331, 343]}}, {"model": "objective.educative", "pk": 346, "fields": {"content": "", "label": "Dos - grouper + vrille, ventre", "short_label": "Dos - grouper + vrille, ventre", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [345, 84]}}, {"model": "objective.educative", "pk": 347, "fields": {"content": "", "label": "Dos - carper + vrille, ventre", "short_label": "Dos - carper + vrille, ventre", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [345]}}, {"model": "objective.educative", "pk": 348, "fields": {"content": "", "label": "Dos - demi tour, plat dos", "short_label": "Dos - ½, plat dos", "difficulty": "0.3", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [332, 104]}}, {"model": "objective.educative", "pk": 351, "fields": {"content": "", "label": "Dos - grouper + vrille et demi, plat dos", "short_label": "Dos - grouper + vrille et ½, plat dos", "difficulty": "0.5", "level": 5, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [338, 145]}}, {"model": "objective.educative", "pk": 352, "fields": {"content": "", "label": "Dos - carper + vrille et demi, plat dos", "short_label": "Dos - carper + vrille et ½, plat dos", "difficulty": "0.5", "level": 5, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [337, 347]}}, {"model": "objective.educative", "pk": 353, "fields": {"content": "", "label": "Dos - vrille et demi, plat dos", "short_label": "Dos - vrille et ½, plat dos", "difficulty": "0.5", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [324, 145]}}, {"model": "objective.educative", "pk": 354, "fields": {"content": "", "label": "Dos - double vrille, ventre", "short_label": "Dos - double vrille, ventre", "difficulty": "0.6", "level": 7, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [340, 353]}}, {"model": "objective.educative", "pk": 355, "fields": {"content": "", "label": "Dos - double vrille et demi, plat dos", "short_label": "Dos - double vrille et ½, plat dos", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [341, 354]}}, {"model": "objective.educative", "pk": 356, "fields": {"content": "", "label": "Tomber ventre groupé", "short_label": "Ventre o", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [1, 11]}}, {"model": "objective.educative", "pk": 357, "fields": {"content": "", "label": "Tomber ventre carpé", "short_label": "Ventre <", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [3, 11]}}, {"model": "objective.educative", "pk": 358, "fields": {"content": "", "label": "Tomber ventre en reculant", "short_label": "Ventre en reculant", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 359, "fields": {"content": "", "label": "Tomber plat dos en avançant", "short_label": "Tomber plat dos en avançant", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 360, "fields": {"content": "", "label": "Curviligne fermé en avançant", "short_label": "Curviligne fermé en avançant", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [359]}}, {"model": "objective.educative", "pk": 361, "fields": {"content": "", "label": "Genoux - plat dos groupé", "short_label": "Genoux - plat dos groupé", "difficulty": "0.1", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [7]}}, {"model": "objective.educative", "pk": 362, "fields": {"content": "", "label": "Genoux - plat dos carpé", "short_label": "Genoux - plat dos carpé", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [8]}}, {"model": "objective.educative", "pk": 363, "fields": {"content": "", "label": "Genoux - plat dos tendu", "short_label": "Genoux - plat dos tendu", "difficulty": "0.1", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 364, "fields": {"content": "", "label": "Genoux - Assis", "short_label": "Genoux - Assis", "difficulty": "0.0", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 365, "fields": {"content": "", "label": "Tomber genoux", "short_label": "Genoux", "difficulty": "0.0", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 366, "fields": {"content": "", "label": "Debout (de Genoux)", "short_label": "Debout (genoux)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 367, "fields": {"content": "", "label": "Genoux - salto avant groupé", "short_label": "Genoux - avant o", "difficulty": "0.5", "level": 5, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 368, "fields": {"content": "", "label": "Genoux - salto avant carpé", "short_label": "Genoux - avant <", "difficulty": "0.5", "level": 5, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 369, "fields": {"content": "", "label": "Genoux - Barani groupé", "short_label": "Genoux - Barani o", "difficulty": "0.6", "level": 6, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 370, "fields": {"content": "", "label": "Genoux - Barani carpé", "short_label": "Genoux - Barani <", "difficulty": "0.6", "level": 6, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 371, "fields": {"content": "", "label": "Ventre - plat dos groupé", "short_label": "Ventre - plat dos o", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [186, 7]}}, {"model": "objective.educative", "pk": 372, "fields": {"content": "", "label": "Ventre - plat dos carpé", "short_label": "Ventre - plat dos <", "difficulty": "0.2", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [8, 11]}}, {"model": "objective.educative", "pk": 374, "fields": {"content": "", "label": "Genoux - Piqué groupé", "short_label": "Genoux - Piqué o", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 375, "fields": {"content": "", "label": "Genoux - Piqué carpé", "short_label": "Genoux - Piqué <", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 376, "fields": {"content": "", "label": "Genoux - Piqué tendu", "short_label": "Genoux - Piqué", "difficulty": "0.3", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 377, "fields": {"content": "", "label": "Salto avant tendu, ventre", "short_label": "Avant /, ventre", "difficulty": "0.7", "level": 8, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [24]}}, {"model": "objective.educative", "pk": 378, "fields": {"content": "", "label": "Barani In Full Out puck", "short_label": "Barani In Full Out puck", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 379, "fields": {"content": "", "label": "Barani In Full Out demi carpé", "short_label": "BIFO L", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [66]}}, {"model": "objective.educative", "pk": 380, "fields": {"content": "", "label": "4 pattes - salto avant carpé", "short_label": "4 pattes - avant <", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [207]}}, {"model": "objective.educative", "pk": 381, "fields": {"content": "", "label": "Pull-over carpé, arriver assis", "short_label": "PO <, assis", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [47]}}, {"model": "objective.educative", "pk": 382, "fields": {"content": "", "label": "Pull-over carpé, arriver 4 pattes", "short_label": "PO <, 4 pattes", "difficulty": "0.2", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [219]}}, {"model": "objective.educative", "pk": 383, "fields": {"content": "", "label": "Pull-over carpé, arriver ventre", "short_label": "PO <, ventre", "difficulty": "0.2", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [382]}}, {"model": "objective.educative", "pk": 384, "fields": {"content": "", "label": "Pull-over tendu, arriver 4 pattes", "short_label": "PO /, 4 pattes", "difficulty": "0.2", "level": 3, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [382]}}, {"model": "objective.educative", "pk": 385, "fields": {"content": "", "label": "Pull-over tendu, arriver ventre", "short_label": "PO /, ventre", "difficulty": "0.2", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [384]}}, {"model": "objective.educative", "pk": 386, "fields": {"content": "", "label": "Pull-over carpé + demi tour, (plat) dos", "short_label": "PO < + ½, (plat) dos", "difficulty": "0.3", "level": 3, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [383]}}, {"model": "objective.educative", "pk": 387, "fields": {"content": "", "label": "4 pattes - salto avant carpé, curviligne ouvert", "short_label": "4 pattes - avant <, (", "difficulty": "0.2", "level": 2, "rank": 2, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [206]}}, {"model": "objective.educative", "pk": 388, "fields": {"content": "", "label": "4 pattes - salto avant tendu, curviligne ouvert", "short_label": "4 pattes - avant /, (", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": [387]}}, {"model": "objective.educative", "pk": 389, "fields": {"content": "", "label": "Trois quart avant groupé + vrille", "short_label": "¾ Avant o + vrille", "difficulty": "0.5", "level": 5, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [153]}}, {"model": "objective.educative", "pk": 390, "fields": {"content": "", "label": "Trois quart avant carpé + vrille", "short_label": "¾ Avant < + vrille", "difficulty": "0.5", "level": 5, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [154]}}, {"model": "objective.educative", "pk": 391, "fields": {"content": "", "label": "Vrille (bras en bas)", "short_label": "Vrille (beb)", "difficulty": "0.2", "level": 3, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 392, "fields": {"content": "", "label": "Vrille bras en haut", "short_label": "Vrille beh", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 393, "fields": {"content": "", "label": "Vrille bras de bas en haut", "short_label": "Vrille b2h", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 394, "fields": {"content": "", "label": "Vrille bras de haut en bas", "short_label": "Vrille h2b", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 395, "fields": {"content": "", "label": "Vrille bras en bas, en haut, en bas", "short_label": "Vrille bhb", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 396, "fields": {"content": "", "label": "Vrille bras en haut, en bas, en haut", "short_label": "Vrille hbh", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 397, "fields": {"content": "", "label": "Double vrille bras en haut", "short_label": "Double vrille bras en haut", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 398, "fields": {"content": "", "label": "Double vrille bras en bas", "short_label": "Double vrille bras en bas", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 399, "fields": {"content": "", "label": "Double vrille bras de bas en haut", "short_label": "Double vrille bras de bas en haut", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 400, "fields": {"content": "", "label": "Double vrille bras de haut en bas", "short_label": "Double vrille bras de haut en bas", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 401, "fields": {"content": "", "label": "Vrille et demi bras en bas", "short_label": "Vrille et ½ beb", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [391]}}, {"model": "objective.educative", "pk": 402, "fields": {"content": "", "label": "Vrille et demi bras en haut", "short_label": "Vrille et ½ beh", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [392]}}, {"model": "objective.educative", "pk": 403, "fields": {"content": "", "label": "Vrille et demi bras de bas en haut", "short_label": "Vrille et ½ b2h", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [393]}}, {"model": "objective.educative", "pk": 404, "fields": {"content": "", "label": "Vrille et demi bras de haut en bas", "short_label": "Vrille et ½ h2b", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [394]}}, {"model": "objective.educative", "pk": 405, "fields": {"content": "", "label": "Vrille et demi bras en bas, en haut, en bas, en haut", "short_label": "Vrille et ½ bhbh", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [395]}}, {"model": "objective.educative", "pk": 406, "fields": {"content": "", "label": "Vrille et demi bras en haut en bas en haut en bas", "short_label": "Vrille et ½ bras en haut en bas en haut en bas", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [396]}}, {"model": "objective.educative", "pk": 407, "fields": {"content": "", "label": "Double vrille une vrille beb, une vrille beh", "short_label": "Double vrille une vrille beb, une vrille beh", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [263]}}, {"model": "objective.educative", "pk": 408, "fields": {"content": "", "label": "Double vrille une vrille beh, une vrille beb", "short_label": "Double vrille une vrille beh, une vrille beb", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [263]}}, {"model": "objective.educative", "pk": 409, "fields": {"content": "", "label": "Half In Half Out puck", "short_label": "Half In Half Out puck", "difficulty": "1.2", "level": 12, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [111]}}, {"model": "objective.educative", "pk": 410, "fields": {"content": "", "label": "Half In Half Out demi carpé", "short_label": "HIHO L", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [112]}}, {"model": "objective.educative", "pk": 411, "fields": {"content": "", "label": "Double arrière demi-groupé", "short_label": "2 back puck", "difficulty": "1.0", "level": 10, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [91]}}, {"model": "objective.educative", "pk": 412, "fields": {"content": "", "label": "Double arrière demi-carpé", "short_label": "2 back L", "difficulty": "1.2", "level": 12, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [92]}}, {"model": "objective.educative", "pk": 413, "fields": {"content": "", "label": "Cody groupé + demi tour, plat-dos", "short_label": "Cody o + ½, plat-dos", "difficulty": "0.6", "level": 6, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [158]}}, {"model": "objective.educative", "pk": 414, "fields": {"content": "", "label": "Cody carpé + demi tour, plat-dos", "short_label": "Cody < + ½, plat-dos", "difficulty": "0.6", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [315]}}, {"model": "objective.educative", "pk": 415, "fields": {"content": "", "label": "Cody groupé + vrille, ventre", "short_label": "Cody o + vrille, ventre", "difficulty": "0.7", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [413]}}, {"model": "objective.educative", "pk": 416, "fields": {"content": "", "label": "Cody carpé + vrille, ventre", "short_label": "Cody < + vrille, ventre", "difficulty": "0.7", "level": 7, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [414, 415]}}, {"model": "objective.educative", "pk": 417, "fields": {"content": "", "label": "Cody groupé + vrille, debout", "short_label": "Cody full o", "difficulty": "0.8", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [30, 415]}}, {"model": "objective.educative", "pk": 418, "fields": {"content": "", "label": "Cody carpé + vrille, debout", "short_label": "Cody full <", "difficulty": "0.9", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [61, 416]}}, {"model": "objective.educative", "pk": 419, "fields": {"content": "", "label": "Cody tendu + demi tour, plat-dos", "short_label": "Cody / + ½, plat-dos", "difficulty": "0.6", "level": 7, "rank": 15, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [316]}}, {"model": "objective.educative", "pk": 420, "fields": {"content": "", "label": "Cody tendu + vrille, ventre", "short_label": "Cody / + vrille, ventre", "difficulty": "0.7", "level": 8, "rank": 16, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [419]}}, {"model": "objective.educative", "pk": 421, "fields": {"content": "", "label": "Cody tendu + vrille et demi, plat dos", "short_label": "Cody tendu + vrille et ½, plat dos", "difficulty": "0.8", "level": 9, "rank": 17, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [420]}}, {"model": "objective.educative", "pk": 422, "fields": {"content": "", "label": "Cody tendu + vrille et demi, debout", "short_label": "Cody tendu + vrille et ½, debout", "difficulty": "1.0", "level": 11, "rank": 17, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [162, 421]}}, {"model": "objective.educative", "pk": 423, "fields": {"content": "", "label": "4 pattes - Culbute, arriver assis", "short_label": "4 pattes - Culbute, assis", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 424, "fields": {"content": "", "label": "4 pattes - Culbute, arriver dos", "short_label": "4 pattes - Culbute, dos", "difficulty": "0.2", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [208]}}, {"model": "objective.educative", "pk": 425, "fields": {"content": "", "label": "Kaboom arrière carpé, arriver ventre", "short_label": "Kaboom <, ventre", "difficulty": "0.2", "level": 2, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [194]}}, {"model": "objective.educative", "pk": 426, "fields": {"content": "", "label": "Kaboom arrière tendu, arriver ventre", "short_label": "Kaboom /, ventre", "difficulty": "0.2", "level": 3, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [425]}}, {"model": "objective.educative", "pk": 427, "fields": {"content": "(abaisser un bras)", "label": "Kaboom arrière tendu + demi tour, arriver plat dos", "short_label": "Kaboom / + ½, plat dos", "difficulty": "0.3", "level": 4, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [426]}}, {"model": "objective.educative", "pk": 428, "fields": {"content": "", "label": "Kaboom arrière tendu + vrille, arriver ventre", "short_label": "Kaboom / + vrille, ventre", "difficulty": "0.4", "level": 5, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [427]}}, {"model": "objective.educative", "pk": 429, "fields": {"content": "", "label": "Kaboom arrière - double arrière groupé", "short_label": "Kaboom double o", "difficulty": "0.8", "level": 8, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [430]}}, {"model": "objective.educative", "pk": 430, "fields": {"content": "", "label": "Kaboom arrière tendu, arriver dos", "short_label": "Kaboom /, arriver dos", "difficulty": "0.5", "level": 6, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [174]}}, {"model": "objective.educative", "pk": 431, "fields": {"content": "", "label": "Kaboom arrière - double arrière carpé", "short_label": "Kaboom double <", "difficulty": "0.9", "level": 9, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [429]}}, {"model": "objective.educative", "pk": 432, "fields": {"content": "", "label": "Kaboom arrière tendu + vrille", "short_label": "Kaboom Full", "difficulty": "0.5", "level": 6, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [174, 428]}}, {"model": "objective.educative", "pk": 433, "fields": {"content": "", "label": "Kaboom arrière tendu + vrille, arriver plat dos", "short_label": "Kaboom Full, plat dos", "difficulty": "0.7", "level": 8, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [432]}}, {"model": "objective.educative", "pk": 434, "fields": {"content": "", "label": "Kaboom arrière tendu + vrille et demi, arriver ventre", "short_label": "Kaboom Full + ½, ventre", "difficulty": "0.8", "level": 9, "rank": 15, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [433]}}, {"model": "objective.educative", "pk": 435, "fields": {"content": "", "label": "Kaboom arrière tendu + vrille et demi, arriver plat dos", "short_label": "Kaboom Full + ½, plat dos", "difficulty": "0.5", "level": 6, "rank": 15, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [428]}}, {"model": "objective.educative", "pk": 436, "fields": {"content": "", "label": "Kaboom arrière tendu + demi tour, debout", "short_label": "Kaboom / + ½, debout", "difficulty": "0.4", "level": 5, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [174, 427]}}, {"model": "objective.educative", "pk": 437, "fields": {"content": "", "label": "Kaboom arrière tendu + vrille et demi", "short_label": "Kaboom Full + ½, debout", "difficulty": "0.6", "level": 7, "rank": 16, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [432, 435]}}, {"model": "objective.educative", "pk": 438, "fields": {"content": "", "label": "Kaboom avant groupé, arriver plat dos", "short_label": "Kaboom avant o, plat dos", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 439, "fields": {"content": "", "label": "Kaboom avant carpé, arriver plat dos", "short_label": "Kaboom avant <, plat dos", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [438]}}, {"model": "objective.educative", "pk": 440, "fields": {"content": "", "label": "Kaboom avant tendu, arriver plat dos", "short_label": "Kaboom avant /, plat dos", "difficulty": "0.2", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [439]}}, {"model": "objective.educative", "pk": 441, "fields": {"content": "", "label": "Kaboom avant groupé + demi tour, arriver 4 pattes", "short_label": "Kaboom avant o + demi, 4 pattes", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [438]}}, {"model": "objective.educative", "pk": 442, "fields": {"content": "", "label": "Kaboom avant carpé + demi tour, arriver 4 pattes", "short_label": "Kaboom avant < + demi, 4 pattes", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [441]}}, {"model": "objective.educative", "pk": 443, "fields": {"content": "", "label": "Kaboom avant tendu + demi tour, arriver 4 pattes", "short_label": "Kaboom avant / + demi, 4 pattes", "difficulty": "0.3", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [442]}}, {"model": "objective.educative", "pk": 444, "fields": {"content": "", "label": "Kaboom avant groupé + vrille, arriver plat dos", "short_label": "Kaboom avant o + vrille, plat dos", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [441]}}, {"model": "objective.educative", "pk": 445, "fields": {"content": "", "label": "Kaboom avant carpé + vrille, arriver plat dos", "short_label": "Kaboom avant < + vrille, plat dos", "difficulty": "0.4", "level": 4, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [444]}}, {"model": "objective.educative", "pk": 446, "fields": {"content": "", "label": "Kaboom avant tendu + vrille, arriver plat dos", "short_label": "Kaboom avant / + vrille, plat dos", "difficulty": "0.4", "level": 5, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [445]}}, {"model": "objective.educative", "pk": 447, "fields": {"content": "", "label": "Vrille debout (du ventre)", "short_label": "Vrille debout (du ventre)", "difficulty": "0.3", "level": 4, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [70]}}, {"model": "objective.educative", "pk": 448, "fields": {"content": "", "label": "Half In trois quart groupé, arriver plat dos", "short_label": "Half In trois quart o, plat dos", "difficulty": "0.4", "level": 4, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [50, 153]}}, {"model": "objective.educative", "pk": 449, "fields": {"content": "", "label": "Half In trois quart carpé, arriver plat dos", "short_label": "Half In trois quart <, plat dos", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [448]}}, {"model": "objective.educative", "pk": 450, "fields": {"content": "", "label": "Barani carpé, arriver ventre", "short_label": "Barani <, ventre", "difficulty": "0.4", "level": 4, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [32]}}, {"model": "objective.educative", "pk": 451, "fields": {"content": "", "label": "Barani groupé, arriver ventre", "short_label": "Barani o, ventre", "difficulty": "0.4", "level": 4, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [31]}}, {"model": "objective.educative", "pk": 452, "fields": {"content": "", "label": "Barani tendu, arriver ventre", "short_label": "Barani /, ventre", "difficulty": "0.4", "level": 5, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [33]}}, {"model": "objective.educative", "pk": 453, "fields": {"content": "", "label": "Assis - Dos", "short_label": "Assis - Dos", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [319]}}, {"model": "objective.educative", "pk": 454, "fields": {"content": "", "label": "Tomber plat dos tendu bras en bas", "short_label": "Plat dos (beb)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [199]}}, {"model": "objective.educative", "pk": 455, "fields": {"content": "", "label": "Tomber plat dos tendu bras de haut en bas", "short_label": "Plat dos (h2b)", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 456, "fields": {"content": "", "label": "Tomber plat dos tendu bras de bas en haut", "short_label": "Plat dos (b2h)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [319]}}, {"model": "objective.educative", "pk": 457, "fields": {"content": "", "label": "Tomber Assis bras en bas", "short_label": "Tomber Assis (beb)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 458, "fields": {"content": "", "label": "Tomber Assis bras en haut", "short_label": "Tomber Assis (b2h)", "difficulty": "0.0", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [199]}}, {"model": "objective.educative", "pk": 459, "fields": {"content": "", "label": "Debout (de l'assis) bras en bas", "short_label": "Debout (de l'assis) (beb)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 460, "fields": {"content": "", "label": "Debout (de l'assis) bras en haut", "short_label": "Debout (de l'assis) (beh)", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [459]}}, {"model": "objective.educative", "pk": 461, "fields": {"content": "", "label": "Demi tour debout (de l'assis) bras en bas", "short_label": "Demi tour debout (de l'assis) (beb)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 462, "fields": {"content": "", "label": "Demi tour debout (de l'assis) bras en haut", "short_label": "Demi tour debout (de l'assis) (beh)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [461]}}, {"model": "objective.educative", "pk": 463, "fields": {"content": "", "label": "Vrille debout (de l'assis) bras en haut", "short_label": "Vrille debout (de l'assis) (beh)", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [462]}}, {"model": "objective.educative", "pk": 464, "fields": {"content": "", "label": "Vrille debout (de l'assis) bras en bas", "short_label": "Vrille debout (de l'assis) (b2b)", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [461]}}, {"model": "objective.educative", "pk": 465, "fields": {"content": "", "label": "Prog Half out fliffis groupé", "short_label": "1 ¾ o, plat dos", "difficulty": "0.8", "level": 8, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [225, 53]}}, {"model": "objective.educative", "pk": 466, "fields": {"content": "", "label": "Prog Half out fliffis carpé", "short_label": "1 ¾ <, plat dos", "difficulty": "0.9", "level": 9, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [224, 54]}}, {"model": "objective.educative", "pk": 467, "fields": {"content": "", "label": "Ventre - Poirier", "short_label": "Ventre - ATR", "difficulty": "0.1", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [189]}}, {"model": "objective.educative", "pk": 468, "fields": {"content": "", "label": "Poirier - rouler", "short_label": "ATR - roule", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [189]}}, {"model": "objective.educative", "pk": 469, "fields": {"content": "", "label": "Poirier - plat dos", "short_label": "Poirier - plat dos", "difficulty": "0.1", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [468]}}, {"model": "objective.educative", "pk": 471, "fields": {"content": "", "label": "Ball Out tendu, arriver ventre", "short_label": "Ball Out /, ventre", "difficulty": "0.8", "level": 9, "rank": 13, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [274]}}, {"model": "objective.educative", "pk": 472, "fields": {"content": "", "label": "Porpus full groupé, arriver plat dos", "short_label": "Porpus full o, plat dos", "difficulty": "0.7", "level": 7, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [40]}}, {"model": "objective.educative", "pk": 473, "fields": {"content": "", "label": "Porpus full carpé, arriver plat dos", "short_label": "Porpus full <, plat dos", "difficulty": "0.7", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [41, 472]}}, {"model": "objective.educative", "pk": 474, "fields": {"content": "", "label": "Porpus full tendu, arriver plat dos", "short_label": "Porpus full /, plat dos", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [473, 42]}}, {"model": "objective.educative", "pk": 475, "fields": {"content": "", "label": "Jonah ball out tendu", "short_label": "Jonah ball out /", "difficulty": "0.8", "level": 9, "rank": 14, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [249]}}, {"model": "objective.educative", "pk": 476, "fields": {"content": "", "label": "Porpus groupé + demi, arriver ventre", "short_label": "Porpus o + demi, ventre", "difficulty": "0.6", "level": 6, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [40]}}, {"model": "objective.educative", "pk": 477, "fields": {"content": "", "label": "Porpus carpé + demi, arriver ventre", "short_label": "Porpus < + demi, ventre", "difficulty": "0.6", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [41]}}, {"model": "objective.educative", "pk": 478, "fields": {"content": "", "label": "Porpus tendu + demi, arriver ventre", "short_label": "Porpus / + demi, ventre", "difficulty": "0.6", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [42]}}, {"model": "objective.educative", "pk": 479, "fields": {"content": "", "label": "Vrille et demi, tomber ventre", "short_label": "Vrille et ½, ventre", "difficulty": "0.4", "level": 5, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [84]}}, {"model": "objective.educative", "pk": 480, "fields": {"content": "", "label": "Pull-over tendu", "short_label": "PO /", "difficulty": "0.3", "level": 4, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [47]}}, {"model": "objective.educative", "pk": 481, "fields": {"content": "", "label": "Double pull-over groupé", "short_label": "Double pull-over o", "difficulty": "0.8", "level": 8, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [222, 63]}}, {"model": "objective.educative", "pk": 482, "fields": {"content": "", "label": "Double pull-over carpé", "short_label": "Double pull-over <", "difficulty": "0.9", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [481]}}, {"model": "objective.educative", "pk": 483, "fields": {"content": "", "label": "Pull-over tendu + demi tour, (plat) dos", "short_label": "PO / + ½, (plat) dos", "difficulty": "0.3", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [385]}}, {"model": "objective.educative", "pk": 484, "fields": {"content": "", "label": "Pull-over tendu - vrille, ventre", "short_label": "PO / - vrille, ventre", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [483]}}, {"model": "objective.educative", "pk": 485, "fields": {"content": "", "label": "Pull-over tendu - vrille et demi, arriver plat dos", "short_label": "PO / - vrille et ½, plat dos", "difficulty": "0.5", "level": 6, "rank": 6, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [484]}}, {"model": "objective.educative", "pk": 486, "fields": {"content": "", "label": "Pull-over tendu + demi tour, debout", "short_label": "PO / + ½", "difficulty": "0.4", "level": 5, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [480, 483]}}, {"model": "objective.educative", "pk": 487, "fields": {"content": "", "label": "Pull-over tendu + vrille, debout", "short_label": "PO / + vrille, debout", "difficulty": "0.5", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [486]}}, {"model": "objective.educative", "pk": 488, "fields": {"content": "", "label": "Pull-over tendu + demi tour, arrivée ventre", "short_label": "PO / + demi, ventre", "difficulty": "0.6", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [486]}}, {"model": "objective.educative", "pk": 489, "fields": {"content": "", "label": "Pull-over tendu + vrille, arriver plat-dos", "short_label": "PO / + vrille, plat-dos", "difficulty": "0.7", "level": 8, "rank": 9, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [484]}}, {"model": "objective.educative", "pk": 490, "fields": {"content": "", "label": "Pull-over tendu + vrille et demi, arriver ventre", "short_label": "PO / + vrille et demi, ventre", "difficulty": "0.8", "level": 9, "rank": 10, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [489]}}, {"model": "objective.educative", "pk": 492, "fields": {"content": "", "label": "Ventre - double vrille, arriver plat dos", "short_label": "Ventre - double vrille, plat dos", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [38]}}, {"model": "objective.educative", "pk": 493, "fields": {"content": "", "label": "Ventre - Double vrille, ventre", "short_label": "Ventre - Double vrille, ventre", "difficulty": "0.2", "level": 3, "rank": 7, "age_boy": null, "age_girl": null, "educatives": [], "prerequisites": [326]}}, {"model": "objective.educative", "pk": 494, "fields": {"content": null, "label": "Dix Chandelles", "short_label": "10 |", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": [250]}}, {"model": "objective.educative", "pk": 495, "fields": {"content": null, "label": "FfG Imposé D2 Junior 1", "short_label": "L1 D2 Junior 1", "difficulty": "4.0", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 496, "fields": {"content": null, "label": "BOT Imposé -14 ans", "short_label": "BOT Imposé -14 ans", "difficulty": "3.5", "level": 9, "rank": 13, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 497, "fields": {"content": null, "label": "BOT imposé -12 ans", "short_label": "BOT imposé -12 ans", "difficulty": "2.1", "level": 7, "rank": 9, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 498, "fields": {"content": null, "label": "BOT Imposé -10 ans", "short_label": "BOT -10 ans", "difficulty": "0.7", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 499, "fields": {"content": null, "label": "BOT imposé Fédérale 4", "short_label": "BOT F4", "difficulty": "0.7", "level": 4, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 500, "fields": {"content": null, "label": "BOT Imposé Fédérale 3", "short_label": "BOT F3", "difficulty": "1.2", "level": 7, "rank": 9, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 501, "fields": {"content": null, "label": "BOT Imposé Fédérale 2", "short_label": "BOT F2", "difficulty": "2.5", "level": 9, "rank": 10, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 502, "fields": {"content": null, "label": "BOT Imposé Fédérale 1", "short_label": "BOT F1", "difficulty": "4.2", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 503, "fields": {"content": null, "label": "BOT Imposé Bronze", "short_label": "BOT Imposé Bronze", "difficulty": "0.5", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 504, "fields": {"content": null, "label": "BOT Imposé Argent", "short_label": "BOT Imposé Argent", "difficulty": "0.7", "level": 4, "rank": 7, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 505, "fields": {"content": null, "label": "BOT Imposé Or", "short_label": "BOT Imposé Or", "difficulty": "1.2", "level": 7, "rank": 9, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 506, "fields": {"content": null, "label": "FfG Imposé -10 ans (avec bonus)", "short_label": "FfG -10 ans (bonus)", "difficulty": "1.6", "level": 7, "rank": 9, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 507, "fields": {"content": null, "label": "FfG Imposé D1 -12 ans", "short_label": "FfG Imposé D1 -12 ans", "difficulty": "3.6", "level": 10, "rank": 12, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 508, "fields": {"content": null, "label": "FfG Imposé D1 Senior 1", "short_label": "FfG Imposé D1 Senior 1", "difficulty": "10.3", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 509, "fields": {"content": null, "label": "Safwane's L2", "short_label": "Safwane's L2", "difficulty": "12.0", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 510, "fields": {"content": null, "label": "Safwane's L4", "short_label": "Safwane's L4", "difficulty": "15.0", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 511, "fields": {"content": null, "label": "Sebastian's L4", "short_label": "Sebastian's L4", "difficulty": "16.4", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 512, "fields": {"content": null, "label": "Sebastian's L2", "short_label": "Sebastian's L2", "difficulty": "13.1", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 513, "fields": {"content": "", "label": "Prog Half In Triffis groupé", "short_label": "Prog Half In Triffis o", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": 17, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 514, "fields": {"content": "", "label": "Prog Half In Triffis carré", "short_label": "Prog Half In Triffis <", "difficulty": "1.6", "level": 16, "rank": 16, "age_boy": 18, "age_girl": 19, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 515, "fields": {"content": null, "label": "Imposé Roswitha", "short_label": "Roswitha's L1", "difficulty": "6.9", "level": 13, "rank": 15, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 516, "fields": {"content": null, "label": "Roswitha's L2", "short_label": "Roswitha's L2", "difficulty": "9.1", "level": 15, "rank": 16, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 517, "fields": {"content": null, "label": "Rivoal 02", "short_label": "Rivoal 02", "difficulty": "3.4", "level": 10, "rank": 11, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 518, "fields": {"content": null, "label": "Rivoal 03", "short_label": "Rivoal 03", "difficulty": "3.6", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 519, "fields": {"content": null, "label": "Rivoal 04", "short_label": "Rivoal 04", "difficulty": "3.9", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 520, "fields": {"content": null, "label": "Rivoal 05", "short_label": "Rivoal 05", "difficulty": "4.2", "level": 10, "rank": 11, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 521, "fields": {"content": null, "label": "Rivoal 01", "short_label": "Rivoal 01", "difficulty": "2.4", "level": 9, "rank": 10, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 522, "fields": {"content": null, "label": "Rivoal 06", "short_label": "Rivoal 06", "difficulty": "4.5", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 523, "fields": {"content": null, "label": "Rivoal 07", "short_label": "Rivoal 07", "difficulty": "4.8", "level": 10, "rank": 11, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 524, "fields": {"content": null, "label": "Rivoal 08", "short_label": "Rivoal 08", "difficulty": "4.9", "level": 12, "rank": 13, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 525, "fields": {"content": null, "label": "Rivoal 09", "short_label": "Rivoal 09", "difficulty": "5.0", "level": 12, "rank": 13, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 526, "fields": {"content": null, "label": "Rivoal 10", "short_label": "Rivoal 10", "difficulty": "5.4", "level": 12, "rank": 13, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 527, "fields": {"content": null, "label": "Rivoal 11", "short_label": "Rivoal 11", "difficulty": "5.5", "level": 12, "rank": 13, "age_boy": 10, "age_girl": 10, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 528, "fields": {"content": null, "label": "Rivoal 12", "short_label": "Rivoal 12", "difficulty": "5.7", "level": 12, "rank": 13, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 529, "fields": {"content": null, "label": "Rivoal 13", "short_label": "Rivoal 13", "difficulty": "6.0", "level": 12, "rank": 14, "age_boy": 11, "age_girl": 11, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 530, "fields": {"content": null, "label": "Rivoal 14", "short_label": "Rivoal 14", "difficulty": "6.2", "level": 12, "rank": 13, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 531, "fields": {"content": null, "label": "Rivoal 15", "short_label": "Rivoal 15", "difficulty": "6.5", "level": 12, "rank": 14, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 532, "fields": {"content": null, "label": "Rivoal 16", "short_label": "Rivoal 16", "difficulty": "6.7", "level": 12, "rank": 12, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 533, "fields": {"content": null, "label": "Rivoal 17", "short_label": "Rivoal 17", "difficulty": "7.0", "level": 12, "rank": 14, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 534, "fields": {"content": null, "label": "Rivoal 18", "short_label": "Rivoal 18", "difficulty": "7.0", "level": 12, "rank": 13, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 535, "fields": {"content": null, "label": "Rivoal 19", "short_label": "Rivoal 19", "difficulty": "7.0", "level": 12, "rank": 13, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 536, "fields": {"content": null, "label": "Rivoal 20", "short_label": "Rivoal 20", "difficulty": "7.4", "level": 12, "rank": 14, "age_boy": 12, "age_girl": 12, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 537, "fields": {"content": null, "label": "Rivoal 21", "short_label": "Rivoal 21", "difficulty": "7.7", "level": 12, "rank": 13, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 538, "fields": {"content": null, "label": "Rivoal 22", "short_label": "Rivoal 22", "difficulty": "8.1", "level": 12, "rank": 13, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 539, "fields": {"content": null, "label": "Rivoal 23", "short_label": "Rivoal 23", "difficulty": "8.4", "level": 12, "rank": 15, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 540, "fields": {"content": null, "label": "Rivoal 24", "short_label": "Rivoal 24", "difficulty": "8.5", "level": 12, "rank": 15, "age_boy": 13, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 541, "fields": {"content": null, "label": "Rivoal 25", "short_label": "Rivoal 25", "difficulty": "9.1", "level": 12, "rank": 15, "age_boy": 14, "age_girl": 14, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 542, "fields": {"content": null, "label": "Rivoal 26", "short_label": "Rivoal 26", "difficulty": "9.4", "level": 14, "rank": 15, "age_boy": 14, "age_girl": 13, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 543, "fields": {"content": null, "label": "Rivoal 27", "short_label": "Rivoal 27", "difficulty": "10.0", "level": 15, "rank": 16, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 544, "fields": {"content": null, "label": "Rivoal 28", "short_label": "Rivoal 28", "difficulty": "10.4", "level": 15, "rank": 16, "age_boy": 14, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 545, "fields": {"content": null, "label": "Rivoal 29", "short_label": "Rivoal 29", "difficulty": "11.1", "level": 16, "rank": 17, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 546, "fields": {"content": null, "label": "Rivoal 30", "short_label": "Rivoal 30", "difficulty": "11.4", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 547, "fields": {"content": null, "label": "Rivoal 31", "short_label": "Rivoal 31", "difficulty": "12.0", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 548, "fields": {"content": null, "label": "Rivoal 32", "short_label": "Rivoal 32", "difficulty": "12.5", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 549, "fields": {"content": null, "label": "Rivoal 33", "short_label": "Rivoal 33", "difficulty": "13.1", "level": 18, "rank": 19, "age_boy": 16, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 550, "fields": {"content": null, "label": "Rivoal 34", "short_label": "Rivoal 34", "difficulty": "13.3", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 551, "fields": {"content": null, "label": "Rivoal 35", "short_label": "Rivoal 35", "difficulty": "13.7", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 552, "fields": {"content": null, "label": "Rivoal 36", "short_label": "Rivoal 36", "difficulty": "15.0", "level": 22, "rank": 23, "age_boy": 18, "age_girl": 18, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 553, "fields": {"content": "", "label": "Full in 2 full out carpé", "short_label": "Miller <", "difficulty": "1.8", "level": 18, "rank": 18, "age_boy": 17, "age_girl": 17, "educatives": [], "prerequisites": [132]}}, {"model": "objective.educative", "pk": 554, "fields": {"content": null, "label": "QDE N1A1", "short_label": "QDE N1A1", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 555, "fields": {"content": null, "label": "QDE N1A2", "short_label": "QDE N1A2", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 556, "fields": {"content": null, "label": "QDE N1A3", "short_label": "QDE N1A3", "difficulty": "0.4", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 557, "fields": {"content": null, "label": "QDE N1A4", "short_label": "QDE N1A4", "difficulty": "0.3", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 558, "fields": {"content": null, "label": "QDE N1A5", "short_label": "QDE N1A5", "difficulty": "0.8", "level": 5, "rank": 9, "age_boy": 8, "age_girl": 8, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 559, "fields": {"content": null, "label": "Sebastian's L1", "short_label": "Sebastian's L1", "difficulty": "11.0", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 15, "educatives": [], "prerequisites": []}}, {"model": "objective.touchposition", "pk": 1, "fields": {"label": "Assis", "short_label": "Assis", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 2, "fields": {"label": "Ventre", "short_label": "Ventre", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 3, "fields": {"label": "Dos", "short_label": "Dos", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 4, "fields": {"label": "Plat dos", "short_label": "Plat dos", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 5, "fields": {"label": "Quadrupédique", "short_label": "4 pattes", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 6, "fields": {"label": "Appui tendu renversé", "short_label": "ATR", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 7, "fields": {"label": "Curviligne ouvert", "short_label": "Ventre ouvert", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 8, "fields": {"label": "Curviligne fermé", "short_label": "Dos fermé", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 9, "fields": {"label": "Debout", "short_label": "Debout", "allowed_in_competition": true, "is_default": true}}, {"model": "objective.touchposition", "pk": 10, "fields": {"label": "Chute faciale", "short_label": "Chute faciale", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 11, "fields": {"label": "Genoux", "short_label": "Gnx", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.skill", "pk": 73, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- <", "simplified_notation": ".7 -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 72, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- o", "simplified_notation": ".7 -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 149, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 4, "notation": "A 4", "simplified_notation": "A 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 99, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 11, "twist": 0, "notation": ".11 --- <", "simplified_notation": ".11 --- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 98, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 11, "twist": 0, "notation": ".11 --- o", "simplified_notation": ".11 --- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 208, "fields": {"position": "0", "departure": 5, "landing": 1, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": false}}, {"model": "objective.skill", "pk": 423, "fields": {"position": "o", "departure": 5, "landing": 1, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 424, "fields": {"position": "c", "departure": 5, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - c", "simplified_notation": ".2 - c", "is_competitive": false}}, {"model": "objective.skill", "pk": 179, "fields": {"position": "0", "departure": 5, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "A 1", "simplified_notation": "A 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 187, "fields": {"position": "0", "departure": 5, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 189, "fields": {"position": "0", "departure": 5, "landing": 6, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": false}}, {"model": "objective.skill", "pk": 380, "fields": {"position": "<", "departure": 5, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": false}}, {"model": "objective.skill", "pk": 387, "fields": {"position": "<", "departure": 5, "landing": 7, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - <", "simplified_notation": ".2 - <", "is_competitive": false}}, {"model": "objective.skill", "pk": 207, "fields": {"position": "o", "departure": 5, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 206, "fields": {"position": "o", "departure": 5, "landing": 7, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - o", "simplified_notation": ".2 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 388, "fields": {"position": "/", "departure": 5, "landing": 7, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 181, "fields": {"position": "0", "departure": 5, "landing": 2, "rotation_type": 1, "rotation": 0, "twist": 0, "notation": ".0 0", "simplified_notation": ".0 0", "is_competitive": false}}, {"model": "objective.skill", "pk": 109, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 7, "notation": ".4 7 /", "simplified_notation": ".4 7 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 44, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - <", "simplified_notation": "5 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 43, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - o", "simplified_notation": "5. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 227, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 /", "simplified_notation": "4. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 45, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - /", "simplified_notation": "5 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 180, "fields": {"position": "0", "departure": 1, "landing": 5, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": false}}, {"model": "objective.skill", "pk": 331, "fields": {"position": "<", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 <", "simplified_notation": ".1 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 337, "fields": {"position": "<", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3 <", "simplified_notation": ".1 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 334, "fields": {"position": "<", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 <", "simplified_notation": ".1 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 178, "fields": {"position": "0", "departure": 1, "landing": 5, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 100, "fields": {"position": "/", "departure": 1, "landing": 1, "rotation_type": 1, "rotation": 0, "twist": 1, "notation": "A 1", "simplified_notation": "A 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 102, "fields": {"position": "/", "departure": 1, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1", "simplified_notation": ".1 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 332, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 /", "simplified_notation": ".1 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 201, "fields": {"position": "0", "departure": 1, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1", "simplified_notation": "1. 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 453, "fields": {"position": "/", "departure": 1, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 341, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 5, "notation": ".1 5 /", "simplified_notation": ".1 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 327, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 4, "notation": "1. 4 /", "simplified_notation": "1. 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 340, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 4, "notation": ".1 4 /", "simplified_notation": ".1 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 330, "fields": {"position": "o", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 o", "simplified_notation": ".1 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 336, "fields": {"position": "o", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3 o", "simplified_notation": ".1 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 333, "fields": {"position": "o", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 o", "simplified_notation": ".1 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 199, "fields": {"position": "0", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": true}}, {"model": "objective.skill", "pk": 319, "fields": {"position": "/", "departure": 1, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 157, "fields": {"position": "0", "departure": 1, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - 0", "simplified_notation": ".3 - 0", "is_competitive": true}}, {"model": "objective.skill", "pk": 329, "fields": {"position": "<", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - <", "simplified_notation": ".1 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 328, "fields": {"position": "o", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - o", "simplified_notation": ".1 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 101, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1", "is_competitive": true}}, {"model": "objective.skill", "pk": 146, "fields": {"position": "0", "departure": 1, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "-3", "simplified_notation": "-3", "is_competitive": true}}, {"model": "objective.skill", "pk": 156, "fields": {"position": "0", "departure": 1, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3", "simplified_notation": ".1 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 338, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3 /", "simplified_notation": "1. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 324, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3 /", "simplified_notation": ".1 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 82, "fields": {"position": "0", "departure": 1, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 204, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 2, "notation": "1. 2 /", "simplified_notation": "1. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 335, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 /", "simplified_notation": ".1 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 128, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. -2 <", "simplified_notation": "8. -2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 127, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. -2 o", "simplified_notation": "8. -2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 129, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. -2 /", "simplified_notation": "8. -2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 170, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - o", "simplified_notation": ".5 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 225, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 6, "twist": 0, "notation": ".6 -- <", "simplified_notation": ".6 -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 169, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - o", "simplified_notation": ".5 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 224, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 6, "twist": 0, "notation": ".6 -- o", "simplified_notation": ".6 -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 274, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 -- /", "simplified_notation": ".5 -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 471, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 6, "twist": 0, "notation": ".6 -- /", "simplified_notation": ".6 -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 59, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 <", "simplified_notation": ".5 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 58, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 o", "simplified_notation": ".5 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 60, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 /", "simplified_notation": ".5 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 32, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 <", "simplified_notation": "4 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 56, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 <", "simplified_notation": ".5 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 450, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1 <", "simplified_notation": ".3 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 31, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 o", "simplified_notation": "4 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 159, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- o", "simplified_notation": ".5 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 451, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1 o", "simplified_notation": ".3 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 66, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 <", "simplified_notation": ".8 12 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 379, "fields": {"position": "L", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 L", "simplified_notation": ".8 12 L", "is_competitive": true}}, {"model": "objective.skill", "pk": 65, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 o", "simplified_notation": ".8 12 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 378, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 c", "simplified_notation": ".8 12 c", "is_competitive": true}}, {"model": "objective.skill", "pk": 67, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 /", "simplified_notation": ".8 12 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 270, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 c", "simplified_notation": ".4 1 c", "is_competitive": true}}, {"model": "objective.skill", "pk": 33, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 /", "simplified_notation": "4 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 57, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 /", "simplified_notation": ".5 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 452, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1 /", "simplified_notation": ".3 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 2, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "|", "simplified_notation": "|", "is_competitive": true}}, {"model": "objective.skill", "pk": 255, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "| 1", "simplified_notation": "| 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 257, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "| 3", "simplified_notation": "| 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 256, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "| 2", "simplified_notation": "| 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 200, "fields": {"position": "0", "departure": 10, "landing": 2, "rotation_type": 1, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 61, "fields": {"position": "<", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - <", "simplified_notation": "5. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 414, "fields": {"position": "<", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 <", "simplified_notation": "4. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 418, "fields": {"position": "<", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 <", "simplified_notation": "5. 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 416, "fields": {"position": "<", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 <", "simplified_notation": "4. 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 223, "fields": {"position": "<", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 6, "twist": 0, "notation": "6. -- <", "simplified_notation": "6. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 315, "fields": {"position": "<", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - <", "simplified_notation": "4. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 160, "fields": {"position": "0", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - L", "simplified_notation": "5. - L", "is_competitive": true}}, {"model": "objective.skill", "pk": 162, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 /", "simplified_notation": "5. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 30, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - o", "simplified_notation": "5 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 413, "fields": {"position": "o", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 o", "simplified_notation": "4. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 417, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 o", "simplified_notation": "5. 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 415, "fields": {"position": "o", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 o", "simplified_notation": "4. 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 222, "fields": {"position": "o", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 6, "twist": 0, "notation": "6. -- o", "simplified_notation": "6. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 158, "fields": {"position": "o", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 62, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - /", "simplified_notation": "5. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 419, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 /", "simplified_notation": "4. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 422, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 3, "notation": "5. 3 /", "simplified_notation": "5. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 421, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 3, "notation": "4. 3 /", "simplified_notation": "4. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 420, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 317, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 0, "rotation": 6, "twist": 0, "notation": "6. -- /", "simplified_notation": "6. -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 316, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - /", "simplified_notation": "4. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 259, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": "c->", "simplified_notation": "c->", "is_competitive": true}}, {"model": "objective.skill", "pk": 260, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": "c->/m", "simplified_notation": "c->/m", "is_competitive": true}}, {"model": "objective.skill", "pk": 261, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": "c->/m/t", "simplified_notation": "c->/m/t", "is_competitive": true}}, {"model": "objective.skill", "pk": 360, "fields": {"position": "/", "departure": 9, "landing": 8, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - )", "simplified_notation": "1. - )", "is_competitive": true}}, {"model": "objective.skill", "pk": 366, "fields": {"position": "/", "departure": 11, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 14, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 0, "notation": "D", "simplified_notation": "D", "is_competitive": true}}, {"model": "objective.skill", "pk": 459, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D", "simplified_notation": "D", "is_competitive": true}}, {"model": "objective.skill", "pk": 460, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D", "simplified_notation": "D", "is_competitive": true}}, {"model": "objective.skill", "pk": 182, "fields": {"position": "0", "departure": 5, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": false}}, {"model": "objective.skill", "pk": 16, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": true}}, {"model": "objective.skill", "pk": 15, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": true}}, {"model": "objective.skill", "pk": 28, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 323, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 320, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 321, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 322, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 268, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1<", "simplified_notation": "-1<", "is_competitive": true}}, {"model": "objective.skill", "pk": 297, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "1 < 1", "simplified_notation": "1 < 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 300, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "1< 2", "simplified_notation": "1< 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 311, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "1 < 3", "simplified_notation": "1 < 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 269, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1//", "simplified_notation": "-1//", "is_competitive": true}}, {"model": "objective.skill", "pk": 298, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "1 // 1", "simplified_notation": "1 // 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 301, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "1 // 2", "simplified_notation": "1 // 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 310, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "1 // 3", "simplified_notation": "1 // 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 267, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1o", "simplified_notation": "-1o", "is_competitive": true}}, {"model": "objective.skill", "pk": 296, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "1 o 1", "simplified_notation": "1 o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 299, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "1 o 2", "simplified_notation": "1 o 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 309, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 5, "notation": "2 o 3", "simplified_notation": "2 o 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 68, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 1, "rotation": 0, "twist": 1, "notation": "1 A", "simplified_notation": "1 A", "is_competitive": true}}, {"model": "objective.skill", "pk": 69, "fields": {"position": "0", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 1, "notation": "D 1", "simplified_notation": "D 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 461, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D 1", "simplified_notation": "D 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 462, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D 1", "simplified_notation": "D 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 70, "fields": {"position": "0", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1", "simplified_notation": "1. 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 71, "fields": {"position": "0", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1", "simplified_notation": ".1 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 35, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 /", "simplified_notation": ".1 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 228, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 34, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1 /", "simplified_notation": "1. 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 217, "fields": {"position": "/", "departure": 3, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 218, "fields": {"position": "0", "departure": 3, "landing": 1, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": true}}, {"model": "objective.skill", "pk": 345, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 <", "simplified_notation": ".2 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 352, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 <", "simplified_notation": ".2 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 347, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 <", "simplified_notation": ".2 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 105, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 /", "simplified_notation": ".2 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 348, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 /", "simplified_notation": ".2 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 191, "fields": {"position": "0", "departure": 3, "landing": 6, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1", "simplified_notation": "1. 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 262, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 355, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 5, "notation": ".2 5 /", "simplified_notation": ".2 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 48, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 354, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 4, "notation": ".2 4 /", "simplified_notation": ".2 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 344, "fields": {"position": "o", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 o", "simplified_notation": ".2 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 351, "fields": {"position": "o", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 o", "simplified_notation": ".2 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 346, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 o", "simplified_notation": ".2 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 190, "fields": {"position": "0", "departure": 3, "landing": 6, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": false}}, {"model": "objective.skill", "pk": 49, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 6, "notation": "- 6", "simplified_notation": "- 6", "is_competitive": true}}, {"model": "objective.skill", "pk": 343, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - <", "simplified_notation": ".2 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 342, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - o", "simplified_notation": ".2 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 104, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 90, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 /", "simplified_notation": ".2 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 353, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 /", "simplified_notation": ".2 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 212, "fields": {"position": "0", "departure": 3, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 247, "fields": {"position": "<", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 <", "simplified_notation": ".4 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 246, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 o", "simplified_notation": ".4 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 39, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 145, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 /", "simplified_notation": ".2 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 412, "fields": {"position": "L", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- L", "simplified_notation": "8. -- L", "is_competitive": true}}, {"model": "objective.skill", "pk": 411, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- c", "simplified_notation": "8. -- c", "is_competitive": true}}, {"model": "objective.skill", "pk": 165, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 9, "twist": 0, "notation": "9. -- o", "simplified_notation": "9. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 106, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 4, "notation": "4. 4 /", "simplified_notation": "4. 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 251, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 8, "notation": "8. 44 /", "simplified_notation": "8. 44 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 482, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- <", "simplified_notation": "7. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 481, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- o", "simplified_notation": "7. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 92, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- <", "simplified_notation": "8. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 91, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- o", "simplified_notation": "8. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 93, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- /", "simplified_notation": "8. -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 263, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 295, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "4 <", "simplified_notation": "4 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 286, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "4//", "simplified_notation": "4//", "is_competitive": true}}, {"model": "objective.skill", "pk": 283, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "4 o", "simplified_notation": "4 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 399, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 400, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 398, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 397, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 407, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 408, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 95, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 237, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 /", "simplified_notation": "5. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 78, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 /", "simplified_notation": ".5 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 553, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 <", "simplified_notation": "8. 33 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 133, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 o", "simplified_notation": "8. 33 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 136, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 <", "simplified_notation": "8. 33 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 137, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 /", "simplified_notation": "8. 33 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 132, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 22 <", "simplified_notation": "8. 22 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 130, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 22 o", "simplified_notation": "8. 22 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 131, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 22 /", "simplified_notation": "8. 22 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 116, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 23 <", "simplified_notation": ".8 23 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 115, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 23 o", "simplified_notation": ".8 23 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 119, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 23 /", "simplified_notation": ".8 23 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 364, "fields": {"position": "/", "departure": 11, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 370, "fields": {"position": "<", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 <", "simplified_notation": ".4 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 369, "fields": {"position": "o", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 o", "simplified_notation": ".4 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 375, "fields": {"position": "<", "departure": 11, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 374, "fields": {"position": "o", "departure": 11, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 376, "fields": {"position": "/", "departure": 11, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 362, "fields": {"position": "<", "departure": 11, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - <", "simplified_notation": "1. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 361, "fields": {"position": "o", "departure": 11, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - o", "simplified_notation": "1. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 363, "fields": {"position": "/", "departure": 11, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 368, "fields": {"position": "<", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - <", "simplified_notation": ".4 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 367, "fields": {"position": "o", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - o", "simplified_notation": ".4 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 230, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 <", "simplified_notation": "4. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 232, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 5, "twist": 1, "notation": "5. -1 <", "simplified_notation": "5. -1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 139, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 1- <", "simplified_notation": ".8 1- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 138, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 1- o", "simplified_notation": ".8 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 229, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 o", "simplified_notation": "4. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 231, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 5, "twist": 1, "notation": "5. -1 o", "simplified_notation": "5. -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 112, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 <", "simplified_notation": "8. 11 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 410, "fields": {"position": "L", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 L", "simplified_notation": "8. 11 L", "is_competitive": true}}, {"model": "objective.skill", "pk": 111, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 o", "simplified_notation": "8. 11 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 409, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 c", "simplified_notation": "8. 11 c", "is_competitive": true}}, {"model": "objective.skill", "pk": 120, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 /", "simplified_notation": "8. 11 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 141, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 12, "twist": 2, "notation": "12. 1-1 <", "simplified_notation": "12. 1-1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 140, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 12, "twist": 2, "notation": "12. 1-1 o", "simplified_notation": "12. 1-1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 253, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 6, "notation": ".8 15 <", "simplified_notation": ".8 15 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 135, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 13 o", "simplified_notation": "8. 13 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 122, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 13 <", "simplified_notation": "8. 13 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 121, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 13 o", "simplified_notation": "8. 13 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 449, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 <", "simplified_notation": "3. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 448, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 o", "simplified_notation": "3. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 168, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 9, "twist": 1, "notation": ".9 -1 <", "simplified_notation": ".9 -1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 167, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 9, "twist": 1, "notation": ".9 -1 o", "simplified_notation": ".9 -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 114, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 -1 <", "simplified_notation": ".8 -1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 113, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 -1 o", "simplified_notation": ".8 -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 96, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 1, "notation": ".12 --1 <", "simplified_notation": ".12 --1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 97, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 1, "notation": ".12 --1 o", "simplified_notation": ".12 --1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 249, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- <", "simplified_notation": ".5 1- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 248, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- o", "simplified_notation": ".5 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 475, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- /", "simplified_notation": ".5 1- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 431, "fields": {"position": "<", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- <", "simplified_notation": "7. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 429, "fields": {"position": "o", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- o", "simplified_notation": "7. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 195, "fields": {"position": "o", "departure": 8, "landing": 3, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 196, "fields": {"position": "/", "departure": 8, "landing": 6, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 173, "fields": {"position": "<", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 425, "fields": {"position": "<", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 172, "fields": {"position": "o", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 194, "fields": {"position": "o", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 193, "fields": {"position": "o", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 174, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - /", "simplified_notation": "3. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 427, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 /", "simplified_notation": "2. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 436, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 432, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 2, "notation": "3. 2 /", "simplified_notation": "3. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 437, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 3, "notation": "3. 3 /", "simplified_notation": "3. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 435, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 3, "notation": "2. 3 /", "simplified_notation": "2. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 434, "fields": {"position": "/", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 3, "notation": "4. 3 /", "simplified_notation": "4. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 433, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 428, "fields": {"position": "/", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2 /", "simplified_notation": "2. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 430, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - /", "simplified_notation": "4. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 426, "fields": {"position": "/", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 176, "fields": {"position": "<", "departure": 7, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 442, "fields": {"position": "<", "departure": 7, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 <", "simplified_notation": ".2 1 <", "is_competitive": false}}, {"model": "objective.skill", "pk": 445, "fields": {"position": "<", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 <", "simplified_notation": ".2 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 439, "fields": {"position": "<", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - <", "simplified_notation": ".2 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 175, "fields": {"position": "o", "departure": 7, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 441, "fields": {"position": "o", "departure": 7, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 o", "simplified_notation": ".2 1 o", "is_competitive": false}}, {"model": "objective.skill", "pk": 444, "fields": {"position": "o", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 o", "simplified_notation": ".2 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 438, "fields": {"position": "o", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - o", "simplified_notation": ".2 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 177, "fields": {"position": "/", "departure": 7, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 443, "fields": {"position": "/", "departure": 7, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 /", "simplified_notation": ".2 1 /", "is_competitive": false}}, {"model": "objective.skill", "pk": 446, "fields": {"position": "/", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 /", "simplified_notation": ".2 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 440, "fields": {"position": "/", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 18, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 17, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 21, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 20, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 19, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 211, "fields": {"position": "0", "departure": 4, "landing": 5, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 203, "fields": {"position": "/", "departure": 4, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 192, "fields": {"position": "0", "departure": 6, "landing": 8, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 469, "fields": {"position": "/", "departure": 6, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 468, "fields": {"position": "o", "departure": 6, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - o", "simplified_notation": ".1 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 41, "fields": {"position": "<", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - <", "simplified_notation": ".4 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 477, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 <", "simplified_notation": ".4 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 473, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 <", "simplified_notation": ".4 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 472, "fields": {"position": "o", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 o", "simplified_notation": ".4 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 474, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 /", "simplified_notation": ".4 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 40, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - o", "simplified_notation": ".4 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 476, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 o", "simplified_notation": ".4 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 42, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - /", "simplified_notation": ".4 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 478, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 /", "simplified_notation": ".4 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 80, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 2, "notation": ".7 2- <", "simplified_notation": ".7 2- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 79, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 2, "notation": ".7 2- o", "simplified_notation": ".7 2- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 81, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 2, "notation": ".7 11 /", "simplified_notation": ".7 11 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 88, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 4, "notation": ".7 22 <", "simplified_notation": ".7 22 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 87, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 4, "notation": ".7 22 o", "simplified_notation": ".7 22 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 89, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 4, "notation": ".7 22 /", "simplified_notation": ".7 22 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 243, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 5, "notation": "7. 32 <", "simplified_notation": "7. 32 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 242, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 5, "notation": "7. 32 o", "simplified_notation": "7. 32 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 244, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 5, "notation": "7. 32 /", "simplified_notation": "7. 32 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 241, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 3- /", "simplified_notation": "7. 3- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 240, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 3- <", "simplified_notation": "7. 3- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 239, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 3- o", "simplified_notation": "7. 3- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 234, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 1, "notation": "7. 1- <", "simplified_notation": "7. 1- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 233, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 1, "notation": "7. 1- o", "simplified_notation": "7. 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 236, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 12 <", "simplified_notation": "7. 12 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 235, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 12 o", "simplified_notation": "7. 12 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 514, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 11, "twist": 1, "notation": "11. 1-- <", "simplified_notation": "11. 1-- <", "is_competitive": false}}, {"model": "objective.skill", "pk": 513, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 11, "twist": 1, "notation": "11. 1-- o", "simplified_notation": "11. 1-- o", "is_competitive": false}}, {"model": "objective.skill", "pk": 466, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- <", "simplified_notation": ".7 -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 465, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- o", "simplified_notation": ".7 -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 221, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 <", "simplified_notation": ".5 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 220, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 o", "simplified_notation": ".5 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 164, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 /", "simplified_notation": ".5 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 47, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. <", "is_competitive": true}}, {"model": "objective.skill", "pk": 386, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 <", "simplified_notation": "2. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 64, "fields": {"position": "<", "departure": 3, "landing": 3, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - <", "simplified_notation": "4. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 382, "fields": {"position": "<", "departure": 3, "landing": 5, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": false}}, {"model": "objective.skill", "pk": 381, "fields": {"position": "<", "departure": 3, "landing": 1, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 383, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 46, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. o", "is_competitive": true}}, {"model": "objective.skill", "pk": 126, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 o", "simplified_notation": "2. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 63, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 219, "fields": {"position": "o", "departure": 3, "landing": 5, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 188, "fields": {"position": "o", "departure": 3, "landing": 1, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 125, "fields": {"position": "0", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 480, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - /", "simplified_notation": "3. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 483, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 /", "simplified_notation": "2. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 488, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 /", "simplified_notation": "4. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 486, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 490, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 3, "notation": "4. 3 /", "simplified_notation": "4. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 489, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 487, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 2, "notation": "3. 2 /", "simplified_notation": "3. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 485, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 3, "notation": "2. 3 /", "simplified_notation": "2. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 484, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2 /", "simplified_notation": "2. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 384, "fields": {"position": "/", "departure": 3, "landing": 5, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 385, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 108, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 5, "notation": ".4 5 /", "simplified_notation": ".4 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 163, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 5, "notation": ".5 5 /", "simplified_notation": ".5 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 118, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 -5 <", "simplified_notation": ".8 -5 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 117, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 -5 o", "simplified_notation": ".8 -5 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 184, "fields": {"position": "0", "departure": 1, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 197, "fields": {"position": "0", "departure": 8, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 198, "fields": {"position": "0", "departure": 7, "landing": 7, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 185, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 318, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 183, "fields": {"position": "0", "departure": 5, "landing": 5, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": false}}, {"model": "objective.skill", "pk": 186, "fields": {"position": "0", "departure": 2, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 238, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 5, "twist": 3, "notation": "5. 12 /", "simplified_notation": "5. 12 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 276, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 3, "notation": ".5 3 <", "simplified_notation": ".5 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 275, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 3, "notation": ".5 3 o", "simplified_notation": ".5 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 161, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 3, "notation": ".5 3 /", "simplified_notation": ".5 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 76, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 3, "notation": ".4 3 /", "simplified_notation": ".4 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 75, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 3, "notation": ".4 3 /", "simplified_notation": ".4 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 254, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 31 <", "simplified_notation": "8. 31 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 86, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 -3 <", "simplified_notation": ".8 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 110, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 -3 o", "simplified_notation": ".8 -3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 74, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 3, "notation": ".4 3 /", "simplified_notation": ".4 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 252, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 3, "notation": ".12 --3 <", "simplified_notation": ".12 --3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 258, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 3, "notation": ".12 --3 o", "simplified_notation": "--3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 26, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - <", "simplified_notation": "4 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 25, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 27, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - /", "simplified_notation": "4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 23, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - <", "simplified_notation": ".4 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 272, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 <", "simplified_notation": ".4 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 54, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - <", "simplified_notation": ".5 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 22, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - o", "simplified_notation": ".4 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 271, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 o", "simplified_notation": ".4 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 53, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - o", "simplified_notation": ".5 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 24, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - /", "simplified_notation": ".4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 273, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 /", "simplified_notation": ".4 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 377, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 -- /", "simplified_notation": ".5 -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 3, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "<", "simplified_notation": "<", "is_competitive": true}}, {"model": "objective.skill", "pk": 265, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "< 1", "simplified_notation": "< 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 292, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "< 4", "simplified_notation": "< 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 290, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "< 2", "simplified_notation": "< 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 291, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "< 3", "simplified_notation": "< 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 4, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "//", "simplified_notation": "//", "is_competitive": true}}, {"model": "objective.skill", "pk": 266, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "//1", "simplified_notation": "//1", "is_competitive": true}}, {"model": "objective.skill", "pk": 289, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "//4", "simplified_notation": "//4", "is_competitive": true}}, {"model": "objective.skill", "pk": 287, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "//2", "simplified_notation": "//2", "is_competitive": true}}, {"model": "objective.skill", "pk": 288, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "//3", "simplified_notation": "//3", "is_competitive": true}}, {"model": "objective.skill", "pk": 1, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "o", "simplified_notation": "o", "is_competitive": true}}, {"model": "objective.skill", "pk": 264, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "o 1", "simplified_notation": "o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 302, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "o 4", "simplified_notation": "o 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 279, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 280, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "o 3", "simplified_notation": "o 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 5, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 0, "notation": "A", "simplified_notation": "A", "is_competitive": true}}, {"model": "objective.skill", "pk": 457, "fields": {"position": "/", "departure": 9, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "A", "simplified_notation": "A", "is_competitive": true}}, {"model": "objective.skill", "pk": 458, "fields": {"position": "/", "departure": 9, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "A", "simplified_notation": "A", "is_competitive": true}}, {"model": "objective.skill", "pk": 278, "fields": {"position": "<", "departure": 9, "landing": 6, "rotation_type": 2, "rotation": 0, "twist": 0, "notation": "A <", "simplified_notation": "A <", "is_competitive": false}}, {"model": "objective.skill", "pk": 277, "fields": {"position": "o", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 0, "notation": "A o", "simplified_notation": "A o", "is_competitive": true}}, {"model": "objective.skill", "pk": 9, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. /", "simplified_notation": "1.", "is_competitive": true}}, {"model": "objective.skill", "pk": 13, "fields": {"position": "/", "departure": 9, "landing": 8, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1.", "simplified_notation": "1.", "is_competitive": true}}, {"model": "objective.skill", "pk": 365, "fields": {"position": "/", "departure": 9, "landing": 11, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 8, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. <", "simplified_notation": "1. <", "is_competitive": true}}, {"model": "objective.skill", "pk": 359, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 7, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. o", "simplified_notation": "1. o", "is_competitive": true}}, {"model": "objective.skill", "pk": 456, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 455, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 454, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 6, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. /", "simplified_notation": "1.", "is_competitive": true}}, {"model": "objective.skill", "pk": 10, "fields": {"position": "0", "departure": 9, "landing": 5, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1", "simplified_notation": ".1", "is_competitive": false}}, {"model": "objective.skill", "pk": 11, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 357, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - <", "simplified_notation": ".1 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 358, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 356, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - o", "simplified_notation": ".1 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 12, "fields": {"position": "/", "departure": 9, "landing": 7, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 (", "simplified_notation": ".1 (", "is_competitive": true}}, {"model": "objective.skill", "pk": 107, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 6, "notation": "4. 6 /", "simplified_notation": "4. 6 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 51, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 50, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 52, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - /", "simplified_notation": "3. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 226, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 154, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 390, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 3, "twist": 2, "notation": ".3 2 <", "simplified_notation": ".3 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 153, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 389, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 3, "twist": 2, "notation": ".3 2 o", "simplified_notation": ".3 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 155, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 77, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 3, "twist": 2, "notation": ".3 2 /", "simplified_notation": ".3 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 209, "fields": {"position": "0", "departure": 2, "landing": 1, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": true}}, {"model": "objective.skill", "pk": 152, "fields": {"position": "0", "departure": 2, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1", "simplified_notation": ".3 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 210, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 202, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 38, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 /", "simplified_notation": "2. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 37, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. /", "is_competitive": true}}, {"model": "objective.skill", "pk": 492, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2 /", "simplified_notation": "2. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 493, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 166, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 1, "rotation": 7, "twist": 1, "notation": ".7 -1 o", "simplified_notation": ".7 -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 372, "fields": {"position": "<", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 371, "fields": {"position": "o", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 36, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. /", "is_competitive": true}}, {"model": "objective.skill", "pk": 467, "fields": {"position": "/", "departure": 2, "landing": 6, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 326, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 148, "fields": {"position": "0", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 3, "notation": "2. 3", "simplified_notation": "2. 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 142, "fields": {"position": "0", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2", "simplified_notation": "2. 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 325, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-2", "simplified_notation": "-2", "is_competitive": true}}, {"model": "objective.skill", "pk": 123, "fields": {"position": "0", "departure": 2, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 -", "simplified_notation": ".2", "is_competitive": true}}, {"model": "objective.skill", "pk": 29, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-2", "simplified_notation": "-2", "is_competitive": true}}, {"model": "objective.skill", "pk": 391, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 293, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "2 <", "simplified_notation": "2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 304, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "2 < 1", "simplified_notation": "2 < 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 308, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "2 < 2", "simplified_notation": "2 < 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 284, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "2//", "simplified_notation": "2//", "is_competitive": true}}, {"model": "objective.skill", "pk": 305, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "2 // 1", "simplified_notation": "2 // 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 306, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "2 // 2", "simplified_notation": "2 // 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 281, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "2 o", "simplified_notation": "2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 303, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "2 o 1", "simplified_notation": "2 o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 307, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "2 o 2", "simplified_notation": "2 o 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 393, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 394, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 395, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 392, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 396, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 464, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "D 2", "simplified_notation": "D 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 463, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "D 2", "simplified_notation": "D 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 214, "fields": {"position": "0", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 2, "notation": "D 2", "simplified_notation": "D 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 215, "fields": {"position": "0", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2", "simplified_notation": ".1 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 447, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 2, "notation": "1. 2 /", "simplified_notation": "1. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 245, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 294, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "3 <", "simplified_notation": "3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 314, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "3 < 1", "simplified_notation": "3 < 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 285, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "3//", "simplified_notation": "3//", "is_competitive": true}}, {"model": "objective.skill", "pk": 313, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "3 // 1", "simplified_notation": "3 // 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 282, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "3 o", "simplified_notation": "3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 312, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "3 o 1", "simplified_notation": "3 o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 403, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 404, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 401, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 405, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 402, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 406, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 213, "fields": {"position": "0", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 216, "fields": {"position": "0", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3", "simplified_notation": ".1 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 150, "fields": {"position": "0", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3", "simplified_notation": "1. 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 479, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3 /", "simplified_notation": "1. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 143, "fields": {"position": "0", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3", "simplified_notation": "1. 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 85, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 2, "notation": "A 2", "simplified_notation": "A 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 83, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 2, "notation": "1. 2 /", "simplified_notation": "1. 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 84, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 /", "simplified_notation": ".1 2", "is_competitive": true}}, {"model": "objective.routine", "pk": 498, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 497, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 496, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 504, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 503, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 502, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 501, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 500, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 499, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 505, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 494, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 506, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 507, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 508, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 495, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 515, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 554, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 555, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 556, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 557, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 558, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 521, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 517, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 518, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 519, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 520, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 522, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 523, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 524, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 525, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 526, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 527, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 528, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 529, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 530, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 531, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 532, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 533, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 534, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 535, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 536, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 537, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 538, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 539, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 540, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 541, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 542, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 543, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 544, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 545, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 546, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 547, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 548, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 549, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 550, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 551, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 552, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 516, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 509, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 510, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 559, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 512, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 511, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routineskill", "pk": 1, "fields": {"routine": 494, "skill": 2, "rank": 1}}, {"model": "objective.routineskill", "pk": 2, "fields": {"routine": 494, "skill": 2, "rank": 2}}, {"model": "objective.routineskill", "pk": 3, "fields": {"routine": 494, "skill": 2, "rank": 3}}, {"model": "objective.routineskill", "pk": 4, "fields": {"routine": 494, "skill": 2, "rank": 4}}, {"model": "objective.routineskill", "pk": 5, "fields": {"routine": 494, "skill": 2, "rank": 5}}, {"model": "objective.routineskill", "pk": 6, "fields": {"routine": 494, "skill": 2, "rank": 6}}, {"model": "objective.routineskill", "pk": 7, "fields": {"routine": 494, "skill": 2, "rank": 7}}, {"model": "objective.routineskill", "pk": 8, "fields": {"routine": 494, "skill": 2, "rank": 8}}, {"model": "objective.routineskill", "pk": 9, "fields": {"routine": 494, "skill": 2, "rank": 9}}, {"model": "objective.routineskill", "pk": 10, "fields": {"routine": 494, "skill": 2, "rank": 10}}, {"model": "objective.routineskill", "pk": 11, "fields": {"routine": 495, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 12, "fields": {"routine": 495, "skill": 33, "rank": 2}}, {"model": "objective.routineskill", "pk": 13, "fields": {"routine": 495, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 14, "fields": {"routine": 495, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 15, "fields": {"routine": 495, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 16, "fields": {"routine": 495, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 17, "fields": {"routine": 495, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 18, "fields": {"routine": 495, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 19, "fields": {"routine": 495, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 20, "fields": {"routine": 495, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 21, "fields": {"routine": 496, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 22, "fields": {"routine": 496, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 23, "fields": {"routine": 496, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 24, "fields": {"routine": 496, "skill": 1, "rank": 4}}, {"model": "objective.routineskill", "pk": 25, "fields": {"routine": 496, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 26, "fields": {"routine": 496, "skill": 32, "rank": 6}}, {"model": "objective.routineskill", "pk": 27, "fields": {"routine": 496, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 28, "fields": {"routine": 496, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 29, "fields": {"routine": 496, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 30, "fields": {"routine": 496, "skill": 59, "rank": 10}}, {"model": "objective.routineskill", "pk": 31, "fields": {"routine": 497, "skill": 25, "rank": 1}}, {"model": "objective.routineskill", "pk": 32, "fields": {"routine": 497, "skill": 31, "rank": 2}}, {"model": "objective.routineskill", "pk": 33, "fields": {"routine": 497, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 34, "fields": {"routine": 497, "skill": 11, "rank": 4}}, {"model": "objective.routineskill", "pk": 35, "fields": {"routine": 497, "skill": 15, "rank": 5}}, {"model": "objective.routineskill", "pk": 36, "fields": {"routine": 497, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 37, "fields": {"routine": 497, "skill": 68, "rank": 7}}, {"model": "objective.routineskill", "pk": 38, "fields": {"routine": 497, "skill": 69, "rank": 8}}, {"model": "objective.routineskill", "pk": 39, "fields": {"routine": 497, "skill": 3, "rank": 9}}, {"model": "objective.routineskill", "pk": 40, "fields": {"routine": 497, "skill": 23, "rank": 10}}, {"model": "objective.routineskill", "pk": 41, "fields": {"routine": 498, "skill": 34, "rank": 1}}, {"model": "objective.routineskill", "pk": 42, "fields": {"routine": 498, "skill": 15, "rank": 2}}, {"model": "objective.routineskill", "pk": 56, "fields": {"routine": 498, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 57, "fields": {"routine": 498, "skill": 5, "rank": 4}}, {"model": "objective.routineskill", "pk": 58, "fields": {"routine": 498, "skill": 14, "rank": 5}}, {"model": "objective.routineskill", "pk": 59, "fields": {"routine": 498, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 60, "fields": {"routine": 498, "skill": 28, "rank": 7}}, {"model": "objective.routineskill", "pk": 61, "fields": {"routine": 498, "skill": 1, "rank": 8}}, {"model": "objective.routineskill", "pk": 62, "fields": {"routine": 498, "skill": 9, "rank": 9}}, {"model": "objective.routineskill", "pk": 63, "fields": {"routine": 498, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 72, "fields": {"routine": 499, "skill": 11, "rank": 1}}, {"model": "objective.routineskill", "pk": 73, "fields": {"routine": 499, "skill": 15, "rank": 2}}, {"model": "objective.routineskill", "pk": 74, "fields": {"routine": 499, "skill": 68, "rank": 3}}, {"model": "objective.routineskill", "pk": 76, "fields": {"routine": 499, "skill": 14, "rank": 4}}, {"model": "objective.routineskill", "pk": 77, "fields": {"routine": 499, "skill": 1, "rank": 5}}, {"model": "objective.routineskill", "pk": 80, "fields": {"routine": 499, "skill": 5, "rank": 7}}, {"model": "objective.routineskill", "pk": 81, "fields": {"routine": 499, "skill": 69, "rank": 7}}, {"model": "objective.routineskill", "pk": 82, "fields": {"routine": 499, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 83, "fields": {"routine": 499, "skill": 9, "rank": 9}}, {"model": "objective.routineskill", "pk": 84, "fields": {"routine": 499, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 85, "fields": {"routine": 500, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 86, "fields": {"routine": 500, "skill": 69, "rank": 2}}, {"model": "objective.routineskill", "pk": 87, "fields": {"routine": 500, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 88, "fields": {"routine": 500, "skill": 11, "rank": 4}}, {"model": "objective.routineskill", "pk": 89, "fields": {"routine": 500, "skill": 16, "rank": 5}}, {"model": "objective.routineskill", "pk": 90, "fields": {"routine": 500, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 91, "fields": {"routine": 500, "skill": 9, "rank": 7}}, {"model": "objective.routineskill", "pk": 92, "fields": {"routine": 500, "skill": 71, "rank": 8}}, {"model": "objective.routineskill", "pk": 93, "fields": {"routine": 500, "skill": 4, "rank": 9}}, {"model": "objective.routineskill", "pk": 94, "fields": {"routine": 500, "skill": 25, "rank": 10}}, {"model": "objective.routineskill", "pk": 95, "fields": {"routine": 501, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 96, "fields": {"routine": 501, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 97, "fields": {"routine": 501, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 98, "fields": {"routine": 501, "skill": 3, "rank": 4}}, {"model": "objective.routineskill", "pk": 99, "fields": {"routine": 501, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 100, "fields": {"routine": 501, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 101, "fields": {"routine": 501, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 102, "fields": {"routine": 501, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 103, "fields": {"routine": 501, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 104, "fields": {"routine": 501, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 105, "fields": {"routine": 502, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 106, "fields": {"routine": 502, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 107, "fields": {"routine": 502, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 108, "fields": {"routine": 502, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 109, "fields": {"routine": 502, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 110, "fields": {"routine": 502, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 111, "fields": {"routine": 502, "skill": 1, "rank": 7}}, {"model": "objective.routineskill", "pk": 112, "fields": {"routine": 502, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 113, "fields": {"routine": 502, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 114, "fields": {"routine": 502, "skill": 59, "rank": 10}}, {"model": "objective.routineskill", "pk": 115, "fields": {"routine": 503, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 116, "fields": {"routine": 503, "skill": 14, "rank": 2}}, {"model": "objective.routineskill", "pk": 117, "fields": {"routine": 503, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 118, "fields": {"routine": 503, "skill": 28, "rank": 4}}, {"model": "objective.routineskill", "pk": 119, "fields": {"routine": 503, "skill": 3, "rank": 5}}, {"model": "objective.routineskill", "pk": 120, "fields": {"routine": 503, "skill": 11, "rank": 6}}, {"model": "objective.routineskill", "pk": 121, "fields": {"routine": 503, "skill": 15, "rank": 7}}, {"model": "objective.routineskill", "pk": 122, "fields": {"routine": 503, "skill": 1, "rank": 8}}, {"model": "objective.routineskill", "pk": 123, "fields": {"routine": 503, "skill": 5, "rank": 9}}, {"model": "objective.routineskill", "pk": 124, "fields": {"routine": 503, "skill": 69, "rank": 10}}, {"model": "objective.routineskill", "pk": 125, "fields": {"routine": 505, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 126, "fields": {"routine": 505, "skill": 69, "rank": 2}}, {"model": "objective.routineskill", "pk": 127, "fields": {"routine": 505, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 128, "fields": {"routine": 505, "skill": 11, "rank": 4}}, {"model": "objective.routineskill", "pk": 129, "fields": {"routine": 505, "skill": 15, "rank": 5}}, {"model": "objective.routineskill", "pk": 130, "fields": {"routine": 505, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 131, "fields": {"routine": 505, "skill": 9, "rank": 7}}, {"model": "objective.routineskill", "pk": 132, "fields": {"routine": 505, "skill": 71, "rank": 8}}, {"model": "objective.routineskill", "pk": 133, "fields": {"routine": 505, "skill": 4, "rank": 9}}, {"model": "objective.routineskill", "pk": 134, "fields": {"routine": 505, "skill": 25, "rank": 10}}, {"model": "objective.routineskill", "pk": 135, "fields": {"routine": 504, "skill": 11, "rank": 1}}, {"model": "objective.routineskill", "pk": 136, "fields": {"routine": 504, "skill": 16, "rank": 2}}, {"model": "objective.routineskill", "pk": 137, "fields": {"routine": 504, "skill": 68, "rank": 3}}, {"model": "objective.routineskill", "pk": 138, "fields": {"routine": 504, "skill": 14, "rank": 4}}, {"model": "objective.routineskill", "pk": 139, "fields": {"routine": 504, "skill": 1, "rank": 5}}, {"model": "objective.routineskill", "pk": 140, "fields": {"routine": 504, "skill": 5, "rank": 6}}, {"model": "objective.routineskill", "pk": 141, "fields": {"routine": 504, "skill": 69, "rank": 7}}, {"model": "objective.routineskill", "pk": 142, "fields": {"routine": 504, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 143, "fields": {"routine": 504, "skill": 9, "rank": 9}}, {"model": "objective.routineskill", "pk": 144, "fields": {"routine": 504, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 145, "fields": {"routine": 506, "skill": 25, "rank": 1}}, {"model": "objective.routineskill", "pk": 146, "fields": {"routine": 506, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 147, "fields": {"routine": 506, "skill": 14, "rank": 3}}, {"model": "objective.routineskill", "pk": 148, "fields": {"routine": 506, "skill": 4, "rank": 4}}, {"model": "objective.routineskill", "pk": 149, "fields": {"routine": 506, "skill": 34, "rank": 5}}, {"model": "objective.routineskill", "pk": 150, "fields": {"routine": 506, "skill": 15, "rank": 6}}, {"model": "objective.routineskill", "pk": 151, "fields": {"routine": 506, "skill": 3, "rank": 7}}, {"model": "objective.routineskill", "pk": 152, "fields": {"routine": 506, "skill": 28, "rank": 8}}, {"model": "objective.routineskill", "pk": 153, "fields": {"routine": 506, "skill": 1, "rank": 9}}, {"model": "objective.routineskill", "pk": 154, "fields": {"routine": 506, "skill": 31, "rank": 10}}, {"model": "objective.routineskill", "pk": 155, "fields": {"routine": 507, "skill": 19, "rank": 1}}, {"model": "objective.routineskill", "pk": 156, "fields": {"routine": 507, "skill": 58, "rank": 2}}, {"model": "objective.routineskill", "pk": 157, "fields": {"routine": 507, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 158, "fields": {"routine": 507, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 159, "fields": {"routine": 507, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 160, "fields": {"routine": 507, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 161, "fields": {"routine": 507, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 162, "fields": {"routine": 507, "skill": 3, "rank": 8}}, {"model": "objective.routineskill", "pk": 163, "fields": {"routine": 507, "skill": 52, "rank": 9}}, {"model": "objective.routineskill", "pk": 164, "fields": {"routine": 507, "skill": 30, "rank": 10}}, {"model": "objective.routineskill", "pk": 165, "fields": {"routine": 508, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 166, "fields": {"routine": 508, "skill": 122, "rank": 2}}, {"model": "objective.routineskill", "pk": 167, "fields": {"routine": 508, "skill": 32, "rank": 3}}, {"model": "objective.routineskill", "pk": 168, "fields": {"routine": 508, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 169, "fields": {"routine": 508, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 170, "fields": {"routine": 508, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 171, "fields": {"routine": 508, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 172, "fields": {"routine": 508, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 173, "fields": {"routine": 508, "skill": 67, "rank": 9}}, {"model": "objective.routineskill", "pk": 174, "fields": {"routine": 508, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 175, "fields": {"routine": 509, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 176, "fields": {"routine": 509, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 177, "fields": {"routine": 509, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 179, "fields": {"routine": 509, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 180, "fields": {"routine": 509, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 182, "fields": {"routine": 509, "skill": 92, "rank": 6}}, {"model": "objective.routineskill", "pk": 183, "fields": {"routine": 509, "skill": 33, "rank": 7}}, {"model": "objective.routineskill", "pk": 184, "fields": {"routine": 509, "skill": 91, "rank": 8}}, {"model": "objective.routineskill", "pk": 185, "fields": {"routine": 509, "skill": 114, "rank": 9}}, {"model": "objective.routineskill", "pk": 186, "fields": {"routine": 509, "skill": 93, "rank": 10}}, {"model": "objective.routineskill", "pk": 187, "fields": {"routine": 510, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 188, "fields": {"routine": 510, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 189, "fields": {"routine": 510, "skill": 97, "rank": 3}}, {"model": "objective.routineskill", "pk": 190, "fields": {"routine": 510, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 191, "fields": {"routine": 510, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 192, "fields": {"routine": 510, "skill": 92, "rank": 6}}, {"model": "objective.routineskill", "pk": 193, "fields": {"routine": 510, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 194, "fields": {"routine": 510, "skill": 122, "rank": 8}}, {"model": "objective.routineskill", "pk": 195, "fields": {"routine": 510, "skill": 86, "rank": 9}}, {"model": "objective.routineskill", "pk": 196, "fields": {"routine": 510, "skill": 137, "rank": 10}}, {"model": "objective.routineskill", "pk": 197, "fields": {"routine": 511, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 198, "fields": {"routine": 511, "skill": 140, "rank": 2}}, {"model": "objective.routineskill", "pk": 199, "fields": {"routine": 511, "skill": 97, "rank": 3}}, {"model": "objective.routineskill", "pk": 200, "fields": {"routine": 511, "skill": 122, "rank": 4}}, {"model": "objective.routineskill", "pk": 201, "fields": {"routine": 511, "skill": 86, "rank": 5}}, {"model": "objective.routineskill", "pk": 202, "fields": {"routine": 511, "skill": 112, "rank": 6}}, {"model": "objective.routineskill", "pk": 203, "fields": {"routine": 511, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 204, "fields": {"routine": 511, "skill": 254, "rank": 8}}, {"model": "objective.routineskill", "pk": 205, "fields": {"routine": 511, "skill": 119, "rank": 9}}, {"model": "objective.routineskill", "pk": 206, "fields": {"routine": 511, "skill": 137, "rank": 10}}, {"model": "objective.routineskill", "pk": 207, "fields": {"routine": 512, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 208, "fields": {"routine": 512, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 209, "fields": {"routine": 512, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 210, "fields": {"routine": 512, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 211, "fields": {"routine": 512, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 212, "fields": {"routine": 512, "skill": 92, "rank": 6}}, {"model": "objective.routineskill", "pk": 213, "fields": {"routine": 512, "skill": 110, "rank": 7}}, {"model": "objective.routineskill", "pk": 214, "fields": {"routine": 512, "skill": 112, "rank": 8}}, {"model": "objective.routineskill", "pk": 215, "fields": {"routine": 512, "skill": 114, "rank": 9}}, {"model": "objective.routineskill", "pk": 216, "fields": {"routine": 512, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 217, "fields": {"routine": 515, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 218, "fields": {"routine": 515, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 219, "fields": {"routine": 515, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 220, "fields": {"routine": 515, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 221, "fields": {"routine": 515, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 222, "fields": {"routine": 515, "skill": 33, "rank": 6}}, {"model": "objective.routineskill", "pk": 223, "fields": {"routine": 515, "skill": 92, "rank": 7}}, {"model": "objective.routineskill", "pk": 224, "fields": {"routine": 515, "skill": 31, "rank": 8}}, {"model": "objective.routineskill", "pk": 225, "fields": {"routine": 515, "skill": 27, "rank": 9}}, {"model": "objective.routineskill", "pk": 226, "fields": {"routine": 515, "skill": 93, "rank": 10}}, {"model": "objective.routineskill", "pk": 227, "fields": {"routine": 516, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 228, "fields": {"routine": 516, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 229, "fields": {"routine": 516, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 230, "fields": {"routine": 516, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 231, "fields": {"routine": 516, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 232, "fields": {"routine": 516, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 233, "fields": {"routine": 516, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 234, "fields": {"routine": 516, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 235, "fields": {"routine": 516, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 236, "fields": {"routine": 516, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 237, "fields": {"routine": 517, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 238, "fields": {"routine": 517, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 239, "fields": {"routine": 517, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 240, "fields": {"routine": 517, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 241, "fields": {"routine": 517, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 242, "fields": {"routine": 517, "skill": 34, "rank": 6}}, {"model": "objective.routineskill", "pk": 243, "fields": {"routine": 517, "skill": 15, "rank": 7}}, {"model": "objective.routineskill", "pk": 244, "fields": {"routine": 517, "skill": 3, "rank": 8}}, {"model": "objective.routineskill", "pk": 245, "fields": {"routine": 517, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 246, "fields": {"routine": 517, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 247, "fields": {"routine": 518, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 248, "fields": {"routine": 518, "skill": 33, "rank": 2}}, {"model": "objective.routineskill", "pk": 249, "fields": {"routine": 518, "skill": 26, "rank": 3}}, {"model": "objective.routineskill", "pk": 250, "fields": {"routine": 518, "skill": 34, "rank": 4}}, {"model": "objective.routineskill", "pk": 251, "fields": {"routine": 518, "skill": 15, "rank": 5}}, {"model": "objective.routineskill", "pk": 252, "fields": {"routine": 518, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 253, "fields": {"routine": 518, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 254, "fields": {"routine": 518, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 255, "fields": {"routine": 518, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 256, "fields": {"routine": 518, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 257, "fields": {"routine": 519, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 258, "fields": {"routine": 519, "skill": 32, "rank": 2}}, {"model": "objective.routineskill", "pk": 259, "fields": {"routine": 519, "skill": 1, "rank": 3}}, {"model": "objective.routineskill", "pk": 260, "fields": {"routine": 519, "skill": 25, "rank": 4}}, {"model": "objective.routineskill", "pk": 261, "fields": {"routine": 519, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 262, "fields": {"routine": 519, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 263, "fields": {"routine": 519, "skill": 26, "rank": 7}}, {"model": "objective.routineskill", "pk": 264, "fields": {"routine": 519, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 265, "fields": {"routine": 519, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 266, "fields": {"routine": 519, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 267, "fields": {"routine": 520, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 268, "fields": {"routine": 520, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 269, "fields": {"routine": 520, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 270, "fields": {"routine": 520, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 271, "fields": {"routine": 520, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 272, "fields": {"routine": 520, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 273, "fields": {"routine": 520, "skill": 1, "rank": 7}}, {"model": "objective.routineskill", "pk": 274, "fields": {"routine": 520, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 275, "fields": {"routine": 520, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 276, "fields": {"routine": 520, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 277, "fields": {"routine": 521, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 278, "fields": {"routine": 521, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 279, "fields": {"routine": 521, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 280, "fields": {"routine": 521, "skill": 1, "rank": 4}}, {"model": "objective.routineskill", "pk": 281, "fields": {"routine": 521, "skill": 25, "rank": 5}}, {"model": "objective.routineskill", "pk": 282, "fields": {"routine": 521, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 283, "fields": {"routine": 521, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 284, "fields": {"routine": 521, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 285, "fields": {"routine": 521, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 286, "fields": {"routine": 521, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 287, "fields": {"routine": 524, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 288, "fields": {"routine": 524, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 289, "fields": {"routine": 524, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 290, "fields": {"routine": 524, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 291, "fields": {"routine": 524, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 292, "fields": {"routine": 524, "skill": 31, "rank": 6}}, {"model": "objective.routineskill", "pk": 293, "fields": {"routine": 524, "skill": 4, "rank": 7}}, {"model": "objective.routineskill", "pk": 294, "fields": {"routine": 524, "skill": 23, "rank": 8}}, {"model": "objective.routineskill", "pk": 295, "fields": {"routine": 524, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 296, "fields": {"routine": 524, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 297, "fields": {"routine": 523, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 298, "fields": {"routine": 523, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 299, "fields": {"routine": 523, "skill": 27, "rank": 3}}, {"model": "objective.routineskill", "pk": 300, "fields": {"routine": 523, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 301, "fields": {"routine": 523, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 302, "fields": {"routine": 523, "skill": 4, "rank": 6}}, {"model": "objective.routineskill", "pk": 303, "fields": {"routine": 523, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 304, "fields": {"routine": 523, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 305, "fields": {"routine": 523, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 306, "fields": {"routine": 523, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 307, "fields": {"routine": 522, "skill": 19, "rank": 1}}, {"model": "objective.routineskill", "pk": 308, "fields": {"routine": 522, "skill": 58, "rank": 2}}, {"model": "objective.routineskill", "pk": 309, "fields": {"routine": 522, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 310, "fields": {"routine": 522, "skill": 33, "rank": 4}}, {"model": "objective.routineskill", "pk": 311, "fields": {"routine": 522, "skill": 4, "rank": 5}}, {"model": "objective.routineskill", "pk": 312, "fields": {"routine": 522, "skill": 27, "rank": 6}}, {"model": "objective.routineskill", "pk": 313, "fields": {"routine": 522, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 314, "fields": {"routine": 522, "skill": 3, "rank": 8}}, {"model": "objective.routineskill", "pk": 315, "fields": {"routine": 522, "skill": 26, "rank": 9}}, {"model": "objective.routineskill", "pk": 316, "fields": {"routine": 522, "skill": 33, "rank": 10}}, {"model": "objective.routineskill", "pk": 317, "fields": {"routine": 525, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 318, "fields": {"routine": 525, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 319, "fields": {"routine": 525, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 321, "fields": {"routine": 525, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 322, "fields": {"routine": 525, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 323, "fields": {"routine": 525, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 324, "fields": {"routine": 525, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 325, "fields": {"routine": 525, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 326, "fields": {"routine": 525, "skill": 19, "rank": 10}}, {"model": "objective.routineskill", "pk": 327, "fields": {"routine": 525, "skill": 58, "rank": 11}}, {"model": "objective.routineskill", "pk": 328, "fields": {"routine": 526, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 329, "fields": {"routine": 526, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 330, "fields": {"routine": 526, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 331, "fields": {"routine": 526, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 332, "fields": {"routine": 526, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 333, "fields": {"routine": 526, "skill": 25, "rank": 6}}, {"model": "objective.routineskill", "pk": 334, "fields": {"routine": 526, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 335, "fields": {"routine": 526, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 336, "fields": {"routine": 526, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 337, "fields": {"routine": 526, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 339, "fields": {"routine": 527, "skill": 52, "rank": 2}}, {"model": "objective.routineskill", "pk": 340, "fields": {"routine": 527, "skill": 30, "rank": 3}}, {"model": "objective.routineskill", "pk": 341, "fields": {"routine": 527, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 342, "fields": {"routine": 527, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 343, "fields": {"routine": 527, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 344, "fields": {"routine": 527, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 345, "fields": {"routine": 527, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 346, "fields": {"routine": 527, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 347, "fields": {"routine": 527, "skill": 19, "rank": 10}}, {"model": "objective.routineskill", "pk": 348, "fields": {"routine": 527, "skill": 58, "rank": 11}}, {"model": "objective.routineskill", "pk": 349, "fields": {"routine": 528, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 350, "fields": {"routine": 528, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 351, "fields": {"routine": 528, "skill": 27, "rank": 3}}, {"model": "objective.routineskill", "pk": 352, "fields": {"routine": 528, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 353, "fields": {"routine": 528, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 354, "fields": {"routine": 528, "skill": 74, "rank": 6}}, {"model": "objective.routineskill", "pk": 355, "fields": {"routine": 528, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 356, "fields": {"routine": 528, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 357, "fields": {"routine": 528, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 358, "fields": {"routine": 528, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 359, "fields": {"routine": 529, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 360, "fields": {"routine": 529, "skill": 33, "rank": 2}}, {"model": "objective.routineskill", "pk": 361, "fields": {"routine": 529, "skill": 95, "rank": 3}}, {"model": "objective.routineskill", "pk": 362, "fields": {"routine": 529, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 363, "fields": {"routine": 529, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 364, "fields": {"routine": 529, "skill": 74, "rank": 6}}, {"model": "objective.routineskill", "pk": 365, "fields": {"routine": 529, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 366, "fields": {"routine": 529, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 367, "fields": {"routine": 529, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 368, "fields": {"routine": 529, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 369, "fields": {"routine": 530, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 370, "fields": {"routine": 530, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 371, "fields": {"routine": 530, "skill": 26, "rank": 3}}, {"model": "objective.routineskill", "pk": 372, "fields": {"routine": 530, "skill": 33, "rank": 4}}, {"model": "objective.routineskill", "pk": 373, "fields": {"routine": 530, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 374, "fields": {"routine": 530, "skill": 32, "rank": 6}}, {"model": "objective.routineskill", "pk": 375, "fields": {"routine": 530, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 376, "fields": {"routine": 530, "skill": 31, "rank": 8}}, {"model": "objective.routineskill", "pk": 377, "fields": {"routine": 530, "skill": 27, "rank": 9}}, {"model": "objective.routineskill", "pk": 378, "fields": {"routine": 530, "skill": 113, "rank": 10}}, {"model": "objective.routineskill", "pk": 379, "fields": {"routine": 531, "skill": 113, "rank": 1}}, {"model": "objective.routineskill", "pk": 380, "fields": {"routine": 531, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 381, "fields": {"routine": 531, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 382, "fields": {"routine": 531, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 383, "fields": {"routine": 531, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 384, "fields": {"routine": 531, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 385, "fields": {"routine": 531, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 386, "fields": {"routine": 531, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 387, "fields": {"routine": 531, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 388, "fields": {"routine": 531, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 389, "fields": {"routine": 532, "skill": 91, "rank": 1}}, {"model": "objective.routineskill", "pk": 390, "fields": {"routine": 532, "skill": 113, "rank": 2}}, {"model": "objective.routineskill", "pk": 391, "fields": {"routine": 532, "skill": 26, "rank": 3}}, {"model": "objective.routineskill", "pk": 392, "fields": {"routine": 532, "skill": 33, "rank": 4}}, {"model": "objective.routineskill", "pk": 393, "fields": {"routine": 532, "skill": 27, "rank": 5}}, {"model": "objective.routineskill", "pk": 394, "fields": {"routine": 532, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 395, "fields": {"routine": 532, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 396, "fields": {"routine": 532, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 397, "fields": {"routine": 532, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 398, "fields": {"routine": 532, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 399, "fields": {"routine": 533, "skill": 113, "rank": 1}}, {"model": "objective.routineskill", "pk": 400, "fields": {"routine": 533, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 401, "fields": {"routine": 533, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 402, "fields": {"routine": 533, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 403, "fields": {"routine": 533, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 404, "fields": {"routine": 533, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 405, "fields": {"routine": 533, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 406, "fields": {"routine": 533, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 407, "fields": {"routine": 533, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 408, "fields": {"routine": 533, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 410, "fields": {"routine": 534, "skill": 52, "rank": 2}}, {"model": "objective.routineskill", "pk": 411, "fields": {"routine": 534, "skill": 30, "rank": 3}}, {"model": "objective.routineskill", "pk": 412, "fields": {"routine": 534, "skill": 26, "rank": 4}}, {"model": "objective.routineskill", "pk": 413, "fields": {"routine": 534, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 414, "fields": {"routine": 534, "skill": 27, "rank": 6}}, {"model": "objective.routineskill", "pk": 415, "fields": {"routine": 534, "skill": 95, "rank": 7}}, {"model": "objective.routineskill", "pk": 416, "fields": {"routine": 534, "skill": 74, "rank": 8}}, {"model": "objective.routineskill", "pk": 417, "fields": {"routine": 534, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 418, "fields": {"routine": 534, "skill": 113, "rank": 10}}, {"model": "objective.routineskill", "pk": 419, "fields": {"routine": 534, "skill": 111, "rank": 11}}, {"model": "objective.routineskill", "pk": 420, "fields": {"routine": 535, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 421, "fields": {"routine": 535, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 422, "fields": {"routine": 535, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 423, "fields": {"routine": 535, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 424, "fields": {"routine": 535, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 425, "fields": {"routine": 535, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 426, "fields": {"routine": 535, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 427, "fields": {"routine": 535, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 428, "fields": {"routine": 535, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 429, "fields": {"routine": 535, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 430, "fields": {"routine": 536, "skill": 113, "rank": 1}}, {"model": "objective.routineskill", "pk": 431, "fields": {"routine": 536, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 432, "fields": {"routine": 536, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 433, "fields": {"routine": 536, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 434, "fields": {"routine": 536, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 436, "fields": {"routine": 536, "skill": 26, "rank": 7}}, {"model": "objective.routineskill", "pk": 437, "fields": {"routine": 536, "skill": 32, "rank": 8}}, {"model": "objective.routineskill", "pk": 438, "fields": {"routine": 536, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 439, "fields": {"routine": 536, "skill": 72, "rank": 10}}, {"model": "objective.routineskill", "pk": 440, "fields": {"routine": 536, "skill": 58, "rank": 11}}, {"model": "objective.routineskill", "pk": 441, "fields": {"routine": 537, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 442, "fields": {"routine": 537, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 443, "fields": {"routine": 537, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 444, "fields": {"routine": 537, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 445, "fields": {"routine": 537, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 446, "fields": {"routine": 537, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 447, "fields": {"routine": 537, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 448, "fields": {"routine": 537, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 449, "fields": {"routine": 537, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 450, "fields": {"routine": 537, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 451, "fields": {"routine": 538, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 452, "fields": {"routine": 538, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 453, "fields": {"routine": 538, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 454, "fields": {"routine": 538, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 455, "fields": {"routine": 538, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 456, "fields": {"routine": 538, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 457, "fields": {"routine": 538, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 458, "fields": {"routine": 538, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 459, "fields": {"routine": 538, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 460, "fields": {"routine": 538, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 461, "fields": {"routine": 539, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 462, "fields": {"routine": 539, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 463, "fields": {"routine": 539, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 464, "fields": {"routine": 539, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 465, "fields": {"routine": 539, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 466, "fields": {"routine": 539, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 467, "fields": {"routine": 539, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 468, "fields": {"routine": 539, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 469, "fields": {"routine": 539, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 470, "fields": {"routine": 539, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 471, "fields": {"routine": 540, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 472, "fields": {"routine": 540, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 473, "fields": {"routine": 540, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 474, "fields": {"routine": 540, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 475, "fields": {"routine": 540, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 476, "fields": {"routine": 540, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 477, "fields": {"routine": 540, "skill": 33, "rank": 7}}, {"model": "objective.routineskill", "pk": 478, "fields": {"routine": 540, "skill": 95, "rank": 8}}, {"model": "objective.routineskill", "pk": 479, "fields": {"routine": 540, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 480, "fields": {"routine": 540, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 481, "fields": {"routine": 541, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 482, "fields": {"routine": 541, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 483, "fields": {"routine": 541, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 484, "fields": {"routine": 541, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 485, "fields": {"routine": 541, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 486, "fields": {"routine": 541, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 487, "fields": {"routine": 541, "skill": 33, "rank": 7}}, {"model": "objective.routineskill", "pk": 488, "fields": {"routine": 541, "skill": 95, "rank": 8}}, {"model": "objective.routineskill", "pk": 489, "fields": {"routine": 541, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 490, "fields": {"routine": 541, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 491, "fields": {"routine": 542, "skill": 127, "rank": 1}}, {"model": "objective.routineskill", "pk": 492, "fields": {"routine": 542, "skill": 114, "rank": 2}}, {"model": "objective.routineskill", "pk": 493, "fields": {"routine": 542, "skill": 91, "rank": 3}}, {"model": "objective.routineskill", "pk": 494, "fields": {"routine": 542, "skill": 113, "rank": 4}}, {"model": "objective.routineskill", "pk": 495, "fields": {"routine": 542, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 496, "fields": {"routine": 542, "skill": 74, "rank": 6}}, {"model": "objective.routineskill", "pk": 497, "fields": {"routine": 542, "skill": 106, "rank": 7}}, {"model": "objective.routineskill", "pk": 498, "fields": {"routine": 542, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 499, "fields": {"routine": 542, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 500, "fields": {"routine": 542, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 501, "fields": {"routine": 543, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 502, "fields": {"routine": 543, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 503, "fields": {"routine": 543, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 504, "fields": {"routine": 543, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 505, "fields": {"routine": 543, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 506, "fields": {"routine": 543, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 507, "fields": {"routine": 543, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 508, "fields": {"routine": 543, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 509, "fields": {"routine": 543, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 510, "fields": {"routine": 543, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 511, "fields": {"routine": 544, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 512, "fields": {"routine": 544, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 513, "fields": {"routine": 544, "skill": 110, "rank": 3}}, {"model": "objective.routineskill", "pk": 514, "fields": {"routine": 544, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 515, "fields": {"routine": 544, "skill": 114, "rank": 5}}, {"model": "objective.routineskill", "pk": 517, "fields": {"routine": 544, "skill": 92, "rank": 7}}, {"model": "objective.routineskill", "pk": 518, "fields": {"routine": 544, "skill": 113, "rank": 8}}, {"model": "objective.routineskill", "pk": 519, "fields": {"routine": 544, "skill": 26, "rank": 9}}, {"model": "objective.routineskill", "pk": 520, "fields": {"routine": 544, "skill": 73, "rank": 10}}, {"model": "objective.routineskill", "pk": 521, "fields": {"routine": 544, "skill": 161, "rank": 11}}, {"model": "objective.routineskill", "pk": 522, "fields": {"routine": 545, "skill": 130, "rank": 1}}, {"model": "objective.routineskill", "pk": 523, "fields": {"routine": 545, "skill": 65, "rank": 2}}, {"model": "objective.routineskill", "pk": 524, "fields": {"routine": 545, "skill": 127, "rank": 3}}, {"model": "objective.routineskill", "pk": 526, "fields": {"routine": 545, "skill": 114, "rank": 5}}, {"model": "objective.routineskill", "pk": 527, "fields": {"routine": 545, "skill": 111, "rank": 6}}, {"model": "objective.routineskill", "pk": 528, "fields": {"routine": 545, "skill": 113, "rank": 7}}, {"model": "objective.routineskill", "pk": 529, "fields": {"routine": 545, "skill": 91, "rank": 8}}, {"model": "objective.routineskill", "pk": 530, "fields": {"routine": 545, "skill": 74, "rank": 9}}, {"model": "objective.routineskill", "pk": 531, "fields": {"routine": 545, "skill": 73, "rank": 10}}, {"model": "objective.routineskill", "pk": 532, "fields": {"routine": 545, "skill": 161, "rank": 11}}, {"model": "objective.routineskill", "pk": 533, "fields": {"routine": 546, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 534, "fields": {"routine": 546, "skill": 92, "rank": 2}}, {"model": "objective.routineskill", "pk": 535, "fields": {"routine": 546, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 536, "fields": {"routine": 546, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 537, "fields": {"routine": 546, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 538, "fields": {"routine": 546, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 539, "fields": {"routine": 546, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 540, "fields": {"routine": 546, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 541, "fields": {"routine": 546, "skill": 65, "rank": 9}}, {"model": "objective.routineskill", "pk": 542, "fields": {"routine": 546, "skill": 130, "rank": 10}}, {"model": "objective.routineskill", "pk": 543, "fields": {"routine": 552, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 544, "fields": {"routine": 552, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 545, "fields": {"routine": 552, "skill": 97, "rank": 3}}, {"model": "objective.routineskill", "pk": 546, "fields": {"routine": 552, "skill": 121, "rank": 4}}, {"model": "objective.routineskill", "pk": 547, "fields": {"routine": 552, "skill": 86, "rank": 5}}, {"model": "objective.routineskill", "pk": 548, "fields": {"routine": 552, "skill": 111, "rank": 6}}, {"model": "objective.routineskill", "pk": 549, "fields": {"routine": 552, "skill": 67, "rank": 7}}, {"model": "objective.routineskill", "pk": 550, "fields": {"routine": 552, "skill": 130, "rank": 8}}, {"model": "objective.routineskill", "pk": 551, "fields": {"routine": 552, "skill": 114, "rank": 9}}, {"model": "objective.routineskill", "pk": 552, "fields": {"routine": 552, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 553, "fields": {"routine": 551, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 554, "fields": {"routine": 551, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 555, "fields": {"routine": 551, "skill": 86, "rank": 3}}, {"model": "objective.routineskill", "pk": 556, "fields": {"routine": 551, "skill": 121, "rank": 4}}, {"model": "objective.routineskill", "pk": 557, "fields": {"routine": 551, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 558, "fields": {"routine": 551, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 559, "fields": {"routine": 551, "skill": 65, "rank": 7}}, {"model": "objective.routineskill", "pk": 560, "fields": {"routine": 551, "skill": 130, "rank": 8}}, {"model": "objective.routineskill", "pk": 561, "fields": {"routine": 551, "skill": 113, "rank": 9}}, {"model": "objective.routineskill", "pk": 562, "fields": {"routine": 551, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 563, "fields": {"routine": 550, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 564, "fields": {"routine": 550, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 565, "fields": {"routine": 550, "skill": 86, "rank": 3}}, {"model": "objective.routineskill", "pk": 566, "fields": {"routine": 550, "skill": 92, "rank": 4}}, {"model": "objective.routineskill", "pk": 567, "fields": {"routine": 550, "skill": 114, "rank": 5}}, {"model": "objective.routineskill", "pk": 568, "fields": {"routine": 550, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 569, "fields": {"routine": 550, "skill": 65, "rank": 7}}, {"model": "objective.routineskill", "pk": 570, "fields": {"routine": 550, "skill": 130, "rank": 8}}, {"model": "objective.routineskill", "pk": 571, "fields": {"routine": 550, "skill": 113, "rank": 9}}, {"model": "objective.routineskill", "pk": 572, "fields": {"routine": 550, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 573, "fields": {"routine": 549, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 574, "fields": {"routine": 549, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 575, "fields": {"routine": 549, "skill": 110, "rank": 3}}, {"model": "objective.routineskill", "pk": 576, "fields": {"routine": 549, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 577, "fields": {"routine": 549, "skill": 65, "rank": 5}}, {"model": "objective.routineskill", "pk": 578, "fields": {"routine": 549, "skill": 130, "rank": 6}}, {"model": "objective.routineskill", "pk": 579, "fields": {"routine": 549, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 580, "fields": {"routine": 549, "skill": 91, "rank": 8}}, {"model": "objective.routineskill", "pk": 581, "fields": {"routine": 549, "skill": 113, "rank": 9}}, {"model": "objective.routineskill", "pk": 582, "fields": {"routine": 549, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 583, "fields": {"routine": 548, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 584, "fields": {"routine": 548, "skill": 92, "rank": 2}}, {"model": "objective.routineskill", "pk": 585, "fields": {"routine": 548, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 586, "fields": {"routine": 548, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 587, "fields": {"routine": 548, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 588, "fields": {"routine": 548, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 589, "fields": {"routine": 548, "skill": 110, "rank": 7}}, {"model": "objective.routineskill", "pk": 590, "fields": {"routine": 548, "skill": 127, "rank": 8}}, {"model": "objective.routineskill", "pk": 591, "fields": {"routine": 548, "skill": 65, "rank": 9}}, {"model": "objective.routineskill", "pk": 592, "fields": {"routine": 548, "skill": 130, "rank": 10}}, {"model": "objective.routineskill", "pk": 593, "fields": {"routine": 547, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 594, "fields": {"routine": 547, "skill": 92, "rank": 2}}, {"model": "objective.routineskill", "pk": 595, "fields": {"routine": 547, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 596, "fields": {"routine": 547, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 597, "fields": {"routine": 547, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 598, "fields": {"routine": 547, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 599, "fields": {"routine": 547, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 600, "fields": {"routine": 547, "skill": 127, "rank": 8}}, {"model": "objective.routineskill", "pk": 601, "fields": {"routine": 547, "skill": 65, "rank": 9}}, {"model": "objective.routineskill", "pk": 602, "fields": {"routine": 547, "skill": 130, "rank": 10}}, {"model": "objective.routineskill", "pk": 603, "fields": {"routine": 554, "skill": 5, "rank": 1}}, {"model": "objective.routineskill", "pk": 604, "fields": {"routine": 554, "skill": 14, "rank": 2}}, {"model": "objective.routineskill", "pk": 605, "fields": {"routine": 554, "skill": 1, "rank": 3}}, {"model": "objective.routineskill", "pk": 606, "fields": {"routine": 554, "skill": 323, "rank": 4}}, {"model": "objective.routineskill", "pk": 607, "fields": {"routine": 554, "skill": 4, "rank": 5}}, {"model": "objective.routineskill", "pk": 608, "fields": {"routine": 555, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 609, "fields": {"routine": 555, "skill": 14, "rank": 2}}, {"model": "objective.routineskill", "pk": 610, "fields": {"routine": 555, "skill": 1, "rank": 3}}, {"model": "objective.routineskill", "pk": 611, "fields": {"routine": 555, "skill": 5, "rank": 4}}, {"model": "objective.routineskill", "pk": 612, "fields": {"routine": 555, "skill": 69, "rank": 5}}, {"model": "objective.routineskill", "pk": 613, "fields": {"routine": 556, "skill": 4, "rank": 1}}, {"model": "objective.routineskill", "pk": 614, "fields": {"routine": 556, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 615, "fields": {"routine": 556, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 616, "fields": {"routine": 556, "skill": 3, "rank": 4}}, {"model": "objective.routineskill", "pk": 617, "fields": {"routine": 556, "skill": 29, "rank": 5}}, {"model": "objective.routineskill", "pk": 618, "fields": {"routine": 557, "skill": 5, "rank": 1}}, {"model": "objective.routineskill", "pk": 620, "fields": {"routine": 557, "skill": 68, "rank": 3}}, {"model": "objective.routineskill", "pk": 621, "fields": {"routine": 557, "skill": 14, "rank": 4}}, {"model": "objective.routineskill", "pk": 622, "fields": {"routine": 557, "skill": 1, "rank": 5}}, {"model": "objective.routineskill", "pk": 623, "fields": {"routine": 557, "skill": 29, "rank": 6}}, {"model": "objective.routineskill", "pk": 624, "fields": {"routine": 558, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 625, "fields": {"routine": 558, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 626, "fields": {"routine": 558, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 627, "fields": {"routine": 558, "skill": 4, "rank": 4}}, {"model": "objective.routineskill", "pk": 628, "fields": {"routine": 558, "skill": 22, "rank": 5}}, {"model": "objective.routineskill", "pk": 629, "fields": {"routine": 559, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 630, "fields": {"routine": 559, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 632, "fields": {"routine": 559, "skill": 86, "rank": 4}}, {"model": "objective.routineskill", "pk": 633, "fields": {"routine": 559, "skill": 27, "rank": 5}}, {"model": "objective.routineskill", "pk": 634, "fields": {"routine": 559, "skill": 33, "rank": 6}}, {"model": "objective.routineskill", "pk": 635, "fields": {"routine": 559, "skill": 95, "rank": 7}}, {"model": "objective.routineskill", "pk": 636, "fields": {"routine": 559, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 637, "fields": {"routine": 559, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 638, "fields": {"routine": 559, "skill": 114, "rank": 10}}, {"model": "objective.routineskill", "pk": 639, "fields": {"routine": 559, "skill": 137, "rank": 11}}, {"model": "objective.chrono", "pk": 1, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2019-03-17", "score": "18.94"}}, {"model": "objective.chrono", "pk": 2, "fields": {"routine": 495, "routine_type": 1, "gymnast": 1, "date": "2019-04-02", "score": "16.53"}}, {"model": "objective.chrono", "pk": 3, "fields": {"routine": 495, "routine_type": 2, "gymnast": 1, "date": "2019-04-02", "score": "16.34"}}, {"model": "objective.chrono", "pk": 4, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2018-10-08", "score": "18.64"}}, {"model": "objective.chrono", "pk": 5, "fields": {"routine": 495, "routine_type": 1, "gymnast": 1, "date": "2019-02-10", "score": "16.30"}}, {"model": "objective.chrono", "pk": 6, "fields": {"routine": 495, "routine_type": 2, "gymnast": 1, "date": "2019-04-29", "score": "15.87"}}, {"model": "objective.chrono", "pk": 7, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2018-01-22", "score": "18.75"}}, {"model": "objective.chrono", "pk": 8, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2018-04-16", "score": "18.81"}}, {"model": "objective.chrono", "pk": 9, "fields": {"routine": 494, "routine_type": 0, "gymnast": 5, "date": "2018-04-02", "score": "21.12"}}, {"model": "objective.chrono", "pk": 10, "fields": {"routine": 494, "routine_type": 0, "gymnast": 5, "date": "2019-01-21", "score": "21.57"}}, {"model": "objective.chrono", "pk": 11, "fields": {"routine": 494, "routine_type": 0, "gymnast": 5, "date": "2019-05-17", "score": "22.07"}}, {"model": "objective.chrono", "pk": 12, "fields": {"routine": 494, "routine_type": 0, "gymnast": 2, "date": "2019-05-20", "score": "17.97"}}, {"model": "objective.chrono", "pk": 13, "fields": {"routine": 494, "routine_type": 0, "gymnast": 7, "date": "2019-05-20", "score": "16.13"}}, {"model": "objective.chrono", "pk": 14, "fields": {"routine": 494, "routine_type": 0, "gymnast": 6, "date": "2019-05-20", "score": "16.20"}}, {"model": "objective.chrono", "pk": 15, "fields": {"routine": 494, "routine_type": 0, "gymnast": 8, "date": "2019-05-20", "score": "14.91"}}, {"model": "objective.chrono", "pk": 16, "fields": {"routine": 494, "routine_type": 0, "gymnast": 9, "date": "2019-05-20", "score": "16.08"}}, {"model": "competition.point", "pk": 1, "fields": {"gymnast": 1, "event": 7, "routine_type": 0, "point_execution": "15.800", "point_difficulty": "0.0", "point_time_of_flight": "14.125", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "39.175"}}, {"model": "competition.point", "pk": 2, "fields": {"gymnast": 1, "event": 7, "routine_type": 1, "point_execution": "15.600", "point_difficulty": "5.1", "point_time_of_flight": "13.760", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "43.410"}}, {"model": "competition.point", "pk": 4, "fields": {"gymnast": 11, "event": 3, "routine_type": 1, "point_execution": "3.400", "point_difficulty": "2.9", "point_time_of_flight": "3.625", "point_horizontal_displacement": "1.700", "penality": "0.0", "total": "11.625"}}, {"model": "competition.point", "pk": 5, "fields": {"gymnast": 11, "event": 3, "routine_type": 0, "point_execution": "16.800", "point_difficulty": "6.7", "point_time_of_flight": "16.750", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "49.500"}}, {"model": "competition.point", "pk": 6, "fields": {"gymnast": 5, "event": 3, "routine_type": 0, "point_execution": "13.900", "point_difficulty": "6.7", "point_time_of_flight": "15.895", "point_horizontal_displacement": "8.700", "penality": "0.0", "total": "45.195"}}, {"model": "competition.point", "pk": 7, "fields": {"gymnast": 5, "event": 3, "routine_type": 1, "point_execution": "15.800", "point_difficulty": "12.0", "point_time_of_flight": "16.085", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "52.935"}}, {"model": "competition.point", "pk": 8, "fields": {"gymnast": 4, "event": 3, "routine_type": 0, "point_execution": "14.400", "point_difficulty": "3.7", "point_time_of_flight": "14.820", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "42.020"}}, {"model": "competition.point", "pk": 9, "fields": {"gymnast": 4, "event": 3, "routine_type": 1, "point_execution": "13.000", "point_difficulty": "8.8", "point_time_of_flight": "13.865", "point_horizontal_displacement": "9.150", "penality": "0.0", "total": "44.815"}}, {"model": "competition.point", "pk": 10, "fields": {"gymnast": 4, "event": 3, "routine_type": 2, "point_execution": "12.800", "point_difficulty": "8.8", "point_time_of_flight": "13.925", "point_horizontal_displacement": "8.850", "penality": "0.0", "total": "44.375"}}, {"model": "competition.point", "pk": 11, "fields": {"gymnast": 2, "event": 2, "routine_type": 0, "point_execution": "14.400", "point_difficulty": "0.0", "point_time_of_flight": "13.060", "point_horizontal_displacement": "9.300", "penality": "0.0", "total": "36.760"}}, {"model": "competition.point", "pk": 12, "fields": {"gymnast": 2, "event": 2, "routine_type": 1, "point_execution": "14.100", "point_difficulty": "5.2", "point_time_of_flight": "13.535", "point_horizontal_displacement": "9.600", "penality": "0.0", "total": "42.435"}}, {"model": "competition.point", "pk": 13, "fields": {"gymnast": 5, "event": 2, "routine_type": 0, "point_execution": "16.600", "point_difficulty": "6.7", "point_time_of_flight": "15.940", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "48.640"}}, {"model": "competition.point", "pk": 14, "fields": {"gymnast": 5, "event": 2, "routine_type": 1, "point_execution": "15.500", "point_difficulty": "12.0", "point_time_of_flight": "15.590", "point_horizontal_displacement": "8.150", "penality": "0.0", "total": "51.240"}}, {"model": "competition.point", "pk": 15, "fields": {"gymnast": 7, "event": 2, "routine_type": 0, "point_execution": "13.800", "point_difficulty": "0.0", "point_time_of_flight": "12.840", "point_horizontal_displacement": "9.300", "penality": "0.0", "total": "35.940"}}, {"model": "competition.point", "pk": 16, "fields": {"gymnast": 7, "event": 2, "routine_type": 1, "point_execution": "15.200", "point_difficulty": "2.7", "point_time_of_flight": "12.535", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "39.885"}}, {"model": "competition.point", "pk": 17, "fields": {"gymnast": 1, "event": 2, "routine_type": 0, "point_execution": "16.300", "point_difficulty": "0.0", "point_time_of_flight": "13.620", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "39.320"}}, {"model": "competition.point", "pk": 18, "fields": {"gymnast": 1, "event": 2, "routine_type": 1, "point_execution": "16.600", "point_difficulty": "4.0", "point_time_of_flight": "13.890", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "43.940"}}, {"model": "competition.point", "pk": 19, "fields": {"gymnast": 6, "event": 2, "routine_type": 0, "point_execution": "13.700", "point_difficulty": "0.0", "point_time_of_flight": "12.685", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "35.785"}}, {"model": "competition.point", "pk": 20, "fields": {"gymnast": 6, "event": 2, "routine_type": 1, "point_execution": "12.600", "point_difficulty": "2.7", "point_time_of_flight": "11.405", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "35.805"}}, {"model": "competition.point", "pk": 21, "fields": {"gymnast": 6, "event": 7, "routine_type": 0, "point_execution": "13.400", "point_difficulty": "0.0", "point_time_of_flight": "11.720", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "34.570"}}, {"model": "competition.point", "pk": 22, "fields": {"gymnast": 6, "event": 7, "routine_type": 1, "point_execution": "14.700", "point_difficulty": "2.3", "point_time_of_flight": "11.755", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "38.155"}}, {"model": "competition.point", "pk": 23, "fields": {"gymnast": 5, "event": 7, "routine_type": 0, "point_execution": "14.900", "point_difficulty": "5.1", "point_time_of_flight": "14.465", "point_horizontal_displacement": "7.850", "penality": "0.0", "total": "42.315"}}, {"model": "competition.point", "pk": 24, "fields": {"gymnast": 5, "event": 7, "routine_type": 1, "point_execution": "13.400", "point_difficulty": "11.0", "point_time_of_flight": "15.700", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "49.150"}}, {"model": "competition.point", "pk": 25, "fields": {"gymnast": 5, "event": 8, "routine_type": 0, "point_execution": "15.800", "point_difficulty": "6.7", "point_time_of_flight": "15.445", "point_horizontal_displacement": "9.200", "penality": "0.0", "total": "47.145"}}, {"model": "competition.point", "pk": 26, "fields": {"gymnast": 5, "event": 8, "routine_type": 1, "point_execution": "15.600", "point_difficulty": "10.8", "point_time_of_flight": "15.455", "point_horizontal_displacement": "8.700", "penality": "0.2", "total": "50.355"}}, {"model": "competition.point", "pk": 27, "fields": {"gymnast": 8, "event": 7, "routine_type": 0, "point_execution": "15.400", "point_difficulty": "9.8", "point_time_of_flight": "0.000", "point_horizontal_displacement": "0.000", "penality": "0.0", "total": "25.200"}}, {"model": "competition.point", "pk": 28, "fields": {"gymnast": 8, "event": 7, "routine_type": 1, "point_execution": "14.200", "point_difficulty": "1.4", "point_time_of_flight": "9.660", "point_horizontal_displacement": "9.850", "penality": "0.0", "total": "35.110"}}, {"model": "competition.point", "pk": 29, "fields": {"gymnast": 8, "event": 2, "routine_type": 0, "point_execution": "15.800", "point_difficulty": "0.0", "point_time_of_flight": "0.000", "point_horizontal_displacement": "9.800", "penality": "0.0", "total": "25.600"}}, {"model": "competition.point", "pk": 30, "fields": {"gymnast": 8, "event": 2, "routine_type": 1, "point_execution": "13.600", "point_difficulty": "1.7", "point_time_of_flight": "9.140", "point_horizontal_displacement": "9.700", "penality": "0.6", "total": "33.540"}}, {"model": "competition.point", "pk": 31, "fields": {"gymnast": 5, "event": 9, "routine_type": 0, "point_execution": "2.900", "point_difficulty": "3.4", "point_time_of_flight": "1.655", "point_horizontal_displacement": "1.700", "penality": "0.0", "total": "9.655"}}, {"model": "competition.point", "pk": 32, "fields": {"gymnast": 5, "event": 9, "routine_type": 1, "point_execution": "3.300", "point_difficulty": "1.7", "point_time_of_flight": "3.295", "point_horizontal_displacement": "1.750", "penality": "0.0", "total": "10.045"}}, {"model": "competition.point", "pk": 33, "fields": {"gymnast": 11, "event": 1, "routine_type": 0, "point_execution": "14.100", "point_difficulty": "4.9", "point_time_of_flight": "15.240", "point_horizontal_displacement": "7.500", "penality": "2.0", "total": "39.740"}}, {"model": "competition.point", "pk": 34, "fields": {"gymnast": 11, "event": 1, "routine_type": 1, "point_execution": "17.200", "point_difficulty": "11.6", "point_time_of_flight": "17.035", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "54.935"}}, {"model": "competition.point", "pk": 35, "fields": {"gymnast": 4, "event": 1, "routine_type": 0, "point_execution": "14.400", "point_difficulty": "3.7", "point_time_of_flight": "14.885", "point_horizontal_displacement": "9.650", "penality": "0.0", "total": "42.635"}}, {"model": "competition.point", "pk": 36, "fields": {"gymnast": 4, "event": 1, "routine_type": 1, "point_execution": "13.100", "point_difficulty": "8.1", "point_time_of_flight": "12.840", "point_horizontal_displacement": "8.400", "penality": "0.0", "total": "42.440"}}, {"model": "competition.point", "pk": 37, "fields": {"gymnast": 4, "event": 9, "routine_type": 0, "point_execution": "16.000", "point_difficulty": "3.7", "point_time_of_flight": "14.730", "point_horizontal_displacement": "9.550", "penality": "0.0", "total": "43.980"}}, {"model": "competition.point", "pk": 38, "fields": {"gymnast": 4, "event": 9, "routine_type": 1, "point_execution": "13.900", "point_difficulty": "8.8", "point_time_of_flight": "14.225", "point_horizontal_displacement": "8.700", "penality": "0.4", "total": "45.225"}}, {"model": "competition.point", "pk": 39, "fields": {"gymnast": 11, "event": 9, "routine_type": 0, "point_execution": "15.400", "point_difficulty": "4.9", "point_time_of_flight": "15.080", "point_horizontal_displacement": "8.000", "penality": "0.0", "total": "43.380"}}, {"model": "competition.point", "pk": 40, "fields": {"gymnast": 11, "event": 9, "routine_type": 1, "point_execution": "16.600", "point_difficulty": "11.6", "point_time_of_flight": "16.475", "point_horizontal_displacement": "8.350", "penality": "0.0", "total": "53.025"}}, {"model": "competition.point", "pk": 41, "fields": {"gymnast": 5, "event": 1, "routine_type": 0, "point_execution": "6.300", "point_difficulty": "3.6", "point_time_of_flight": "6.396", "point_horizontal_displacement": "3.300", "penality": "0.0", "total": "19.596"}}, {"model": "competition.point", "pk": 42, "fields": {"gymnast": 5, "event": 1, "routine_type": 1, "point_execution": "14.200", "point_difficulty": "11.2", "point_time_of_flight": "14.345", "point_horizontal_displacement": "7.950", "penality": "0.0", "total": "47.695"}}, {"model": "competition.point", "pk": 43, "fields": {"gymnast": 5, "event": 3, "routine_type": 2, "point_execution": "14.200", "point_difficulty": "10.9", "point_time_of_flight": "15.655", "point_horizontal_displacement": "8.850", "penality": "0.0", "total": "49.605"}}, {"model": "competition.point", "pk": 44, "fields": {"gymnast": 4, "event": 5, "routine_type": 0, "point_execution": "16.300", "point_difficulty": "3.7", "point_time_of_flight": "15.285", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "44.735"}}, {"model": "competition.point", "pk": 45, "fields": {"gymnast": 4, "event": 5, "routine_type": 1, "point_execution": "14.300", "point_difficulty": "8.8", "point_time_of_flight": "14.485", "point_horizontal_displacement": "9.500", "penality": "0.0", "total": "47.085"}}, {"model": "competition.point", "pk": 46, "fields": {"gymnast": 4, "event": 5, "routine_type": 2, "point_execution": "4.300", "point_difficulty": "3.6", "point_time_of_flight": "4.410", "point_horizontal_displacement": "2.550", "penality": "0.0", "total": "14.860"}}, {"model": "competition.point", "pk": 47, "fields": {"gymnast": 11, "event": 5, "routine_type": 0, "point_execution": "16.100", "point_difficulty": "6.7", "point_time_of_flight": "16.590", "point_horizontal_displacement": "9.350", "penality": "0.0", "total": "48.740"}}, {"model": "competition.point", "pk": 48, "fields": {"gymnast": 11, "event": 5, "routine_type": 1, "point_execution": "17.500", "point_difficulty": "11.6", "point_time_of_flight": "17.235", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "55.585"}}, {"model": "competition.point", "pk": 49, "fields": {"gymnast": 11, "event": 5, "routine_type": 2, "point_execution": "15.400", "point_difficulty": "13.3", "point_time_of_flight": "16.445", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "54.095"}}, {"model": "competition.point", "pk": 50, "fields": {"gymnast": 5, "event": 5, "routine_type": 0, "point_execution": "15.900", "point_difficulty": "6.5", "point_time_of_flight": "14.995", "point_horizontal_displacement": "9.200", "penality": "0.0", "total": "46.595"}}, {"model": "competition.point", "pk": 51, "fields": {"gymnast": 5, "event": 5, "routine_type": 1, "point_execution": "13.400", "point_difficulty": "9.5", "point_time_of_flight": "12.540", "point_horizontal_displacement": "7.250", "penality": "0.0", "total": "42.690"}}, {"model": "competition.point", "pk": 52, "fields": {"gymnast": 1, "event": 5, "routine_type": 0, "point_execution": "13.900", "point_difficulty": "0.0", "point_time_of_flight": "12.320", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "35.020"}}, {"model": "competition.point", "pk": 53, "fields": {"gymnast": 1, "event": 5, "routine_type": 1, "point_execution": "14.600", "point_difficulty": "5.1", "point_time_of_flight": "13.385", "point_horizontal_displacement": "9.650", "penality": "0.0", "total": "42.735"}}, {"model": "competition.point", "pk": 54, "fields": {"gymnast": 2, "event": 5, "routine_type": 0, "point_execution": "2.700", "point_difficulty": "0.0", "point_time_of_flight": "2.655", "point_horizontal_displacement": "1.800", "penality": "0.0", "total": "7.155"}}, {"model": "competition.point", "pk": 55, "fields": {"gymnast": 2, "event": 5, "routine_type": 1, "point_execution": "12.900", "point_difficulty": "5.2", "point_time_of_flight": "12.990", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "39.890"}}, {"model": "competition.point", "pk": 56, "fields": {"gymnast": 2, "event": 8, "routine_type": 0, "point_execution": "14.100", "point_difficulty": "0.0", "point_time_of_flight": "13.315", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "36.665"}}, {"model": "competition.point", "pk": 57, "fields": {"gymnast": 2, "event": 8, "routine_type": 1, "point_execution": "7.000", "point_difficulty": "2.4", "point_time_of_flight": "6.805", "point_horizontal_displacement": "4.350", "penality": "0.0", "total": "20.555"}}, {"model": "competition.point", "pk": 58, "fields": {"gymnast": 2, "event": 1, "routine_type": 0, "point_execution": "13.600", "point_difficulty": "0.0", "point_time_of_flight": "12.330", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "35.030"}}, {"model": "competition.point", "pk": 59, "fields": {"gymnast": 2, "event": 1, "routine_type": 1, "point_execution": "12.800", "point_difficulty": "5.2", "point_time_of_flight": "13.275", "point_horizontal_displacement": "9.550", "penality": "0.0", "total": "40.825"}}, {"model": "competition.point", "pk": 60, "fields": {"gymnast": 2, "event": 10, "routine_type": 0, "point_execution": "13.000", "point_difficulty": "0.0", "point_time_of_flight": "10.910", "point_horizontal_displacement": "8.300", "penality": "0.0", "total": "32.210"}}, {"model": "competition.point", "pk": 61, "fields": {"gymnast": 2, "event": 10, "routine_type": 1, "point_execution": "13.500", "point_difficulty": "5.0", "point_time_of_flight": "12.015", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "39.315"}}, {"model": "competition.point", "pk": 62, "fields": {"gymnast": 2, "event": 11, "routine_type": 0, "point_execution": "14.200", "point_difficulty": "0.0", "point_time_of_flight": "14.225", "point_horizontal_displacement": "9.150", "penality": "0.0", "total": "37.575"}}, {"model": "competition.point", "pk": 63, "fields": {"gymnast": 2, "event": 11, "routine_type": 1, "point_execution": "11.200", "point_difficulty": "6.0", "point_time_of_flight": "14.275", "point_horizontal_displacement": "8.700", "penality": "0.0", "total": "40.175"}}, {"model": "competition.point", "pk": 64, "fields": {"gymnast": 2, "event": 12, "routine_type": 0, "point_execution": "14.800", "point_difficulty": "0.0", "point_time_of_flight": "12.545", "point_horizontal_displacement": "9.700", "penality": "0.0", "total": "37.045"}}, {"model": "competition.point", "pk": 65, "fields": {"gymnast": 2, "event": 12, "routine_type": 1, "point_execution": "12.500", "point_difficulty": "6.0", "point_time_of_flight": "12.245", "point_horizontal_displacement": "9.350", "penality": "0.0", "total": "40.095"}}, {"model": "competition.point", "pk": 66, "fields": {"gymnast": 2, "event": 12, "routine_type": 2, "point_execution": "14.000", "point_difficulty": "6.0", "point_time_of_flight": "12.260", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "41.360"}}, {"model": "competition.point", "pk": 67, "fields": {"gymnast": 5, "event": 13, "routine_type": 0, "point_execution": "15.400", "point_difficulty": "0.0", "point_time_of_flight": "14.355", "point_horizontal_displacement": "9.600", "penality": "0.0", "total": "39.355"}}, {"model": "competition.point", "pk": 68, "fields": {"gymnast": 5, "event": 13, "routine_type": 1, "point_execution": "8.866", "point_difficulty": "7.6", "point_time_of_flight": "10.400", "point_horizontal_displacement": "6.900", "penality": "0.0", "total": "33.766"}}, {"model": "competition.point", "pk": 69, "fields": {"gymnast": 5, "event": 14, "routine_type": 0, "point_execution": "13.600", "point_difficulty": "0.0", "point_time_of_flight": "15.650", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "38.300"}}, {"model": "competition.point", "pk": 70, "fields": {"gymnast": 5, "event": 14, "routine_type": 1, "point_execution": "14.100", "point_difficulty": "9.0", "point_time_of_flight": "14.750", "point_horizontal_displacement": "8.850", "penality": "0.0", "total": "46.700"}}, {"model": "competition.point", "pk": 71, "fields": {"gymnast": 1, "event": 14, "routine_type": 0, "point_execution": "15.900", "point_difficulty": "0.0", "point_time_of_flight": "12.850", "point_horizontal_displacement": "9.500", "penality": "0.0", "total": "38.250"}}, {"model": "competition.point", "pk": 72, "fields": {"gymnast": 1, "event": 14, "routine_type": 1, "point_execution": "15.300", "point_difficulty": "4.5", "point_time_of_flight": "12.760", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "41.510"}}, {"model": "competition.point", "pk": 73, "fields": {"gymnast": 1, "event": 15, "routine_type": 0, "point_execution": "16.000", "point_difficulty": "0.0", "point_time_of_flight": "12.680", "point_horizontal_displacement": "9.700", "penality": "0.0", "total": "38.380"}}, {"model": "competition.point", "pk": 74, "fields": {"gymnast": 1, "event": 15, "routine_type": 1, "point_execution": "14.300", "point_difficulty": "5.4", "point_time_of_flight": "11.775", "point_horizontal_displacement": "9.350", "penality": "0.0", "total": "40.825"}}, {"model": "competition.point", "pk": 75, "fields": {"gymnast": 1, "event": 16, "routine_type": 0, "point_execution": "10.500", "point_difficulty": "0.0", "point_time_of_flight": "9.310", "point_horizontal_displacement": "6.250", "penality": "0.0", "total": "26.060"}}, {"model": "competition.point", "pk": 76, "fields": {"gymnast": 1, "event": 16, "routine_type": 1, "point_execution": "13.700", "point_difficulty": "4.5", "point_time_of_flight": "12.605", "point_horizontal_displacement": "8.900", "penality": "0.0", "total": "39.705"}}, {"model": "competition.point", "pk": 77, "fields": {"gymnast": 5, "event": 16, "routine_type": 0, "point_execution": "16.500", "point_difficulty": "0.0", "point_time_of_flight": "15.120", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "40.870"}}, {"model": "competition.point", "pk": 78, "fields": {"gymnast": 5, "event": 16, "routine_type": 1, "point_execution": "14.100", "point_difficulty": "10.0", "point_time_of_flight": "14.120", "point_horizontal_displacement": "8.400", "penality": "0.0", "total": "46.620"}}, {"model": "competition.point", "pk": 79, "fields": {"gymnast": 5, "event": 16, "routine_type": 2, "point_execution": "15.900", "point_difficulty": "10.0", "point_time_of_flight": "14.630", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "49.580"}}, {"model": "competition.point", "pk": 80, "fields": {"gymnast": 5, "event": 10, "routine_type": 0, "point_execution": "15.300", "point_difficulty": "3.1", "point_time_of_flight": "14.195", "point_horizontal_displacement": "8.400", "penality": "0.0", "total": "40.995"}}, {"model": "competition.point", "pk": 81, "fields": {"gymnast": 5, "event": 10, "routine_type": 1, "point_execution": "16.800", "point_difficulty": "10.6", "point_time_of_flight": "15.390", "point_horizontal_displacement": "9.200", "penality": "0.0", "total": "51.990"}}, {"model": "competition.point", "pk": 82, "fields": {"gymnast": 5, "event": 11, "routine_type": 0, "point_execution": "6.800", "point_difficulty": "0.0", "point_time_of_flight": "6.630", "point_horizontal_displacement": "3.350", "penality": "0.0", "total": "16.780"}}, {"model": "competition.point", "pk": 83, "fields": {"gymnast": 5, "event": 11, "routine_type": 1, "point_execution": "14.900", "point_difficulty": "10.4", "point_time_of_flight": "14.670", "point_horizontal_displacement": "8.400", "penality": "0.2", "total": "48.170"}}, {"model": "competition.point", "pk": 84, "fields": {"gymnast": 5, "event": 12, "routine_type": 0, "point_execution": "14.700", "point_difficulty": "2.8", "point_time_of_flight": "15.245", "point_horizontal_displacement": "9.300", "penality": "0.0", "total": "42.045"}}, {"model": "competition.point", "pk": 85, "fields": {"gymnast": 5, "event": 12, "routine_type": 1, "point_execution": "13.200", "point_difficulty": "10.7", "point_time_of_flight": "14.560", "point_horizontal_displacement": "8.650", "penality": "0.0", "total": "47.110"}}, {"model": "competition.point", "pk": 86, "fields": {"gymnast": 11, "event": 14, "routine_type": 0, "point_execution": "16.000", "point_difficulty": "4.1", "point_time_of_flight": "16.880", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "46.030"}}, {"model": "competition.point", "pk": 87, "fields": {"gymnast": 11, "event": 14, "routine_type": 1, "point_execution": "5.300", "point_difficulty": "5.9", "point_time_of_flight": "6.800", "point_horizontal_displacement": "3.200", "penality": "0.0", "total": "21.200"}}, {"model": "competition.point", "pk": 88, "fields": {"gymnast": 11, "event": 15, "routine_type": 0, "point_execution": "14.300", "point_difficulty": "3.6", "point_time_of_flight": "15.140", "point_horizontal_displacement": "7.550", "penality": "0.0", "total": "40.590"}}, {"model": "competition.point", "pk": 89, "fields": {"gymnast": 11, "event": 15, "routine_type": 1, "point_execution": "14.800", "point_difficulty": "9.9", "point_time_of_flight": "15.440", "point_horizontal_displacement": "8.400", "penality": "1.2", "total": "47.340"}}, {"model": "competition.point", "pk": 90, "fields": {"gymnast": 1, "event": 10, "routine_type": 0, "point_execution": "15.700", "point_difficulty": "0.0", "point_time_of_flight": "13.340", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "37.990"}}, {"model": "competition.point", "pk": 91, "fields": {"gymnast": 1, "event": 10, "routine_type": 1, "point_execution": "16.500", "point_difficulty": "3.5", "point_time_of_flight": "13.090", "point_horizontal_displacement": "9.600", "penality": "1.0", "total": "41.690"}}, {"model": "competition.point", "pk": 92, "fields": {"gymnast": 1, "event": 11, "routine_type": 0, "point_execution": "16.300", "point_difficulty": "0.0", "point_time_of_flight": "13.620", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "38.870"}}, {"model": "competition.point", "pk": 93, "fields": {"gymnast": 1, "event": 11, "routine_type": 1, "point_execution": "15.800", "point_difficulty": "5.1", "point_time_of_flight": "13.595", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "43.295"}}, {"model": "competition.point", "pk": 94, "fields": {"gymnast": 1, "event": 12, "routine_type": 0, "point_execution": "15.900", "point_difficulty": "0.0", "point_time_of_flight": "13.770", "point_horizontal_displacement": "9.550", "penality": "0.0", "total": "39.220"}}, {"model": "competition.point", "pk": 95, "fields": {"gymnast": 1, "event": 12, "routine_type": 1, "point_execution": "13.600", "point_difficulty": "5.1", "point_time_of_flight": "13.550", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "41.300"}}, {"model": "competition.point", "pk": 96, "fields": {"gymnast": 4, "event": 14, "routine_type": 0, "point_execution": "15.200", "point_difficulty": "2.3", "point_time_of_flight": "14.835", "point_horizontal_displacement": "8.850", "penality": "2.0", "total": "39.185"}}, {"model": "competition.point", "pk": 97, "fields": {"gymnast": 4, "event": 14, "routine_type": 1, "point_execution": "11.700", "point_difficulty": "8.1", "point_time_of_flight": "13.640", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "42.540"}}, {"model": "profile.profile", "pk": 1, "fields": {"user": 1, "birth_date": "1982-02-05", "gsm": "0494923851", "template_color": 0, "sidebar_color": 4, "is_sidebar_minified": true, "picture": ""}}, {"model": "profile.profile", "pk": 2, "fields": {"user": 2, "birth_date": "1995-02-23", "gsm": "0470606857", "template_color": 1, "sidebar_color": 0, "is_sidebar_minified": false, "picture": ""}}, {"model": "profile.profile", "pk": 3, "fields": {"user": 3, "birth_date": "1988-03-27", "gsm": "0472534432", "template_color": 0, "sidebar_color": 0, "is_sidebar_minified": false, "picture": ""}}, {"model": "communication.message", "pk": 2, "fields": {"content": null, "sender": 1, "written_at": "2019-04-13T10:33:08.753", "recipient": 1, "read_at": "2019-04-15T08:02:43.489", "title": "Test de message Morgane -> Gregory", "body": "petit test qui va bien."}}, {"model": "communication.message", "pk": 3, "fields": {"content": null, "sender": 1, "written_at": "2019-04-14T14:26:58.939", "recipient": 1, "read_at": "2019-04-14T14:27:02.243", "title": "test de foprm", "body": "test de form !"}}, {"model": "communication.message", "pk": 4, "fields": {"content": null, "sender": 1, "written_at": "2019-04-14T14:35:56.294", "recipient": 1, "read_at": "2019-04-14T14:35:56.294", "title": "test de test", "body": "et sans faute dans le titre cette fois-ci !"}}] \ No newline at end of file +[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "people", "model": "accident"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "people", "model": "candorelation"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "people", "model": "gymnast"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "people", "model": "todorelation"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "location", "model": "club"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "location", "model": "country"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "location", "model": "place"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "planning", "model": "course"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "planning", "model": "event"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "planning", "model": "eventtype"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "planning", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "planning", "model": "planningline"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "planning", "model": "round"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "planning", "model": "season"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "planning", "model": "subgroup"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "planning", "model": "training"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "planning", "model": "unavailability"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "objective", "model": "chrono"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "objective", "model": "educative"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "objective", "model": "routineskill"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "objective", "model": "touchposition"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "objective", "model": "routine"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "objective", "model": "skill"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "competition", "model": "competition"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "competition", "model": "division"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "competition", "model": "level"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "competition", "model": "point"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "profile", "model": "profile"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "people", "model": "hasroutine"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "people", "model": "gymnasthasroutine"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "communication", "model": "message"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "objective", "model": "evaluation"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "planning", "model": "event_participation"}}, {"model": "admin.logentry", "pk": 1, "fields": {"action_time": "2019-03-16T17:07:05.826", "user": 1, "content_type": 12, "object_id": "1", "object_repr": "Belgique (BE)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 2, "fields": {"action_time": "2019-03-16T17:07:55.846", "user": 1, "content_type": 13, "object_id": "1", "object_repr": "Ecole du pré vert (Lillois-Witterzée)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 3, "fields": {"action_time": "2019-03-16T17:08:09.373", "user": 1, "content_type": 11, "object_id": "1", "object_repr": "Flying Acrobatics Trampoline Club (à Lillois-Witterzée)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 4, "fields": {"action_time": "2019-03-16T17:08:46.032", "user": 1, "content_type": 5, "object_id": "1", "object_repr": "sulley", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\"]}}]"}}, {"model": "admin.logentry", "pk": 5, "fields": {"action_time": "2019-03-16T17:16:24.868", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 6, "fields": {"action_time": "2019-03-16T17:34:48.780", "user": 1, "content_type": 20, "object_id": "1", "object_repr": "Season object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 7, "fields": {"action_time": "2019-03-16T18:51:13.177", "user": 1, "content_type": 14, "object_id": "1", "object_repr": "Samedi - 10:00 à 12:00 (]>)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 8, "fields": {"action_time": "2019-03-16T18:52:01.910", "user": 1, "content_type": 22, "object_id": "1", "object_repr": "2019-03-16 (Granda Martinez, Noelia, Samedi - 10:00 à 12:00 (]>))", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 9, "fields": {"action_time": "2019-03-16T19:08:03.088", "user": 1, "content_type": 19, "object_id": "1", "object_repr": "1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 10, "fields": {"action_time": "2019-03-16T19:08:46.820", "user": 1, "content_type": 19, "object_id": "2", "object_repr": "2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 11, "fields": {"action_time": "2019-03-16T19:09:53.818", "user": 1, "content_type": 19, "object_id": "3", "object_repr": "3", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 12, "fields": {"action_time": "2019-03-16T19:10:18.519", "user": 1, "content_type": 19, "object_id": "4", "object_repr": "4", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 13, "fields": {"action_time": "2019-03-16T19:10:39.190", "user": 1, "content_type": 19, "object_id": "5", "object_repr": "5", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 14, "fields": {"action_time": "2019-03-17T07:24:19.601", "user": 1, "content_type": 19, "object_id": "1", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 15, "fields": {"action_time": "2019-03-17T07:53:57.999", "user": 1, "content_type": 14, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 16, "fields": {"action_time": "2019-03-17T07:54:50.955", "user": 1, "content_type": 14, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 17, "fields": {"action_time": "2019-03-17T07:55:11.960", "user": 1, "content_type": 5, "object_id": "1", "object_repr": "Gregory", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"username\"]}}]"}}, {"model": "admin.logentry", "pk": 18, "fields": {"action_time": "2019-03-17T07:55:28.913", "user": 1, "content_type": 5, "object_id": "2", "object_repr": "Morgane", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 19, "fields": {"action_time": "2019-03-17T07:56:02.644", "user": 1, "content_type": 5, "object_id": "2", "object_repr": "Morgane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\", \"is_staff\", \"is_superuser\"]}}]"}}, {"model": "admin.logentry", "pk": 20, "fields": {"action_time": "2019-03-17T07:56:24.493", "user": 1, "content_type": 5, "object_id": "3", "object_repr": "Stéphane", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 21, "fields": {"action_time": "2019-03-17T07:56:43.759", "user": 1, "content_type": 5, "object_id": "3", "object_repr": "Stéphane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"email\", \"is_staff\"]}}]"}}, {"model": "admin.logentry", "pk": 22, "fields": {"action_time": "2019-03-17T07:57:55.295", "user": 1, "content_type": 14, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"trainers\"]}}]"}}, {"model": "admin.logentry", "pk": 23, "fields": {"action_time": "2019-03-17T07:58:09.428", "user": 1, "content_type": 14, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"trainers\"]}}]"}}, {"model": "admin.logentry", "pk": 24, "fields": {"action_time": "2019-03-17T08:00:54.091", "user": 1, "content_type": 14, "object_id": "4", "object_repr": "Vendredi (17:15 à 19:15)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 25, "fields": {"action_time": "2019-03-17T08:02:37.122", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "Ten Gaerde (Dilbeek)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 26, "fields": {"action_time": "2019-03-17T08:02:46.033", "user": 1, "content_type": 11, "object_id": "2", "object_repr": "Ten Gaerde (à Dilbeek)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 27, "fields": {"action_time": "2019-03-17T08:04:19.888", "user": 1, "content_type": 14, "object_id": "5", "object_repr": "Samedi (19:00 à 21:30)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 28, "fields": {"action_time": "2019-03-17T08:09:53.576", "user": 1, "content_type": 14, "object_id": "6", "object_repr": "Dimanche (11:00 à 13:00)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 29, "fields": {"action_time": "2019-03-17T08:50:48.112", "user": 1, "content_type": 22, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00) le 2019-03-18, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 30, "fields": {"action_time": "2019-03-17T08:51:10.250", "user": 1, "content_type": 22, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00) le 2019-03-20, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 31, "fields": {"action_time": "2019-03-17T08:51:30.250", "user": 1, "content_type": 22, "object_id": "4", "object_repr": "Vendredi (17:15 à 19:15) le 2019-03-22, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 32, "fields": {"action_time": "2019-03-17T08:51:44.981", "user": 1, "content_type": 22, "object_id": "5", "object_repr": "Samedi (10:00 à 12:00) le 2019-03-23, Granda Martinez, Noelia", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 33, "fields": {"action_time": "2019-03-17T09:43:54.720", "user": 1, "content_type": 19, "object_id": "6", "object_repr": "1", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 34, "fields": {"action_time": "2019-03-17T09:44:20.083", "user": 1, "content_type": 19, "object_id": "7", "object_repr": "2", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 35, "fields": {"action_time": "2019-03-17T09:45:07.550", "user": 1, "content_type": 19, "object_id": "8", "object_repr": "3", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 36, "fields": {"action_time": "2019-03-17T09:45:24.020", "user": 1, "content_type": 19, "object_id": "9", "object_repr": "4", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 37, "fields": {"action_time": "2019-03-17T09:45:53.640", "user": 1, "content_type": 19, "object_id": "10", "object_repr": "5", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 38, "fields": {"action_time": "2019-03-17T09:46:09.216", "user": 1, "content_type": 19, "object_id": "11", "object_repr": "6", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 39, "fields": {"action_time": "2019-03-17T09:46:30.533", "user": 1, "content_type": 19, "object_id": "12", "object_repr": "7", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 40, "fields": {"action_time": "2019-03-17T09:46:41.996", "user": 1, "content_type": 19, "object_id": "2", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 41, "fields": {"action_time": "2019-03-17T09:46:47.766", "user": 1, "content_type": 19, "object_id": "3", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"round_information\", \"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 42, "fields": {"action_time": "2019-03-17T09:59:50.953", "user": 1, "content_type": 19, "object_id": "13", "object_repr": "7", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 43, "fields": {"action_time": "2019-03-17T09:59:54.281", "user": 1, "content_type": 19, "object_id": "14", "object_repr": "6", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 44, "fields": {"action_time": "2019-03-17T09:59:58.212", "user": 1, "content_type": 19, "object_id": "15", "object_repr": "5", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 45, "fields": {"action_time": "2019-03-17T10:00:02.019", "user": 1, "content_type": 19, "object_id": "16", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 46, "fields": {"action_time": "2019-03-17T10:00:07.154", "user": 1, "content_type": 19, "object_id": "17", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 47, "fields": {"action_time": "2019-03-17T10:00:09.899", "user": 1, "content_type": 19, "object_id": "18", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 48, "fields": {"action_time": "2019-03-17T10:00:15.800", "user": 1, "content_type": 19, "object_id": "19", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 49, "fields": {"action_time": "2019-03-17T10:01:24.798", "user": 1, "content_type": 19, "object_id": "26", "object_repr": "7", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 50, "fields": {"action_time": "2019-03-17T10:01:27.576", "user": 1, "content_type": 19, "object_id": "25", "object_repr": "6", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 51, "fields": {"action_time": "2019-03-17T10:01:30.646", "user": 1, "content_type": 19, "object_id": "24", "object_repr": "5", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 52, "fields": {"action_time": "2019-03-17T10:01:33.930", "user": 1, "content_type": 19, "object_id": "23", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 53, "fields": {"action_time": "2019-03-17T10:01:36.445", "user": 1, "content_type": 19, "object_id": "22", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 54, "fields": {"action_time": "2019-03-17T10:01:39.326", "user": 1, "content_type": 19, "object_id": "21", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 55, "fields": {"action_time": "2019-03-17T10:01:42.527", "user": 1, "content_type": 19, "object_id": "20", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 56, "fields": {"action_time": "2019-03-17T10:02:14.252", "user": 1, "content_type": 19, "object_id": "27", "object_repr": "7", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 57, "fields": {"action_time": "2019-03-17T10:02:16.887", "user": 1, "content_type": 19, "object_id": "28", "object_repr": "6", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 58, "fields": {"action_time": "2019-03-17T10:02:19.726", "user": 1, "content_type": 19, "object_id": "29", "object_repr": "5", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 59, "fields": {"action_time": "2019-03-17T10:02:22.189", "user": 1, "content_type": 19, "object_id": "30", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 60, "fields": {"action_time": "2019-03-17T10:02:24.775", "user": 1, "content_type": 19, "object_id": "31", "object_repr": "3", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 61, "fields": {"action_time": "2019-03-17T10:02:27.108", "user": 1, "content_type": 19, "object_id": "32", "object_repr": "2", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 62, "fields": {"action_time": "2019-03-17T10:02:30.405", "user": 1, "content_type": 19, "object_id": "33", "object_repr": "1", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"training\"]}}]"}}, {"model": "admin.logentry", "pk": 63, "fields": {"action_time": "2019-03-17T15:19:55.815", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"club\"]}}]"}}, {"model": "admin.logentry", "pk": 64, "fields": {"action_time": "2019-03-17T15:33:26.471", "user": 1, "content_type": 28, "object_id": "494", "object_repr": "10 | (10 |)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 65, "fields": {"action_time": "2019-03-17T15:33:49.857", "user": 1, "content_type": 28, "object_id": "494", "object_repr": "10 | (10 |)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"difficulty\"]}}]"}}, {"model": "admin.logentry", "pk": 66, "fields": {"action_time": "2019-03-17T15:34:43.892", "user": 1, "content_type": 26, "object_id": "1", "object_repr": "1 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 67, "fields": {"action_time": "2019-03-17T15:34:49.828", "user": 1, "content_type": 26, "object_id": "2", "object_repr": "2 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 68, "fields": {"action_time": "2019-03-17T15:34:55.989", "user": 1, "content_type": 26, "object_id": "3", "object_repr": "3 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 69, "fields": {"action_time": "2019-03-17T15:35:02.399", "user": 1, "content_type": 26, "object_id": "4", "object_repr": "3 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 70, "fields": {"action_time": "2019-03-17T15:35:06.268", "user": 1, "content_type": 26, "object_id": "5", "object_repr": "4 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 71, "fields": {"action_time": "2019-03-17T15:35:10.814", "user": 1, "content_type": 26, "object_id": "6", "object_repr": "4 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 72, "fields": {"action_time": "2019-03-17T15:35:15.853", "user": 1, "content_type": 26, "object_id": "7", "object_repr": "5 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 73, "fields": {"action_time": "2019-03-17T15:35:20.095", "user": 1, "content_type": 26, "object_id": "8", "object_repr": "6 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 74, "fields": {"action_time": "2019-03-17T15:35:25.214", "user": 1, "content_type": 26, "object_id": "9", "object_repr": "7 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 75, "fields": {"action_time": "2019-03-17T15:35:29.522", "user": 1, "content_type": 26, "object_id": "10", "object_repr": "8 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 76, "fields": {"action_time": "2019-03-17T15:35:33.310", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "9 - 10 | : Chandelle", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 77, "fields": {"action_time": "2019-03-17T15:35:59.066", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "10 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 78, "fields": {"action_time": "2019-03-17T15:36:01.634", "user": 1, "content_type": 26, "object_id": "10", "object_repr": "9 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 79, "fields": {"action_time": "2019-03-17T15:36:03.319", "user": 1, "content_type": 26, "object_id": "9", "object_repr": "8 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 80, "fields": {"action_time": "2019-03-17T15:36:04.816", "user": 1, "content_type": 26, "object_id": "8", "object_repr": "7 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 81, "fields": {"action_time": "2019-03-17T15:36:06.263", "user": 1, "content_type": 26, "object_id": "7", "object_repr": "6 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 82, "fields": {"action_time": "2019-03-17T15:36:07.654", "user": 1, "content_type": 26, "object_id": "6", "object_repr": "5 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 83, "fields": {"action_time": "2019-03-17T15:36:09.168", "user": 1, "content_type": 26, "object_id": "5", "object_repr": "5 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 84, "fields": {"action_time": "2019-03-17T15:36:10.745", "user": 1, "content_type": 26, "object_id": "4", "object_repr": "4 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 85, "fields": {"action_time": "2019-03-17T15:36:29.929", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "10 - 10 | : Chandelle", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 86, "fields": {"action_time": "2019-03-17T15:36:40.138", "user": 1, "content_type": 26, "object_id": "10", "object_repr": "10 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 87, "fields": {"action_time": "2019-03-17T15:36:41.921", "user": 1, "content_type": 26, "object_id": "9", "object_repr": "9 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 88, "fields": {"action_time": "2019-03-17T15:36:43.820", "user": 1, "content_type": 26, "object_id": "8", "object_repr": "8 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 89, "fields": {"action_time": "2019-03-17T15:36:45.152", "user": 1, "content_type": 26, "object_id": "7", "object_repr": "7 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 90, "fields": {"action_time": "2019-03-17T15:36:46.423", "user": 1, "content_type": 26, "object_id": "6", "object_repr": "6 - 10 | : Chandelle", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 91, "fields": {"action_time": "2019-03-17T15:37:34.869", "user": 1, "content_type": 24, "object_id": "1", "object_repr": "Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.60", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 92, "fields": {"action_time": "2019-03-17T17:05:37.818", "user": 1, "content_type": 20, "object_id": "1", "object_repr": "2018-19", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]"}}, {"model": "admin.logentry", "pk": 93, "fields": {"action_time": "2019-03-20T09:13:03.315", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 94, "fields": {"action_time": "2019-03-20T09:21:23.319", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 95, "fields": {"action_time": "2019-03-20T09:21:28.235", "user": 1, "content_type": 34, "object_id": "3", "object_repr": "Profile object (3)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 96, "fields": {"action_time": "2019-03-20T13:54:43.331", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"address\", \"postal\", \"city\", \"gsm\", \"email\", \"gsmm\", \"gsmp\"]}}]"}}, {"model": "admin.logentry", "pk": 97, "fields": {"action_time": "2019-03-20T13:56:29.356", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"niss\", \"fedid\"]}}]"}}, {"model": "admin.logentry", "pk": 98, "fields": {"action_time": "2019-03-20T14:38:06.236", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "Pesesse, Lucas", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 99, "fields": {"action_time": "2019-03-20T14:38:36.784", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 100, "fields": {"action_time": "2019-03-20T14:38:54.762", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 101, "fields": {"action_time": "2019-03-20T20:09:33.686", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 102, "fields": {"action_time": "2019-03-20T20:10:06.664", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "Van Mol, Lola", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 103, "fields": {"action_time": "2019-03-21T08:17:33.408", "user": 1, "content_type": 19, "object_id": "34", "object_repr": "8", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 104, "fields": {"action_time": "2019-03-21T08:18:31.277", "user": 1, "content_type": 19, "object_id": "35", "object_repr": "9", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 105, "fields": {"action_time": "2019-03-21T08:18:54.676", "user": 1, "content_type": 19, "object_id": "36", "object_repr": "10", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 106, "fields": {"action_time": "2019-03-21T08:19:12.866", "user": 1, "content_type": 19, "object_id": "37", "object_repr": "12", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 107, "fields": {"action_time": "2019-03-21T08:19:17.005", "user": 1, "content_type": 19, "object_id": "37", "object_repr": "11", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"round_number\"]}}]"}}, {"model": "admin.logentry", "pk": 108, "fields": {"action_time": "2019-03-21T13:17:02.981", "user": 1, "content_type": 19, "object_id": "4", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 109, "fields": {"action_time": "2019-03-21T13:17:06.298", "user": 1, "content_type": 19, "object_id": "9", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 110, "fields": {"action_time": "2019-03-21T13:17:08.915", "user": 1, "content_type": 19, "object_id": "16", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 111, "fields": {"action_time": "2019-03-21T13:17:11.607", "user": 1, "content_type": 19, "object_id": "23", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 112, "fields": {"action_time": "2019-03-21T13:17:13.317", "user": 1, "content_type": 19, "object_id": "30", "object_repr": "4", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nb_of_realisation\"]}}]"}}, {"model": "admin.logentry", "pk": 113, "fields": {"action_time": "2019-03-21T18:30:59.051", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"sidebar_color\"]}}]"}}, {"model": "admin.logentry", "pk": 114, "fields": {"action_time": "2019-03-22T12:31:31.952", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"sidebar_color\"]}}]"}}, {"model": "admin.logentry", "pk": 115, "fields": {"action_time": "2019-03-22T12:31:43.955", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 116, "fields": {"action_time": "2019-03-22T12:33:34.648", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 117, "fields": {"action_time": "2019-03-22T12:35:40.875", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "Pesesse, Lucas", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 118, "fields": {"action_time": "2019-03-22T12:36:34.545", "user": 1, "content_type": 9, "object_id": "7", "object_repr": "Vanye, Felix", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 119, "fields": {"action_time": "2019-03-22T12:37:01.251", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "Van Mol, Lola", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 120, "fields": {"action_time": "2019-03-22T12:37:34.275", "user": 1, "content_type": 9, "object_id": "8", "object_repr": "Lefevre, Pauline", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 121, "fields": {"action_time": "2019-03-22T12:37:50.386", "user": 1, "content_type": 9, "object_id": "6", "object_repr": "Van Mol, Lola", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"trainer\"]}}]"}}, {"model": "admin.logentry", "pk": 122, "fields": {"action_time": "2019-03-22T12:38:29.467", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 123, "fields": {"action_time": "2019-03-22T12:38:43.813", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birthdate\"]}}]"}}, {"model": "admin.logentry", "pk": 124, "fields": {"action_time": "2019-03-22T12:40:27.688", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 125, "fields": {"action_time": "2019-03-22T13:20:50.011", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 126, "fields": {"action_time": "2019-03-22T13:21:22.425", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\"]}}]"}}, {"model": "admin.logentry", "pk": 127, "fields": {"action_time": "2019-03-22T13:22:22.106", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\"]}}]"}}, {"model": "admin.logentry", "pk": 128, "fields": {"action_time": "2019-03-22T13:22:59.849", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 129, "fields": {"action_time": "2019-03-22T13:23:25.845", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\", \"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 130, "fields": {"action_time": "2019-03-22T13:23:47.458", "user": 1, "content_type": 9, "object_id": "9", "object_repr": "Geirnart, Marine", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 131, "fields": {"action_time": "2019-03-22T13:24:31.347", "user": 1, "content_type": 9, "object_id": "3", "object_repr": "Scokart, Romain", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"phone\", \"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 132, "fields": {"action_time": "2019-03-22T13:24:56.060", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 133, "fields": {"action_time": "2019-03-22T13:25:53.543", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"email\"]}}]"}}, {"model": "admin.logentry", "pk": 134, "fields": {"action_time": "2019-03-22T13:26:20.764", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"email\"]}}]"}}, {"model": "admin.logentry", "pk": 135, "fields": {"action_time": "2019-03-22T13:28:16.044", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\", \"email\"]}}]"}}, {"model": "admin.logentry", "pk": 136, "fields": {"action_time": "2019-03-22T13:29:31.277", "user": 1, "content_type": 9, "object_id": "4", "object_repr": "Raschke, Roswitha", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 137, "fields": {"action_time": "2019-03-23T12:32:46.228", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - PO /\"}}, {\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - Dos - 4 pattes\"}}, {\"added\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - \\u00be Avant / + vrille\"}}]"}}, {"model": "admin.logentry", "pk": 138, "fields": {"action_time": "2019-03-23T16:37:14.319", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - Dos - 4 pattes\"}}, {\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - PO /\"}}, {\"deleted\": {\"name\": \"ToDo\", \"object\": \"Granda Martinez, Noelia - \\u00be Avant / + vrille\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Assis - vrille, ventre\"}}]"}}, {"model": "admin.logentry", "pk": 139, "fields": {"action_time": "2019-03-23T16:38:03.265", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Dos - Assis\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Assis - ventre o\"}}, {\"added\": {\"name\": \"CanDo\", \"object\": \"Granda Martinez, Noelia - Dos - \\u00bd, ventre\"}}]"}}, {"model": "admin.logentry", "pk": 140, "fields": {"action_time": "2019-03-24T14:33:04.579", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 141, "fields": {"action_time": "2019-03-24T14:34:39.696", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"template_color\"]}}]"}}, {"model": "admin.logentry", "pk": 142, "fields": {"action_time": "2019-03-24T16:04:25.937", "user": 1, "content_type": 34, "object_id": "1", "object_repr": "Profile object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"template_color\"]}}]"}}, {"model": "admin.logentry", "pk": 143, "fields": {"action_time": "2019-03-24T16:22:50.618", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birth_date\"]}}]"}}, {"model": "admin.logentry", "pk": 144, "fields": {"action_time": "2019-03-24T16:23:49.613", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 145, "fields": {"action_time": "2019-03-24T16:23:59.640", "user": 1, "content_type": 34, "object_id": "2", "object_repr": "Profile object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 146, "fields": {"action_time": "2019-03-24T16:24:55.124", "user": 1, "content_type": 34, "object_id": "3", "object_repr": "Profile object (3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"birth_date\", \"gsm\"]}}]"}}, {"model": "admin.logentry", "pk": 147, "fields": {"action_time": "2019-03-28T16:13:47.773", "user": 1, "content_type": 29, "object_id": "22", "object_repr": "Avant o (.4 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"prerequisite\"]}}]"}}, {"model": "admin.logentry", "pk": 148, "fields": {"action_time": "2019-03-28T19:01:55.237", "user": 1, "content_type": 16, "object_id": "1", "object_repr": "Compétition (CPT)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 149, "fields": {"action_time": "2019-03-28T19:02:02.756", "user": 1, "content_type": 16, "object_id": "2", "object_repr": "Démonstration (Démo)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 150, "fields": {"action_time": "2019-03-28T19:02:10.500", "user": 1, "content_type": 16, "object_id": "3", "object_repr": "Initiation (Ini)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 151, "fields": {"action_time": "2019-03-30T09:37:58.131", "user": 1, "content_type": 28, "object_id": "495", "object_repr": "Imposé Noya (Imposé Noya)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 152, "fields": {"action_time": "2019-03-30T10:37:50.581", "user": 1, "content_type": 26, "object_id": "11", "object_repr": "1 - Imposé Noya : Arrière /", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 153, "fields": {"action_time": "2019-03-30T10:38:08.479", "user": 1, "content_type": 26, "object_id": "12", "object_repr": "2 - Imposé Noya : Barani /", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 154, "fields": {"action_time": "2019-03-30T10:38:30.622", "user": 1, "content_type": 26, "object_id": "13", "object_repr": "3 - Imposé Noya : <", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 155, "fields": {"action_time": "2019-03-30T10:39:08.101", "user": 1, "content_type": 26, "object_id": "14", "object_repr": "4 - Imposé Noya : Barani <", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 156, "fields": {"action_time": "2019-03-30T10:39:36.703", "user": 1, "content_type": 26, "object_id": "15", "object_repr": "5 - Imposé Noya : Arrière <", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 157, "fields": {"action_time": "2019-03-30T15:05:46.885", "user": 1, "content_type": 26, "object_id": "16", "object_repr": "6 - Imposé Noya : o", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 158, "fields": {"action_time": "2019-03-30T15:05:59.279", "user": 1, "content_type": 26, "object_id": "17", "object_repr": "4 - Imposé Noya : Barani o", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 159, "fields": {"action_time": "2019-03-30T15:06:14.097", "user": 1, "content_type": 26, "object_id": "18", "object_repr": "8 - Imposé Noya : //", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 160, "fields": {"action_time": "2019-03-30T15:06:25.003", "user": 1, "content_type": 26, "object_id": "19", "object_repr": "9 - Imposé Noya : Piqué", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 161, "fields": {"action_time": "2019-03-30T15:06:34.773", "user": 1, "content_type": 26, "object_id": "20", "object_repr": "10 - Imposé Noya : BBO o", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 162, "fields": {"action_time": "2019-03-30T15:37:44.022", "user": 1, "content_type": 35, "object_id": "1", "object_repr": "HasRoutine object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 163, "fields": {"action_time": "2019-03-30T15:38:11.595", "user": 1, "content_type": 35, "object_id": "2", "object_repr": "HasRoutine object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 164, "fields": {"action_time": "2019-03-30T15:39:55.994", "user": 1, "content_type": 9, "object_id": "10", "object_repr": "Granda Martinez2, Noelia", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 165, "fields": {"action_time": "2019-03-31T07:20:15.509", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"picture\"]}}]"}}, {"model": "admin.logentry", "pk": 166, "fields": {"action_time": "2019-03-31T07:27:01.097", "user": 1, "content_type": 9, "object_id": "2", "object_repr": "Pesesse, Lucas", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"picture\"]}}]"}}, {"model": "admin.logentry", "pk": 167, "fields": {"action_time": "2019-03-31T19:38:21.820", "user": 1, "content_type": 9, "object_id": "11", "object_repr": "Raschke, Sebastian", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 168, "fields": {"action_time": "2019-03-31T19:40:00.621", "user": 1, "content_type": 9, "object_id": "12", "object_repr": "Geirnart, Marine", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 169, "fields": {"action_time": "2019-04-01T17:57:33.637", "user": 1, "content_type": 9, "object_id": "12", "object_repr": "Geirnart, Marine", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 170, "fields": {"action_time": "2019-04-01T18:08:10.078", "user": 1, "content_type": 36, "object_id": "1", "object_repr": "GymnastHasRoutine object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 171, "fields": {"action_time": "2019-04-01T18:08:24.517", "user": 1, "content_type": 36, "object_id": "2", "object_repr": "GymnastHasRoutine object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 172, "fields": {"action_time": "2019-04-02T12:21:24.823", "user": 1, "content_type": 24, "object_id": "1", "object_repr": "Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.94", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routineType\", \"score\"]}}]"}}, {"model": "admin.logentry", "pk": 173, "fields": {"action_time": "2019-04-02T12:33:19.878", "user": 1, "content_type": 24, "object_id": "1", "object_repr": "Granda Martinez, Noelia le 2019-03-17 : 10 | (10 |) pour 18.94", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 174, "fields": {"action_time": "2019-04-02T13:22:50.486", "user": 1, "content_type": 24, "object_id": "2", "object_repr": "Granda Martinez, Noelia le 2019-04-02 : L1 D2 Junior 1 (L1 D2 Junior 1) pour 16.53", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 175, "fields": {"action_time": "2019-04-02T13:23:04.443", "user": 1, "content_type": 24, "object_id": "3", "object_repr": "Granda Martinez, Noelia le 2019-04-02 : L1 D2 Junior 1 (L1 D2 Junior 1) pour 16.34", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 176, "fields": {"action_time": "2019-04-02T14:29:45.238", "user": 1, "content_type": 19, "object_id": "37", "object_repr": "11", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 177, "fields": {"action_time": "2019-04-02T14:29:49.446", "user": 1, "content_type": 19, "object_id": "36", "object_repr": "10", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 178, "fields": {"action_time": "2019-04-02T14:29:52.865", "user": 1, "content_type": 19, "object_id": "35", "object_repr": "9", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 179, "fields": {"action_time": "2019-04-02T14:29:55.705", "user": 1, "content_type": 19, "object_id": "34", "object_repr": "8", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_important\"]}}]"}}, {"model": "admin.logentry", "pk": 180, "fields": {"action_time": "2019-04-02T17:23:32.640", "user": 1, "content_type": 36, "object_id": "3", "object_repr": "Granda Martinez, Noelia - 3 : L1 D2 Junior 1 (L1 D2 Junior 1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 181, "fields": {"action_time": "2019-04-06T16:36:13.950", "user": 1, "content_type": 26, "object_id": "17", "object_repr": "7 - L1 D2 Junior 1 : Barani o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 182, "fields": {"action_time": "2019-04-07T20:32:14.981", "user": 1, "content_type": 29, "object_id": "256", "object_repr": "| 2 (| 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 183, "fields": {"action_time": "2019-04-07T20:32:20.931", "user": 1, "content_type": 29, "object_id": "366", "object_repr": "Debout (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 184, "fields": {"action_time": "2019-04-07T20:32:25.090", "user": 1, "content_type": 29, "object_id": "459", "object_repr": "Debout (de l'assis) (beb) (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 185, "fields": {"action_time": "2019-04-07T20:33:31.950", "user": 1, "content_type": 29, "object_id": "457", "object_repr": "Tomber Assis (beb) (A)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 186, "fields": {"action_time": "2019-04-07T20:33:36.663", "user": 1, "content_type": 29, "object_id": "318", "object_repr": "Rebonds plat dos (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 187, "fields": {"action_time": "2019-04-07T20:33:40.993", "user": 1, "content_type": 29, "object_id": "462", "object_repr": "Demi tour debout (de l'assis) (beh) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 188, "fields": {"action_time": "2019-04-07T20:33:45.385", "user": 1, "content_type": 29, "object_id": "461", "object_repr": "Demi tour debout (de l'assis) (beb) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 189, "fields": {"action_time": "2019-04-08T17:25:10.185", "user": 1, "content_type": 28, "object_id": "495", "object_repr": "L1 D2 Junior 1 (L1 D2 Junior 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 190, "fields": {"action_time": "2019-04-08T17:38:15.476", "user": 1, "content_type": 29, "object_id": "213", "object_repr": "Vrille et ½ debout (de l'assis) (- 3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 191, "fields": {"action_time": "2019-04-08T17:38:21.529", "user": 1, "content_type": 29, "object_id": "214", "object_repr": "Vrille debout (D 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 192, "fields": {"action_time": "2019-04-08T17:38:27.759", "user": 1, "content_type": 29, "object_id": "463", "object_repr": "Vrille debout (de l'assis) (beh) (D 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 193, "fields": {"action_time": "2019-04-08T17:38:32.135", "user": 1, "content_type": 29, "object_id": "464", "object_repr": "Vrille debout (de l'assis) (b2b) (D 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 194, "fields": {"action_time": "2019-04-08T17:38:39.182", "user": 1, "content_type": 29, "object_id": "462", "object_repr": "Demi tour debout (de l'assis) (beh) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 195, "fields": {"action_time": "2019-04-08T17:38:43.071", "user": 1, "content_type": 29, "object_id": "461", "object_repr": "Demi tour debout (de l'assis) (beb) (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 196, "fields": {"action_time": "2019-04-08T17:38:47.339", "user": 1, "content_type": 29, "object_id": "69", "object_repr": "½ debout (D 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 197, "fields": {"action_time": "2019-04-08T17:38:50.887", "user": 1, "content_type": 29, "object_id": "460", "object_repr": "Debout (de l'assis) (beh) (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 198, "fields": {"action_time": "2019-04-08T17:38:56.542", "user": 1, "content_type": 29, "object_id": "459", "object_repr": "Debout (de l'assis) (beb) (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 199, "fields": {"action_time": "2019-04-08T17:39:02.937", "user": 1, "content_type": 29, "object_id": "14", "object_repr": "Debout (D)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 200, "fields": {"action_time": "2019-04-08T17:39:09.110", "user": 1, "content_type": 29, "object_id": "335", "object_repr": "Assis - vrille, ventre (.1 2 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 201, "fields": {"action_time": "2019-04-08T17:39:13.446", "user": 1, "content_type": 29, "object_id": "204", "object_repr": "Assis - vrille, plat dos (1. 2 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 202, "fields": {"action_time": "2019-04-08T17:39:18.799", "user": 1, "content_type": 29, "object_id": "82", "object_repr": "Roller (- 2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 203, "fields": {"action_time": "2019-04-08T17:39:25.740", "user": 1, "content_type": 29, "object_id": "338", "object_repr": "Assis - vrille et ½, plat dos (1. 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 204, "fields": {"action_time": "2019-04-08T17:39:33.068", "user": 1, "content_type": 29, "object_id": "156", "object_repr": "Assis - vrille et ½, dos (.1 3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 205, "fields": {"action_time": "2019-04-08T17:39:38.180", "user": 1, "content_type": 29, "object_id": "146", "object_repr": "Assis - vrille et ½, assis (-3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 206, "fields": {"action_time": "2019-04-08T17:39:45.251", "user": 1, "content_type": 29, "object_id": "101", "object_repr": "Assis - ventre / (.1 -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 207, "fields": {"action_time": "2019-04-08T17:39:50.902", "user": 1, "content_type": 29, "object_id": "328", "object_repr": "Assis - ventre o (.1 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 208, "fields": {"action_time": "2019-04-08T17:41:03.013", "user": 1, "content_type": 29, "object_id": "329", "object_repr": "Assis - ventre < (.1 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 209, "fields": {"action_time": "2019-04-08T17:41:07.339", "user": 1, "content_type": 29, "object_id": "157", "object_repr": "Assis - salto avant, dos (.3 - 0)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 210, "fields": {"action_time": "2019-04-08T17:41:11.548", "user": 1, "content_type": 29, "object_id": "319", "object_repr": "Assis - plat dos (beh) (1. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 211, "fields": {"action_time": "2019-04-08T17:41:15.187", "user": 1, "content_type": 29, "object_id": "199", "object_repr": "Assis - plat dos (beb) (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 212, "fields": {"action_time": "2019-04-08T17:41:19.042", "user": 1, "content_type": 29, "object_id": "333", "object_repr": "Assis - grouper + vrille, ventre (.1 2 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 213, "fields": {"action_time": "2019-04-08T17:41:22.665", "user": 1, "content_type": 29, "object_id": "336", "object_repr": "Assis - grouper + vrille et ½, plat dos (.1 3 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 214, "fields": {"action_time": "2019-04-08T17:41:26.610", "user": 1, "content_type": 29, "object_id": "330", "object_repr": "Assis - grouper + ½, plat dos (.1 1 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 215, "fields": {"action_time": "2019-04-08T17:41:32.066", "user": 1, "content_type": 29, "object_id": "340", "object_repr": "Assis - double vrille, ventre (.1 4 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 216, "fields": {"action_time": "2019-04-08T17:41:37.083", "user": 1, "content_type": 29, "object_id": "327", "object_repr": "Assis - double vrille, plat dos (1. 4 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 217, "fields": {"action_time": "2019-04-08T17:41:46.689", "user": 1, "content_type": 29, "object_id": "341", "object_repr": "Assis - double vrille et ½, plat dos (.1 5 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 218, "fields": {"action_time": "2019-04-08T17:41:52.087", "user": 1, "content_type": 29, "object_id": "453", "object_repr": "Assis - Dos (1. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 219, "fields": {"action_time": "2019-04-08T17:41:57.474", "user": 1, "content_type": 29, "object_id": "201", "object_repr": "Assis - ½, ventre (1. 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 220, "fields": {"action_time": "2019-04-08T17:42:01.665", "user": 1, "content_type": 29, "object_id": "332", "object_repr": "Assis - ½, plat dos (.1 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 221, "fields": {"action_time": "2019-04-08T17:42:06.545", "user": 1, "content_type": 29, "object_id": "102", "object_repr": "Assis - ½, dos (.1 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 222, "fields": {"action_time": "2019-04-08T17:42:11.738", "user": 1, "content_type": 29, "object_id": "100", "object_repr": "Assis - ½, Assis (A 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 223, "fields": {"action_time": "2019-04-08T17:44:39.011", "user": 1, "content_type": 29, "object_id": "468", "object_repr": "ATR - roule (.1 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 224, "fields": {"action_time": "2019-04-08T17:44:42.554", "user": 1, "content_type": 29, "object_id": "469", "object_repr": "Poirier - plat dos (.1 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 225, "fields": {"action_time": "2019-04-08T17:44:46.017", "user": 1, "content_type": 29, "object_id": "192", "object_repr": "Poirier - Curviligne fermé (.1 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 226, "fields": {"action_time": "2019-04-08T17:47:10.240", "user": 1, "content_type": 29, "object_id": "467", "object_repr": "Ventre - ATR (.1 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 227, "fields": {"action_time": "2019-04-08T17:47:14.051", "user": 1, "content_type": 29, "object_id": "278", "object_repr": "Assis < (A <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 228, "fields": {"action_time": "2019-04-08T17:47:19.056", "user": 1, "content_type": 29, "object_id": "196", "object_repr": "Kaboom, ATR (1. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 229, "fields": {"action_time": "2019-04-08T17:47:22.411", "user": 1, "content_type": 29, "object_id": "190", "object_repr": "Dos - ATR (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 230, "fields": {"action_time": "2019-04-08T17:47:25.628", "user": 1, "content_type": 29, "object_id": "191", "object_repr": "Dos - ½, ATR (1. 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 231, "fields": {"action_time": "2019-04-08T17:47:29.443", "user": 1, "content_type": 29, "object_id": "189", "object_repr": "4 pattes - ATR (.1 -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 232, "fields": {"action_time": "2019-04-08T18:10:55.234", "user": 1, "content_type": 29, "object_id": "208", "object_repr": "4 pattes - assis (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 233, "fields": {"action_time": "2019-04-08T18:10:58.742", "user": 1, "content_type": 29, "object_id": "423", "object_repr": "4 pattes - Culbute, assis (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 234, "fields": {"action_time": "2019-04-08T18:11:01.592", "user": 1, "content_type": 29, "object_id": "424", "object_repr": "4 pattes - Culbute, dos (.2 - c)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 235, "fields": {"action_time": "2019-04-08T18:11:04.935", "user": 1, "content_type": 29, "object_id": "179", "object_repr": "4 pattes - ½, Assis (A 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 236, "fields": {"action_time": "2019-04-08T18:11:08.052", "user": 1, "content_type": 29, "object_id": "187", "object_repr": "4 pattes - ½, Dos (- 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 237, "fields": {"action_time": "2019-04-08T18:11:13.289", "user": 1, "content_type": 29, "object_id": "380", "object_repr": "4 pattes - avant < (.3 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 238, "fields": {"action_time": "2019-04-08T18:11:18.325", "user": 1, "content_type": 29, "object_id": "387", "object_repr": "4 pattes - avant <, ( (.2 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 239, "fields": {"action_time": "2019-04-08T18:11:22.570", "user": 1, "content_type": 29, "object_id": "207", "object_repr": "4 pattes - avant o (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 240, "fields": {"action_time": "2019-04-08T18:11:25.398", "user": 1, "content_type": 29, "object_id": "206", "object_repr": "4 pattes - avant o, ( (.2 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 241, "fields": {"action_time": "2019-04-08T18:11:28.102", "user": 1, "content_type": 29, "object_id": "388", "object_repr": "4 pattes - avant /, ( (.2 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 242, "fields": {"action_time": "2019-04-08T18:11:31.277", "user": 1, "content_type": 29, "object_id": "181", "object_repr": "4 pattes - ventre (.0 0)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 243, "fields": {"action_time": "2019-04-08T18:11:35.352", "user": 1, "content_type": 29, "object_id": "182", "object_repr": "Debout (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 244, "fields": {"action_time": "2019-04-08T18:11:38.716", "user": 1, "content_type": 29, "object_id": "183", "object_repr": "Rebonds 4 pattes (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 245, "fields": {"action_time": "2019-04-08T18:12:45.783", "user": 1, "content_type": 29, "object_id": "10", "object_repr": "4 pattes (.1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 246, "fields": {"action_time": "2019-04-08T18:12:48.827", "user": 1, "content_type": 29, "object_id": "384", "object_repr": "PO /, 4 pattes (2. - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 247, "fields": {"action_time": "2019-04-08T18:12:51.464", "user": 1, "content_type": 29, "object_id": "219", "object_repr": "PO o, 4 pattes (2. - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 248, "fields": {"action_time": "2019-04-08T18:12:54.754", "user": 1, "content_type": 29, "object_id": "382", "object_repr": "PO <, 4 pattes (2. - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 249, "fields": {"action_time": "2019-04-08T18:12:58.126", "user": 1, "content_type": 29, "object_id": "211", "object_repr": "Plat dos - ½, 4 pattes (- 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 250, "fields": {"action_time": "2019-04-08T18:13:03.289", "user": 1, "content_type": 29, "object_id": "443", "object_repr": "Kaboom avant / + demi, 4 pattes (.2 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 251, "fields": {"action_time": "2019-04-08T18:13:07.575", "user": 1, "content_type": 29, "object_id": "441", "object_repr": "Kaboom avant o + demi, 4 pattes (.2 1 o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 252, "fields": {"action_time": "2019-04-08T18:13:11.098", "user": 1, "content_type": 29, "object_id": "442", "object_repr": "Kaboom avant < + demi, 4 pattes (.2 1 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 253, "fields": {"action_time": "2019-04-08T18:13:13.957", "user": 1, "content_type": 29, "object_id": "217", "object_repr": "Dos - 4 pattes (.2 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 254, "fields": {"action_time": "2019-04-08T18:13:17.114", "user": 1, "content_type": 29, "object_id": "178", "object_repr": "Assis - ½, 4 pattes (- 1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 255, "fields": {"action_time": "2019-04-08T18:13:20.572", "user": 1, "content_type": 29, "object_id": "180", "object_repr": "Assis - 4 pattes (.1 -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_competitive\"]}}]"}}, {"model": "admin.logentry", "pk": 256, "fields": {"action_time": "2019-04-11T18:26:01.987", "user": 1, "content_type": 26, "object_id": "50", "object_repr": "10 - BOT Imposé -10 ans : Assis <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 257, "fields": {"action_time": "2019-04-11T18:26:01.989", "user": 1, "content_type": 26, "object_id": "49", "object_repr": "9 - BOT Imposé -10 ans : ½ debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 258, "fields": {"action_time": "2019-04-11T18:26:01.989", "user": 1, "content_type": 26, "object_id": "48", "object_repr": "8 - BOT Imposé -10 ans : Dos", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 259, "fields": {"action_time": "2019-04-11T18:26:01.990", "user": 1, "content_type": 26, "object_id": "47", "object_repr": "7 - BOT Imposé -10 ans : o", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 260, "fields": {"action_time": "2019-04-11T18:26:01.991", "user": 1, "content_type": 26, "object_id": "46", "object_repr": "6 - BOT Imposé -10 ans : ½ tour", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 261, "fields": {"action_time": "2019-04-11T18:36:32.384", "user": 1, "content_type": 26, "object_id": "55", "object_repr": "10 - BOT Imposé -10 ans : ½ debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 262, "fields": {"action_time": "2019-04-11T18:36:32.386", "user": 1, "content_type": 26, "object_id": "54", "object_repr": "9 - BOT Imposé -10 ans : Dos", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 263, "fields": {"action_time": "2019-04-11T18:36:32.387", "user": 1, "content_type": 26, "object_id": "53", "object_repr": "8 - BOT Imposé -10 ans : o", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 264, "fields": {"action_time": "2019-04-11T18:36:32.388", "user": 1, "content_type": 26, "object_id": "52", "object_repr": "7 - BOT Imposé -10 ans : ½ tour", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 265, "fields": {"action_time": "2019-04-11T18:36:32.388", "user": 1, "content_type": 26, "object_id": "51", "object_repr": "6 - BOT Imposé -10 ans : <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 266, "fields": {"action_time": "2019-04-11T18:36:32.389", "user": 1, "content_type": 26, "object_id": "45", "object_repr": "5 - BOT Imposé -10 ans : Debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 267, "fields": {"action_time": "2019-04-11T18:36:32.390", "user": 1, "content_type": 26, "object_id": "44", "object_repr": "4 - BOT Imposé -10 ans : Assis", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 268, "fields": {"action_time": "2019-04-11T18:36:32.391", "user": 1, "content_type": 26, "object_id": "43", "object_repr": "3 - BOT Imposé -10 ans : <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 269, "fields": {"action_time": "2019-04-12T06:59:12.834", "user": 1, "content_type": 26, "object_id": "68", "object_repr": "12 - BOT Imposé -10 ans : Debout", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 270, "fields": {"action_time": "2019-04-12T06:59:12.836", "user": 1, "content_type": 26, "object_id": "64", "object_repr": "11 - BOT Imposé -10 ans : Assis <", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 271, "fields": {"action_time": "2019-04-12T11:17:58.069", "user": 1, "content_type": 29, "object_id": "182", "object_repr": "Debout (4p) (1. -)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 272, "fields": {"action_time": "2019-04-12T11:18:27.966", "user": 1, "content_type": 26, "object_id": "73", "object_repr": "2 - BOT F4 : Debout", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 273, "fields": {"action_time": "2019-04-12T11:18:53.228", "user": 1, "content_type": 26, "object_id": "42", "object_repr": "2 - BOT Imposé -10 ans : Debout", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 274, "fields": {"action_time": "2019-04-13T10:26:17.751", "user": 1, "content_type": 37, "object_id": "1", "object_repr": "Message object (1)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 275, "fields": {"action_time": "2019-04-13T10:33:08.754", "user": 1, "content_type": 37, "object_id": "2", "object_repr": "Message object (2)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 276, "fields": {"action_time": "2019-04-14T14:27:45.076", "user": 1, "content_type": 37, "object_id": "1", "object_repr": "Message object (1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 277, "fields": {"action_time": "2019-04-14T14:55:23.700", "user": 1, "content_type": 37, "object_id": "2", "object_repr": "Message object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_read\"]}}]"}}, {"model": "admin.logentry", "pk": 278, "fields": {"action_time": "2019-04-15T08:02:43.490", "user": 1, "content_type": 37, "object_id": "2", "object_repr": "Message object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"is_read\"]}}]"}}, {"model": "admin.logentry", "pk": 279, "fields": {"action_time": "2019-04-21T10:09:30.927", "user": 1, "content_type": 12, "object_id": "2", "object_repr": "Portugal (PO)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 280, "fields": {"action_time": "2019-04-21T12:24:46.834", "user": 1, "content_type": 15, "object_id": "3", "object_repr": "Championnat Flamand (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 281, "fields": {"action_time": "2019-04-21T12:26:44.582", "user": 1, "content_type": 15, "object_id": "2", "object_repr": "Championnat FfG (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 282, "fields": {"action_time": "2019-04-22T09:30:57.472", "user": 1, "content_type": 29, "object_id": "141", "object_repr": "Half in trif < (12. 1-1 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageGirl\", \"prerequisite\"]}}]"}}, {"model": "admin.logentry", "pk": 283, "fields": {"action_time": "2019-04-22T09:35:25.283", "user": 1, "content_type": 29, "object_id": "513", "object_repr": "Prog Half In Triffis o (11. 1-- o)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 284, "fields": {"action_time": "2019-04-22T09:38:00.110", "user": 1, "content_type": 29, "object_id": "514", "object_repr": "Prog Half In Triffis < (11. 1-- <)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 285, "fields": {"action_time": "2019-04-22T19:07:48.420", "user": 1, "content_type": 13, "object_id": "2", "object_repr": "Ten Gaerde (Dilbeek)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"nbkm\", \"timing\"]}}]"}}, {"model": "admin.logentry", "pk": 286, "fields": {"action_time": "2019-04-27T08:05:03.298", "user": 1, "content_type": 15, "object_id": "5", "object_repr": "Championnat de belgique (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 287, "fields": {"action_time": "2019-04-27T08:05:21.572", "user": 1, "content_type": 15, "object_id": "5", "object_repr": "Championnat de belgique (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]"}}, {"model": "admin.logentry", "pk": 288, "fields": {"action_time": "2019-04-27T08:05:31.678", "user": 1, "content_type": 15, "object_id": "2", "object_repr": "Championnat FfG (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\", \"dateend\"]}}]"}}, {"model": "admin.logentry", "pk": 289, "fields": {"action_time": "2019-04-27T08:06:14.377", "user": 1, "content_type": 15, "object_id": "5", "object_repr": "Championnat de Belgique (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]"}}, {"model": "admin.logentry", "pk": 290, "fields": {"action_time": "2019-04-27T08:06:31.651", "user": 1, "content_type": 15, "object_id": "3", "object_repr": "Championnat Flamand (à Lillois-Witterzée)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]"}}, {"model": "admin.logentry", "pk": 291, "fields": {"action_time": "2019-04-30T13:42:04.310", "user": 1, "content_type": 20, "object_id": "1", "object_repr": "2018-19", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 292, "fields": {"action_time": "2019-05-02T13:24:58.441", "user": 1, "content_type": 16, "object_id": "4", "object_repr": "Stage (Stg)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 293, "fields": {"action_time": "2019-05-02T20:16:40.797", "user": 1, "content_type": 33, "object_id": "3", "object_repr": "Raschke, Sebastian - 46.600", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 294, "fields": {"action_time": "2019-05-07T13:27:42.618", "user": 1, "content_type": 29, "object_id": "423", "object_repr": "4 pattes - Culbute, assis (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 295, "fields": {"action_time": "2019-05-07T13:27:53.252", "user": 1, "content_type": 29, "object_id": "424", "object_repr": "4 pattes - Culbute, dos (.2 - c)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 296, "fields": {"action_time": "2019-05-07T13:27:57.853", "user": 1, "content_type": 29, "object_id": "380", "object_repr": "4 pattes - avant < (.3 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 297, "fields": {"action_time": "2019-05-07T13:28:07.123", "user": 1, "content_type": 29, "object_id": "387", "object_repr": "4 pattes - avant <, ( (.2 - <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 298, "fields": {"action_time": "2019-05-07T13:28:20.168", "user": 1, "content_type": 29, "object_id": "99", "object_repr": "2 ¾ avant < (.11 --- <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 299, "fields": {"action_time": "2019-05-07T13:29:29.096", "user": 1, "content_type": 29, "object_id": "207", "object_repr": "4 pattes - avant o (.3 - o)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 300, "fields": {"action_time": "2019-05-07T13:29:33.311", "user": 1, "content_type": 29, "object_id": "388", "object_repr": "4 pattes - avant /, ( (.2 - /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 301, "fields": {"action_time": "2019-05-07T13:29:40.911", "user": 1, "content_type": 29, "object_id": "227", "object_repr": "Arrière / + ½ (4. 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 302, "fields": {"action_time": "2019-05-07T13:30:10.070", "user": 1, "content_type": 29, "object_id": "331", "object_repr": "Assis - carper + ½, plat dos (.1 1 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 303, "fields": {"action_time": "2019-05-07T13:30:19.307", "user": 1, "content_type": 29, "object_id": "337", "object_repr": "Assis - carper + vrille et ½, plat dos (.1 3 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 304, "fields": {"action_time": "2019-05-07T13:30:23.317", "user": 1, "content_type": 29, "object_id": "334", "object_repr": "Assis - carper + vrille, ventre (.1 2 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 305, "fields": {"action_time": "2019-05-07T13:30:34.773", "user": 1, "content_type": 29, "object_id": "332", "object_repr": "Assis - ½, plat dos (.1 1 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 306, "fields": {"action_time": "2019-05-07T13:30:40.911", "user": 1, "content_type": 29, "object_id": "338", "object_repr": "Assis - vrille et ½, plat dos (1. 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 307, "fields": {"action_time": "2019-05-07T13:30:48.332", "user": 1, "content_type": 29, "object_id": "324", "object_repr": "Assis - vrille et ½, ventre (.1 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"ageBoy\", \"ageGirl\"]}}]"}}, {"model": "admin.logentry", "pk": 308, "fields": {"action_time": "2019-05-07T16:18:48.533", "user": 1, "content_type": 29, "object_id": "207", "object_repr": "4 pattes - avant o (.3 - o)", "action_flag": 2, "change_message": "[]"}}, {"model": "admin.logentry", "pk": 309, "fields": {"action_time": "2019-05-09T12:43:26.679", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 310, "fields": {"action_time": "2019-05-09T12:56:48.094", "user": 1, "content_type": 9, "object_id": "5", "object_repr": "Salhi, Safwane", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 311, "fields": {"action_time": "2019-05-09T12:59:55.335", "user": 1, "content_type": 26, "object_id": "179", "object_repr": "4 - Safwane's L2 : HIHO o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 312, "fields": {"action_time": "2019-05-09T13:00:00.043", "user": 1, "content_type": 26, "object_id": "180", "object_repr": "5 - Safwane's L2 : Rudy out o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 313, "fields": {"action_time": "2019-05-09T13:00:04.060", "user": 1, "content_type": 26, "object_id": "182", "object_repr": "7 - Safwane's L2 : 2 Back <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 314, "fields": {"action_time": "2019-05-09T13:00:07.852", "user": 1, "content_type": 26, "object_id": "183", "object_repr": "8 - Safwane's L2 : Barani /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 315, "fields": {"action_time": "2019-05-09T13:00:24.187", "user": 1, "content_type": 26, "object_id": "182", "object_repr": "6 - Safwane's L2 : 2 Back <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 316, "fields": {"action_time": "2019-05-09T13:00:26.892", "user": 1, "content_type": 26, "object_id": "183", "object_repr": "7 - Safwane's L2 : Barani /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 317, "fields": {"action_time": "2019-05-09T13:00:28.635", "user": 1, "content_type": 26, "object_id": "184", "object_repr": "8 - Safwane's L2 : 2 Back o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 318, "fields": {"action_time": "2019-05-09T13:00:30.945", "user": 1, "content_type": 26, "object_id": "185", "object_repr": "9 - Safwane's L2 : Out <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 319, "fields": {"action_time": "2019-05-09T13:00:33.200", "user": 1, "content_type": 26, "object_id": "186", "object_repr": "10 - Safwane's L2 : FIFO /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 320, "fields": {"action_time": "2019-05-09T13:01:06.555", "user": 1, "content_type": 26, "object_id": "186", "object_repr": "10 - Safwane's L2 : 2 Back /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 321, "fields": {"action_time": "2019-05-09T13:02:04.376", "user": 1, "content_type": 36, "object_id": "8", "object_repr": "Salhi, Safwane - 2 : Safwane's L2 (Safwane's L2)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 322, "fields": {"action_time": "2019-05-10T07:27:10.476", "user": 1, "content_type": 29, "object_id": "366", "object_repr": "Debout (genoux) (-)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 323, "fields": {"action_time": "2019-05-13T15:19:28.235", "user": 1, "content_type": 9, "object_id": "12", "object_repr": "Jaquet, Martin", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 324, "fields": {"action_time": "2019-05-17T06:03:54.998", "user": 1, "content_type": 26, "object_id": "294", "object_repr": "8 - Rivoal 8 : Avant <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 325, "fields": {"action_time": "2019-05-17T06:14:45.979", "user": 1, "content_type": 28, "object_id": "525", "object_repr": "Rivoal 09 (Rivoal 09)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 326, "fields": {"action_time": "2019-05-17T06:14:48.976", "user": 1, "content_type": 28, "object_id": "524", "object_repr": "Rivoal 08 (Rivoal 08)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 327, "fields": {"action_time": "2019-05-17T06:14:52.161", "user": 1, "content_type": 28, "object_id": "523", "object_repr": "Rivoal 07 (Rivoal 07)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 328, "fields": {"action_time": "2019-05-17T06:14:54.664", "user": 1, "content_type": 28, "object_id": "520", "object_repr": "Rivoal 05 (Rivoal 05)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 329, "fields": {"action_time": "2019-05-17T06:14:57.377", "user": 1, "content_type": 28, "object_id": "517", "object_repr": "Rivoal 02 (Rivoal 02)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 330, "fields": {"action_time": "2019-05-17T06:14:59.543", "user": 1, "content_type": 28, "object_id": "522", "object_repr": "Rivoal 06 (Rivoal 06)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 331, "fields": {"action_time": "2019-05-17T06:15:01.584", "user": 1, "content_type": 28, "object_id": "519", "object_repr": "Rivoal 04 (Rivoal 04)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 332, "fields": {"action_time": "2019-05-17T06:15:04.965", "user": 1, "content_type": 28, "object_id": "518", "object_repr": "Rivoal 03 (Rivoal 03)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 333, "fields": {"action_time": "2019-05-17T06:15:08.856", "user": 1, "content_type": 28, "object_id": "521", "object_repr": "Rivoal 01 (Rivoal 01)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"longLabel\", \"shortLabel\"]}}]"}}, {"model": "admin.logentry", "pk": 334, "fields": {"action_time": "2019-05-17T09:41:15.159", "user": 1, "content_type": 26, "object_id": "371", "object_repr": "3 - Rivoal 14 : Arrière <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 335, "fields": {"action_time": "2019-05-17T09:41:20.296", "user": 1, "content_type": 26, "object_id": "372", "object_repr": "4 - Rivoal 14 : Barani /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 336, "fields": {"action_time": "2019-05-17T09:41:24.112", "user": 1, "content_type": 26, "object_id": "373", "object_repr": "5 - Rivoal 14 : Full", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 337, "fields": {"action_time": "2019-05-17T09:41:28.964", "user": 1, "content_type": 26, "object_id": "374", "object_repr": "6 - Rivoal 14 : Barani <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 338, "fields": {"action_time": "2019-05-17T09:41:33.438", "user": 1, "content_type": 26, "object_id": "375", "object_repr": "7 - Rivoal 14 : Arrière o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 339, "fields": {"action_time": "2019-05-17T09:41:39.403", "user": 1, "content_type": 26, "object_id": "376", "object_repr": "8 - Rivoal 14 : Barani o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 340, "fields": {"action_time": "2019-05-17T09:41:43.079", "user": 1, "content_type": 26, "object_id": "377", "object_repr": "9 - Rivoal 14 : Arrière /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 341, "fields": {"action_time": "2019-05-17T09:41:50.549", "user": 1, "content_type": 26, "object_id": "378", "object_repr": "10 - Rivoal 14 : Out o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 342, "fields": {"action_time": "2019-05-17T09:42:40.800", "user": 1, "content_type": 26, "object_id": "370", "object_repr": "2 - Rivoal 14 : Cody o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 343, "fields": {"action_time": "2019-05-17T09:42:43.953", "user": 1, "content_type": 26, "object_id": "369", "object_repr": "1 - Rivoal 14 : Arrière /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"routine\"]}}]"}}, {"model": "admin.logentry", "pk": 344, "fields": {"action_time": "2019-05-17T09:43:26.196", "user": 1, "content_type": 26, "object_id": "369", "object_repr": "1 - Rivoal 14 : ¾ Arrière /", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 345, "fields": {"action_time": "2019-05-17T10:57:03.551", "user": 1, "content_type": 26, "object_id": "459", "object_repr": "9 - Rivoal 22 : 1 ¾ o", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 346, "fields": {"action_time": "2019-05-17T11:10:36.877", "user": 1, "content_type": 26, "object_id": "515", "object_repr": "5 - Rivoal 28 : Out <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 347, "fields": {"action_time": "2019-05-17T11:33:49.510", "user": 1, "content_type": 26, "object_id": "543", "object_repr": "1 - Rivoal 36 : Triffis <", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"skill\"]}}]"}}, {"model": "admin.logentry", "pk": 348, "fields": {"action_time": "2019-05-21T09:41:39.654", "user": 1, "content_type": 9, "object_id": "1", "object_repr": "Granda Martinez, Noelia", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 349, "fields": {"action_time": "2019-05-21T12:03:09.354", "user": 1, "content_type": 15, "object_id": "17", "object_repr": "GymFed PV1 2018 (à Sint-Gillis-Bij-Dendermonde)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 350, "fields": {"action_time": "2019-05-23T07:29:30.657", "user": 1, "content_type": 29, "object_id": "553", "object_repr": "Miller < (8. 33 <)", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 351, "fields": {"action_time": "2019-05-25T05:27:49.888", "user": 1, "content_type": 14, "object_id": "2", "object_repr": "Lundi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 352, "fields": {"action_time": "2019-05-25T05:29:19.957", "user": 1, "content_type": 14, "object_id": "3", "object_repr": "Mercredi (17:00 à 19:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 353, "fields": {"action_time": "2019-05-25T05:29:33.612", "user": 1, "content_type": 14, "object_id": "4", "object_repr": "Vendredi (17:15 à 19:15)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 354, "fields": {"action_time": "2019-05-25T05:30:17.873", "user": 1, "content_type": 14, "object_id": "5", "object_repr": "Samedi (19:00 à 21:30)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 355, "fields": {"action_time": "2019-05-25T05:30:30.728", "user": 1, "content_type": 14, "object_id": "5", "object_repr": "Samedi (19:00 à 21:30)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 356, "fields": {"action_time": "2019-05-25T14:35:20.519", "user": 1, "content_type": 14, "object_id": "1", "object_repr": "Samedi (10:00 à 12:00)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"gymnasts\"]}}]"}}, {"model": "admin.logentry", "pk": 357, "fields": {"action_time": "2019-05-30T20:59:24.032", "user": 1, "content_type": 29, "object_id": "276", "object_repr": "RBO < (.5 3 <)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"difficulty\"]}}]"}}, {"model": "admin.logentry", "pk": 358, "fields": {"action_time": "2019-05-30T20:59:31.677", "user": 1, "content_type": 29, "object_id": "161", "object_repr": "RBO / (.5 3 /)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"difficulty\"]}}]"}}, {"model": "admin.logentry", "pk": 359, "fields": {"action_time": "2019-06-05T11:29:04.403", "user": 1, "content_type": 39, "object_id": "1", "object_repr": "Event_Participation object (1)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 360, "fields": {"action_time": "2019-06-05T11:29:08.209", "user": 1, "content_type": 39, "object_id": "2", "object_repr": "Event_Participation object (2)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 361, "fields": {"action_time": "2019-06-05T11:29:11.254", "user": 1, "content_type": 39, "object_id": "3", "object_repr": "Event_Participation object (3)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 362, "fields": {"action_time": "2019-06-05T11:29:14.684", "user": 1, "content_type": 39, "object_id": "4", "object_repr": "Event_Participation object (4)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 363, "fields": {"action_time": "2019-06-05T11:29:18.068", "user": 1, "content_type": 39, "object_id": "5", "object_repr": "Event_Participation object (5)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 364, "fields": {"action_time": "2019-06-05T11:29:22.141", "user": 1, "content_type": 39, "object_id": "5", "object_repr": "Event_Participation object (5)", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"rank\"]}}]"}}, {"model": "admin.logentry", "pk": 365, "fields": {"action_time": "2019-07-02T16:34:37.424", "user": 1, "content_type": 36, "object_id": "10", "object_repr": "Raschke, Sebastian - 1 : Sebastian's L1 (Sebastian's L1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 366, "fields": {"action_time": "2019-07-02T16:34:37.427", "user": 1, "content_type": 36, "object_id": "9", "object_repr": "Raschke, Sebastian - 1 : Sebastian's L1 (Sebastian's L1)", "action_flag": 3, "change_message": ""}}, {"model": "admin.logentry", "pk": 367, "fields": {"action_time": "2019-07-02T16:37:03.624", "user": 1, "content_type": 9, "object_id": "11", "object_repr": "Raschke, Sebastian", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"year_of_practice\"]}}]"}}, {"model": "admin.logentry", "pk": 368, "fields": {"action_time": "2021-05-14T15:52:00.048", "user": 1, "content_type": 5, "object_id": "4", "object_repr": "felix_vanye", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 369, "fields": {"action_time": "2021-05-14T15:52:29.932", "user": 1, "content_type": 5, "object_id": "5", "object_repr": "lola_vanmol", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 370, "fields": {"action_time": "2021-05-14T15:53:13.487", "user": 1, "content_type": 5, "object_id": "6", "object_repr": "safwane_salhi", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 371, "fields": {"action_time": "2021-05-14T15:53:39.595", "user": 1, "content_type": 5, "object_id": "7", "object_repr": "romain_scokart", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 372, "fields": {"action_time": "2021-05-14T15:53:59.901", "user": 1, "content_type": 5, "object_id": "8", "object_repr": "sebastian_raschke", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 373, "fields": {"action_time": "2021-05-14T15:54:18.742", "user": 1, "content_type": 5, "object_id": "9", "object_repr": "roswitha_raschke", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 374, "fields": {"action_time": "2021-05-14T15:54:32.925", "user": 1, "content_type": 5, "object_id": "10", "object_repr": "lucas_pesesse", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 375, "fields": {"action_time": "2021-05-14T15:54:47.353", "user": 1, "content_type": 5, "object_id": "11", "object_repr": "pauline_lefevre", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 376, "fields": {"action_time": "2021-05-14T15:55:03.268", "user": 1, "content_type": 5, "object_id": "12", "object_repr": "martin_jacquet", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 377, "fields": {"action_time": "2021-05-14T15:55:17.846", "user": 1, "content_type": 5, "object_id": "13", "object_repr": "noelia_grandamartinez", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 378, "fields": {"action_time": "2021-05-14T15:55:34.427", "user": 1, "content_type": 5, "object_id": "14", "object_repr": "marine_geirnart", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "admin.logentry", "pk": 379, "fields": {"action_time": "2021-05-14T15:56:08.287", "user": 1, "content_type": 5, "object_id": "4", "object_repr": "felix_vanye", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 380, "fields": {"action_time": "2021-05-14T15:56:35.061", "user": 1, "content_type": 5, "object_id": "8", "object_repr": "sebastian_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 381, "fields": {"action_time": "2021-05-14T15:56:42.993", "user": 1, "content_type": 5, "object_id": "11", "object_repr": "pauline_lefevre", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 382, "fields": {"action_time": "2021-05-14T15:56:49.361", "user": 1, "content_type": 5, "object_id": "7", "object_repr": "romain_scokart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 383, "fields": {"action_time": "2021-05-14T15:56:57.734", "user": 1, "content_type": 5, "object_id": "9", "object_repr": "roswitha_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 384, "fields": {"action_time": "2021-05-14T15:57:03.935", "user": 1, "content_type": 5, "object_id": "6", "object_repr": "safwane_salhi", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 385, "fields": {"action_time": "2021-05-14T15:57:12.759", "user": 1, "content_type": 5, "object_id": "13", "object_repr": "noelia_grandamartinez", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 386, "fields": {"action_time": "2021-05-14T15:57:18.990", "user": 1, "content_type": 5, "object_id": "12", "object_repr": "martin_jacquet", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 387, "fields": {"action_time": "2021-05-14T15:57:26.671", "user": 1, "content_type": 5, "object_id": "14", "object_repr": "marine_geirnart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 388, "fields": {"action_time": "2021-05-14T15:57:32.653", "user": 1, "content_type": 5, "object_id": "10", "object_repr": "lucas_pesesse", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 389, "fields": {"action_time": "2021-05-14T15:57:39.134", "user": 1, "content_type": 5, "object_id": "5", "object_repr": "lola_vanmol", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 390, "fields": {"action_time": "2021-05-14T16:03:14.389", "user": 1, "content_type": 5, "object_id": "13", "object_repr": "noelia_grandamartinez", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 391, "fields": {"action_time": "2021-05-14T16:03:29.766", "user": 1, "content_type": 5, "object_id": "7", "object_repr": "romain_scokart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 392, "fields": {"action_time": "2021-05-14T16:03:41.428", "user": 1, "content_type": 5, "object_id": "9", "object_repr": "roswitha_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 393, "fields": {"action_time": "2021-05-14T16:03:52.789", "user": 1, "content_type": 5, "object_id": "6", "object_repr": "safwane_salhi", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 394, "fields": {"action_time": "2021-05-14T16:04:13.290", "user": 1, "content_type": 5, "object_id": "14", "object_repr": "marine_geirnart", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 395, "fields": {"action_time": "2021-05-14T16:04:24.381", "user": 1, "content_type": 5, "object_id": "8", "object_repr": "sebastian_raschke", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]"}}, {"model": "admin.logentry", "pk": 396, "fields": {"action_time": "2021-05-15T14:41:26.828", "user": 1, "content_type": 5, "object_id": "5", "object_repr": "lola_vanmol", "action_flag": 2, "change_message": "[{\"changed\": {\"fields\": [\"Last name\"]}}]"}}, {"model": "admin.logentry", "pk": 397, "fields": {"action_time": "2021-05-16T11:05:40.702", "user": 1, "content_type": 20, "object_id": "2", "object_repr": "2020-21", "action_flag": 1, "change_message": "[{\"added\": {}}]"}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add content type", "content_type": 1, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change content type", "content_type": 1, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete content type", "content_type": 1, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can view content type", "content_type": 1, "codename": "view_contenttype"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can add log entry", "content_type": 2, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can change log entry", "content_type": 2, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can delete log entry", "content_type": 2, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can view log entry", "content_type": 2, "codename": "view_logentry"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can add permission", "content_type": 3, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can change permission", "content_type": 3, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can delete permission", "content_type": 3, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can view permission", "content_type": 3, "codename": "view_permission"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add group", "content_type": 4, "codename": "add_group"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change group", "content_type": 4, "codename": "change_group"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete group", "content_type": 4, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can view group", "content_type": 4, "codename": "view_group"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can add user", "content_type": 5, "codename": "add_user"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can change user", "content_type": 5, "codename": "change_user"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can delete user", "content_type": 5, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can view user", "content_type": 5, "codename": "view_user"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can view session", "content_type": 6, "codename": "view_session"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add Accident", "content_type": 7, "codename": "add_accident"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change Accident", "content_type": 7, "codename": "change_accident"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete Accident", "content_type": 7, "codename": "delete_accident"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can view Accident", "content_type": 7, "codename": "view_accident"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can add CanDo", "content_type": 8, "codename": "add_candorelation"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can change CanDo", "content_type": 8, "codename": "change_candorelation"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can delete CanDo", "content_type": 8, "codename": "delete_candorelation"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can view CanDo", "content_type": 8, "codename": "view_candorelation"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can add Gymnast", "content_type": 9, "codename": "add_gymnast"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can change Gymnast", "content_type": 9, "codename": "change_gymnast"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can delete Gymnast", "content_type": 9, "codename": "delete_gymnast"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can view Gymnast", "content_type": 9, "codename": "view_gymnast"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add ToDo", "content_type": 10, "codename": "add_todorelation"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change ToDo", "content_type": 10, "codename": "change_todorelation"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete ToDo", "content_type": 10, "codename": "delete_todorelation"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can view ToDo", "content_type": 10, "codename": "view_todorelation"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can add Club", "content_type": 11, "codename": "add_club"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can change Club", "content_type": 11, "codename": "change_club"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can delete Club", "content_type": 11, "codename": "delete_club"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can view Club", "content_type": 11, "codename": "view_club"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can add Country", "content_type": 12, "codename": "add_country"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can change Country", "content_type": 12, "codename": "change_country"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can delete Country", "content_type": 12, "codename": "delete_country"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can view Country", "content_type": 12, "codename": "view_country"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add Place", "content_type": 13, "codename": "add_place"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change Place", "content_type": 13, "codename": "change_place"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete Place", "content_type": 13, "codename": "delete_place"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can view Place", "content_type": 13, "codename": "view_place"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can add Course", "content_type": 14, "codename": "add_course"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can change Course", "content_type": 14, "codename": "change_course"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can delete Course", "content_type": 14, "codename": "delete_course"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can view Course", "content_type": 14, "codename": "view_course"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can add Event", "content_type": 15, "codename": "add_event"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can change Event", "content_type": 15, "codename": "change_event"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can delete Event", "content_type": 15, "codename": "delete_event"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can view Event", "content_type": 15, "codename": "view_event"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add Event Type", "content_type": 16, "codename": "add_eventtype"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change Event Type", "content_type": 16, "codename": "change_eventtype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete Event Type", "content_type": 16, "codename": "delete_eventtype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can view Event Type", "content_type": 16, "codename": "view_eventtype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can add Group", "content_type": 17, "codename": "add_group"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can change Group", "content_type": 17, "codename": "change_group"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can delete Group", "content_type": 17, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can view Group", "content_type": 17, "codename": "view_group"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can add Planning Line", "content_type": 18, "codename": "add_planningline"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can change Planning Line", "content_type": 18, "codename": "change_planningline"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can delete Planning Line", "content_type": 18, "codename": "delete_planningline"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can view Planning Line", "content_type": 18, "codename": "view_planningline"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add Round", "content_type": 19, "codename": "add_round"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change Round", "content_type": 19, "codename": "change_round"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete Round", "content_type": 19, "codename": "delete_round"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can view Round", "content_type": 19, "codename": "view_round"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can add Season", "content_type": 20, "codename": "add_season"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can change Season", "content_type": 20, "codename": "change_season"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can delete Season", "content_type": 20, "codename": "delete_season"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can view Season", "content_type": 20, "codename": "view_season"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can add Subgroup", "content_type": 21, "codename": "add_subgroup"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can change Subgroup", "content_type": 21, "codename": "change_subgroup"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can delete Subgroup", "content_type": 21, "codename": "delete_subgroup"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can view Subgroup", "content_type": 21, "codename": "view_subgroup"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add Training", "content_type": 22, "codename": "add_training"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change Training", "content_type": 22, "codename": "change_training"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete Training", "content_type": 22, "codename": "delete_training"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can view Training", "content_type": 22, "codename": "view_training"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can add Indisponibilité", "content_type": 23, "codename": "add_unavailability"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can change Indisponibilité", "content_type": 23, "codename": "change_unavailability"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can delete Indisponibilité", "content_type": 23, "codename": "delete_unavailability"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can view Indisponibilité", "content_type": 23, "codename": "view_unavailability"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can add chrono", "content_type": 24, "codename": "add_chrono"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can change chrono", "content_type": 24, "codename": "change_chrono"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can delete chrono", "content_type": 24, "codename": "delete_chrono"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can view chrono", "content_type": 24, "codename": "view_chrono"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add Educatif", "content_type": 25, "codename": "add_educative"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change Educatif", "content_type": 25, "codename": "change_educative"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete Educatif", "content_type": 25, "codename": "delete_educative"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can view Educatif", "content_type": 25, "codename": "view_educative"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can add routine_ skill", "content_type": 26, "codename": "add_routine_skill"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can change routine_ skill", "content_type": 26, "codename": "change_routine_skill"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can delete routine_ skill", "content_type": 26, "codename": "delete_routine_skill"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can view routine_ skill", "content_type": 26, "codename": "view_routine_skill"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can add Landing", "content_type": 27, "codename": "add_touchposition"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can change Landing", "content_type": 27, "codename": "change_touchposition"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can delete Landing", "content_type": 27, "codename": "delete_touchposition"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can view Landing", "content_type": 27, "codename": "view_touchposition"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add Routine", "content_type": 28, "codename": "add_routine"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change Routine", "content_type": 28, "codename": "change_routine"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete Routine", "content_type": 28, "codename": "delete_routine"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can view Routine", "content_type": 28, "codename": "view_routine"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can add Skill", "content_type": 29, "codename": "add_skill"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can change Skill", "content_type": 29, "codename": "change_skill"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can delete Skill", "content_type": 29, "codename": "delete_skill"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can view Skill", "content_type": 29, "codename": "view_skill"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can add competition", "content_type": 30, "codename": "add_competition"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can change competition", "content_type": 30, "codename": "change_competition"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can delete competition", "content_type": 30, "codename": "delete_competition"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can view competition", "content_type": 30, "codename": "view_competition"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add division", "content_type": 31, "codename": "add_division"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change division", "content_type": 31, "codename": "change_division"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete division", "content_type": 31, "codename": "delete_division"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can view division", "content_type": 31, "codename": "view_division"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can add level", "content_type": 32, "codename": "add_level"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can change level", "content_type": 32, "codename": "change_level"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can delete level", "content_type": 32, "codename": "delete_level"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can view level", "content_type": 32, "codename": "view_level"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can add point", "content_type": 33, "codename": "add_point"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can change point", "content_type": 33, "codename": "change_point"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can delete point", "content_type": 33, "codename": "delete_point"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can view point", "content_type": 33, "codename": "view_point"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add profile", "content_type": 34, "codename": "add_profile"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change profile", "content_type": 34, "codename": "change_profile"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete profile", "content_type": 34, "codename": "delete_profile"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can view profile", "content_type": 34, "codename": "view_profile"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can add Has Routine", "content_type": 35, "codename": "add_hasroutine"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can change Has Routine", "content_type": 35, "codename": "change_hasroutine"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can delete Has Routine", "content_type": 35, "codename": "delete_hasroutine"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can view Has Routine", "content_type": 35, "codename": "view_hasroutine"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can add Has Routine", "content_type": 36, "codename": "add_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can change Has Routine", "content_type": 36, "codename": "change_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can delete Has Routine", "content_type": 36, "codename": "delete_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can view Has Routine", "content_type": 36, "codename": "view_gymnasthasroutine"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add message", "content_type": 37, "codename": "add_message"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change message", "content_type": 37, "codename": "change_message"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete message", "content_type": 37, "codename": "delete_message"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can view message", "content_type": 37, "codename": "view_message"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can add evaluation", "content_type": 38, "codename": "add_evaluation"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can change evaluation", "content_type": 38, "codename": "change_evaluation"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can delete evaluation", "content_type": 38, "codename": "delete_evaluation"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can view evaluation", "content_type": 38, "codename": "view_evaluation"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can add event_ participation", "content_type": 39, "codename": "add_event_participation"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can change event_ participation", "content_type": 39, "codename": "change_event_participation"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can delete event_ participation", "content_type": 39, "codename": "delete_event_participation"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can view event_ participation", "content_type": 39, "codename": "view_event_participation"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add routine skill", "content_type": 26, "codename": "add_routineskill"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change routine skill", "content_type": 26, "codename": "change_routineskill"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete routine skill", "content_type": 26, "codename": "delete_routineskill"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can view routine skill", "content_type": 26, "codename": "view_routineskill"}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$320000$Q0CFKB6Scl5TGjcdOnFOrA$cToS8ShOJjp/yfl4r3a3+UWPrEg8c8z9ldBgdUWQJ70=", "last_login": "2022-01-13T21:58:44.766", "is_superuser": true, "username": "Gregory", "first_name": "Gregory", "last_name": "Trullemans", "email": "gregory@flyingacrobaticstrampoline.be", "is_staff": true, "is_active": true, "date_joined": "2019-03-16T16:59:22", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$120000$0muwiBmI2PGm$jMvtA92u/ao+l+2z9DKJ9nNNCgWBjqwR4lxuCdnpj8E=", "last_login": null, "is_superuser": true, "username": "Morgane", "first_name": "Morgane", "last_name": "Petit", "email": "morgane@flyingacrobaticstrampoline.be", "is_staff": true, "is_active": true, "date_joined": "2019-03-17T07:55:28", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 3, "fields": {"password": "pbkdf2_sha256$120000$a3DrPGLiEP43$7uxCc9GdcpvKBGIG1g+v95Tp6P8xps24W9HF+aYuKQA=", "last_login": null, "is_superuser": false, "username": "Stéphane", "first_name": "Stéphane", "last_name": "Gilles", "email": "sgilles@hotmail.be", "is_staff": true, "is_active": true, "date_joined": "2019-03-17T07:56:24", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 4, "fields": {"password": "pbkdf2_sha256$260000$x6VvhIhcei1vI3IKdRyxik$oEdBsh+13poVd52wXT4JXaTJL1BJEc4di82JnT78Ys4=", "last_login": null, "is_superuser": false, "username": "felix_vanye", "first_name": "Felix", "last_name": "Vanye", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:51:59", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 5, "fields": {"password": "pbkdf2_sha256$260000$9GpNFQsVosDtH2LNmIJ8qV$HR0tHGCSjee+JwU06dpwGmh/wRFhYI//JokATO0pWbE=", "last_login": null, "is_superuser": false, "username": "lola_vanmol", "first_name": "Lola", "last_name": "Van Mol", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:52:29", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 6, "fields": {"password": "pbkdf2_sha256$260000$ngJJ4HPC1J25R0a7LQnzOr$Wh76DRYn7xLPy7xmq+4DFz8fFfFirPF9PEEYBgfxQbs=", "last_login": null, "is_superuser": false, "username": "safwane_salhi", "first_name": "Safwane", "last_name": "Salhi", "email": "Salhi.safwane.b@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:53:13", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 7, "fields": {"password": "pbkdf2_sha256$260000$wmF8GO5iJvBKCwGaPtj6sy$Jqrq/cJDGLcwVQe15HOXvfWCqWnN/qP2aOLlvNyD/YE=", "last_login": null, "is_superuser": false, "username": "romain_scokart", "first_name": "Romain", "last_name": "Scokart", "email": "rscokart@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:53:39", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 8, "fields": {"password": "pbkdf2_sha256$260000$MfuBWGlOD1YM4WFOr5vGYe$C9BR5JLTdeF5YCXY/3rC6elNzDw8hIxBzV2/kCGbsRc=", "last_login": null, "is_superuser": false, "username": "sebastian_raschke", "first_name": "Sebastian", "last_name": "Raschke", "email": "sebastianr1401@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:53:59", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 9, "fields": {"password": "pbkdf2_sha256$260000$PbY54jYQXwkFNxHZakesNj$q44yCuMz5T0jcy3N+MzU+l7XQgV87S54TpPx0KlraJI=", "last_login": null, "is_superuser": false, "username": "roswitha_raschke", "first_name": "Raschke", "last_name": "Roswitha", "email": "roswithar7@hotmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:54:18", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 10, "fields": {"password": "pbkdf2_sha256$260000$ML4IbLu6pGElbgyaNJuNOd$UME4WOkpLaA4DKbJO58FKWMEofg2FFnU2hxsoAx2Kvw=", "last_login": null, "is_superuser": false, "username": "lucas_pesesse", "first_name": "Lucas", "last_name": "Pesesse", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:54:32", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$260000$gVMnCEruOB11nwnJKxPUPJ$HaI9zL8jSaLUP7UBp2M6qivNn8FDamu0GJnHV90/vjc=", "last_login": null, "is_superuser": false, "username": "pauline_lefevre", "first_name": "Pauline", "last_name": "Lefevre", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:54:47", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$260000$lbbyHUcdzkVJpohnciw5Fn$aEB4uORHSaFtNdjPtodxqf+rtH5sZxFSLKEBLM3xLxY=", "last_login": null, "is_superuser": false, "username": "martin_jacquet", "first_name": "Martin", "last_name": "Jacquet", "email": "", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:55:03", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 13, "fields": {"password": "pbkdf2_sha256$260000$9fuHufdHZQOInAoKCnO7NV$MsmkmexeiDoYh7p+askl8C7iKyzLea0HQ9JE+U7o2z8=", "last_login": null, "is_superuser": false, "username": "noelia_grandamartinez", "first_name": "Noelia", "last_name": "Granda Martinez", "email": "grandamartineznoelia@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:55:17", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 14, "fields": {"password": "pbkdf2_sha256$260000$xGkYbKwpF8MPQ4gmRUNQ3f$NhAC9Wi12E0LkzdAbkhZSqKiM+ygteNOg7aZ6dsxXjQ=", "last_login": null, "is_superuser": false, "username": "marine_geirnart", "first_name": "Marine", "last_name": "Geirnart", "email": "marinegeirnaert7@gmail.com", "is_staff": false, "is_active": true, "date_joined": "2021-05-14T15:55:34", "groups": [], "user_permissions": []}}, {"model": "sessions.session", "pk": "0b7iex8dowh56dmhkxjbye8l1bgv2r34", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1mqqzO:7jG_BRZqSYRZxGaXCIQGYBhZGrv_QkYnIxfCOTVk51M", "expire_date": "2021-12-11T06:15:10.386"}}, {"model": "sessions.session", "pk": "1r972y2vquaffsi1xewrp1me4fak6l72", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1mq8LY:2cILgY3Or-ARuJ3XU8le_XyvZ0RT3s1WqKWam87kClM", "expire_date": "2021-12-09T06:35:04.877"}}, {"model": "sessions.session", "pk": "23paed2lm4tjf7nqq1fvqjxmu0sr2t11", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-04T17:54:02.740"}}, {"model": "sessions.session", "pk": "2addouibgkwkf51yq4ock7eaku5r30lx", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1liBll:chJxtG4LUz61hin8Mi1DfPAKN5NM1QnA-VwcgNP_XGc", "expire_date": "2021-05-30T08:05:01.449"}}, {"model": "sessions.session", "pk": "6op83nravuhc2jzigo96af35xvop83kb", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-08T18:44:23.494"}}, {"model": "sessions.session", "pk": "6t07699f0drrljsc8ryi13bvnxcqmi4t", "fields": {"session_data": "MjNhYjJiZjQwYjVmM2IyYjU4ODgwYjg4MThhM2QxOTE1Y2MxZjQ3YTp7fQ==", "expire_date": "2019-04-07T14:39:21.947"}}, {"model": "sessions.session", "pk": "82mu8wir4cr41xqdvmtwq6r8l2j4iorp", "fields": {"session_data": "YzFkNzExYzExYTBiOTU0YzExZDZjYmVhZjQxMGMyMmI5ZDY5YTIzMTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoiMSIsInRlbXBsYXRlIjowLCJzaWRlYmFyIjozLCJjbHViaWQiOm51bGx9", "expire_date": "2019-04-08T07:46:29.604"}}, {"model": "sessions.session", "pk": "ayk18p51v90021i0pd1ip2tgllds0cks", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-16T14:40:10.608"}}, {"model": "sessions.session", "pk": "bcbeh5zl9b58nlij3n2dovqkqks9tf3f", "fields": {"session_data": ".eJxVjktuxCAQRO_Sa2SBDQZ7mX3OgGhoxyQMHvFZRXP3sSUvkmV9Xql-wbredtsrFRsDrCCA_fXQ-R_KVxC-Xf46Bn_kViIOV2W40zp8HoHSx939N7C7up-0E8i12ALOmlDJaZz5HEhJ9HI6xWT4IrRzowyLFsqobTRaeT7iMitvvDlHn-XYYqLrpWDQ6PFMrhGsnEGNgdAVWCWDWO0t7SPmuEU6gVY6MfCp44XnntLrDSOBUmY:1n887I:4l-jxgYxXt0VN84knkc2WNfvuoRhgknNGv2wUGBLI8w", "expire_date": "2022-01-27T21:58:44.771"}}, {"model": "sessions.session", "pk": "bij6mikfracjnh93p9cko574fd25gh5p", "fields": {"session_data": "NTc1MTA0NTg0MTJlYTg2OTFmZjM4OTE5NTlhMjZiZGYyZmJkOTAyYjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-07-16T16:44:15.299"}}, {"model": "sessions.session", "pk": "civtk0g6oeg5cn4ilr8ps5th8ju8yfgu", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-07T07:33:03.984"}}, {"model": "sessions.session", "pk": "cv5r4rgjwdhf21za0jeau6050f6vn2f0", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1mtpkF:gUSWOt5MSbFCn0jjMmRudWaxPkXzKWCS6mv3VOqWkC0", "expire_date": "2021-12-19T11:31:51.472"}}, {"model": "sessions.session", "pk": "dh8b9238kvc8o2ite70psu7ipmts6nrx", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-05T14:32:59.868"}}, {"model": "sessions.session", "pk": "fswheipsozsl377f4aiozjf6zqhj18sp", "fields": {"session_data": "MjNhYjJiZjQwYjVmM2IyYjU4ODgwYjg4MThhM2QxOTE1Y2MxZjQ3YTp7fQ==", "expire_date": "2019-04-07T14:38:49.818"}}, {"model": "sessions.session", "pk": "j0pum843f5301s0p8lc22wdiln94nuu9", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-24T16:48:54.109"}}, {"model": "sessions.session", "pk": "ja2rwvwyoblryemmt8nehgdpuo4ysphx", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1lhCBn:Lvj-vjeOGAjm0OrJFZS3HP_pMf08OQUd5HNikC1u3MA", "expire_date": "2021-05-27T14:19:47.495"}}, {"model": "sessions.session", "pk": "jwl4q1rodgkywh9cky07l02lcie2fvfr", "fields": {"session_data": "MDQxMzdhNTc1YTI4NGUxYzJlOGQ5MzE4MjFiYWMyZWMxOWRiOTkwMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-06T15:10:46.298"}}, {"model": "sessions.session", "pk": "kouvkyowlwjngjz5i7twuud1s50f6mv7", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-19T07:35:52.293"}}, {"model": "sessions.session", "pk": "kpcotl82b4or7ll96259vl80w00e90cg", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1mq89H:L3nmlw6Vy__Yh6V01alJXlLCzcyhlP7BWw5A9vZ7it0", "expire_date": "2021-12-09T06:22:23.697"}}, {"model": "sessions.session", "pk": "kr02sxsqff3noe58cm9iw7ys7mwwr498", "fields": {"session_data": "NjgwMmNkODRkZjc3MWIwOGUzNmZhZmMwNjA0N2U5NzBiZDY1ZDg4MTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwidGVtcGxhdGUiOjAsInNpZGViYXIiOjMsImNsdWJpZCI6bnVsbH0=", "expire_date": "2019-04-07T17:27:03.695"}}, {"model": "sessions.session", "pk": "llcf8k7qkv9qn0syin0344evxfs3xtpo", "fields": {"session_data": ".eJxVjMEOwiAQRP-FsyGwXUvx6N1vIAu7SNXQpLQn47_bJj1oMqd5b-atAq1LCWuTOYysLsqq028XKT2l7oAfVO-TTlNd5jHqXdEHbfo2sbyuh_t3UKiVbR3BmtRHQCD2g2F0lChj9uzP2bguWzKCvQV0nRMcxJKHLd6AIUxOfb7fEjdi:1liFBj:KREIK8GY_B3mkWW6f6K81Ha8xNhBa114C4av6Aa1KEw", "expire_date": "2021-05-30T11:44:03.487"}}, {"model": "sessions.session", "pk": "qjhbaubem5k812l44vr5xcr1nsdf351i", "fields": {"session_data": "M2NkNDYyOTJhMDRkMzY3YWZmYzQyMGMwMzE2NDA5OTU0YTZhNzIxOTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoiMSIsInRlbXBsYXRlIjowLCJzaWRlYmFyIjo0LCJjbHViaWQiOm51bGx9", "expire_date": "2019-04-10T08:30:38.010"}}, {"model": "sessions.session", "pk": "qqg7cnsbtie0ts9xjl5xto005mmqxu7h", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-05-29T19:03:34.966"}}, {"model": "sessions.session", "pk": "t617fv72solfdrt7svjdt7m6o9i809h9", "fields": {"session_data": "ZDRhNmU4NGVlMWNmMmIzMzY3YmVlYjZkNTEyYThmMjBhOTI3YTliNzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsLCJpc19zaWRlYmFyX21pbmlmaWVkIjp0cnVlfQ==", "expire_date": "2019-05-27T15:26:56.991"}}, {"model": "sessions.session", "pk": "u21qz3oehhjpz9wrvopabrtfu11eugrj", "fields": {"session_data": "NTZhMDEzZTFhNzg4ZjUzOWJjNTA3MThlMGQxMjQ5ZmUzOTIzN2I4NDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-28T16:50:11.403"}}, {"model": "sessions.session", "pk": "u2vzobd0c56za64xvtz6uhrr7mytln39", "fields": {"session_data": "NDRjYzNlYmZmMDc2YWMxNDUzYTUwMmE1NmQ1MzJmMWJlZTgyM2ZjNjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6MywiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-09T19:51:33.058"}}, {"model": "sessions.session", "pk": "wpr1lztsf4ipc3jh4adv8tvm2bkwli04", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-04T20:12:35.361"}}, {"model": "sessions.session", "pk": "xmubh0d5qev35w6p2dyskqhxmgfo8ndf", "fields": {"session_data": "OTdjMjdlNTcwMGYyMmRhMTQwZDQ0N2M2ODRjYWJiNDI0ZGMyZWVlMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MSwic2lkZWJhciI6NCwiaXNfc2lkZWJhcl9taW5pZmllZCI6dHJ1ZSwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-06-04T20:11:26.805"}}, {"model": "sessions.session", "pk": "xncx1jdqwhwz2bt8fpvk6hu7nyqhk0s5", "fields": {"session_data": "NTZhMDEzZTFhNzg4ZjUzOWJjNTA3MThlMGQxMjQ5ZmUzOTIzN2I4NDp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIxNTljZjljNGM3NDhmYWNhM2Y0NWQ4Y2JiZjM4MGQ5MmY0MTRjNDQ2IiwicHJvZmlsZWlkIjoxLCJ0ZW1wbGF0ZSI6MCwic2lkZWJhciI6NCwiY2x1YmlkIjpudWxsfQ==", "expire_date": "2019-04-22T18:17:21.821"}}, {"model": "sessions.session", "pk": "ytgz1nrw4ffcbyts805hk8skdyfzh76z", "fields": {"session_data": ".eJxVjr2OwyAQhN9la2QBISG4TJ9nQAssZy4ER_xUUd49tuTiTppmZ-Yb7Rssjr7Y0ajaFGAGAeyv59A_qOxB-MXys05-Lb0mN-2V6UjbdF8D5dvR_TewYFs22knB_cVJJTGYKw9Ko8eoognmHLk-RYGc1EVIpU-a1JUEGrnJcMlReb2NvuoaU6b9S8Gg0_OVsRPMnEFLgRxWmBWD1Oxx2mcqKSbagF4HMfB5uB0vI-fPF17bUuQ:1lml2r:l038vb5O8TCuQOgnWwVm097viDD3RTrecpNPlfkh7mg", "expire_date": "2021-06-11T22:33:33.749"}}, {"model": "people.gymnast", "pk": 1, "fields": {"content": "Arrête toi dès qu'une douleur au mollet se fait sentir.", "birthdate": "2003-01-28", "gender": 1, "niss": "03012824878", "address": "Rue De Coeurcq, 79", "postal": "1480", "city": "Tubize", "phone": null, "gsm": "0472495888", "federation_id": "66196", "gsm_main_responsible": "0470937641", "email_main_responsible": null, "gsm_second_responsible": "0471663470", "email_second_responsible": "noa-noelia@hotmail.com", "orientation": 0, "user": 13, "trainer": 1, "club": 1, "picture": "noelia.jpg", "year_of_practice": 8, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 2, "fields": {"content": "", "birthdate": "2007-07-19", "gender": 0, "niss": null, "address": "Rue du radoux, 98", "postal": "1430", "city": "Bierghes", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0494277453", "email_main_responsible": null, "gsm_second_responsible": "0494277583", "email_second_responsible": "san.deleu@gmail.com", "orientation": null, "user": 10, "trainer": 2, "club": 1, "picture": "Lucasljpg", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 3, "fields": {"content": "", "birthdate": "2001-12-30", "gender": 0, "niss": null, "address": "Chemin de Wisbech, 15", "postal": "1430", "city": "Quenast", "phone": null, "gsm": "0488195678", "federation_id": null, "gsm_main_responsible": "0485897973", "email_main_responsible": null, "gsm_second_responsible": "0486307558", "email_second_responsible": "val.mertens@gmail.com", "orientation": null, "user": 7, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 4, "fields": {"content": "", "birthdate": "1996-05-07", "gender": 1, "niss": null, "address": null, "postal": null, "city": null, "phone": null, "gsm": "0470442024", "federation_id": null, "gsm_main_responsible": null, "email_main_responsible": null, "gsm_second_responsible": null, "email_second_responsible": "monika_raschke@yahoo.de", "orientation": null, "user": 9, "trainer": 1, "club": 2, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 5, "fields": {"content": "", "birthdate": "2001-05-30", "gender": 0, "niss": null, "address": "Rue De La Briqueterie, 5", "postal": "1480", "city": "Tubize", "phone": null, "gsm": "0485183267", "federation_id": null, "gsm_main_responsible": "0477298629", "email_main_responsible": "salhi.yahya@gmail.com", "gsm_second_responsible": "0485427606", "email_second_responsible": "sabina.buonvivere@isbbt.be", "orientation": 1, "user": 6, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 9, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 6, "fields": {"content": "", "birthdate": "2007-08-29", "gender": 1, "niss": null, "address": "Rue Grand-mère, 6", "postal": "1421", "city": "Ophain", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0476680449", "email_main_responsible": "amiral1969@hotmail.com", "gsm_second_responsible": "0475659922", "email_second_responsible": "eloirmuriel@gmail.com", "orientation": null, "user": 5, "trainer": 2, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 7, "fields": {"content": "", "birthdate": "2007-05-21", "gender": 0, "niss": null, "address": "Chaussée d'Ophain, 121", "postal": "1420", "city": "Braine-l'Alleud", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0478675942", "email_main_responsible": null, "gsm_second_responsible": "0476786285", "email_second_responsible": "laetitiavanye@gmail.com", "orientation": null, "user": 4, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 8, "fields": {"content": "", "birthdate": "2010-09-18", "gender": 1, "niss": null, "address": "Rue des archers, 50a", "postal": "7090", "city": "Braine-le-comte", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0472873019", "email_main_responsible": null, "gsm_second_responsible": "0473608197", "email_second_responsible": "vdcarine@hotmail.com", "orientation": null, "user": 11, "trainer": 2, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 9, "fields": {"content": "", "birthdate": "2002-11-12", "gender": 1, "niss": null, "address": "Clos du Val de l'Écossais, 27", "postal": "1420", "city": "Braine-l'Alleud", "phone": null, "gsm": "0485696624", "federation_id": null, "gsm_main_responsible": "0485814619", "email_main_responsible": "Daniel@isea.tc", "gsm_second_responsible": "0478523543", "email_second_responsible": "evelyne.gallet@hotmail.com", "orientation": 1, "user": 14, "trainer": 1, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 11, "fields": {"content": "", "birthdate": "1999-01-14", "gender": 0, "niss": null, "address": null, "postal": null, "city": null, "phone": null, "gsm": "0476020907", "federation_id": null, "gsm_main_responsible": null, "email_main_responsible": null, "gsm_second_responsible": null, "email_second_responsible": "monika_raschke@yahoo.de", "orientation": 1, "user": 8, "trainer": 1, "club": 2, "picture": "", "year_of_practice": 14, "created_at": "2019-05-09T08:05:24.132"}}, {"model": "people.gymnast", "pk": 12, "fields": {"content": "", "birthdate": "2006-07-18", "gender": 0, "niss": null, "address": "Avenue du taillis, 20", "postal": "1470", "city": "Genappe", "phone": null, "gsm": null, "federation_id": null, "gsm_main_responsible": "0496121079", "email_main_responsible": null, "gsm_second_responsible": "0473119542", "email_second_responsible": "marie-noelle.rainchon@bnpparibasfortis.com", "orientation": 0, "user": 12, "trainer": 2, "club": 1, "picture": "", "year_of_practice": 0, "created_at": "2019-05-13T15:19:28.234"}}, {"model": "people.accident", "pk": 1, "fields": {"content": "Test d'interface !", "gymnast": 1, "educative": 270, "date": "2019-01-01"}}, {"model": "people.accident", "pk": 2, "fields": {"content": "test de l'interface graphique.", "gymnast": 1, "educative": 181, "date": "2019-04-01"}}, {"model": "people.accident", "pk": 3, "fields": {"content": "test d'ajout d'accident (29-04)", "gymnast": 1, "educative": 116, "date": "2019-05-04"}}, {"model": "people.accident", "pk": 4, "fields": {"content": "A oublié mon anniversaire (test de 29 avril)", "gymnast": 1, "educative": 2, "date": "2019-02-05"}}, {"model": "people.accident", "pk": 5, "fields": {"content": "Test sons forcing du format de date.", "gymnast": 1, "educative": 66, "date": "2019-03-11"}}, {"model": "people.accident", "pk": 6, "fields": {"content": "Description à venir", "gymnast": 7, "educative": 46, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 1, "fields": {"gymnast": 1, "educative": 335, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 2, "fields": {"gymnast": 1, "educative": 218, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 3, "fields": {"gymnast": 1, "educative": 328, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 4, "fields": {"gymnast": 1, "educative": 262, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 5, "fields": {"gymnast": 1, "educative": 2, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 6, "fields": {"gymnast": 1, "educative": 183, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 7, "fields": {"gymnast": 1, "educative": 28, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 8, "fields": {"gymnast": 1, "educative": 33, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 9, "fields": {"gymnast": 1, "educative": 184, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 10, "fields": {"gymnast": 1, "educative": 256, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 11, "fields": {"gymnast": 1, "educative": 366, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 12, "fields": {"gymnast": 1, "educative": 459, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 13, "fields": {"gymnast": 1, "educative": 461, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 14, "fields": {"gymnast": 1, "educative": 462, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 15, "fields": {"gymnast": 1, "educative": 185, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 16, "fields": {"gymnast": 1, "educative": 318, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 17, "fields": {"gymnast": 1, "educative": 457, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 18, "fields": {"gymnast": 1, "educative": 255, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 19, "fields": {"gymnast": 1, "educative": 14, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 20, "fields": {"gymnast": 1, "educative": 460, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 21, "fields": {"gymnast": 1, "educative": 182, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 22, "fields": {"gymnast": 1, "educative": 5, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 23, "fields": {"gymnast": 1, "educative": 10, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 24, "fields": {"gymnast": 1, "educative": 424, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 25, "fields": {"gymnast": 1, "educative": 387, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 26, "fields": {"gymnast": 1, "educative": 200, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 27, "fields": {"gymnast": 1, "educative": 323, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 28, "fields": {"gymnast": 1, "educative": 320, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 29, "fields": {"gymnast": 1, "educative": 321, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 30, "fields": {"gymnast": 1, "educative": 322, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 31, "fields": {"gymnast": 1, "educative": 4, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 32, "fields": {"gymnast": 1, "educative": 1, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 33, "fields": {"gymnast": 1, "educative": 319, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 34, "fields": {"gymnast": 1, "educative": 456, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 35, "fields": {"gymnast": 1, "educative": 454, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 36, "fields": {"gymnast": 1, "educative": 29, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 37, "fields": {"gymnast": 1, "educative": 391, "date": "2019-03-23"}}, {"model": "people.candorelation", "pk": 38, "fields": {"gymnast": 1, "educative": 181, "date": "2019-03-24"}}, {"model": "people.candorelation", "pk": 39, "fields": {"gymnast": 1, "educative": 186, "date": "2019-03-24"}}, {"model": "people.candorelation", "pk": 40, "fields": {"gymnast": 5, "educative": 2, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 41, "fields": {"gymnast": 5, "educative": 28, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 42, "fields": {"gymnast": 5, "educative": 74, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 43, "fields": {"gymnast": 5, "educative": 97, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 44, "fields": {"gymnast": 5, "educative": 96, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 45, "fields": {"gymnast": 5, "educative": 136, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 46, "fields": {"gymnast": 5, "educative": 243, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 47, "fields": {"gymnast": 5, "educative": 244, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 48, "fields": {"gymnast": 5, "educative": 185, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 49, "fields": {"gymnast": 5, "educative": 318, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 50, "fields": {"gymnast": 5, "educative": 256, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 51, "fields": {"gymnast": 5, "educative": 4, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 52, "fields": {"gymnast": 5, "educative": 5, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 53, "fields": {"gymnast": 5, "educative": 1, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 54, "fields": {"gymnast": 5, "educative": 29, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 55, "fields": {"gymnast": 5, "educative": 10, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 56, "fields": {"gymnast": 5, "educative": 366, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 57, "fields": {"gymnast": 5, "educative": 255, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 58, "fields": {"gymnast": 5, "educative": 3, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 59, "fields": {"gymnast": 5, "educative": 264, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 60, "fields": {"gymnast": 5, "educative": 257, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 61, "fields": {"gymnast": 5, "educative": 269, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 62, "fields": {"gymnast": 5, "educative": 267, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 63, "fields": {"gymnast": 5, "educative": 68, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 64, "fields": {"gymnast": 5, "educative": 265, "date": "2019-05-10"}}, {"model": "people.candorelation", "pk": 65, "fields": {"gymnast": 5, "educative": 202, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 66, "fields": {"gymnast": 5, "educative": 331, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 67, "fields": {"gymnast": 5, "educative": 330, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 68, "fields": {"gymnast": 5, "educative": 332, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 69, "fields": {"gymnast": 5, "educative": 337, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 70, "fields": {"gymnast": 5, "educative": 336, "date": "2019-05-11"}}, {"model": "people.candorelation", "pk": 71, "fields": {"gymnast": 6, "educative": 2, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 72, "fields": {"gymnast": 9, "educative": 2, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 73, "fields": {"gymnast": 6, "educative": 183, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 74, "fields": {"gymnast": 6, "educative": 459, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 75, "fields": {"gymnast": 6, "educative": 366, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 76, "fields": {"gymnast": 6, "educative": 461, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 77, "fields": {"gymnast": 6, "educative": 462, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 78, "fields": {"gymnast": 6, "educative": 184, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 79, "fields": {"gymnast": 6, "educative": 185, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 80, "fields": {"gymnast": 6, "educative": 457, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 81, "fields": {"gymnast": 6, "educative": 256, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 82, "fields": {"gymnast": 6, "educative": 28, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 83, "fields": {"gymnast": 6, "educative": 10, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 84, "fields": {"gymnast": 6, "educative": 4, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 85, "fields": {"gymnast": 6, "educative": 3, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 86, "fields": {"gymnast": 6, "educative": 5, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 87, "fields": {"gymnast": 6, "educative": 14, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 88, "fields": {"gymnast": 6, "educative": 1, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 89, "fields": {"gymnast": 6, "educative": 29, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 90, "fields": {"gymnast": 6, "educative": 456, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 91, "fields": {"gymnast": 6, "educative": 454, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 92, "fields": {"gymnast": 6, "educative": 255, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 93, "fields": {"gymnast": 6, "educative": 182, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 94, "fields": {"gymnast": 6, "educative": 319, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 95, "fields": {"gymnast": 6, "educative": 323, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 96, "fields": {"gymnast": 8, "educative": 179, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 97, "fields": {"gymnast": 8, "educative": 181, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 98, "fields": {"gymnast": 8, "educative": 453, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 99, "fields": {"gymnast": 8, "educative": 178, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 100, "fields": {"gymnast": 8, "educative": 278, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 101, "fields": {"gymnast": 6, "educative": 382, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 102, "fields": {"gymnast": 6, "educative": 210, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 103, "fields": {"gymnast": 9, "educative": 192, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 104, "fields": {"gymnast": 9, "educative": 34, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 105, "fields": {"gymnast": 9, "educative": 207, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 106, "fields": {"gymnast": 9, "educative": 100, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 107, "fields": {"gymnast": 12, "educative": 37, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 108, "fields": {"gymnast": 6, "educative": 102, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 109, "fields": {"gymnast": 6, "educative": 39, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 110, "fields": {"gymnast": 9, "educative": 328, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 111, "fields": {"gymnast": 9, "educative": 329, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 112, "fields": {"gymnast": 9, "educative": 189, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 113, "fields": {"gymnast": 12, "educative": 328, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 114, "fields": {"gymnast": 12, "educative": 329, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 115, "fields": {"gymnast": 12, "educative": 189, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 116, "fields": {"gymnast": 9, "educative": 188, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 117, "fields": {"gymnast": 9, "educative": 383, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 118, "fields": {"gymnast": 12, "educative": 380, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 119, "fields": {"gymnast": 12, "educative": 211, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 120, "fields": {"gymnast": 8, "educative": 456, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 121, "fields": {"gymnast": 8, "educative": 454, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 122, "fields": {"gymnast": 8, "educative": 187, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 123, "fields": {"gymnast": 8, "educative": 199, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 124, "fields": {"gymnast": 6, "educative": 9, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 125, "fields": {"gymnast": 9, "educative": 22, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 126, "fields": {"gymnast": 9, "educative": 217, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 127, "fields": {"gymnast": 9, "educative": 104, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 128, "fields": {"gymnast": 9, "educative": 343, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 129, "fields": {"gymnast": 12, "educative": 203, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 130, "fields": {"gymnast": 12, "educative": 7, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 131, "fields": {"gymnast": 12, "educative": 218, "date": "2019-05-13"}}, {"model": "people.candorelation", "pk": 132, "fields": {"gymnast": 5, "educative": 459, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 133, "fields": {"gymnast": 5, "educative": 461, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 134, "fields": {"gymnast": 5, "educative": 462, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 135, "fields": {"gymnast": 5, "educative": 183, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 136, "fields": {"gymnast": 5, "educative": 184, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 137, "fields": {"gymnast": 5, "educative": 457, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 138, "fields": {"gymnast": 5, "educative": 460, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 139, "fields": {"gymnast": 5, "educative": 391, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 140, "fields": {"gymnast": 5, "educative": 454, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 141, "fields": {"gymnast": 5, "educative": 322, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 142, "fields": {"gymnast": 5, "educative": 266, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 143, "fields": {"gymnast": 5, "educative": 320, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 144, "fields": {"gymnast": 5, "educative": 200, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 145, "fields": {"gymnast": 5, "educative": 14, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 146, "fields": {"gymnast": 5, "educative": 424, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 147, "fields": {"gymnast": 5, "educative": 182, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 148, "fields": {"gymnast": 5, "educative": 323, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 149, "fields": {"gymnast": 5, "educative": 456, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 150, "fields": {"gymnast": 5, "educative": 181, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 151, "fields": {"gymnast": 5, "educative": 259, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 152, "fields": {"gymnast": 5, "educative": 392, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 153, "fields": {"gymnast": 5, "educative": 126, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 154, "fields": {"gymnast": 5, "educative": 180, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 155, "fields": {"gymnast": 5, "educative": 69, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 156, "fields": {"gymnast": 5, "educative": 15, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 157, "fields": {"gymnast": 5, "educative": 260, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 158, "fields": {"gymnast": 5, "educative": 11, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 159, "fields": {"gymnast": 5, "educative": 27, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 160, "fields": {"gymnast": 5, "educative": 26, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 161, "fields": {"gymnast": 5, "educative": 44, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 162, "fields": {"gymnast": 5, "educative": 48, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 163, "fields": {"gymnast": 5, "educative": 50, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 164, "fields": {"gymnast": 5, "educative": 154, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 165, "fields": {"gymnast": 5, "educative": 30, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 166, "fields": {"gymnast": 5, "educative": 57, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 167, "fields": {"gymnast": 5, "educative": 228, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 168, "fields": {"gymnast": 5, "educative": 51, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 169, "fields": {"gymnast": 5, "educative": 32, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 170, "fields": {"gymnast": 5, "educative": 61, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 171, "fields": {"gymnast": 5, "educative": 45, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 172, "fields": {"gymnast": 5, "educative": 158, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 173, "fields": {"gymnast": 5, "educative": 458, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 174, "fields": {"gymnast": 5, "educative": 82, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 175, "fields": {"gymnast": 5, "educative": 6, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 176, "fields": {"gymnast": 5, "educative": 298, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 177, "fields": {"gymnast": 5, "educative": 35, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 178, "fields": {"gymnast": 5, "educative": 71, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 179, "fields": {"gymnast": 5, "educative": 268, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 180, "fields": {"gymnast": 5, "educative": 9, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 181, "fields": {"gymnast": 5, "educative": 16, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 182, "fields": {"gymnast": 5, "educative": 364, "date": "2019-05-14"}}, {"model": "people.candorelation", "pk": 183, "fields": {"gymnast": 4, "educative": 2, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 184, "fields": {"gymnast": 4, "educative": 185, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 185, "fields": {"gymnast": 4, "educative": 28, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 186, "fields": {"gymnast": 4, "educative": 457, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 187, "fields": {"gymnast": 4, "educative": 1, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 188, "fields": {"gymnast": 4, "educative": 4, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 189, "fields": {"gymnast": 4, "educative": 5, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 190, "fields": {"gymnast": 4, "educative": 29, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 191, "fields": {"gymnast": 4, "educative": 256, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 192, "fields": {"gymnast": 4, "educative": 323, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 193, "fields": {"gymnast": 4, "educative": 320, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 194, "fields": {"gymnast": 4, "educative": 321, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 195, "fields": {"gymnast": 4, "educative": 255, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 196, "fields": {"gymnast": 4, "educative": 257, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 197, "fields": {"gymnast": 4, "educative": 462, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 198, "fields": {"gymnast": 4, "educative": 461, "date": "2019-05-17"}}, {"model": "people.candorelation", "pk": 199, "fields": {"gymnast": 4, "educative": 366, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 200, "fields": {"gymnast": 6, "educative": 22, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 201, "fields": {"gymnast": 6, "educative": 25, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 202, "fields": {"gymnast": 6, "educative": 23, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 203, "fields": {"gymnast": 6, "educative": 31, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 204, "fields": {"gymnast": 9, "educative": 183, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 205, "fields": {"gymnast": 9, "educative": 184, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 206, "fields": {"gymnast": 9, "educative": 185, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 207, "fields": {"gymnast": 9, "educative": 256, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 208, "fields": {"gymnast": 9, "educative": 28, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 209, "fields": {"gymnast": 9, "educative": 4, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 210, "fields": {"gymnast": 9, "educative": 10, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 211, "fields": {"gymnast": 9, "educative": 5, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 212, "fields": {"gymnast": 9, "educative": 318, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 213, "fields": {"gymnast": 9, "educative": 1, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 214, "fields": {"gymnast": 9, "educative": 255, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 215, "fields": {"gymnast": 9, "educative": 3, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 216, "fields": {"gymnast": 9, "educative": 14, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 217, "fields": {"gymnast": 9, "educative": 182, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 218, "fields": {"gymnast": 9, "educative": 257, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 219, "fields": {"gymnast": 9, "educative": 9, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 220, "fields": {"gymnast": 8, "educative": 2, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 221, "fields": {"gymnast": 8, "educative": 4, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 222, "fields": {"gymnast": 8, "educative": 256, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 223, "fields": {"gymnast": 8, "educative": 5, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 224, "fields": {"gymnast": 8, "educative": 182, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 225, "fields": {"gymnast": 8, "educative": 28, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 226, "fields": {"gymnast": 8, "educative": 1, "date": "2019-05-20"}}, {"model": "people.candorelation", "pk": 227, "fields": {"gymnast": 9, "educative": 11, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 228, "fields": {"gymnast": 8, "educative": 255, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 229, "fields": {"gymnast": 8, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 230, "fields": {"gymnast": 8, "educative": 10, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 231, "fields": {"gymnast": 8, "educative": 257, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 232, "fields": {"gymnast": 6, "educative": 257, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 233, "fields": {"gymnast": 6, "educative": 259, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 234, "fields": {"gymnast": 1, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 235, "fields": {"gymnast": 11, "educative": 258, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 236, "fields": {"gymnast": 11, "educative": 2, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 237, "fields": {"gymnast": 11, "educative": 28, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 238, "fields": {"gymnast": 11, "educative": 1, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 239, "fields": {"gymnast": 11, "educative": 4, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 240, "fields": {"gymnast": 11, "educative": 5, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 241, "fields": {"gymnast": 11, "educative": 29, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 242, "fields": {"gymnast": 11, "educative": 259, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 243, "fields": {"gymnast": 11, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 244, "fields": {"gymnast": 11, "educative": 11, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 245, "fields": {"gymnast": 11, "educative": 9, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 246, "fields": {"gymnast": 11, "educative": 35, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 247, "fields": {"gymnast": 7, "educative": 28, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 248, "fields": {"gymnast": 7, "educative": 2, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 249, "fields": {"gymnast": 7, "educative": 185, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 250, "fields": {"gymnast": 7, "educative": 3, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 251, "fields": {"gymnast": 7, "educative": 11, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 252, "fields": {"gymnast": 7, "educative": 9, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 253, "fields": {"gymnast": 7, "educative": 31, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 254, "fields": {"gymnast": 7, "educative": 256, "date": "2019-05-21"}}, {"model": "people.candorelation", "pk": 255, "fields": {"gymnast": 6, "educative": 197, "date": "2019-05-22"}}, {"model": "people.candorelation", "pk": 256, "fields": {"gymnast": 6, "educative": 198, "date": "2019-05-22"}}, {"model": "people.candorelation", "pk": 257, "fields": {"gymnast": 5, "educative": 116, "date": "2019-05-23"}}, {"model": "people.candorelation", "pk": 258, "fields": {"gymnast": 5, "educative": 553, "date": "2019-05-23"}}, {"model": "people.candorelation", "pk": 259, "fields": {"gymnast": 4, "educative": 78, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 260, "fields": {"gymnast": 4, "educative": 268, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 261, "fields": {"gymnast": 4, "educative": 459, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 262, "fields": {"gymnast": 4, "educative": 318, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 263, "fields": {"gymnast": 4, "educative": 183, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 264, "fields": {"gymnast": 4, "educative": 184, "date": "2019-05-26"}}, {"model": "people.candorelation", "pk": 265, "fields": {"gymnast": 11, "educative": 256, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 266, "fields": {"gymnast": 11, "educative": 366, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 267, "fields": {"gymnast": 11, "educative": 459, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 268, "fields": {"gymnast": 11, "educative": 461, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 269, "fields": {"gymnast": 11, "educative": 462, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 270, "fields": {"gymnast": 11, "educative": 185, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 271, "fields": {"gymnast": 11, "educative": 183, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 272, "fields": {"gymnast": 11, "educative": 184, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 273, "fields": {"gymnast": 11, "educative": 200, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 274, "fields": {"gymnast": 11, "educative": 255, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 275, "fields": {"gymnast": 11, "educative": 319, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 276, "fields": {"gymnast": 11, "educative": 14, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 277, "fields": {"gymnast": 11, "educative": 460, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 278, "fields": {"gymnast": 11, "educative": 182, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 279, "fields": {"gymnast": 11, "educative": 323, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 280, "fields": {"gymnast": 11, "educative": 320, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 281, "fields": {"gymnast": 11, "educative": 321, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 282, "fields": {"gymnast": 11, "educative": 322, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 283, "fields": {"gymnast": 11, "educative": 456, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 284, "fields": {"gymnast": 11, "educative": 454, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 285, "fields": {"gymnast": 11, "educative": 10, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 286, "fields": {"gymnast": 11, "educative": 391, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 287, "fields": {"gymnast": 11, "educative": 180, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 288, "fields": {"gymnast": 11, "educative": 178, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 289, "fields": {"gymnast": 11, "educative": 181, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 290, "fields": {"gymnast": 11, "educative": 388, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 291, "fields": {"gymnast": 11, "educative": 187, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 292, "fields": {"gymnast": 11, "educative": 179, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 293, "fields": {"gymnast": 11, "educative": 257, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 294, "fields": {"gymnast": 11, "educative": 267, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 295, "fields": {"gymnast": 11, "educative": 269, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 296, "fields": {"gymnast": 11, "educative": 68, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 297, "fields": {"gymnast": 11, "educative": 69, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 298, "fields": {"gymnast": 11, "educative": 365, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 299, "fields": {"gymnast": 11, "educative": 264, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 300, "fields": {"gymnast": 11, "educative": 266, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 301, "fields": {"gymnast": 11, "educative": 186, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 302, "fields": {"gymnast": 11, "educative": 126, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 303, "fields": {"gymnast": 11, "educative": 277, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 304, "fields": {"gymnast": 11, "educative": 357, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 305, "fields": {"gymnast": 11, "educative": 356, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 306, "fields": {"gymnast": 11, "educative": 393, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 307, "fields": {"gymnast": 11, "educative": 394, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 308, "fields": {"gymnast": 11, "educative": 395, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 309, "fields": {"gymnast": 11, "educative": 392, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 310, "fields": {"gymnast": 11, "educative": 396, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 311, "fields": {"gymnast": 11, "educative": 464, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 312, "fields": {"gymnast": 11, "educative": 245, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 313, "fields": {"gymnast": 11, "educative": 208, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 314, "fields": {"gymnast": 11, "educative": 201, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 315, "fields": {"gymnast": 11, "educative": 82, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 316, "fields": {"gymnast": 11, "educative": 260, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 317, "fields": {"gymnast": 11, "educative": 15, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 318, "fields": {"gymnast": 11, "educative": 268, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 319, "fields": {"gymnast": 11, "educative": 296, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 320, "fields": {"gymnast": 11, "educative": 298, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 321, "fields": {"gymnast": 11, "educative": 263, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 322, "fields": {"gymnast": 11, "educative": 265, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 323, "fields": {"gymnast": 11, "educative": 279, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 324, "fields": {"gymnast": 11, "educative": 287, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 325, "fields": {"gymnast": 11, "educative": 458, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 326, "fields": {"gymnast": 11, "educative": 278, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 327, "fields": {"gymnast": 11, "educative": 6, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 328, "fields": {"gymnast": 11, "educative": 202, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 329, "fields": {"gymnast": 11, "educative": 371, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 330, "fields": {"gymnast": 11, "educative": 281, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 331, "fields": {"gymnast": 11, "educative": 284, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 332, "fields": {"gymnast": 11, "educative": 214, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 333, "fields": {"gymnast": 11, "educative": 404, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 334, "fields": {"gymnast": 11, "educative": 401, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 335, "fields": {"gymnast": 11, "educative": 402, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 336, "fields": {"gymnast": 11, "educative": 85, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 337, "fields": {"gymnast": 11, "educative": 423, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 338, "fields": {"gymnast": 11, "educative": 189, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 339, "fields": {"gymnast": 11, "educative": 380, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 340, "fields": {"gymnast": 11, "educative": 329, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 341, "fields": {"gymnast": 11, "educative": 328, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 342, "fields": {"gymnast": 11, "educative": 101, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 343, "fields": {"gymnast": 11, "educative": 96, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 344, "fields": {"gymnast": 11, "educative": 131, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 346, "fields": {"gymnast": 1, "educative": 257, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 347, "fields": {"gymnast": 11, "educative": 468, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 348, "fields": {"gymnast": 11, "educative": 209, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 349, "fields": {"gymnast": 11, "educative": 84, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 350, "fields": {"gymnast": 11, "educative": 100, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 351, "fields": {"gymnast": 11, "educative": 102, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 352, "fields": {"gymnast": 11, "educative": 332, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 353, "fields": {"gymnast": 11, "educative": 20, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 354, "fields": {"gymnast": 11, "educative": 37, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 355, "fields": {"gymnast": 11, "educative": 7, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 356, "fields": {"gymnast": 11, "educative": 218, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 357, "fields": {"gymnast": 11, "educative": 83, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 358, "fields": {"gymnast": 11, "educative": 31, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 359, "fields": {"gymnast": 11, "educative": 25, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 360, "fields": {"gymnast": 11, "educative": 22, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 361, "fields": {"gymnast": 11, "educative": 30, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 362, "fields": {"gymnast": 11, "educative": 228, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 363, "fields": {"gymnast": 11, "educative": 21, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 364, "fields": {"gymnast": 11, "educative": 19, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 365, "fields": {"gymnast": 11, "educative": 26, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 366, "fields": {"gymnast": 11, "educative": 27, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 367, "fields": {"gymnast": 11, "educative": 23, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 368, "fields": {"gymnast": 11, "educative": 32, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 369, "fields": {"gymnast": 11, "educative": 61, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 370, "fields": {"gymnast": 11, "educative": 169, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 371, "fields": {"gymnast": 11, "educative": 190, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 372, "fields": {"gymnast": 11, "educative": 24, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 373, "fields": {"gymnast": 11, "educative": 170, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 374, "fields": {"gymnast": 11, "educative": 58, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 375, "fields": {"gymnast": 11, "educative": 33, "date": "2019-07-02"}}, {"model": "people.candorelation", "pk": 376, "fields": {"gymnast": 2, "educative": 95, "date": "2019-07-02"}}, {"model": "people.gymnasthasroutine", "pk": 1, "fields": {"gymnast": 1, "routine": 495, "routine_type": 1, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 2, "fields": {"gymnast": 1, "routine": 495, "routine_type": 2, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 3, "fields": {"gymnast": 1, "routine": 495, "routine_type": 3, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 4, "fields": {"gymnast": 4, "routine": 515, "routine_type": 1, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 5, "fields": {"gymnast": 4, "routine": 516, "routine_type": 2, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 6, "fields": {"gymnast": 5, "routine": 508, "routine_type": 1, "datebegin": "2018-12-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 7, "fields": {"gymnast": 5, "routine": 509, "routine_type": 2, "datebegin": "2018-12-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 8, "fields": {"gymnast": 4, "routine": 516, "routine_type": 3, "datebegin": "2018-09-01", "dateend": null}}, {"model": "people.gymnasthasroutine", "pk": 11, "fields": {"gymnast": 11, "routine": 559, "routine_type": 1, "datebegin": "2019-07-02", "dateend": null}}, {"model": "location.country", "pk": 1, "fields": {"nameus": "Belgium", "namefr": "Belgique", "nationality": "Belge", "iso2": "BE", "iso3": "BEL", "isonum": 56}}, {"model": "location.country", "pk": 2, "fields": {"nameus": "Portugal", "namefr": "Portugal", "nationality": "Portugese", "iso2": "PT", "iso3": "PRT", "isonum": 620}}, {"model": "location.country", "pk": 3, "fields": {"nameus": "Kosovo", "namefr": "Kosovo", "nationality": "Kosovar", "iso2": "XK", "iso3": "XKX", "isonum": 0}}, {"model": "location.country", "pk": 4, "fields": {"nameus": "Afghanistan", "namefr": "Afghanistan", "nationality": "Afghane", "iso2": "AF", "iso3": "AFG", "isonum": 4}}, {"model": "location.country", "pk": 5, "fields": {"nameus": "Albania", "namefr": "Albanie", "nationality": "Albanaise", "iso2": "AL", "iso3": "ALB", "isonum": 8}}, {"model": "location.country", "pk": 6, "fields": {"nameus": "Antarctica", "namefr": "Antartique", "nationality": "Antartique", "iso2": "AQ", "iso3": "ATA", "isonum": 10}}, {"model": "location.country", "pk": 7, "fields": {"nameus": "Algeria", "namefr": "Algérie", "nationality": "Algérienne", "iso2": "DZ", "iso3": "DZA", "isonum": 12}}, {"model": "location.country", "pk": 8, "fields": {"nameus": "American Samoa", "namefr": "Samoa Américaines", "nationality": "Samoane", "iso2": "AS", "iso3": "ASM", "isonum": 16}}, {"model": "location.country", "pk": 9, "fields": {"nameus": "Andorra", "namefr": "Andorre", "nationality": "Andorrane", "iso2": "AD", "iso3": "AND", "isonum": 20}}, {"model": "location.country", "pk": 10, "fields": {"nameus": "Angola", "namefr": "Angola", "nationality": "Angolaise", "iso2": "AO", "iso3": "AGO", "isonum": 24}}, {"model": "location.country", "pk": 11, "fields": {"nameus": "Antigua and Barbuda", "namefr": "Antigua-et-Barbuda", "nationality": "Antiguayenne", "iso2": "AG", "iso3": "ATG", "isonum": 28}}, {"model": "location.country", "pk": 12, "fields": {"nameus": "Azerbaijan", "namefr": "Azerbaïdjan", "nationality": "Azérie", "iso2": "AZ", "iso3": "AZE", "isonum": 31}}, {"model": "location.country", "pk": 13, "fields": {"nameus": "Argentina", "namefr": "Argentine", "nationality": "Argentine", "iso2": "AR", "iso3": "ARG", "isonum": 32}}, {"model": "location.country", "pk": 14, "fields": {"nameus": "Australia", "namefr": "Australie", "nationality": "Australlienne", "iso2": "AU", "iso3": "AUS", "isonum": 36}}, {"model": "location.country", "pk": 15, "fields": {"nameus": "Austria", "namefr": "Autriche", "nationality": "Autrichienne", "iso2": "AT", "iso3": "AUT", "isonum": 40}}, {"model": "location.country", "pk": 16, "fields": {"nameus": "Bahamas", "namefr": "Bahamas", "nationality": "Bahaméen", "iso2": "BS", "iso3": "BHS", "isonum": 44}}, {"model": "location.country", "pk": 17, "fields": {"nameus": "Bahrain", "namefr": "Bahreïn", "nationality": "Bahreïnienne", "iso2": "BH", "iso3": "BHR", "isonum": 48}}, {"model": "location.country", "pk": 18, "fields": {"nameus": "Bangladesh", "namefr": "Bangladesh", "nationality": "Bangladeshie", "iso2": "BD", "iso3": "BGD", "isonum": 50}}, {"model": "location.country", "pk": 19, "fields": {"nameus": "Armenia", "namefr": "Arménie", "nationality": "Arménienne", "iso2": "AM", "iso3": "ARM", "isonum": 51}}, {"model": "location.country", "pk": 20, "fields": {"nameus": "Barbados", "namefr": "Barbade", "nationality": "Barbadien", "iso2": "BB", "iso3": "BRB", "isonum": 52}}, {"model": "location.country", "pk": 21, "fields": {"nameus": "Bermuda", "namefr": "Bermudes", "nationality": "Bermudienne", "iso2": "BM", "iso3": "BMU", "isonum": 60}}, {"model": "location.country", "pk": 22, "fields": {"nameus": "Bhutan", "namefr": "Bhoutan", "nationality": "Bhoutanaise", "iso2": "BT", "iso3": "BTN", "isonum": 64}}, {"model": "location.country", "pk": 23, "fields": {"nameus": "Bolivia", "namefr": "Bolivie", "nationality": "Bolivienne", "iso2": "BO", "iso3": "BOL", "isonum": 68}}, {"model": "location.country", "pk": 24, "fields": {"nameus": "Bosnia and Herzegovina", "namefr": "Bosnie-Herzégovine", "nationality": "Bosnienne", "iso2": "BA", "iso3": "BIH", "isonum": 70}}, {"model": "location.country", "pk": 25, "fields": {"nameus": "Botswana", "namefr": "Botswana", "nationality": "Botswanaise", "iso2": "BW", "iso3": "BWA", "isonum": 72}}, {"model": "location.country", "pk": 26, "fields": {"nameus": "Bouvet Island", "namefr": "Ile Bouvet", "nationality": "Norvégienne", "iso2": "BV", "iso3": "BVT", "isonum": 74}}, {"model": "location.country", "pk": 27, "fields": {"nameus": "Brazil", "namefr": "Brésil", "nationality": "Brésilienne", "iso2": "BR", "iso3": "BRA", "isonum": 76}}, {"model": "location.country", "pk": 28, "fields": {"nameus": "Belize", "namefr": "Belize", "nationality": "Bélizienne", "iso2": "BZ", "iso3": "BLZ", "isonum": 84}}, {"model": "location.country", "pk": 29, "fields": {"nameus": "British Indian Ocean Territory", "namefr": "Territoire Britannique de l'Océan Indien", "nationality": "Anglaise", "iso2": "IO", "iso3": "IOT", "isonum": 86}}, {"model": "location.country", "pk": 30, "fields": {"nameus": "Solomon Islands", "namefr": "Iles Salomon", "nationality": "Salomonienne", "iso2": "SB", "iso3": "SLB", "isonum": 90}}, {"model": "location.country", "pk": 31, "fields": {"nameus": "British Virgin Islands", "namefr": "Iles Vierges Britannique", "nationality": "Anglaise", "iso2": "VG", "iso3": "VGB", "isonum": 92}}, {"model": "location.country", "pk": 32, "fields": {"nameus": "Brunei", "namefr": "Brunei", "nationality": "Brunéienne", "iso2": "BN", "iso3": "BRN", "isonum": 96}}, {"model": "location.country", "pk": 33, "fields": {"nameus": "Bulgaria", "namefr": "Bulgarie", "nationality": "Bulgare", "iso2": "BG", "iso3": "BGR", "isonum": 100}}, {"model": "location.country", "pk": 34, "fields": {"nameus": "Myanmar [Burma]", "namefr": "Myanmar", "nationality": "Myanmaraise", "iso2": "MM", "iso3": "MMR", "isonum": 104}}, {"model": "location.country", "pk": 35, "fields": {"nameus": "Burundi", "namefr": "Burundi", "nationality": "Burundaise", "iso2": "BI", "iso3": "BDI", "isonum": 108}}, {"model": "location.country", "pk": 36, "fields": {"nameus": "Belarus", "namefr": "Biélorussie", "nationality": "Biélorusse", "iso2": "BY", "iso3": "BLR", "isonum": 112}}, {"model": "location.country", "pk": 37, "fields": {"nameus": "Cambodia", "namefr": "Cambodge", "nationality": "Cambodgienne", "iso2": "KH", "iso3": "KHM", "isonum": 116}}, {"model": "location.country", "pk": 38, "fields": {"nameus": "Cameroon", "namefr": "Cameroun", "nationality": "Camerounaise", "iso2": "CM", "iso3": "CMR", "isonum": 120}}, {"model": "location.country", "pk": 39, "fields": {"nameus": "Canada", "namefr": "Canada", "nationality": "Canadienne", "iso2": "CA", "iso3": "CAN", "isonum": 124}}, {"model": "location.country", "pk": 40, "fields": {"nameus": "Cape Verde", "namefr": "Cap Vert", "nationality": "Cap-Verdienne", "iso2": "CV", "iso3": "CPV", "isonum": 132}}, {"model": "location.country", "pk": 41, "fields": {"nameus": "Cayman Islands", "namefr": "Iles Caïmans", "nationality": "Anglaise", "iso2": "KY", "iso3": "CYM", "isonum": 136}}, {"model": "location.country", "pk": 42, "fields": {"nameus": "Central African Republic", "namefr": "République d'Afrique Centrale", "nationality": "Centrafricaine", "iso2": "CF", "iso3": "CAF", "isonum": 140}}, {"model": "location.country", "pk": 43, "fields": {"nameus": "Sri Lanka", "namefr": "Sri Lnaka", "nationality": "Sri-Lankaise", "iso2": "LK", "iso3": "LKA", "isonum": 144}}, {"model": "location.country", "pk": 44, "fields": {"nameus": "Chad", "namefr": "Chad", "nationality": "Chadienne", "iso2": "TD", "iso3": "TCD", "isonum": 148}}, {"model": "location.country", "pk": 45, "fields": {"nameus": "Chile", "namefr": "Chili", "nationality": "Chilienne", "iso2": "CL", "iso3": "CHL", "isonum": 152}}, {"model": "location.country", "pk": 46, "fields": {"nameus": "China", "namefr": "Chine", "nationality": "Chinoise", "iso2": "CN", "iso3": "CHN", "isonum": 156}}, {"model": "location.country", "pk": 47, "fields": {"nameus": "Taiwan", "namefr": "Taiwan", "nationality": "Taïwanaise", "iso2": "TW", "iso3": "TWN", "isonum": 158}}, {"model": "location.country", "pk": 48, "fields": {"nameus": "Christmas Island", "namefr": "Ile Christmas", "nationality": "Australienne", "iso2": "CX", "iso3": "CXR", "isonum": 162}}, {"model": "location.country", "pk": 49, "fields": {"nameus": "Cocos [Keeling] Islands", "namefr": "Iles Cocos", "nationality": "Australienne", "iso2": "CC", "iso3": "CCK", "isonum": 166}}, {"model": "location.country", "pk": 50, "fields": {"nameus": "Colombia", "namefr": "Colombie", "nationality": "Colombienne", "iso2": "CO", "iso3": "COL", "isonum": 170}}, {"model": "location.country", "pk": 51, "fields": {"nameus": "Comoros", "namefr": "Comores", "nationality": "Comorienne", "iso2": "KM", "iso3": "COM", "isonum": 174}}, {"model": "location.country", "pk": 52, "fields": {"nameus": "Mayotte", "namefr": "Mayotte", "nationality": "Mahoraise", "iso2": "YT", "iso3": "MYT", "isonum": 175}}, {"model": "location.country", "pk": 53, "fields": {"nameus": "Republic of the Congo", "namefr": "République du Congo", "nationality": "Congolaise", "iso2": "CG", "iso3": "COG", "isonum": 178}}, {"model": "location.country", "pk": 54, "fields": {"nameus": "Congo", "namefr": "Congo", "nationality": "Congolaise", "iso2": "CD", "iso3": "COD", "isonum": 180}}, {"model": "location.country", "pk": 55, "fields": {"nameus": "Cook Islands", "namefr": "Iles Cook", "nationality": "Anglaise", "iso2": "CK", "iso3": "COK", "isonum": 184}}, {"model": "location.country", "pk": 56, "fields": {"nameus": "Costa Rica", "namefr": "Costa Rica", "nationality": "Costaricainne", "iso2": "CR", "iso3": "CRI", "isonum": 188}}, {"model": "location.country", "pk": 57, "fields": {"nameus": "Croatia", "namefr": "Croatie", "nationality": "Croate", "iso2": "HR", "iso3": "HRV", "isonum": 191}}, {"model": "location.country", "pk": 58, "fields": {"nameus": "Cuba", "namefr": "Cuba", "nationality": "Cubaine", "iso2": "CU", "iso3": "CUB", "isonum": 192}}, {"model": "location.country", "pk": 59, "fields": {"nameus": "Cyprus", "namefr": "Chypre", "nationality": "Chypriote", "iso2": "CY", "iso3": "CYP", "isonum": 196}}, {"model": "location.country", "pk": 60, "fields": {"nameus": "Czech Republic", "namefr": "République Tchèque", "nationality": "Tchèque", "iso2": "CZ", "iso3": "CZE", "isonum": 203}}, {"model": "location.country", "pk": 61, "fields": {"nameus": "Benin", "namefr": "Bénin", "nationality": "Béninoise", "iso2": "BJ", "iso3": "BEN", "isonum": 204}}, {"model": "location.country", "pk": 62, "fields": {"nameus": "Denmark", "namefr": "Danemark", "nationality": "Danoise", "iso2": "DK", "iso3": "DNK", "isonum": 208}}, {"model": "location.country", "pk": 63, "fields": {"nameus": "Dominica", "namefr": "Dominique", "nationality": "Dominiquaise", "iso2": "DM", "iso3": "DMA", "isonum": 212}}, {"model": "location.country", "pk": 64, "fields": {"nameus": "Dominican Republic", "namefr": "République Dominicaine", "nationality": "Dominicaine", "iso2": "DO", "iso3": "DOM", "isonum": 214}}, {"model": "location.country", "pk": 65, "fields": {"nameus": "Ecuador", "namefr": "Equateur", "nationality": "Equatorienne", "iso2": "EC", "iso3": "ECU", "isonum": 218}}, {"model": "location.country", "pk": 66, "fields": {"nameus": "El Salvador", "namefr": "Salvador", "nationality": "Salvadorienne", "iso2": "SV", "iso3": "SLV", "isonum": 222}}, {"model": "location.country", "pk": 67, "fields": {"nameus": "Equatorial Guinea", "namefr": "Guinée Equatoriale", "nationality": "Guinéo-Équatorienne", "iso2": "GQ", "iso3": "GNQ", "isonum": 226}}, {"model": "location.country", "pk": 68, "fields": {"nameus": "Ethiopia", "namefr": "Ethiopie", "nationality": "Ethiopienne", "iso2": "ET", "iso3": "ETH", "isonum": 231}}, {"model": "location.country", "pk": 69, "fields": {"nameus": "Eritrea", "namefr": "Eritrée", "nationality": "Erythréenne", "iso2": "ER", "iso3": "ERI", "isonum": 232}}, {"model": "location.country", "pk": 70, "fields": {"nameus": "Estonia", "namefr": "Estonie", "nationality": "Estonienne", "iso2": "EE", "iso3": "EST", "isonum": 233}}, {"model": "location.country", "pk": 71, "fields": {"nameus": "Faroe Islands", "namefr": "Iles Féroé", "nationality": "Féroïenne", "iso2": "FO", "iso3": "FRO", "isonum": 234}}, {"model": "location.country", "pk": 72, "fields": {"nameus": "Falkland Islands", "namefr": "Iles Malouines", "nationality": "Anglaise", "iso2": "FK", "iso3": "FLK", "isonum": 238}}, {"model": "location.country", "pk": 73, "fields": {"nameus": "South Georgia and the South Sandwich Islands", "namefr": "Géorgie du Sud et Iles Sandwich du Sud", "nationality": "Argentine", "iso2": "GS", "iso3": "SGS", "isonum": 239}}, {"model": "location.country", "pk": 74, "fields": {"nameus": "Fiji", "namefr": "Fiji", "nationality": "Fidjienne", "iso2": "FJ", "iso3": "FJI", "isonum": 242}}, {"model": "location.country", "pk": 75, "fields": {"nameus": "Finland", "namefr": "Finlande", "nationality": "Finlandaise", "iso2": "FI", "iso3": "FIN", "isonum": 246}}, {"model": "location.country", "pk": 76, "fields": {"nameus": "Åland", "namefr": "Aland", "nationality": "Alandais", "iso2": "AX", "iso3": "ALA", "isonum": 248}}, {"model": "location.country", "pk": 77, "fields": {"nameus": "France", "namefr": "France", "nationality": "Française", "iso2": "FR", "iso3": "FRA", "isonum": 250}}, {"model": "location.country", "pk": 78, "fields": {"nameus": "French Guiana", "namefr": "Guinée Française", "nationality": "Française", "iso2": "GF", "iso3": "GUF", "isonum": 254}}, {"model": "location.country", "pk": 79, "fields": {"nameus": "French Polynesia", "namefr": "Polynésie Française", "nationality": "Française", "iso2": "PF", "iso3": "PYF", "isonum": 258}}, {"model": "location.country", "pk": 80, "fields": {"nameus": "French Southern Territories", "namefr": "Terres Australes Française", "nationality": "Française", "iso2": "TF", "iso3": "ATF", "isonum": 260}}, {"model": "location.country", "pk": 81, "fields": {"nameus": "Djibouti", "namefr": "Djibouti", "nationality": "Djiboutienne", "iso2": "DJ", "iso3": "DJI", "isonum": 262}}, {"model": "location.country", "pk": 82, "fields": {"nameus": "Gabon", "namefr": "Gabon", "nationality": "Gabonnaise", "iso2": "GA", "iso3": "GAB", "isonum": 266}}, {"model": "location.country", "pk": 83, "fields": {"nameus": "Georgia", "namefr": "Georgie", "nationality": "Géorgienne", "iso2": "GE", "iso3": "GEO", "isonum": 268}}, {"model": "location.country", "pk": 84, "fields": {"nameus": "Gambia", "namefr": "Gambie", "nationality": "Gambienne", "iso2": "GM", "iso3": "GMB", "isonum": 270}}, {"model": "location.country", "pk": 85, "fields": {"nameus": "Palestine", "namefr": "Palestine", "nationality": "Pelestinienne", "iso2": "PS", "iso3": "PSE", "isonum": 275}}, {"model": "location.country", "pk": 86, "fields": {"nameus": "Germany", "namefr": "Allemagne", "nationality": "Allemande", "iso2": "DE", "iso3": "DEU", "isonum": 276}}, {"model": "location.country", "pk": 87, "fields": {"nameus": "Ghana", "namefr": "Ghana", "nationality": "Ghanéenne", "iso2": "GH", "iso3": "GHA", "isonum": 288}}, {"model": "location.country", "pk": 88, "fields": {"nameus": "Gibraltar", "namefr": "Gibraltar", "nationality": "Gibraltarienne", "iso2": "GI", "iso3": "GIB", "isonum": 292}}, {"model": "location.country", "pk": 89, "fields": {"nameus": "Kiribati", "namefr": "Kiribati", "nationality": "Kiribatienne", "iso2": "KI", "iso3": "KIR", "isonum": 296}}, {"model": "location.country", "pk": 90, "fields": {"nameus": "Greece", "namefr": "Grèce", "nationality": "Grecque", "iso2": "GR", "iso3": "GRC", "isonum": 300}}, {"model": "location.country", "pk": 91, "fields": {"nameus": "Greenland", "namefr": "Groenland", "nationality": "Groenlandaise", "iso2": "GL", "iso3": "GRL", "isonum": 304}}, {"model": "location.country", "pk": 92, "fields": {"nameus": "Grenada", "namefr": "Grenade", "nationality": "Grenadienne", "iso2": "GD", "iso3": "GRD", "isonum": 308}}, {"model": "location.country", "pk": 93, "fields": {"nameus": "Guadeloupe", "namefr": "Guadeloupe", "nationality": "Guadeloupéenne", "iso2": "GP", "iso3": "GLP", "isonum": 312}}, {"model": "location.country", "pk": 94, "fields": {"nameus": "Guam", "namefr": "Guam", "nationality": "Guamienne", "iso2": "GU", "iso3": "GUM", "isonum": 316}}, {"model": "location.country", "pk": 95, "fields": {"nameus": "Guatemala", "namefr": "Guatémala", "nationality": "Guatémaltèque", "iso2": "GT", "iso3": "GTM", "isonum": 320}}, {"model": "location.country", "pk": 96, "fields": {"nameus": "Guinea", "namefr": "Guinée", "nationality": "Guinéenne", "iso2": "GN", "iso3": "GIN", "isonum": 324}}, {"model": "location.country", "pk": 97, "fields": {"nameus": "Guyana", "namefr": "Guyane", "nationality": "Guyanienne", "iso2": "GY", "iso3": "GUY", "isonum": 328}}, {"model": "location.country", "pk": 98, "fields": {"nameus": "Haiti", "namefr": "Haïti", "nationality": "Haïtienne", "iso2": "HT", "iso3": "HTI", "isonum": 332}}, {"model": "location.country", "pk": 99, "fields": {"nameus": "Heard Island and McDonald Islands", "namefr": "Ile Heard et Iles McDonald", "nationality": "Australienne", "iso2": "HM", "iso3": "HMD", "isonum": 334}}, {"model": "location.country", "pk": 100, "fields": {"nameus": "Vatican City", "namefr": "Vatican", "nationality": "Vaticanne", "iso2": "VA", "iso3": "VAT", "isonum": 336}}, {"model": "location.country", "pk": 101, "fields": {"nameus": "Honduras", "namefr": "Honduras", "nationality": "Hondurienne", "iso2": "HN", "iso3": "HND", "isonum": 340}}, {"model": "location.country", "pk": 102, "fields": {"nameus": "Hong Kong", "namefr": "Hong Kong", "nationality": "Hongkongaise", "iso2": "HK", "iso3": "HKG", "isonum": 344}}, {"model": "location.country", "pk": 103, "fields": {"nameus": "Hungary", "namefr": "Hongrie", "nationality": "Hongroise", "iso2": "HU", "iso3": "HUN", "isonum": 348}}, {"model": "location.country", "pk": 104, "fields": {"nameus": "Iceland", "namefr": "Islande", "nationality": "Islandaise", "iso2": "IS", "iso3": "ISL", "isonum": 352}}, {"model": "location.country", "pk": 105, "fields": {"nameus": "India", "namefr": "Inde", "nationality": "Indienne", "iso2": "IN", "iso3": "IND", "isonum": 356}}, {"model": "location.country", "pk": 106, "fields": {"nameus": "Indonesia", "namefr": "Indonésie", "nationality": "Indonésienne", "iso2": "ID", "iso3": "IDN", "isonum": 360}}, {"model": "location.country", "pk": 107, "fields": {"nameus": "Iran", "namefr": "Iran", "nationality": "Irannienne", "iso2": "IR", "iso3": "IRN", "isonum": 364}}, {"model": "location.country", "pk": 108, "fields": {"nameus": "Iraq", "namefr": "Iraq", "nationality": "Iraquienne", "iso2": "IQ", "iso3": "IRQ", "isonum": 368}}, {"model": "location.country", "pk": 109, "fields": {"nameus": "Ireland", "namefr": "Irlande", "nationality": "Irlandaise", "iso2": "IE", "iso3": "IRL", "isonum": 372}}, {"model": "location.country", "pk": 110, "fields": {"nameus": "Israel", "namefr": "Israel", "nationality": "Israelienne", "iso2": "IL", "iso3": "ISR", "isonum": 376}}, {"model": "location.country", "pk": 111, "fields": {"nameus": "Italy", "namefr": "Italie", "nationality": "Italienne", "iso2": "IT", "iso3": "ITA", "isonum": 380}}, {"model": "location.country", "pk": 112, "fields": {"nameus": "Ivory Coast", "namefr": "Côte d'Ivoire", "nationality": "Ivoirienne", "iso2": "CI", "iso3": "CIV", "isonum": 384}}, {"model": "location.country", "pk": 113, "fields": {"nameus": "Jamaica", "namefr": "Jamaïque", "nationality": "Jamaïquaine", "iso2": "JM", "iso3": "JAM", "isonum": 388}}, {"model": "location.country", "pk": 114, "fields": {"nameus": "Japan", "namefr": "Japon", "nationality": "Japonnaise", "iso2": "JP", "iso3": "JPN", "isonum": 392}}, {"model": "location.country", "pk": 115, "fields": {"nameus": "Kazakhstan", "namefr": "Kazakhstan", "nationality": "Kazakhe", "iso2": "KZ", "iso3": "KAZ", "isonum": 398}}, {"model": "location.country", "pk": 116, "fields": {"nameus": "Jordan", "namefr": "Jordanie", "nationality": "Jordanienne", "iso2": "JO", "iso3": "JOR", "isonum": 400}}, {"model": "location.country", "pk": 117, "fields": {"nameus": "Kenya", "namefr": "Kenya", "nationality": "Kenyane", "iso2": "KE", "iso3": "KEN", "isonum": 404}}, {"model": "location.country", "pk": 118, "fields": {"nameus": "North Korea", "namefr": "Corée du Nord", "nationality": "Nord-Coréenne", "iso2": "KP", "iso3": "PRK", "isonum": 408}}, {"model": "location.country", "pk": 119, "fields": {"nameus": "South Korea", "namefr": "Corée du Sud", "nationality": "Sud-Coréenne", "iso2": "KR", "iso3": "KOR", "isonum": 410}}, {"model": "location.country", "pk": 120, "fields": {"nameus": "Kuwait", "namefr": "Koweit", "nationality": "Koweitienne", "iso2": "KW", "iso3": "KWT", "isonum": 414}}, {"model": "location.country", "pk": 121, "fields": {"nameus": "Kyrgyzstan", "namefr": "Kyrgyzstan", "nationality": "Kirghizes", "iso2": "KG", "iso3": "KGZ", "isonum": 417}}, {"model": "location.country", "pk": 122, "fields": {"nameus": "Laos", "namefr": "Laos", "nationality": "Laotienne", "iso2": "LA", "iso3": "LAO", "isonum": 418}}, {"model": "location.country", "pk": 123, "fields": {"nameus": "Lebanon", "namefr": "Liban", "nationality": "Libannaise", "iso2": "LB", "iso3": "LBN", "isonum": 422}}, {"model": "location.country", "pk": 124, "fields": {"nameus": "Lesotho", "namefr": "Lesotho", "nationality": "Lesothien ", "iso2": "LS", "iso3": "LSO", "isonum": 426}}, {"model": "location.country", "pk": 125, "fields": {"nameus": "Latvia", "namefr": "Lettonie", "nationality": "Lettone", "iso2": "LV", "iso3": "LVA", "isonum": 428}}, {"model": "location.country", "pk": 126, "fields": {"nameus": "Liberia", "namefr": "Libéria", "nationality": "Libérienne", "iso2": "LR", "iso3": "LBR", "isonum": 430}}, {"model": "location.country", "pk": 127, "fields": {"nameus": "Libya", "namefr": "Lybie", "nationality": "Lybienne", "iso2": "LY", "iso3": "LBY", "isonum": 434}}, {"model": "location.country", "pk": 128, "fields": {"nameus": "Liechtenstein", "namefr": "Liechtenstein", "nationality": "Liechtensteinoise", "iso2": "LI", "iso3": "LIE", "isonum": 438}}, {"model": "location.country", "pk": 129, "fields": {"nameus": "Lithuania", "namefr": "Lithuanie", "nationality": "Lithuanienne", "iso2": "LT", "iso3": "LTU", "isonum": 440}}, {"model": "location.country", "pk": 130, "fields": {"nameus": "Luxembourg", "namefr": "Luxembourg", "nationality": "Luxembourgeoise", "iso2": "LU", "iso3": "LUX", "isonum": 442}}, {"model": "location.country", "pk": 131, "fields": {"nameus": "Macao", "namefr": "Macao", "nationality": "Macanaise", "iso2": "MO", "iso3": "MAC", "isonum": 446}}, {"model": "location.country", "pk": 132, "fields": {"nameus": "Madagascar", "namefr": "Madagascar", "nationality": "Malgache", "iso2": "MG", "iso3": "MDG", "isonum": 450}}, {"model": "location.country", "pk": 133, "fields": {"nameus": "Malawi", "namefr": "Malawi", "nationality": "Malawite", "iso2": "MW", "iso3": "MWI", "isonum": 454}}, {"model": "location.country", "pk": 134, "fields": {"nameus": "Malaysia", "namefr": "Malaisie", "nationality": "Malaisienne", "iso2": "MY", "iso3": "MYS", "isonum": 458}}, {"model": "location.country", "pk": 135, "fields": {"nameus": "Maldives", "namefr": "Maldives", "nationality": "Maldivienne", "iso2": "MV", "iso3": "MDV", "isonum": 462}}, {"model": "location.country", "pk": 136, "fields": {"nameus": "Mali", "namefr": "Mali", "nationality": "Malienne", "iso2": "ML", "iso3": "MLI", "isonum": 466}}, {"model": "location.country", "pk": 137, "fields": {"nameus": "Malta", "namefr": "Malte", "nationality": "Maltaise", "iso2": "MT", "iso3": "MLT", "isonum": 470}}, {"model": "location.country", "pk": 138, "fields": {"nameus": "Martinique", "namefr": "Martinique", "nationality": "Martiniquaise", "iso2": "MQ", "iso3": "MTQ", "isonum": 474}}, {"model": "location.country", "pk": 139, "fields": {"nameus": "Mauritania", "namefr": "Mauritanie", "nationality": "Mauritanienne", "iso2": "MR", "iso3": "MRT", "isonum": 478}}, {"model": "location.country", "pk": 140, "fields": {"nameus": "Mauritius", "namefr": "Maurice", "nationality": "Mauricien", "iso2": "MU", "iso3": "MUS", "isonum": 480}}, {"model": "location.country", "pk": 141, "fields": {"nameus": "Mexico", "namefr": "Mexique", "nationality": "Mexiquaine", "iso2": "MX", "iso3": "MEX", "isonum": 484}}, {"model": "location.country", "pk": 142, "fields": {"nameus": "Monaco", "namefr": "Monaco", "nationality": "Monégasque", "iso2": "MC", "iso3": "MCO", "isonum": 492}}, {"model": "location.country", "pk": 143, "fields": {"nameus": "Mongolia", "namefr": "Mongolie", "nationality": "Mongolienne", "iso2": "MN", "iso3": "MNG", "isonum": 496}}, {"model": "location.country", "pk": 144, "fields": {"nameus": "Moldova", "namefr": "Moldavie", "nationality": "Moldavienne", "iso2": "MD", "iso3": "MDA", "isonum": 498}}, {"model": "location.country", "pk": 145, "fields": {"nameus": "Montenegro", "namefr": "Monténégro", "nationality": "Monténégrine", "iso2": "ME", "iso3": "MNE", "isonum": 499}}, {"model": "location.country", "pk": 146, "fields": {"nameus": "Montserrat", "namefr": "Montserrat", "nationality": "Montserratien", "iso2": "MS", "iso3": "MSR", "isonum": 500}}, {"model": "location.country", "pk": 147, "fields": {"nameus": "Morocco", "namefr": "Maroc", "nationality": "Marocaine", "iso2": "MA", "iso3": "MAR", "isonum": 504}}, {"model": "location.country", "pk": 148, "fields": {"nameus": "Mozambique", "namefr": "Mozambique", "nationality": "Mozambicaine", "iso2": "MZ", "iso3": "MOZ", "isonum": 508}}, {"model": "location.country", "pk": 149, "fields": {"nameus": "Oman", "namefr": "Oman", "nationality": "Omanaise", "iso2": "OM", "iso3": "OMN", "isonum": 512}}, {"model": "location.country", "pk": 150, "fields": {"nameus": "Namibia", "namefr": "Namibie", "nationality": "Namibienne", "iso2": "NA", "iso3": "NAM", "isonum": 516}}, {"model": "location.country", "pk": 151, "fields": {"nameus": "Nauru", "namefr": "Nauru", "nationality": "Nauruane", "iso2": "NR", "iso3": "NRU", "isonum": 520}}, {"model": "location.country", "pk": 152, "fields": {"nameus": "Nepal", "namefr": "Népal", "nationality": "Népalienne", "iso2": "NP", "iso3": "NPL", "isonum": 524}}, {"model": "location.country", "pk": 153, "fields": {"nameus": "Netherlands", "namefr": "Pays-Bas", "nationality": "Néerlandaise", "iso2": "NL", "iso3": "NLD", "isonum": 528}}, {"model": "location.country", "pk": 154, "fields": {"nameus": "Curacao", "namefr": "Curacao", "nationality": "Curacienne", "iso2": "CW", "iso3": "CUW", "isonum": 531}}, {"model": "location.country", "pk": 155, "fields": {"nameus": "Aruba", "namefr": "Aruba", "nationality": "Arubaine", "iso2": "AW", "iso3": "ABW", "isonum": 533}}, {"model": "location.country", "pk": 156, "fields": {"nameus": "Sint Maarten", "namefr": "Saint-Martin (Royaume des Pays-Bas)", "nationality": "Néerlandaise", "iso2": "SX", "iso3": "SXM", "isonum": 534}}, {"model": "location.country", "pk": 157, "fields": {"nameus": "Bonaire", "namefr": "Bonaire, Saint-Eustache et Saba", "nationality": "Bonairienne", "iso2": "BQ", "iso3": "BES", "isonum": 535}}, {"model": "location.country", "pk": 158, "fields": {"nameus": "New Caledonia", "namefr": "Nouvelle-Calédonie", "nationality": "Néo-Calédonienne", "iso2": "NC", "iso3": "NCL", "isonum": 540}}, {"model": "location.country", "pk": 159, "fields": {"nameus": "Vanuatu", "namefr": "Vanuatu", "nationality": "Vanouataise", "iso2": "VU", "iso3": "VUT", "isonum": 548}}, {"model": "location.country", "pk": 160, "fields": {"nameus": "New Zealand", "namefr": "Nouvelle-Zélande", "nationality": "Néo-zélandaise", "iso2": "NZ", "iso3": "NZL", "isonum": 554}}, {"model": "location.country", "pk": 161, "fields": {"nameus": "Nicaragua", "namefr": "Nicaragua", "nationality": "Nicaraguayenne", "iso2": "NI", "iso3": "NIC", "isonum": 558}}, {"model": "location.country", "pk": 162, "fields": {"nameus": "Niger", "namefr": "Niger", "nationality": "Nigérienne", "iso2": "NE", "iso3": "NER", "isonum": 562}}, {"model": "location.country", "pk": 163, "fields": {"nameus": "Nigeria", "namefr": "Nigéria", "nationality": "Nigérianne", "iso2": "NG", "iso3": "NGA", "isonum": 566}}, {"model": "location.country", "pk": 164, "fields": {"nameus": "Niue", "namefr": "Niue", "nationality": "Niouéenne", "iso2": "NU", "iso3": "NIU", "isonum": 570}}, {"model": "location.country", "pk": 165, "fields": {"nameus": "Norfolk Island", "namefr": "Ile Norfolk", "nationality": "Australienne", "iso2": "NF", "iso3": "NFK", "isonum": 574}}, {"model": "location.country", "pk": 166, "fields": {"nameus": "Norway", "namefr": "Norvège", "nationality": "Norvégienne", "iso2": "NO", "iso3": "NOR", "isonum": 578}}, {"model": "location.country", "pk": 167, "fields": {"nameus": "Northern Mariana Islands", "namefr": "Iles Marianne du nord", "nationality": "Américaine", "iso2": "MP", "iso3": "MNP", "isonum": 580}}, {"model": "location.country", "pk": 168, "fields": {"nameus": "U.S. Minor Outlying Islands", "namefr": "Iles Mineures Eloignées des Etats-Unis", "nationality": "Américaine", "iso2": "UM", "iso3": "UMI", "isonum": 581}}, {"model": "location.country", "pk": 169, "fields": {"nameus": "Micronesia", "namefr": "Micronesie", "nationality": "Micronésienne", "iso2": "FM", "iso3": "FSM", "isonum": 583}}, {"model": "location.country", "pk": 170, "fields": {"nameus": "Marshall Islands", "namefr": "Iles Marshall", "nationality": "Marshallais", "iso2": "MH", "iso3": "MHL", "isonum": 584}}, {"model": "location.country", "pk": 171, "fields": {"nameus": "Palau", "namefr": "Palaos", "nationality": "Palaoise", "iso2": "PW", "iso3": "PLW", "isonum": 585}}, {"model": "location.country", "pk": 172, "fields": {"nameus": "Pakistan", "namefr": "Pakistan", "nationality": "Pakistanainse", "iso2": "PK", "iso3": "PAK", "isonum": 586}}, {"model": "location.country", "pk": 173, "fields": {"nameus": "Panama", "namefr": "Panama", "nationality": "Panaméenne", "iso2": "PA", "iso3": "PAN", "isonum": 591}}, {"model": "location.country", "pk": 174, "fields": {"nameus": "Papua New Guinea", "namefr": "Papouasie-Nouvelle-Guinée", "nationality": "Papouan-Néo-Guinéenne", "iso2": "PG", "iso3": "PNG", "isonum": 598}}, {"model": "location.country", "pk": 175, "fields": {"nameus": "Paraguay", "namefr": "Paraguay", "nationality": "Paraguayenne", "iso2": "PY", "iso3": "PRY", "isonum": 600}}, {"model": "location.country", "pk": 176, "fields": {"nameus": "Peru", "namefr": "Pérou", "nationality": "Péruvienne", "iso2": "PE", "iso3": "PER", "isonum": 604}}, {"model": "location.country", "pk": 177, "fields": {"nameus": "Philippines", "namefr": "Philippines", "nationality": "Philippine", "iso2": "PH", "iso3": "PHL", "isonum": 608}}, {"model": "location.country", "pk": 178, "fields": {"nameus": "Pitcairn Islands", "namefr": "Iles Pitcairn", "nationality": "Anglaise", "iso2": "PN", "iso3": "PCN", "isonum": 612}}, {"model": "location.country", "pk": 179, "fields": {"nameus": "Poland", "namefr": "Pologne", "nationality": "Polonaise", "iso2": "PL", "iso3": "POL", "isonum": 616}}, {"model": "location.country", "pk": 180, "fields": {"nameus": "Guinea-Bissau", "namefr": "Guinée-Bissau", "nationality": "Bissau-Guinéenne", "iso2": "GW", "iso3": "GNB", "isonum": 624}}, {"model": "location.country", "pk": 181, "fields": {"nameus": "East Timor", "namefr": "Timor Oriental", "nationality": "Timoraise", "iso2": "TL", "iso3": "TLS", "isonum": 626}}, {"model": "location.country", "pk": 182, "fields": {"nameus": "Puerto Rico", "namefr": "Porto Rico", "nationality": "Porto-Ricaine", "iso2": "PR", "iso3": "PRI", "isonum": 630}}, {"model": "location.country", "pk": 183, "fields": {"nameus": "Qatar", "namefr": "Qatar", "nationality": "Qatarie", "iso2": "QA", "iso3": "QAT", "isonum": 634}}, {"model": "location.country", "pk": 184, "fields": {"nameus": "Réunion", "namefr": "Réunion", "nationality": "Réunionnaise", "iso2": "RE", "iso3": "REU", "isonum": 638}}, {"model": "location.country", "pk": 185, "fields": {"nameus": "Romania", "namefr": "Roumanie", "nationality": "Roumaine", "iso2": "RO", "iso3": "ROU", "isonum": 642}}, {"model": "location.country", "pk": 186, "fields": {"nameus": "Russia", "namefr": "Russie", "nationality": "Russe", "iso2": "RU", "iso3": "RUS", "isonum": 643}}, {"model": "location.country", "pk": 187, "fields": {"nameus": "Rwanda", "namefr": "Rwanda", "nationality": "Rwandaise", "iso2": "RW", "iso3": "RWA", "isonum": 646}}, {"model": "location.country", "pk": 188, "fields": {"nameus": "Saint Barthélemy", "namefr": "Saint Barthélemy", "nationality": "Française", "iso2": "BL", "iso3": "BLM", "isonum": 652}}, {"model": "location.country", "pk": 189, "fields": {"nameus": "Saint Helena", "namefr": "Saint Helene", "nationality": "Sainte-Hélénien", "iso2": "SH", "iso3": "SHN", "isonum": 654}}, {"model": "location.country", "pk": 190, "fields": {"nameus": "Saint Kitts and Nevis", "namefr": "Saint-Kitts-et-Nevis", "nationality": "Kitticien", "iso2": "KN", "iso3": "KNA", "isonum": 659}}, {"model": "location.country", "pk": 191, "fields": {"nameus": "Anguilla", "namefr": "Anguilla", "nationality": "Anguillane", "iso2": "AI", "iso3": "AIA", "isonum": 660}}, {"model": "location.country", "pk": 192, "fields": {"nameus": "Saint Lucia", "namefr": "Sainte-Lucie", "nationality": "Saint-Lucien", "iso2": "LC", "iso3": "LCA", "isonum": 662}}, {"model": "location.country", "pk": 193, "fields": {"nameus": "Saint Martin", "namefr": "Saint Martin (Française)", "nationality": "Saint-Martinoise", "iso2": "MF", "iso3": "MAF", "isonum": 663}}, {"model": "location.country", "pk": 194, "fields": {"nameus": "Saint Pierre and Miquelon", "namefr": "Saint Pierre et Miquelon", "nationality": "Saint-Pierraise", "iso2": "PM", "iso3": "SPM", "isonum": 666}}, {"model": "location.country", "pk": 195, "fields": {"nameus": "Saint Vincent and the Grenadines", "namefr": "Saint Vincent et les Grenadines", "nationality": "Saint-Vincentais et Grenadin", "iso2": "VC", "iso3": "VCT", "isonum": 670}}, {"model": "location.country", "pk": 196, "fields": {"nameus": "San Marino", "namefr": "République de Saint-Marin", "nationality": "Saint-Marinaise", "iso2": "SM", "iso3": "SMR", "isonum": 674}}, {"model": "location.country", "pk": 197, "fields": {"nameus": "São Tomé and Príncipe", "namefr": "Sao Tomé-et-Principe", "nationality": "Sao-Tomienne", "iso2": "ST", "iso3": "STP", "isonum": 678}}, {"model": "location.country", "pk": 198, "fields": {"nameus": "Saudi Arabia", "namefr": "Arabie Saoudite", "nationality": "Saoudienne", "iso2": "SA", "iso3": "SAU", "isonum": 682}}, {"model": "location.country", "pk": 199, "fields": {"nameus": "Senegal", "namefr": "Sénégal", "nationality": "Sénégalaise", "iso2": "SN", "iso3": "SEN", "isonum": 686}}, {"model": "location.country", "pk": 200, "fields": {"nameus": "Serbia", "namefr": "Serbie", "nationality": "Serbe", "iso2": "RS", "iso3": "SRB", "isonum": 688}}, {"model": "location.country", "pk": 201, "fields": {"nameus": "Seychelles", "namefr": "Seychelles", "nationality": "Seychellois", "iso2": "SC", "iso3": "SYC", "isonum": 690}}, {"model": "location.country", "pk": 202, "fields": {"nameus": "Sierra Leone", "namefr": "Sierra Leone", "nationality": "Sierra-Léonaise", "iso2": "SL", "iso3": "SLE", "isonum": 694}}, {"model": "location.country", "pk": 203, "fields": {"nameus": "Singapore", "namefr": "Singapoure", "nationality": "Singapourien", "iso2": "SG", "iso3": "SGP", "isonum": 702}}, {"model": "location.country", "pk": 204, "fields": {"nameus": "Slovakia", "namefr": "Slovaquie", "nationality": "Slovaque", "iso2": "SK", "iso3": "SVK", "isonum": 703}}, {"model": "location.country", "pk": 205, "fields": {"nameus": "Vietnam", "namefr": "Vietnam", "nationality": "Vietnamienne", "iso2": "VN", "iso3": "VNM", "isonum": 704}}, {"model": "location.country", "pk": 206, "fields": {"nameus": "Slovenia", "namefr": "Slovénie", "nationality": "Slovénienne", "iso2": "SI", "iso3": "SVN", "isonum": 705}}, {"model": "location.country", "pk": 207, "fields": {"nameus": "Somalia", "namefr": "Somalie", "nationality": "Somalienne", "iso2": "SO", "iso3": "SOM", "isonum": 706}}, {"model": "location.country", "pk": 208, "fields": {"nameus": "South Africa", "namefr": "Afrique du Sud", "nationality": "Sud-Africaine", "iso2": "ZA", "iso3": "ZAF", "isonum": 710}}, {"model": "location.country", "pk": 209, "fields": {"nameus": "Zimbabwe", "namefr": "Zimbabwe", "nationality": "Zimbabwéenne", "iso2": "ZW", "iso3": "ZWE", "isonum": 716}}, {"model": "location.country", "pk": 210, "fields": {"nameus": "Spain", "namefr": "Espagne", "nationality": "Espagnole", "iso2": "ES", "iso3": "ESP", "isonum": 724}}, {"model": "location.country", "pk": 211, "fields": {"nameus": "South Sudan", "namefr": "Soudan du Sud", "nationality": "Sud-Soudanaise", "iso2": "SS", "iso3": "SSD", "isonum": 728}}, {"model": "location.country", "pk": 212, "fields": {"nameus": "Sudan", "namefr": "Soudan", "nationality": "Soudannaise", "iso2": "SD", "iso3": "SDN", "isonum": 729}}, {"model": "location.country", "pk": 213, "fields": {"nameus": "Western Sahara", "namefr": "Sahara Occidental", "nationality": "Sahraouie", "iso2": "EH", "iso3": "ESH", "isonum": 732}}, {"model": "location.country", "pk": 214, "fields": {"nameus": "Suriname", "namefr": "Suriname", "nationality": "Surinamienne", "iso2": "SR", "iso3": "SUR", "isonum": 740}}, {"model": "location.country", "pk": 215, "fields": {"nameus": "Svalbard and Jan Mayen", "namefr": "Svalbard et Jan Mayen", "nationality": "Norvégienne", "iso2": "SJ", "iso3": "SJM", "isonum": 744}}, {"model": "location.country", "pk": 216, "fields": {"nameus": "Swaziland", "namefr": "Swaziland", "nationality": "Swazie", "iso2": "SZ", "iso3": "SWZ", "isonum": 748}}, {"model": "location.country", "pk": 217, "fields": {"nameus": "Sweden", "namefr": "Suède", "nationality": "Suédoise", "iso2": "SE", "iso3": "SWE", "isonum": 752}}, {"model": "location.country", "pk": 218, "fields": {"nameus": "Switzerland", "namefr": "Suisse", "nationality": "Suisse", "iso2": "CH", "iso3": "CHE", "isonum": 756}}, {"model": "location.country", "pk": 219, "fields": {"nameus": "Syria", "namefr": "Syrie", "nationality": "Syrienne", "iso2": "SY", "iso3": "SYR", "isonum": 760}}, {"model": "location.country", "pk": 220, "fields": {"nameus": "Tajikistan", "namefr": "Tajikistan", "nationality": "Tadjike", "iso2": "TJ", "iso3": "TJK", "isonum": 762}}, {"model": "location.country", "pk": 221, "fields": {"nameus": "Thailand", "namefr": "Thaïland", "nationality": "Thaïlandaise", "iso2": "TH", "iso3": "THA", "isonum": 764}}, {"model": "location.country", "pk": 222, "fields": {"nameus": "Togo", "namefr": "Togo", "nationality": "Togolaise", "iso2": "TG", "iso3": "TGO", "isonum": 768}}, {"model": "location.country", "pk": 223, "fields": {"nameus": "Tokelau", "namefr": "Tokelau", "nationality": "Tokelauien", "iso2": "TK", "iso3": "TKL", "isonum": 772}}, {"model": "location.country", "pk": 224, "fields": {"nameus": "Tonga", "namefr": "Tonga", "nationality": "Tonguien", "iso2": "TO", "iso3": "TON", "isonum": 776}}, {"model": "location.country", "pk": 225, "fields": {"nameus": "Trinidad and Tobago", "namefr": "Trinité-et-Tobago", "nationality": "Trinitéennes", "iso2": "TT", "iso3": "TTO", "isonum": 780}}, {"model": "location.country", "pk": 226, "fields": {"nameus": "United Arab Emirates", "namefr": "Emiras", "nationality": "Emirienne", "iso2": "AE", "iso3": "ARE", "isonum": 784}}, {"model": "location.country", "pk": 227, "fields": {"nameus": "Tunisia", "namefr": "Tunisie", "nationality": "Tunisienne", "iso2": "TN", "iso3": "TUN", "isonum": 788}}, {"model": "location.country", "pk": 228, "fields": {"nameus": "Turkey", "namefr": "Turkie", "nationality": "Turque", "iso2": "TR", "iso3": "TUR", "isonum": 792}}, {"model": "location.country", "pk": 229, "fields": {"nameus": "Turkmenistan", "namefr": "Turkmenistan", "nationality": "Turkmène", "iso2": "TM", "iso3": "TKM", "isonum": 795}}, {"model": "location.country", "pk": 230, "fields": {"nameus": "Turks and Caicos Islands", "namefr": "Iles Turks-et-Caïques", "nationality": "Anglaise", "iso2": "TC", "iso3": "TCA", "isonum": 796}}, {"model": "location.country", "pk": 231, "fields": {"nameus": "Tuvalu", "namefr": "Tuvalu", "nationality": "Tuvaluane", "iso2": "TV", "iso3": "TUV", "isonum": 798}}, {"model": "location.country", "pk": 232, "fields": {"nameus": "Uganda", "namefr": "Ouganda", "nationality": "Ougandaise", "iso2": "UG", "iso3": "UGA", "isonum": 800}}, {"model": "location.country", "pk": 233, "fields": {"nameus": "Ukraine", "namefr": "Ukraine", "nationality": "Ukrainienne", "iso2": "UA", "iso3": "UKR", "isonum": 804}}, {"model": "location.country", "pk": 234, "fields": {"nameus": "Macedonia", "namefr": "Macédoine", "nationality": "Macédonienne", "iso2": "MK", "iso3": "MKD", "isonum": 807}}, {"model": "location.country", "pk": 235, "fields": {"nameus": "Egypt", "namefr": "Egypte", "nationality": "Egyptienne", "iso2": "EG", "iso3": "EGY", "isonum": 818}}, {"model": "location.country", "pk": 236, "fields": {"nameus": "United Kingdom", "namefr": "Royaume Uni", "nationality": "Anglaise", "iso2": "GB", "iso3": "GBR", "isonum": 826}}, {"model": "location.country", "pk": 237, "fields": {"nameus": "Guernsey", "namefr": "Guernesey", "nationality": "Anglaise", "iso2": "GG", "iso3": "GGY", "isonum": 831}}, {"model": "location.country", "pk": 238, "fields": {"nameus": "Jersey", "namefr": "Jersey", "nationality": "Jersiaise", "iso2": "JE", "iso3": "JEY", "isonum": 832}}, {"model": "location.country", "pk": 239, "fields": {"nameus": "Isle of Man", "namefr": "Ile de Man", "nationality": "Anglaise", "iso2": "IM", "iso3": "IMN", "isonum": 833}}, {"model": "location.country", "pk": 240, "fields": {"nameus": "Tanzania", "namefr": "Tanzanie", "nationality": "Tanzanienne", "iso2": "TZ", "iso3": "TZA", "isonum": 834}}, {"model": "location.country", "pk": 241, "fields": {"nameus": "United States", "namefr": "Etats-Unis", "nationality": "Américaine", "iso2": "US", "iso3": "USA", "isonum": 840}}, {"model": "location.country", "pk": 242, "fields": {"nameus": "U.S. Virgin Islands", "namefr": "Iles Vierges des Etats-Unis", "nationality": "Américaine", "iso2": "VI", "iso3": "VIR", "isonum": 850}}, {"model": "location.country", "pk": 243, "fields": {"nameus": "Burkina Faso", "namefr": "Burkina", "nationality": "Burkinabé", "iso2": "BF", "iso3": "BFA", "isonum": 854}}, {"model": "location.country", "pk": 244, "fields": {"nameus": "Uruguay", "namefr": "Uruguay", "nationality": "Uruguayenne", "iso2": "UY", "iso3": "URY", "isonum": 858}}, {"model": "location.country", "pk": 245, "fields": {"nameus": "Uzbekistan", "namefr": "Uzbekisan", "nationality": "Ousbèke", "iso2": "UZ", "iso3": "UZB", "isonum": 860}}, {"model": "location.country", "pk": 246, "fields": {"nameus": "Venezuela", "namefr": "Vénézuela", "nationality": "Vénézuélienne", "iso2": "VE", "iso3": "VEN", "isonum": 862}}, {"model": "location.country", "pk": 247, "fields": {"nameus": "Wallis and Futuna", "namefr": "Wallis et Futuna", "nationality": "Wallisienne", "iso2": "WF", "iso3": "WLF", "isonum": 876}}, {"model": "location.country", "pk": 248, "fields": {"nameus": "Samoa", "namefr": "Samoa", "nationality": "Samoan", "iso2": "WS", "iso3": "WSM", "isonum": 882}}, {"model": "location.country", "pk": 249, "fields": {"nameus": "Yemen", "namefr": "Yemen", "nationality": "Yéménite", "iso2": "YE", "iso3": "YEM", "isonum": 887}}, {"model": "location.country", "pk": 250, "fields": {"nameus": "Zambia", "namefr": "Zambie", "nationality": "Zambienne", "iso2": "ZM", "iso3": "ZMB", "isonum": 894}}, {"model": "location.country", "pk": 251, "fields": {"nameus": "Apatride", "namefr": "Apatride", "nationality": "Apatride", "iso2": "XA", "iso3": "XXA", "isonum": 991}}, {"model": "location.country", "pk": 252, "fields": {"nameus": "Réfugié ONU", "namefr": "Réfugié ONU", "nationality": "Réfugié ONU", "iso2": "XB", "iso3": "XXB", "isonum": 992}}, {"model": "location.country", "pk": 253, "fields": {"nameus": "Réfugié (autre)", "namefr": "Réfugié (autre)", "nationality": "Réfugié (autre)", "iso2": "XC", "iso3": "XXC", "isonum": 993}}, {"model": "location.country", "pk": 254, "fields": {"nameus": "Non Spécifiée", "namefr": "Non Spécifiée", "nationality": "Non Spécifiée", "iso2": "XX", "iso3": "XXX", "isonum": 999}}, {"model": "location.place", "pk": 1, "fields": {"name": "Ecole du pré vert", "address": "Rue René Franq", "postal": 1428, "city": "Lillois-Witterzée", "country": 1, "nbkm": null, "timing": null, "active": true}}, {"model": "location.place", "pk": 2, "fields": {"name": "Ten Gaerde", "address": "Jozef Mertensstraat, 17b", "postal": 1702, "city": "Dilbeek", "country": 1, "nbkm": 37, "timing": 28, "active": true}}, {"model": "location.place", "pk": 3, "fields": {"name": "Gemeentelijk Sportcentrum Hulshout", "address": "Industriepark 3", "postal": 2235, "city": "Hulsout", "country": 1, "nbkm": 75, "timing": 60, "active": true}}, {"model": "location.place", "pk": 4, "fields": {"name": "Sportcentrum Sint-gillis Dendermonde", "address": "Van Langenhovestraat 203 A", "postal": 9200, "city": "Sint-Gillis-Bij-Dendermonde", "country": 1, "nbkm": 65, "timing": 55, "active": true}}, {"model": "location.place", "pk": 5, "fields": {"name": "Gimno Clube de Santarém", "address": "Pavilhão Gimnodesportivo de Santarém Sala 2, Nave Anexa", "postal": 2000, "city": "Santarem", "country": 2, "nbkm": 2000, "timing": 300, "active": true}}, {"model": "location.place", "pk": 6, "fields": {"name": "Evenementenhal Zonhoven", "address": "Rozenkransweg 4", "postal": 3520, "city": "Zonhoven", "country": 1, "nbkm": 100, "timing": 65, "active": true}}, {"model": "location.place", "pk": 7, "fields": {"name": "Stedelijke Sporthal Eeklo", "address": "Burgemeester Lionel Pussemierstraat 157", "postal": 9900, "city": "Eeklo", "country": 1, "nbkm": 110, "timing": 75, "active": true}}, {"model": "location.place", "pk": 8, "fields": {"name": "Sportpark Beveren", "address": "Klapperstraat 103", "postal": 9120, "city": "Beveren-Waas", "country": 1, "nbkm": 80, "timing": 80, "active": true}}, {"model": "location.place", "pk": 9, "fields": {"name": "Hemelrijkhal", "address": "Moerkantsebaan 89", "postal": 2910, "city": "Essen", "country": 1, "nbkm": 120, "timing": 75, "active": true}}, {"model": "location.place", "pk": 10, "fields": {"name": "Sportcomplex Palaestra", "address": "Kastanjelaan 35", "postal": 9800, "city": "Petegem-aan-de-Leie", "country": 1, "nbkm": 95, "timing": 60, "active": true}}, {"model": "location.place", "pk": 11, "fields": {"name": "Sporthal 't Venneke", "address": "Den Geer 21", "postal": 2180, "city": "Ekeren", "country": 1, "nbkm": 85, "timing": 55, "active": true}}, {"model": "location.place", "pk": 12, "fields": {"name": "Topsporthal Vlaanderen", "address": "Zuiderlaan 14", "postal": 9000, "city": "Gent", "country": 1, "nbkm": 85, "timing": 55, "active": true}}, {"model": "location.place", "pk": 13, "fields": {"name": "Sport Vlaanderen Netepark", "address": "Vorselaarsebaan 60", "postal": 2200, "city": "Herentals", "country": 1, "nbkm": 102, "timing": 70, "active": true}}, {"model": "location.place", "pk": 14, "fields": {"name": "Gemeentelijke Sporthal Ingelmunster", "address": "Bollewerpstraat 92A", "postal": 8770, "city": "Ingelmunster", "country": 1, "nbkm": 120, "timing": 80, "active": true}}, {"model": "location.place", "pk": 15, "fields": {"name": "Sporthal Den Uyt", "address": "Rode Kruislaan 20", "postal": 2400, "city": "Mol", "country": 1, "nbkm": 115, "timing": 80, "active": true}}, {"model": "location.place", "pk": 16, "fields": {"name": "Sporthal Bleukens", "address": "Hoolsterberg 36", "postal": 2490, "city": "Balen", "country": 1, "nbkm": 112, "timing": 75, "active": true}}, {"model": "location.club", "pk": 1, "fields": {"place": 1, "name": "Flying Acrobatics Trampoline Club", "acronym": "FATC", "active": true}}, {"model": "location.club", "pk": 2, "fields": {"place": 2, "name": "Ten Gaerde", "acronym": "TG", "active": true}}, {"model": "planning.season", "pk": 1, "fields": {"datebegin": "2018-09-03T00:00:00", "dateend": "2019-08-31T23:59:59", "label": "2018-19"}}, {"model": "planning.season", "pk": 2, "fields": {"datebegin": "2020-08-15T00:00:00", "dateend": "2021-08-14T00:00:00", "label": "2020-21"}}, {"model": "planning.eventtype", "pk": 1, "fields": {"name": "Compétition", "acronym": "CPT"}}, {"model": "planning.eventtype", "pk": 2, "fields": {"name": "Démonstration", "acronym": "Démo"}}, {"model": "planning.eventtype", "pk": 3, "fields": {"name": "Initiation", "acronym": "Ini"}}, {"model": "planning.eventtype", "pk": 4, "fields": {"name": "Stage", "acronym": "Stg"}}, {"model": "planning.event", "pk": 1, "fields": {"content": "Test de l'interface graphique", "datebegin": "2019-03-31T09:03:00", "dateend": "2019-03-31T19:03:00", "place": 8, "eventtype": 1, "name": "GymFed PV3 2019"}}, {"model": "planning.event", "pk": 2, "fields": {"content": "Championnat FfG.", "datebegin": "2019-05-05T09:30:00", "dateend": "2019-05-05T16:00:00", "place": 1, "eventtype": 1, "name": "Championnat FfG"}}, {"model": "planning.event", "pk": 3, "fields": {"content": "Chpt flamand", "datebegin": "2019-04-27T09:00:00", "dateend": "2019-04-28T18:00:00", "place": 3, "eventtype": 1, "name": "Vlaams Kampioenschap"}}, {"model": "planning.event", "pk": 4, "fields": {"content": "Fête du club l’avant dernier dimanche de juin. Répétitions générale à 10h, démo à 13.", "datebegin": "2019-06-23T09:06:00", "dateend": "2019-06-23T17:06:00", "place": 1, "eventtype": 2, "name": "Fête du club"}}, {"model": "planning.event", "pk": 5, "fields": {"content": "(à venir)", "datebegin": "2019-05-18T09:00:00", "dateend": "2019-05-19T16:00:00", "place": 4, "eventtype": 1, "name": "Championnat de Belgique 2019"}}, {"model": "planning.event", "pk": 6, "fields": {"content": "(à venir… troisième test)", "datebegin": "2019-07-04T09:07:00", "dateend": "2019-07-07T09:07:00", "place": 5, "eventtype": 1, "name": "Scalabis Cup 2019"}}, {"model": "planning.event", "pk": 7, "fields": {"content": "", "datebegin": "2019-02-10T09:00:00", "dateend": "2019-02-10T16:00:00", "place": 1, "eventtype": 1, "name": "Championnat BCBW (Open)"}}, {"model": "planning.event", "pk": 8, "fields": {"content": "", "datebegin": "2019-01-26T10:50:00", "dateend": "2019-01-27T10:50:00", "place": 6, "eventtype": 1, "name": "GymFed PV1 2019"}}, {"model": "planning.event", "pk": 9, "fields": {"content": "", "datebegin": "2019-02-16T11:26:00", "dateend": "2019-02-17T11:26:00", "place": 7, "eventtype": 1, "name": "GymFed PV2 2019"}}, {"model": "planning.event", "pk": 10, "fields": {"content": "", "datebegin": "2018-01-28T09:00:00", "dateend": "2018-01-28T17:00:00", "place": 4, "eventtype": 1, "name": "GymFed PV1 2018"}}, {"model": "planning.event", "pk": 11, "fields": {"content": "", "datebegin": "2018-03-25T09:00:00", "dateend": "2018-03-25T17:00:00", "place": 16, "eventtype": 1, "name": "GymFed PV3 2018"}}, {"model": "planning.event", "pk": 12, "fields": {"content": "", "datebegin": "2018-05-20T09:00:00", "dateend": "2018-05-20T17:00:00", "place": 9, "eventtype": 1, "name": "Championnat de Belgique 2018"}}, {"model": "planning.event", "pk": 13, "fields": {"content": "", "datebegin": "2017-01-28T09:00:00", "dateend": "2017-01-29T17:00:00", "place": 13, "eventtype": 1, "name": "GymFed PV1 2017"}}, {"model": "planning.event", "pk": 14, "fields": {"content": "", "datebegin": "2017-02-18T09:00:00", "dateend": "2017-02-19T17:00:00", "place": 14, "eventtype": 1, "name": "GymFed PV2 2017"}}, {"model": "planning.event", "pk": 15, "fields": {"content": "", "datebegin": "2017-03-25T09:00:00", "dateend": "2017-03-26T17:00:00", "place": 15, "eventtype": 1, "name": "GymFed PV3 2017"}}, {"model": "planning.event", "pk": 16, "fields": {"content": "", "datebegin": "2017-05-13T09:00:00", "dateend": "2017-05-14T17:00:00", "place": 8, "eventtype": 1, "name": "Championnat de Belgique 2017"}}, {"model": "planning.event", "pk": 18, "fields": {"content": "", "datebegin": "2020-02-01T09:00:00", "dateend": "2020-02-02T17:00:00", "place": 6, "eventtype": 1, "name": "GymFed PV1 2020"}}, {"model": "planning.event", "pk": 19, "fields": {"content": "", "datebegin": "2020-03-07T09:00:00", "dateend": "2020-03-08T17:00:00", "place": 9, "eventtype": 1, "name": "GymFed PV2 2020"}}, {"model": "planning.event", "pk": 20, "fields": {"content": "", "datebegin": "2020-03-28T09:00:00", "dateend": "2020-03-29T17:00:00", "place": 10, "eventtype": 1, "name": "GymFed PV3 2020"}}, {"model": "planning.event", "pk": 21, "fields": {"content": "", "datebegin": "2020-05-02T09:00:00", "dateend": "2020-05-03T17:00:00", "place": 11, "eventtype": 1, "name": "Vlaams Kampioenschap"}}, {"model": "planning.event", "pk": 22, "fields": {"content": "", "datebegin": "2020-05-30T09:00:00", "dateend": "2020-05-31T17:00:00", "place": 12, "eventtype": 1, "name": "Groot Belgisch Kampioenschap"}}, {"model": "planning.event_participation", "pk": 1, "fields": {"event": 5, "gymnast": 1, "rank": 10}}, {"model": "planning.event_participation", "pk": 2, "fields": {"event": 5, "gymnast": 5, "rank": 6}}, {"model": "planning.event_participation", "pk": 3, "fields": {"event": 5, "gymnast": 11, "rank": 2}}, {"model": "planning.event_participation", "pk": 4, "fields": {"event": 5, "gymnast": 4, "rank": 5}}, {"model": "planning.event_participation", "pk": 5, "fields": {"event": 5, "gymnast": 2, "rank": 5}}, {"model": "planning.event_participation", "pk": 6, "fields": {"event": 6, "gymnast": 11, "rank": 0}}, {"model": "planning.event_participation", "pk": 7, "fields": {"event": 6, "gymnast": 5, "rank": 0}}, {"model": "planning.course", "pk": 1, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 6, "hour_begin": "10:00:00", "hour_end": "12:00:00", "season": 1, "trainers": [1], "gymnasts": [9, 1, 8, 2, 6, 7]}}, {"model": "planning.course", "pk": 2, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 1, "hour_begin": "17:00:00", "hour_end": "19:00:00", "season": 1, "trainers": [1, 2], "gymnasts": [9, 1, 12, 8, 2, 4, 5, 6, 7]}}, {"model": "planning.course", "pk": 3, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 3, "hour_begin": "17:00:00", "hour_end": "19:00:00", "season": 1, "trainers": [1, 2, 3], "gymnasts": [9, 1, 8, 5, 3, 6, 7]}}, {"model": "planning.course", "pk": 4, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 1, "iso_day_number": 5, "hour_begin": "17:15:00", "hour_end": "19:15:00", "season": 1, "trainers": [1], "gymnasts": [1, 4, 5, 3, 7]}}, {"model": "planning.course", "pk": 5, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-06-30T23:59:59", "club": 2, "iso_day_number": 6, "hour_begin": "19:00:00", "hour_end": "21:30:00", "season": 1, "trainers": [1], "gymnasts": [11, 4, 5]}}, {"model": "planning.course", "pk": 6, "fields": {"content": "", "datebegin": "2018-09-01T00:00:00", "dateend": "2019-09-01T23:59:59", "club": 2, "iso_day_number": 6, "hour_begin": "11:00:00", "hour_end": "13:00:00", "season": 1, "trainers": [1], "gymnasts": []}}, {"model": "planning.training", "pk": 1, "fields": {"gymnast": 1, "course": 1, "trainingdate": "2019-03-16"}}, {"model": "planning.training", "pk": 2, "fields": {"gymnast": 1, "course": 2, "trainingdate": "2019-03-18"}}, {"model": "planning.training", "pk": 3, "fields": {"gymnast": 1, "course": 3, "trainingdate": "2019-03-20"}}, {"model": "planning.training", "pk": 4, "fields": {"gymnast": 1, "course": 4, "trainingdate": "2019-03-22"}}, {"model": "planning.training", "pk": 5, "fields": {"gymnast": 1, "course": 1, "trainingdate": "2019-03-23"}}, {"model": "planning.round", "pk": 1, "fields": {"content": "", "training": 1, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 2, "fields": {"content": "", "training": 1, "educative": null, "round_information": "| 1, 2 et 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 3, "fields": {"content": "", "training": 1, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 4, "fields": {"content": "", "training": 1, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 5, "fields": {"content": "", "training": 1, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 6, "fields": {"content": "", "training": 2, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 7, "fields": {"content": "", "training": 2, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 8, "fields": {"content": "", "training": 2, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 9, "fields": {"content": "", "training": 2, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 10, "fields": {"content": "", "training": 2, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 11, "fields": {"content": "", "training": 2, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 12, "fields": {"content": "", "training": 2, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 13, "fields": {"content": "", "training": 3, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 14, "fields": {"content": "", "training": 3, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 15, "fields": {"content": "", "training": 3, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 16, "fields": {"content": "", "training": 3, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 17, "fields": {"content": "", "training": 3, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 18, "fields": {"content": "", "training": 3, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 19, "fields": {"content": "", "training": 3, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 20, "fields": {"content": "", "training": 4, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": 9, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 21, "fields": {"content": "", "training": 4, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 22, "fields": {"content": "", "training": 4, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": 8, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 23, "fields": {"content": "", "training": 4, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 24, "fields": {"content": "", "training": 4, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 25, "fields": {"content": "", "training": 4, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": 7, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 26, "fields": {"content": "", "training": 4, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": 7, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 27, "fields": {"content": "", "training": 5, "educative": null, "round_information": "41*", "round_number": 7, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 28, "fields": {"content": "", "training": 5, "educative": null, "round_information": "4.-*", "round_number": 6, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 29, "fields": {"content": "", "training": 5, "educative": null, "round_information": "Tombers de bases", "round_number": 5, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 30, "fields": {"content": "", "training": 5, "educative": null, "round_information": "Sauts de base", "round_number": 4, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 31, "fields": {"content": "", "training": 5, "educative": null, "round_information": "| & |4", "round_number": 3, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 32, "fields": {"content": "", "training": 5, "educative": null, "round_information": "|1, 2 & 3", "round_number": 2, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 33, "fields": {"content": "", "training": 5, "educative": null, "round_information": "LIBRE", "round_number": 1, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": null, "nb_of_success": null, "is_important": false}}, {"model": "planning.round", "pk": 34, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [-5]", "round_number": 8, "gymnast_evaluation": null, "coach_evaluation": 6, "coachid": null, "nb_of_realisation": 2, "nb_of_success": null, "is_important": true}}, {"model": "planning.round", "pk": 35, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [3-6]", "round_number": 9, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 2, "nb_of_success": null, "is_important": true}}, {"model": "planning.round", "pk": 36, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [6-8]", "round_number": 10, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": true}}, {"model": "planning.round", "pk": 37, "fields": {"content": "", "training": 4, "educative": null, "round_information": "L1 [8-]", "round_number": 11, "gymnast_evaluation": null, "coach_evaluation": null, "coachid": null, "nb_of_realisation": 3, "nb_of_success": null, "is_important": true}}, {"model": "objective.educative", "pk": 1, "fields": {"content": "", "long_label": "Saut groupé", "short_label": "o", "difficulty": "0.0", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 2, "fields": {"content": "", "long_label": "Chandelle", "short_label": "Chandelle", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 3, "fields": {"content": "", "long_label": "Saut carpé", "short_label": "<", "difficulty": "0.0", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [5, 10], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 4, "fields": {"content": "", "long_label": "Saut écart", "short_label": "//", "difficulty": "0.0", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 5, "fields": {"content": "", "long_label": "Tomber Assis", "short_label": "Assis", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [184], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 6, "fields": {"content": "", "long_label": "Tomber plat dos tendu bras en haut", "short_label": "Plat dos (beh)", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [199, 185, 5], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 7, "fields": {"content": "", "long_label": "Tomber plat dos groupé", "short_label": "Plat dos o", "difficulty": "0.1", "level": 3, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [1, 6], "prerequisites": [277, 6]}}, {"model": "objective.educative", "pk": 8, "fields": {"content": "", "long_label": "Tomber plat dos carpé", "short_label": "Plat dos <", "difficulty": "0.1", "level": 3, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [3, 6], "prerequisites": [278, 6]}}, {"model": "objective.educative", "pk": 9, "fields": {"content": "", "long_label": "Tomber dos", "short_label": "Dos", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [185, 6], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 10, "fields": {"content": "Commentaires concernant le 4 pattes :\r\n\r\n - comment l'aborder\r\n - les erreurs 'courantes'\r\n - blablabla\r\n - …", "long_label": "Tomber quadrupédique", "short_label": "4 pattes", "difficulty": "0.1", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [183], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 11, "fields": {"content": "", "long_label": "Tomber ventre", "short_label": "Ventre", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [181, 197], "prerequisites": [10]}}, {"model": "objective.educative", "pk": 12, "fields": {"content": "", "long_label": "Tomber ventre ouvert", "short_label": "Ventre (", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 13, "fields": {"content": "", "long_label": "Tomber dos fermé", "short_label": "Dos fermé", "difficulty": "0.1", "level": 4, "rank": 10, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [9], "prerequisites": [2, 6]}}, {"model": "objective.educative", "pk": 14, "fields": {"content": "", "long_label": "Debout (de l'assis)", "short_label": "Debout", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [184], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 15, "fields": {"content": "", "long_label": "Debout (du ventre)", "short_label": "Debout", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [182], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 16, "fields": {"content": "", "long_label": "Debout (du dos)", "short_label": "Debout", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [14], "prerequisites": [9]}}, {"model": "objective.educative", "pk": 17, "fields": {"content": "", "long_label": "Petit piqué groupé", "short_label": "Petit piqué", "difficulty": "0.3", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [261]}}, {"model": "objective.educative", "pk": 18, "fields": {"content": "", "long_label": "Petit piqué carpé", "short_label": "Petit piqué <", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [17]}}, {"model": "objective.educative", "pk": 19, "fields": {"content": "", "long_label": "Piqué tendu", "short_label": "Piqué", "difficulty": "0.3", "level": 8, "rank": 9, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [155]}}, {"model": "objective.educative", "pk": 20, "fields": {"content": "", "long_label": "Piqué groupé", "short_label": "Piqué o", "difficulty": "0.3", "level": 6, "rank": 6, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [356, 153]}}, {"model": "objective.educative", "pk": 21, "fields": {"content": "", "long_label": "Piqué carpé", "short_label": "Piqué <", "difficulty": "0.3", "level": 7, "rank": 9, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [357, 154]}}, {"model": "objective.educative", "pk": 22, "fields": {"content": "Il constitue une étape à franchir très importante pour le débutant. C'est l'exercice qui va lui permettre de passer dans un monde nouveau, inconnu, les rotations aériennes en avant. Il fascine les jeunes élèves en raison de l'apparente facilité de réalisation et de leur envie pressante de réaliser leurs premiers saltos.\r\n\r\nLe salto avant est une rotation transversale avant de 360° dans l’espace, départ de la station debout arrivée à la station debout.\r\n\r\n\r\n## Analyse technique\r\nA l’entrée de la toile, les bras sont verticaux au dessus de la tête, le corps allongé et gainé en fond de toile. Il ne faut pas anticiper le mouvement par un balayage du buste, mais bien attendre le renvoi de la toile. En sortie de celle-ci, nous aurons un balayage du buste synchronisé avec le renvoi de la toile.\r\n\r\nLors de la mise en rotation, les fessiers et les abdominaux doivent être contractés énergiquement afin d’éviter que le bassin ne parte vers l’arrière. Le regard sera dirigé vers les jambes pendant la rotation. L’inconvénient à l’ouverture du salto avant est que la prise d’informations visuelles ne vient que très tardivement. C’est pourquoi le salto avant ne s'utilise pas à l'intérieur d'une série, il sera remplacé avantageusement pas un *barani*, qui permet une prise d'informations visuelles plus favorable à l'enchaînement.\r\n\r\nLes bras, les omoplates et les épaules seront soulevés en direction du plafond, légèrement vers l’avant. Le corps s’élève, puis une action énergique de fermeture permet d’adopter une position groupée ou carpée. Cette action sera suivie de l’action inverse d’ouverture à l’oblique avant haute pour être totale à une heure au plus tard, les bras collés le long du corps. Le corps amorcera l’approche de la toile en restant dans une position gainée.\r\n\r\n\r\n## Biomécanique\r\nAu take-off, les membres inférieurs sont verticaux, le tronc incliné vers l'avant formant un angle de rotation de 50° par rapport à la verticale. Les membres supérieurs sont élevés, tendus au dessus de la tête. Le regard est fixé au loin à l'oblique basse. Cette position placera le centre de gravité en avant du polygone de sustentation.\r\n\r\nL'élévation du corps est créée par la réaction de la toile à l'action des membres inférieurs, tendus en sortie de toile. Le centre de gravité se trouvant en avant de la réaction de la toile, la poussée est excentrique et crée une rotation en avant autour d'un axe transversal.\r\n\r\nL'abaissement des membres supérieurs augmente le moment angulaire de l'ensemble du corps (transfert de moments angulaires relatifs). La projection du centre de gravité est légèrement en avant de la base d'appui. Le *salto avant* va se réaliser avec un déplacement vers l'avant (30 à 50 cm). Ce déplacement est normal et doit être recherché par l'exécutant.\r\n\r\nLe corps s'élève animé d'une rotation vers l'avant autour de l'axe transversal. Une action dynamique et explosive de fermeture du corps permet d’adopter soit une position groupée, soit une position carpée. Cette fermeture sur le tronc se fait lors de la phase ascendante. La position est bien marquée, les mains attrapent les genoux ou les chevilles et la vitesse maximale de la rotation est, à ce moment, atteinte.\r\n\r\nLa fermeture est suivie d’une action inverse d’ouverture tout aussi dynamique et explosive, à la verticale. Les jambes, les cuisses et le bassin commencent à se réaligner, les bras s’allongent le long du corps pour tendre vers une position tendue.\r\n\r\nL'action de pénétration des membres inférieurs dans la toile doit être verticale afin que leur cône de pénétration soit symétrique par rapport à une verticale abaissée au centre du polygone de sustentation. C'est cette condition qui permet d'obtenir une réaction verticale utilisée par le trampoliniste pour la réalisation du saut suivant.\r\n\r\n\r\n## Démarche pédagogique\r\nComme dans toute réalisation nouvelle, il ne faut pas exiger du débutant un salto avant parfait, et surtout pas une ouverture parfaite, que ce soit en termes de position ou de timing. L'ouverture idéale ne pourra se faire que quand l'élève aura acquis tous les éléments nécessaires à sa réalisation, à commencer par la capacité de réaliser un salto avant carpé (pour un groupé) ou tendu (pour un carpé), ainsi que la capacité de réaliser un salto avant groupé (ou carpé suivant le cas) jusqu'au ventre.\r\n\r\nLors de l'apprentissage, il ne faudra pas hésiter à être progressif et à avancer étapes par étapes. Il ne faudra pas non plus hésiter à avoir recours à des manipulations. Manipulations et utilisation de tapis ont un point commun : mieux vaut une fois de trop qu'une fois trop peu !\r\n\r\n\r\n### Prérequis\r\n\r\nToutes les figures avec un départ vers l'avant préparent au *salto avant*. Nous y retrouvons l'essentiel : la poussée complète, le placement des membres supérieurs et la position de la tête.\r\n\r\n - 4 pattes\r\n - Ventre\r\n - Petit piqué\r\n - Culbute avant (au sol)\r\n\r\nAttention cependant au départ de ces figures : certaines, telles que le *4 pattes* et le *ventre* n'utilisent pas le même mouvement de bras. Le *salto avant*, le *petit piqué*, ... exigent un placement de bras alors que le *ventre* et le *4 pattes* exigent un lancer de bras.\r\n\r\n\r\n### Educatifs\r\n\r\nVoici un ensemble d'éducatifs qu'il est possible de travailler grâce à des montages au sol.\r\n\r\n#### montage pour rotation\r\n\r\n - Culbute sur banc ou plinth (axe).\r\n - Culbute sur mousse penché (vitesse).\r\n\r\n\r\n#### montage pour départ\r\n\r\n - Culbute par-dessus un obstacle (enrouler).\r\n - Culbute sur un obstacle (montée).\r\n\r\n\r\n#### montage pour ouverture\r\n\r\n - Culbute sur un mousse élevé, arrivée à terre.\r\n - Culbute sur un mousse penché, ouverture plat dos.\r\n\r\n\r\n\r\n\r\n### Progressions\r\n\r\nDeux progressions différentes existent pour aborder le *salto avant*. Il n'y en a pas de meilleure ou de moins bonne : leur efficacité dépend des facilités d'apprentissage de l'élève et du bagage acrobatique déjà acquis. Mais avant d'aborder ces deux progressions, il faut en réaliser une autre : l'apprentissage de l'anticipation de bras.\r\n\r\n#### Apprentissage de l’anticipation de bras\r\n\r\nLa technique n'est pas très compliquée. Néanmoins, c'est un mouvement qui sera utile tout au long de la carrière du trampoliniste. Il ne faut donc pas hésiter à prendre le temps nécessaire pour que l'élève maîtrise correctement cette technique.\r\n\r\nIl faut commencer par demander à l'élève de réaliser plusieurs chandelles en gardant les bras tendus, collés aux oreilles. L'élève doit ensuite réaliser le même exercice mais, cette fois, les bras tendus, en bas, collés au corps.\r\n\r\nDemander ensuite à l'élève de réaliser des chandelles alternées : lors de la première, l'élève monte les bras ; lors de la suivante, il les abaisse. La montée et descente des bras se fait par le côté. Une fois l'élève capable de cela, il faut lui demander de réaliser le même exercice avec la montée et la descente des bras au cours de la même chandelle.\r\n\r\nL'élève doit ensuite réaliser l'anticipation de bras, à savoir trois mouvements de bras au cours de la même chandelle. Les deux premiers sont les mouvements normaux d'une chandelle habituelle, le deuxième est simplement réalisé plus rapidement afin de pouvoir, avant d'avoir atteint la phase de landing, commencer à remonter les bras de manière à ce que, au point mort bas, les bras soient correctement placés, tendus, collés aux oreilles.\r\n\r\nUne fois cette étape maîtrisée, on peut varier le saut sur lequel l'anticipation de bras est faite, en commençant par un saut de base.\r\n\r\n#### Par 4 pattes\r\n\r\nPasser par la position quadrupédique est sans doute la première approche qui peut être faite du salto avant de par sa similitude avec ce dernier et sa simplicité d’exécution. Cette approche permettra aussi de travailler l'ouverture ainsi que le contrôle de rotation.\r\n\r\nIl ne faudra pas hésiter à revenir à certaines de ces étapes une fois le salto acquis, afin d’accroître la maîtrise des moments précités. Avant d'aborder le vif du sujet nous proscrirons une étape précise, celle du *4 pattes - ATR*. Cette étape nécessite la mise de main dans la toile va amener à une ouverture des épaules, du corps, \\ldots et cela contrecarrera l'apprentissage plus qu'autre chose.\r\n\r\nIl faut, comme première étape, reprendre une étape de la progression du *petit piqué* : Demander à l'élève de réaliser un *4 pattes - ½ salto, dos*. Là encore, les mains restent en contact jusqu'au passage de tête de l'exécutant et, lors des premières réalisations, l’entraîneur veillera à demander à l'élève d'aller jusqu'à l'assis avant de demander une arrivée dos : mieux vaut s'assurer que l'exécutant à trop de rotation (arrivée assis) plutôt que trop peu (arrivée nuque).\r\n\r\nA partir de cette progression, et une fois celle-ci maîtrisée, il faut demander à l'élève de réaliser une fermeture groupée immédiatement suivie d'une demi-ouverture afin d'arriver assis. Une fois l'arrivée assis bien maîtrisée, demander à l'élève de réaliser le même exercice mais avec une arrivée plat dos. Ici encore il vaut mieux d'abord privilégier une grande quantité de rotation avant d'affiner le contrôle et de diminuer cette quantité. Cet étape peut continuer d'être travaillée en parallèle et même après l'étape suivante, en mettant alors l'accent sur le moment et le dynamisme de l'ouverture.\r\n\r\nL'étape d'après consiste à demander à l'élève une arrivée debout, droit, sur ses pieds et, si possible, de pouvoir effectuer une chandelle après. Il faudra veiller à privilégier une légère sous-rotation afin d'éviter les accidents.\r\n\r\nCes deux dernières étapes devraient, dans l'idéal, également pouvoir être réalisées à partir d'un tomber genoux. De la sorte, le nombre de quarts de rotation du buste est augmenté et participe ainsi à la complexification de l'étape d'apprentissage.\r\n\r\n#### Par culbute\r\n\r\nSeconde approche du salto avant. Celle-ci à l'avantage de mettre l'accent sur la mise en rotation depuis la station, via l'évolution vers un placement de plus en plus droit.\r\n\r\nLà aussi, des étapes de la progression du *petit piqué* seront reprises et quelque peu modifiées afin de mieux correspondre à notre objectif.\r\n\r\nDemander à l'élève de se placer sur une des lignes rouges verticales, accroupi, et de réaliser une culbute avant comme s'il se trouvait au sol. Demander plusieurs répétitions et veiller au bon placement des mains, au rentrer de tête de l'élève et à la manière dont il pilote la culbute. Cette dernière devra se faire le plus possible sur un axe frontal à l'élève. Si, une fois cette étape maîtrisée, l'élève peut faire pareil avec une prise des genoux en mains.\r\n\r\nDemander à l'élève de se placer sur une des lignes rouges, accroupi, et de réaliser une culbute avant, bras tendus sur le côté afin que les mains ne puissent pas prendre appui sur la toile. Demander plusieurs répétitions et veiller au bon placement des mains, au rentrer de tête de l'élève et à la manière dont il pilote la culbute. Cette dernière devra se faire le plus possible sur un axe frontal à l'élève. Si, une fois cette étape maîtrisée, l'élève peut faire pareil avec une prise des genoux en mains, cela sera utile pour plus tard. Une fois maîtrisé depuis un départ accroupi, demander le même exercice, départ debout dans une position carpée, bras tendus sur le côté, avec les jambes pliées (elles devront l'être de moins en moins au fil des répétitions, jusqu'à être complètement tendues).\r\n\r\nMême démarche qu'à l’étape précédente, si ce n'est que l'élève doit essayer, lors de sa culbute, que ni les mains ni la tête (y compris l'arrière de celle-ci) ne touche le support à aucun moment. Si l'élève n'y arrive pas, l'entraîneur peut lui conseiller de donner une impulsion avec ses chevilles et ses pieds afin de pouvoir arriver directement sur le haut du dos lors de la culbute.\r\n\r\nDemander à l'élève de se placer sur une des lignes rouges, debout, jambes tendues, en position carpée, et de réaliser une culbute avant, bras tendus sur le côté, de manière à ce que ni les mains, ni la tête ne touchent le support devant lui. Cette fois-ci l'élève doit faire des rebonds, même petits. Dans un premier temps, il sera demandé à l'élève d'aller jusqu'à l'assis, puis, une fois que cette arrivée sera maîtrisée, il lui sera alors demandé de n'aller \"que\" jusqu'au dos. Une fois que l'élève commence à maîtriser l'exercice, l'amplitude des bonds peut être augmentée.\r\n\r\n\r\n\r\n### Défauts type\r\n#### Appréhension au départ\r\n\r\n - Se penche en avant/Recule les pieds à la dernière chandelle.\r\n - Fermeture du bassin dans la toile.\r\n - Trop rapide avec les bras.\r\n - Ne regarde pas devant.\r\n - Ne travaille pas avec les épaules.\r\n\r\n\r\n#### Appréhension à l’arrivée\r\n\r\n - Regarde sur le côté à l’ouverture.\r\n - Reste corps fermé pour regarder en bas.\r\n - Ouvre trop le corps (banane), cherche la toile avec les pieds.\r\n\r\n\r\n## Evolutions\r\nLe *salto avant* a peu d'utilité en tant que tel mais possède deux évolutions principales : le *barani* et le *double avant* soit via la *1 ¾* soit via le *half out*. Une autre évolution possible est d'utiliser le salto avant à la suite d'une arrivée dos via le *ball out* ou *barani ball out*.", "long_label": "Salto avant groupé", "short_label": "Avant o", "difficulty": "0.5", "level": 5, "rank": 8, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [207, 259, 17]}}, {"model": "objective.educative", "pk": 23, "fields": {"content": "", "long_label": "Salto avant carpé", "short_label": "Avant <", "difficulty": "0.6", "level": 6, "rank": 9, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [380, 18]}}, {"model": "objective.educative", "pk": 24, "fields": {"content": "", "long_label": "Salto avant tendu", "short_label": "Avant /", "difficulty": "0.6", "level": 8, "rank": 10, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [23]}}, {"model": "objective.educative", "pk": 25, "fields": {"content": "", "long_label": "Salto arrière groupé", "short_label": "Arrière o", "difficulty": "0.5", "level": 7, "rank": 8, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [362, 46, 7]}}, {"model": "objective.educative", "pk": 26, "fields": {"content": "", "long_label": "Salto arrière carpé", "short_label": "Arrière <", "difficulty": "0.6", "level": 8, "rank": 9, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [362, 47, 8]}}, {"model": "objective.educative", "pk": 27, "fields": {"content": "Cf info \"trampoline\" France : abordage des positions carpés et tendues en même temps que le groupé.", "long_label": "Salto arrière tendu", "short_label": "Arrière /", "difficulty": "0.6", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 28, "fields": {"content": "", "long_label": "Demi tour", "short_label": "½ tour", "difficulty": "0.1", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [2]}}, {"model": "objective.educative", "pk": 29, "fields": {"content": "", "long_label": "Vrille", "short_label": "Vrille", "difficulty": "0.2", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [2], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 30, "fields": {"content": "", "long_label": "Cody groupé", "short_label": "Cody o", "difficulty": "0.6", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [36]}}, {"model": "objective.educative", "pk": 31, "fields": {"content": "### Apprentissage\r\nPlusieurs étapes peuvent être utilisée pour approcher le barani o.\r\n\r\n#### 4 pattes - avant, plat dos - 1/2 debout\r\n\r\n* un bon 4 pattes\r\n* pousser le dos haut vers le plafond\r\n* ouverture en plat dos\r\n\r\n#### 3/4 Avant o - 1/2 debout\r\n1. bon départ vers le haut\r\n2. bras bien placés à la vertical\r\n3. poussée des épaule vers le plafond au départ...\r\n\r\nEt encore plein d'autres étapes.", "long_label": "Barani groupé", "short_label": "Barani o", "difficulty": "0.6", "level": 6, "rank": 8, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [22, 153]}}, {"model": "objective.educative", "pk": 32, "fields": {"content": "", "long_label": "Barani carpé", "short_label": "Barani <", "difficulty": "0.6", "level": 7, "rank": 10, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [23, 154]}}, {"model": "objective.educative", "pk": 33, "fields": {"content": "", "long_label": "Barani tendu", "short_label": "Barani /", "difficulty": "0.6", "level": 8, "rank": 11, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [24, 155]}}, {"model": "objective.educative", "pk": 34, "fields": {"content": "", "long_label": "Demi tour tomber ventre", "short_label": "½ ventre", "difficulty": "0.2", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [201, 203], "prerequisites": [28, 6, 11]}}, {"model": "objective.educative", "pk": 35, "fields": {"content": "", "long_label": "Demi tour dos", "short_label": "½ dos", "difficulty": "0.2", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [9, 6, 11, 202], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 36, "fields": {"content": "", "long_label": "Ventre - plat dos tendu", "short_label": "Ventre - Plat dos /", "difficulty": "0.2", "level": 5, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [15, 6, 372]}}, {"model": "objective.educative", "pk": 37, "fields": {"content": "", "long_label": "Ventre - Dos", "short_label": "Ventre - Dos", "difficulty": "0.2", "level": 5, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [15, 6, 11]}}, {"model": "objective.educative", "pk": 38, "fields": {"content": "", "long_label": "Ventre - demi tour, ventre", "short_label": "Ventre - ½, ventre", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [37]}}, {"model": "objective.educative", "pk": 39, "fields": {"content": "", "long_label": "Dos - vrille, dos", "short_label": "Cattwist", "difficulty": "0.2", "level": 4, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [187, 211, 203, 185, 202], "prerequisites": [262, 202]}}, {"model": "objective.educative", "pk": 40, "fields": {"content": "", "long_label": "Porpus groupé", "short_label": "Porpus o", "difficulty": "0.5", "level": 6, "rank": 9, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [104]}}, {"model": "objective.educative", "pk": 41, "fields": {"content": "", "long_label": "Porpus carpé", "short_label": "Porpus <", "difficulty": "0.6", "level": 7, "rank": 10, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [104, 40]}}, {"model": "objective.educative", "pk": 42, "fields": {"content": "", "long_label": "Porpus tendu", "short_label": "Porpus /", "difficulty": "0.6", "level": 8, "rank": 10, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [41]}}, {"model": "objective.educative", "pk": 43, "fields": {"content": "", "long_label": "Arrière groupé jusqu'au dos", "short_label": "Arrière o, dos", "difficulty": "0.6", "level": 8, "rank": 8, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [25]}}, {"model": "objective.educative", "pk": 44, "fields": {"content": "", "long_label": "Arrière carpé jusqu'au dos", "short_label": "Arrière <, dos", "difficulty": "0.7", "level": 9, "rank": 9, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [26]}}, {"model": "objective.educative", "pk": 45, "fields": {"content": "", "long_label": "Arrière tendu jusqu'au dos", "short_label": "Arrière /, dos", "difficulty": "0.7", "level": 10, "rank": 10, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [27]}}, {"model": "objective.educative", "pk": 46, "fields": {"content": "", "long_label": "Pull-over groupé", "short_label": "PO o", "difficulty": "0.3", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [10], "prerequisites": [9]}}, {"model": "objective.educative", "pk": 47, "fields": {"content": "", "long_label": "Pull-over carpé", "short_label": "PO <", "difficulty": "0.3", "level": 5, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [10], "prerequisites": [9]}}, {"model": "objective.educative", "pk": 48, "fields": {"content": "", "long_label": "Dos - double vrille, dos", "short_label": "2 Cattwist", "difficulty": "0.4", "level": 6, "rank": 9, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [212], "prerequisites": [39]}}, {"model": "objective.educative", "pk": 49, "fields": {"content": "", "long_label": "Dos - triple vrille, dos", "short_label": "3 Cattwist", "difficulty": "0.6", "level": 8, "rank": 11, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [48]}}, {"model": "objective.educative", "pk": 50, "fields": {"content": "", "long_label": "Trois quart Arrière groupé", "short_label": "¾ Arrière o", "difficulty": "0.3", "level": 8, "rank": 8, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [125]}}, {"model": "objective.educative", "pk": 51, "fields": {"content": "", "long_label": "Trois quart Arrière carpé", "short_label": "¾ Arrière <", "difficulty": "0.3", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [383]}}, {"model": "objective.educative", "pk": 52, "fields": {"content": "", "long_label": "Trois quart Arrière tendu", "short_label": "¾ Arrière /", "difficulty": "0.3", "level": 10, "rank": 10, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [385]}}, {"model": "objective.educative", "pk": 53, "fields": {"content": "", "long_label": "Salto avant groupé jusqu'au ventre", "short_label": "Avant o, ventre", "difficulty": "0.6", "level": 8, "rank": 9, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [22]}}, {"model": "objective.educative", "pk": 54, "fields": {"content": "", "long_label": "Salto avant carpé jusqu'au ventre", "short_label": "Avant <, ventre", "difficulty": "0.6", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [23]}}, {"model": "objective.educative", "pk": 56, "fields": {"content": "", "long_label": "Barani carpé jusqu'au dos", "short_label": "Barani <, dos", "difficulty": "0.7", "level": 8, "rank": 11, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [32]}}, {"model": "objective.educative", "pk": 57, "fields": {"content": "", "long_label": "Barani tendu jusqu'au dos", "short_label": "Barani /, dos", "difficulty": "0.7", "level": 9, "rank": 9, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [33]}}, {"model": "objective.educative", "pk": 58, "fields": {"content": "", "long_label": "Barani Ball Out groupé", "short_label": "BBO o", "difficulty": "0.7", "level": 8, "rank": 11, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [169]}}, {"model": "objective.educative", "pk": 59, "fields": {"content": "", "long_label": "Barani Ball Out carpé", "short_label": "BBO <", "difficulty": "0.7", "level": 9, "rank": 12, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [170]}}, {"model": "objective.educative", "pk": 60, "fields": {"content": "", "long_label": "Barani Ball Out tendu", "short_label": "BBO /", "difficulty": "0.7", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [274]}}, {"model": "objective.educative", "pk": 61, "fields": {"content": "", "long_label": "Cody carpé", "short_label": "Cody <", "difficulty": "0.6", "level": 10, "rank": 10, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [30]}}, {"model": "objective.educative", "pk": 62, "fields": {"content": "", "long_label": "Cody tendu", "short_label": "Cody /", "difficulty": "0.6", "level": 13, "rank": 13, "age_boy": 10, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [160]}}, {"model": "objective.educative", "pk": 63, "fields": {"content": "", "long_label": "Pull-over groupé jusqu'au dos", "short_label": "PO o, dos", "difficulty": "0.5", "level": 6, "rank": 8, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [46]}}, {"model": "objective.educative", "pk": 64, "fields": {"content": "", "long_label": "Pull-over carpé jusqu'au dos", "short_label": "PO <, dos", "difficulty": "0.5", "level": 7, "rank": 9, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [47]}}, {"model": "objective.educative", "pk": 65, "fields": {"content": "", "long_label": "Barani in full out groupé", "short_label": "BIFO o", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 15, "age_girl": 16, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 66, "fields": {"content": "", "long_label": "Barani in full out carpé", "short_label": "BIFO <", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 67, "fields": {"content": "", "long_label": "Barani in full out tendu", "short_label": "BIFO /", "difficulty": "1.5", "level": 16, "rank": 16, "age_boy": 17, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 68, "fields": {"content": "", "long_label": "Demi tour assis", "short_label": "½ Assis", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 5]}}, {"model": "objective.educative", "pk": 69, "fields": {"content": "", "long_label": "Demi tour debout (de l'assis)", "short_label": "½ debout", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [14, 28], "prerequisites": [14, 28]}}, {"model": "objective.educative", "pk": 70, "fields": {"content": "", "long_label": "Demi tour debout (de ventre)", "short_label": "½ Debout", "difficulty": "0.2", "level": 3, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [182, 70], "prerequisites": [15, 28]}}, {"model": "objective.educative", "pk": 71, "fields": {"content": "", "long_label": "Demi tour debout (du dos)", "short_label": "½ debout", "difficulty": "0.2", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [16, 28], "prerequisites": [16, 28]}}, {"model": "objective.educative", "pk": 72, "fields": {"content": "", "long_label": "1 ¾ Avant groupé", "short_label": "1 ¾ o", "difficulty": "0.8", "level": 9, "rank": 13, "age_boy": 11, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 73, "fields": {"content": "", "long_label": "1 ¾ Avant carpé", "short_label": "1 ¾ <", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 12, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [72]}}, {"model": "objective.educative", "pk": 74, "fields": {"content": "", "long_label": "Rudy tendu", "short_label": "Rudy", "difficulty": "0.8", "level": 10, "rank": 13, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [77]}}, {"model": "objective.educative", "pk": 75, "fields": {"content": "", "long_label": "Rudy groupé", "short_label": "Rudy o", "difficulty": "0.8", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [389]}}, {"model": "objective.educative", "pk": 76, "fields": {"content": "", "long_label": "Rudy carpé", "short_label": "Rudy <", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [390]}}, {"model": "objective.educative", "pk": 77, "fields": {"content": "", "long_label": "Trois quart avant tendu + vrille", "short_label": "¾ Avant / + vrille", "difficulty": "0.5", "level": 9, "rank": 9, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 78, "fields": {"content": "", "long_label": "Full avant jusqu'au ventre", "short_label": "Barani + ½, ventre", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 79, "fields": {"content": "", "long_label": "Prog BIFO groupé", "short_label": "Prog BIFO o", "difficulty": "1.0", "level": 11, "rank": 11, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 80, "fields": {"content": "", "long_label": "Prog BIFO carpé", "short_label": "Prog BIFO <", "difficulty": "1.1", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 81, "fields": {"content": "", "long_label": "Prog BIFO tendu", "short_label": "Prog BIFO /", "difficulty": "1.1", "level": 13, "rank": 13, "age_boy": 15, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 82, "fields": {"content": "", "long_label": "Assis - vrille, assis", "short_label": "Roller", "difficulty": "0.2", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [179, 178, 201, 210], "prerequisites": []}}, {"model": "objective.educative", "pk": 83, "fields": {"content": "", "long_label": "Vrille, dos", "short_label": "Vrille, dos", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 84, "fields": {"content": "", "long_label": "Vrille, ventre", "short_label": "Vrille, ventre", "difficulty": "0.3", "level": 5, "rank": 5, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 85, "fields": {"content": "", "long_label": "Vrille, assis", "short_label": "Vrille, assis", "difficulty": "0.2", "level": 4, "rank": 4, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [179, 178, 201, 199], "prerequisites": []}}, {"model": "objective.educative", "pk": 86, "fields": {"content": "", "long_label": "Rudy out fliffis carpé", "short_label": "Rudy out <", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [276, 110]}}, {"model": "objective.educative", "pk": 87, "fields": {"content": "", "long_label": "Prog FIRO groupé", "short_label": "Prog FIRO o", "difficulty": "1.2", "level": 12, "rank": 12, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 88, "fields": {"content": "", "long_label": "Prog FIRO carpé", "short_label": "Prog FIRO <", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 89, "fields": {"content": "", "long_label": "Prog FIRO tendu", "short_label": "Prog FIRO /", "difficulty": "1.3", "level": 14, "rank": 14, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 90, "fields": {"content": "", "long_label": "Dos - vrille et demi, dos", "short_label": "Corkscrew", "difficulty": "0.5", "level": 7, "rank": 11, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [145]}}, {"model": "objective.educative", "pk": 91, "fields": {"content": "", "long_label": "Double salto arrière groupé", "short_label": "2 Back o", "difficulty": "1.0", "level": 11, "rank": 11, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [45]}}, {"model": "objective.educative", "pk": 92, "fields": {"content": "", "long_label": "Double salto arrière carpé", "short_label": "2 Back <", "difficulty": "1.2", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [91]}}, {"model": "objective.educative", "pk": 93, "fields": {"content": "", "long_label": "Double salto arrière tendu", "short_label": "2 Back /", "difficulty": "1.2", "level": 13, "rank": 14, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [317, 412]}}, {"model": "objective.educative", "pk": 94, "fields": {"content": "10 chandelles chronométrées.", "long_label": "10 chandelles", "short_label": "10 Chandelles", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [171], "prerequisites": []}}, {"model": "objective.educative", "pk": 95, "fields": {"content": "", "long_label": "Full", "short_label": "Full", "difficulty": "0.7", "level": 12, "rank": 12, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [228], "prerequisites": [227, 226]}}, {"model": "objective.educative", "pk": 96, "fields": {"content": "", "long_label": "Half out Triffis carpé", "short_label": "Triffis <", "difficulty": "2.0", "level": 20, "rank": 20, "age_boy": 18, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [97]}}, {"model": "objective.educative", "pk": 97, "fields": {"content": "", "long_label": "Half out Triffis groupé", "short_label": "Triffis o", "difficulty": "1.7", "level": 17, "rank": 17, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [98]}}, {"model": "objective.educative", "pk": 98, "fields": {"content": "", "long_label": "2 ¾ avant groupé", "short_label": "2 ¾ avant o", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 16, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 99, "fields": {"content": "", "long_label": "2 ¾ avant carpé", "short_label": "2 ¾ avant <", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 16, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [98]}}, {"model": "objective.educative", "pk": 100, "fields": {"content": "", "long_label": "Assis - demi tour, Assis", "short_label": "Assis - ½, Assis", "difficulty": "0.1", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [180, 14, 28, 68, 5], "prerequisites": [180]}}, {"model": "objective.educative", "pk": 101, "fields": {"content": "", "long_label": "Assis - ventre tendu", "short_label": "Assis - ventre /", "difficulty": "0.1", "level": 4, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 102, "fields": {"content": "", "long_label": "Assis - demi tour, dos", "short_label": "Assis - ½, dos", "difficulty": "0.2", "level": 5, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [100, 199], "prerequisites": []}}, {"model": "objective.educative", "pk": 104, "fields": {"content": "", "long_label": "Dos - ventre tendu", "short_label": "Dos - ventre", "difficulty": "0.2", "level": 6, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [101]}}, {"model": "objective.educative", "pk": 105, "fields": {"content": "", "long_label": "Dos - demi tour, dos", "short_label": "Dos - ½, dos", "difficulty": "0.3", "level": 5, "rank": 9, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [104]}}, {"model": "objective.educative", "pk": 106, "fields": {"content": "", "long_label": "Double full", "short_label": "2 full", "difficulty": "0.9", "level": 14, "rank": 14, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 107, "fields": {"content": "", "long_label": "Triple full", "short_label": "3 full", "difficulty": "1.1", "level": 16, "rank": 16, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 108, "fields": {"content": "", "long_label": "Randy", "short_label": "Randy", "difficulty": "1.0", "level": 13, "rank": 14, "age_boy": 13, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [74]}}, {"model": "objective.educative", "pk": 109, "fields": {"content": "", "long_label": "Ady", "short_label": "Ady", "difficulty": "1.2", "level": 13, "rank": 13, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [108]}}, {"model": "objective.educative", "pk": 110, "fields": {"content": "", "long_label": "Rudy out fliffis groupé", "short_label": "Rudy out o", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 111, "fields": {"content": "", "long_label": "Half In Half Out groupé", "short_label": "HIHO o", "difficulty": "1.2", "level": 12, "rank": 12, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 112, "fields": {"content": "", "long_label": "Half In Half Out carpé", "short_label": "HIHO <", "difficulty": "1.4", "level": 13, "rank": 13, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 113, "fields": {"content": "", "long_label": "Half out fliffis groupé", "short_label": "Out o", "difficulty": "1.1", "level": 11, "rank": 11, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 114, "fields": {"content": "", "long_label": "Half out fliffis carpé", "short_label": "Out <", "difficulty": "1.3", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 115, "fields": {"content": "", "long_label": "Full In Rudy Out groupé", "short_label": "FIRO o", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 116, "fields": {"content": "", "long_label": "Full In Rudy Out carpé", "short_label": "FIRO <", "difficulty": "1.7", "level": 17, "rank": 17, "age_boy": 18, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 117, "fields": {"content": "", "long_label": "Randy out fliffis groupé", "short_label": "Randy out o", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [110]}}, {"model": "objective.educative", "pk": 118, "fields": {"content": "", "long_label": "Randy out fliffis carpé", "short_label": "Randy out <", "difficulty": "1.7", "level": 17, "rank": 17, "age_boy": 17, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 119, "fields": {"content": "", "long_label": "Full In Rudy Out tendu", "short_label": "FIRO /", "difficulty": "1.7", "level": 18, "rank": 18, "age_boy": 18, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 120, "fields": {"content": "", "long_label": "Half In Half Out tendu", "short_label": "HIHO /", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 16, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 121, "fields": {"content": "", "long_label": "Half In Rudy Out groupé", "short_label": "HIRO o", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": 14, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 122, "fields": {"content": "", "long_label": "Half In Rudy Out carpé", "short_label": "HIRO <", "difficulty": "1.6", "level": 15, "rank": 15, "age_boy": 16, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [112, 86]}}, {"model": "objective.educative", "pk": 123, "fields": {"content": "", "long_label": "Ventre passer tête, arriver dos", "short_label": "Ventre passer tête, dos", "difficulty": "0.2", "level": 8, "rank": 9, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 125, "fields": {"content": "", "long_label": "Pull-over groupé, arriver ventre", "short_label": "PO o, ventre", "difficulty": "0.2", "level": 7, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [125]}}, {"model": "objective.educative", "pk": 126, "fields": {"content": "", "long_label": "Pull-over groupé + demi tour, (plat) dos", "short_label": "PO o + ½, (plat) dos", "difficulty": "0.3", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [125]}}, {"model": "objective.educative", "pk": 127, "fields": {"content": "", "long_label": "Back In Full Out groupé", "short_label": "Back in Full o", "difficulty": "1.2", "level": 14, "rank": 14, "age_boy": 14, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 128, "fields": {"content": "", "long_label": "Back In Full Out carpé", "short_label": "Back in Full <", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 14, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 129, "fields": {"content": "", "long_label": "Back In Full Out tendu", "short_label": "Back in Full /", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 14, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 130, "fields": {"content": "", "long_label": "Full In Full Out groupé", "short_label": "FIFO o", "difficulty": "1.4", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 131, "fields": {"content": "", "long_label": "Full In Full Out tendu", "short_label": "FIFO /", "difficulty": "1.6", "level": 18, "rank": 18, "age_boy": 16, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 132, "fields": {"content": "", "long_label": "Full in full out carpé", "short_label": "FIFO <", "difficulty": "1.6", "level": 17, "rank": 17, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 133, "fields": {"content": "", "long_label": "Full in 2 full out groupé", "short_label": "Miller o", "difficulty": "1.6", "level": 18, "rank": 18, "age_boy": 16, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 135, "fields": {"content": "", "long_label": "Half In Randy Out groupé", "short_label": "Half In Randy Out o", "difficulty": "1.4", "level": 15, "rank": 15, "age_boy": 17, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [121]}}, {"model": "objective.educative", "pk": 136, "fields": {"content": "", "long_label": "Full In double Full Out carpé", "short_label": "Miller <", "difficulty": "1.8", "level": 19, "rank": 19, "age_boy": 16, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 137, "fields": {"content": "", "long_label": "Full In double Full Out tendu", "short_label": "Miller /", "difficulty": "1.8", "level": 20, "rank": 20, "age_boy": 17, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 138, "fields": {"content": "", "long_label": "Half in fliffis groupé", "short_label": "Barani in back o", "difficulty": "1.1", "level": 11, "rank": 11, "age_boy": 12, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 139, "fields": {"content": "", "long_label": "Half in fliffis carpé", "short_label": "Barani in back <", "difficulty": "1.3", "level": 12, "rank": 12, "age_boy": 13, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 140, "fields": {"content": "", "long_label": "Half In Half Out Triffis groupé", "short_label": "Half in trif o", "difficulty": "1.8", "level": 18, "rank": 18, "age_boy": 18, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 141, "fields": {"content": "", "long_label": "Half In Half Out Triffis carpé", "short_label": "Half in trif <", "difficulty": "2.1", "level": 21, "rank": 21, "age_boy": 18, "age_girl": 19, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [140]}}, {"model": "objective.educative", "pk": 142, "fields": {"content": "", "long_label": "Ventre - vrille, plat dos", "short_label": "Ventre - vrille, plat dos", "difficulty": "0.4", "level": 6, "rank": 8, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 143, "fields": {"content": "", "long_label": "Vrille et demi, ventre", "short_label": "Vrille et ½, ventre", "difficulty": "0.4", "level": 7, "rank": 6, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 145, "fields": {"content": "", "long_label": "Dos - vrille, ventre", "short_label": "Dos - vrille, ventre", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [348]}}, {"model": "objective.educative", "pk": 146, "fields": {"content": "", "long_label": "Assis - vrille et demi, assis", "short_label": "Assis - vrille et ½, assis", "difficulty": "0.3", "level": 7, "rank": 7, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 148, "fields": {"content": "", "long_label": "Ventre - vrille et demi, ventre", "short_label": "Ventre - vrille et ½, ventre", "difficulty": "0.5", "level": 7, "rank": 9, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 149, "fields": {"content": "", "long_label": "2 Vrilles, assis", "short_label": "2 Vrilles, assis", "difficulty": "0.4", "level": 8, "rank": 8, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 150, "fields": {"content": "", "long_label": "Vrille et demi, dos", "short_label": "Vrille et ½, dos", "difficulty": "0.4", "level": 6, "rank": 8, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 152, "fields": {"content": "", "long_label": "Ventre - barani", "short_label": "Ventre - barani", "difficulty": "0.4", "level": 15, "rank": 15, "age_boy": 8, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 153, "fields": {"content": "", "long_label": "Trois quart avant groupé", "short_label": "¾ Avant o + vrille", "difficulty": "0.3", "level": 6, "rank": 7, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 154, "fields": {"content": "", "long_label": "Trois quart avant carpé", "short_label": "¾ Avant <", "difficulty": "0.3", "level": 7, "rank": 8, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 155, "fields": {"content": "", "long_label": "Trois quart avant tendu", "short_label": "¾ Avant /", "difficulty": "0.3", "level": 8, "rank": 10, "age_boy": 8, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 156, "fields": {"content": "", "long_label": "Assis - vrille et demi, dos", "short_label": "Assis - vrille et ½, dos", "difficulty": "0.4", "level": 8, "rank": 8, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 157, "fields": {"content": "", "long_label": "Assis - salto avant jusqu'au dos", "short_label": "Assis - salto avant, dos", "difficulty": "0.3", "level": 5, "rank": 10, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [180], "prerequisites": []}}, {"model": "objective.educative", "pk": 158, "fields": {"content": "", "long_label": "Cody groupé, arriver ventre", "short_label": "Cody o, ventre", "difficulty": "0.5", "level": 10, "rank": 10, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 159, "fields": {"content": "", "long_label": "Barani groupé jusqu'au dos", "short_label": "Barani o, dos", "difficulty": "0.7", "level": 7, "rank": 11, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 160, "fields": {"content": "", "long_label": "Cody demi carpé", "short_label": "Cody L", "difficulty": "0.6", "level": 12, "rank": 12, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [223]}}, {"model": "objective.educative", "pk": 161, "fields": {"content": "", "long_label": "Rudy ball out tendu", "short_label": "RBO /", "difficulty": "0.9", "level": 12, "rank": 14, "age_boy": 11, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [164]}}, {"model": "objective.educative", "pk": 162, "fields": {"content": "", "long_label": "Cody full", "short_label": "Cody full", "difficulty": "0.9", "level": 14, "rank": 14, "age_boy": 11, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 163, "fields": {"content": "", "long_label": "Randy Ball Out", "short_label": "Randy Ball Out", "difficulty": "1.2", "level": 14, "rank": 14, "age_boy": 13, "age_girl": 16, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [161]}}, {"model": "objective.educative", "pk": 164, "fields": {"content": "", "long_label": "Prog Rudy Ball Out tendu", "short_label": "Full Ball Out /", "difficulty": "0.9", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [474]}}, {"model": "objective.educative", "pk": 165, "fields": {"content": "", "long_label": "Double cody groupé", "short_label": "2 cody o", "difficulty": "1.1", "level": 12, "rank": 12, "age_boy": 13, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 166, "fields": {"content": "", "long_label": "Ventre - out groupé", "short_label": "Ventre - out o", "difficulty": "0.9", "level": 13, "rank": 13, "age_boy": 12, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 167, "fields": {"content": "", "long_label": "Half out ball out groupé", "short_label": "HOBO o", "difficulty": "1.2", "level": 15, "rank": 15, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 168, "fields": {"content": "", "long_label": "Half out ball out carpé", "short_label": "HOBO <", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": 14, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 169, "fields": {"content": "", "long_label": "Ball Out groupé", "short_label": "BO o", "difficulty": "0.6", "level": 7, "rank": 10, "age_boy": 9, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 170, "fields": {"content": "", "long_label": "Ball Out carpé", "short_label": "BO <", "difficulty": "0.6", "level": 8, "rank": 11, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 171, "fields": {"content": "Test de commentaire.\r\n\r\n#### test de titre.\r\ntout plein d'explication du feu de dieu.", "long_label": "Libre", "short_label": "Libre", "difficulty": "3.5", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [94, 68, 69], "prerequisites": []}}, {"model": "objective.educative", "pk": 172, "fields": {"content": "", "long_label": "Kaboom arrière groupé", "short_label": "Kaboom o", "difficulty": "0.3", "level": 5, "rank": 11, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 173, "fields": {"content": "", "long_label": "Kaboom arrière carpé", "short_label": "Kaboom <", "difficulty": "0.3", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 174, "fields": {"content": "", "long_label": "Kaboom arrière tendu", "short_label": "Kaboom /", "difficulty": "0.3", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 175, "fields": {"content": "", "long_label": "Kaboom avant groupé", "short_label": "Kaboom avant o", "difficulty": "0.3", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 176, "fields": {"content": "", "long_label": "Kaboom avant carpé", "short_label": "Kaboom avant <", "difficulty": "0.3", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 177, "fields": {"content": "", "long_label": "Kaboom avant tendu", "short_label": "Kaboom avant /", "difficulty": "0.3", "level": 9, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 178, "fields": {"content": "", "long_label": "Assis - demi tour, 4 pattes", "short_label": "Assis - ½, 4 pattes", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [184, 183, 5], "prerequisites": []}}, {"model": "objective.educative", "pk": 179, "fields": {"content": "", "long_label": "4 pattes - demi tour, Assis", "short_label": "4 pattes - ½, Assis", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [184, 183], "prerequisites": []}}, {"model": "objective.educative", "pk": 180, "fields": {"content": "", "long_label": "Assis - 4 pattes", "short_label": "Assis - 4 pattes", "difficulty": "0.1", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [5], "prerequisites": []}}, {"model": "objective.educative", "pk": 181, "fields": {"content": "##### Explication sur le 4pattes - ventre\r\n\r\n - a quoi il sert\r\n - comment\r\n - pourquoi\r\n - …\r\n\r\nle tout par description de l'entraineur dans la base de données.", "long_label": "4 pattes - ventre", "short_label": "4 pattes - ventre", "difficulty": "0.0", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [183], "prerequisites": []}}, {"model": "objective.educative", "pk": 182, "fields": {"content": "", "long_label": "Debout (du 4 pattes)", "short_label": "Debout (4p)", "difficulty": "0.1", "level": 1, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [183], "prerequisites": []}}, {"model": "objective.educative", "pk": 183, "fields": {"content": "", "long_label": "Rebonds quadrupédique", "short_label": "Rebonds 4 pattes", "difficulty": "0.0", "level": 0, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 184, "fields": {"content": "", "long_label": "Rebonds assis", "short_label": "Rebonds assis", "difficulty": "0.0", "level": 0, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 185, "fields": {"content": "", "long_label": "Rebonds dos", "short_label": "Rebonds dos", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 186, "fields": {"content": "", "long_label": "Rebonds ventre", "short_label": "Rebonds ventre", "difficulty": "0.0", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 187, "fields": {"content": "", "long_label": "4 pattes - demi tour, Dos", "short_label": "4 pattes - ½, Dos", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [185, 183], "prerequisites": []}}, {"model": "objective.educative", "pk": 188, "fields": {"content": "", "long_label": "Pull-over groupé, arriver assis", "short_label": "PO o, assis", "difficulty": "0.3", "level": 5, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 189, "fields": {"content": "", "long_label": "4 pattes - poirier", "short_label": "4 pattes - ATR", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [197, 183, 9, 6], "prerequisites": []}}, {"model": "objective.educative", "pk": 190, "fields": {"content": "", "long_label": "Dos - poirier", "short_label": "Dos - ATR", "difficulty": "0.1", "level": 5, "rank": 10, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [47], "prerequisites": []}}, {"model": "objective.educative", "pk": 191, "fields": {"content": "", "long_label": "Dos - demi tour, poirier", "short_label": "Dos - ½, ATR", "difficulty": "0.2", "level": 7, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 192, "fields": {"content": "", "long_label": "Poirier - Curviligne fermé", "short_label": "Poirier - Curviligne fermé", "difficulty": "0.1", "level": 4, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [189, 197], "prerequisites": [469]}}, {"model": "objective.educative", "pk": 193, "fields": {"content": "", "long_label": "Kaboom arrière groupé, arriver assis", "short_label": "Kaboom o, assis", "difficulty": "0.3", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 194, "fields": {"content": "", "long_label": "Kaboom arrière groupé arriver ventre", "short_label": "Kaboom o, ventre", "difficulty": "0.2", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 195, "fields": {"content": "", "long_label": "Kaboom arrière arriver dos", "short_label": "Kaboom, dos", "difficulty": "0.5", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 196, "fields": {"content": "", "long_label": "Kaboom arrière arriver poirier", "short_label": "Kaboom, ATR", "difficulty": "0.1", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 197, "fields": {"content": "", "long_label": "Rebonds curviligne fermé", "short_label": "Rebonds curviligne fermé", "difficulty": "0.0", "level": 1, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [186], "prerequisites": []}}, {"model": "objective.educative", "pk": 198, "fields": {"content": "", "long_label": "Rebonds curviligne ouvert", "short_label": "Rebonds curviligne ouvert", "difficulty": "0.0", "level": 1, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [185], "prerequisites": []}}, {"model": "objective.educative", "pk": 199, "fields": {"content": "", "long_label": "Assis - plat dos (beb)", "short_label": "Assis - plat dos (beb)", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [184], "prerequisites": []}}, {"model": "objective.educative", "pk": 200, "fields": {"content": "", "long_label": "Chute faciale - ventre", "short_label": "Chute faciale - ventre", "difficulty": "0.0", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 201, "fields": {"content": "", "long_label": "Assis - demi tour, ventre", "short_label": "Assis - ½, ventre", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [181, 178, 199, 203], "prerequisites": []}}, {"model": "objective.educative", "pk": 202, "fields": {"content": "", "long_label": "Ventre - demi tour, plat dos", "short_label": "Ventre - ½, plat dos", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [187, 185, 186], "prerequisites": []}}, {"model": "objective.educative", "pk": 203, "fields": {"content": "", "long_label": "Plat dos - demi tour, ventre", "short_label": "Plat dos - ½, ventre", "difficulty": "0.1", "level": 2, "rank": 6, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [185], "prerequisites": []}}, {"model": "objective.educative", "pk": 204, "fields": {"content": "", "long_label": "Assis - vrille, plat dos", "short_label": "Assis - vrille, plat dos", "difficulty": "0.3", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [187, 178, 201, 199, 82, 202], "prerequisites": []}}, {"model": "objective.educative", "pk": 206, "fields": {"content": "", "long_label": "4 pattes - salto avant groupé, curviligne ouvert", "short_label": "4 pattes - avant o, (", "difficulty": "0.2", "level": 5, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 207, "fields": {"content": "", "long_label": "4 pattes - salto avant groupé", "short_label": "4 pattes - avant o", "difficulty": "0.3", "level": 6, "rank": 6, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [206], "prerequisites": []}}, {"model": "objective.educative", "pk": 208, "fields": {"content": "Niveau 3 car on veut être sur que si le 4 pattes se passe mal, l'élève puisse tomber en ventre (qui lui se trouve au niveau 2)", "long_label": "4 pattes - assis", "short_label": "4 pattes - assis", "difficulty": "0.1", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [182, 5, 10], "prerequisites": []}}, {"model": "objective.educative", "pk": 209, "fields": {"content": "", "long_label": "Ventre - Assis", "short_label": "Ventre - Assis", "difficulty": "0.1", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [208, 182], "prerequisites": []}}, {"model": "objective.educative", "pk": 210, "fields": {"content": "", "long_label": "Ventre - demi tour, Assis", "short_label": "Ventre - ½, Assis", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [179], "prerequisites": []}}, {"model": "objective.educative", "pk": 211, "fields": {"content": "", "long_label": "Plat dos - demi tour, 4 pattes", "short_label": "Plat dos - ½, 4 pattes", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [185, 183], "prerequisites": []}}, {"model": "objective.educative", "pk": 212, "fields": {"content": "", "long_label": "Dos - vrille et demi, ventre", "short_label": "Dos - vrille et ½, ventre", "difficulty": "0.3", "level": 5, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [203], "prerequisites": [39]}}, {"model": "objective.educative", "pk": 213, "fields": {"content": "", "long_label": "Vrille et demi debout (de l'assis)", "short_label": "Vrille et ½ debout (de l'assis)", "difficulty": "0.3", "level": 4, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [214], "prerequisites": []}}, {"model": "objective.educative", "pk": 214, "fields": {"content": "", "long_label": "Vrille debout (de l'assis) bras en haut puis en bas", "short_label": "Vrille debout", "difficulty": "0.2", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [69, 29], "prerequisites": []}}, {"model": "objective.educative", "pk": 215, "fields": {"content": "", "long_label": "Vrille debout (du dos)", "short_label": "Vrille debout (du dos)", "difficulty": "0.3", "level": 5, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [71], "prerequisites": []}}, {"model": "objective.educative", "pk": 216, "fields": {"content": "", "long_label": "Vrille et demi debout (du dos)", "short_label": "Vrille et ½ debout (du dos)", "difficulty": "0.4", "level": 6, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [215], "prerequisites": []}}, {"model": "objective.educative", "pk": 217, "fields": {"content": "", "long_label": "Dos - 4 pattes", "short_label": "Dos - 4 pattes", "difficulty": "0.2", "level": 4, "rank": 8, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 218, "fields": {"content": "", "long_label": "Dos - Assis", "short_label": "Dos - Assis", "difficulty": "0.1", "level": 1, "rank": 7, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [184, 185], "prerequisites": []}}, {"model": "objective.educative", "pk": 219, "fields": {"content": "", "long_label": "Pull-over groupé, arriver 4 pattes", "short_label": "PO o, 4 pattes", "difficulty": "0.2", "level": 6, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [190], "prerequisites": []}}, {"model": "objective.educative", "pk": 220, "fields": {"content": "", "long_label": "Prog Rudy Ball Out groupé", "short_label": "Full Ball Out o", "difficulty": "0.8", "level": 8, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [472]}}, {"model": "objective.educative", "pk": 221, "fields": {"content": "", "long_label": "Prog Rudy Ball Out carpé", "short_label": "Full Ball Out <", "difficulty": "0.9", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [473]}}, {"model": "objective.educative", "pk": 222, "fields": {"content": "", "long_label": "Cody groupé arriver (plat) dos", "short_label": "Cody o, (plat) dos", "difficulty": "0.7", "level": 10, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 223, "fields": {"content": "", "long_label": "Cody carpé, arriver (plat) dos", "short_label": "Cody <, (plat) dos", "difficulty": "0.8", "level": 11, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 224, "fields": {"content": "", "long_label": "Ball Out groupé, arriver ventre", "short_label": "BO o, ventre", "difficulty": "0.7", "level": 8, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 225, "fields": {"content": "", "long_label": "Ball Out carpé, arriver ventre", "short_label": "BO <, ventre", "difficulty": "0.8", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 226, "fields": {"content": "", "long_label": "Trois quart Arrière tendu + demi", "short_label": "¾ Arrière / + ½", "difficulty": "0.4", "level": 10, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 227, "fields": {"content": "", "long_label": "Arrière tendu + demi tour", "short_label": "Arrière / + ½", "difficulty": "0.6", "level": 11, "rank": 11, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 228, "fields": {"content": "", "long_label": "Demi tour piqué", "short_label": "½ piqué", "difficulty": "0.4", "level": 9, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 229, "fields": {"content": "", "long_label": "Half In groupé", "short_label": "Half In o", "difficulty": "0.6", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 230, "fields": {"content": "", "long_label": "Half In carpé", "short_label": "Half In <", "difficulty": "0.6", "level": 10, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 231, "fields": {"content": "", "long_label": "Half In groupé, arriver ventre", "short_label": "Half In o, ventre", "difficulty": "0.7", "level": 10, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 232, "fields": {"content": "", "long_label": "Half In carpé, arriver ventre", "short_label": "Half In <, ventre", "difficulty": "0.8", "level": 11, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 233, "fields": {"content": "", "long_label": "Prog Half In Half Out groupé", "short_label": "Prog HIHO o", "difficulty": "0.9", "level": 11, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 234, "fields": {"content": "", "long_label": "Prog Half In Half Out carpé", "short_label": "Prog HIHO <", "difficulty": "1.0", "level": 12, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 235, "fields": {"content": "", "long_label": "Prog Half In Rudy Out groupé", "short_label": "Prog HIRO o", "difficulty": "1.1", "level": 13, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 236, "fields": {"content": "", "long_label": "Prog Half In Rudy Out carpé", "short_label": "Prog HIRO <", "difficulty": "1.2", "level": 14, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 237, "fields": {"content": "", "long_label": "Full arriver dos", "short_label": "Full, dos", "difficulty": "0.9", "level": 13, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [95]}}, {"model": "objective.educative", "pk": 238, "fields": {"content": "", "long_label": "Rudy arrière arriver ventre", "short_label": "Full + ½, ventre", "difficulty": "1.0", "level": 14, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [237]}}, {"model": "objective.educative", "pk": 239, "fields": {"content": "", "long_label": "Prog Full In Full Out groupé", "short_label": "Prog FIFO o", "difficulty": "1.1", "level": 15, "rank": 15, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [238]}}, {"model": "objective.educative", "pk": 240, "fields": {"content": "", "long_label": "Prog Full In Full Out carpé", "short_label": "Prog FIFO <", "difficulty": "1.2", "level": 16, "rank": 16, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [239]}}, {"model": "objective.educative", "pk": 241, "fields": {"content": "", "long_label": "Prog Full In Full Out carpé", "short_label": "Prog FIFO /", "difficulty": "1.2", "level": 17, "rank": 17, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 242, "fields": {"content": "", "long_label": "Prog Full In 2 Full Out groupé", "short_label": "Prog Miller o", "difficulty": "1.3", "level": 17, "rank": 17, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [240]}}, {"model": "objective.educative", "pk": 243, "fields": {"content": "", "long_label": "Prog Full In 2 Full Out carpé", "short_label": "Prog Miller <", "difficulty": "1.4", "level": 18, "rank": 18, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [242]}}, {"model": "objective.educative", "pk": 244, "fields": {"content": "", "long_label": "Prog Full In 2 Full Out tendu", "short_label": "Prog Miller /", "difficulty": "1.4", "level": 19, "rank": 19, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 245, "fields": {"content": "", "long_label": "Vrille et demi", "short_label": "Vrille et ½", "difficulty": "0.3", "level": 4, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 246, "fields": {"content": "", "long_label": "Dos - vrille passer tête arriver dos", "short_label": "Dos - vrille passer tête, dos o", "difficulty": "0.7", "level": 9, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 247, "fields": {"content": "", "long_label": "Dos - vrille passer tête arriver dos", "short_label": "Dos - vrille passer tête <", "difficulty": "0.7", "level": 10, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 248, "fields": {"content": "", "long_label": "Jonah ball out groupé", "short_label": "Jonah ball out o", "difficulty": "0.7", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 249, "fields": {"content": "", "long_label": "Jonah ball out carpé", "short_label": "Jonah ball out <", "difficulty": "0.8", "level": 10, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 250, "fields": {"content": "", "long_label": "Imposé", "short_label": "Imposé", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 251, "fields": {"content": "", "long_label": "Double full In Double full out", "short_label": "Killer (Poliaroush)", "difficulty": "2.0", "level": 21, "rank": 21, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 252, "fields": {"content": "", "long_label": "Rudy Triffis carpé", "short_label": "Rudy Trif <", "difficulty": "2.2", "level": 22, "rank": 22, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 253, "fields": {"content": "", "long_label": "Half In Randy Out carpé", "short_label": "Half In Randy Out <", "difficulty": "1.8", "level": 18, "rank": 18, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [135]}}, {"model": "objective.educative", "pk": 254, "fields": {"content": "", "long_label": "Rudy In Half Out carpé", "short_label": "FIFO <", "difficulty": "1.6", "level": 16, "rank": 16, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 255, "fields": {"content": "Rebondir en chandelle sans utiliser les bras. Les bras restent complètement collés au corps durant l'exercice.", "long_label": "Chandelle bras en bas", "short_label": "| 1", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 256, "fields": {"content": "Chandelle où les mains sont posées sur les hanches.", "long_label": "Chandelle mains aux hanches", "short_label": "| 2", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 257, "fields": {"content": "Chandelle où les bras restent tendus, collés au oreilles.", "long_label": "Chandelle bras en haut", "short_label": "| 3", "difficulty": "0.0", "level": 2, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 258, "fields": {"content": "", "long_label": "Rudy Triffis groupé", "short_label": "Rudy Trif o", "difficulty": "1.9", "level": 19, "rank": 19, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 259, "fields": {"content": "", "long_label": "Culbute avant", "short_label": "Culbute", "difficulty": "0.5", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 260, "fields": {"content": "", "long_label": "Culbute avant sans les mains", "short_label": "Culbute sans les mains", "difficulty": "0.5", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [259]}}, {"model": "objective.educative", "pk": 261, "fields": {"content": "", "long_label": "Culbute avant sans les mains sans la tête", "short_label": "Culbute sans les mains sans la tête", "difficulty": "0.5", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [260]}}, {"model": "objective.educative", "pk": 262, "fields": {"content": "", "long_label": "Dos - demi tour, ventre", "short_label": "Dos - ½, ventre", "difficulty": "0.1", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 263, "fields": {"content": "", "long_label": "Double vrille", "short_label": "Double vrille", "difficulty": "0.4", "level": 5, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 264, "fields": {"content": "", "long_label": "Saut groupé + demi tour", "short_label": "o + ½", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 1]}}, {"model": "objective.educative", "pk": 265, "fields": {"content": "", "long_label": "Saut carpé + demi tour", "short_label": "< + ½", "difficulty": "0.1", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 3]}}, {"model": "objective.educative", "pk": 266, "fields": {"content": "", "long_label": "Saut écart + demi tour", "short_label": "// + ½", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 4]}}, {"model": "objective.educative", "pk": 267, "fields": {"content": "", "long_label": "Demi tour + saut groupé", "short_label": "½ + o", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 1]}}, {"model": "objective.educative", "pk": 268, "fields": {"content": "", "long_label": "Demi tour + saut carpé", "short_label": "½ + <", "difficulty": "0.1", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 3]}}, {"model": "objective.educative", "pk": 269, "fields": {"content": "", "long_label": "Demi tour + saut écart", "short_label": "½ + //", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28, 4]}}, {"model": "objective.educative", "pk": 270, "fields": {"content": "", "long_label": "Barani puck", "short_label": "Barani puck", "difficulty": "0.6", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [32, 31]}}, {"model": "objective.educative", "pk": 271, "fields": {"content": "", "long_label": "Salto avant groupé + vrille", "short_label": "Avant o + vrille", "difficulty": "0.7", "level": 7, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [31]}}, {"model": "objective.educative", "pk": 272, "fields": {"content": "", "long_label": "salto avant carpé + vrille", "short_label": "Avant < + vrille", "difficulty": "0.7", "level": 7, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [32]}}, {"model": "objective.educative", "pk": 273, "fields": {"content": "", "long_label": "Salto avant tendu + vrille", "short_label": "Avant / + vrille", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [33]}}, {"model": "objective.educative", "pk": 274, "fields": {"content": "", "long_label": "Ball Out Tendu", "short_label": "BO /", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [170, 42]}}, {"model": "objective.educative", "pk": 275, "fields": {"content": "", "long_label": "Rudy Ball out groupé", "short_label": "RBO o", "difficulty": "0.9", "level": 9, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [220]}}, {"model": "objective.educative", "pk": 276, "fields": {"content": "", "long_label": "Rudy Ball out carpé", "short_label": "RBO <", "difficulty": "0.9", "level": 10, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [221]}}, {"model": "objective.educative", "pk": 277, "fields": {"content": "", "long_label": "Tomber Assis groupé", "short_label": "Assis o", "difficulty": "0.0", "level": 0, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [1, 5]}}, {"model": "objective.educative", "pk": 278, "fields": {"content": "", "long_label": "Tomber Assis carpé", "short_label": "Assis <", "difficulty": "0.0", "level": 0, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [3, 5]}}, {"model": "objective.educative", "pk": 279, "fields": {"content": "", "long_label": "Saut groupé + vrille", "short_label": "o + vrille", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [264]}}, {"model": "objective.educative", "pk": 280, "fields": {"content": "", "long_label": "Saut groupé + vrille et demi", "short_label": "o + vrille et ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [279]}}, {"model": "objective.educative", "pk": 281, "fields": {"content": "", "long_label": "Vrille + saut groupé", "short_label": "Vrille + o", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [267]}}, {"model": "objective.educative", "pk": 282, "fields": {"content": "", "long_label": "Vrille et demi + saut groupé", "short_label": "Vrille et ½ + o", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [281]}}, {"model": "objective.educative", "pk": 283, "fields": {"content": "", "long_label": "Double vrille + saut groupé", "short_label": "Double vrille + saut groupé", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [282]}}, {"model": "objective.educative", "pk": 284, "fields": {"content": "", "long_label": "Vrille + saut écart", "short_label": "Vrille + //", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [269]}}, {"model": "objective.educative", "pk": 285, "fields": {"content": "", "long_label": "vrille et demi + saut écart", "short_label": "vrille et ½ + //", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [284]}}, {"model": "objective.educative", "pk": 286, "fields": {"content": "", "long_label": "double vrille + saut écart", "short_label": "double vrille + saut écart", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [285]}}, {"model": "objective.educative", "pk": 287, "fields": {"content": "", "long_label": "Saut écart + vrille", "short_label": "// + vrille", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [266]}}, {"model": "objective.educative", "pk": 288, "fields": {"content": "", "long_label": "Saut écart + vrille et demi", "short_label": "// + vrille et ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [287]}}, {"model": "objective.educative", "pk": 289, "fields": {"content": "", "long_label": "Saut écart + double vrille", "short_label": "// + 2 vrilles", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 290, "fields": {"content": "", "long_label": "Saut carpé + vrille", "short_label": "< + vrille", "difficulty": "0.2", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [265]}}, {"model": "objective.educative", "pk": 291, "fields": {"content": "", "long_label": "Saut carpé + vrille et demi", "short_label": "< + vrille et ½", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [290]}}, {"model": "objective.educative", "pk": 292, "fields": {"content": "", "long_label": "Saut carpé + double vrille", "short_label": "< + 2 vrilles", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [291]}}, {"model": "objective.educative", "pk": 293, "fields": {"content": "", "long_label": "Vrille + saut carpé", "short_label": "Vrille + <", "difficulty": "0.2", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [268]}}, {"model": "objective.educative", "pk": 294, "fields": {"content": "", "long_label": "Vrille et demi + saut carpé", "short_label": "Vrille et ½ + <", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [293]}}, {"model": "objective.educative", "pk": 295, "fields": {"content": "", "long_label": "Double vrille + saut carpé", "short_label": "Double vrille + saut carpé", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [294]}}, {"model": "objective.educative", "pk": 296, "fields": {"content": "", "long_label": "Demi tour + saut groupé + demi tour", "short_label": "½ + o + ½", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [267, 264]}}, {"model": "objective.educative", "pk": 297, "fields": {"content": "", "long_label": "Demi tour + saut carpé + demi tour", "short_label": "½ + < + ½", "difficulty": "0.2", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [268, 265]}}, {"model": "objective.educative", "pk": 298, "fields": {"content": "", "long_label": "demi tour + saut écart + demi tour", "short_label": "½ + // + ½", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [269, 266]}}, {"model": "objective.educative", "pk": 299, "fields": {"content": "", "long_label": "demi tour + saut groupé + vrille", "short_label": "½ + o + vrille", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [296]}}, {"model": "objective.educative", "pk": 300, "fields": {"content": "", "long_label": "demi tour + saut carpé + vrille", "short_label": "½ + < + vrille", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [297]}}, {"model": "objective.educative", "pk": 301, "fields": {"content": "", "long_label": "Demi tour + saut écart + vrille", "short_label": "½ + // + vrille", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [298]}}, {"model": "objective.educative", "pk": 302, "fields": {"content": "", "long_label": "Saut groupé + double vrille", "short_label": "o + 2 vrilles", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [280]}}, {"model": "objective.educative", "pk": 303, "fields": {"content": "", "long_label": "Vrille + saut groupé + demi tour", "short_label": "Vrille + o + ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [296]}}, {"model": "objective.educative", "pk": 304, "fields": {"content": "", "long_label": "Vrille + saut carpé + demi tour", "short_label": "Vrille + < + ½", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [297]}}, {"model": "objective.educative", "pk": 305, "fields": {"content": "", "long_label": "Vrille + saut écart + demi tour", "short_label": "Vrille + // + ½", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [298]}}, {"model": "objective.educative", "pk": 306, "fields": {"content": "", "long_label": "Vrille + saut écart + vrille", "short_label": "Vrille + // + vrille", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [301, 287, 284, 305]}}, {"model": "objective.educative", "pk": 307, "fields": {"content": "", "long_label": "Vrille + saut groupé + vrille", "short_label": "Vrille + o + vrille", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [299, 279, 281, 303]}}, {"model": "objective.educative", "pk": 308, "fields": {"content": "", "long_label": "Vrille + saut carpé + vrille", "short_label": "Vrille + < + vrille", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [300, 290, 293, 304]}}, {"model": "objective.educative", "pk": 309, "fields": {"content": "", "long_label": "Demi tour + saut groupé + vrille et demi", "short_label": "½ + o + vrille et ½", "difficulty": "0.5", "level": 5, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [307]}}, {"model": "objective.educative", "pk": 310, "fields": {"content": "", "long_label": "Demi tour + saut écart + vrille et demi", "short_label": "½ + // + vrille et ½", "difficulty": "0.4", "level": 4, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [301]}}, {"model": "objective.educative", "pk": 311, "fields": {"content": "", "long_label": "Demi tour + saut carpé + vrille et demi", "short_label": "½ + < + vrille et ½", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [300]}}, {"model": "objective.educative", "pk": 312, "fields": {"content": "", "long_label": "Vrille et demi + saut groupé + demi tour", "short_label": "Vrille et ½ + o + ½", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [303, 282]}}, {"model": "objective.educative", "pk": 313, "fields": {"content": "", "long_label": "Vrille et demi + saut écart + demi tour", "short_label": "Vrille et ½ + // + ½", "difficulty": "0.4", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [305, 285]}}, {"model": "objective.educative", "pk": 314, "fields": {"content": "", "long_label": "Vrille et demi + saut carpé + demi tour", "short_label": "Vrille et ½ + < + ½", "difficulty": "0.4", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [304, 294]}}, {"model": "objective.educative", "pk": 315, "fields": {"content": "", "long_label": "Cody carpé, arriver ventre", "short_label": "Cody <, ventre", "difficulty": "0.5", "level": 5, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [61, 158]}}, {"model": "objective.educative", "pk": 316, "fields": {"content": "", "long_label": "Cody tendu, arriver ventre", "short_label": "Cody /, ventre", "difficulty": "0.5", "level": 6, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [315]}}, {"model": "objective.educative", "pk": 317, "fields": {"content": "", "long_label": "Cody tendu, arriver (plat) dos", "short_label": "Cody /, (plat) dos", "difficulty": "0.8", "level": 9, "rank": 15, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [62]}}, {"model": "objective.educative", "pk": 318, "fields": {"content": "", "long_label": "Rebonds plat dos", "short_label": "Rebonds plat dos", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 319, "fields": {"content": "", "long_label": "Assis - plat dos (beh)", "short_label": "Assis - plat dos (beh)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 320, "fields": {"content": "", "long_label": "Demi tour (bras en bas)", "short_label": "Demi tour (bras en bas)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 321, "fields": {"content": "", "long_label": "Demi tour (bras en haut)", "short_label": "Demi tour (bras en haut)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 322, "fields": {"content": "", "long_label": "Demi tour (h2b)", "short_label": "½ tour (h2b)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 323, "fields": {"content": "", "long_label": "Demi tour (b2h)", "short_label": "Demi tour (b2h)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 324, "fields": {"content": "", "long_label": "Assis - vrille et demi, ventre", "short_label": "Assis - vrille et ½, ventre", "difficulty": "0.4", "level": 5, "rank": 7, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [201, 5, 11, 245]}}, {"model": "objective.educative", "pk": 325, "fields": {"content": "", "long_label": "Ventre - vrille, ventre", "short_label": "Ventre - vrille, ventre", "difficulty": "0.2", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [11, 29]}}, {"model": "objective.educative", "pk": 326, "fields": {"content": "", "long_label": "Ventre - vrille et demi, dos", "short_label": "Ventre - vrille et ½, dos", "difficulty": "0.3", "level": 4, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [9, 11, 150]}}, {"model": "objective.educative", "pk": 327, "fields": {"content": "", "long_label": "Assis - double vrille, plat dos", "short_label": "Assis - double vrille, plat dos", "difficulty": "0.5", "level": 6, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [204]}}, {"model": "objective.educative", "pk": 328, "fields": {"content": "", "long_label": "Assis - ventre groupé", "short_label": "Assis - ventre o", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [180]}}, {"model": "objective.educative", "pk": 329, "fields": {"content": "", "long_label": "Assis - ventre carpé", "short_label": "Assis - ventre <", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [180]}}, {"model": "objective.educative", "pk": 330, "fields": {"content": "", "long_label": "Assis - grouper + demi tour, plat dos", "short_label": "Assis - grouper + ½, plat dos", "difficulty": "0.2", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [328]}}, {"model": "objective.educative", "pk": 331, "fields": {"content": "", "long_label": "Assis - carper + demi tour, plat dos", "short_label": "Assis - carper + ½, plat dos", "difficulty": "0.2", "level": 2, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [329]}}, {"model": "objective.educative", "pk": 332, "fields": {"content": "", "long_label": "Assis - demi tour, plat dos", "short_label": "Assis - ½, plat dos", "difficulty": "0.2", "level": 3, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [101]}}, {"model": "objective.educative", "pk": 333, "fields": {"content": "", "long_label": "Assis - grouper + vrille, ventre", "short_label": "Assis - grouper + vrille, ventre", "difficulty": "0.3", "level": 3, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [330]}}, {"model": "objective.educative", "pk": 334, "fields": {"content": "", "long_label": "Assis - carper + vrille, ventre", "short_label": "Assis - carper + vrille, ventre", "difficulty": "0.3", "level": 3, "rank": 7, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [331]}}, {"model": "objective.educative", "pk": 335, "fields": {"content": "", "long_label": "Assis - vrille, ventre", "short_label": "Assis - vrille, ventre", "difficulty": "0.3", "level": 4, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [332]}}, {"model": "objective.educative", "pk": 336, "fields": {"content": "", "long_label": "Assis - grouper + vrille et demi, plat dos", "short_label": "Assis - grouper + vrille et ½, plat dos", "difficulty": "0.4", "level": 4, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [333]}}, {"model": "objective.educative", "pk": 337, "fields": {"content": "", "long_label": "Assis - carper + vrille et demi, plat dos", "short_label": "Assis - carper + vrille et ½, plat dos", "difficulty": "0.4", "level": 4, "rank": 8, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [334]}}, {"model": "objective.educative", "pk": 338, "fields": {"content": "", "long_label": "Assis - vrille et demi, plat dos", "short_label": "Assis - vrille et ½, plat dos", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": 9, "age_girl": 9, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 340, "fields": {"content": "", "long_label": "Assis - double vrille, ventre", "short_label": "Assis - double vrille, ventre", "difficulty": "0.5", "level": 6, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [338]}}, {"model": "objective.educative", "pk": 341, "fields": {"content": "", "long_label": "Assis - double vrille et demi, plat dos", "short_label": "Assis - double vrille et ½, plat dos", "difficulty": "0.6", "level": 7, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [340]}}, {"model": "objective.educative", "pk": 342, "fields": {"content": "", "long_label": "Dos - ventre groupé", "short_label": "Dos - ventre groupé", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [328, 217]}}, {"model": "objective.educative", "pk": 343, "fields": {"content": "", "long_label": "Dos - ventre carpé", "short_label": "Dos - ventre carpé", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [329, 342]}}, {"model": "objective.educative", "pk": 344, "fields": {"content": "", "long_label": "Dos - grouper + demi tour, plat dos", "short_label": "Dos - grouper + ½, plat dos", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [342]}}, {"model": "objective.educative", "pk": 345, "fields": {"content": "", "long_label": "Dos - carper + demi tour, plat dos", "short_label": "Dos - carper + ½, plat dos", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [331, 343]}}, {"model": "objective.educative", "pk": 346, "fields": {"content": "", "long_label": "Dos - grouper + vrille, ventre", "short_label": "Dos - grouper + vrille, ventre", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [345, 84]}}, {"model": "objective.educative", "pk": 347, "fields": {"content": "", "long_label": "Dos - carper + vrille, ventre", "short_label": "Dos - carper + vrille, ventre", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [345]}}, {"model": "objective.educative", "pk": 348, "fields": {"content": "", "long_label": "Dos - demi tour, plat dos", "short_label": "Dos - ½, plat dos", "difficulty": "0.3", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [332, 104]}}, {"model": "objective.educative", "pk": 351, "fields": {"content": "", "long_label": "Dos - grouper + vrille et demi, plat dos", "short_label": "Dos - grouper + vrille et ½, plat dos", "difficulty": "0.5", "level": 5, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [338, 145]}}, {"model": "objective.educative", "pk": 352, "fields": {"content": "", "long_label": "Dos - carper + vrille et demi, plat dos", "short_label": "Dos - carper + vrille et ½, plat dos", "difficulty": "0.5", "level": 5, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [337, 347]}}, {"model": "objective.educative", "pk": 353, "fields": {"content": "", "long_label": "Dos - vrille et demi, plat dos", "short_label": "Dos - vrille et ½, plat dos", "difficulty": "0.5", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [324, 145]}}, {"model": "objective.educative", "pk": 354, "fields": {"content": "", "long_label": "Dos - double vrille, ventre", "short_label": "Dos - double vrille, ventre", "difficulty": "0.6", "level": 7, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [340, 353]}}, {"model": "objective.educative", "pk": 355, "fields": {"content": "", "long_label": "Dos - double vrille et demi, plat dos", "short_label": "Dos - double vrille et ½, plat dos", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [341, 354]}}, {"model": "objective.educative", "pk": 356, "fields": {"content": "", "long_label": "Tomber ventre groupé", "short_label": "Ventre o", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [1, 11]}}, {"model": "objective.educative", "pk": 357, "fields": {"content": "", "long_label": "Tomber ventre carpé", "short_label": "Ventre <", "difficulty": "0.1", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [3, 11]}}, {"model": "objective.educative", "pk": 358, "fields": {"content": "", "long_label": "Tomber ventre en reculant", "short_label": "Ventre en reculant", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [11]}}, {"model": "objective.educative", "pk": 359, "fields": {"content": "", "long_label": "Tomber plat dos en avançant", "short_label": "Tomber plat dos en avançant", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 360, "fields": {"content": "", "long_label": "Curviligne fermé en avançant", "short_label": "Curviligne fermé en avançant", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [359]}}, {"model": "objective.educative", "pk": 361, "fields": {"content": "", "long_label": "Genoux - plat dos groupé", "short_label": "Genoux - plat dos groupé", "difficulty": "0.1", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [7]}}, {"model": "objective.educative", "pk": 362, "fields": {"content": "", "long_label": "Genoux - plat dos carpé", "short_label": "Genoux - plat dos carpé", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [8]}}, {"model": "objective.educative", "pk": 363, "fields": {"content": "", "long_label": "Genoux - plat dos tendu", "short_label": "Genoux - plat dos tendu", "difficulty": "0.1", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 364, "fields": {"content": "", "long_label": "Genoux - Assis", "short_label": "Genoux - Assis", "difficulty": "0.0", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 365, "fields": {"content": "", "long_label": "Tomber genoux", "short_label": "Genoux", "difficulty": "0.0", "level": 1, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 366, "fields": {"content": "", "long_label": "Debout (de Genoux)", "short_label": "Debout (genoux)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 367, "fields": {"content": "", "long_label": "Genoux - salto avant groupé", "short_label": "Genoux - avant o", "difficulty": "0.5", "level": 5, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 368, "fields": {"content": "", "long_label": "Genoux - salto avant carpé", "short_label": "Genoux - avant <", "difficulty": "0.5", "level": 5, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 369, "fields": {"content": "", "long_label": "Genoux - Barani groupé", "short_label": "Genoux - Barani o", "difficulty": "0.6", "level": 6, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 370, "fields": {"content": "", "long_label": "Genoux - Barani carpé", "short_label": "Genoux - Barani <", "difficulty": "0.6", "level": 6, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 371, "fields": {"content": "", "long_label": "Ventre - plat dos groupé", "short_label": "Ventre - plat dos o", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [186, 7]}}, {"model": "objective.educative", "pk": 372, "fields": {"content": "", "long_label": "Ventre - plat dos carpé", "short_label": "Ventre - plat dos <", "difficulty": "0.2", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [8, 11]}}, {"model": "objective.educative", "pk": 374, "fields": {"content": "", "long_label": "Genoux - Piqué groupé", "short_label": "Genoux - Piqué o", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 375, "fields": {"content": "", "long_label": "Genoux - Piqué carpé", "short_label": "Genoux - Piqué <", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 376, "fields": {"content": "", "long_label": "Genoux - Piqué tendu", "short_label": "Genoux - Piqué", "difficulty": "0.3", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 377, "fields": {"content": "", "long_label": "Salto avant tendu, ventre", "short_label": "Avant /, ventre", "difficulty": "0.7", "level": 8, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [24]}}, {"model": "objective.educative", "pk": 378, "fields": {"content": "", "long_label": "Barani In Full Out puck", "short_label": "Barani In Full Out puck", "difficulty": "1.3", "level": 13, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 379, "fields": {"content": "", "long_label": "Barani In Full Out demi carpé", "short_label": "BIFO L", "difficulty": "1.5", "level": 15, "rank": 15, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [66]}}, {"model": "objective.educative", "pk": 380, "fields": {"content": "", "long_label": "4 pattes - salto avant carpé", "short_label": "4 pattes - avant <", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [207]}}, {"model": "objective.educative", "pk": 381, "fields": {"content": "", "long_label": "Pull-over carpé, arriver assis", "short_label": "PO <, assis", "difficulty": "0.3", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [47]}}, {"model": "objective.educative", "pk": 382, "fields": {"content": "", "long_label": "Pull-over carpé, arriver 4 pattes", "short_label": "PO <, 4 pattes", "difficulty": "0.2", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [219]}}, {"model": "objective.educative", "pk": 383, "fields": {"content": "", "long_label": "Pull-over carpé, arriver ventre", "short_label": "PO <, ventre", "difficulty": "0.2", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [382]}}, {"model": "objective.educative", "pk": 384, "fields": {"content": "", "long_label": "Pull-over tendu, arriver 4 pattes", "short_label": "PO /, 4 pattes", "difficulty": "0.2", "level": 3, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [382]}}, {"model": "objective.educative", "pk": 385, "fields": {"content": "", "long_label": "Pull-over tendu, arriver ventre", "short_label": "PO /, ventre", "difficulty": "0.2", "level": 3, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [384]}}, {"model": "objective.educative", "pk": 386, "fields": {"content": "", "long_label": "Pull-over carpé + demi tour, (plat) dos", "short_label": "PO < + ½, (plat) dos", "difficulty": "0.3", "level": 3, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [383]}}, {"model": "objective.educative", "pk": 387, "fields": {"content": "", "long_label": "4 pattes - salto avant carpé, curviligne ouvert", "short_label": "4 pattes - avant <, (", "difficulty": "0.2", "level": 2, "rank": 2, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [206]}}, {"model": "objective.educative", "pk": 388, "fields": {"content": "", "long_label": "4 pattes - salto avant tendu, curviligne ouvert", "short_label": "4 pattes - avant /, (", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [387]}}, {"model": "objective.educative", "pk": 389, "fields": {"content": "", "long_label": "Trois quart avant groupé + vrille", "short_label": "¾ Avant o + vrille", "difficulty": "0.5", "level": 5, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [153]}}, {"model": "objective.educative", "pk": 390, "fields": {"content": "", "long_label": "Trois quart avant carpé + vrille", "short_label": "¾ Avant < + vrille", "difficulty": "0.5", "level": 5, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [154]}}, {"model": "objective.educative", "pk": 391, "fields": {"content": "", "long_label": "Vrille (bras en bas)", "short_label": "Vrille (beb)", "difficulty": "0.2", "level": 3, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 392, "fields": {"content": "", "long_label": "Vrille bras en haut", "short_label": "Vrille beh", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 393, "fields": {"content": "", "long_label": "Vrille bras de bas en haut", "short_label": "Vrille b2h", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 394, "fields": {"content": "", "long_label": "Vrille bras de haut en bas", "short_label": "Vrille h2b", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 395, "fields": {"content": "", "long_label": "Vrille bras en bas, en haut, en bas", "short_label": "Vrille bhb", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 396, "fields": {"content": "", "long_label": "Vrille bras en haut, en bas, en haut", "short_label": "Vrille hbh", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [28]}}, {"model": "objective.educative", "pk": 397, "fields": {"content": "", "long_label": "Double vrille bras en haut", "short_label": "Double vrille bras en haut", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 398, "fields": {"content": "", "long_label": "Double vrille bras en bas", "short_label": "Double vrille bras en bas", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 399, "fields": {"content": "", "long_label": "Double vrille bras de bas en haut", "short_label": "Double vrille bras de bas en haut", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 400, "fields": {"content": "", "long_label": "Double vrille bras de haut en bas", "short_label": "Double vrille bras de haut en bas", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [245]}}, {"model": "objective.educative", "pk": 401, "fields": {"content": "", "long_label": "Vrille et demi bras en bas", "short_label": "Vrille et ½ beb", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [391]}}, {"model": "objective.educative", "pk": 402, "fields": {"content": "", "long_label": "Vrille et demi bras en haut", "short_label": "Vrille et ½ beh", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [392]}}, {"model": "objective.educative", "pk": 403, "fields": {"content": "", "long_label": "Vrille et demi bras de bas en haut", "short_label": "Vrille et ½ b2h", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [393]}}, {"model": "objective.educative", "pk": 404, "fields": {"content": "", "long_label": "Vrille et demi bras de haut en bas", "short_label": "Vrille et ½ h2b", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [394]}}, {"model": "objective.educative", "pk": 405, "fields": {"content": "", "long_label": "Vrille et demi bras en bas, en haut, en bas, en haut", "short_label": "Vrille et ½ bhbh", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [395]}}, {"model": "objective.educative", "pk": 406, "fields": {"content": "", "long_label": "Vrille et demi bras en haut en bas en haut en bas", "short_label": "Vrille et ½ bras en haut en bas en haut en bas", "difficulty": "0.3", "level": 4, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [396]}}, {"model": "objective.educative", "pk": 407, "fields": {"content": "", "long_label": "Double vrille une vrille beb, une vrille beh", "short_label": "Double vrille une vrille beb, une vrille beh", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [263]}}, {"model": "objective.educative", "pk": 408, "fields": {"content": "", "long_label": "Double vrille une vrille beh, une vrille beb", "short_label": "Double vrille une vrille beh, une vrille beb", "difficulty": "0.4", "level": 5, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [263]}}, {"model": "objective.educative", "pk": 409, "fields": {"content": "", "long_label": "Half In Half Out puck", "short_label": "Half In Half Out puck", "difficulty": "1.2", "level": 12, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [111]}}, {"model": "objective.educative", "pk": 410, "fields": {"content": "", "long_label": "Half In Half Out demi carpé", "short_label": "HIHO L", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [112]}}, {"model": "objective.educative", "pk": 411, "fields": {"content": "", "long_label": "Double arrière demi-groupé", "short_label": "2 back puck", "difficulty": "1.0", "level": 10, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [91]}}, {"model": "objective.educative", "pk": 412, "fields": {"content": "", "long_label": "Double arrière demi-carpé", "short_label": "2 back L", "difficulty": "1.2", "level": 12, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [92]}}, {"model": "objective.educative", "pk": 413, "fields": {"content": "", "long_label": "Cody groupé + demi tour, plat-dos", "short_label": "Cody o + ½, plat-dos", "difficulty": "0.6", "level": 6, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [158]}}, {"model": "objective.educative", "pk": 414, "fields": {"content": "", "long_label": "Cody carpé + demi tour, plat-dos", "short_label": "Cody < + ½, plat-dos", "difficulty": "0.6", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [315]}}, {"model": "objective.educative", "pk": 415, "fields": {"content": "", "long_label": "Cody groupé + vrille, ventre", "short_label": "Cody o + vrille, ventre", "difficulty": "0.7", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [413]}}, {"model": "objective.educative", "pk": 416, "fields": {"content": "", "long_label": "Cody carpé + vrille, ventre", "short_label": "Cody < + vrille, ventre", "difficulty": "0.7", "level": 7, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [414, 415]}}, {"model": "objective.educative", "pk": 417, "fields": {"content": "", "long_label": "Cody groupé + vrille, debout", "short_label": "Cody full o", "difficulty": "0.8", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [30, 415]}}, {"model": "objective.educative", "pk": 418, "fields": {"content": "", "long_label": "Cody carpé + vrille, debout", "short_label": "Cody full <", "difficulty": "0.9", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [61, 416]}}, {"model": "objective.educative", "pk": 419, "fields": {"content": "", "long_label": "Cody tendu + demi tour, plat-dos", "short_label": "Cody / + ½, plat-dos", "difficulty": "0.6", "level": 7, "rank": 15, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [316]}}, {"model": "objective.educative", "pk": 420, "fields": {"content": "", "long_label": "Cody tendu + vrille, ventre", "short_label": "Cody / + vrille, ventre", "difficulty": "0.7", "level": 8, "rank": 16, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [419]}}, {"model": "objective.educative", "pk": 421, "fields": {"content": "", "long_label": "Cody tendu + vrille et demi, plat dos", "short_label": "Cody tendu + vrille et ½, plat dos", "difficulty": "0.8", "level": 9, "rank": 17, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [420]}}, {"model": "objective.educative", "pk": 422, "fields": {"content": "", "long_label": "Cody tendu + vrille et demi, debout", "short_label": "Cody tendu + vrille et ½, debout", "difficulty": "1.0", "level": 11, "rank": 17, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [162, 421]}}, {"model": "objective.educative", "pk": 423, "fields": {"content": "", "long_label": "4 pattes - Culbute, arriver assis", "short_label": "4 pattes - Culbute, assis", "difficulty": "0.3", "level": 3, "rank": 5, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 424, "fields": {"content": "", "long_label": "4 pattes - Culbute, arriver dos", "short_label": "4 pattes - Culbute, dos", "difficulty": "0.2", "level": 2, "rank": 2, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [208]}}, {"model": "objective.educative", "pk": 425, "fields": {"content": "", "long_label": "Kaboom arrière carpé, arriver ventre", "short_label": "Kaboom <, ventre", "difficulty": "0.2", "level": 2, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [194]}}, {"model": "objective.educative", "pk": 426, "fields": {"content": "", "long_label": "Kaboom arrière tendu, arriver ventre", "short_label": "Kaboom /, ventre", "difficulty": "0.2", "level": 3, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [425]}}, {"model": "objective.educative", "pk": 427, "fields": {"content": "(abaisser un bras)", "long_label": "Kaboom arrière tendu + demi tour, arriver plat dos", "short_label": "Kaboom / + ½, plat dos", "difficulty": "0.3", "level": 4, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [426]}}, {"model": "objective.educative", "pk": 428, "fields": {"content": "", "long_label": "Kaboom arrière tendu + vrille, arriver ventre", "short_label": "Kaboom / + vrille, ventre", "difficulty": "0.4", "level": 5, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [427]}}, {"model": "objective.educative", "pk": 429, "fields": {"content": "", "long_label": "Kaboom arrière - double arrière groupé", "short_label": "Kaboom double o", "difficulty": "0.8", "level": 8, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [430]}}, {"model": "objective.educative", "pk": 430, "fields": {"content": "", "long_label": "Kaboom arrière tendu, arriver dos", "short_label": "Kaboom /, arriver dos", "difficulty": "0.5", "level": 6, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [174]}}, {"model": "objective.educative", "pk": 431, "fields": {"content": "", "long_label": "Kaboom arrière - double arrière carpé", "short_label": "Kaboom double <", "difficulty": "0.9", "level": 9, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [429]}}, {"model": "objective.educative", "pk": 432, "fields": {"content": "", "long_label": "Kaboom arrière tendu + vrille", "short_label": "Kaboom Full", "difficulty": "0.5", "level": 6, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [174, 428]}}, {"model": "objective.educative", "pk": 433, "fields": {"content": "", "long_label": "Kaboom arrière tendu + vrille, arriver plat dos", "short_label": "Kaboom Full, plat dos", "difficulty": "0.7", "level": 8, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [432]}}, {"model": "objective.educative", "pk": 434, "fields": {"content": "", "long_label": "Kaboom arrière tendu + vrille et demi, arriver ventre", "short_label": "Kaboom Full + ½, ventre", "difficulty": "0.8", "level": 9, "rank": 15, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [433]}}, {"model": "objective.educative", "pk": 435, "fields": {"content": "", "long_label": "Kaboom arrière tendu + vrille et demi, arriver plat dos", "short_label": "Kaboom Full + ½, plat dos", "difficulty": "0.5", "level": 6, "rank": 15, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [428]}}, {"model": "objective.educative", "pk": 436, "fields": {"content": "", "long_label": "Kaboom arrière tendu + demi tour, debout", "short_label": "Kaboom / + ½, debout", "difficulty": "0.4", "level": 5, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [174, 427]}}, {"model": "objective.educative", "pk": 437, "fields": {"content": "", "long_label": "Kaboom arrière tendu + vrille et demi", "short_label": "Kaboom Full + ½, debout", "difficulty": "0.6", "level": 7, "rank": 16, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [432, 435]}}, {"model": "objective.educative", "pk": 438, "fields": {"content": "", "long_label": "Kaboom avant groupé, arriver plat dos", "short_label": "Kaboom avant o, plat dos", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 439, "fields": {"content": "", "long_label": "Kaboom avant carpé, arriver plat dos", "short_label": "Kaboom avant <, plat dos", "difficulty": "0.2", "level": 2, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [438]}}, {"model": "objective.educative", "pk": 440, "fields": {"content": "", "long_label": "Kaboom avant tendu, arriver plat dos", "short_label": "Kaboom avant /, plat dos", "difficulty": "0.2", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [439]}}, {"model": "objective.educative", "pk": 441, "fields": {"content": "", "long_label": "Kaboom avant groupé + demi tour, arriver 4 pattes", "short_label": "Kaboom avant o + demi, 4 pattes", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [438]}}, {"model": "objective.educative", "pk": 442, "fields": {"content": "", "long_label": "Kaboom avant carpé + demi tour, arriver 4 pattes", "short_label": "Kaboom avant < + demi, 4 pattes", "difficulty": "0.3", "level": 3, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [441]}}, {"model": "objective.educative", "pk": 443, "fields": {"content": "", "long_label": "Kaboom avant tendu + demi tour, arriver 4 pattes", "short_label": "Kaboom avant / + demi, 4 pattes", "difficulty": "0.3", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [442]}}, {"model": "objective.educative", "pk": 444, "fields": {"content": "", "long_label": "Kaboom avant groupé + vrille, arriver plat dos", "short_label": "Kaboom avant o + vrille, plat dos", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [441]}}, {"model": "objective.educative", "pk": 445, "fields": {"content": "", "long_label": "Kaboom avant carpé + vrille, arriver plat dos", "short_label": "Kaboom avant < + vrille, plat dos", "difficulty": "0.4", "level": 4, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [444]}}, {"model": "objective.educative", "pk": 446, "fields": {"content": "", "long_label": "Kaboom avant tendu + vrille, arriver plat dos", "short_label": "Kaboom avant / + vrille, plat dos", "difficulty": "0.4", "level": 5, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [445]}}, {"model": "objective.educative", "pk": 447, "fields": {"content": "", "long_label": "Vrille debout (du ventre)", "short_label": "Vrille debout (du ventre)", "difficulty": "0.3", "level": 4, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [70]}}, {"model": "objective.educative", "pk": 448, "fields": {"content": "", "long_label": "Half In trois quart groupé, arriver plat dos", "short_label": "Half In trois quart o, plat dos", "difficulty": "0.4", "level": 4, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [50, 153]}}, {"model": "objective.educative", "pk": 449, "fields": {"content": "", "long_label": "Half In trois quart carpé, arriver plat dos", "short_label": "Half In trois quart <, plat dos", "difficulty": "0.4", "level": 4, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [448]}}, {"model": "objective.educative", "pk": 450, "fields": {"content": "", "long_label": "Barani carpé, arriver ventre", "short_label": "Barani <, ventre", "difficulty": "0.4", "level": 4, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [32]}}, {"model": "objective.educative", "pk": 451, "fields": {"content": "", "long_label": "Barani groupé, arriver ventre", "short_label": "Barani o, ventre", "difficulty": "0.4", "level": 4, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [31]}}, {"model": "objective.educative", "pk": 452, "fields": {"content": "", "long_label": "Barani tendu, arriver ventre", "short_label": "Barani /, ventre", "difficulty": "0.4", "level": 5, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [33]}}, {"model": "objective.educative", "pk": 453, "fields": {"content": "", "long_label": "Assis - Dos", "short_label": "Assis - Dos", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [319]}}, {"model": "objective.educative", "pk": 454, "fields": {"content": "", "long_label": "Tomber plat dos tendu bras en bas", "short_label": "Plat dos (beb)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [199]}}, {"model": "objective.educative", "pk": 455, "fields": {"content": "", "long_label": "Tomber plat dos tendu bras de haut en bas", "short_label": "Plat dos (h2b)", "difficulty": "0.1", "level": 2, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [6]}}, {"model": "objective.educative", "pk": 456, "fields": {"content": "", "long_label": "Tomber plat dos tendu bras de bas en haut", "short_label": "Plat dos (b2h)", "difficulty": "0.1", "level": 2, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [319]}}, {"model": "objective.educative", "pk": 457, "fields": {"content": "", "long_label": "Tomber Assis bras en bas", "short_label": "Tomber Assis (beb)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 458, "fields": {"content": "", "long_label": "Tomber Assis bras en haut", "short_label": "Tomber Assis (b2h)", "difficulty": "0.0", "level": 1, "rank": 4, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [199]}}, {"model": "objective.educative", "pk": 459, "fields": {"content": "", "long_label": "Debout (de l'assis) bras en bas", "short_label": "Debout (de l'assis) (beb)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 460, "fields": {"content": "", "long_label": "Debout (de l'assis) bras en haut", "short_label": "Debout (de l'assis) (beh)", "difficulty": "0.0", "level": 1, "rank": 2, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [459]}}, {"model": "objective.educative", "pk": 461, "fields": {"content": "", "long_label": "Demi tour debout (de l'assis) bras en bas", "short_label": "Demi tour debout (de l'assis) (beb)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [5]}}, {"model": "objective.educative", "pk": 462, "fields": {"content": "", "long_label": "Demi tour debout (de l'assis) bras en haut", "short_label": "Demi tour debout (de l'assis) (beh)", "difficulty": "0.0", "level": 1, "rank": 1, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [461]}}, {"model": "objective.educative", "pk": 463, "fields": {"content": "", "long_label": "Vrille debout (de l'assis) bras en haut", "short_label": "Vrille debout (de l'assis) (beh)", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [462]}}, {"model": "objective.educative", "pk": 464, "fields": {"content": "", "long_label": "Vrille debout (de l'assis) bras en bas", "short_label": "Vrille debout (de l'assis) (b2b)", "difficulty": "0.2", "level": 3, "rank": 3, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [461]}}, {"model": "objective.educative", "pk": 465, "fields": {"content": "", "long_label": "Prog Half out fliffis groupé", "short_label": "1 ¾ o, plat dos", "difficulty": "0.8", "level": 8, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [225, 53]}}, {"model": "objective.educative", "pk": 466, "fields": {"content": "", "long_label": "Prog Half out fliffis carpé", "short_label": "1 ¾ <, plat dos", "difficulty": "0.9", "level": 9, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [224, 54]}}, {"model": "objective.educative", "pk": 467, "fields": {"content": "", "long_label": "Ventre - Poirier", "short_label": "Ventre - ATR", "difficulty": "0.1", "level": 2, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [189]}}, {"model": "objective.educative", "pk": 468, "fields": {"content": "", "long_label": "Poirier - rouler", "short_label": "ATR - roule", "difficulty": "0.1", "level": 1, "rank": 5, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [189]}}, {"model": "objective.educative", "pk": 469, "fields": {"content": "", "long_label": "Poirier - plat dos", "short_label": "Poirier - plat dos", "difficulty": "0.1", "level": 2, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [468]}}, {"model": "objective.educative", "pk": 471, "fields": {"content": "", "long_label": "Ball Out tendu, arriver ventre", "short_label": "Ball Out /, ventre", "difficulty": "0.8", "level": 9, "rank": 13, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [274]}}, {"model": "objective.educative", "pk": 472, "fields": {"content": "", "long_label": "Porpus full groupé, arriver plat dos", "short_label": "Porpus full o, plat dos", "difficulty": "0.7", "level": 7, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [40]}}, {"model": "objective.educative", "pk": 473, "fields": {"content": "", "long_label": "Porpus full carpé, arriver plat dos", "short_label": "Porpus full <, plat dos", "difficulty": "0.7", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [41, 472]}}, {"model": "objective.educative", "pk": 474, "fields": {"content": "", "long_label": "Porpus full tendu, arriver plat dos", "short_label": "Porpus full /, plat dos", "difficulty": "0.7", "level": 8, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [473, 42]}}, {"model": "objective.educative", "pk": 475, "fields": {"content": "", "long_label": "Jonah ball out tendu", "short_label": "Jonah ball out /", "difficulty": "0.8", "level": 9, "rank": 14, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [249]}}, {"model": "objective.educative", "pk": 476, "fields": {"content": "", "long_label": "Porpus groupé + demi, arriver ventre", "short_label": "Porpus o + demi, ventre", "difficulty": "0.6", "level": 6, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [40]}}, {"model": "objective.educative", "pk": 477, "fields": {"content": "", "long_label": "Porpus carpé + demi, arriver ventre", "short_label": "Porpus < + demi, ventre", "difficulty": "0.6", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [41]}}, {"model": "objective.educative", "pk": 478, "fields": {"content": "", "long_label": "Porpus tendu + demi, arriver ventre", "short_label": "Porpus / + demi, ventre", "difficulty": "0.6", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [42]}}, {"model": "objective.educative", "pk": 479, "fields": {"content": "", "long_label": "Vrille et demi, tomber ventre", "short_label": "Vrille et ½, ventre", "difficulty": "0.4", "level": 5, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [84]}}, {"model": "objective.educative", "pk": 480, "fields": {"content": "", "long_label": "Pull-over tendu", "short_label": "PO /", "difficulty": "0.3", "level": 4, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [47]}}, {"model": "objective.educative", "pk": 481, "fields": {"content": "", "long_label": "Double pull-over groupé", "short_label": "Double pull-over o", "difficulty": "0.8", "level": 8, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [222, 63]}}, {"model": "objective.educative", "pk": 482, "fields": {"content": "", "long_label": "Double pull-over carpé", "short_label": "Double pull-over <", "difficulty": "0.9", "level": 9, "rank": 12, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [481]}}, {"model": "objective.educative", "pk": 483, "fields": {"content": "", "long_label": "Pull-over tendu + demi tour, (plat) dos", "short_label": "PO / + ½, (plat) dos", "difficulty": "0.3", "level": 4, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [385]}}, {"model": "objective.educative", "pk": 484, "fields": {"content": "", "long_label": "Pull-over tendu - vrille, ventre", "short_label": "PO / - vrille, ventre", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [483]}}, {"model": "objective.educative", "pk": 485, "fields": {"content": "", "long_label": "Pull-over tendu - vrille et demi, arriver plat dos", "short_label": "PO / - vrille et ½, plat dos", "difficulty": "0.5", "level": 6, "rank": 6, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [484]}}, {"model": "objective.educative", "pk": 486, "fields": {"content": "", "long_label": "Pull-over tendu + demi tour, debout", "short_label": "PO / + ½", "difficulty": "0.4", "level": 5, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [480, 483]}}, {"model": "objective.educative", "pk": 487, "fields": {"content": "", "long_label": "Pull-over tendu + vrille, debout", "short_label": "PO / + vrille, debout", "difficulty": "0.5", "level": 6, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [486]}}, {"model": "objective.educative", "pk": 488, "fields": {"content": "", "long_label": "Pull-over tendu + demi tour, arrivée ventre", "short_label": "PO / + demi, ventre", "difficulty": "0.6", "level": 7, "rank": 11, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [486]}}, {"model": "objective.educative", "pk": 489, "fields": {"content": "", "long_label": "Pull-over tendu + vrille, arriver plat-dos", "short_label": "PO / + vrille, plat-dos", "difficulty": "0.7", "level": 8, "rank": 9, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [484]}}, {"model": "objective.educative", "pk": 490, "fields": {"content": "", "long_label": "Pull-over tendu + vrille et demi, arriver ventre", "short_label": "PO / + vrille et demi, ventre", "difficulty": "0.8", "level": 9, "rank": 10, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [489]}}, {"model": "objective.educative", "pk": 492, "fields": {"content": "", "long_label": "Ventre - double vrille, arriver plat dos", "short_label": "Ventre - double vrille, plat dos", "difficulty": "0.4", "level": 5, "rank": 8, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [38]}}, {"model": "objective.educative", "pk": 493, "fields": {"content": "", "long_label": "Ventre - Double vrille, ventre", "short_label": "Ventre - Double vrille, ventre", "difficulty": "0.2", "level": 3, "rank": 7, "age_boy": null, "age_girl": null, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [326]}}, {"model": "objective.educative", "pk": 494, "fields": {"content": null, "long_label": "Dix Chandelles", "short_label": "10 |", "difficulty": "0.0", "level": 0, "rank": 0, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [250]}}, {"model": "objective.educative", "pk": 495, "fields": {"content": null, "long_label": "FfG Imposé D2 Junior 1", "short_label": "L1 D2 Junior 1", "difficulty": "4.0", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 496, "fields": {"content": null, "long_label": "BOT Imposé -14 ans", "short_label": "BOT Imposé -14 ans", "difficulty": "3.5", "level": 9, "rank": 13, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 497, "fields": {"content": null, "long_label": "BOT imposé -12 ans", "short_label": "BOT imposé -12 ans", "difficulty": "2.1", "level": 7, "rank": 9, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 498, "fields": {"content": null, "long_label": "BOT Imposé -10 ans", "short_label": "BOT -10 ans", "difficulty": "0.7", "level": 4, "rank": 6, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 499, "fields": {"content": null, "long_label": "BOT imposé Fédérale 4", "short_label": "BOT F4", "difficulty": "0.7", "level": 4, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 500, "fields": {"content": null, "long_label": "BOT Imposé Fédérale 3", "short_label": "BOT F3", "difficulty": "1.2", "level": 7, "rank": 9, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 501, "fields": {"content": null, "long_label": "BOT Imposé Fédérale 2", "short_label": "BOT F2", "difficulty": "2.5", "level": 9, "rank": 10, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 502, "fields": {"content": null, "long_label": "BOT Imposé Fédérale 1", "short_label": "BOT F1", "difficulty": "4.2", "level": 10, "rank": 13, "age_boy": 10, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 503, "fields": {"content": null, "long_label": "BOT Imposé Bronze", "short_label": "BOT Imposé Bronze", "difficulty": "0.5", "level": 3, "rank": 4, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 504, "fields": {"content": null, "long_label": "BOT Imposé Argent", "short_label": "BOT Imposé Argent", "difficulty": "0.7", "level": 4, "rank": 7, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 505, "fields": {"content": null, "long_label": "BOT Imposé Or", "short_label": "BOT Imposé Or", "difficulty": "1.2", "level": 7, "rank": 9, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 506, "fields": {"content": null, "long_label": "FfG Imposé -10 ans (avec bonus)", "short_label": "FfG -10 ans (bonus)", "difficulty": "1.6", "level": 7, "rank": 9, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 507, "fields": {"content": null, "long_label": "FfG Imposé D1 -12 ans", "short_label": "FfG Imposé D1 -12 ans", "difficulty": "3.6", "level": 10, "rank": 12, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 508, "fields": {"content": null, "long_label": "FfG Imposé D1 Senior 1", "short_label": "FfG Imposé D1 Senior 1", "difficulty": "10.3", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 509, "fields": {"content": null, "long_label": "Safwane's L2", "short_label": "Safwane's L2", "difficulty": "12.0", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 510, "fields": {"content": null, "long_label": "Safwane's L4", "short_label": "Safwane's L4", "difficulty": "15.0", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 511, "fields": {"content": null, "long_label": "Sebastian's L4", "short_label": "Sebastian's L4", "difficulty": "16.4", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 512, "fields": {"content": null, "long_label": "Sebastian's L2", "short_label": "Sebastian's L2", "difficulty": "13.1", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 513, "fields": {"content": "", "long_label": "Prog Half In Triffis groupé", "short_label": "Prog Half In Triffis o", "difficulty": "1.4", "level": 14, "rank": 14, "age_boy": 17, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 514, "fields": {"content": "", "long_label": "Prog Half In Triffis carré", "short_label": "Prog Half In Triffis <", "difficulty": "1.6", "level": 16, "rank": 16, "age_boy": 18, "age_girl": 19, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 515, "fields": {"content": null, "long_label": "Imposé Roswitha", "short_label": "Roswitha's L1", "difficulty": "6.9", "level": 13, "rank": 15, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 516, "fields": {"content": null, "long_label": "Roswitha's L2", "short_label": "Roswitha's L2", "difficulty": "9.1", "level": 15, "rank": 16, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 517, "fields": {"content": null, "long_label": "Rivoal 02", "short_label": "Rivoal 02", "difficulty": "3.4", "level": 10, "rank": 11, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 518, "fields": {"content": null, "long_label": "Rivoal 03", "short_label": "Rivoal 03", "difficulty": "3.6", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 519, "fields": {"content": null, "long_label": "Rivoal 04", "short_label": "Rivoal 04", "difficulty": "3.9", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 520, "fields": {"content": null, "long_label": "Rivoal 05", "short_label": "Rivoal 05", "difficulty": "4.2", "level": 10, "rank": 11, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 521, "fields": {"content": null, "long_label": "Rivoal 01", "short_label": "Rivoal 01", "difficulty": "2.4", "level": 9, "rank": 10, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 522, "fields": {"content": null, "long_label": "Rivoal 06", "short_label": "Rivoal 06", "difficulty": "4.5", "level": 9, "rank": 12, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 523, "fields": {"content": null, "long_label": "Rivoal 07", "short_label": "Rivoal 07", "difficulty": "4.8", "level": 10, "rank": 11, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 524, "fields": {"content": null, "long_label": "Rivoal 08", "short_label": "Rivoal 08", "difficulty": "4.9", "level": 12, "rank": 13, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 525, "fields": {"content": null, "long_label": "Rivoal 09", "short_label": "Rivoal 09", "difficulty": "5.0", "level": 12, "rank": 13, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 526, "fields": {"content": null, "long_label": "Rivoal 10", "short_label": "Rivoal 10", "difficulty": "5.4", "level": 12, "rank": 13, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 527, "fields": {"content": null, "long_label": "Rivoal 11", "short_label": "Rivoal 11", "difficulty": "5.5", "level": 12, "rank": 13, "age_boy": 10, "age_girl": 10, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 528, "fields": {"content": null, "long_label": "Rivoal 12", "short_label": "Rivoal 12", "difficulty": "5.7", "level": 12, "rank": 13, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 529, "fields": {"content": null, "long_label": "Rivoal 13", "short_label": "Rivoal 13", "difficulty": "6.0", "level": 12, "rank": 14, "age_boy": 11, "age_girl": 11, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 530, "fields": {"content": null, "long_label": "Rivoal 14", "short_label": "Rivoal 14", "difficulty": "6.2", "level": 12, "rank": 13, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 531, "fields": {"content": null, "long_label": "Rivoal 15", "short_label": "Rivoal 15", "difficulty": "6.5", "level": 12, "rank": 14, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 532, "fields": {"content": null, "long_label": "Rivoal 16", "short_label": "Rivoal 16", "difficulty": "6.7", "level": 12, "rank": 12, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 533, "fields": {"content": null, "long_label": "Rivoal 17", "short_label": "Rivoal 17", "difficulty": "7.0", "level": 12, "rank": 14, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 534, "fields": {"content": null, "long_label": "Rivoal 18", "short_label": "Rivoal 18", "difficulty": "7.0", "level": 12, "rank": 13, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 535, "fields": {"content": null, "long_label": "Rivoal 19", "short_label": "Rivoal 19", "difficulty": "7.0", "level": 12, "rank": 13, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 536, "fields": {"content": null, "long_label": "Rivoal 20", "short_label": "Rivoal 20", "difficulty": "7.4", "level": 12, "rank": 14, "age_boy": 12, "age_girl": 12, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 537, "fields": {"content": null, "long_label": "Rivoal 21", "short_label": "Rivoal 21", "difficulty": "7.7", "level": 12, "rank": 13, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 538, "fields": {"content": null, "long_label": "Rivoal 22", "short_label": "Rivoal 22", "difficulty": "8.1", "level": 12, "rank": 13, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 539, "fields": {"content": null, "long_label": "Rivoal 23", "short_label": "Rivoal 23", "difficulty": "8.4", "level": 12, "rank": 15, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 540, "fields": {"content": null, "long_label": "Rivoal 24", "short_label": "Rivoal 24", "difficulty": "8.5", "level": 12, "rank": 15, "age_boy": 13, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 541, "fields": {"content": null, "long_label": "Rivoal 25", "short_label": "Rivoal 25", "difficulty": "9.1", "level": 12, "rank": 15, "age_boy": 14, "age_girl": 14, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 542, "fields": {"content": null, "long_label": "Rivoal 26", "short_label": "Rivoal 26", "difficulty": "9.4", "level": 14, "rank": 15, "age_boy": 14, "age_girl": 13, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 543, "fields": {"content": null, "long_label": "Rivoal 27", "short_label": "Rivoal 27", "difficulty": "10.0", "level": 15, "rank": 16, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 544, "fields": {"content": null, "long_label": "Rivoal 28", "short_label": "Rivoal 28", "difficulty": "10.4", "level": 15, "rank": 16, "age_boy": 14, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 545, "fields": {"content": null, "long_label": "Rivoal 29", "short_label": "Rivoal 29", "difficulty": "11.1", "level": 16, "rank": 17, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 546, "fields": {"content": null, "long_label": "Rivoal 30", "short_label": "Rivoal 30", "difficulty": "11.4", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 547, "fields": {"content": null, "long_label": "Rivoal 31", "short_label": "Rivoal 31", "difficulty": "12.0", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 548, "fields": {"content": null, "long_label": "Rivoal 32", "short_label": "Rivoal 32", "difficulty": "12.5", "level": 16, "rank": 16, "age_boy": 15, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 549, "fields": {"content": null, "long_label": "Rivoal 33", "short_label": "Rivoal 33", "difficulty": "13.1", "level": 18, "rank": 19, "age_boy": 16, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 550, "fields": {"content": null, "long_label": "Rivoal 34", "short_label": "Rivoal 34", "difficulty": "13.3", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 551, "fields": {"content": null, "long_label": "Rivoal 35", "short_label": "Rivoal 35", "difficulty": "13.7", "level": 18, "rank": 18, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 552, "fields": {"content": null, "long_label": "Rivoal 36", "short_label": "Rivoal 36", "difficulty": "15.0", "level": 22, "rank": 23, "age_boy": 18, "age_girl": 18, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 553, "fields": {"content": "", "long_label": "Full in 2 full out carpé", "short_label": "Miller <", "difficulty": "1.8", "level": 18, "rank": 18, "age_boy": 17, "age_girl": 17, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": [132]}}, {"model": "objective.educative", "pk": 554, "fields": {"content": null, "long_label": "QDE N1A1", "short_label": "QDE N1A1", "difficulty": "0.1", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 555, "fields": {"content": null, "long_label": "QDE N1A2", "short_label": "QDE N1A2", "difficulty": "0.2", "level": 2, "rank": 4, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 556, "fields": {"content": null, "long_label": "QDE N1A3", "short_label": "QDE N1A3", "difficulty": "0.4", "level": 3, "rank": 3, "age_boy": 7, "age_girl": 7, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 557, "fields": {"content": null, "long_label": "QDE N1A4", "short_label": "QDE N1A4", "difficulty": "0.3", "level": 2, "rank": 3, "age_boy": 6, "age_girl": 6, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 558, "fields": {"content": null, "long_label": "QDE N1A5", "short_label": "QDE N1A5", "difficulty": "0.8", "level": 5, "rank": 9, "age_boy": 8, "age_girl": 8, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.educative", "pk": 559, "fields": {"content": null, "long_label": "Sebastian's L1", "short_label": "Sebastian's L1", "difficulty": "11.0", "level": 20, "rank": 21, "age_boy": 18, "age_girl": 15, "age_boy_with_help": 6, "age_boy_without_help": 6, "age_boy_chained": 6, "age_boy_masterised": 6, "age_girl_with_help": 6, "age_girl_without_help": 6, "age_girl_chained": 6, "age_girl_masterised": 6, "educatives": [], "prerequisites": []}}, {"model": "objective.touchposition", "pk": 1, "fields": {"label": "Assis", "short_label": "Assis", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 2, "fields": {"label": "Ventre", "short_label": "Ventre", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 3, "fields": {"label": "Dos", "short_label": "Dos", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 4, "fields": {"label": "Plat dos", "short_label": "Plat dos", "allowed_in_competition": true, "is_default": false}}, {"model": "objective.touchposition", "pk": 5, "fields": {"label": "Quadrupédique", "short_label": "4 pattes", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 6, "fields": {"label": "Appui tendu renversé", "short_label": "ATR", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 7, "fields": {"label": "Curviligne ouvert", "short_label": "Ventre ouvert", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 8, "fields": {"label": "Curviligne fermé", "short_label": "Dos fermé", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 9, "fields": {"label": "Debout", "short_label": "Debout", "allowed_in_competition": true, "is_default": true}}, {"model": "objective.touchposition", "pk": 10, "fields": {"label": "Chute faciale", "short_label": "Chute faciale", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.touchposition", "pk": 11, "fields": {"label": "Genoux", "short_label": "Gnx", "allowed_in_competition": false, "is_default": false}}, {"model": "objective.skill", "pk": 73, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- <", "simplified_notation": ".7 -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 72, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- o", "simplified_notation": ".7 -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 149, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 4, "notation": "A 4", "simplified_notation": "A 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 99, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 11, "twist": 0, "notation": ".11 --- <", "simplified_notation": ".11 --- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 98, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 11, "twist": 0, "notation": ".11 --- o", "simplified_notation": ".11 --- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 208, "fields": {"position": "0", "departure": 5, "landing": 1, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": false}}, {"model": "objective.skill", "pk": 423, "fields": {"position": "o", "departure": 5, "landing": 1, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 424, "fields": {"position": "c", "departure": 5, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - c", "simplified_notation": ".2 - c", "is_competitive": false}}, {"model": "objective.skill", "pk": 179, "fields": {"position": "0", "departure": 5, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "A 1", "simplified_notation": "A 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 187, "fields": {"position": "0", "departure": 5, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 189, "fields": {"position": "0", "departure": 5, "landing": 6, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": false}}, {"model": "objective.skill", "pk": 380, "fields": {"position": "<", "departure": 5, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": false}}, {"model": "objective.skill", "pk": 387, "fields": {"position": "<", "departure": 5, "landing": 7, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - <", "simplified_notation": ".2 - <", "is_competitive": false}}, {"model": "objective.skill", "pk": 207, "fields": {"position": "o", "departure": 5, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 206, "fields": {"position": "o", "departure": 5, "landing": 7, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - o", "simplified_notation": ".2 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 388, "fields": {"position": "/", "departure": 5, "landing": 7, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 181, "fields": {"position": "0", "departure": 5, "landing": 2, "rotation_type": 1, "rotation": 0, "twist": 0, "notation": ".0 0", "simplified_notation": ".0 0", "is_competitive": false}}, {"model": "objective.skill", "pk": 109, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 7, "notation": ".4 7 /", "simplified_notation": ".4 7 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 44, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - <", "simplified_notation": "5 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 43, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - o", "simplified_notation": "5. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 227, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 /", "simplified_notation": "4. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 45, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - /", "simplified_notation": "5 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 180, "fields": {"position": "0", "departure": 1, "landing": 5, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": false}}, {"model": "objective.skill", "pk": 331, "fields": {"position": "<", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 <", "simplified_notation": ".1 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 337, "fields": {"position": "<", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3 <", "simplified_notation": ".1 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 334, "fields": {"position": "<", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 <", "simplified_notation": ".1 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 178, "fields": {"position": "0", "departure": 1, "landing": 5, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 100, "fields": {"position": "/", "departure": 1, "landing": 1, "rotation_type": 1, "rotation": 0, "twist": 1, "notation": "A 1", "simplified_notation": "A 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 102, "fields": {"position": "/", "departure": 1, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1", "simplified_notation": ".1 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 332, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 /", "simplified_notation": ".1 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 201, "fields": {"position": "0", "departure": 1, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1", "simplified_notation": "1. 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 453, "fields": {"position": "/", "departure": 1, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 341, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 5, "notation": ".1 5 /", "simplified_notation": ".1 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 327, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 4, "notation": "1. 4 /", "simplified_notation": "1. 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 340, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 4, "notation": ".1 4 /", "simplified_notation": ".1 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 330, "fields": {"position": "o", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 o", "simplified_notation": ".1 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 336, "fields": {"position": "o", "departure": 1, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3 o", "simplified_notation": ".1 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 333, "fields": {"position": "o", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 o", "simplified_notation": ".1 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 199, "fields": {"position": "0", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": true}}, {"model": "objective.skill", "pk": 319, "fields": {"position": "/", "departure": 1, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 157, "fields": {"position": "0", "departure": 1, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - 0", "simplified_notation": ".3 - 0", "is_competitive": true}}, {"model": "objective.skill", "pk": 329, "fields": {"position": "<", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - <", "simplified_notation": ".1 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 328, "fields": {"position": "o", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - o", "simplified_notation": ".1 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 101, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1", "is_competitive": true}}, {"model": "objective.skill", "pk": 146, "fields": {"position": "0", "departure": 1, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "-3", "simplified_notation": "-3", "is_competitive": true}}, {"model": "objective.skill", "pk": 156, "fields": {"position": "0", "departure": 1, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3", "simplified_notation": ".1 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 338, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3 /", "simplified_notation": "1. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 324, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3 /", "simplified_notation": ".1 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 82, "fields": {"position": "0", "departure": 1, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 204, "fields": {"position": "/", "departure": 1, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 2, "notation": "1. 2 /", "simplified_notation": "1. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 335, "fields": {"position": "/", "departure": 1, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 /", "simplified_notation": ".1 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 128, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. -2 <", "simplified_notation": "8. -2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 127, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. -2 o", "simplified_notation": "8. -2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 129, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. -2 /", "simplified_notation": "8. -2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 170, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - o", "simplified_notation": ".5 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 225, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 6, "twist": 0, "notation": ".6 -- <", "simplified_notation": ".6 -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 169, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - o", "simplified_notation": ".5 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 224, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 6, "twist": 0, "notation": ".6 -- o", "simplified_notation": ".6 -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 274, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 -- /", "simplified_notation": ".5 -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 471, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 6, "twist": 0, "notation": ".6 -- /", "simplified_notation": ".6 -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 59, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 <", "simplified_notation": ".5 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 58, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 o", "simplified_notation": ".5 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 60, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 /", "simplified_notation": ".5 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 32, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 <", "simplified_notation": "4 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 56, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 <", "simplified_notation": ".5 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 450, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1 <", "simplified_notation": ".3 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 31, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 o", "simplified_notation": "4 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 159, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- o", "simplified_notation": ".5 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 451, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1 o", "simplified_notation": ".3 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 66, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 <", "simplified_notation": ".8 12 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 379, "fields": {"position": "L", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 L", "simplified_notation": ".8 12 L", "is_competitive": true}}, {"model": "objective.skill", "pk": 65, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 o", "simplified_notation": ".8 12 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 378, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 c", "simplified_notation": ".8 12 c", "is_competitive": true}}, {"model": "objective.skill", "pk": 67, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 12 /", "simplified_notation": ".8 12 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 270, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 c", "simplified_notation": ".4 1 c", "is_competitive": true}}, {"model": "objective.skill", "pk": 33, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 /", "simplified_notation": "4 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 57, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1 /", "simplified_notation": ".5 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 452, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1 /", "simplified_notation": ".3 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 2, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "|", "simplified_notation": "|", "is_competitive": true}}, {"model": "objective.skill", "pk": 255, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "| 1", "simplified_notation": "| 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 257, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "| 3", "simplified_notation": "| 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 256, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "| 2", "simplified_notation": "| 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 200, "fields": {"position": "0", "departure": 10, "landing": 2, "rotation_type": 1, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 61, "fields": {"position": "<", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - <", "simplified_notation": "5. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 414, "fields": {"position": "<", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 <", "simplified_notation": "4. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 418, "fields": {"position": "<", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 <", "simplified_notation": "5. 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 416, "fields": {"position": "<", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 <", "simplified_notation": "4. 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 223, "fields": {"position": "<", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 6, "twist": 0, "notation": "6. -- <", "simplified_notation": "6. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 315, "fields": {"position": "<", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - <", "simplified_notation": "4. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 160, "fields": {"position": "0", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - L", "simplified_notation": "5. - L", "is_competitive": true}}, {"model": "objective.skill", "pk": 162, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 /", "simplified_notation": "5. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 30, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - o", "simplified_notation": "5 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 413, "fields": {"position": "o", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 o", "simplified_notation": "4. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 417, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 o", "simplified_notation": "5. 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 415, "fields": {"position": "o", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 o", "simplified_notation": "4. 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 222, "fields": {"position": "o", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 6, "twist": 0, "notation": "6. -- o", "simplified_notation": "6. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 158, "fields": {"position": "o", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 62, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 0, "notation": "5. - /", "simplified_notation": "5. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 419, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 /", "simplified_notation": "4. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 422, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 5, "twist": 3, "notation": "5. 3 /", "simplified_notation": "5. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 421, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 3, "notation": "4. 3 /", "simplified_notation": "4. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 420, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 317, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 0, "rotation": 6, "twist": 0, "notation": "6. -- /", "simplified_notation": "6. -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 316, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - /", "simplified_notation": "4. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 259, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": "c->", "simplified_notation": "c->", "is_competitive": true}}, {"model": "objective.skill", "pk": 260, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": "c->/m", "simplified_notation": "c->/m", "is_competitive": true}}, {"model": "objective.skill", "pk": 261, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": "c->/m/t", "simplified_notation": "c->/m/t", "is_competitive": true}}, {"model": "objective.skill", "pk": 360, "fields": {"position": "/", "departure": 9, "landing": 8, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - )", "simplified_notation": "1. - )", "is_competitive": true}}, {"model": "objective.skill", "pk": 366, "fields": {"position": "/", "departure": 11, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 14, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 0, "notation": "D", "simplified_notation": "D", "is_competitive": true}}, {"model": "objective.skill", "pk": 459, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D", "simplified_notation": "D", "is_competitive": true}}, {"model": "objective.skill", "pk": 460, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D", "simplified_notation": "D", "is_competitive": true}}, {"model": "objective.skill", "pk": 182, "fields": {"position": "0", "departure": 5, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": false}}, {"model": "objective.skill", "pk": 16, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": true}}, {"model": "objective.skill", "pk": 15, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": true}}, {"model": "objective.skill", "pk": 28, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 323, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 320, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 321, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 322, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 268, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1<", "simplified_notation": "-1<", "is_competitive": true}}, {"model": "objective.skill", "pk": 297, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "1 < 1", "simplified_notation": "1 < 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 300, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "1< 2", "simplified_notation": "1< 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 311, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "1 < 3", "simplified_notation": "1 < 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 269, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1//", "simplified_notation": "-1//", "is_competitive": true}}, {"model": "objective.skill", "pk": 298, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "1 // 1", "simplified_notation": "1 // 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 301, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "1 // 2", "simplified_notation": "1 // 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 310, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "1 // 3", "simplified_notation": "1 // 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 267, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1o", "simplified_notation": "-1o", "is_competitive": true}}, {"model": "objective.skill", "pk": 296, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "1 o 1", "simplified_notation": "1 o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 299, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "1 o 2", "simplified_notation": "1 o 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 309, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 5, "notation": "2 o 3", "simplified_notation": "2 o 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 68, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 1, "rotation": 0, "twist": 1, "notation": "1 A", "simplified_notation": "1 A", "is_competitive": true}}, {"model": "objective.skill", "pk": 69, "fields": {"position": "0", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 1, "notation": "D 1", "simplified_notation": "D 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 461, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D 1", "simplified_notation": "D 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 462, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "D 1", "simplified_notation": "D 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 70, "fields": {"position": "0", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1", "simplified_notation": "1. 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 71, "fields": {"position": "0", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1", "simplified_notation": ".1 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 35, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 1, "notation": ".1 1 /", "simplified_notation": ".1 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 228, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 34, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1 /", "simplified_notation": "1. 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 217, "fields": {"position": "/", "departure": 3, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 218, "fields": {"position": "0", "departure": 3, "landing": 1, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 -", "simplified_notation": ".1 -", "is_competitive": true}}, {"model": "objective.skill", "pk": 345, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 <", "simplified_notation": ".2 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 352, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 <", "simplified_notation": ".2 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 347, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 <", "simplified_notation": ".2 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 105, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 /", "simplified_notation": ".2 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 348, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 /", "simplified_notation": ".2 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 191, "fields": {"position": "0", "departure": 3, "landing": 6, "rotation_type": 2, "rotation": 1, "twist": 1, "notation": "1. 1", "simplified_notation": "1. 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 262, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "-1", "simplified_notation": "-1", "is_competitive": true}}, {"model": "objective.skill", "pk": 355, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 5, "notation": ".2 5 /", "simplified_notation": ".2 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 48, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 354, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 4, "notation": ".2 4 /", "simplified_notation": ".2 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 344, "fields": {"position": "o", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 o", "simplified_notation": ".2 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 351, "fields": {"position": "o", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 o", "simplified_notation": ".2 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 346, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 o", "simplified_notation": ".2 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 190, "fields": {"position": "0", "departure": 3, "landing": 6, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": false}}, {"model": "objective.skill", "pk": 49, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 6, "notation": "- 6", "simplified_notation": "- 6", "is_competitive": true}}, {"model": "objective.skill", "pk": 343, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - <", "simplified_notation": ".2 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 342, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - o", "simplified_notation": ".2 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 104, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 90, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 /", "simplified_notation": ".2 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 353, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 3, "notation": ".2 3 /", "simplified_notation": ".2 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 212, "fields": {"position": "0", "departure": 3, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 247, "fields": {"position": "<", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 <", "simplified_notation": ".4 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 246, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 o", "simplified_notation": ".4 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 39, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 145, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 /", "simplified_notation": ".2 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 412, "fields": {"position": "L", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- L", "simplified_notation": "8. -- L", "is_competitive": true}}, {"model": "objective.skill", "pk": 411, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- c", "simplified_notation": "8. -- c", "is_competitive": true}}, {"model": "objective.skill", "pk": 165, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 9, "twist": 0, "notation": "9. -- o", "simplified_notation": "9. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 106, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 4, "notation": "4. 4 /", "simplified_notation": "4. 4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 251, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 8, "notation": "8. 44 /", "simplified_notation": "8. 44 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 482, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- <", "simplified_notation": "7. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 481, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- o", "simplified_notation": "7. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 92, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- <", "simplified_notation": "8. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 91, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- o", "simplified_notation": "8. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 93, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 0, "notation": "8. -- /", "simplified_notation": "8. -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 263, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 295, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "4 <", "simplified_notation": "4 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 286, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "4//", "simplified_notation": "4//", "is_competitive": true}}, {"model": "objective.skill", "pk": 283, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "4 o", "simplified_notation": "4 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 399, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 400, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 398, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 397, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 407, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 408, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "- 4", "simplified_notation": "- 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 95, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 237, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 5, "twist": 2, "notation": "5. 2 /", "simplified_notation": "5. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 78, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 /", "simplified_notation": ".5 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 553, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 <", "simplified_notation": "8. 33 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 133, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 o", "simplified_notation": "8. 33 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 136, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 <", "simplified_notation": "8. 33 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 137, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 6, "notation": "8. 33 /", "simplified_notation": "8. 33 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 132, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 22 <", "simplified_notation": "8. 22 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 130, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 22 o", "simplified_notation": "8. 22 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 131, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 22 /", "simplified_notation": "8. 22 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 116, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 23 <", "simplified_notation": ".8 23 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 115, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 23 o", "simplified_notation": ".8 23 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 119, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 23 /", "simplified_notation": ".8 23 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 364, "fields": {"position": "/", "departure": 11, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 370, "fields": {"position": "<", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 <", "simplified_notation": ".4 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 369, "fields": {"position": "o", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 o", "simplified_notation": ".4 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 375, "fields": {"position": "<", "departure": 11, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 374, "fields": {"position": "o", "departure": 11, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 376, "fields": {"position": "/", "departure": 11, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 362, "fields": {"position": "<", "departure": 11, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - <", "simplified_notation": "1. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 361, "fields": {"position": "o", "departure": 11, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - o", "simplified_notation": "1. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 363, "fields": {"position": "/", "departure": 11, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 368, "fields": {"position": "<", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - <", "simplified_notation": ".4 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 367, "fields": {"position": "o", "departure": 11, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - o", "simplified_notation": ".4 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 230, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 <", "simplified_notation": "4. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 232, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 5, "twist": 1, "notation": "5. -1 <", "simplified_notation": "5. -1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 139, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 1- <", "simplified_notation": ".8 1- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 138, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 1- o", "simplified_notation": ".8 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 229, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 o", "simplified_notation": "4. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 231, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 5, "twist": 1, "notation": "5. -1 o", "simplified_notation": "5. -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 112, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 <", "simplified_notation": "8. 11 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 410, "fields": {"position": "L", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 L", "simplified_notation": "8. 11 L", "is_competitive": true}}, {"model": "objective.skill", "pk": 111, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 o", "simplified_notation": "8. 11 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 409, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 c", "simplified_notation": "8. 11 c", "is_competitive": true}}, {"model": "objective.skill", "pk": 120, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 2, "notation": "8. 11 /", "simplified_notation": "8. 11 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 141, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 12, "twist": 2, "notation": "12. 1-1 <", "simplified_notation": "12. 1-1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 140, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 12, "twist": 2, "notation": "12. 1-1 o", "simplified_notation": "12. 1-1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 253, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 6, "notation": ".8 15 <", "simplified_notation": ".8 15 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 135, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 13 o", "simplified_notation": "8. 13 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 122, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 13 <", "simplified_notation": "8. 13 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 121, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 13 o", "simplified_notation": "8. 13 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 449, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 <", "simplified_notation": "3. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 448, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 o", "simplified_notation": "3. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 168, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 9, "twist": 1, "notation": ".9 -1 <", "simplified_notation": ".9 -1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 167, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 9, "twist": 1, "notation": ".9 -1 o", "simplified_notation": ".9 -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 114, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 -1 <", "simplified_notation": ".8 -1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 113, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 1, "notation": ".8 -1 o", "simplified_notation": ".8 -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 96, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 1, "notation": ".12 --1 <", "simplified_notation": ".12 --1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 97, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 1, "notation": ".12 --1 o", "simplified_notation": ".12 --1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 249, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- <", "simplified_notation": ".5 1- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 248, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- o", "simplified_notation": ".5 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 475, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 1, "notation": ".5 1- /", "simplified_notation": ".5 1- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 431, "fields": {"position": "<", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- <", "simplified_notation": "7. -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 429, "fields": {"position": "o", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 7, "twist": 0, "notation": "7. -- o", "simplified_notation": "7. -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 195, "fields": {"position": "o", "departure": 8, "landing": 3, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 196, "fields": {"position": "/", "departure": 8, "landing": 6, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 173, "fields": {"position": "<", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 425, "fields": {"position": "<", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 172, "fields": {"position": "o", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 194, "fields": {"position": "o", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 193, "fields": {"position": "o", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 174, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - /", "simplified_notation": "3. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 427, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 /", "simplified_notation": "2. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 436, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 432, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 2, "notation": "3. 2 /", "simplified_notation": "3. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 437, "fields": {"position": "/", "departure": 8, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 3, "notation": "3. 3 /", "simplified_notation": "3. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 435, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 3, "notation": "2. 3 /", "simplified_notation": "2. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 434, "fields": {"position": "/", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 3, "notation": "4. 3 /", "simplified_notation": "4. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 433, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 428, "fields": {"position": "/", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2 /", "simplified_notation": "2. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 430, "fields": {"position": "/", "departure": 8, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - /", "simplified_notation": "4. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 426, "fields": {"position": "/", "departure": 8, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 176, "fields": {"position": "<", "departure": 7, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 442, "fields": {"position": "<", "departure": 7, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 <", "simplified_notation": ".2 1 <", "is_competitive": false}}, {"model": "objective.skill", "pk": 445, "fields": {"position": "<", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 <", "simplified_notation": ".2 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 439, "fields": {"position": "<", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - <", "simplified_notation": ".2 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 175, "fields": {"position": "o", "departure": 7, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 441, "fields": {"position": "o", "departure": 7, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 o", "simplified_notation": ".2 1 o", "is_competitive": false}}, {"model": "objective.skill", "pk": 444, "fields": {"position": "o", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 o", "simplified_notation": ".2 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 438, "fields": {"position": "o", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - o", "simplified_notation": ".2 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 177, "fields": {"position": "/", "departure": 7, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 443, "fields": {"position": "/", "departure": 7, "landing": 5, "rotation_type": 1, "rotation": 2, "twist": 1, "notation": ".2 1 /", "simplified_notation": ".2 1 /", "is_competitive": false}}, {"model": "objective.skill", "pk": 446, "fields": {"position": "/", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 2, "notation": ".2 2 /", "simplified_notation": ".2 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 440, "fields": {"position": "/", "departure": 7, "landing": 4, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 - /", "simplified_notation": ".2 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 18, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 17, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 21, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 20, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 19, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 211, "fields": {"position": "0", "departure": 4, "landing": 5, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": false}}, {"model": "objective.skill", "pk": 203, "fields": {"position": "/", "departure": 4, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 192, "fields": {"position": "0", "departure": 6, "landing": 8, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 469, "fields": {"position": "/", "departure": 6, "landing": 4, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 468, "fields": {"position": "o", "departure": 6, "landing": 3, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - o", "simplified_notation": ".1 - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 41, "fields": {"position": "<", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - <", "simplified_notation": ".4 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 477, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 <", "simplified_notation": ".4 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 473, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 <", "simplified_notation": ".4 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 472, "fields": {"position": "o", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 o", "simplified_notation": ".4 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 474, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 /", "simplified_notation": ".4 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 40, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - o", "simplified_notation": ".4 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 476, "fields": {"position": "o", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 o", "simplified_notation": ".4 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 42, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - /", "simplified_notation": ".4 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 478, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 1, "rotation": 4, "twist": 1, "notation": ".4 1 /", "simplified_notation": ".4 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 80, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 2, "notation": ".7 2- <", "simplified_notation": ".7 2- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 79, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 2, "notation": ".7 2- o", "simplified_notation": ".7 2- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 81, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 2, "notation": ".7 11 /", "simplified_notation": ".7 11 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 88, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 4, "notation": ".7 22 <", "simplified_notation": ".7 22 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 87, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 4, "notation": ".7 22 o", "simplified_notation": ".7 22 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 89, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 4, "notation": ".7 22 /", "simplified_notation": ".7 22 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 243, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 5, "notation": "7. 32 <", "simplified_notation": "7. 32 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 242, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 5, "notation": "7. 32 o", "simplified_notation": "7. 32 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 244, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 5, "notation": "7. 32 /", "simplified_notation": "7. 32 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 241, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 3- /", "simplified_notation": "7. 3- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 240, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 3- <", "simplified_notation": "7. 3- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 239, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 3- o", "simplified_notation": "7. 3- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 234, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 1, "notation": "7. 1- <", "simplified_notation": "7. 1- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 233, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 1, "notation": "7. 1- o", "simplified_notation": "7. 1- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 236, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 12 <", "simplified_notation": "7. 12 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 235, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 7, "twist": 3, "notation": "7. 12 o", "simplified_notation": "7. 12 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 514, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 11, "twist": 1, "notation": "11. 1-- <", "simplified_notation": "11. 1-- <", "is_competitive": false}}, {"model": "objective.skill", "pk": 513, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 11, "twist": 1, "notation": "11. 1-- o", "simplified_notation": "11. 1-- o", "is_competitive": false}}, {"model": "objective.skill", "pk": 466, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- <", "simplified_notation": ".7 -- <", "is_competitive": true}}, {"model": "objective.skill", "pk": 465, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 7, "twist": 0, "notation": ".7 -- o", "simplified_notation": ".7 -- o", "is_competitive": true}}, {"model": "objective.skill", "pk": 221, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 <", "simplified_notation": ".5 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 220, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 o", "simplified_notation": ".5 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 164, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 2, "notation": ".5 2 /", "simplified_notation": ".5 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 47, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. <", "is_competitive": true}}, {"model": "objective.skill", "pk": 386, "fields": {"position": "<", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 <", "simplified_notation": "2. 1 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 64, "fields": {"position": "<", "departure": 3, "landing": 3, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - <", "simplified_notation": "4. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 382, "fields": {"position": "<", "departure": 3, "landing": 5, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": false}}, {"model": "objective.skill", "pk": 381, "fields": {"position": "<", "departure": 3, "landing": 1, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 383, "fields": {"position": "<", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 46, "fields": {"position": "o", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. o", "is_competitive": true}}, {"model": "objective.skill", "pk": 126, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 o", "simplified_notation": "2. 1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 63, "fields": {"position": "o", "departure": 3, "landing": 3, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 219, "fields": {"position": "o", "departure": 3, "landing": 5, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": false}}, {"model": "objective.skill", "pk": 188, "fields": {"position": "o", "departure": 3, "landing": 1, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 125, "fields": {"position": "0", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 480, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - /", "simplified_notation": "3. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 483, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 /", "simplified_notation": "2. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 488, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 1, "notation": "4. 1 /", "simplified_notation": "4. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 486, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 490, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 4, "twist": 3, "notation": "4. 3 /", "simplified_notation": "4. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 489, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 4, "twist": 2, "notation": "4. 2 /", "simplified_notation": "4. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 487, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 2, "rotation": 3, "twist": 2, "notation": "3. 2 /", "simplified_notation": "3. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 485, "fields": {"position": "/", "departure": 3, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 3, "notation": "2. 3 /", "simplified_notation": "2. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 484, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2 /", "simplified_notation": "2. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 384, "fields": {"position": "/", "departure": 3, "landing": 5, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 385, "fields": {"position": "/", "departure": 3, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 108, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 5, "notation": ".4 5 /", "simplified_notation": ".4 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 163, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 5, "notation": ".5 5 /", "simplified_notation": ".5 5 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 118, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 -5 <", "simplified_notation": ".8 -5 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 117, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 5, "notation": ".8 -5 o", "simplified_notation": ".8 -5 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 184, "fields": {"position": "0", "departure": 1, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 197, "fields": {"position": "0", "departure": 8, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 198, "fields": {"position": "0", "departure": 7, "landing": 7, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 185, "fields": {"position": "0", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 318, "fields": {"position": "/", "departure": 3, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 183, "fields": {"position": "0", "departure": 5, "landing": 5, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": false}}, {"model": "objective.skill", "pk": 186, "fields": {"position": "0", "departure": 2, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 238, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 5, "twist": 3, "notation": "5. 12 /", "simplified_notation": "5. 12 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 276, "fields": {"position": "<", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 3, "notation": ".5 3 <", "simplified_notation": ".5 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 275, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 3, "notation": ".5 3 o", "simplified_notation": ".5 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 161, "fields": {"position": "/", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 3, "notation": ".5 3 /", "simplified_notation": ".5 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 76, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 3, "notation": ".4 3 /", "simplified_notation": ".4 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 75, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 3, "notation": ".4 3 /", "simplified_notation": ".4 3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 254, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 8, "twist": 4, "notation": "8. 31 <", "simplified_notation": "8. 31 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 86, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 -3 <", "simplified_notation": ".8 3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 110, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 8, "twist": 3, "notation": ".8 -3 o", "simplified_notation": ".8 -3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 74, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 3, "notation": ".4 3 /", "simplified_notation": ".4 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 252, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 3, "notation": ".12 --3 <", "simplified_notation": ".12 --3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 258, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 12, "twist": 3, "notation": ".12 --3 o", "simplified_notation": "--3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 26, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - <", "simplified_notation": "4 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 25, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - o", "simplified_notation": "4 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 27, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 0, "notation": "4. - /", "simplified_notation": "4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 23, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - <", "simplified_notation": ".4 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 272, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 <", "simplified_notation": ".4 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 54, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - <", "simplified_notation": ".5 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 22, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - o", "simplified_notation": ".4 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 271, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 o", "simplified_notation": ".4 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 53, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 - o", "simplified_notation": ".5 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 24, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 0, "notation": ".4 - /", "simplified_notation": ".4 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 273, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 1, "rotation": 4, "twist": 2, "notation": ".4 2 /", "simplified_notation": ".4 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 377, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 5, "twist": 0, "notation": ".5 -- /", "simplified_notation": ".5 -- /", "is_competitive": true}}, {"model": "objective.skill", "pk": 3, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "<", "simplified_notation": "<", "is_competitive": true}}, {"model": "objective.skill", "pk": 265, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "< 1", "simplified_notation": "< 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 292, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "< 4", "simplified_notation": "< 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 290, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "< 2", "simplified_notation": "< 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 291, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "< 3", "simplified_notation": "< 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 4, "fields": {"position": "0", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "//", "simplified_notation": "//", "is_competitive": true}}, {"model": "objective.skill", "pk": 266, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "//1", "simplified_notation": "//1", "is_competitive": true}}, {"model": "objective.skill", "pk": 289, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "//4", "simplified_notation": "//4", "is_competitive": true}}, {"model": "objective.skill", "pk": 287, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "//2", "simplified_notation": "//2", "is_competitive": true}}, {"model": "objective.skill", "pk": 288, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "//3", "simplified_notation": "//3", "is_competitive": true}}, {"model": "objective.skill", "pk": 1, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "o", "simplified_notation": "o", "is_competitive": true}}, {"model": "objective.skill", "pk": 264, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "o 1", "simplified_notation": "o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 302, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "o 4", "simplified_notation": "o 4", "is_competitive": true}}, {"model": "objective.skill", "pk": 279, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 280, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "o 3", "simplified_notation": "o 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 5, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 0, "notation": "A", "simplified_notation": "A", "is_competitive": true}}, {"model": "objective.skill", "pk": 457, "fields": {"position": "/", "departure": 9, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "A", "simplified_notation": "A", "is_competitive": true}}, {"model": "objective.skill", "pk": 458, "fields": {"position": "/", "departure": 9, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "A", "simplified_notation": "A", "is_competitive": true}}, {"model": "objective.skill", "pk": 278, "fields": {"position": "<", "departure": 9, "landing": 6, "rotation_type": 2, "rotation": 0, "twist": 0, "notation": "A <", "simplified_notation": "A <", "is_competitive": false}}, {"model": "objective.skill", "pk": 277, "fields": {"position": "o", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 0, "notation": "A o", "simplified_notation": "A o", "is_competitive": true}}, {"model": "objective.skill", "pk": 9, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. /", "simplified_notation": "1.", "is_competitive": true}}, {"model": "objective.skill", "pk": 13, "fields": {"position": "/", "departure": 9, "landing": 8, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1.", "simplified_notation": "1.", "is_competitive": true}}, {"model": "objective.skill", "pk": 365, "fields": {"position": "/", "departure": 9, "landing": 11, "rotation_type": 0, "rotation": 0, "twist": 0, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 8, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. <", "simplified_notation": "1. <", "is_competitive": true}}, {"model": "objective.skill", "pk": 359, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 7, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. o", "simplified_notation": "1. o", "is_competitive": true}}, {"model": "objective.skill", "pk": 456, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 455, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 454, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. - /", "simplified_notation": "1. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 6, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. /", "simplified_notation": "1.", "is_competitive": true}}, {"model": "objective.skill", "pk": 10, "fields": {"position": "0", "departure": 9, "landing": 5, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1", "simplified_notation": ".1", "is_competitive": false}}, {"model": "objective.skill", "pk": 11, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 357, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - <", "simplified_notation": ".1 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 358, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 356, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - o", "simplified_notation": ".1 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 12, "fields": {"position": "/", "departure": 9, "landing": 7, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 (", "simplified_notation": ".1 (", "is_competitive": true}}, {"model": "objective.skill", "pk": 107, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 2, "rotation": 4, "twist": 6, "notation": "4. 6 /", "simplified_notation": "4. 6 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 51, "fields": {"position": "<", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - <", "simplified_notation": "3. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 50, "fields": {"position": "o", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - o", "simplified_notation": "3. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 52, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 3, "twist": 0, "notation": "3. - /", "simplified_notation": "3. - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 226, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 3, "twist": 1, "notation": "3. 1 /", "simplified_notation": "3. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 154, "fields": {"position": "<", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - <", "simplified_notation": ".3 - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 390, "fields": {"position": "<", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 3, "twist": 2, "notation": ".3 2 <", "simplified_notation": ".3 2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 153, "fields": {"position": "o", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - o", "simplified_notation": ".3 - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 389, "fields": {"position": "o", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 3, "twist": 2, "notation": ".3 2 o", "simplified_notation": ".3 2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 155, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 1, "rotation": 3, "twist": 0, "notation": ".3 - /", "simplified_notation": ".3 - /", "is_competitive": true}}, {"model": "objective.skill", "pk": 77, "fields": {"position": "/", "departure": 9, "landing": 4, "rotation_type": 1, "rotation": 3, "twist": 2, "notation": ".3 2 /", "simplified_notation": ".3 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 209, "fields": {"position": "0", "departure": 2, "landing": 1, "rotation_type": 2, "rotation": 1, "twist": 0, "notation": "1. -", "simplified_notation": "1. -", "is_competitive": true}}, {"model": "objective.skill", "pk": 152, "fields": {"position": "0", "departure": 2, "landing": 9, "rotation_type": 1, "rotation": 3, "twist": 1, "notation": ".3 1", "simplified_notation": ".3 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 210, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 202, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 0, "rotation": 0, "twist": 1, "notation": "- 1", "simplified_notation": "- 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 38, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 1, "notation": "2. 1 /", "simplified_notation": "2. 1 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 37, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. /", "is_competitive": true}}, {"model": "objective.skill", "pk": 492, "fields": {"position": "/", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2 /", "simplified_notation": "2. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 493, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 166, "fields": {"position": "o", "departure": 2, "landing": 9, "rotation_type": 1, "rotation": 7, "twist": 1, "notation": ".7 -1 o", "simplified_notation": ".7 -1 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 372, "fields": {"position": "<", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - <", "simplified_notation": "2. - <", "is_competitive": true}}, {"model": "objective.skill", "pk": 371, "fields": {"position": "o", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - o", "simplified_notation": "2. - o", "is_competitive": true}}, {"model": "objective.skill", "pk": 36, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 2, "rotation": 2, "twist": 0, "notation": "2. - /", "simplified_notation": "2. /", "is_competitive": true}}, {"model": "objective.skill", "pk": 467, "fields": {"position": "/", "departure": 2, "landing": 6, "rotation_type": 1, "rotation": 1, "twist": 0, "notation": ".1 - /", "simplified_notation": ".1 - /", "is_competitive": false}}, {"model": "objective.skill", "pk": 326, "fields": {"position": "/", "departure": 2, "landing": 3, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 148, "fields": {"position": "0", "departure": 2, "landing": 2, "rotation_type": 2, "rotation": 2, "twist": 3, "notation": "2. 3", "simplified_notation": "2. 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 142, "fields": {"position": "0", "departure": 2, "landing": 4, "rotation_type": 2, "rotation": 2, "twist": 2, "notation": "2. 2", "simplified_notation": "2. 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 325, "fields": {"position": "/", "departure": 2, "landing": 2, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-2", "simplified_notation": "-2", "is_competitive": true}}, {"model": "objective.skill", "pk": 123, "fields": {"position": "0", "departure": 2, "landing": 3, "rotation_type": 1, "rotation": 2, "twist": 0, "notation": ".2 -", "simplified_notation": ".2", "is_competitive": true}}, {"model": "objective.skill", "pk": 29, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-2", "simplified_notation": "-2", "is_competitive": true}}, {"model": "objective.skill", "pk": 391, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 293, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "2 <", "simplified_notation": "2 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 304, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "2 < 1", "simplified_notation": "2 < 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 308, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "2 < 2", "simplified_notation": "2 < 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 284, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "2//", "simplified_notation": "2//", "is_competitive": true}}, {"model": "objective.skill", "pk": 305, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "2 // 1", "simplified_notation": "2 // 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 306, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "2 // 2", "simplified_notation": "2 // 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 281, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "2 o", "simplified_notation": "2 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 303, "fields": {"position": "c", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "2 o 1", "simplified_notation": "2 o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 307, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "2 o 2", "simplified_notation": "2 o 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 393, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "-", "simplified_notation": "-", "is_competitive": true}}, {"model": "objective.skill", "pk": 394, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 395, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 392, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 396, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "- 2", "simplified_notation": "- 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 464, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "D 2", "simplified_notation": "D 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 463, "fields": {"position": "/", "departure": 1, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 2, "notation": "D 2", "simplified_notation": "D 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 214, "fields": {"position": "0", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 2, "notation": "D 2", "simplified_notation": "D 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 215, "fields": {"position": "0", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2", "simplified_notation": ".1 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 447, "fields": {"position": "/", "departure": 2, "landing": 9, "rotation_type": 2, "rotation": 1, "twist": 2, "notation": "1. 2 /", "simplified_notation": "1. 2 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 245, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 294, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "3 <", "simplified_notation": "3 <", "is_competitive": true}}, {"model": "objective.skill", "pk": 314, "fields": {"position": "<", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "3 < 1", "simplified_notation": "3 < 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 285, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "3//", "simplified_notation": "3//", "is_competitive": true}}, {"model": "objective.skill", "pk": 313, "fields": {"position": "//", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "3 // 1", "simplified_notation": "3 // 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 282, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "3 o", "simplified_notation": "3 o", "is_competitive": true}}, {"model": "objective.skill", "pk": 312, "fields": {"position": "o", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 4, "notation": "3 o 1", "simplified_notation": "3 o 1", "is_competitive": true}}, {"model": "objective.skill", "pk": 403, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 404, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 401, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 405, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 402, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 406, "fields": {"position": "/", "departure": 9, "landing": 9, "rotation_type": 0, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 213, "fields": {"position": "0", "departure": 1, "landing": 9, "rotation_type": 1, "rotation": 0, "twist": 3, "notation": "- 3", "simplified_notation": "- 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 216, "fields": {"position": "0", "departure": 3, "landing": 9, "rotation_type": 1, "rotation": 1, "twist": 3, "notation": ".1 3", "simplified_notation": ".1 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 150, "fields": {"position": "0", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3", "simplified_notation": "1. 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 479, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3 /", "simplified_notation": "1. 3 /", "is_competitive": true}}, {"model": "objective.skill", "pk": 143, "fields": {"position": "0", "departure": 9, "landing": 2, "rotation_type": 2, "rotation": 1, "twist": 3, "notation": "1. 3", "simplified_notation": "1. 3", "is_competitive": true}}, {"model": "objective.skill", "pk": 85, "fields": {"position": "0", "departure": 9, "landing": 1, "rotation_type": 2, "rotation": 0, "twist": 2, "notation": "A 2", "simplified_notation": "A 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 83, "fields": {"position": "/", "departure": 9, "landing": 3, "rotation_type": 2, "rotation": 1, "twist": 2, "notation": "1. 2 /", "simplified_notation": "1. 2", "is_competitive": true}}, {"model": "objective.skill", "pk": 84, "fields": {"position": "/", "departure": 9, "landing": 2, "rotation_type": 1, "rotation": 1, "twist": 2, "notation": ".1 2 /", "simplified_notation": ".1 2", "is_competitive": true}}, {"model": "objective.routine", "pk": 498, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 497, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 496, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 504, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 503, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 502, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 501, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 500, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 499, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 505, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 494, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 506, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 507, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 508, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 495, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 515, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 554, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 555, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 556, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 557, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 558, "fields": {"active": true, "is_competitive": false}}, {"model": "objective.routine", "pk": 521, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 517, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 518, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 519, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 520, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 522, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 523, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 524, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 525, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 526, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 527, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 528, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 529, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 530, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 531, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 532, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 533, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 534, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 535, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 536, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 537, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 538, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 539, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 540, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 541, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 542, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 543, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 544, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 545, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 546, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 547, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 548, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 549, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 550, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 551, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 552, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 516, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 509, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 510, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 559, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 512, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routine", "pk": 511, "fields": {"active": true, "is_competitive": true}}, {"model": "objective.routineskill", "pk": 1, "fields": {"routine": 494, "skill": 2, "rank": 1}}, {"model": "objective.routineskill", "pk": 2, "fields": {"routine": 494, "skill": 2, "rank": 2}}, {"model": "objective.routineskill", "pk": 3, "fields": {"routine": 494, "skill": 2, "rank": 3}}, {"model": "objective.routineskill", "pk": 4, "fields": {"routine": 494, "skill": 2, "rank": 4}}, {"model": "objective.routineskill", "pk": 5, "fields": {"routine": 494, "skill": 2, "rank": 5}}, {"model": "objective.routineskill", "pk": 6, "fields": {"routine": 494, "skill": 2, "rank": 6}}, {"model": "objective.routineskill", "pk": 7, "fields": {"routine": 494, "skill": 2, "rank": 7}}, {"model": "objective.routineskill", "pk": 8, "fields": {"routine": 494, "skill": 2, "rank": 8}}, {"model": "objective.routineskill", "pk": 9, "fields": {"routine": 494, "skill": 2, "rank": 9}}, {"model": "objective.routineskill", "pk": 10, "fields": {"routine": 494, "skill": 2, "rank": 10}}, {"model": "objective.routineskill", "pk": 11, "fields": {"routine": 495, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 12, "fields": {"routine": 495, "skill": 33, "rank": 2}}, {"model": "objective.routineskill", "pk": 13, "fields": {"routine": 495, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 14, "fields": {"routine": 495, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 15, "fields": {"routine": 495, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 16, "fields": {"routine": 495, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 17, "fields": {"routine": 495, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 18, "fields": {"routine": 495, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 19, "fields": {"routine": 495, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 20, "fields": {"routine": 495, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 21, "fields": {"routine": 496, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 22, "fields": {"routine": 496, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 23, "fields": {"routine": 496, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 24, "fields": {"routine": 496, "skill": 1, "rank": 4}}, {"model": "objective.routineskill", "pk": 25, "fields": {"routine": 496, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 26, "fields": {"routine": 496, "skill": 32, "rank": 6}}, {"model": "objective.routineskill", "pk": 27, "fields": {"routine": 496, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 28, "fields": {"routine": 496, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 29, "fields": {"routine": 496, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 30, "fields": {"routine": 496, "skill": 59, "rank": 10}}, {"model": "objective.routineskill", "pk": 31, "fields": {"routine": 497, "skill": 25, "rank": 1}}, {"model": "objective.routineskill", "pk": 32, "fields": {"routine": 497, "skill": 31, "rank": 2}}, {"model": "objective.routineskill", "pk": 33, "fields": {"routine": 497, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 34, "fields": {"routine": 497, "skill": 11, "rank": 4}}, {"model": "objective.routineskill", "pk": 35, "fields": {"routine": 497, "skill": 15, "rank": 5}}, {"model": "objective.routineskill", "pk": 36, "fields": {"routine": 497, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 37, "fields": {"routine": 497, "skill": 68, "rank": 7}}, {"model": "objective.routineskill", "pk": 38, "fields": {"routine": 497, "skill": 69, "rank": 8}}, {"model": "objective.routineskill", "pk": 39, "fields": {"routine": 497, "skill": 3, "rank": 9}}, {"model": "objective.routineskill", "pk": 40, "fields": {"routine": 497, "skill": 23, "rank": 10}}, {"model": "objective.routineskill", "pk": 41, "fields": {"routine": 498, "skill": 34, "rank": 1}}, {"model": "objective.routineskill", "pk": 42, "fields": {"routine": 498, "skill": 15, "rank": 2}}, {"model": "objective.routineskill", "pk": 56, "fields": {"routine": 498, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 57, "fields": {"routine": 498, "skill": 5, "rank": 4}}, {"model": "objective.routineskill", "pk": 58, "fields": {"routine": 498, "skill": 14, "rank": 5}}, {"model": "objective.routineskill", "pk": 59, "fields": {"routine": 498, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 60, "fields": {"routine": 498, "skill": 28, "rank": 7}}, {"model": "objective.routineskill", "pk": 61, "fields": {"routine": 498, "skill": 1, "rank": 8}}, {"model": "objective.routineskill", "pk": 62, "fields": {"routine": 498, "skill": 9, "rank": 9}}, {"model": "objective.routineskill", "pk": 63, "fields": {"routine": 498, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 72, "fields": {"routine": 499, "skill": 11, "rank": 1}}, {"model": "objective.routineskill", "pk": 73, "fields": {"routine": 499, "skill": 15, "rank": 2}}, {"model": "objective.routineskill", "pk": 74, "fields": {"routine": 499, "skill": 68, "rank": 3}}, {"model": "objective.routineskill", "pk": 76, "fields": {"routine": 499, "skill": 14, "rank": 4}}, {"model": "objective.routineskill", "pk": 77, "fields": {"routine": 499, "skill": 1, "rank": 5}}, {"model": "objective.routineskill", "pk": 80, "fields": {"routine": 499, "skill": 5, "rank": 7}}, {"model": "objective.routineskill", "pk": 81, "fields": {"routine": 499, "skill": 69, "rank": 7}}, {"model": "objective.routineskill", "pk": 82, "fields": {"routine": 499, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 83, "fields": {"routine": 499, "skill": 9, "rank": 9}}, {"model": "objective.routineskill", "pk": 84, "fields": {"routine": 499, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 85, "fields": {"routine": 500, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 86, "fields": {"routine": 500, "skill": 69, "rank": 2}}, {"model": "objective.routineskill", "pk": 87, "fields": {"routine": 500, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 88, "fields": {"routine": 500, "skill": 11, "rank": 4}}, {"model": "objective.routineskill", "pk": 89, "fields": {"routine": 500, "skill": 16, "rank": 5}}, {"model": "objective.routineskill", "pk": 90, "fields": {"routine": 500, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 91, "fields": {"routine": 500, "skill": 9, "rank": 7}}, {"model": "objective.routineskill", "pk": 92, "fields": {"routine": 500, "skill": 71, "rank": 8}}, {"model": "objective.routineskill", "pk": 93, "fields": {"routine": 500, "skill": 4, "rank": 9}}, {"model": "objective.routineskill", "pk": 94, "fields": {"routine": 500, "skill": 25, "rank": 10}}, {"model": "objective.routineskill", "pk": 95, "fields": {"routine": 501, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 96, "fields": {"routine": 501, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 97, "fields": {"routine": 501, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 98, "fields": {"routine": 501, "skill": 3, "rank": 4}}, {"model": "objective.routineskill", "pk": 99, "fields": {"routine": 501, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 100, "fields": {"routine": 501, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 101, "fields": {"routine": 501, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 102, "fields": {"routine": 501, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 103, "fields": {"routine": 501, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 104, "fields": {"routine": 501, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 105, "fields": {"routine": 502, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 106, "fields": {"routine": 502, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 107, "fields": {"routine": 502, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 108, "fields": {"routine": 502, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 109, "fields": {"routine": 502, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 110, "fields": {"routine": 502, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 111, "fields": {"routine": 502, "skill": 1, "rank": 7}}, {"model": "objective.routineskill", "pk": 112, "fields": {"routine": 502, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 113, "fields": {"routine": 502, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 114, "fields": {"routine": 502, "skill": 59, "rank": 10}}, {"model": "objective.routineskill", "pk": 115, "fields": {"routine": 503, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 116, "fields": {"routine": 503, "skill": 14, "rank": 2}}, {"model": "objective.routineskill", "pk": 117, "fields": {"routine": 503, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 118, "fields": {"routine": 503, "skill": 28, "rank": 4}}, {"model": "objective.routineskill", "pk": 119, "fields": {"routine": 503, "skill": 3, "rank": 5}}, {"model": "objective.routineskill", "pk": 120, "fields": {"routine": 503, "skill": 11, "rank": 6}}, {"model": "objective.routineskill", "pk": 121, "fields": {"routine": 503, "skill": 15, "rank": 7}}, {"model": "objective.routineskill", "pk": 122, "fields": {"routine": 503, "skill": 1, "rank": 8}}, {"model": "objective.routineskill", "pk": 123, "fields": {"routine": 503, "skill": 5, "rank": 9}}, {"model": "objective.routineskill", "pk": 124, "fields": {"routine": 503, "skill": 69, "rank": 10}}, {"model": "objective.routineskill", "pk": 125, "fields": {"routine": 505, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 126, "fields": {"routine": 505, "skill": 69, "rank": 2}}, {"model": "objective.routineskill", "pk": 127, "fields": {"routine": 505, "skill": 3, "rank": 3}}, {"model": "objective.routineskill", "pk": 128, "fields": {"routine": 505, "skill": 11, "rank": 4}}, {"model": "objective.routineskill", "pk": 129, "fields": {"routine": 505, "skill": 15, "rank": 5}}, {"model": "objective.routineskill", "pk": 130, "fields": {"routine": 505, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 131, "fields": {"routine": 505, "skill": 9, "rank": 7}}, {"model": "objective.routineskill", "pk": 132, "fields": {"routine": 505, "skill": 71, "rank": 8}}, {"model": "objective.routineskill", "pk": 133, "fields": {"routine": 505, "skill": 4, "rank": 9}}, {"model": "objective.routineskill", "pk": 134, "fields": {"routine": 505, "skill": 25, "rank": 10}}, {"model": "objective.routineskill", "pk": 135, "fields": {"routine": 504, "skill": 11, "rank": 1}}, {"model": "objective.routineskill", "pk": 136, "fields": {"routine": 504, "skill": 16, "rank": 2}}, {"model": "objective.routineskill", "pk": 137, "fields": {"routine": 504, "skill": 68, "rank": 3}}, {"model": "objective.routineskill", "pk": 138, "fields": {"routine": 504, "skill": 14, "rank": 4}}, {"model": "objective.routineskill", "pk": 139, "fields": {"routine": 504, "skill": 1, "rank": 5}}, {"model": "objective.routineskill", "pk": 140, "fields": {"routine": 504, "skill": 5, "rank": 6}}, {"model": "objective.routineskill", "pk": 141, "fields": {"routine": 504, "skill": 69, "rank": 7}}, {"model": "objective.routineskill", "pk": 142, "fields": {"routine": 504, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 143, "fields": {"routine": 504, "skill": 9, "rank": 9}}, {"model": "objective.routineskill", "pk": 144, "fields": {"routine": 504, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 145, "fields": {"routine": 506, "skill": 25, "rank": 1}}, {"model": "objective.routineskill", "pk": 146, "fields": {"routine": 506, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 147, "fields": {"routine": 506, "skill": 14, "rank": 3}}, {"model": "objective.routineskill", "pk": 148, "fields": {"routine": 506, "skill": 4, "rank": 4}}, {"model": "objective.routineskill", "pk": 149, "fields": {"routine": 506, "skill": 34, "rank": 5}}, {"model": "objective.routineskill", "pk": 150, "fields": {"routine": 506, "skill": 15, "rank": 6}}, {"model": "objective.routineskill", "pk": 151, "fields": {"routine": 506, "skill": 3, "rank": 7}}, {"model": "objective.routineskill", "pk": 152, "fields": {"routine": 506, "skill": 28, "rank": 8}}, {"model": "objective.routineskill", "pk": 153, "fields": {"routine": 506, "skill": 1, "rank": 9}}, {"model": "objective.routineskill", "pk": 154, "fields": {"routine": 506, "skill": 31, "rank": 10}}, {"model": "objective.routineskill", "pk": 155, "fields": {"routine": 507, "skill": 19, "rank": 1}}, {"model": "objective.routineskill", "pk": 156, "fields": {"routine": 507, "skill": 58, "rank": 2}}, {"model": "objective.routineskill", "pk": 157, "fields": {"routine": 507, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 158, "fields": {"routine": 507, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 159, "fields": {"routine": 507, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 160, "fields": {"routine": 507, "skill": 1, "rank": 6}}, {"model": "objective.routineskill", "pk": 161, "fields": {"routine": 507, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 162, "fields": {"routine": 507, "skill": 3, "rank": 8}}, {"model": "objective.routineskill", "pk": 163, "fields": {"routine": 507, "skill": 52, "rank": 9}}, {"model": "objective.routineskill", "pk": 164, "fields": {"routine": 507, "skill": 30, "rank": 10}}, {"model": "objective.routineskill", "pk": 165, "fields": {"routine": 508, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 166, "fields": {"routine": 508, "skill": 122, "rank": 2}}, {"model": "objective.routineskill", "pk": 167, "fields": {"routine": 508, "skill": 32, "rank": 3}}, {"model": "objective.routineskill", "pk": 168, "fields": {"routine": 508, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 169, "fields": {"routine": 508, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 170, "fields": {"routine": 508, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 171, "fields": {"routine": 508, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 172, "fields": {"routine": 508, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 173, "fields": {"routine": 508, "skill": 67, "rank": 9}}, {"model": "objective.routineskill", "pk": 174, "fields": {"routine": 508, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 175, "fields": {"routine": 509, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 176, "fields": {"routine": 509, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 177, "fields": {"routine": 509, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 179, "fields": {"routine": 509, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 180, "fields": {"routine": 509, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 182, "fields": {"routine": 509, "skill": 92, "rank": 6}}, {"model": "objective.routineskill", "pk": 183, "fields": {"routine": 509, "skill": 33, "rank": 7}}, {"model": "objective.routineskill", "pk": 184, "fields": {"routine": 509, "skill": 91, "rank": 8}}, {"model": "objective.routineskill", "pk": 185, "fields": {"routine": 509, "skill": 114, "rank": 9}}, {"model": "objective.routineskill", "pk": 186, "fields": {"routine": 509, "skill": 93, "rank": 10}}, {"model": "objective.routineskill", "pk": 187, "fields": {"routine": 510, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 188, "fields": {"routine": 510, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 189, "fields": {"routine": 510, "skill": 97, "rank": 3}}, {"model": "objective.routineskill", "pk": 190, "fields": {"routine": 510, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 191, "fields": {"routine": 510, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 192, "fields": {"routine": 510, "skill": 92, "rank": 6}}, {"model": "objective.routineskill", "pk": 193, "fields": {"routine": 510, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 194, "fields": {"routine": 510, "skill": 122, "rank": 8}}, {"model": "objective.routineskill", "pk": 195, "fields": {"routine": 510, "skill": 86, "rank": 9}}, {"model": "objective.routineskill", "pk": 196, "fields": {"routine": 510, "skill": 137, "rank": 10}}, {"model": "objective.routineskill", "pk": 197, "fields": {"routine": 511, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 198, "fields": {"routine": 511, "skill": 140, "rank": 2}}, {"model": "objective.routineskill", "pk": 199, "fields": {"routine": 511, "skill": 97, "rank": 3}}, {"model": "objective.routineskill", "pk": 200, "fields": {"routine": 511, "skill": 122, "rank": 4}}, {"model": "objective.routineskill", "pk": 201, "fields": {"routine": 511, "skill": 86, "rank": 5}}, {"model": "objective.routineskill", "pk": 202, "fields": {"routine": 511, "skill": 112, "rank": 6}}, {"model": "objective.routineskill", "pk": 203, "fields": {"routine": 511, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 204, "fields": {"routine": 511, "skill": 254, "rank": 8}}, {"model": "objective.routineskill", "pk": 205, "fields": {"routine": 511, "skill": 119, "rank": 9}}, {"model": "objective.routineskill", "pk": 206, "fields": {"routine": 511, "skill": 137, "rank": 10}}, {"model": "objective.routineskill", "pk": 207, "fields": {"routine": 512, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 208, "fields": {"routine": 512, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 209, "fields": {"routine": 512, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 210, "fields": {"routine": 512, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 211, "fields": {"routine": 512, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 212, "fields": {"routine": 512, "skill": 92, "rank": 6}}, {"model": "objective.routineskill", "pk": 213, "fields": {"routine": 512, "skill": 110, "rank": 7}}, {"model": "objective.routineskill", "pk": 214, "fields": {"routine": 512, "skill": 112, "rank": 8}}, {"model": "objective.routineskill", "pk": 215, "fields": {"routine": 512, "skill": 114, "rank": 9}}, {"model": "objective.routineskill", "pk": 216, "fields": {"routine": 512, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 217, "fields": {"routine": 515, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 218, "fields": {"routine": 515, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 219, "fields": {"routine": 515, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 220, "fields": {"routine": 515, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 221, "fields": {"routine": 515, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 222, "fields": {"routine": 515, "skill": 33, "rank": 6}}, {"model": "objective.routineskill", "pk": 223, "fields": {"routine": 515, "skill": 92, "rank": 7}}, {"model": "objective.routineskill", "pk": 224, "fields": {"routine": 515, "skill": 31, "rank": 8}}, {"model": "objective.routineskill", "pk": 225, "fields": {"routine": 515, "skill": 27, "rank": 9}}, {"model": "objective.routineskill", "pk": 226, "fields": {"routine": 515, "skill": 93, "rank": 10}}, {"model": "objective.routineskill", "pk": 227, "fields": {"routine": 516, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 228, "fields": {"routine": 516, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 229, "fields": {"routine": 516, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 230, "fields": {"routine": 516, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 231, "fields": {"routine": 516, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 232, "fields": {"routine": 516, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 233, "fields": {"routine": 516, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 234, "fields": {"routine": 516, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 235, "fields": {"routine": 516, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 236, "fields": {"routine": 516, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 237, "fields": {"routine": 517, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 238, "fields": {"routine": 517, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 239, "fields": {"routine": 517, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 240, "fields": {"routine": 517, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 241, "fields": {"routine": 517, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 242, "fields": {"routine": 517, "skill": 34, "rank": 6}}, {"model": "objective.routineskill", "pk": 243, "fields": {"routine": 517, "skill": 15, "rank": 7}}, {"model": "objective.routineskill", "pk": 244, "fields": {"routine": 517, "skill": 3, "rank": 8}}, {"model": "objective.routineskill", "pk": 245, "fields": {"routine": 517, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 246, "fields": {"routine": 517, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 247, "fields": {"routine": 518, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 248, "fields": {"routine": 518, "skill": 33, "rank": 2}}, {"model": "objective.routineskill", "pk": 249, "fields": {"routine": 518, "skill": 26, "rank": 3}}, {"model": "objective.routineskill", "pk": 250, "fields": {"routine": 518, "skill": 34, "rank": 4}}, {"model": "objective.routineskill", "pk": 251, "fields": {"routine": 518, "skill": 15, "rank": 5}}, {"model": "objective.routineskill", "pk": 252, "fields": {"routine": 518, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 253, "fields": {"routine": 518, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 254, "fields": {"routine": 518, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 255, "fields": {"routine": 518, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 256, "fields": {"routine": 518, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 257, "fields": {"routine": 519, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 258, "fields": {"routine": 519, "skill": 32, "rank": 2}}, {"model": "objective.routineskill", "pk": 259, "fields": {"routine": 519, "skill": 1, "rank": 3}}, {"model": "objective.routineskill", "pk": 260, "fields": {"routine": 519, "skill": 25, "rank": 4}}, {"model": "objective.routineskill", "pk": 261, "fields": {"routine": 519, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 262, "fields": {"routine": 519, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 263, "fields": {"routine": 519, "skill": 26, "rank": 7}}, {"model": "objective.routineskill", "pk": 264, "fields": {"routine": 519, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 265, "fields": {"routine": 519, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 266, "fields": {"routine": 519, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 267, "fields": {"routine": 520, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 268, "fields": {"routine": 520, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 269, "fields": {"routine": 520, "skill": 4, "rank": 3}}, {"model": "objective.routineskill", "pk": 270, "fields": {"routine": 520, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 271, "fields": {"routine": 520, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 272, "fields": {"routine": 520, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 273, "fields": {"routine": 520, "skill": 1, "rank": 7}}, {"model": "objective.routineskill", "pk": 274, "fields": {"routine": 520, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 275, "fields": {"routine": 520, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 276, "fields": {"routine": 520, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 277, "fields": {"routine": 521, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 278, "fields": {"routine": 521, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 279, "fields": {"routine": 521, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 280, "fields": {"routine": 521, "skill": 1, "rank": 4}}, {"model": "objective.routineskill", "pk": 281, "fields": {"routine": 521, "skill": 25, "rank": 5}}, {"model": "objective.routineskill", "pk": 282, "fields": {"routine": 521, "skill": 3, "rank": 6}}, {"model": "objective.routineskill", "pk": 283, "fields": {"routine": 521, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 284, "fields": {"routine": 521, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 285, "fields": {"routine": 521, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 286, "fields": {"routine": 521, "skill": 71, "rank": 10}}, {"model": "objective.routineskill", "pk": 287, "fields": {"routine": 524, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 288, "fields": {"routine": 524, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 289, "fields": {"routine": 524, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 290, "fields": {"routine": 524, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 291, "fields": {"routine": 524, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 292, "fields": {"routine": 524, "skill": 31, "rank": 6}}, {"model": "objective.routineskill", "pk": 293, "fields": {"routine": 524, "skill": 4, "rank": 7}}, {"model": "objective.routineskill", "pk": 294, "fields": {"routine": 524, "skill": 23, "rank": 8}}, {"model": "objective.routineskill", "pk": 295, "fields": {"routine": 524, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 296, "fields": {"routine": 524, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 297, "fields": {"routine": 523, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 298, "fields": {"routine": 523, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 299, "fields": {"routine": 523, "skill": 27, "rank": 3}}, {"model": "objective.routineskill", "pk": 300, "fields": {"routine": 523, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 301, "fields": {"routine": 523, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 302, "fields": {"routine": 523, "skill": 4, "rank": 6}}, {"model": "objective.routineskill", "pk": 303, "fields": {"routine": 523, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 304, "fields": {"routine": 523, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 305, "fields": {"routine": 523, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 306, "fields": {"routine": 523, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 307, "fields": {"routine": 522, "skill": 19, "rank": 1}}, {"model": "objective.routineskill", "pk": 308, "fields": {"routine": 522, "skill": 58, "rank": 2}}, {"model": "objective.routineskill", "pk": 309, "fields": {"routine": 522, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 310, "fields": {"routine": 522, "skill": 33, "rank": 4}}, {"model": "objective.routineskill", "pk": 311, "fields": {"routine": 522, "skill": 4, "rank": 5}}, {"model": "objective.routineskill", "pk": 312, "fields": {"routine": 522, "skill": 27, "rank": 6}}, {"model": "objective.routineskill", "pk": 313, "fields": {"routine": 522, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 314, "fields": {"routine": 522, "skill": 3, "rank": 8}}, {"model": "objective.routineskill", "pk": 315, "fields": {"routine": 522, "skill": 26, "rank": 9}}, {"model": "objective.routineskill", "pk": 316, "fields": {"routine": 522, "skill": 33, "rank": 10}}, {"model": "objective.routineskill", "pk": 317, "fields": {"routine": 525, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 318, "fields": {"routine": 525, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 319, "fields": {"routine": 525, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 321, "fields": {"routine": 525, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 322, "fields": {"routine": 525, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 323, "fields": {"routine": 525, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 324, "fields": {"routine": 525, "skill": 4, "rank": 8}}, {"model": "objective.routineskill", "pk": 325, "fields": {"routine": 525, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 326, "fields": {"routine": 525, "skill": 19, "rank": 10}}, {"model": "objective.routineskill", "pk": 327, "fields": {"routine": 525, "skill": 58, "rank": 11}}, {"model": "objective.routineskill", "pk": 328, "fields": {"routine": 526, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 329, "fields": {"routine": 526, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 330, "fields": {"routine": 526, "skill": 25, "rank": 3}}, {"model": "objective.routineskill", "pk": 331, "fields": {"routine": 526, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 332, "fields": {"routine": 526, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 333, "fields": {"routine": 526, "skill": 25, "rank": 6}}, {"model": "objective.routineskill", "pk": 334, "fields": {"routine": 526, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 335, "fields": {"routine": 526, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 336, "fields": {"routine": 526, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 337, "fields": {"routine": 526, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 339, "fields": {"routine": 527, "skill": 52, "rank": 2}}, {"model": "objective.routineskill", "pk": 340, "fields": {"routine": 527, "skill": 30, "rank": 3}}, {"model": "objective.routineskill", "pk": 341, "fields": {"routine": 527, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 342, "fields": {"routine": 527, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 343, "fields": {"routine": 527, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 344, "fields": {"routine": 527, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 345, "fields": {"routine": 527, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 346, "fields": {"routine": 527, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 347, "fields": {"routine": 527, "skill": 19, "rank": 10}}, {"model": "objective.routineskill", "pk": 348, "fields": {"routine": 527, "skill": 58, "rank": 11}}, {"model": "objective.routineskill", "pk": 349, "fields": {"routine": 528, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 350, "fields": {"routine": 528, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 351, "fields": {"routine": 528, "skill": 27, "rank": 3}}, {"model": "objective.routineskill", "pk": 352, "fields": {"routine": 528, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 353, "fields": {"routine": 528, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 354, "fields": {"routine": 528, "skill": 74, "rank": 6}}, {"model": "objective.routineskill", "pk": 355, "fields": {"routine": 528, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 356, "fields": {"routine": 528, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 357, "fields": {"routine": 528, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 358, "fields": {"routine": 528, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 359, "fields": {"routine": 529, "skill": 27, "rank": 1}}, {"model": "objective.routineskill", "pk": 360, "fields": {"routine": 529, "skill": 33, "rank": 2}}, {"model": "objective.routineskill", "pk": 361, "fields": {"routine": 529, "skill": 95, "rank": 3}}, {"model": "objective.routineskill", "pk": 362, "fields": {"routine": 529, "skill": 32, "rank": 4}}, {"model": "objective.routineskill", "pk": 363, "fields": {"routine": 529, "skill": 26, "rank": 5}}, {"model": "objective.routineskill", "pk": 364, "fields": {"routine": 529, "skill": 74, "rank": 6}}, {"model": "objective.routineskill", "pk": 365, "fields": {"routine": 529, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 366, "fields": {"routine": 529, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 367, "fields": {"routine": 529, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 368, "fields": {"routine": 529, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 369, "fields": {"routine": 530, "skill": 52, "rank": 1}}, {"model": "objective.routineskill", "pk": 370, "fields": {"routine": 530, "skill": 30, "rank": 2}}, {"model": "objective.routineskill", "pk": 371, "fields": {"routine": 530, "skill": 26, "rank": 3}}, {"model": "objective.routineskill", "pk": 372, "fields": {"routine": 530, "skill": 33, "rank": 4}}, {"model": "objective.routineskill", "pk": 373, "fields": {"routine": 530, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 374, "fields": {"routine": 530, "skill": 32, "rank": 6}}, {"model": "objective.routineskill", "pk": 375, "fields": {"routine": 530, "skill": 25, "rank": 7}}, {"model": "objective.routineskill", "pk": 376, "fields": {"routine": 530, "skill": 31, "rank": 8}}, {"model": "objective.routineskill", "pk": 377, "fields": {"routine": 530, "skill": 27, "rank": 9}}, {"model": "objective.routineskill", "pk": 378, "fields": {"routine": 530, "skill": 113, "rank": 10}}, {"model": "objective.routineskill", "pk": 379, "fields": {"routine": 531, "skill": 113, "rank": 1}}, {"model": "objective.routineskill", "pk": 380, "fields": {"routine": 531, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 381, "fields": {"routine": 531, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 382, "fields": {"routine": 531, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 383, "fields": {"routine": 531, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 384, "fields": {"routine": 531, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 385, "fields": {"routine": 531, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 386, "fields": {"routine": 531, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 387, "fields": {"routine": 531, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 388, "fields": {"routine": 531, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 389, "fields": {"routine": 532, "skill": 91, "rank": 1}}, {"model": "objective.routineskill", "pk": 390, "fields": {"routine": 532, "skill": 113, "rank": 2}}, {"model": "objective.routineskill", "pk": 391, "fields": {"routine": 532, "skill": 26, "rank": 3}}, {"model": "objective.routineskill", "pk": 392, "fields": {"routine": 532, "skill": 33, "rank": 4}}, {"model": "objective.routineskill", "pk": 393, "fields": {"routine": 532, "skill": 27, "rank": 5}}, {"model": "objective.routineskill", "pk": 394, "fields": {"routine": 532, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 395, "fields": {"routine": 532, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 396, "fields": {"routine": 532, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 397, "fields": {"routine": 532, "skill": 19, "rank": 9}}, {"model": "objective.routineskill", "pk": 398, "fields": {"routine": 532, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 399, "fields": {"routine": 533, "skill": 113, "rank": 1}}, {"model": "objective.routineskill", "pk": 400, "fields": {"routine": 533, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 401, "fields": {"routine": 533, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 402, "fields": {"routine": 533, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 403, "fields": {"routine": 533, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 404, "fields": {"routine": 533, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 405, "fields": {"routine": 533, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 406, "fields": {"routine": 533, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 407, "fields": {"routine": 533, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 408, "fields": {"routine": 533, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 410, "fields": {"routine": 534, "skill": 52, "rank": 2}}, {"model": "objective.routineskill", "pk": 411, "fields": {"routine": 534, "skill": 30, "rank": 3}}, {"model": "objective.routineskill", "pk": 412, "fields": {"routine": 534, "skill": 26, "rank": 4}}, {"model": "objective.routineskill", "pk": 413, "fields": {"routine": 534, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 414, "fields": {"routine": 534, "skill": 27, "rank": 6}}, {"model": "objective.routineskill", "pk": 415, "fields": {"routine": 534, "skill": 95, "rank": 7}}, {"model": "objective.routineskill", "pk": 416, "fields": {"routine": 534, "skill": 74, "rank": 8}}, {"model": "objective.routineskill", "pk": 417, "fields": {"routine": 534, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 418, "fields": {"routine": 534, "skill": 113, "rank": 10}}, {"model": "objective.routineskill", "pk": 419, "fields": {"routine": 534, "skill": 111, "rank": 11}}, {"model": "objective.routineskill", "pk": 420, "fields": {"routine": 535, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 421, "fields": {"routine": 535, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 422, "fields": {"routine": 535, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 423, "fields": {"routine": 535, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 424, "fields": {"routine": 535, "skill": 32, "rank": 5}}, {"model": "objective.routineskill", "pk": 425, "fields": {"routine": 535, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 426, "fields": {"routine": 535, "skill": 31, "rank": 7}}, {"model": "objective.routineskill", "pk": 427, "fields": {"routine": 535, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 428, "fields": {"routine": 535, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 429, "fields": {"routine": 535, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 430, "fields": {"routine": 536, "skill": 113, "rank": 1}}, {"model": "objective.routineskill", "pk": 431, "fields": {"routine": 536, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 432, "fields": {"routine": 536, "skill": 33, "rank": 3}}, {"model": "objective.routineskill", "pk": 433, "fields": {"routine": 536, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 434, "fields": {"routine": 536, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 436, "fields": {"routine": 536, "skill": 26, "rank": 7}}, {"model": "objective.routineskill", "pk": 437, "fields": {"routine": 536, "skill": 32, "rank": 8}}, {"model": "objective.routineskill", "pk": 438, "fields": {"routine": 536, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 439, "fields": {"routine": 536, "skill": 72, "rank": 10}}, {"model": "objective.routineskill", "pk": 440, "fields": {"routine": 536, "skill": 58, "rank": 11}}, {"model": "objective.routineskill", "pk": 441, "fields": {"routine": 537, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 442, "fields": {"routine": 537, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 443, "fields": {"routine": 537, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 444, "fields": {"routine": 537, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 445, "fields": {"routine": 537, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 446, "fields": {"routine": 537, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 447, "fields": {"routine": 537, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 448, "fields": {"routine": 537, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 449, "fields": {"routine": 537, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 450, "fields": {"routine": 537, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 451, "fields": {"routine": 538, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 452, "fields": {"routine": 538, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 453, "fields": {"routine": 538, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 454, "fields": {"routine": 538, "skill": 95, "rank": 4}}, {"model": "objective.routineskill", "pk": 455, "fields": {"routine": 538, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 456, "fields": {"routine": 538, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 457, "fields": {"routine": 538, "skill": 32, "rank": 7}}, {"model": "objective.routineskill", "pk": 458, "fields": {"routine": 538, "skill": 25, "rank": 8}}, {"model": "objective.routineskill", "pk": 459, "fields": {"routine": 538, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 460, "fields": {"routine": 538, "skill": 58, "rank": 10}}, {"model": "objective.routineskill", "pk": 461, "fields": {"routine": 539, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 462, "fields": {"routine": 539, "skill": 27, "rank": 2}}, {"model": "objective.routineskill", "pk": 463, "fields": {"routine": 539, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 464, "fields": {"routine": 539, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 465, "fields": {"routine": 539, "skill": 33, "rank": 5}}, {"model": "objective.routineskill", "pk": 466, "fields": {"routine": 539, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 467, "fields": {"routine": 539, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 468, "fields": {"routine": 539, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 469, "fields": {"routine": 539, "skill": 72, "rank": 9}}, {"model": "objective.routineskill", "pk": 470, "fields": {"routine": 539, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 471, "fields": {"routine": 540, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 472, "fields": {"routine": 540, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 473, "fields": {"routine": 540, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 474, "fields": {"routine": 540, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 475, "fields": {"routine": 540, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 476, "fields": {"routine": 540, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 477, "fields": {"routine": 540, "skill": 33, "rank": 7}}, {"model": "objective.routineskill", "pk": 478, "fields": {"routine": 540, "skill": 95, "rank": 8}}, {"model": "objective.routineskill", "pk": 479, "fields": {"routine": 540, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 480, "fields": {"routine": 540, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 481, "fields": {"routine": 541, "skill": 114, "rank": 1}}, {"model": "objective.routineskill", "pk": 482, "fields": {"routine": 541, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 483, "fields": {"routine": 541, "skill": 113, "rank": 3}}, {"model": "objective.routineskill", "pk": 484, "fields": {"routine": 541, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 485, "fields": {"routine": 541, "skill": 74, "rank": 5}}, {"model": "objective.routineskill", "pk": 486, "fields": {"routine": 541, "skill": 26, "rank": 6}}, {"model": "objective.routineskill", "pk": 487, "fields": {"routine": 541, "skill": 33, "rank": 7}}, {"model": "objective.routineskill", "pk": 488, "fields": {"routine": 541, "skill": 95, "rank": 8}}, {"model": "objective.routineskill", "pk": 489, "fields": {"routine": 541, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 490, "fields": {"routine": 541, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 491, "fields": {"routine": 542, "skill": 127, "rank": 1}}, {"model": "objective.routineskill", "pk": 492, "fields": {"routine": 542, "skill": 114, "rank": 2}}, {"model": "objective.routineskill", "pk": 493, "fields": {"routine": 542, "skill": 91, "rank": 3}}, {"model": "objective.routineskill", "pk": 494, "fields": {"routine": 542, "skill": 113, "rank": 4}}, {"model": "objective.routineskill", "pk": 495, "fields": {"routine": 542, "skill": 95, "rank": 5}}, {"model": "objective.routineskill", "pk": 496, "fields": {"routine": 542, "skill": 74, "rank": 6}}, {"model": "objective.routineskill", "pk": 497, "fields": {"routine": 542, "skill": 106, "rank": 7}}, {"model": "objective.routineskill", "pk": 498, "fields": {"routine": 542, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 499, "fields": {"routine": 542, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 500, "fields": {"routine": 542, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 501, "fields": {"routine": 543, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 502, "fields": {"routine": 543, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 503, "fields": {"routine": 543, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 504, "fields": {"routine": 543, "skill": 91, "rank": 4}}, {"model": "objective.routineskill", "pk": 505, "fields": {"routine": 543, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 506, "fields": {"routine": 543, "skill": 95, "rank": 6}}, {"model": "objective.routineskill", "pk": 507, "fields": {"routine": 543, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 508, "fields": {"routine": 543, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 509, "fields": {"routine": 543, "skill": 73, "rank": 9}}, {"model": "objective.routineskill", "pk": 510, "fields": {"routine": 543, "skill": 161, "rank": 10}}, {"model": "objective.routineskill", "pk": 511, "fields": {"routine": 544, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 512, "fields": {"routine": 544, "skill": 91, "rank": 2}}, {"model": "objective.routineskill", "pk": 513, "fields": {"routine": 544, "skill": 110, "rank": 3}}, {"model": "objective.routineskill", "pk": 514, "fields": {"routine": 544, "skill": 27, "rank": 4}}, {"model": "objective.routineskill", "pk": 515, "fields": {"routine": 544, "skill": 114, "rank": 5}}, {"model": "objective.routineskill", "pk": 517, "fields": {"routine": 544, "skill": 92, "rank": 7}}, {"model": "objective.routineskill", "pk": 518, "fields": {"routine": 544, "skill": 113, "rank": 8}}, {"model": "objective.routineskill", "pk": 519, "fields": {"routine": 544, "skill": 26, "rank": 9}}, {"model": "objective.routineskill", "pk": 520, "fields": {"routine": 544, "skill": 73, "rank": 10}}, {"model": "objective.routineskill", "pk": 521, "fields": {"routine": 544, "skill": 161, "rank": 11}}, {"model": "objective.routineskill", "pk": 522, "fields": {"routine": 545, "skill": 130, "rank": 1}}, {"model": "objective.routineskill", "pk": 523, "fields": {"routine": 545, "skill": 65, "rank": 2}}, {"model": "objective.routineskill", "pk": 524, "fields": {"routine": 545, "skill": 127, "rank": 3}}, {"model": "objective.routineskill", "pk": 526, "fields": {"routine": 545, "skill": 114, "rank": 5}}, {"model": "objective.routineskill", "pk": 527, "fields": {"routine": 545, "skill": 111, "rank": 6}}, {"model": "objective.routineskill", "pk": 528, "fields": {"routine": 545, "skill": 113, "rank": 7}}, {"model": "objective.routineskill", "pk": 529, "fields": {"routine": 545, "skill": 91, "rank": 8}}, {"model": "objective.routineskill", "pk": 530, "fields": {"routine": 545, "skill": 74, "rank": 9}}, {"model": "objective.routineskill", "pk": 531, "fields": {"routine": 545, "skill": 73, "rank": 10}}, {"model": "objective.routineskill", "pk": 532, "fields": {"routine": 545, "skill": 161, "rank": 11}}, {"model": "objective.routineskill", "pk": 533, "fields": {"routine": 546, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 534, "fields": {"routine": 546, "skill": 92, "rank": 2}}, {"model": "objective.routineskill", "pk": 535, "fields": {"routine": 546, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 536, "fields": {"routine": 546, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 537, "fields": {"routine": 546, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 538, "fields": {"routine": 546, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 539, "fields": {"routine": 546, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 540, "fields": {"routine": 546, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 541, "fields": {"routine": 546, "skill": 65, "rank": 9}}, {"model": "objective.routineskill", "pk": 542, "fields": {"routine": 546, "skill": 130, "rank": 10}}, {"model": "objective.routineskill", "pk": 543, "fields": {"routine": 552, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 544, "fields": {"routine": 552, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 545, "fields": {"routine": 552, "skill": 97, "rank": 3}}, {"model": "objective.routineskill", "pk": 546, "fields": {"routine": 552, "skill": 121, "rank": 4}}, {"model": "objective.routineskill", "pk": 547, "fields": {"routine": 552, "skill": 86, "rank": 5}}, {"model": "objective.routineskill", "pk": 548, "fields": {"routine": 552, "skill": 111, "rank": 6}}, {"model": "objective.routineskill", "pk": 549, "fields": {"routine": 552, "skill": 67, "rank": 7}}, {"model": "objective.routineskill", "pk": 550, "fields": {"routine": 552, "skill": 130, "rank": 8}}, {"model": "objective.routineskill", "pk": 551, "fields": {"routine": 552, "skill": 114, "rank": 9}}, {"model": "objective.routineskill", "pk": 552, "fields": {"routine": 552, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 553, "fields": {"routine": 551, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 554, "fields": {"routine": 551, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 555, "fields": {"routine": 551, "skill": 86, "rank": 3}}, {"model": "objective.routineskill", "pk": 556, "fields": {"routine": 551, "skill": 121, "rank": 4}}, {"model": "objective.routineskill", "pk": 557, "fields": {"routine": 551, "skill": 110, "rank": 5}}, {"model": "objective.routineskill", "pk": 558, "fields": {"routine": 551, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 559, "fields": {"routine": 551, "skill": 65, "rank": 7}}, {"model": "objective.routineskill", "pk": 560, "fields": {"routine": 551, "skill": 130, "rank": 8}}, {"model": "objective.routineskill", "pk": 561, "fields": {"routine": 551, "skill": 113, "rank": 9}}, {"model": "objective.routineskill", "pk": 562, "fields": {"routine": 551, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 563, "fields": {"routine": 550, "skill": 97, "rank": 1}}, {"model": "objective.routineskill", "pk": 564, "fields": {"routine": 550, "skill": 111, "rank": 2}}, {"model": "objective.routineskill", "pk": 565, "fields": {"routine": 550, "skill": 86, "rank": 3}}, {"model": "objective.routineskill", "pk": 566, "fields": {"routine": 550, "skill": 92, "rank": 4}}, {"model": "objective.routineskill", "pk": 567, "fields": {"routine": 550, "skill": 114, "rank": 5}}, {"model": "objective.routineskill", "pk": 568, "fields": {"routine": 550, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 569, "fields": {"routine": 550, "skill": 65, "rank": 7}}, {"model": "objective.routineskill", "pk": 570, "fields": {"routine": 550, "skill": 130, "rank": 8}}, {"model": "objective.routineskill", "pk": 571, "fields": {"routine": 550, "skill": 113, "rank": 9}}, {"model": "objective.routineskill", "pk": 572, "fields": {"routine": 550, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 573, "fields": {"routine": 549, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 574, "fields": {"routine": 549, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 575, "fields": {"routine": 549, "skill": 110, "rank": 3}}, {"model": "objective.routineskill", "pk": 576, "fields": {"routine": 549, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 577, "fields": {"routine": 549, "skill": 65, "rank": 5}}, {"model": "objective.routineskill", "pk": 578, "fields": {"routine": 549, "skill": 130, "rank": 6}}, {"model": "objective.routineskill", "pk": 579, "fields": {"routine": 549, "skill": 114, "rank": 7}}, {"model": "objective.routineskill", "pk": 580, "fields": {"routine": 549, "skill": 91, "rank": 8}}, {"model": "objective.routineskill", "pk": 581, "fields": {"routine": 549, "skill": 113, "rank": 9}}, {"model": "objective.routineskill", "pk": 582, "fields": {"routine": 549, "skill": 131, "rank": 10}}, {"model": "objective.routineskill", "pk": 583, "fields": {"routine": 548, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 584, "fields": {"routine": 548, "skill": 92, "rank": 2}}, {"model": "objective.routineskill", "pk": 585, "fields": {"routine": 548, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 586, "fields": {"routine": 548, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 587, "fields": {"routine": 548, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 588, "fields": {"routine": 548, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 589, "fields": {"routine": 548, "skill": 110, "rank": 7}}, {"model": "objective.routineskill", "pk": 590, "fields": {"routine": 548, "skill": 127, "rank": 8}}, {"model": "objective.routineskill", "pk": 591, "fields": {"routine": 548, "skill": 65, "rank": 9}}, {"model": "objective.routineskill", "pk": 592, "fields": {"routine": 548, "skill": 130, "rank": 10}}, {"model": "objective.routineskill", "pk": 593, "fields": {"routine": 547, "skill": 86, "rank": 1}}, {"model": "objective.routineskill", "pk": 594, "fields": {"routine": 547, "skill": 92, "rank": 2}}, {"model": "objective.routineskill", "pk": 595, "fields": {"routine": 547, "skill": 114, "rank": 3}}, {"model": "objective.routineskill", "pk": 596, "fields": {"routine": 547, "skill": 111, "rank": 4}}, {"model": "objective.routineskill", "pk": 597, "fields": {"routine": 547, "skill": 113, "rank": 5}}, {"model": "objective.routineskill", "pk": 598, "fields": {"routine": 547, "skill": 91, "rank": 6}}, {"model": "objective.routineskill", "pk": 599, "fields": {"routine": 547, "skill": 74, "rank": 7}}, {"model": "objective.routineskill", "pk": 600, "fields": {"routine": 547, "skill": 127, "rank": 8}}, {"model": "objective.routineskill", "pk": 601, "fields": {"routine": 547, "skill": 65, "rank": 9}}, {"model": "objective.routineskill", "pk": 602, "fields": {"routine": 547, "skill": 130, "rank": 10}}, {"model": "objective.routineskill", "pk": 603, "fields": {"routine": 554, "skill": 5, "rank": 1}}, {"model": "objective.routineskill", "pk": 604, "fields": {"routine": 554, "skill": 14, "rank": 2}}, {"model": "objective.routineskill", "pk": 605, "fields": {"routine": 554, "skill": 1, "rank": 3}}, {"model": "objective.routineskill", "pk": 606, "fields": {"routine": 554, "skill": 323, "rank": 4}}, {"model": "objective.routineskill", "pk": 607, "fields": {"routine": 554, "skill": 4, "rank": 5}}, {"model": "objective.routineskill", "pk": 608, "fields": {"routine": 555, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 609, "fields": {"routine": 555, "skill": 14, "rank": 2}}, {"model": "objective.routineskill", "pk": 610, "fields": {"routine": 555, "skill": 1, "rank": 3}}, {"model": "objective.routineskill", "pk": 611, "fields": {"routine": 555, "skill": 5, "rank": 4}}, {"model": "objective.routineskill", "pk": 612, "fields": {"routine": 555, "skill": 69, "rank": 5}}, {"model": "objective.routineskill", "pk": 613, "fields": {"routine": 556, "skill": 4, "rank": 1}}, {"model": "objective.routineskill", "pk": 614, "fields": {"routine": 556, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 615, "fields": {"routine": 556, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 616, "fields": {"routine": 556, "skill": 3, "rank": 4}}, {"model": "objective.routineskill", "pk": 617, "fields": {"routine": 556, "skill": 29, "rank": 5}}, {"model": "objective.routineskill", "pk": 618, "fields": {"routine": 557, "skill": 5, "rank": 1}}, {"model": "objective.routineskill", "pk": 620, "fields": {"routine": 557, "skill": 68, "rank": 3}}, {"model": "objective.routineskill", "pk": 621, "fields": {"routine": 557, "skill": 14, "rank": 4}}, {"model": "objective.routineskill", "pk": 622, "fields": {"routine": 557, "skill": 1, "rank": 5}}, {"model": "objective.routineskill", "pk": 623, "fields": {"routine": 557, "skill": 29, "rank": 6}}, {"model": "objective.routineskill", "pk": 624, "fields": {"routine": 558, "skill": 68, "rank": 1}}, {"model": "objective.routineskill", "pk": 625, "fields": {"routine": 558, "skill": 68, "rank": 2}}, {"model": "objective.routineskill", "pk": 626, "fields": {"routine": 558, "skill": 69, "rank": 3}}, {"model": "objective.routineskill", "pk": 627, "fields": {"routine": 558, "skill": 4, "rank": 4}}, {"model": "objective.routineskill", "pk": 628, "fields": {"routine": 558, "skill": 22, "rank": 5}}, {"model": "objective.routineskill", "pk": 629, "fields": {"routine": 559, "skill": 96, "rank": 1}}, {"model": "objective.routineskill", "pk": 630, "fields": {"routine": 559, "skill": 112, "rank": 2}}, {"model": "objective.routineskill", "pk": 632, "fields": {"routine": 559, "skill": 86, "rank": 4}}, {"model": "objective.routineskill", "pk": 633, "fields": {"routine": 559, "skill": 27, "rank": 5}}, {"model": "objective.routineskill", "pk": 634, "fields": {"routine": 559, "skill": 33, "rank": 6}}, {"model": "objective.routineskill", "pk": 635, "fields": {"routine": 559, "skill": 95, "rank": 7}}, {"model": "objective.routineskill", "pk": 636, "fields": {"routine": 559, "skill": 26, "rank": 8}}, {"model": "objective.routineskill", "pk": 637, "fields": {"routine": 559, "skill": 25, "rank": 9}}, {"model": "objective.routineskill", "pk": 638, "fields": {"routine": 559, "skill": 114, "rank": 10}}, {"model": "objective.routineskill", "pk": 639, "fields": {"routine": 559, "skill": 137, "rank": 11}}, {"model": "objective.chrono", "pk": 1, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2019-03-17", "score": "18.94"}}, {"model": "objective.chrono", "pk": 2, "fields": {"routine": 495, "routine_type": 1, "gymnast": 1, "date": "2019-04-02", "score": "16.53"}}, {"model": "objective.chrono", "pk": 3, "fields": {"routine": 495, "routine_type": 2, "gymnast": 1, "date": "2019-04-02", "score": "16.34"}}, {"model": "objective.chrono", "pk": 4, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2018-10-08", "score": "18.64"}}, {"model": "objective.chrono", "pk": 5, "fields": {"routine": 495, "routine_type": 1, "gymnast": 1, "date": "2019-02-10", "score": "16.30"}}, {"model": "objective.chrono", "pk": 6, "fields": {"routine": 495, "routine_type": 2, "gymnast": 1, "date": "2019-04-29", "score": "15.87"}}, {"model": "objective.chrono", "pk": 7, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2018-01-22", "score": "18.75"}}, {"model": "objective.chrono", "pk": 8, "fields": {"routine": 494, "routine_type": 0, "gymnast": 1, "date": "2018-04-16", "score": "18.81"}}, {"model": "objective.chrono", "pk": 9, "fields": {"routine": 494, "routine_type": 0, "gymnast": 5, "date": "2018-04-02", "score": "21.12"}}, {"model": "objective.chrono", "pk": 10, "fields": {"routine": 494, "routine_type": 0, "gymnast": 5, "date": "2019-01-21", "score": "21.57"}}, {"model": "objective.chrono", "pk": 11, "fields": {"routine": 494, "routine_type": 0, "gymnast": 5, "date": "2019-05-17", "score": "22.07"}}, {"model": "objective.chrono", "pk": 12, "fields": {"routine": 494, "routine_type": 0, "gymnast": 2, "date": "2019-05-20", "score": "17.97"}}, {"model": "objective.chrono", "pk": 13, "fields": {"routine": 494, "routine_type": 0, "gymnast": 7, "date": "2019-05-20", "score": "16.13"}}, {"model": "objective.chrono", "pk": 14, "fields": {"routine": 494, "routine_type": 0, "gymnast": 6, "date": "2019-05-20", "score": "16.20"}}, {"model": "objective.chrono", "pk": 15, "fields": {"routine": 494, "routine_type": 0, "gymnast": 8, "date": "2019-05-20", "score": "14.91"}}, {"model": "objective.chrono", "pk": 16, "fields": {"routine": 494, "routine_type": 0, "gymnast": 9, "date": "2019-05-20", "score": "16.08"}}, {"model": "competition.point", "pk": 1, "fields": {"gymnast": 1, "event": 7, "routine_type": 0, "point_execution": "15.800", "point_difficulty": "0.0", "point_time_of_flight": "14.125", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "39.175"}}, {"model": "competition.point", "pk": 2, "fields": {"gymnast": 1, "event": 7, "routine_type": 1, "point_execution": "15.600", "point_difficulty": "5.1", "point_time_of_flight": "13.760", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "43.410"}}, {"model": "competition.point", "pk": 4, "fields": {"gymnast": 11, "event": 3, "routine_type": 1, "point_execution": "3.400", "point_difficulty": "2.9", "point_time_of_flight": "3.625", "point_horizontal_displacement": "1.700", "penality": "0.0", "total": "11.625"}}, {"model": "competition.point", "pk": 5, "fields": {"gymnast": 11, "event": 3, "routine_type": 0, "point_execution": "16.800", "point_difficulty": "6.7", "point_time_of_flight": "16.750", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "49.500"}}, {"model": "competition.point", "pk": 6, "fields": {"gymnast": 5, "event": 3, "routine_type": 0, "point_execution": "13.900", "point_difficulty": "6.7", "point_time_of_flight": "15.895", "point_horizontal_displacement": "8.700", "penality": "0.0", "total": "45.195"}}, {"model": "competition.point", "pk": 7, "fields": {"gymnast": 5, "event": 3, "routine_type": 1, "point_execution": "15.800", "point_difficulty": "12.0", "point_time_of_flight": "16.085", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "52.935"}}, {"model": "competition.point", "pk": 8, "fields": {"gymnast": 4, "event": 3, "routine_type": 0, "point_execution": "14.400", "point_difficulty": "3.7", "point_time_of_flight": "14.820", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "42.020"}}, {"model": "competition.point", "pk": 9, "fields": {"gymnast": 4, "event": 3, "routine_type": 1, "point_execution": "13.000", "point_difficulty": "8.8", "point_time_of_flight": "13.865", "point_horizontal_displacement": "9.150", "penality": "0.0", "total": "44.815"}}, {"model": "competition.point", "pk": 10, "fields": {"gymnast": 4, "event": 3, "routine_type": 2, "point_execution": "12.800", "point_difficulty": "8.8", "point_time_of_flight": "13.925", "point_horizontal_displacement": "8.850", "penality": "0.0", "total": "44.375"}}, {"model": "competition.point", "pk": 11, "fields": {"gymnast": 2, "event": 2, "routine_type": 0, "point_execution": "14.400", "point_difficulty": "0.0", "point_time_of_flight": "13.060", "point_horizontal_displacement": "9.300", "penality": "0.0", "total": "36.760"}}, {"model": "competition.point", "pk": 12, "fields": {"gymnast": 2, "event": 2, "routine_type": 1, "point_execution": "14.100", "point_difficulty": "5.2", "point_time_of_flight": "13.535", "point_horizontal_displacement": "9.600", "penality": "0.0", "total": "42.435"}}, {"model": "competition.point", "pk": 13, "fields": {"gymnast": 5, "event": 2, "routine_type": 0, "point_execution": "16.600", "point_difficulty": "6.7", "point_time_of_flight": "15.940", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "48.640"}}, {"model": "competition.point", "pk": 14, "fields": {"gymnast": 5, "event": 2, "routine_type": 1, "point_execution": "15.500", "point_difficulty": "12.0", "point_time_of_flight": "15.590", "point_horizontal_displacement": "8.150", "penality": "0.0", "total": "51.240"}}, {"model": "competition.point", "pk": 15, "fields": {"gymnast": 7, "event": 2, "routine_type": 0, "point_execution": "13.800", "point_difficulty": "0.0", "point_time_of_flight": "12.840", "point_horizontal_displacement": "9.300", "penality": "0.0", "total": "35.940"}}, {"model": "competition.point", "pk": 16, "fields": {"gymnast": 7, "event": 2, "routine_type": 1, "point_execution": "15.200", "point_difficulty": "2.7", "point_time_of_flight": "12.535", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "39.885"}}, {"model": "competition.point", "pk": 17, "fields": {"gymnast": 1, "event": 2, "routine_type": 0, "point_execution": "16.300", "point_difficulty": "0.0", "point_time_of_flight": "13.620", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "39.320"}}, {"model": "competition.point", "pk": 18, "fields": {"gymnast": 1, "event": 2, "routine_type": 1, "point_execution": "16.600", "point_difficulty": "4.0", "point_time_of_flight": "13.890", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "43.940"}}, {"model": "competition.point", "pk": 19, "fields": {"gymnast": 6, "event": 2, "routine_type": 0, "point_execution": "13.700", "point_difficulty": "0.0", "point_time_of_flight": "12.685", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "35.785"}}, {"model": "competition.point", "pk": 20, "fields": {"gymnast": 6, "event": 2, "routine_type": 1, "point_execution": "12.600", "point_difficulty": "2.7", "point_time_of_flight": "11.405", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "35.805"}}, {"model": "competition.point", "pk": 21, "fields": {"gymnast": 6, "event": 7, "routine_type": 0, "point_execution": "13.400", "point_difficulty": "0.0", "point_time_of_flight": "11.720", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "34.570"}}, {"model": "competition.point", "pk": 22, "fields": {"gymnast": 6, "event": 7, "routine_type": 1, "point_execution": "14.700", "point_difficulty": "2.3", "point_time_of_flight": "11.755", "point_horizontal_displacement": "9.400", "penality": "0.0", "total": "38.155"}}, {"model": "competition.point", "pk": 23, "fields": {"gymnast": 5, "event": 7, "routine_type": 0, "point_execution": "14.900", "point_difficulty": "5.1", "point_time_of_flight": "14.465", "point_horizontal_displacement": "7.850", "penality": "0.0", "total": "42.315"}}, {"model": "competition.point", "pk": 24, "fields": {"gymnast": 5, "event": 7, "routine_type": 1, "point_execution": "13.400", "point_difficulty": "11.0", "point_time_of_flight": "15.700", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "49.150"}}, {"model": "competition.point", "pk": 25, "fields": {"gymnast": 5, "event": 8, "routine_type": 0, "point_execution": "15.800", "point_difficulty": "6.7", "point_time_of_flight": "15.445", "point_horizontal_displacement": "9.200", "penality": "0.0", "total": "47.145"}}, {"model": "competition.point", "pk": 26, "fields": {"gymnast": 5, "event": 8, "routine_type": 1, "point_execution": "15.600", "point_difficulty": "10.8", "point_time_of_flight": "15.455", "point_horizontal_displacement": "8.700", "penality": "0.2", "total": "50.355"}}, {"model": "competition.point", "pk": 27, "fields": {"gymnast": 8, "event": 7, "routine_type": 0, "point_execution": "15.400", "point_difficulty": "9.8", "point_time_of_flight": "0.000", "point_horizontal_displacement": "0.000", "penality": "0.0", "total": "25.200"}}, {"model": "competition.point", "pk": 28, "fields": {"gymnast": 8, "event": 7, "routine_type": 1, "point_execution": "14.200", "point_difficulty": "1.4", "point_time_of_flight": "9.660", "point_horizontal_displacement": "9.850", "penality": "0.0", "total": "35.110"}}, {"model": "competition.point", "pk": 29, "fields": {"gymnast": 8, "event": 2, "routine_type": 0, "point_execution": "15.800", "point_difficulty": "0.0", "point_time_of_flight": "0.000", "point_horizontal_displacement": "9.800", "penality": "0.0", "total": "25.600"}}, {"model": "competition.point", "pk": 30, "fields": {"gymnast": 8, "event": 2, "routine_type": 1, "point_execution": "13.600", "point_difficulty": "1.7", "point_time_of_flight": "9.140", "point_horizontal_displacement": "9.700", "penality": "0.6", "total": "33.540"}}, {"model": "competition.point", "pk": 31, "fields": {"gymnast": 5, "event": 9, "routine_type": 0, "point_execution": "2.900", "point_difficulty": "3.4", "point_time_of_flight": "1.655", "point_horizontal_displacement": "1.700", "penality": "0.0", "total": "9.655"}}, {"model": "competition.point", "pk": 32, "fields": {"gymnast": 5, "event": 9, "routine_type": 1, "point_execution": "3.300", "point_difficulty": "1.7", "point_time_of_flight": "3.295", "point_horizontal_displacement": "1.750", "penality": "0.0", "total": "10.045"}}, {"model": "competition.point", "pk": 33, "fields": {"gymnast": 11, "event": 1, "routine_type": 0, "point_execution": "14.100", "point_difficulty": "4.9", "point_time_of_flight": "15.240", "point_horizontal_displacement": "7.500", "penality": "2.0", "total": "39.740"}}, {"model": "competition.point", "pk": 34, "fields": {"gymnast": 11, "event": 1, "routine_type": 1, "point_execution": "17.200", "point_difficulty": "11.6", "point_time_of_flight": "17.035", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "54.935"}}, {"model": "competition.point", "pk": 35, "fields": {"gymnast": 4, "event": 1, "routine_type": 0, "point_execution": "14.400", "point_difficulty": "3.7", "point_time_of_flight": "14.885", "point_horizontal_displacement": "9.650", "penality": "0.0", "total": "42.635"}}, {"model": "competition.point", "pk": 36, "fields": {"gymnast": 4, "event": 1, "routine_type": 1, "point_execution": "13.100", "point_difficulty": "8.1", "point_time_of_flight": "12.840", "point_horizontal_displacement": "8.400", "penality": "0.0", "total": "42.440"}}, {"model": "competition.point", "pk": 37, "fields": {"gymnast": 4, "event": 9, "routine_type": 0, "point_execution": "16.000", "point_difficulty": "3.7", "point_time_of_flight": "14.730", "point_horizontal_displacement": "9.550", "penality": "0.0", "total": "43.980"}}, {"model": "competition.point", "pk": 38, "fields": {"gymnast": 4, "event": 9, "routine_type": 1, "point_execution": "13.900", "point_difficulty": "8.8", "point_time_of_flight": "14.225", "point_horizontal_displacement": "8.700", "penality": "0.4", "total": "45.225"}}, {"model": "competition.point", "pk": 39, "fields": {"gymnast": 11, "event": 9, "routine_type": 0, "point_execution": "15.400", "point_difficulty": "4.9", "point_time_of_flight": "15.080", "point_horizontal_displacement": "8.000", "penality": "0.0", "total": "43.380"}}, {"model": "competition.point", "pk": 40, "fields": {"gymnast": 11, "event": 9, "routine_type": 1, "point_execution": "16.600", "point_difficulty": "11.6", "point_time_of_flight": "16.475", "point_horizontal_displacement": "8.350", "penality": "0.0", "total": "53.025"}}, {"model": "competition.point", "pk": 41, "fields": {"gymnast": 5, "event": 1, "routine_type": 0, "point_execution": "6.300", "point_difficulty": "3.6", "point_time_of_flight": "6.396", "point_horizontal_displacement": "3.300", "penality": "0.0", "total": "19.596"}}, {"model": "competition.point", "pk": 42, "fields": {"gymnast": 5, "event": 1, "routine_type": 1, "point_execution": "14.200", "point_difficulty": "11.2", "point_time_of_flight": "14.345", "point_horizontal_displacement": "7.950", "penality": "0.0", "total": "47.695"}}, {"model": "competition.point", "pk": 43, "fields": {"gymnast": 5, "event": 3, "routine_type": 2, "point_execution": "14.200", "point_difficulty": "10.9", "point_time_of_flight": "15.655", "point_horizontal_displacement": "8.850", "penality": "0.0", "total": "49.605"}}, {"model": "competition.point", "pk": 44, "fields": {"gymnast": 4, "event": 5, "routine_type": 0, "point_execution": "16.300", "point_difficulty": "3.7", "point_time_of_flight": "15.285", "point_horizontal_displacement": "9.450", "penality": "0.0", "total": "44.735"}}, {"model": "competition.point", "pk": 45, "fields": {"gymnast": 4, "event": 5, "routine_type": 1, "point_execution": "14.300", "point_difficulty": "8.8", "point_time_of_flight": "14.485", "point_horizontal_displacement": "9.500", "penality": "0.0", "total": "47.085"}}, {"model": "competition.point", "pk": 46, "fields": {"gymnast": 4, "event": 5, "routine_type": 2, "point_execution": "4.300", "point_difficulty": "3.6", "point_time_of_flight": "4.410", "point_horizontal_displacement": "2.550", "penality": "0.0", "total": "14.860"}}, {"model": "competition.point", "pk": 47, "fields": {"gymnast": 11, "event": 5, "routine_type": 0, "point_execution": "16.100", "point_difficulty": "6.7", "point_time_of_flight": "16.590", "point_horizontal_displacement": "9.350", "penality": "0.0", "total": "48.740"}}, {"model": "competition.point", "pk": 48, "fields": {"gymnast": 11, "event": 5, "routine_type": 1, "point_execution": "17.500", "point_difficulty": "11.6", "point_time_of_flight": "17.235", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "55.585"}}, {"model": "competition.point", "pk": 49, "fields": {"gymnast": 11, "event": 5, "routine_type": 2, "point_execution": "15.400", "point_difficulty": "13.3", "point_time_of_flight": "16.445", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "54.095"}}, {"model": "competition.point", "pk": 50, "fields": {"gymnast": 5, "event": 5, "routine_type": 0, "point_execution": "15.900", "point_difficulty": "6.5", "point_time_of_flight": "14.995", "point_horizontal_displacement": "9.200", "penality": "0.0", "total": "46.595"}}, {"model": "competition.point", "pk": 51, "fields": {"gymnast": 5, "event": 5, "routine_type": 1, "point_execution": "13.400", "point_difficulty": "9.5", "point_time_of_flight": "12.540", "point_horizontal_displacement": "7.250", "penality": "0.0", "total": "42.690"}}, {"model": "competition.point", "pk": 52, "fields": {"gymnast": 1, "event": 5, "routine_type": 0, "point_execution": "13.900", "point_difficulty": "0.0", "point_time_of_flight": "12.320", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "35.020"}}, {"model": "competition.point", "pk": 53, "fields": {"gymnast": 1, "event": 5, "routine_type": 1, "point_execution": "14.600", "point_difficulty": "5.1", "point_time_of_flight": "13.385", "point_horizontal_displacement": "9.650", "penality": "0.0", "total": "42.735"}}, {"model": "competition.point", "pk": 54, "fields": {"gymnast": 2, "event": 5, "routine_type": 0, "point_execution": "2.700", "point_difficulty": "0.0", "point_time_of_flight": "2.655", "point_horizontal_displacement": "1.800", "penality": "0.0", "total": "7.155"}}, {"model": "competition.point", "pk": 55, "fields": {"gymnast": 2, "event": 5, "routine_type": 1, "point_execution": "12.900", "point_difficulty": "5.2", "point_time_of_flight": "12.990", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "39.890"}}, {"model": "competition.point", "pk": 56, "fields": {"gymnast": 2, "event": 8, "routine_type": 0, "point_execution": "14.100", "point_difficulty": "0.0", "point_time_of_flight": "13.315", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "36.665"}}, {"model": "competition.point", "pk": 57, "fields": {"gymnast": 2, "event": 8, "routine_type": 1, "point_execution": "7.000", "point_difficulty": "2.4", "point_time_of_flight": "6.805", "point_horizontal_displacement": "4.350", "penality": "0.0", "total": "20.555"}}, {"model": "competition.point", "pk": 58, "fields": {"gymnast": 2, "event": 1, "routine_type": 0, "point_execution": "13.600", "point_difficulty": "0.0", "point_time_of_flight": "12.330", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "35.030"}}, {"model": "competition.point", "pk": 59, "fields": {"gymnast": 2, "event": 1, "routine_type": 1, "point_execution": "12.800", "point_difficulty": "5.2", "point_time_of_flight": "13.275", "point_horizontal_displacement": "9.550", "penality": "0.0", "total": "40.825"}}, {"model": "competition.point", "pk": 60, "fields": {"gymnast": 2, "event": 10, "routine_type": 0, "point_execution": "13.000", "point_difficulty": "0.0", "point_time_of_flight": "10.910", "point_horizontal_displacement": "8.300", "penality": "0.0", "total": "32.210"}}, {"model": "competition.point", "pk": 61, "fields": {"gymnast": 2, "event": 10, "routine_type": 1, "point_execution": "13.500", "point_difficulty": "5.0", "point_time_of_flight": "12.015", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "39.315"}}, {"model": "competition.point", "pk": 62, "fields": {"gymnast": 2, "event": 11, "routine_type": 0, "point_execution": "14.200", "point_difficulty": "0.0", "point_time_of_flight": "14.225", "point_horizontal_displacement": "9.150", "penality": "0.0", "total": "37.575"}}, {"model": "competition.point", "pk": 63, "fields": {"gymnast": 2, "event": 11, "routine_type": 1, "point_execution": "11.200", "point_difficulty": "6.0", "point_time_of_flight": "14.275", "point_horizontal_displacement": "8.700", "penality": "0.0", "total": "40.175"}}, {"model": "competition.point", "pk": 64, "fields": {"gymnast": 2, "event": 12, "routine_type": 0, "point_execution": "14.800", "point_difficulty": "0.0", "point_time_of_flight": "12.545", "point_horizontal_displacement": "9.700", "penality": "0.0", "total": "37.045"}}, {"model": "competition.point", "pk": 65, "fields": {"gymnast": 2, "event": 12, "routine_type": 1, "point_execution": "12.500", "point_difficulty": "6.0", "point_time_of_flight": "12.245", "point_horizontal_displacement": "9.350", "penality": "0.0", "total": "40.095"}}, {"model": "competition.point", "pk": 66, "fields": {"gymnast": 2, "event": 12, "routine_type": 2, "point_execution": "14.000", "point_difficulty": "6.0", "point_time_of_flight": "12.260", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "41.360"}}, {"model": "competition.point", "pk": 67, "fields": {"gymnast": 5, "event": 13, "routine_type": 0, "point_execution": "15.400", "point_difficulty": "0.0", "point_time_of_flight": "14.355", "point_horizontal_displacement": "9.600", "penality": "0.0", "total": "39.355"}}, {"model": "competition.point", "pk": 68, "fields": {"gymnast": 5, "event": 13, "routine_type": 1, "point_execution": "8.866", "point_difficulty": "7.6", "point_time_of_flight": "10.400", "point_horizontal_displacement": "6.900", "penality": "0.0", "total": "33.766"}}, {"model": "competition.point", "pk": 69, "fields": {"gymnast": 5, "event": 14, "routine_type": 0, "point_execution": "13.600", "point_difficulty": "0.0", "point_time_of_flight": "15.650", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "38.300"}}, {"model": "competition.point", "pk": 70, "fields": {"gymnast": 5, "event": 14, "routine_type": 1, "point_execution": "14.100", "point_difficulty": "9.0", "point_time_of_flight": "14.750", "point_horizontal_displacement": "8.850", "penality": "0.0", "total": "46.700"}}, {"model": "competition.point", "pk": 71, "fields": {"gymnast": 1, "event": 14, "routine_type": 0, "point_execution": "15.900", "point_difficulty": "0.0", "point_time_of_flight": "12.850", "point_horizontal_displacement": "9.500", "penality": "0.0", "total": "38.250"}}, {"model": "competition.point", "pk": 72, "fields": {"gymnast": 1, "event": 14, "routine_type": 1, "point_execution": "15.300", "point_difficulty": "4.5", "point_time_of_flight": "12.760", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "41.510"}}, {"model": "competition.point", "pk": 73, "fields": {"gymnast": 1, "event": 15, "routine_type": 0, "point_execution": "16.000", "point_difficulty": "0.0", "point_time_of_flight": "12.680", "point_horizontal_displacement": "9.700", "penality": "0.0", "total": "38.380"}}, {"model": "competition.point", "pk": 74, "fields": {"gymnast": 1, "event": 15, "routine_type": 1, "point_execution": "14.300", "point_difficulty": "5.4", "point_time_of_flight": "11.775", "point_horizontal_displacement": "9.350", "penality": "0.0", "total": "40.825"}}, {"model": "competition.point", "pk": 75, "fields": {"gymnast": 1, "event": 16, "routine_type": 0, "point_execution": "10.500", "point_difficulty": "0.0", "point_time_of_flight": "9.310", "point_horizontal_displacement": "6.250", "penality": "0.0", "total": "26.060"}}, {"model": "competition.point", "pk": 76, "fields": {"gymnast": 1, "event": 16, "routine_type": 1, "point_execution": "13.700", "point_difficulty": "4.5", "point_time_of_flight": "12.605", "point_horizontal_displacement": "8.900", "penality": "0.0", "total": "39.705"}}, {"model": "competition.point", "pk": 77, "fields": {"gymnast": 5, "event": 16, "routine_type": 0, "point_execution": "16.500", "point_difficulty": "0.0", "point_time_of_flight": "15.120", "point_horizontal_displacement": "9.250", "penality": "0.0", "total": "40.870"}}, {"model": "competition.point", "pk": 78, "fields": {"gymnast": 5, "event": 16, "routine_type": 1, "point_execution": "14.100", "point_difficulty": "10.0", "point_time_of_flight": "14.120", "point_horizontal_displacement": "8.400", "penality": "0.0", "total": "46.620"}}, {"model": "competition.point", "pk": 79, "fields": {"gymnast": 5, "event": 16, "routine_type": 2, "point_execution": "15.900", "point_difficulty": "10.0", "point_time_of_flight": "14.630", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "49.580"}}, {"model": "competition.point", "pk": 80, "fields": {"gymnast": 5, "event": 10, "routine_type": 0, "point_execution": "15.300", "point_difficulty": "3.1", "point_time_of_flight": "14.195", "point_horizontal_displacement": "8.400", "penality": "0.0", "total": "40.995"}}, {"model": "competition.point", "pk": 81, "fields": {"gymnast": 5, "event": 10, "routine_type": 1, "point_execution": "16.800", "point_difficulty": "10.6", "point_time_of_flight": "15.390", "point_horizontal_displacement": "9.200", "penality": "0.0", "total": "51.990"}}, {"model": "competition.point", "pk": 82, "fields": {"gymnast": 5, "event": 11, "routine_type": 0, "point_execution": "6.800", "point_difficulty": "0.0", "point_time_of_flight": "6.630", "point_horizontal_displacement": "3.350", "penality": "0.0", "total": "16.780"}}, {"model": "competition.point", "pk": 83, "fields": {"gymnast": 5, "event": 11, "routine_type": 1, "point_execution": "14.900", "point_difficulty": "10.4", "point_time_of_flight": "14.670", "point_horizontal_displacement": "8.400", "penality": "0.2", "total": "48.170"}}, {"model": "competition.point", "pk": 84, "fields": {"gymnast": 5, "event": 12, "routine_type": 0, "point_execution": "14.700", "point_difficulty": "2.8", "point_time_of_flight": "15.245", "point_horizontal_displacement": "9.300", "penality": "0.0", "total": "42.045"}}, {"model": "competition.point", "pk": 85, "fields": {"gymnast": 5, "event": 12, "routine_type": 1, "point_execution": "13.200", "point_difficulty": "10.7", "point_time_of_flight": "14.560", "point_horizontal_displacement": "8.650", "penality": "0.0", "total": "47.110"}}, {"model": "competition.point", "pk": 86, "fields": {"gymnast": 11, "event": 14, "routine_type": 0, "point_execution": "16.000", "point_difficulty": "4.1", "point_time_of_flight": "16.880", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "46.030"}}, {"model": "competition.point", "pk": 87, "fields": {"gymnast": 11, "event": 14, "routine_type": 1, "point_execution": "5.300", "point_difficulty": "5.9", "point_time_of_flight": "6.800", "point_horizontal_displacement": "3.200", "penality": "0.0", "total": "21.200"}}, {"model": "competition.point", "pk": 88, "fields": {"gymnast": 11, "event": 15, "routine_type": 0, "point_execution": "14.300", "point_difficulty": "3.6", "point_time_of_flight": "15.140", "point_horizontal_displacement": "7.550", "penality": "0.0", "total": "40.590"}}, {"model": "competition.point", "pk": 89, "fields": {"gymnast": 11, "event": 15, "routine_type": 1, "point_execution": "14.800", "point_difficulty": "9.9", "point_time_of_flight": "15.440", "point_horizontal_displacement": "8.400", "penality": "1.2", "total": "47.340"}}, {"model": "competition.point", "pk": 90, "fields": {"gymnast": 1, "event": 10, "routine_type": 0, "point_execution": "15.700", "point_difficulty": "0.0", "point_time_of_flight": "13.340", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "37.990"}}, {"model": "competition.point", "pk": 91, "fields": {"gymnast": 1, "event": 10, "routine_type": 1, "point_execution": "16.500", "point_difficulty": "3.5", "point_time_of_flight": "13.090", "point_horizontal_displacement": "9.600", "penality": "1.0", "total": "41.690"}}, {"model": "competition.point", "pk": 92, "fields": {"gymnast": 1, "event": 11, "routine_type": 0, "point_execution": "16.300", "point_difficulty": "0.0", "point_time_of_flight": "13.620", "point_horizontal_displacement": "8.950", "penality": "0.0", "total": "38.870"}}, {"model": "competition.point", "pk": 93, "fields": {"gymnast": 1, "event": 11, "routine_type": 1, "point_execution": "15.800", "point_difficulty": "5.1", "point_time_of_flight": "13.595", "point_horizontal_displacement": "8.800", "penality": "0.0", "total": "43.295"}}, {"model": "competition.point", "pk": 94, "fields": {"gymnast": 1, "event": 12, "routine_type": 0, "point_execution": "15.900", "point_difficulty": "0.0", "point_time_of_flight": "13.770", "point_horizontal_displacement": "9.550", "penality": "0.0", "total": "39.220"}}, {"model": "competition.point", "pk": 95, "fields": {"gymnast": 1, "event": 12, "routine_type": 1, "point_execution": "13.600", "point_difficulty": "5.1", "point_time_of_flight": "13.550", "point_horizontal_displacement": "9.050", "penality": "0.0", "total": "41.300"}}, {"model": "competition.point", "pk": 96, "fields": {"gymnast": 4, "event": 14, "routine_type": 0, "point_execution": "15.200", "point_difficulty": "2.3", "point_time_of_flight": "14.835", "point_horizontal_displacement": "8.850", "penality": "2.0", "total": "39.185"}}, {"model": "competition.point", "pk": 97, "fields": {"gymnast": 4, "event": 14, "routine_type": 1, "point_execution": "11.700", "point_difficulty": "8.1", "point_time_of_flight": "13.640", "point_horizontal_displacement": "9.100", "penality": "0.0", "total": "42.540"}}, {"model": "profile.profile", "pk": 1, "fields": {"user": 1, "birth_date": "1982-02-05", "gsm": "0494923851", "template_color": 0, "sidebar_color": 4, "is_sidebar_minified": true, "picture": ""}}, {"model": "profile.profile", "pk": 2, "fields": {"user": 2, "birth_date": "1995-02-23", "gsm": "0470606857", "template_color": 1, "sidebar_color": 0, "is_sidebar_minified": false, "picture": ""}}, {"model": "profile.profile", "pk": 3, "fields": {"user": 3, "birth_date": "1988-03-27", "gsm": "0472534432", "template_color": 0, "sidebar_color": 0, "is_sidebar_minified": false, "picture": ""}}, {"model": "communication.message", "pk": 2, "fields": {"content": null, "sender": 1, "written_at": "2019-04-13T10:33:08.753", "recipient": 1, "read_at": "2019-04-15T08:02:43.489", "title": "Test de message Morgane -> Gregory", "body": "petit test qui va bien."}}, {"model": "communication.message", "pk": 3, "fields": {"content": null, "sender": 1, "written_at": "2019-04-14T14:26:58.939", "recipient": 1, "read_at": "2019-04-14T14:27:02.243", "title": "test de foprm", "body": "test de form !"}}, {"model": "communication.message", "pk": 4, "fields": {"content": null, "sender": 1, "written_at": "2019-04-14T14:35:56.294", "recipient": 1, "read_at": "2019-04-14T14:35:56.294", "title": "test de test", "body": "et sans faute dans le titre cette fois-ci !"}}] \ No newline at end of file diff --git a/khana/objective/migrations/0019_educative_age_boy_chained_and_more.py b/khana/objective/migrations/0019_educative_age_boy_chained_and_more.py new file mode 100644 index 0000000..24efdf3 --- /dev/null +++ b/khana/objective/migrations/0019_educative_age_boy_chained_and_more.py @@ -0,0 +1,53 @@ +# Generated by Django 4.0.1 on 2022-01-13 21:01 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('objective', '0018_auto_20211205_1133'), + ] + + operations = [ + migrations.AddField( + model_name='educative', + name='age_boy_chained', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Boy's age chained"), + ), + migrations.AddField( + model_name='educative', + name='age_boy_masterised', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Boy's age masterised"), + ), + migrations.AddField( + model_name='educative', + name='age_boy_with_help', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Boy's age with help"), + ), + migrations.AddField( + model_name='educative', + name='age_boy_without_help', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Boy's age without help"), + ), + migrations.AddField( + model_name='educative', + name='age_girl_chained', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Girl's age chained"), + ), + migrations.AddField( + model_name='educative', + name='age_girl_masterised', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Girl's age masterised"), + ), + migrations.AddField( + model_name='educative', + name='age_girl_with_help', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Girl's age with help"), + ), + migrations.AddField( + model_name='educative', + name='age_girl_without_help', + field=models.PositiveSmallIntegerField(choices=[(6, '6-7'), (7, '7-8'), (8, '8-9'), (9, '9-10'), (10, '10-11'), (11, '11-12'), (12, '12-13'), (13, '13-14'), (14, '14-15'), (15, '15-16'), (16, '16-17'), (17, '17+')], default=6, verbose_name="Girl's age without help"), + ), + ] diff --git a/khana/objective/models.py b/khana/objective/models.py index cb450d7..4a5a526 100644 --- a/khana/objective/models.py +++ b/khana/objective/models.py @@ -15,6 +15,21 @@ class Educative(Markdownizable): Classe `mère`. """ + AGE_CHOICES = ( + (6, "6-7"), + (7, "7-8"), + (8, "8-9"), + (9, "9-10"), + (10, "10-11"), + (11, "11-12"), + (12, "12-13"), + (13, "13-14"), + (14, "14-15"), + (15, "15-16"), + (16, "16-17"), + (17, "17+"), + ) + class Meta: verbose_name = "Educatif" verbose_name_plural = "Educatifs" @@ -40,6 +55,32 @@ class Educative(Markdownizable): blank=True, null=True, verbose_name="Girl's age" ) + age_boy_with_help = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Boy's age with help", default=6 + ) + age_boy_without_help = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Boy's age without help", default=6 + ) + age_boy_chained = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Boy's age chained", default=6 + ) + age_boy_masterised = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Boy's age masterised", default=6 + ) + + age_girl_with_help = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Girl's age with help", default=6 + ) + age_girl_without_help = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Girl's age without help", default=6 + ) + age_girl_chained = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Girl's age chained", default=6 + ) + age_girl_masterised = models.PositiveSmallIntegerField( + choices=AGE_CHOICES, verbose_name="Girl's age masterised", default=6 + ) + def __str__(self): return "%s - %s (level: %s | diff: %s)" % ( self.rank, diff --git a/khana/planning/migrations/0023_alter_group_season.py b/khana/planning/migrations/0023_alter_group_season.py new file mode 100644 index 0000000..4b5342d --- /dev/null +++ b/khana/planning/migrations/0023_alter_group_season.py @@ -0,0 +1,18 @@ +# Generated by Django 4.0.1 on 2022-01-13 21:01 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('planning', '0022_alter_event_participation_options'), + ] + + operations = [ + migrations.AlterField( + model_name='group', + name='season', + field=models.CharField(default='2022-2023', max_length=9), + ), + ]