

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF[
	<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
	<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
	<!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
	<!ENTITY swivt 'http://semantic-mediawiki.org/swivt/1.0#'>
	<!ENTITY wiki 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/'>
	<!ENTITY category 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3A'>
	<!ENTITY property 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3A'>
	<!ENTITY wikiurl 'https://www.wikidebrouillard.org/wiki/'>
]>

<rdf:RDF
	xmlns:rdf="&rdf;"
	xmlns:rdfs="&rdfs;"
	xmlns:owl ="&owl;"
	xmlns:swivt="&swivt;"
	xmlns:wiki="&wiki;"
	xmlns:category="&category;"
	xmlns:property="&property;">

	<owl:Ontology rdf:about="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/Réaction">
		<swivt:creationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-04-30T22:44:42+02:00</swivt:creationDate>
		<owl:imports rdf:resource="http://semantic-mediawiki.org/swivt/1.0"/>
	</owl:Ontology>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction">
		<rdf:type rdf:resource="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials"/>
		<rdf:type rdf:resource="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3APages_avec_des_erreurs_de_coloration_syntaxique"/>
		<rdfs:label>Réaction</rdfs:label>
		<rdfs:isDefinedBy rdf:resource="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/Réaction"/>
		<swivt:page rdf:resource="https://www.wikidebrouillard.org/wiki/Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<swivt:wikiPageContentLanguage rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fr</swivt:wikiPageContentLanguage>
		<property:Avertissement rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Composants défectueux</property:Avertissement>
		<property:Complete rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Draft</property:Complete>
		<property:Description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Durant cette expérimentation nous réaliseront un petit jeu basé sur le temps de réaction de l'utilisateur.</property:Description>
		<property:Difficulty rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Easy</property:Difficulty>
		<property:Disciplines_scientifiques rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arduino</property:Disciplines_scientifiques>
		<property:Disciplines_scientifiques rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Computing</property:Disciplines_scientifiques>
		<property:Duration rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4</property:Duration>
		<property:Duration-2Dtype rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hour(s)</property:Duration-2Dtype>
		<property:Item rdf:resource="&wiki;Arduino"/>
		<property:Item rdf:resource="&wiki;LED"/>
		<property:Item rdf:resource="&wiki;Résistance"/>
		<property:Item rdf:resource="&wiki;Fer_à_souder"/>
		<property:Item rdf:resource="&wiki;Fil_électrique"/>
		<property:Item rdf:resource="&wiki;Gros_bouton_rouge"/>
		<property:Item rdf:resource="&wiki;Bouton_poussoir"/>
		<property:Item rdf:resource="&wiki;Afficheur_LCD"/>
		<property:Licences rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Attribution (CC-BY)</property:Licences>
		<property:Main_Picture rdf:datatype="http://www.w3.org/2001/XMLSchema#string">R_action_Boitier.jpg</property:Main_Picture>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&lt;nowiki&gt;&lt;div class="mw-highlight mw-content-ltr" dir="ltr"&gt;&lt;pre&gt;#include &lt;Wire.h&gt;&lt;br /&gt;#include "rgb_lcd.h"&lt;br /&gt;&lt;br /&gt;rgb_lcd lcd;&lt;br /&gt;const int led_pin = 2,&lt;br /&gt;pin_button = 4,&lt;br /&gt;begin_button = 6,&lt;br /&gt;red_led_pin=8,&lt;br /&gt;yellow_led_pin=9,&lt;br /&gt;green_led_pin=10;&lt;br /&gt;&lt;br /&gt;unsigned long temps, tempsf;&lt;br /&gt;int attente;&lt;br /&gt;&lt;br /&gt;void setup() {&lt;br /&gt;pinMode(led_pin,OUTPUT);&lt;br /&gt;pinMode(red_led_pin,OUTPUT);&lt;br /&gt;pinMode(9,OUTPUT);&lt;br /&gt;pinMode(green_led_pin,OUTPUT);&lt;br /&gt;pinMode(pin_button,INPUT);&lt;br /&gt;lcd.begin(16, 2);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void loop() {&lt;br /&gt;digitalWrite(10,LOW);&lt;br /&gt;digitalWrite(9,LOW);&lt;br /&gt;digitalWrite(8,LOW);&lt;br /&gt;lcd.clear();&lt;br /&gt;lcd.print("Nouvel essai");&lt;br /&gt;delay(3000);&lt;br /&gt;lcd.clear();&lt;br /&gt;&lt;br /&gt;lcd.print("Pret ?");&lt;br /&gt;lcd.setCursor(0,0);&lt;br /&gt;attente = random(0,10000);&lt;br /&gt;for(int i=0;i&lt;=attente;i++){&lt;br /&gt;delay(1);&lt;br /&gt;if (digitalRead(pin_button)==true){&lt;br /&gt;goto fin;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;digitalWrite(led_pin,HIGH);&lt;br /&gt;lcd.print("Appuyez !");&lt;br /&gt;temps=millis();&lt;br /&gt;while(digitalRead(pin_button)==false){&lt;br /&gt;}&lt;br /&gt;lcd.clear();&lt;br /&gt;digitalWrite(led_pin,LOW);&lt;br /&gt;tempsf=millis()-temps;&lt;br /&gt;lcd.print(String("Temps :")+tempsf+String(" ms"));&lt;br /&gt;lcd.setCursor(0,2);&lt;br /&gt;&lt;br /&gt;if(tempsf&lt;=300){&lt;br /&gt;digitalWrite(10,HIGH);&lt;br /&gt;lcd.println("Bien joue! ");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if(tempsf&gt;=300 &amp;&amp; tempsf&lt;=700){&lt;br /&gt;digitalWrite(9,HIGH);&lt;br /&gt;lcd.println("Peu mieux faire!");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if(tempsf&gt;=700){&lt;br /&gt;digitalWrite(8,HIGH);&lt;br /&gt;lcd.println("Trop lent! ");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;while(digitalRead(begin_button)==false){&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;fin:&lt;br /&gt;lcd.println("NULL");&lt;br /&gt;}&lt;/pre&gt;&lt;/div&gt;&lt;/nowiki&gt;</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fabriquez à l'aide d'une découpeuse laser et le site "générateur de boite" la boite qui contiendra votre montage électrique.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaliser le montage du lcd comme sur la figure. Brancher les leds avec une patte sur la masse et une autre sur la broche digital correspondante. Brancher les boutons sur les pins correspondants en oubliant pas de rajouter des résistances de fuite.</property:Step_Content>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Le code</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fabriquer la boite</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réalisation du montage</property:Step_Title>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arduino</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">réflexe</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rapidité</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bouton</property:Tags>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERY594e53a63bbfc2d87c2f612aeedd601c"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERY50e9a179c214565b8620eb5604b5c81c"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERY68752c831b915f31cac501fae79cf098"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERYd360e094340f7aba27c6cd9d9763e977"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERY2dc0c22c1d6e3669d46e2a2c27ccc37e"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERYbf8897a10cb61bfc629d8907463083ec"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERY4e076c3fe2dbaf42d8fc4d4561714a06"/>
		<property:Has_query rdf:resource="&wiki;Réaction-23_QUERY5880454d057cd40b580a121d3db5be33"/>
		<swivt:wikiPageModificationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-11-20T07:42:13Z</swivt:wikiPageModificationDate>
		<property:Modification_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2459538.8209838</property:Modification_date-23aux>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction</swivt:wikiPageSortKey>
		<property:Comments rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Comments>
		<property:Page_creator rdf:resource="&wiki;Utilisateur-3AUser3003"/>
		<property:I_did_it rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:I_did_it>
		<property:Favorites rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Favorites>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERY594e53a63bbfc2d87c2f612aeedd601c">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Arduino]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERY594e53a63bbfc2d87c2f612aeedd601c</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERY50e9a179c214565b8620eb5604b5c81c">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Fil électrique]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERY50e9a179c214565b8620eb5604b5c81c</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERY68752c831b915f31cac501fae79cf098">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Fer à souder]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERY68752c831b915f31cac501fae79cf098</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERYd360e094340f7aba27c6cd9d9763e977">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Gros bouton rouge]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERYd360e094340f7aba27c6cd9d9763e977</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERY2dc0c22c1d6e3669d46e2a2c27ccc37e">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Bouton poussoir]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERY2dc0c22c1d6e3669d46e2a2c27ccc37e</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERYbf8897a10cb61bfc629d8907463083ec">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Résistance]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERYbf8897a10cb61bfc629d8907463083ec</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERY4e076c3fe2dbaf42d8fc4d4561714a06">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:LED]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERY4e076c3fe2dbaf42d8fc4d4561714a06</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Réaction-23_QUERY5880454d057cd40b580a121d3db5be33">
		<swivt:masterPage rdf:resource="&wiki;Réaction"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Afficheur LCD]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réaction# QUERY5880454d057cd40b580a121d3db5be33</swivt:wikiPageSortKey>
	</swivt:Subject>
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#creationDate" />
	<owl:Class rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials" />
	<owl:Class rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3APages_avec_des_erreurs_de_coloration_syntaxique" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#page" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiNamespace" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageContentLanguage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AAvertissement" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComplete" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADescription" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADifficulty" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADisciplines_scientifiques" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration-2Dtype" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AItem" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ALicences" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AMain_Picture" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AStep_Content" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AStep_Title" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ATags" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AHas_query" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageModificationDate" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AModification_date-23aux" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageSortKey" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComments" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3APage_creator" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AI_did_it" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AFavorites" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#masterPage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_depth" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_format" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_size" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_string" />
	<!-- Created by Semantic MediaWiki, https://www.semantic-mediawiki.org/ -->
</rdf:RDF>