Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH | ||||
5506751 | 20 days ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
PeeWeeDogs
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./DogData.sol"; import "erc721a/contracts/ERC721A.sol"; import "base64-sol/base64.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./DogBark.sol"; contract PeeWeeDogs is ERC721A, Ownable, DogData, ReentrancyGuard { address public deployer; bytes32 private lastBlockHash; uint256 private lastBlockNumber; address public dogBarkAddress; /// Mint Settings uint public maxSupply = 3000; uint public mintPrice = 0.003 ether; uint public whitelistMintPrice = 0.0015 ether; bool public mintEnabled = false; /// Mint Rules uint public maxMintPerTrans = 5; uint public maxMintPerWallet = 30; /// Whitelist Settings mapping(address => uint) public mintAmount; mapping(address => WhitelistInfo) public whitelistInfo; address public listController; struct WhitelistInfo { bool isWhitelisted; uint256 maxMintAmount; bool hasMinted; } modifier onlylistController() { require(msg.sender == listController, "Controller Only"); _; } constructor(address _dogBarkAddress) ERC721A("Pee Wee Dogs", "PWOGS") { lastBlockHash = blockhash(block.number - 1); lastBlockNumber = block.number; dogBarkAddress = _dogBarkAddress; deployer = msg.sender; _transferOwnership(msg.sender); } function _startTokenId() internal pure override returns (uint256) { return 1; } function mint(uint256 quantity) external payable { uint256 cost = mintPrice; require(mintEnabled, "Mint not ready yet"); require(msg.value == quantity * cost, "Please send the exact ETH amount"); require(quantity <= maxMintPerTrans, "Exceeds max mint per transaction"); uint256 totalMintedByWallet = mintAmount[msg.sender] + quantity; require(totalMintedByWallet <= maxMintPerWallet, "Exceeds max mint per wallet"); mintAmount[msg.sender] = totalMintedByWallet; _internalMint(quantity); } function whitelistMint(uint256 quantity) external payable { WhitelistInfo storage info = whitelistInfo[msg.sender]; require(info.isWhitelisted, "Not whitelisted"); require(quantity <= info.maxMintAmount, "Exceeds whitelist mint amount"); require(mintEnabled, "Mint not ready yet"); require(quantity <= maxMintPerTrans, "Exceeds max mint per transaction"); uint256 totalMintedByWallet = mintAmount[msg.sender] + quantity; require(totalMintedByWallet <= maxMintPerWallet + info.maxMintAmount, "Exceeds max mint per wallet including whitelist allocation"); uint256 totalCost = quantity * whitelistMintPrice; require(msg.value == totalCost, "Please send the exact discounted ETH amount"); mintAmount[msg.sender] = totalMintedByWallet; info.hasMinted = true; _internalMint(quantity); } function _internalMint(uint256 quantity) internal { require(_totalMinted() + quantity <= maxSupply, "Sold Out!"); uint startTokenID = _startTokenId() + _totalMinted(); uint mintUntilTokenID = quantity + startTokenID; for(uint256 tokenId = startTokenID; tokenId < mintUntilTokenID; tokenId++) { /// get our random traits uint[6] memory randomSeeds = _randomSeed(lastBlockHash,tokenId); /// set this new Dog traits! _setDogTraits(tokenId, randomSeeds); } lastBlockHash = blockhash(block.number - 1); lastBlockNumber = block.number; _safeMint(msg.sender, quantity); } function _randomSeed(bytes32 _lastBlockHash, uint256 _tokenId) internal pure returns (uint[6] memory _randomSeeds) { // Initial seed _randomSeeds[0] = uint256(keccak256(abi.encodePacked(_lastBlockHash, _tokenId))) % 101; // Generate subsequent seeds for (uint i = 1; i < 6; i++) { _randomSeeds[i] = uint256(keccak256(abi.encodePacked(_randomSeeds[i - 1], _tokenId))) % 101; } return _randomSeeds; } function _setDogTraits(uint _tokenID, uint[6] memory _randomSeeds) internal { // Randomly select traits uint randFur = _pickTraitByProbability(_randomSeeds[0], fur_data, fur_probability); uint randEyes = _pickTraitByProbability(_randomSeeds[1], eyes_data, eyes_probability); uint randHead = _pickTraitByProbability(_randomSeeds[2], head_data, head_probability); uint randMouth = _pickTraitByProbability(_randomSeeds[3], mouth_data, mouth_probability); uint randMark = _pickTraitByProbability(_randomSeeds[4], mark_data, mark_probability); uint randBoard = _pickTraitByProbability(_randomSeeds[5], board_data, board_probability); TraitStruct memory newTraits = TraitStruct({ fur: randFur, eyes: randEyes, head: randHead, mouth: randMouth, mark: randMark, board: randBoard }); // Assign the generated traits to the token tokenTraits[_tokenID] = newTraits; } function _pickTraitByProbability(uint seed, bytes[] memory traitArray, uint[] memory traitProbability) internal pure returns (uint) { require(traitArray.length > 0, "Elements array is empty"); require(traitArray.length == traitProbability.length, "Elements and weights length mismatch"); for (uint i = 0; i < traitProbability.length; i++) { if(seed < traitProbability[i]) { return i; } } // Fallback, return first element as a safe default return 0; } function tokenURI(uint256 tokenId) public view override returns (string memory) { // Get image string memory image = buildSVG(tokenId); // Encode SVG data to base64 string memory base64Image = Base64.encode(bytes(image)); // Build JSON metadata including animation string memory json = string( abi.encodePacked( '{"name": "Pee Wee Dogs #', Strings.toString(tokenId), '",', '"description": "Fully Onchain PWOGS on Abstract Chain",', '"attributes": [', _getDogTraits(tokenId), '],', '"image": "data:image/svg+xml;base64,', base64Image, '",', '"animation_url": "data:text/html;base64,', _getAnimationHTML(tokenId), '"}' ) ); // Encode JSON data to base64 string memory base64Json = Base64.encode(bytes(json)); // Construct final URI return string(abi.encodePacked('data:application/json;base64,', base64Json)); } function _getAnimationHTML(uint tokenId) internal view returns (string memory) { require(_exists(tokenId), "Token does not exist"); TraitStruct memory localTraits = tokenTraits[tokenId]; DogBark barkLib = DogBark(dogBarkAddress); string memory audioData = barkLib.getBarkData(); // Ensure this is sanitized // Enhanced CSS for a more beautiful animation string memory extraCSS = string(abi.encodePacked( '@keyframes bark {', '0%, 100% { transform: scale(1) rotate(0deg); }', '50% { transform: scale(1.05) rotate(-3deg); }', '}' )); return Base64.encode(bytes( string( abi.encodePacked( '<html><head><style>', 'svg {width:100%;height:100%;cursor:pointer;}', // Full-screen clickable area '#dogContainer{position:relative;width:100%;height:100%;max-width:512px;max-height:512px;overflow:hidden;display:block;margin:auto;}', '#dog{transition:transform 0.3s ease-in-out;transform-origin:center;}', // Smooth scaling '#dog:hover{transform:scale(1.1) rotate(1deg);}', // Slight rotation on hover for cuteness '.barkAnimation { animation: bark 0.3s ease-in-out; }', // Bark animation effect extraCSS, // Include the keyframes '</style></head><body>', '<svg xmlns="http://www.w3.org/2000/svg" id="dogContainer" viewBox="0 0 16 16" width="512" height="512" shape-rendering="crispEdges">', '<rect width="100%" height="100%" fill="#01CA6A"/>', // Soft green background '<g id="dog" class="barkAnimation">', // Dog group with animation _getSVGTraitData(fur_data[localTraits.fur]), _getSVGTraitData(eyes_data[localTraits.eyes]), _getSVGTraitData(head_data[localTraits.head]), _getSVGTraitData(mouth_data[localTraits.mouth]), _getSVGTraitData(mark_data[localTraits.mark]), _getSVGTraitData(board_data[localTraits.board]), '</g>', '</svg>', '<audio id="barkSound"><source src="', audioData, '" type="audio/ogg">Your browser does not support the audio element.</audio>', '<script>', 'document.querySelector("#dogContainer").addEventListener("click",function(){', 'var dog = document.getElementById("dog");', 'dog.classList.add("barkAnimation");', 'document.getElementById("barkSound").play();', 'setTimeout(()=>{dog.classList.remove("barkAnimation");}, 300);', '});', '</script></body></html>' ) ) )); } function buildSVG(uint tokenid) public view returns (string memory) { require(_exists(tokenid), "Token does not exist"); TraitStruct memory localTraits = tokenTraits[tokenid]; string memory svg = string(abi.encodePacked( '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" shape-rendering="crispEdges" width="512" height="512">', '<rect width="100%" height="100%" fill="#01CA6A"/>', _getSVGTraitData(fur_data[localTraits.fur]), _getSVGTraitData(eyes_data[localTraits.eyes]), _getSVGTraitData(head_data[localTraits.head]), _getSVGTraitData(mouth_data[localTraits.mouth]), _getSVGTraitData(mark_data[localTraits.mark]), _getSVGTraitData(board_data[localTraits.board]), '</svg>' )); return svg; } function _getSVGTraitData(bytes memory data) internal pure returns (string memory) { require(data.length % 5 == 0, "Invalid number of reacts"); /// if empty this is a transparent react if (data.length == 0) { return "<rect x=\"0\" y=\"0\" width=\"0\" height=\"0\" fill=\"rgb(0,0,0)\"/>"; } // Initialize arrays to store values uint reactCount = data.length / 5; /// react string to return string memory rects; uint[] memory x = new uint[](reactCount); uint[] memory y = new uint[](reactCount); uint[] memory r = new uint[](reactCount); uint[] memory g = new uint[](reactCount); uint[] memory b = new uint[](reactCount); // Iterate through each react and get the values we need for (uint i = 0; i < reactCount; i++) { // Convert and assign values to respective arrays x[i] = uint8(data[i * 5]); y[i] = uint8(data[i * 5 + 1]); r[i] = uint8(data[i * 5 + 2]); g[i] = uint8(data[i * 5 + 3]); b[i] = uint8(data[i * 5 + 4]); // Convert uint values to strings string memory xStr = Strings.toString(x[i]); string memory yStr = Strings.toString(y[i]); string memory rStr = Strings.toString(r[i]); string memory gStr = Strings.toString(g[i]); string memory bStr = Strings.toString(b[i]); rects = string(abi.encodePacked(rects, '<rect x="', xStr, '" y="', yStr, '" width="1" height="1" fill="rgb(', rStr, ',', gStr, ',', bStr, ')" />')); } return rects; } function _getDogTraits(uint tokenid) internal view returns (string memory) { TraitStruct memory traits = tokenTraits[tokenid]; string memory metadata = string(abi.encodePacked( '{"trait_type":"Fur", "value":"', fur_traits[traits.fur], '"},', '{"trait_type":"Eyes", "value":"', eyes_traits[traits.eyes], '"},', '{"trait_type":"Head", "value":"', head_traits[traits.head], '"},', '{"trait_type":"Mouth", "value":"', mouth_traits[traits.mouth], '"},', '{"trait_type":"Mark", "value":"', mark_traits[traits.mark], '"},', '{"trait_type":"Board", "value":"', board_traits[traits.board], '"}' )); return metadata; } // Admin methods function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function devMint(uint _quantity) external onlyOwner { _internalMint(_quantity); } function addToWhitelist(address[] calldata addresses, uint256[] calldata maxMintAmounts) external onlylistController nonReentrant { require(addresses.length == maxMintAmounts.length, "Arrays must be of same length"); for (uint i = 0; i < addresses.length; i++) { // Ensure the maxMintAmount doesn't exceed 5 for each address uint256 maxMint = maxMintAmounts[i] > 5 ? 5 : maxMintAmounts[i]; whitelistInfo[addresses[i]] = WhitelistInfo({ isWhitelisted: true, maxMintAmount: maxMint, hasMinted: false }); } } function removeFromWhitelist(address[] calldata addresses) external onlylistController nonReentrant { for (uint i = 0; i < addresses.length; i++) { delete whitelistInfo[addresses[i]]; } } function getWhitelistInfo(address user) public view returns (WhitelistInfo memory) { return whitelistInfo[user]; } function setListController(address _address) external onlyOwner { listController = _address; } function changelistController(address _address) external onlyOwner { listController = _address; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; contract DogData { struct TraitStruct { uint fur; uint eyes; uint head; uint mouth; uint mark; uint board; } mapping(uint => TraitStruct) public tokenTraits; mapping(uint => uint) public DogHouse; bytes[] internal fur_data = [ bytes(hex'0805df71260706df71260906df71260a06df71260b06df71260207df71260807df71260907ffffff0a07df71260b07ffffff0308df71260808df71260908df71260a08df71260b088843140c088843140409df71260509df71260609df71260709df71260809df71260909df71260a09df71260b09df7126040adf7126050adf7126060adf7126070adf7126080adf7126090adf71260a0adf71260b0adf7126040bdf7126050bdf7126060bdf7126070bdf7126080bdf7126090bdf71260a0bdf71260b0bdf7126040cdf7126060cdf7126090cdf71260b0cdf7126'), bytes(hex'0805a0bdfa0706a0bdfa0906a0bdfa0a06a0bdfa0b06a0bdfa0207a0bdfa0807a0bdfa0907ffffff0a07a0bdfa0b07ffffff0308a0bdfa0808a0bdfa0908a0bdfa0a08a0bdfa0b08759ff70c08759ff70409a0bdfa0509a0bdfa0609a0bdfa0709a0bdfa0809a0bdfa0909a0bdfa0a09a0bdfa0b09a0bdfa040aa0bdfa050aa0bdfa060aa0bdfa070aa0bdfa080aa0bdfa090aa0bdfa0a0aa0bdfa0b0aa0bdfa040ba0bdfa050ba0bdfa060ba0bdfa070ba0bdfa080ba0bdfa090ba0bdfa0a0ba0bdfa0b0ba0bdfa040ca0bdfa060ca0bdfa090ca0bdfa0b0ca0bdfa'), bytes(hex'0805d77bba0706d77bba0906d77bba0a06d77bba0b06d77bba0207d77bba0807d77bba0907ffffff0a07d77bba0b07ffffff0308d77bba0808d77bba0908d77bba0a08d77bba0b08c7479f0c08c7479f0409d77bba0509d77bba0609d77bba0709d77bba0809d77bba0909d77bba0a09d77bba0b09d77bba040ad77bba050ad77bba060ad77bba070ad77bba080ad77bba090ad77bba0a0ad77bba0b0ad77bba040bd77bba050bd77bba060bd77bba070bd77bba080bd77bba090bd77bba0a0bd77bba0b0bd77bba040cd77bba060cd77bba090cd77bba0b0cd77bba'), bytes(hex'08055fcde407065fcde409065fcde40a065fcde40b065fcde402075fcde408075fcde40907ffffff0a075fcde40b07ffffff03085fcde408085fcde409085fcde40a085fcde40b081c8ea60c081c8ea604095fcde405095fcde406095fcde407095fcde408095fcde409095fcde40a095fcde40b095fcde4040a5fcde4050a5fcde4060a5fcde4070a5fcde4080a5fcde4090a5fcde40a0a5fcde40b0a5fcde4040b5fcde4050b5fcde4060b5fcde4070b5fcde4080b5fcde4090b5fcde40a0b5fcde40b0b5fcde4040c5fcde4060c5fcde4090c5fcde40b0c5fcde4'), bytes(hex'0805eec39a0706eec39a0906eec39a0a06eec39a0b06eec39a0207eec39a0807eec39a0907ffffff0a07eec39a0b07ffffff0308eec39a0808eec39a0908eec39a0a08eec39a0b08d9a0660c08d9a0660409eec39a0509eec39a0609eec39a0709eec39a0809eec39a0909eec39a0a09eec39a0b09eec39a040aeec39a050aeec39a060aeec39a070aeec39a080aeec39a090aeec39a0a0aeec39a0b0aeec39a040beec39a050beec39a060beec39a070beec39a080beec39a090beec39a0a0beec39a0b0beec39a040ceec39a060ceec39a090ceec39a0b0ceec39a'), bytes(hex'0805222034070622203409062220340a062220340b06222034020722203408072220340a072220340308222034080822203409082220340a082220340b081816210c081816210409222034050922203406092220340709222034080922203409092220340a092220340b09222034040a222034050a222034060a222034070a222034080a222034090a2220340a0a2220340b0a222034040b222034050b222034060b222034070b222034080b222034090b2220340a0b2220340b0b222034040c222034060c222034090c2220340b0c222034'), bytes(hex'08053f3f7407063f3f7409063f3f740a063f3f740b063f3f7402073f3f7408073f3f740907ffffff0a073f3f740b07ffffff03083f3f7408083f3f7409083f3f740a083f3f740b08282f670c08282f6704093f3f7405093f3f7406093f3f7407093f3f7408093f3f7409093f3f740a093f3f740b093f3f74040a3f3f74050a3f3f74060a3f3f74070a3f3f74080a3f3f74090a3f3f740a0a3f3f740b0a3f3f74040b3f3f74050b3f3f74060b3f3f74070b3f3f74080b3f3f74090b3f3f740a0b3f3f740b0b3f3f74040c3f3f74060c3f3f74090c3f3f740b0c3f3f74'), bytes(hex'0805fbf2360706fbf2360906fbf2360a06fbf2360b06fbf2360207fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0308fbf2360808fbf2360908fbf2360a08fbf2360b08b3ab040c08b3ab040409fbf2360509fbf2360609fbf2360709fbf2360809fbf2360909fbf2360a09fbf2360b09fbf236040afbf236050afbf236060afbf236070afbf236080afbf236090afbf2360a0afbf2360b0afbf236040bfbf236050bfbf236060bfbf236070bfbf236080bfbf236090bfbf2360a0bfbf2360b0bfbf236040cfbf236060cfbf236090cfbf2360b0cfbf236') ]; string[] internal fur_traits = [ 'Autumn', 'Blue', 'Bubblegum', 'Cottoncandy', 'Cream', 'Dark', 'Night', 'Yellow' ]; uint[] internal fur_probability = [15,30,48,58,64,80,90,100]; bytes[] internal eyes_data = [ bytes(hex'09070000000b07000000'), bytes(hex'0907ff00000a07ff00000b07ff00000c07ff00000d07ff00000e07ff0000'), bytes(hex'0906ffffff0a06ffffff0b06ffffff0807ffffff09070000000a07ffffff0b070000000908ffffff0a08ffffff'), bytes(hex'09060000000a060000000b0600000008070000000907ffffff0a070000000b07ffffff09080000000a08000000'), bytes(hex'09060000000a060000000b060000000807000000090768ff000a0768ff000b0768ff0009080000000a08000000'), bytes(hex'0906fbf2360b06fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0c07fbf2360908fbf236'), bytes(hex'09069badb70a069badb70b069badb708079badb709070000000a070000000b0700000009089badb70a089badb7'), bytes(hex'0907ffffff0b07ffffff') ]; string[] internal eyes_traits = [ 'Black', 'LAZEEERRRR', 'Mask White', 'Mask Black', 'NV Googles', 'Sparkling', 'VR', 'White' ]; uint[] internal eyes_probability = [20, 30, 45, 60, 70, 80, 90, 100]; bytes[] internal head_data = [ bytes(hex'0a03fff3000904fff3000a04ff00000b04fff30009050037ff0a050037ff0b050037ff'), bytes(hex'0805196cff0905196cff0a05196cff0b05196cff0806196cff0906196cff0a06196cff0b06196cff0c06196cff'), bytes(hex'0903c9c9c90a03c9c9c90b03c9c9c90904ffffff0a04ffffff0b04ffffff0905ffffff0a05ffffff0b05ffffff'), bytes(hex'0904ffe1f60a04ffe1f60b04ffe1f60805ff5a5a0905ffccef0a05ffccef0b05ffccef0c05ff5a5a'), bytes(hex'0804f5ec230a04f5ec230c04f5ec230805f5ec230905f5ec230a05f5ec230b05f5ec230c05f5ec23'), bytes(hex'0804ac32320c04ac32320905ac32320b05ac3232'), bytes(hex'0704d9a0660904df71260a04df71260b04df71260d04d9a0660805d9a0660905d9a0660a05d9a0660b05d9a0660c05d9a066'), bytes(hex'0904aa70540a04aa70540b04aa705408058f563b09058f563b0a058f563b0b058f563b0c058f563b'), bytes(hex'0902fbf2360a02fbf2360b02fbf2360803fbf2360c03fbf2360904fbf2360a04fbf2360b04fbf236'), bytes(hex'0a03fff74e0b03fff74e0904fff74e0a04fff74e0b04fff74e0805fff74e0905fff74e0a05fff74e0b05fff74e'), bytes(hex'0a03ff00000b03ff00000904ff00000a04ff00000b04ff00000805ff00000905ff00000a05ff00000b05ff0000'), bytes(hex''), bytes(hex'0903ffffff0a03ffffff0b03ffffff0904c9c9c90a04c9c9c90b04c9c9c90805ffffff0905ffffff0a05ffffff0b05ffffff0c05ffffff'), bytes(hex'09040000000a040000000b040000000905f219190a05f219190b05f21919080600000009060000000a060000000b060000000c06000000') ]; string[] internal head_traits = [ 'Beanie Cap', 'Blue Cap', 'Chef hat', 'Cotton hat', 'Crown', 'Devil horns', 'Farmer hat', 'Fedora', 'Halo', 'Mohawk Golden', 'Mohawk Red', 'None', 'Top hat white', 'Top hat black' ]; uint[] internal head_probability = [10,20,30,40,45,50,60,66,70,75,78,90,95,100]; bytes[] internal mouth_data = [ bytes(hex'0a09f4f4f40b09f4f4f40c09f4f4f40d09f4f4f4'), bytes(hex'0e06ffffff0e07ffffff0b09f4f4f40c09f4f4f40d09f4f4f40e09ff0000'), bytes(hex'0e08fffcb30a09fbf2360b09fbf2360c09fbf2360e0afffcb30d0cfffcb3'), bytes(hex'0a094b692f0b09524b240c094b692f0d094b692f0e09ffffff0a0a524b240b0a4b692f0c0a524b24'), bytes(hex''), bytes(hex'0a09ffffff0b09ffffff0c09ffffff0d09ffffff0a0affffff0d0affffff'), bytes(hex'0e05ffffff0e07ffffff0b09c3dfff0c09c3dfff0d09c3dfff0e09003dff') ]; string[] internal mouth_traits = [ 'Bone', 'Cig', 'Gold bar', 'Grenade', 'None', 'Sabertooth', 'Vape' ]; uint[] internal mouth_probability = [10,20,30,40, 80,90, 100]; bytes[] internal mark_data = [ bytes(hex'090affffff'), bytes(hex'090affffff070bf4f4f4'), bytes(hex'050973eff7060973eff7070b73eff7080b73eff7'), bytes(hex'040ac7b6b6050ac7b6b6060ac7b6b6070ac7b6b6080ac7b6b6090ac7b6b60a0ac7b6b60b0ac7b6b6'), bytes(hex''), bytes(hex'05094447460809444746060a444746090a444746070b4447460a0b444746'), bytes(hex'080afb3838090afb3838070bfb3838') ]; string[] internal mark_traits = [ 'DOT 1', 'DOT 2', 'Highlight', 'Line', 'None', 'Stripes', 'Scar' ]; uint[] internal mark_probability = [10, 20, 30, 40, 80, 90, 100]; bytes[] internal board_data = [ bytes(hex'020b272820020c272820030d272820040d272820050d272820060d272820070d272820080d272820090d2728200a0d2728200b0d2728200c0d272820060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex'020bae81ff020cae81ff030dae81ff040dae81ff050dae81ff060dae81ff070dae81ff080dae81ff090dae81ff0a0dae81ff0b0dae81ff0c0dae81ff060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex'020b66d9ef020c66d9ef030d66d9ef040d66d9ef050d66d9ef060d66d9ef070d66d9ef080d66d9ef090d66d9ef0a0d66d9ef0b0d66d9ef0c0d66d9ef060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex'020be6db74020ce6db74030de6db74040de6db74050de6db74060de6db74070de6db74080de6db74090de6db740a0de6db740b0de6db740c0de6db74060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex''), bytes(hex'020c823e2c0d0c823e2c030d823e2c040d823e2c050d823e2c060d823e2c070d823e2c080d823e2c090d823e2c0a0d823e2c0b0d823e2c0c0d823e2c050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c1008200d0c100820030d100820040d100820050d100820060d100820070d100820080d100820090d1008200a0d1008200b0d1008200c0d100820050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c10d2750d0c10d275030d10d275040d10d275050d10d275060d10d275070d10d275080d10d275090d10d2750a0d10d2750b0d10d2750c0d10d275050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c7f06220d0c7f0622030d7f0622040d7f0622050d7f0622060d7f0622070d7f0622080d7f0622090d7f06220a0d7f06220b0d7f06220c0d7f0622050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020cfafdff0d0cfafdff030dfafdff040dfafdff050dfafdff060dfafdff070dfafdff080dfafdff090dfafdff0a0dfafdff0b0dfafdff0c0dfafdff050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c14121d020d14121d030d14121d040d14121d050d14121d060d14121d070d14121d080d14121d090d14121d0a0d14121d0b0d14121d0c0d14121d030e14121d040e14121d'), bytes(hex'020cfdc9c9020dfdc9c9030dfdc9c9040dfdc9c9050dfdc9c9060dfdc9c9070dfdc9c9080dfdc9c9090dfdc9c90a0dfdc9c90b0dfdc9c90c0dfdc9c9030efdc9c9040efdc9c9'), bytes(hex'020ceee6ea020deee6ea030deee6ea040deee6ea050deee6ea060deee6ea070deee6ea080deee6ea090deee6ea0a0deee6ea0b0deee6ea0c0deee6ea030eeee6ea040eeee6ea') ]; string[] internal board_traits = [ 'Hoverboard 1Bit', 'Hoverboard Inked', 'Hoverboard Sky', 'Hoverboard tan', 'None', 'Skateboard Brown', 'Skateboard Dark Blue', 'Skateboard Green', 'Skateboard Maroon', 'Skateboard White', 'Surfboard Dark', 'Surfboard Faded', 'Surfboard Smoke' ]; uint[] internal board_probability = [5,10,15,20,50,58,66,74,82,91,94,97,100]; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/access/Ownable.sol"; contract DogBark is Ownable { // Store the audio data URI in a state variable string public barkAudio; // Function to set or update the bark data URI function setBarkData(string memory _barkAudio) external onlyOwner { barkAudio = _barkAudio; } // Function to retrieve bark data function getBarkData() external view returns (string memory) { return barkAudio; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * The `_sequentialUpTo()` function can be overriden to enable spot mints * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // The amount of tokens minted above `_sequentialUpTo()`. // We call these spot mints (i.e. non-sequential mints). uint256 private _spotMinted; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID for sequential mints. * * Override this function to change the starting token ID for sequential mints. * * Note: The value returned must never change after any tokens have been minted. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the maximum token ID (inclusive) for sequential mints. * * Override this function to return a value less than 2**256 - 1, * but greater than `_startTokenId()`, to enable spot (non-sequential) mints. * * Note: The value returned must never change after any tokens have been minted. */ function _sequentialUpTo() internal view virtual returns (uint256) { return type(uint256).max; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256 result) { // Counter underflow is impossible as `_burnCounter` cannot be incremented // more than `_currentIndex + _spotMinted - _startTokenId()` times. unchecked { // With spot minting, the intermediate `result` can be temporarily negative, // and the computation must be unchecked. result = _currentIndex - _burnCounter - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256 result) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { result = _currentIndex - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } /** * @dev Returns the total number of tokens that are spot-minted. */ function _totalSpotMinted() internal view virtual returns (uint256) { return _spotMinted; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * @dev Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; if (tokenId > _sequentialUpTo()) { if (_packedOwnershipExists(packed)) return packed; _revert(OwnerQueryForNonexistentToken.selector); } // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `packed` represents a token that exists. */ function _packedOwnershipExists(uint256 packed) private pure returns (bool result) { assembly { // The following is equivalent to `owner != address(0) && burned == false`. // Symbolically tested. result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED)) } } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // This prevents reentrancy to `_safeMint`. // It does not prevent reentrancy to `_safeMintSpot`. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } /** * @dev Mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * Emits a {Transfer} event for each mint. */ function _mintSpot(address to, uint256 tokenId) internal virtual { if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector); uint256 prevOwnershipPacked = _packedOwnerships[tokenId]; if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector); _beforeTokenTransfers(address(0), to, tokenId, 1); // Overflows are incredibly unrealistic. // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1. // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `true` (as `quantity == 1`). _packedOwnerships[tokenId] = _packOwnershipData( to, _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked) ); // Updates: // - `balance += 1`. // - `numberMinted += 1`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1; // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } ++_spotMinted; } _afterTokenTransfers(address(0), to, tokenId, 1); } /** * @dev Safely mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * See {_mintSpot}. * * Emits a {Transfer} event. */ function _safeMintSpot( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mintSpot(to, tokenId); unchecked { if (to.code.length != 0) { uint256 currentSpotMinted = _spotMinted; if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } // This prevents reentrancy to `_safeMintSpot`. // It does not prevent reentrancy to `_safeMint`. if (_spotMinted != currentSpotMinted) revert(); } } } /** * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`. */ function _safeMintSpot(address to, uint256 tokenId) internal virtual { _safeMintSpot(to, tokenId, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as `_burnCounter` cannot be exceed `_currentIndex + _spotMinted` times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); /** * `_sequentialUpTo()` must be greater than `_startTokenId()`. */ error SequentialUpToTooSmall(); /** * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`. */ error SequentialMintExceedsLimit(); /** * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`. */ error SpotMintTokenIdTooSmall(); /** * Cannot mint over a token that already exists. */ error TokenAlreadyExists(); /** * The feature is not compatible with spot mints. */ error NotCompatibleWithSpotMints(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"_dogBarkAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"DogHouse","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"maxMintAmounts","type":"uint256[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"buildSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"changelistController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dogBarkAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getWhitelistInfo","outputs":[{"components":[{"internalType":"bool","name":"isWhitelisted","type":"bool"},{"internalType":"uint256","name":"maxMintAmount","type":"uint256"},{"internalType":"bool","name":"hasMinted","type":"bool"}],"internalType":"struct PeeWeeDogs.WhitelistInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTrans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setListController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTraits","outputs":[{"internalType":"uint256","name":"fur","type":"uint256"},{"internalType":"uint256","name":"eyes","type":"uint256"},{"internalType":"uint256","name":"head","type":"uint256"},{"internalType":"uint256","name":"mouth","type":"uint256"},{"internalType":"uint256","name":"mark","type":"uint256"},{"internalType":"uint256","name":"board","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistInfo","outputs":[{"internalType":"bool","name":"isWhitelisted","type":"bool"},{"internalType":"uint256","name":"maxMintAmount","type":"uint256"},{"internalType":"bool","name":"hasMinted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000e39927fdf895b881445d0b4adca093d6826da12a79a17370fde2bb90cf300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000eff2133e90fd72be73741dce07bd0efcdb126419
Deployed Bytecode
0x00040000000000020011000000000002000000600310027000000c0f043001970003000000410355000200000001035500000c0f0030019d0000008003000039000000400030043f0000000100200190000000380000c13d000000040040008c0000005b0000413d000000000201043b000000e00220027000000d520020009c0000005d0000a13d00000d530020009c000000930000a13d00000d540020009c000001120000a13d00000d550020009c0000015b0000213d00000d590020009c000003d90000613d00000d5a0020009c000003420000613d00000d5b0020009c0000005b0000c13d000000440040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000402100370000000000202043b00000c120020009c0000005b0000213d0000002401100370000000000101043b000e00000001001d00000c120010009c0000005b0000213d000000000020043f0000000701000039000000200010043f00000040020000390000000001000019303730010000040f0000000e02000029303720220000040f000000000101041a000000ff001001900000000001000039000000010100c039000004220000013d0000000002000416000000000002004b0000005b0000c13d0000001f0240003900000c10022001970000008002200039000000400020043f0000001f0540018f00000c11064001980000008002600039000000480000613d000000000701034f000000007807043c0000000003830436000000000023004b000000440000c13d000000000005004b000000550000613d000000000161034f0000000303500210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000200040008c0000005b0000413d000000800100043d001100000001001d00000c120010009c000000780000a13d0000000001000019000030390001043000000d6f0020009c000000b10000213d00000d7d0020009c0000011f0000213d00000d840020009c000002570000a13d00000d850020009c000005030000613d00000d860020009c000004290000613d00000d870020009c0000005b0000c13d000000440040008c0000005b0000413d0000000402100370000000000202043b000d00000002001d00000c120020009c0000005b0000213d0000002401100370000000000101043b000000000001004b0000060c0000c13d00000e0701000041000000000010043f00000da9010000410000303900010430000000400300043d00000c130030009c0000008d0000213d0000004001300039000000400010043f0000000c01000039000000000513043600000c14010000410000000000150435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f0000000502000039000000000221043600000c15040000410000000000420435000000000403043300000c160040009c000002a30000a13d00000db301000041000000000010043f0000004101000039000000040010043f00000db401000041000030390001043000000d620020009c000001000000213d00000d690020009c000001da0000a13d00000d6a0020009c000003c40000613d00000d6b0020009c0000031e0000613d00000d6c0020009c0000005b0000c13d000000240040008c0000005b0000413d0000002402000039000000000202041a0000000401100370000000000401043b0000002601000039000000000101041a000000ff00100190000005530000c13d00000d8a01000041000000800010043f0000002001000039000000840010043f0000001201000039000000a40010043f00000df601000041000000c40010043f00000d8c01000041000030390001043000000d700020009c0000013a0000213d00000d770020009c0000026b0000a13d00000d780020009c000005220000613d00000d790020009c0000028a0000613d00000d7a0020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000402100370000000000202043b00000c160020009c0000005b0000213d0000002303200039000000000043004b0000005b0000813d0000000403200039000000000131034f000000000101043b000d00000001001d00000c160010009c0000005b0000213d000c00240020003d0000000d0100002900000005011002100000000c01100029000000000041004b0000005b0000213d0000002b01000039000000000101041a00000c12011001970000000002000411000000000012004b0000085a0000c13d0000001e01000039000000000201041a000000020020008c000004040000613d0000000202000039000000000021041b0000000d0000006b000009060000613d0000000002000019000e00000002001d00000005012002100000000c011000290000000201100367000000000101043b00000c120010009c0000005b0000213d000000000010043f0000002a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000201100039000000000001041b0000000e0200002900000001022000390000000d0020006c000000e20000413d000009060000013d00000d630020009c000001fb0000a13d00000d640020009c000003c90000613d00000d650020009c0000033d0000613d00000d660020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b000000000010043f0000000b01000039000002660000013d00000d5c0020009c000002340000a13d00000d5d0020009c000004640000613d00000d5e0020009c000003ce0000613d00000d5f0020009c0000005b0000c13d0000000001000416000000000001004b0000005b0000c13d00000023010000390000053b0000013d00000d7e0020009c0000027d0000a13d00000d7f0020009c000005320000613d00000d800020009c0000044c0000613d00000d810020009c0000005b0000c13d000000240040008c0000005b0000413d0000000001000416000000000001004b0000005b0000c13d0000000901000039000000000101041a00000c12011001970000000002000411000000000021004b00000000010000390000000101006039303721960000040f00000004010000390000000201100367000000000101043b3037265b0000040f0000000001000019000030380001042e00000d710020009c000002860000a13d00000d720020009c000005370000613d00000d730020009c000004550000613d00000d740020009c0000005b0000c13d0000000001000416000000000001004b0000005b0000c13d0000000901000039000000000201041a00000c12032001970000000005000411000000000053004b0000053f0000c13d00000c1d02200197000000000021041b000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000030300003900000c1f0400004100000000060000193037302d0000040f00000001002001900000005b0000613d0000000001000019000030380001042e00000d560020009c000003de0000613d00000d570020009c000003620000613d00000d580020009c0000005b0000c13d000000440040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000402100370000000000202043b00000c160020009c0000005b0000213d0000002303200039000000000043004b0000005b0000813d0000000403200039000000000331034f000000000303043b000a00000003001d00000c160030009c0000005b0000213d000900240020003d0000000a0200002900000005022002100000000902200029000000000042004b0000005b0000213d0000002402100370000000000202043b00000c160020009c0000005b0000213d0000002303200039000000000043004b0000005b0000813d0000000403200039000000000131034f000000000101043b00000c160010009c0000005b0000213d000800240020003d00000005021002100000000802200029000000000042004b0000005b0000213d0000002b02000039000000000202041a00000c12022001970000000003000411000000000023004b0000085a0000c13d0000001e02000039000000000302041a000000020030008c000004040000613d0000000203000039000000000032041b0000000a0010006b0000099e0000c13d0000000a0000006b000009060000613d0000000002000019000000400500043d00000c790050009c0000008d0000213d000e00000002001d000000050120021000000008021000290000000202200367000000000202043b0000006004500039000000400040043f000000050020008c00000005020080390000002004500039000b00000004001d00000000002404350000000102000039000000000025043500000009011000290000000201100367000d00000005001d0000004002500039000c00000002001d0000000000020435000000000101043b00000c120010009c0000005b0000213d000000000010043f0000002a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000201041a00000e0e022001970000000d030000290000000003030433000000000003004b000000010220c1bf000000000021041b0000000b0200002900000000020204330000000103100039000000000023041b0000000201100039000000000201041a00000e0e022001970000000c030000290000000003030433000000000003004b000000010220c1bf000000000021041b0000000e0200002900000001022000390000000a0020006c0000019b0000413d000009060000013d00000d6d0020009c000002c80000613d00000d6e0020009c0000005b0000c13d000000240040008c0000005b0000413d0000000401100370000000000101043b000e00000001001d0000000001000411000000000010043f0000002a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b000000000102041a000000ff00100190000005df0000c13d000000400100043d000000440210003900000dfd03000041000000000032043500000024021000390000000f030000390000093a0000013d00000d670020009c000002db0000613d00000d680020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b00000c120010009c0000005b0000213d000000e002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000000010043f0000002a01000039000000200010043f00000040020000390000000001000019303730010000040f000e00000001001d000000e0010000393037206b0000040f0000000e03000029000000000103041a000000ff001001900000000001000039000000010100c039000000e00010043f0000000102300039000000000202041a000001000020043f0000000202300039000000000202041a000000ff002001900000000002000039000000010200c039000001200020043f000000400200043d0000000001120436000001000300043d0000000000310435000001200100043d000000000001004b0000000001000039000000010100c0390000004003200039000000000013043500000c0f0020009c00000c0f02008041000000400120021000000df1011001c7000030380001042e00000d600020009c0000037f0000613d00000d610020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b00000c120010009c0000005b0000213d000000000010043f0000002a01000039000000200010043f00000040020000390000000001000019303730010000040f0000000202100039000000000202041a0000000103100039000000000303041a000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000000a00030043f000000ff002001900000000001000039000000010100c039000000c00010043f00000df001000041000030380001042e00000d880020009c000003e30000613d00000d890020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b00000c120010009c0000005b0000213d000000000010043f0000002901000039000000200010043f00000040020000390000000001000019303730010000040f0000053b0000013d00000d7b0020009c000003f70000613d00000d7c0020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b303721b70000040f0000002002000039000000400300043d000e00000003001d0000000002230436303720320000040f000005750000013d00000d820020009c0000040e0000613d00000d830020009c0000005b0000c13d0000000001040019303720590000040f303720930000040f0000000001000019000030380001042e00000d750020009c000004190000613d00000d760020009c0000005b0000c13d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b000e00000001001d00000c120010009c0000005b0000213d0000000901000039000000000101041a00000c12011001970000000002000411000000000021004b00000000010000390000000101006039303721960000040f0000002b01000039000000000201041a00000c1d022001970000000e022001af000000000021041b0000000001000019000030380001042e0000000206000039000000000606041a000000010760019000000001066002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000087004b000005be0000c13d000000200060008c000002bf0000413d0000000207000039000000000070043f0000001f07400039000000050770027000000c170770009a000000200040008c00000c18070040410000001f06600039000000050660027000000c170660009a000000000067004b000002bf0000813d000000000007041b0000000107700039000000000067004b000002bb0000413d0000001f0040008c000005480000a13d0000000205000039000000000050043f00000e0f07400198000005960000c13d000000200600003900000c1805000041000005a20000013d0000000001000416000000000001004b0000005b0000c13d0000000901000039000000000101041a00000c12011001970000000002000411000000000021004b00000000010000390000000101006039303721960000040f0000002601000039000000000201041a00000e0e03200197000000ff0020019000000001033061bf000000000031041b0000000001000019000030380001042e000000440040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000402100370000000000202043b000e00000002001d00000c120020009c0000005b0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b0000005b0000c13d0000000001000411000000000010043f0000000701000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000020043f000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000201041a00000e0e022001970000000d03000029000000000232019f000000000021041b000000400100043d000000000031043500000c0f0010009c00000c0f010080410000004001100210000000000200041400000c0f0020009c00000c0f02008041000000c002200210000000000112019f00000c5d011001c70000800d02000039000000030300003900000df20400004100000000050004110000000e06000029000001560000013d0000000001000416000000000001004b0000005b0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000000800010043f000000000004004b000005690000613d000000000030043f000000000001004b00000000020000190000056e0000613d00000c1b030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003350000413d0000056e0000013d0000000001000416000000000001004b0000005b0000c13d00000028010000390000053b0000013d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b000000000010043f0000000a01000039000000200010043f00000040020000390000000001000019303730010000040f0000000502100039000000000202041a0000000403100039000000000303041a0000000304100039000000000404041a0000000205100039000000000505041a0000000106100039000000000606041a000000000101041a000000800010043f000000a00060043f000000c00050043f000000e00040043f000001000030043f000001200020043f00000d9301000041000030380001042e000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000601043b00000c120060009c0000005b0000213d0000000901000039000000000201041a00000c12032001970000000005000411000000000053004b0000053f0000c13d000000000006004b000006a90000c13d00000d8a01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f00000d8e01000041000000c40010043f00000d8f01000041000000e40010043f00000d90010000410000303900010430000000840040008c0000005b0000413d0000000402100370000000000502043b00000c120050009c0000005b0000213d0000002402100370000000000202043b00000c120020009c0000005b0000213d0000006403100370000000000603043b00000c160060009c0000005b0000213d0000002303600039000000000043004b0000005b0000813d0000000407600039000000000371034f000000000303043b00000c160030009c0000008d0000213d0000001f0930003900000e0f099001970000003f0990003900000e0f0990019700000d190090009c0000008d0000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b0000005b0000213d0000002004700039000000000641034f00000e0f073001980000001f0830018f000000a004700039000003ae0000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000003aa0000c13d000000000008004b000003bb0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b00000080040000390000000001050019303724530000040f0000000001000019000030380001042e0000000001000416000000000001004b0000005b0000c13d0000000901000039000004500000013d0000000001000416000000000001004b0000005b0000c13d0000002201000039000004500000013d0000000001000416000000000001004b0000005b0000c13d0000002601000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000d9101000041000030380001042e0000000001000416000000000001004b0000005b0000c13d0000001f01000039000004500000013d0000000001000416000000000001004b0000005b0000c13d00000027010000390000053b0000013d000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000201043b00000e09002001980000005b0000c13d000000010100003900000e0a0220019700000e0b0020009c000004520000613d00000e0c0020009c000004520000613d00000e0d0020009c000000000100c019000000800010043f00000d9101000041000030380001042e0000000001000416000000000001004b0000005b0000c13d0000000901000039000000000101041a00000c12011001970000000002000411000000000021004b0000053f0000c13d0000001e01000039000000000201041a000000020020008c000005ea0000c13d00000d8a01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000e0401000041000000c40010043f00000d8c0100004100003039000104300000000001000416000000000001004b0000005b0000c13d0000000101000039000000000101041a00000e1001100167000000000200041a0000000001120019000000800010043f00000d9101000041000030380001042e000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b303726270000040f00000c1201100197000000400200043d000000000012043500000c0f0020009c00000c0f02008041000000400120021000000d92011001c7000030380001042e000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000201043b000000000002004b000006eb0000613d000000000100041a000000000021004b000006eb0000a13d000d00000002001d000e00000002001d000000000020043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a000000000001004b000006e00000c13d0000000e02000029000000000002004b000000010220008a000004360000c13d000005900000013d0000000001000416000000000001004b0000005b0000c13d0000002b01000039000000000101041a00000c1201100197000000800010043f00000d9101000041000030380001042e000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b00000c120010009c0000005b0000213d000000000001004b000006010000c13d00000dfe01000041000000000010043f00000da9010000410000303900010430000000240040008c0000005b0000413d0000000002000416000000000002004b0000005b0000c13d0000000401100370000000000101043b000e00000001001d303721b70000040f000000400300043d0000000002010433000000000002004b0000057f0000c13d00000cb70030009c0000008d0000213d0000002001300039000000400010043f0000000000030435000f00000003001d0000000e03000029000000000003004b000006700000c13d000000400100043d000d00000001001d00000c130010009c0000008d0000213d0000000d030000290000004001300039000000400010043f000000200130003900000d9d020000410000000000210435000000010100003900000000001304350000000e01000029000000000010043f0000000a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000400200043d00000d9e0020009c0000008d0000213d000000000701043b000000c001200039000000400010043f000000000107041a00000000061204360000000103700039000000000303041a00000000003604350000000203700039000000000303041a000000400520003900000000003504350000000303700039000000000303041a000000600420003900000000003404350000000403700039000000000803041a00000080032000390000000000830435000000a0022000390000000507700039000000000707041a00000000007204350000000d07000039000000000807041a000000000018004b000016050000a13d000000000070043f00000000080604330000001006000039000000000706041a000c00000008001d000000000087004b000016050000a13d000000000060043f00000000070504330000001305000039000000000605041a000b00000007001d000000000076004b000016050000a13d000000000050043f00000000060404330000001604000039000000000504041a000a00000006001d000000000065004b000016050000a13d000000000040043f00000000050304330000001903000039000000000403041a000900000005001d000000000054004b000016050000a13d000000000030043f00000000040204330000001c02000039000000000302041a000800000004001d000000000043004b000016050000a13d00000c680110009a000000000020043f000000400200043d000700000002001d000000200220003900000d9f030000410000000000320435000000000201041a000000010320019000000001042002700000007f0440618f000600000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005be0000c13d00000007040000290005003e0040003d000000000003004b00000a260000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000605000029000000000005004b000000050600002900000a2a0000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b000004fb0000413d00000a2a0000013d0000000001000416000000000001004b0000005b0000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000000800010043f000000000004004b000005690000613d000000000030043f000000000001004b00000000020000190000056e0000613d00000c18030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000051a0000413d0000056e0000013d0000000001040019303720590000040f000e00000001001d000d00000002001d000c00000003001d000000400100043d000b00000001001d303720760000040f0000000b0400002900000000000404350000000e010000290000000d020000290000000c03000029303724530000040f0000000001000019000030380001042e0000000001000416000000000001004b0000005b0000c13d00000025010000390000053b0000013d0000000001000416000000000001004b0000005b0000c13d0000002401000039000000000101041a000000800010043f00000d9101000041000030380001042e00000d8a01000041000000800010043f0000002001000039000000840010043f000000a40010043f00000e0001000041000000c40010043f00000d8c010000410000303900010430000000000004004b0000000003000019000005ae0000613d000000030340021000000e100330027f00000e10033001670000000005050433000000000335016f0000000104400210000000000343019f000005ae0000013d00000000014200a9000000000004004b000005590000613d00000000034100d9000000000023004b000005900000c13d0000000002000416000000000012004b0000065c0000c13d0000002701000039000000000101041a000000000014004b000006c00000a13d00000d8a01000041000000800010043f0000002001000039000000840010043f000000a40010043f00000df501000041000000c40010043f00000d8c01000041000030390001043000000e0e02200197000000a00020043f000000000001004b0000002002000039000000000200603900000020022000390000008001000039303720810000040f000000400100043d000e00000001001d0000008002000039303720440000040f0000000e02000029000000000121004900000c0f0010009c00000c0f01008041000000600110021000000c0f0020009c00000c0f020080410000004002200210000000000121019f000030380001042e00000c790030009c0000008d0000213d0000006002300039000000400020043f000000400230003900000d94040000410000000000420435000000200230003900000d9504000041000000000042043500000040020000390000000000230435000000000201043300000d960020009c000005900000213d00000d970020009c0000087c0000a13d00000db301000041000000000010043f0000001101000039000000040010043f00000db401000041000030390001043000000c18050000410000002006000039000000010870008a000000050880027000000c190880009a00000000093600190000000009090433000000000095041b00000020066000390000000105500039000000000085004b0000059b0000c13d000000000047004b000005ac0000813d0000000307400210000000f80770018f00000e100770027f00000e100770016700000000033600190000000003030433000000000373016f000000000035041b000000010340021000000001033001bf0000000204000039000000000034041b000000000301043300000c160030009c0000008d0000213d0000000304000039000000000504041a000000010050019000000001045002700000007f0440618f0000001f0040008c00000000060000390000000106002039000000000565013f0000000100500190000005c40000613d00000db301000041000000000010043f0000002201000039000000040010043f00000db4010000410000303900010430000000200040008c000005d60000413d0000000305000039000000000050043f0000001f05300039000000050550027000000c1a0550009a000000200030008c00000c1b050040410000001f04400039000000050440027000000c1a0440009a000000000045004b000005d60000813d000000000005041b0000000105500039000000000045004b000005d20000413d000000200030008c000006650000413d0000000302000039000000000020043f00000e0f05300198000006ef0000c13d000000200400003900000c1b02000041000006fb0000013d0000000101200039000000000301041a0000000e0030006b000006b50000a13d000000400100043d000000440210003900000dfc03000041000000000032043500000024021000390000001d030000390000093a0000013d0000000202000039000000000021041b00000e0101000041000000000010044300000000010004100000000400100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000e02011001c70000800a02000039303730320000040f000000010020019000001ffb0000613d000000000301043b00000000010004140000000004000411000000040040008c000008750000c13d00000001020000390000000101000031000009020000013d000000000010043f0000000501000039000000200010043f00000040020000390000000001000019303730010000040f000000000101041a00000c1601100197000000800010043f00000d9101000041000030380001042e000c00000001001d000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a000000000001004b000006340000c13d000000000100041a0000000c02000029000000000021004b000000740000a13d000000010220008a000e00000002001d000000000020043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a000000000001004b0000000e02000029000006210000613d00000da700100198000000740000c13d000e0c120010019b00000000020004110000000e0020006c0000094d0000c13d0000000c01000029000000000010043f0000000601000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000d0200002900000c1206200197000000000101043b000000000201041a00000c1d02200197000000000262019f000000000021041b000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000040300003900000e06040000410000000e050000290000000c070000293037302d0000040f00000001002001900000005b0000613d000001590000013d00000d8a01000041000000800010043f0000002001000039000000840010043f000000a40010043f00000df301000041000000c40010043f00000d8c010000410000303900010430000000000003004b0000000001000019000007070000613d000000030130021000000e100110027f00000e10011001670000000002020433000000000112016f0000000102300210000000000121019f000007070000013d00000000010000190000000002010019000000010110003a000005900000613d000000090030008c0000000a0330011a000006710000213d00000d9c0020009c0000008d0000213d00000e0f042001970000005f0240003900000e0f02200197000000400500043d0000000002250019000d00000005001d000000000052004b0000000005000039000000010500403900000c160020009c0000008d0000213d00000001005001900000008d0000c13d000000400020043f0000000d020000290000000002120436000000200540003900000e0f045001980000001f0350018f000006950000613d0000000004420019000000000500003100000002055003670000000006020019000000005705043c0000000006760436000000000046004b000006910000c13d000000000003004b0000000e030000290000000d07000029000000000001004b000005900000613d000000010110008a0000000004070433000000000014004b000016050000a13d0000000004210019000000090030008c0000000a5330011a000000f805500210000000000604043300000d9906600197000000000565019f00000d9d055001c70000000000540435000006980000213d000004860000013d00000c1d02200197000000000262019f000000000021041b000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000030300003900000c1f04000041000001560000013d0000002601000039000000000101041a000000ff00100190000008640000c13d000000400100043d000000440210003900000df6030000410000000000320435000000240210003900000012030000390000093a0000013d000e00000004001d000000000100041100000c1201100197000000000010043f0000002901000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a0000000e02000029000000000021001a000005900000413d000d00000021001d0000002801000039000000000101041a0000000d0010006b000009450000a13d000000400100043d000000440210003900000df403000041000000000032043500000024021000390000001b030000390000093a0000013d00000da7001001980000000d01000029000006eb0000c13d000000000010043f0000000601000039000000200010043f00000040020000390000000001000019303730010000040f000000000101041a000004210000013d00000e0801000041000000000010043f00000da901000041000030390001043000000c1b020000410000002004000039000000010650008a000000050660027000000c1c0660009a00000000071400190000000007070433000000000072041b00000020044000390000000102200039000000000062004b000006f40000c13d000000000035004b000007050000813d0000000305300210000000f80550018f00000e100550027f00000e100550016700000000011400190000000001010433000000000151016f000000000012041b000000010130021000000001011001bf0000000303000039000000000013041b0000000101000039000000000010041b000000000100041100000c12061001970000000904000039000000000104041a00000c1d02100197000000000262019f000000000024041b000000000200041400000c120510019700000c0f0020009c00000c0f02008041000000c00120021000000c1e011001c70000800d0200003900000c1f04000041000700000006001d3037302d0000040f00000001002001900000005b0000613d000000400100043d000e00000001001d00000c200010009c0000008d0000213d0000000e010000290000010002100039000000400020043f00000c210010009c0000008d0000213d0000000e050000290000020001500039000000400010043f000000dc010000390000000000120435000001e00350003900000c22040000410000000000430435000001c00350003900000c23040000410000000000430435000001a00350003900000c24040000410000000000430435000001800350003900000c25040000410000000000430435000001600350003900000c26040000410000000000430435000001400350003900000c27040000410000000000430435000001200350003900000c280400004100000000004304350000000002250436000000400300043d00000c200030009c0000008d0000213d0000010004300039000000400040043f000000e00430003900000c29050000410000000000540435000000c00430003900000c2a050000410000000000540435000000a00430003900000c2b050000410000000000540435000000800430003900000c2c050000410000000000540435000000600430003900000c2d050000410000000000540435000000400430003900000c2e050000410000000000540435000000200430003900000c2f05000041000000000054043500000000001304350000000000320435000000400200043d00000c200020009c0000008d0000213d0000010003200039000000400030043f000000e00320003900000c30040000410000000000430435000000c00320003900000c31040000410000000000430435000000a00320003900000c32040000410000000000430435000000800320003900000c33040000410000000000430435000000600320003900000c34040000410000000000430435000000400320003900000c35040000410000000000430435000000200320003900000c3604000041000000000043043500000000001204350000000e0300002900000040033000390000000000230435000000400200043d00000c200020009c0000008d0000213d0000010003200039000000400030043f000000e00320003900000c37040000410000000000430435000000c00320003900000c38040000410000000000430435000000a00320003900000c39040000410000000000430435000000800320003900000c3a040000410000000000430435000000600320003900000c3b040000410000000000430435000000400320003900000c3c040000410000000000430435000000200320003900000c3d04000041000000000043043500000000001204350000000e0300002900000060033000390000000000230435000000400200043d00000c200020009c0000008d0000213d0000010003200039000000400030043f000000e00320003900000c3e040000410000000000430435000000c00320003900000c3f040000410000000000430435000000a00320003900000c40040000410000000000430435000000800320003900000c41040000410000000000430435000000600320003900000c42040000410000000000430435000000400320003900000c43040000410000000000430435000000200320003900000c4404000041000000000043043500000000001204350000000e0300002900000080033000390000000000230435000000400200043d00000c200020009c0000008d0000213d0000010003200039000000400030043f000000e00320003900000c45040000410000000000430435000000c00320003900000c46040000410000000000430435000000a00320003900000c47040000410000000000430435000000800320003900000c48040000410000000000430435000000600320003900000c49040000410000000000430435000000400320003900000c4a040000410000000000430435000000200320003900000c4b040000410000000000430435000000d20300003900000000003204350000000e03000029000000a0033000390000000000230435000000400200043d00000c200020009c0000008d0000213d0000010003200039000000400030043f000000e00320003900000c4c040000410000000000430435000000c00320003900000c4d040000410000000000430435000000a00320003900000c4e040000410000000000430435000000800320003900000c4f040000410000000000430435000000600320003900000c50040000410000000000430435000000400320003900000c51040000410000000000430435000000200320003900000c5204000041000000000043043500000000001204350000000e03000029000000c0033000390000000000230435000000400200043d00000c200020009c0000008d0000213d0000010003200039000000400030043f000000e00320003900000c53040000410000000000430435000000c00320003900000c54040000410000000000430435000000a00320003900000c55040000410000000000430435000000800320003900000c56040000410000000000430435000000600320003900000c57040000410000000000430435000000400320003900000c58040000410000000000430435000000200320003900000c5904000041000000000043043500000000001204350000000e01000029000000e00110003900000000002104350000000c03000039000000000103041a0000000802000039000000000023041b000000090010008c000009a80000413d00000c5a0310009a00000c5b0030009c000009a80000413d00000c5c04000041000b00000003001d000008230000013d000000000001041b0000000104400039000000000034004b000009a80000813d000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d000000000005004b000008200000613d0000001f0050008c00000000010400190000081f0000a13d000c00000005001d000d00000004001d000000000040043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b0000084a0000813d000000000002041b0000000102200039000000000012004b000008460000413d0000000d01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000d04000029000000000004041b0000000b030000290000081f0000013d00000d8a01000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f00000dff01000041000000c40010043f00000d8c010000410000303900010430000d00000003001d000c00000002001d0000002701000039000000000101041a0000000e0010006b000008d50000a13d000000400100043d000000440210003900000df503000041000000000032043500000d8a02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000093f0000013d00000c0f0010009c00000c0f01008041000000c001100210000000000003004b000008fa0000c13d0000000002040019000008fd0000013d00000d980020009c0000008d0000213d0000000202200039000000030220011a00000002052002100000003f0250003900000e0f062001970000003f0260003900000e0f04200197000000400200043d0000000004420019000000000024004b0000000007000039000000010700403900000c160040009c0000008d0000213d00000001007001900000008d0000c13d000000400040043f0000002004200039000000000006004b0000089a0000613d0000000006640019000000000700003100000002077003670000000008040019000000007907043c0000000008980436000000000068004b000008960000c13d000000000052043500000000060104330000000005160019000000000015004b000008cd0000a13d000000010330003900000000060100190000000306600039000000000706043300000012087002700000003f0880018f00000000083800190000000008080433000000f808800210000000000904043300000d9909900197000000000889019f00000000008404350000000c087002700000003f0880018f00000000083800190000000008080433000000f8088002100000000109400039000000000a09043300000d990aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000083800190000000008080433000000f8088002100000000209400039000000000a09043300000d990aa0019700000000088a019f00000000008904350000003f0770018f00000000073700190000000007070433000000f8077002100000000308400039000000000908043300000d9909900197000000000779019f00000000007804350000000404400039000000000056004b000008a10000413d0000000006010433000000031060011a000000020010008c000009850000613d000000010010008c000009880000c13d00000d9b01000041000000020340008a000009870000013d000000000100041100000c1201100197000000000010043f0000002901000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a0000000e0010002a000005900000413d0000002802000039000000000202041a0000000d0020002a000005900000413d0000000e031000290000000d01200029000d00000003001d000000000013004b000009700000a13d000000400100043d000000640210003900000dfa030000410000000000320435000000440210003900000dfb03000041000000000032043500000024021000390000003a03000039000009930000013d00000c1e011001c7000080090200003900000000050000193037302d0000040f0003000000010355000000600110027000010c0f0010019d00000c0f01100197000000000001004b0000090b0000c13d0000000100200190000009340000613d00000001010000390000001e02000039000000000012041b0000000001000019000030380001042e00000c160010009c0000008d0000213d0000001f0410003900000e0f044001970000003f0440003900000e0f05400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000c160050009c0000008d0000213d00000001006001900000008d0000c13d000000400050043f000000000614043600000e0f031001980000001f0410018f00000000013600190000000305000367000009260000613d000000000705034f000000007807043c0000000006860436000000000016004b000009220000c13d000000000004004b000009040000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000009040000013d000000400100043d000000440210003900000e0303000041000000000032043500000024021000390000001003000039000000000032043500000d8a02000041000000000021043500000004021000390000002003000039000000000032043500000c0f0010009c00000c0f01008041000000400110021000000def011001c700003039000104300000000001000411303720110000040f0000000d02000029000000000021041b0000000e010000293037265b0000040f0000000001000019000030380001042e0000000e01000029000000000010043f0000000701000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000200041100000c1202200197000000000020043f000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a000000ff001001900000063a0000c13d00000e0501000041000000000010043f00000da90100004100003039000104300000002501000039000000000201041a0000000e012000b90000000e0000006b000009780000613d0000000e031000fa000000000023004b000005900000c13d0000000002000416000000000012004b0000098a0000c13d0000000001000411303720110000040f0000000d02000029000000000021041b0000000c010000290000000201100039000000000201041a00000e0e0220019700000001022001bf000009480000013d00000d9a01000041000000010340008a00000000001304350000000003020019000004760000013d000000400100043d000000640210003900000df7030000410000000000320435000000440210003900000df803000041000000000032043500000024021000390000002b03000039000000000032043500000d8a02000041000000000021043500000004021000390000002003000039000000000032043500000c0f0010009c00000c0f01008041000000400110021000000df9011001c7000030390001043000000d8a01000041000000800010043f0000002001000039000000840010043f0000001d01000039000000a40010043f00000d8b01000041000000c40010043f00000d8c0100004100003039000104300000000c01000039000000000010043f00000c5e060000410000000004000019000009b50000013d000000010170021000000001011001bf0000000c04000029000000000016041b000000070040008c0000000104400039000000010660003900000a580000813d0000000e010000290000000013010434000e00000001001d000000007503043400000c160050009c0000008d0000213d000000000106041a000000010010019000000001081002700000007f0880618f0000001f0080008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d000000200080008c000d00000006001d000c00000004001d000b00000005001d000a00000003001d000009eb0000413d000800000008001d000900000007001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000d060000290000000c040000290000000907000029000009eb0000813d000000000002041b0000000102200039000000000012004b000009e70000413d0000001f0050008c00000a0c0000a13d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b0700002900000e0f02700198000000000101043b00000a180000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000d060000290000000a0800002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000a020000c13d000000000072004b000009ad0000813d00000a1d0000013d000000000005004b00000a100000613d000000000107043300000a110000013d0000000001000019000000030250021000000e100220027f00000e1002200167000000000121016f0000000102500210000000000121019f000009b00000013d00000020030000390000000d060000290000000a08000029000000000072004b000009ad0000813d0000000302700210000000f80220018f00000e100220027f00000e100220016700000000038300190000000003030433000000000223016f000000000021041b000009ad0000013d00000e0e012001970000000506000029000000000016043500000006050000290000000c0100002900000c910110009a000000000365001900000da0020000410000000000230435000000030230003900000da1040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f000c00000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000600220030003d000000000004004b00000b0d0000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c05000029000000000005004b000000060600002900000b110000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000a500000413d00000b110000013d000000400100043d000c00000001001d00000c200010009c0000008d0000213d0000000c020000290000010001200039000000400010043f00000c5f0020009c0000008d0000213d0000000c030000290000014002300039000000400020043f000000060200003900000000002104350000000001130436000001200230003900000c60030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000c61040000410000000000430435000000040300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c62030000410000000000320435000000090200003900000000002104350000000c0200002900000040022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c630300004100000000003204350000000b0200003900000000002104350000000c0200002900000060022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c64030000410000000000320435000000050200003900000000002104350000000c0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c65030000410000000000320435000000040200003900000000002104350000000c02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c66030000410000000000320435000000050200003900000000002104350000000c02000029000000c0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c67030000410000000000320435000000060200003900000000002104350000000c02000029000000e00220003900000000001204350000000d02000039000000000102041a0000000803000039000000000032041b000000090010008c00000c070000413d00000c680110009a000b00000001001d00000c690010009c00000c070000413d000e0c6a0000004500000ad50000013d000000000001041b0000000e020000290000000102200039000e00000002001d0000000b0020006c00000c070000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000d0000006b00000ad00000613d0000000d010000290000001f0010008c0000000e0100002900000acf0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000afe0000813d000000000002041b0000000102200039000000000012004b00000afa0000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b00000acf0000013d00000e0e01200197000000060600002900000000001604350000000c050000290000000b0100002900000cce0110009a000000000365001900000da0020000410000000000230435000000030230003900000da2040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f000c00000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000b00220030003d000000000004004b00000b3f0000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c05000029000000000005004b0000000b0600002900000b430000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000b370000413d00000b430000013d00000e0e012001970000000b0600002900000000001604350000000c050000290000000a0100002900000ce80110009a000000000365001900000da0020000410000000000230435000000030230003900000da3040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f000c00000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000b00230030003d000000000004004b00000b710000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c05000029000000000005004b0000000b0600002900000b750000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000b690000413d00000b750000013d00000e0e012001970000000b0600002900000000001604350000000c05000029000000090100002900000d070110009a000000000365001900000da0020000410000000000230435000000030230003900000da4040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f000c00000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000b00220030003d000000000004004b00000ba30000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c05000029000000000005004b0000000b0600002900000ba70000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000b9b0000413d00000ba70000013d00000e0e012001970000000b0600002900000000001604350000000c05000029000000080100002900000d450110009a000000000365001900000da0020000410000000000230435000000030230003900000da5040000410000000000420435000000000201041a000000010420019000000001052002700000007f0550618f000c00000005001d0000001f0050008c00000000050000390000000105002039000000000552013f0000000100500190000005be0000c13d000b00230030003d000000000004004b00000bd50000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c05000029000000000005004b0000000b0600002900000bd90000613d000000000101043b00000000020000190000000003620019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000bcd0000413d00000bd90000013d00000e0e012001970000000b0600002900000000001604350000000c05000029000000000165001900000da6020000410000000000210435000000070300002900000000013100490000001e0210008a0000000000230435000000210110003900000e0f021001970000000001320019000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f0000000e0000006b00000dd10000613d000000000200041a0000000e0020006c00000dd10000a13d0000000e01000029000c00000001001d000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b000000000101041a000000000001004b00000c830000c13d0000000c01000029000000000001004b000000010110008a00000bf10000c13d000005900000013d0000000d01000039000000000010043f000d0c6b00000045000b00000000001d00000c150000013d000000010150021000000001011001bf0000000d02000029000000000012041b0000000b01000029000000070010008c000b00010010003d000d00010020003d00000cc10000813d0000000c010000290000000012010434000c00000001001d000a00000002001d0000000021020434000800000002001d000e00000001001d00000c160010009c0000008d0000213d0000000d01000029000000000101041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d000900000003001d000000200030008c00000c480000413d0000000d01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000e030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000c480000813d000000000002041b0000000102200039000000000012004b00000c440000413d0000000e010000290000001f0010008c00000c680000a13d0000000d01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000e02200180000000000101043b00000c760000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000a0600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000c600000c13d00000c770000013d0000000e0000006b00000c6d0000613d0000000801000029000000000101043300000c6e0000013d00000000010000190000000e04000029000000030240021000000e100220027f00000e1002200167000000000121016f0000000102400210000000000121019f00000c0e0000013d00000020030000390000000e05000029000000000052004b00000c0c0000813d0000000302500210000000f80220018f00000e100220027f00000e10022001670000000a033000290000000003030433000000000223016f000000000021041b00000c0c0000013d00000da70010019800000dd00000c13d0000000e01000029000000000010043f0000000a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000400200043d000c00000002001d00000d9e0020009c0000008d0000213d000000000101043b0000000c04000029000000c002400039000000400020043f000000000201041a00000000032404360000000102100039000000000202041a000b00000003001d00000000002304350000000202100039000000000202041a0000004003400039000500000003001d00000000002304350000000302100039000000000202041a0000006003400039000600000003001d00000000002304350000000402100039000000000202041a0000008003400039000800000003001d0000000000230435000000a0024000390000000501100039000000000101041a000900000002001d00000000001204350000002201000039000000000201041a00000da801000041000000400300043d000e00000003001d0000000000130435000000000100041400000c1202200197000000040020008c00000dd70000c13d0000000301000367000000010300003100000de70000013d000000400400043d00000c200040009c0000008d0000213d0000010001400039000000400010043f000000e00140003900000064020000390000000000210435000000c0024000390000005a030000390000000000320435000000a0034000390000005005000039000000000053043500000080054000390000004006000039000000000065043500000060064000390000003a0700003900000000007604350000004007400039000000300800003900000000008704350000000f0800003900000000088404360000001e0900003900000000009804350000000e0a00003900000000090a041a000000080b0000390000000000ba041b000000090090008c00000cea0000413d00000c6c0990009a00000c6d0090009c00000cea0000413d00000c6e0a00004100000000000a041b000000010aa0003900000000009a004b00000ce60000413d0000000e09000039000000000090043f0000000004040433000000ff0440018f00000c6f09000041000000000049041b0000000004080433000000ff0440018f00000c7008000041000000000048041b0000000004070433000000ff0440018f00000c7107000041000000000047041b0000000004060433000000ff0440018f00000c7206000041000000000046041b0000000004050433000000ff0440018f00000c7305000041000000000045041b0000000003030433000000ff0330018f00000c7404000041000000000034041b0000000002020433000000ff0220018f00000c7503000041000000000023041b0000000001010433000000ff0110018f00000c7602000041000000000012041b000000400100043d000a00000001001d00000c200010009c0000008d0000213d0000000a020000290000010001200039000000400010043f00000c5f0020009c0000008d0000213d0000000a030000290000014002300039000000400020043f0000000a0200003900000000002104350000000001130436000001200230003900000c77030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000c780400004100000000004304350000001e0300003900000000003204350000000000210435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000c7a030000410000000000320435000000200210003900000c7b0300004100000000003204350000002d0200003900000000002104350000000a0200002900000040022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000c7c030000410000000000320435000000200210003900000c7d0300004100000000003204350000002d0200003900000000002104350000000a0200002900000060022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000c7e030000410000000000320435000000200210003900000c7f0300004100000000003204350000002d0200003900000000002104350000000a0200002900000080022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000c80030000410000000000320435000000200210003900000c81030000410000000000320435000000280200003900000000002104350000000a02000029000000a0022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000c82030000410000000000320435000000200210003900000c830300004100000000003204350000002d0200003900000000002104350000000a02000029000000c0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c840300004100000000003204350000000a0200003900000000002104350000000a02000029000000e00220003900000000001204350000000f02000039000000000102041a0000000803000039000000000032041b000000090010008c00000ea30000413d00000c850110009a000c00000001001d00000c860010009c00000ea30000413d000e0c870000004500000d980000013d000000000001041b0000000e020000290000000102200039000e00000002001d0000000c0020006c00000ea30000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000d0000006b00000d930000613d0000000d010000290000001f0010008c0000000e0100002900000d920000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000dc10000813d000000000002041b0000000102200039000000000012004b00000dbd0000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b00000d920000013d000000400100043d000000440210003900000dee030000410000000000320435000000240210003900000014030000390000093a0000013d0000000e0300002900000c0f0030009c00000c0f03008041000000400330021000000c0f0010009c00000c0f01008041000000c001100210000000000131019f00000da9011001c7303730320000040f000000600310027000010c0f0030019d00000c0f033001970003000000010355000000010020019000000e850000613d00000e0f043001980000001f0530018f0000000e0240002900000df10000613d000000000601034f0000000e07000029000000006806043c0000000007870436000000000027004b00000ded0000c13d000000000005004b00000dfe0000613d000000000141034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000e0f011001970000000e02100029000000000012004b00000000010000390000000101004039000a00000002001d00000c160020009c0000008d0000213d00000001001001900000008d0000c13d0000000a01000029000000400010043f00000daa0030009c0000005b0000213d000000200030008c0000005b0000413d0000000e01000029000000000101043300000c160010009c0000005b0000213d0000000e033000290000000e011000290000001f02100039000000000032004b000000000400001900000dab0400804100000dab0220019700000dab05300197000000000652013f000000000052004b000000000200001900000dab0200404100000dab0060009c000000000204c019000000000002004b0000005b0000c13d000000002101043400000c160010009c0000008d0000213d0000001f0410003900000e0f044001970000003f0440003900000e0f044001970000000a0440002900000c160040009c0000008d0000213d000000400040043f0000000a040000290000000004140436000e00000004001d0000000004210019000000000034004b0000005b0000213d000000000001004b00000e3e0000613d00000000030000190000000e043000290000000005230019000000000505043300000000005404350000002003300039000000000013004b00000e370000413d0000000e011000290000000000010435000000400300043d000000510130003900000dac0200004100000000002104350000007f0130003900000dad020000410000000000210435000000200230003900000dae01000041000400000002001d0000000000120435000000310130003900000daf0200004100000000002104350000005f0130003900000db00200004100000000002104350000008c0130003900000db10200004100000000002104350000006d010000390000000000130435000300000003001d00000db20030009c0000008d0000213d0000000301000029000000a001100039000200000001001d000000400010043f0000000c0100002900000000010104330000000c02000039000000000302041a000000000013004b000016050000a13d000000000020043f00000c5a0210009a000000000102041a000000010310019000000001041002700000007f0440618f000c00000004001d0000001f0040008c00000000040000390000000104002039000000000441013f0000000100400190000005be0000c13d00000002040000290000000c050000290000000000540435000000000003004b00000fd50000613d000000000020043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000302000029000000c0022000390000000c0000006b00000fdd0000c13d000000000100001900000fe60000013d0000001f0530018f00000c1106300198000000400200043d000000000462001900000e900000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e8c0000c13d000000000005004b00000e9d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c0f0020009c00000c0f020080410000004002200210000000000112019f00003039000104300000000f01000039000000000010043f000c0c8800000045000900000000001d00000eb20000013d0000000d01000029000000010110021000000001011001bf0000000c02000029000000000012041b0000000901000029000000070010008c000900010010003d000c00010020003d00000f200000813d0000000a010000290000000012010434000a00000001001d000e00000002001d0000000021020434000800000002001d000d00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000b00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000b01000029000000200010008c00000ee60000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000ee60000813d000000000002041b0000000102200039000000000012004b00000ee20000413d0000000d010000290000001f0010008c00000f050000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000d02200180000000000101043b00000f0a0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000efd0000c13d00000f0b0000013d0000000d0000006b00000f170000613d0000000801000029000000000101043300000f180000013d00000020030000390000000d0020006c00000ea80000813d0000000d020000290000000302200210000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b00000ea80000013d00000000010000190000000d04000029000000030240021000000e100220027f00000e1002200167000000000121016f0000000102400210000000000121019f00000eab0000013d000000400100043d000a00000001001d00000c200010009c0000008d0000213d0000000a020000290000010001200039000000400010043f00000c5f0020009c0000008d0000213d0000000a030000290000014002300039000000400020043f000000050200003900000000002104350000000001130436000001200230003900000c89030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000c8a0400004100000000004304350000000a0300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c8b0300004100000000003204350000000a0200003900000000002104350000000a0200002900000040022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c8c0300004100000000003204350000000a0200003900000000002104350000000a0200002900000060022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c8d0300004100000000003204350000000a0200003900000000002104350000000a0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c8e030000410000000000320435000000090200003900000000002104350000000a02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c8f030000410000000000320435000000020200003900000000002104350000000a02000029000000c0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000c90030000410000000000320435000000050200003900000000002104350000000a02000029000000e00220003900000000001204350000001002000039000000000102041a0000000803000039000000000032041b000000090010008c000010270000413d00000c910110009a000c00000001001d00000c920010009c000010270000413d000e0c930000004500000fab0000013d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b0000000e020000290000000102200039000e00000002001d0000000c0020006c000010270000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000d0000006b00000fa60000613d0000000d010000290000001f0010008c0000000e0100002900000fa50000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000d010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000f970000813d000000000002041b0000000102200039000000000012004b00000fd00000413d00000f970000013d0000000302000029000000c00220003900000e0e0110019700000000001204350000000c0000006b0000002001000039000000000100603900000fe60000013d000000000301043b00000000010000190000000004210019000000000503041a0000000000540435000000010330003900000020011000390000000c0010006c00000fdf0000413d000000030220006a0000000001120019000000810110008a00000e0f021001970000000201200029000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f000000020100002930372c840000040f000200000001001d0000000b0100002900000000010104330000000f02000039000000000302041a000000000013004b000016050000a13d000000000020043f00000c850110009a000000000201041a000000010320019000000001042002700000007f0440618f000c00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005be0000c13d000000400400043d000100000004001d0000000c050000290000000004540436000b00000004001d000000000003004b000010a40000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c0000006b0000000002000019000010aa0000613d000000000101043b00000000020000190000000b03200029000000000401041a0000000000430435000000010110003900000020022000390000000c0020006c0000101f0000413d000010aa0000013d0000001001000039000000000010043f000c0c9400000045000900000000001d000010360000013d0000000d01000029000000010110021000000001011001bf0000000c02000029000000000012041b0000000901000029000000070010008c000900010010003d000c00010020003d000010e90000813d0000000a010000290000000012010434000a00000001001d000e00000002001d0000000021020434000800000002001d000d00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000b00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000b01000029000000200010008c0000106a0000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000d030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000106a0000813d000000000002041b0000000102200039000000000012004b000010660000413d0000000d010000290000001f0010008c000010890000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000d02200180000000000101043b0000108e0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000010810000c13d0000108f0000013d0000000d0000006b0000109b0000613d000000080100002900000000010104330000109c0000013d00000020030000390000000d0020006c0000102c0000813d0000000d020000290000000302200210000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000102c0000013d00000000010000190000000d04000029000000030240021000000e100220027f00000e1002200167000000000121016f0000000102400210000000000121019f0000102f0000013d00000e0e012001970000000b0200002900000000001204350000000c0000006b000000200200003900000000020060390000003f0120003900000e0f021001970000000101200029000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f000000010100002930372c840000040f000100000001001d000000050100002900000000010104330000001202000039000000000302041a000000000013004b000016050000a13d000000000020043f00000cbc0110009a000000000201041a000000010320019000000001042002700000007f0440618f000c00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005be0000c13d000000400400043d000500000004001d0000000c050000290000000004540436000b00000004001d000000000003004b000012560000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c0000006b00000000020000190000125c0000613d000000000101043b00000000020000190000000b03200029000000000401041a0000000000430435000000010110003900000020022000390000000c0020006c000010e10000413d0000125c0000013d000000400500043d00000c200050009c0000008d0000213d0000010001500039000000400010043f000000e00150003900000064020000390000000000210435000000c0025000390000005a030000390000000000320435000000a0035000390000005004000039000000000043043500000080045000390000004606000039000000000064043500000060065000390000003c07000039000000000076043500000040075000390000002d080000390000000000870435000000140800003900000000088504360000001e090000390000000000980435000000110a00003900000000090a041a000000080b0000390000000000ba041b000000090090008c000011120000413d00000c950990009a00000c960090009c000011120000413d00000c970a00004100000000000a041b000000010aa0003900000000009a004b0000110e0000413d0000001109000039000000000090043f0000000005050433000000ff0550018f00000c9809000041000000000059041b0000000005080433000000ff0550018f00000c9908000041000000000058041b0000000005070433000000ff0550018f00000c9a07000041000000000057041b0000000005060433000000ff0550018f00000c9b06000041000000000056041b0000000004040433000000ff0440018f00000c9c05000041000000000045041b0000000003030433000000ff0330018f00000c9d04000041000000000034041b0000000002020433000000ff0220018f00000c9e03000041000000000023041b0000000001010433000000ff0110018f00000c9f02000041000000000012041b000000400100043d000d00000001001d00000ca00010009c0000008d0000213d0000000d02000029000001c001200039000000400010043f00000ca10020009c0000008d0000213d0000000d040000290000022002400039000000400020043f00000023020000390000000000210435000002000240003900000ca2030000410000000000320435000001e00240003900000ca30300004100000000003204350000000001140436000000400200043d00000c790020009c0000008d0000213d0000006003200039000000400030043f000000400320003900000ca4040000410000000000430435000000200320003900000ca50400004100000000004304350000002d0300003900000000003204350000000000210435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000ca6030000410000000000320435000000200210003900000ca70300004100000000003204350000002d0200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000ca8030000410000000000320435000000200210003900000ca9030000410000000000320435000000280200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000caa030000410000000000320435000000200210003900000cab030000410000000000320435000000280200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cac030000410000000000320435000000140200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000cad030000410000000000320435000000200210003900000cae030000410000000000320435000000320200003900000000002104350000000d02000029000000c0022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000caf030000410000000000320435000000200210003900000cb0030000410000000000320435000000280200003900000000002104350000000d02000029000000e0022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000cb1030000410000000000320435000000200210003900000cb2030000410000000000320435000000280200003900000000002104350000000d0200002900000100022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000cb3030000410000000000320435000000200210003900000cb40300004100000000003204350000002d0200003900000000002104350000000d0200002900000120022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000cb5030000410000000000320435000000200210003900000cb60300004100000000003204350000002d0200003900000000002104350000000d0200002900000140022000390000000000120435000000400100043d00000cb70010009c0000008d0000213d0000002002100039000000400020043f00000000000104350000000d0200002900000160022000390000000000120435000000400200043d00000c790020009c0000008d0000213d0000006001200039000000400010043f000000400120003900000cb8030000410000000000310435000000200120003900000cb9030000410000000000310435000000370100003900000000001204350000000d0300002900000180033000390000000000230435000000400200043d00000c790020009c0000008d0000213d0000006003200039000000400030043f000000400320003900000cba040000410000000000430435000000200320003900000cbb04000041000000000043043500000000001204350000000d01000029000001a00110003900000000002104350000001203000039000000000103041a0000000e02000039000000000023041b0000000f0010008c0000129b0000413d00000cbc0110009a000b00000001001d00000cbd0010009c0000129b0000413d000e0cbe000000450000121d0000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c0000129b0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b000012180000613d0000000c010000290000001f0010008c0000000e01000029000012540000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000012460000813d000000000002041b0000000102200039000000000012004b000012420000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b000012180000013d00000e0e012001970000000b0200002900000000001204350000000c0000006b000000200200003900000000020060390000003f0120003900000e0f021001970000000501200029000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f000000050100002930372c840000040f000500000001001d000000060100002900000000010104330000001502000039000000000302041a000000000013004b000016050000a13d000000000020043f00000cde0110009a000000000201041a000000010320019000000001042002700000007f0440618f000c00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005be0000c13d000000400400043d000600000004001d0000000c050000290000000004540436000b00000004001d000000000003004b000014170000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c0000006b00000000020000190000141d0000613d000000000101043b00000000020000190000000b03200029000000000401041a0000000000430435000000010110003900000020022000390000000c0020006c000012930000413d0000141d0000013d0000001201000039000000000010043f000c0cbf00000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c000012d30000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000012d30000813d000000000002041b0000000102200039000000000012004b000012cf0000413d0000000b010000290000001f0010008c000a0001001002180006000300100218000012f40000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b000012f90000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000012ec0000c13d000012fa0000013d0000000b0000006b000013070000613d00000008010000290000000001010433000013080000013d00000020030000390000000b0020006c000013040000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf0000130d0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b00000009010000290000000d0010008c000900010010003d000c00010020003d0000129f0000413d000000400100043d000d00000001001d00000ca00010009c0000008d0000213d0000000d02000029000001c001200039000000400010043f00000c210020009c0000008d0000213d0000000d030000290000020002300039000000400020043f0000000a0200003900000000002104350000000001130436000001e00230003900000cc0030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000cc1040000410000000000430435000000080300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc2030000410000000000320435000000080200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc30300004100000000003204350000000a0200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc4030000410000000000320435000000050200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc50300004100000000003204350000000b0200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc60300004100000000003204350000000a0200003900000000002104350000000d02000029000000c0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc7030000410000000000320435000000060200003900000000002104350000000d02000029000000e0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc8030000410000000000320435000000040200003900000000002104350000000d0200002900000100022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cc90300004100000000003204350000000d0200003900000000002104350000000d0200002900000120022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cca0300004100000000003204350000000a0200003900000000002104350000000d0200002900000140022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ccb030000410000000000320435000000040200003900000000002104350000000d0200002900000160022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ccc0300004100000000003204350000000d0200003900000000002104350000000d0200002900000180022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ccd0300004100000000003204350000000d0200003900000000002104350000000d02000029000001a00220003900000000001204350000001303000039000000000103041a0000000e02000039000000000023041b0000000f0010008c0000145c0000413d00000cce0110009a000b00000001001d00000ccf0010009c0000145c0000413d000e0cd000000045000013de0000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c0000145c0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b000013d90000613d0000000c010000290000001f0010008c0000000e01000029000014150000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000014070000813d000000000002041b0000000102200039000000000012004b000014030000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b000013d90000013d00000e0e012001970000000b0200002900000000001204350000000c0000006b000000200200003900000000020060390000003f0120003900000e0f021001970000000601200029000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f000000060100002930372c840000040f000600000001001d000000080100002900000000010104330000001802000039000000000302041a000000000013004b000016050000a13d000000000020043f00000cfd0110009a000000000201041a000000010320019000000001042002700000007f0440618f000c00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005be0000c13d000000400400043d000800000004001d0000000c050000290000000004540436000b00000004001d000000000003004b000015c00000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c0000006b0000000002000019000015c60000613d000000000101043b00000000020000190000000b03200029000000000401041a0000000000430435000000010110003900000020022000390000000c0020006c000014540000413d000015c60000013d0000001301000039000000000010043f000c0cd100000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c000014940000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000014940000813d000000000002041b0000000102200039000000000012004b000014900000413d0000000b010000290000001f0010008c000a0001001002180006000300100218000014b50000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b000014ba0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000014ad0000c13d000014bb0000013d0000000b0000006b000014c80000613d00000008010000290000000001010433000014c90000013d00000020030000390000000b0020006c000014c50000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf000014ce0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b00000009010000290000000d0010008c000900010010003d000c00010020003d000014600000413d000000400100043d00000ca00010009c0000008d0000213d000001c002100039000000400020043f000001a0021000390000006403000039000000000032043500000180021000390000005f03000039000000000032043500000160021000390000005a03000039000000000032043500000140021000390000004e03000039000000000032043500000120021000390000004b030000390000000000320435000001000210003900000046030000390000000000320435000000e00210003900000042030000390000000000320435000000c0021000390000003c030000390000000000320435000000a0021000390000003203000039000000000032043500000080021000390000002d03000039000000000032043500000060021000390000002803000039000000000032043500000040021000390000001e0300003900000000003204350000000a02000039000000000221043600000014040000390000000000420435000000000204041a0000000e03000039000000000034041b0000000f0020008c0000150f0000413d00000cd20220009a00000cd30020009c0000150f0000413d00000cd403000041000000000003041b0000000103300039000000000023004b0000150b0000413d0000001402000039000000000020043f00000000020000190000000013010434000000ff0330018f00000cd20420009a000000000034041b0000000d0020008c0000000102200039000015120000413d000000400100043d000d00000001001d00000cd50010009c0000008d0000213d0000000d02000029000000e001200039000000400010043f00000cd60020009c0000008d0000213d0000000d030000290000012002300039000000400020043f000000140200003900000000002104350000000001130436000001000230003900000cd7030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000cd80400004100000000004304350000001e0300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cd90300004100000000003204350000001e0200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000cda030000410000000000320435000000200210003900000cdb030000410000000000320435000000280200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000cb70010009c0000008d0000213d0000002002100039000000400020043f00000000000104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cdc0300004100000000003204350000001e0200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cdd0300004100000000003204350000001e0200003900000000002104350000000d02000029000000c00220003900000000001204350000001503000039000000000103041a0000000702000039000000000023041b000000080010008c0000160b0000413d00000cde0110009a000b00000001001d00000cdf0010009c0000160b0000413d000e0ce000000045000015870000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c0000160b0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b000015820000613d0000000c010000290000001f0010008c0000000e01000029000015be0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000015b00000813d000000000002041b0000000102200039000000000012004b000015ac0000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b000015820000013d00000e0e012001970000000b0200002900000000001204350000000c0000006b000000200200003900000000020060390000003f0120003900000e0f021001970000000801200029000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f000000080100002930372c840000040f000800000001001d000000090100002900000000010104330000001b02000039000000000302041a000000000013004b000016050000a13d000000000020043f00000d340110009a000000000201041a000000010320019000000001042002700000007f0440618f000c00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005be0000c13d000000400400043d000900000004001d0000000c050000290000000004540436000b00000004001d000000000003004b0000172c0000613d000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000c0000006b0000000002000019000017320000613d000000000101043b00000000020000190000000b03200029000000000401041a0000000000430435000000010110003900000020022000390000000c0020006c000015fd0000413d000017320000013d00000db301000041000000000010043f0000003201000039000000040010043f00000db40100004100003039000104300000001501000039000000000010043f000c0ce100000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c000016430000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000016430000813d000000000002041b0000000102200039000000000012004b0000163f0000413d0000000b010000290000001f0010008c000a0001001002180006000300100218000016640000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b000016690000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000165c0000c13d0000166a0000013d0000000b0000006b000016770000613d00000008010000290000000001010433000016780000013d00000020030000390000000b0020006c000016740000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf0000167d0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b0000000901000029000000060010008c000900010010003d000c00010020003d0000160f0000413d000000400100043d000d00000001001d00000cd50010009c0000008d0000213d0000000d02000029000000e001200039000000400010043f00000cd60020009c0000008d0000213d0000000d030000290000012002300039000000400020043f000000040200003900000000002104350000000001130436000001000230003900000ce2030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000ce3040000410000000000430435000000030300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ce4030000410000000000320435000000080200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ce5030000410000000000320435000000070200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ccb030000410000000000320435000000040200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ce60300004100000000003204350000000a0200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ce7030000410000000000320435000000040200003900000000002104350000000d02000029000000c00220003900000000001204350000001603000039000000000103041a0000000702000039000000000023041b000000080010008c0000185c0000413d00000ce80110009a000b00000001001d00000ce90010009c0000185c0000413d000e0cea00000045000016f30000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c0000185c0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b000016ee0000613d0000000c010000290000001f0010008c0000000e010000290000172a0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b0000171c0000813d000000000002041b0000000102200039000000000012004b000017180000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b000016ee0000013d00000e0e012001970000000b0200002900000000001204350000000c0000006b000000200200003900000000020060390000003f0120003900000e0f021001970000000901200029000000000021004b0000000002000039000000010200403900000c160010009c0000008d0000213d00000001002001900000008d0000c13d000000400010043f000000090100002930372c840000040f000000400200043d000000200320003900000db5040000410000000000430435000001460320003900000db6040000410000000000430435000001220320003900000db7040000410000000000430435000000530320003900000db8040000410000000000430435000000df0320003900000db9040000410000000000430435000001740320003900000dba040000410000000000430435000001020320003900000dbb0400004100000000004304350000007f0320003900000dbc0400004100000000004304350000009f0320003900000dbd040000410000000000430435000000bf0320003900000dbe040000410000000000430435000000330320003900000dbf040000410000000000430435000001540320003900000dc0040000410000000000430435000001260320003900000dc10400004100000000004304350000005f0320003900000dc2040000410000000000430435000000e20320003900000dc3040000410000000000430435000001880320003900000003040000290000000004040433000000000004004b0000177a0000613d000000000500001900000000063500190000000407500029000000000707043300000000007604350000002005500039000000000045004b000017730000413d0000000003340019000000950430003900000dc4050000410000000000540435000000b90430003900000dc5050000410000000000540435000000750430003900000dc6050000410000000000540435000000550430003900000dc7050000410000000000540435000000350430003900000dc805000041000000000054043500000dc9040000410000000000430435000000150430003900000dca050000410000000000540435000000ea0430003900000dcb050000410000000000540435000000990430003900000dcc050000410000000000540435000000ca0430003900000dcd050000410000000000540435000000ec0330003900000002040000290000000004040433000000000004004b000017a70000613d00000002050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000017a00000413d0000000003340019000000000003043500000001040000290000000004040433000000000004004b000017b70000613d00000001050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000017b00000413d0000000003340019000000000003043500000005040000290000000004040433000000000004004b000017c70000613d00000005050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000017c00000413d0000000003340019000000000003043500000006040000290000000004040433000000000004004b000017d70000613d00000006050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000017d00000413d0000000003340019000000000003043500000008040000290000000004040433000000000004004b000017e70000613d00000008050000290000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000017e00000413d000000000334001900000000000304350000000004010433000000000004004b000017f50000613d0000002001100039000000000500001900000000063500190000000007510019000000000707043300000000007604350000002005500039000000000045004b000017ee0000413d000000000134001900000dce030000410000000000310435000000040310003900000dcf0400004100000000004304350000002a0310003900000dd00400004100000000004304350000000a0310003900000dd10400004100000000004304350000002d011000390000000a030000290000000003030433000000000003004b0000180e0000613d000000000400001900000000051400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b000018070000413d0000000001130019000000400310003900000dd2040000410000000000430435000001370310003900000dd3040000410000000000430435000000930310003900000dd4040000410000000000430435000000bf0310003900000dd5040000410000000000430435000000e80310003900000dd60400004100000000004304350000010b0310003900000dd70400004100000000004304350000004b0310003900000dd8040000410000000000430435000001550310003900000dd9040000410000000000430435000000200310003900000dda040000410000000000430435000000730310003900000ddb0400004100000000004304350000009f0310003900000ddc040000410000000000430435000000c80310003900000ddd040000410000000000430435000000eb0310003900000dde040000410000000000430435000001170310003900000ddf040000410000000000430435000000530310003900000de0040000410000000000430435000001580310003900000de104000041000000000043043500000de203000041000000000031043500000000012100490000014f0310003900000000003204350000018e0110003900000e0f011001970000000003210019000000000013004b00000000010000390000000101004039000e00000003001d00000c160030009c0000008d0000213d00000001001001900000008d0000c13d0000000e01000029000000400010043f0000000001020433000000000001004b000019bf0000c13d0000000e0100002900000cb70010009c0000008d0000213d0000000e020000290000002001200039000000400010043f000000000002043500001b510000013d0000001601000039000000000010043f000c0ceb00000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c000018940000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000018940000813d000000000002041b0000000102200039000000000012004b000018900000413d0000000b010000290000001f0010008c000a0001001002180006000300100218000018b50000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b000018ba0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000018ad0000c13d000018bb0000013d0000000b0000006b000018c80000613d00000008010000290000000001010433000018c90000013d00000020030000390000000b0020006c000018c50000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf000018ce0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b0000000901000029000000060010008c000900010010003d000c00010020003d000018600000413d000000400400043d00000cd50040009c0000008d0000213d000000e001400039000000400010043f000000c00140003900000064020000390000000000210435000000a0024000390000005a03000039000000000032043500000080034000390000005005000039000000000053043500000060054000390000002806000039000000000065043500000040064000390000001e0700003900000000007604350000000a070000390000000007740436000000140800003900000000008704350000001708000039000000000908041a000000070a0000390000000000a8041b000000080090008c000018fb0000413d00000cec0990009a00000ced0090009c000018fb0000413d00000cee0a00004100000000000a041b000000010aa0003900000000009a004b000018f70000413d000000000080043f0000000004040433000000ff0440018f00000cef08000041000000000048041b0000000004070433000000ff0440018f00000cf007000041000000000047041b0000000004060433000000ff0440018f00000cf106000041000000000046041b0000000004050433000000ff0440018f00000cf205000041000000000045041b0000000003030433000000ff0330018f00000cf304000041000000000034041b0000000002020433000000ff0220018f00000cf403000041000000000023041b0000000001010433000000ff0110018f00000cf502000041000000000012041b000000400100043d000d00000001001d00000cd50010009c0000008d0000213d0000000d02000029000000e001200039000000400010043f00000cd60020009c0000008d0000213d0000000d030000290000012002300039000000400020043f000000050200003900000000002104350000000001130436000001000230003900000cf6030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000cf70400004100000000004304350000000a0300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cf8030000410000000000320435000000140200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c790010009c0000008d0000213d0000006002100039000000400020043f000000400210003900000cf9030000410000000000320435000000200210003900000cfa030000410000000000320435000000280200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000cb70010009c0000008d0000213d0000002002100039000000400020043f00000000000104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cfb0300004100000000003204350000001e0200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000cfc0300004100000000003204350000000f0200003900000000002104350000000d02000029000000c00220003900000000001204350000001803000039000000000103041a0000000702000039000000000023041b000000080010008c00001a2c0000413d00000cfd0110009a000b00000001001d00000cfe0010009c00001a2c0000413d000e0cff00000045000019860000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c00001a2c0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b000019810000613d0000000c010000290000001f0010008c0000000e01000029000019bd0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000019af0000813d000000000002041b0000000102200039000000000012004b000019ab0000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b000019810000013d0000000e0100002900000c790010009c0000008d0000213d0000000e040000290000006001400039000000400010043f000000400140003900000d94030000410000000000310435000000200140003900000d9503000041000000000031043500000040010000390000000000140435000000000102043300000d960010009c000005900000213d00000d970010009c000005900000213d00000d980010009c0000008d0000213d0000000201100039000000030110011a00000002041002100000003f0140003900000e0f051001970000003f0150003900000e0f03100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000c160030009c0000008d0000213d00000001006001900000008d0000c13d000000400030043f0000002003100039000000000005004b000019f00000613d0000000005530019000000000600003100000002066003670000000007030019000000006806043c0000000007870436000000000057004b000019ec0000c13d000000000041043500000000050204330000000004250019000000000024004b00001a240000a13d0000000e05000029000000010550003900000000060200190000000306600039000000000706043300000012087002700000003f0880018f00000000085800190000000008080433000000f808800210000000000903043300000d9909900197000000000889019f00000000008304350000000c087002700000003f0880018f00000000085800190000000008080433000000f8088002100000000109300039000000000a09043300000d990aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000085800190000000008080433000000f8088002100000000209300039000000000a09043300000d990aa0019700000000088a019f00000000008904350000003f0770018f00000000075700190000000007070433000000f8077002100000000308300039000000000908043300000d9909900197000000000779019f00000000007804350000000403300039000000000046004b000019f80000413d0000000005020433000000032050011a000000020020008c00001b4d0000613d000000010020008c00001b500000c13d00000d9b02000041000000020330008a00001b4f0000013d0000001801000039000000000010043f000c0d0000000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c00001a640000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001a640000813d000000000002041b0000000102200039000000000012004b00001a600000413d0000000b010000290000001f0010008c000a000100100218000600030010021800001a850000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b00001a8a0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001a7d0000c13d00001a8b0000013d0000000b0000006b00001a980000613d0000000801000029000000000101043300001a990000013d00000020030000390000000b0020006c00001a950000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf00001a9e0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b0000000901000029000000060010008c000900010010003d000c00010020003d00001a300000413d000000400100043d000d00000001001d00000cd50010009c0000008d0000213d0000000d02000029000000e001200039000000400010043f00000cd60020009c0000008d0000213d0000000d030000290000012002300039000000400020043f000000050200003900000000002104350000000001130436000001000230003900000d01030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000d02040000410000000000430435000000050300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d03030000410000000000320435000000090200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d04030000410000000000320435000000040200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ccb030000410000000000320435000000040200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d05030000410000000000320435000000070200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d06030000410000000000320435000000040200003900000000002104350000000d02000029000000c00220003900000000001204350000001903000039000000000103041a0000000702000039000000000023041b000000080010008c00001b9b0000413d00000d070110009a000b00000001001d00000d080010009c00001b9b0000413d000e0d090000004500001b140000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c00001b9b0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b00001b0f0000613d0000000c010000290000001f0010008c0000000e0100002900001b4b0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00001b3d0000813d000000000002041b0000000102200039000000000012004b00001b390000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b00001b0f0000013d00000d9a02000041000000010330008a0000000000230435000e00000001001d000000400300043d000c00000003001d000000200130003900000de302000041000000000021043500000038023000390000000d01000029303721a90000040f000000220210003900000de403000041000000000032043500000de5020000410000000000210435000000020210003900000de6030000410000000000320435000000390210003900000de703000041000000000032043500000048021000390000000701000029303721a90000040f00000de802000041000000000021043500000de9020000410000000203100039000000000023043500000dea020000410000002203100039000000000023043500000026021000390000000f01000029303721a90000040f00000de502000041000000000021043500000deb020000410000000203100039000000000023043500000dec02000041000000220310003900000000002304350000002a021000390000000e01000029303721a90000040f00000da60200004100000000002104350000000c0300002900000000013100490000001e0210008a000000000023043500000002021000390000000001030019303720810000040f0000000c0100002930372f7a0000040f00000ded02000041000000400400043d000e00000004001d000000200340003900000000002304350000003d02400039303721a90000040f0000000e030000290000000002310049000000200120008a00000000001304350000000001030019303720810000040f000000400100043d000d00000001001d0000000e02000029303720440000040f0000000d02000029000005760000013d0000001901000039000000000010043f000c0d0a00000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c00001bd30000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001bd30000813d000000000002041b0000000102200039000000000012004b00001bcf0000413d0000000b010000290000001f0010008c000a000100100218000600030010021800001bf40000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b00001bf90000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001bec0000c13d00001bfa0000013d0000000b0000006b00001c070000613d0000000801000029000000000101043300001c080000013d00000020030000390000000b0020006c00001c040000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf00001c0d0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b0000000901000029000000060010008c000900010010003d000c00010020003d00001b9f0000413d000000400400043d00000cd50040009c0000008d0000213d000000e001400039000000400010043f000000c00140003900000064020000390000000000210435000000a0024000390000005a03000039000000000032043500000080034000390000005005000039000000000053043500000060054000390000002806000039000000000065043500000040064000390000001e0700003900000000007604350000000a070000390000000007740436000000140800003900000000008704350000001a08000039000000000908041a000000070a0000390000000000a8041b000000080090008c00001c3a0000413d00000d0b0990009a00000d0c0090009c00001c3a0000413d00000d0d0a00004100000000000a041b000000010aa0003900000000009a004b00001c360000413d000000000080043f0000000004040433000000ff0440018f00000d0e08000041000000000048041b0000000004070433000000ff0440018f00000d0f07000041000000000047041b0000000004060433000000ff0440018f00000d1006000041000000000046041b0000000004050433000000ff0440018f00000d1105000041000000000045041b0000000003030433000000ff0330018f00000d1204000041000000000034041b0000000002020433000000ff0220018f00000d1303000041000000000023041b0000000001010433000000ff0110018f00000d1402000041000000000012041b000000400100043d000d00000001001d00000d150010009c0000008d0000213d0000000d02000029000001a001200039000000400010043f00000ca10020009c0000008d0000213d0000000d050000290000022002500039000000400020043f00000050020000390000000000210435000002000350003900000d16020000410000000000230435000001e00350003900000d17040000410000000000430435000001c00350003900000d180400004100000000004304350000000001150436000000400300043d00000d190030009c0000008d0000213d0000008004300039000000400040043f00000060043000390000000000240435000000400230003900000d1a040000410000000000420435000000200230003900000d1b040000410000000000420435000000500200003900000000002304350000000000310435000000400200043d00000d190020009c0000008d0000213d0000008001200039000000400010043f000000600320003900000d16010000410000000000130435000000400320003900000d1c040000410000000000430435000000200320003900000d1d040000410000000000430435000000500300003900000000003204350000000d0300002900000040033000390000000000230435000000400200043d00000d190020009c0000008d0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000d1e030000410000000000310435000000200120003900000d1f030000410000000000310435000000500100003900000000001204350000000d0100002900000060011000390000000000210435000000400100043d00000cb70010009c0000008d0000213d0000002002100039000000400020043f00000000000104350000000d0200002900000080022000390000000000120435000000400200043d00000d190020009c0000008d0000213d0000008001200039000000400010043f000000600320003900000d20010000410000000000130435000000400320003900000d21040000410000000000430435000000200320003900000d22040000410000000000430435000000500300003900000000003204350000000d03000029000000a0033000390000000000230435000000400200043d00000d190020009c0000008d0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000d23030000410000000000310435000000200120003900000d24030000410000000000310435000000500100003900000000001204350000000d01000029000000c0011000390000000000210435000000400200043d00000d190020009c0000008d0000213d0000008001200039000000400010043f000000600320003900000d20010000410000000000130435000000400320003900000d25040000410000000000430435000000200320003900000d26040000410000000000430435000000500300003900000000003204350000000d03000029000000e0033000390000000000230435000000400200043d00000d190020009c0000008d0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000d27030000410000000000310435000000200120003900000d28030000410000000000310435000000500100003900000000001204350000000d0100002900000100011000390000000000210435000000400100043d00000d190010009c0000008d0000213d0000008002100039000000400020043f000000600210003900000d20030000410000000000320435000000400210003900000d29030000410000000000320435000000200210003900000d2a030000410000000000320435000000500200003900000000002104350000000d0200002900000120022000390000000000120435000000400100043d00000d190010009c0000008d0000213d0000008002100039000000400020043f000000600210003900000d2b030000410000000000320435000000400210003900000d2c030000410000000000320435000000200210003900000d2d030000410000000000320435000000460200003900000000002104350000000d0200002900000140022000390000000000120435000000400100043d00000d190010009c0000008d0000213d0000008002100039000000400020043f000000600210003900000d2e030000410000000000320435000000400210003900000d2f030000410000000000320435000000200210003900000d30030000410000000000320435000000460200003900000000002104350000000d0200002900000160022000390000000000120435000000400100043d00000d190010009c0000008d0000213d0000008002100039000000400020043f000000600210003900000d31030000410000000000320435000000400210003900000d32030000410000000000320435000000200210003900000d33030000410000000000320435000000460200003900000000002104350000000d02000029000001800220003900000000001204350000001b03000039000000000103041a0000000d02000039000000000023041b0000000e0010008c00001d8d0000413d00000d340110009a000b00000001001d00000d350010009c00001d8d0000413d000e0d360000004500001d540000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c00001d8d0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b00001d4f0000613d0000000c010000290000001f0010008c0000000e0100002900001d8b0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00001d7d0000813d000000000002041b0000000102200039000000000012004b00001d790000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b00001d4f0000013d0000001b01000039000000000010043f000c0d3700000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c00001dc50000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001dc50000813d000000000002041b0000000102200039000000000012004b00001dc10000413d0000000b010000290000001f0010008c000a000100100218000600030010021800001de60000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b00001deb0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001dde0000c13d00001dec0000013d0000000b0000006b00001df90000613d0000000801000029000000000101043300001dfa0000013d00000020030000390000000b0020006c00001df60000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf00001dff0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b00000009010000290000000c0010008c000900010010003d000c00010020003d00001d910000413d000000400100043d000d00000001001d00000d150010009c0000008d0000213d0000000d02000029000001a001200039000000400010043f00000d380020009c0000008d0000213d0000000d03000029000001e002300039000000400020043f0000000f0200003900000000002104350000000001130436000001c00230003900000d39030000410000000000320435000000400200043d00000c130020009c0000008d0000213d0000004003200039000000400030043f000000200320003900000d3a040000410000000000430435000000100300003900000000003204350000000000210435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d3b0300004100000000003204350000000e0200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d3c0300004100000000003204350000000e0200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000ccb030000410000000000320435000000040200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d3d030000410000000000320435000000100200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d3e030000410000000000320435000000140200003900000000002104350000000d02000029000000c0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d3f030000410000000000320435000000100200003900000000002104350000000d02000029000000e0022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d40030000410000000000320435000000110200003900000000002104350000000d0200002900000100022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d41030000410000000000320435000000100200003900000000002104350000000d0200002900000120022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d420300004100000000003204350000000e0200003900000000002104350000000d0200002900000140022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d430300004100000000003204350000000f0200003900000000002104350000000d0200002900000160022000390000000000120435000000400100043d00000c130010009c0000008d0000213d0000004002100039000000400020043f000000200210003900000d440300004100000000003204350000000f0200003900000000002104350000000d02000029000001800220003900000000001204350000001c03000039000000000103041a0000000d02000039000000000023041b0000000e0010008c00001efc0000413d00000d450110009a000b00000001001d00000d460010009c00001efc0000413d000e0d470000004500001ec30000013d0000000e020000290000000102200039000e00000002001d0000000b0020006c00001efc0000813d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000c0000006b00001ebe0000613d0000000c010000290000001f0010008c0000000e0100002900001efa0000a13d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000201043b0000000c010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00001eec0000813d000000000002041b0000000102200039000000000012004b00001ee80000413d0000000e01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000000101043b0000000e02000029000000000002041b000000000001041b00001ebe0000013d0000001c01000039000000000010043f000c0d4800000045000900000000001d0000000d010000290000000012010434000d00000001001d000e00000002001d0000000021020434000800000002001d000b00000001001d00000c160010009c0000008d0000213d0000000c01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005be0000c13d0000000a01000029000000200010008c00001f340000413d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d0000000b030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00001f340000813d000000000002041b0000000102200039000000000012004b00001f300000413d0000000b010000290000001f0010008c000a000100100218000600030010021800001f550000a13d0000000c01000029000000000010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000005b0000613d000000200200008a0000000b02200180000000000101043b00001f5a0000613d000000010320008a00000005033002700000000003310019000000010430003900000020030000390000000e053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001f4d0000c13d00001f5b0000013d0000000b0000006b00001f680000613d0000000801000029000000000101043300001f690000013d00000020030000390000000b0020006c00001f650000813d0000000602000029000000f80220018f00000e100220027f00000e10022001670000000e033000290000000003030433000000000223016f000000000021041b0000000a0100002900000001011001bf00001f6e0000013d0000000001000019000000010300008a0000000602300250000000000232013f000000000121016f0000000a011001af0000000c02000029000000000012041b00000009010000290000000c0010008c000900010010003d000c00010020003d00001f000000413d000000400100043d00000d150010009c0000008d0000213d000001a002100039000000400020043f00000180021000390000006403000039000000000032043500000160021000390000006103000039000000000032043500000140021000390000005e03000039000000000032043500000120021000390000005b030000390000000000320435000001000210003900000052030000390000000000320435000000e0021000390000004a030000390000000000320435000000c00210003900000042030000390000000000320435000000a0021000390000003a03000039000000000032043500000080021000390000003203000039000000000032043500000060021000390000001403000039000000000032043500000040021000390000000f03000039000000000032043500000020021000390000000a030000390000000000320435000000050200003900000000002104350000001d02000039000000000302041a0000000d04000039000000000042041b0000000e0030008c00001fae0000413d00000d490330009a00000d4a0030009c00001fae0000413d00000d4b04000041000000000004041b0000000104400039000000000034004b00001faa0000413d000000000020043f00000000020000190000000013010434000000ff0330018f00000d490420009a000000000034041b0000000c0020008c000000010220003900001fb00000413d00000001010000390000001e04000039000000000014041b00000bb8010000390000002302000039000000000012041b00000d4c010000410000002402000039000000000012041b00000d4d010000410000002502000039000000000012041b0000002601000039000000000201041a00000e0e02200197000000000021041b00000027010000390000000502000039000000000021041b0000002801000039000000000041041b00000d4e010000410000000000100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d4f011001c70000800b02000039303730320000040f000000010020019000001ffb0000613d000000000201043b000000000002004b000005900000613d000e00000002001d00100001002000920000800b0100003900000024030000390000000004000415000000100440008a000000050440021000000d5002000041303730160000040f0000002002000039000000000012041b00000021010000390000000e02000029000000000021041b00000c1201000041000000110110017f0000002202000039000000000302041a00000c1d03300197000000000113019f000000000012041b0000001f01000039000000000201041a00000c1d0220019700000007022001af000000000021041b000000000100041130371ffc0000040f00000020010000390000010000100443000001200000044300000d5101000041000030380001042e000000000001042f00000c12061001970000000901000039000000000201041a00000c1d03200197000000000363019f000000000031041b000000000100041400000c120520019700000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000030300003900000c1f040000413037302d0000040f00000001002001900000200f0000613d000000000001042d0000000001000019000030390001043000000c1201100197000000000010043f0000002901000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000020200000613d000000000101043b000000000001042d0000000001000019000030390001043000000c1202200197000000000020043f000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000020300000613d000000000101043b000000000001042d0000000001000019000030390001043000000000430104340000000001320436000000000003004b0000203e0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000020370000413d000000000213001900000000000204350000001f0230003900000e0f022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000020530000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000204c0000413d000000000312001900000000000304350000001f0220003900000e0f022001970000000001120019000000000001042d00000daa0010009c000020690000213d000000630010008c000020690000a13d00000002030003670000000401300370000000000101043b00000c120010009c000020690000213d0000002402300370000000000202043b00000c120020009c000020690000213d0000004403300370000000000303043b000000000001042d0000000001000019000030390001043000000e110010009c000020700000813d0000006001100039000000400010043f000000000001042d00000db301000041000000000010043f0000004101000039000000040010043f00000db401000041000030390001043000000e120010009c0000207b0000813d0000002001100039000000400010043f000000000001042d00000db301000041000000000010043f0000004101000039000000040010043f00000db40100004100003039000104300000001f0220003900000e0f022001970000000001120019000000000021004b0000000002000039000000010200403900000c160010009c0000208d0000213d00000001002001900000208d0000c13d000000400010043f000000000001042d00000db301000041000000000010043f0000004101000039000000040010043f00000db40100004100003039000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b000021850000613d0000000601000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b000000000101041a000000000001004b000020c10000c13d000000000100041a000000060010006c000021850000a13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b000000000101041a000000000001004b0000000702000029000020ae0000613d00000da700100198000021850000c13d000000050200002900000c1202200197000400000001001d00000c1201100197000700000002001d000000000021004b000021890000c13d0000000601000029000000000010043f0000000601000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000201043b000000000302041a000000000100041100000c1204100197000000070040006c000021020000613d000000000034004b000021020000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b0000000502000029000000000020043f000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b000000000101041a000000ff0010019000000002020000290000000103000029000021920000613d000000000003004b000021050000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b000000000201041a000000010220008a000000000021041b000000030100002900000c1201100197000500000001001d000000000010043f0000000501000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b000000000201041a0000000102200039000000000021041b00000e15010000410000000000100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d4f011001c70000800b02000039303730320000040f00000001002001900000218d0000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d0000000302000029000000a00220021000000005022001af00000e16022001c7000000000101043b000000000021041b000000040100002900000e1600100198000021720000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b000000000101041a000000000001004b000021720000c13d000000000100041a000000030010006b000021720000613d0000000301000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000021830000613d000000000101043b0000000402000029000000000021041b000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000040300003900000e17040000410000000705000029000000050600002900000006070000293037302d0000040f0000000100200190000021830000613d000000050000006b0000218e0000613d000000000001042d0000000001000019000030390001043000000e0701000041000000000010043f00000da901000041000030390001043000000e1301000041000000000010043f00000da9010000410000303900010430000000000001042f00000e1801000041000000000010043f00000da901000041000030390001043000000e1401000041000000000010043f00000da9010000410000303900010430000000000001004b000021990000613d000000000001042d000000400100043d000000440210003900000e0003000041000000000032043500000d8a0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000c0f0010009c00000c0f01008041000000400110021000000def011001c700003039000104300000000031010434000000000001004b000021b40000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b000021ad0000413d00000000012100190000000000010435000000000001042d0008000000000002000000000001004b000024420000613d000000000200041a000000000012004b000024420000a13d000700000001001d000800000001001d000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000242e0000613d000000000101043b000000000101041a000000000001004b000021d90000c13d0000000801000029000000000001004b000000010110008a000021be0000c13d00000db301000041000000000010043f0000001101000039000000040010043f00000db401000041000030390001043000000da7001001980000000701000029000024420000c13d000000000010043f0000000a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f00000001002001900000242e0000613d000000400200043d00000e190020009c000024300000813d000000000301043b000000c001200039000000400010043f000000000103041a00000000051204360000000104300039000000000404041a000800000005001d00000000004504350000000204300039000000000404041a0000004005200039000700000005001d00000000004504350000000304300039000000000404041a0000006005200039000600000005001d00000000004504350000000404300039000000000404041a0000008005200039000500000005001d0000000000450435000000a0042000390000000502300039000000000202041a000400000004001d00000000002404350000000c02000039000000000302041a000000000013004b000024360000a13d000000000020043f00000c5a0510009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b0000243c0000c13d000000400100043d0000000004610436000000000003004b000022370000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000242e0000613d0000000306000029000000000006004b0000223d0000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b0000222f0000413d0000223f0000013d00000e0e022001970000000000240435000000000006004b000000200500003900000000050060390000223f0000013d000000000500001900000002010000290000003f0350003900000e0f023001970000000003120019000000000023004b0000000002000039000000010200403900000c160030009c000024300000213d0000000100200190000024300000c13d000000400030043f30372c840000040f000000080200002900000000040204330000000f02000039000000000302041a000000000043004b000024360000a13d000000000020043f00000c850540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f00000001004001900000243c0000c13d000800000001001d000000400100043d0000000004610436000000000003004b0000227e0000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000242e0000613d0000000306000029000000000006004b000022840000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000022760000413d000022860000013d00000e0e022001970000000000240435000000000006004b00000020050000390000000005006039000022860000013d000000000500001900000002010000290000003f0350003900000e0f023001970000000003120019000000000023004b0000000002000039000000010200403900000c160030009c000024300000213d0000000100200190000024300000c13d000000400030043f30372c840000040f000000070200002900000000040204330000001202000039000000000302041a000000000043004b000024360000a13d000000000020043f00000cbc0540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f00000001004001900000243c0000c13d000700000001001d000000400100043d0000000004610436000000000003004b000022c50000613d000100000004001d000200000006001d000300000001001d000000000050043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000242e0000613d0000000206000029000000000006004b000022cb0000613d000000000201043b0000000005000019000000030100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000022bd0000413d000022cd0000013d00000e0e022001970000000000240435000000000006004b00000020050000390000000005006039000022cd0000013d000000000500001900000003010000290000003f0350003900000e0f023001970000000003120019000000000023004b0000000002000039000000010200403900000c160030009c000024300000213d0000000100200190000024300000c13d000000400030043f30372c840000040f000000060200002900000000040204330000001502000039000000000302041a000000000043004b000024360000a13d000000000020043f00000cde0540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f00000001004001900000243c0000c13d000600000001001d000000400100043d0000000004610436000000000003004b0000230c0000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000242e0000613d0000000306000029000000000006004b000023120000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b000023040000413d000023140000013d00000e0e022001970000000000240435000000000006004b00000020050000390000000005006039000023140000013d000000000500001900000002010000290000003f0350003900000e0f023001970000000003120019000000000023004b0000000002000039000000010200403900000c160030009c000024300000213d0000000100200190000024300000c13d000000400030043f30372c840000040f0000000005010019000000050100002900000000010104330000001802000039000000000302041a000000000013004b000024360000a13d000000000020043f00000cfd0610009a000000000206041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f00000001004001900000243c0000c13d000500000005001d000000400100043d0000000004710436000000000003004b000023540000613d000100000004001d000300000007001d000200000001001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000242e0000613d0000000306000029000000000006004b0000235a0000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b0000234c0000413d0000235c0000013d00000e0e022001970000000000240435000000000007004b000000200500003900000000050060390000235c0000013d000000000500001900000002010000290000003f0350003900000e0f023001970000000003120019000000000023004b0000000002000039000000010200403900000c160030009c000024300000213d0000000100200190000024300000c13d000000400030043f30372c840000040f0000000005010019000000040100002900000000010104330000001b02000039000000000302041a000000000013004b000024360000a13d000000000020043f00000d340610009a000000000206041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f00000001004001900000243c0000c13d000000400100043d0000000004710436000000000003004b000300000005001d0000239c0000613d000100000004001d000400000007001d000200000001001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f00000001002001900000242e0000613d0000000407000029000000000007004b000023a20000613d000000000201043b0000000006000019000000020100002900000001080000290000000003860019000000000402041a000000000043043500000001022000390000002006600039000000000076004b000023940000413d000023a40000013d00000e0e022001970000000000240435000000000007004b00000020060000390000000006006039000023a40000013d000000000600001900000002010000290000003f0360003900000e0f023001970000000003120019000000000023004b0000000002000039000000010200403900000c160030009c000024300000213d0000000100200190000024300000c13d000000400030043f30372c840000040f000000400200043d000000800320003900000e1a040000410000000000430435000000200320003900000dca040000410000000000430435000000b20320003900000dc5040000410000000000430435000000400320003900000e1b040000410000000000430435000000600320003900000e1c040000410000000000430435000000920320003900000dcc040000410000000000430435000000c30320003900000008050000290000000004050433000000000004004b000023d10000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000023ca0000413d0000000003340019000000000003043500000007050000290000000004050433000000000004004b000023e00000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000023d90000413d0000000003340019000000000003043500000006050000290000000004050433000000000004004b000023ef0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000023e80000413d0000000003340019000000000003043500000005050000290000000004050433000000000004004b000023fe0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000023f70000413d0000000003340019000000000003043500000003050000290000000004050433000000000004004b0000240d0000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b000024060000413d000000000334001900000000000304350000000004010433000000000004004b0000241b0000613d0000002001100039000000000500001900000000063500190000000007510019000000000707043300000000007604350000002005500039000000000045004b000024140000413d000000000134001900000dcf03000041000000000031043500000000012100490000001a0310008a0000000000320435000000250110003900000e0f031001970000000001230019000000000031004b0000000003000039000000010300403900000c160010009c000024300000213d0000000100300190000024300000c13d000000400010043f0000000001020019000000000001042d0000000001000019000030390001043000000db301000041000000000010043f0000004101000039000000040010043f00000db401000041000030390001043000000db301000041000000000010043f0000003201000039000000040010043f00000db401000041000030390001043000000db301000041000000000010043f0000002201000039000000040010043f00000db4010000410000303900010430000000400100043d000000440210003900000dee03000041000000000032043500000024021000390000001403000039000000000032043500000d8a02000041000000000021043500000004021000390000002003000039000000000032043500000c0f0010009c00000c0f01008041000000400110021000000def011001c70000303900010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b000025d50000613d0000000701000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b000000000101041a000000000001004b000024820000c13d000000000100041a000000070010006c000025d50000a13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b000000000101041a000000000001004b00000008020000290000246f0000613d00000da700100198000025d50000c13d000000060200002900000c1202200197000300000001001d00000c1201100197000800000002001d000000000021004b000025da0000c13d0000000701000029000000000010043f0000000601000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000301043b000000000403041a000000000100041100000c1202100197000400000002001d000000080020006c000024c30000613d000000040040006b000024c30000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b0000000402000029000000000020043f000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b000000000101041a000000ff0010019000000006030000290000000204000029000025e20000613d000000000004004b000024c60000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b000000000201041a000000010220008a000000000021041b000000050100002900000c1201100197000600000001001d000000000010043f0000000501000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b000000000201041a0000000102200039000000000021041b00000e15010000410000000000100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d4f011001c70000800b02000039303730320000040f0000000100200190000025d90000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d0000000202000029000000a0022002100000000606000029000000000262019f00000e16022001c7000000000101043b000000000021041b000000030100002900000e1600100198000025360000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b000000000101041a000000000001004b0000000606000029000025360000c13d000000000100041a000000020010006b000025360000613d0000000201000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000025d30000613d000000000101043b0000000302000029000000000021041b0000000606000029000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000040300003900000e1704000041000000080500002900000007070000293037302d0000040f0000000100200190000025d30000613d000000060000006b000025de0000613d00000e1d01000041000000000010044300000005010000290000000400100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000e02011001c70000800202000039303730320000040f0000000100200190000025d90000613d000000000101043b000000000001004b000025d20000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b000390000000802000029000000000021043500000e1e0100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000025740000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b0000256d0000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c000025820000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000025ba0000013d000700000008001d000500000007001d0000001f0110003900000e0f01100197000000a40110003900000c0f0010009c00000c0f01008041000000600110021000000c0f00b0009c00000c0f0300004100000000030b40190000004003300210000000000131019f00000c0f0040009c00000c0f04008041000000c003400210000000000113019f00080000000b001d3037302d0000040f000000080b000029000000600310027000000c0f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000025a50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000025a10000c13d000000000006004b000025b20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a00000005055002100000000100200190000025e60000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c160010009c000026180000213d0000000100200190000026180000c13d000000400010043f000000200030008c000025d30000413d00000000010b043300000e0900100198000025d30000c13d0000000502500270000000000201001f00000000020004150000000002280049000000000200000200000e0a0110019700000e1e0010009c000026140000c13d000000000001042d0000000001000019000030390001043000000e0701000041000000000010043f00000da9010000410000303900010430000000000001042f00000e1301000041000000000010043f00000da901000041000030390001043000000e1801000041000000000010043f00000da901000041000030390001043000000e1401000041000000000010043f00000da9010000410000303900010430000000000003004b000025ea0000c13d0000006002000039000026110000013d0000001f0230003900000c10022001970000003f0220003900000e1f04200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000c160040009c000026180000213d0000000100500190000026180000c13d000000400040043f0000001f0430018f000000000632043600000c1105300198000500000006001d0000000003560019000026040000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b000026000000c13d000000000004004b000026110000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000261e0000c13d00000e2001000041000000000010043f00000da901000041000030390001043000000db301000041000000000010043f0000004101000039000000040010043f00000db4010000410000303900010430000000050200002900000c0f0020009c00000c0f02008041000000400220021000000c0f0010009c00000c0f010080410000006001100210000000000121019f00003039000104300001000000000002000000000001004b000026570000613d000100000001001d000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000026550000613d000000000101043b000000000101041a000000000001004b000026520000c13d000000000100041a0000000102000029000000000021004b000026570000a13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f0000000100200190000026550000613d000000000101043b000000000101041a000000000001004b00000001020000290000263f0000613d00000da700100198000026570000c13d000000000001042d0000000001000019000030390001043000000e0701000041000000000010043f00000da90100004100003039000104300014000000000002000000000200041a0000000003120019000200000003001d000000010330008a000f00000002001d000000010220008a000000000032004b00002c650000213d0000002302000039000000000202041a000000000023004b00002c6b0000213d0000000f0000006b00002c650000613d000000020010006b00002c650000413d000100000001001d00000002020000290000000f0020006b00002aaa0000813d000000400100043d001000000001001d00000e190010009c00002c5e0000813d0000002001000039000000000101041a0000001004000029000000c002400039000000400020043f00000000030000310000000203300367000000003503043c0000000004540436000000000024004b0000267b0000c13d000000400200043d00000040032000390000000f04000029000000000043043500000040030000390000000003320436000000000013043500000c790020009c00002c5e0000213d0000006001200039000000400010043f00000c0f0030009c00000c0f030080410000004001300210000000000202043300000c0f0020009c00000c0f020080410000006002200210000000000112019f000000000200041400000c0f0020009c00000c0f02008041000000c002200210000000000112019f00000c1e011001c70000801002000039303730320000040f000000010020019000002bd90000613d000000000101043b000000651010011a00000010020000290000000001120436000600000001001d000e002000200092000000010500003900000005065002100000000e016000290000000003010433000000400100043d00000040021000390000000f040000290000000000420435000000200210003900000000003204350000004003000039000000000031043500000c790010009c00002c5e0000213d001100000006001d001200000005001d0000006003100039000000400030043f00000c0f0020009c00000c0f020080410000004002200210000000000101043300000c0f0010009c00000c0f010080410000006001100210000000000121019f000000000200041400000c0f0020009c00000c0f02008041000000c002200210000000000112019f00000c1e011001c70000801002000039303730320000040f000000010020019000002bd90000613d00000011030000290000001002300029000000000101043b000000651010011a00000000001204350000001205000029000000050050008c0000000105500039000026a30000413d0000000c01000039000000000501041a00000c160050009c00002c5e0000213d00000005015002100000003f0110003900000e2101100197000000400200043d0000000001120019000700000002001d000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d00000010020000290000000002020433000b00000002001d000000400010043f000000070100002900000000005104350000000c01000039000000000010043f000000000005004b000027380000613d00000c5e0600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000032004b00002bd30000c13d000000400900043d0000000003490436000000000002004b0000271e0000613d000a00000003001d000e00000004001d000c00000009001d001100000008001d001200000007001d000d00000006001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f000000010020019000002bd90000613d0000000e0a00002900000000000a004b000000090500002900000012070000290000001108000029000027240000613d000000000201043b00000000010000190000000d060000290000000c090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000027160000413d000027270000013d00000e0e011001970000000000130435000000000004004b00000020010000390000000001006039000027270000013d00000000010000190000000d060000290000000c090000290000003f0110003900000e0f021001970000000001920019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000026ee0000413d0000000e04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000027490000613d00000c6f0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000027430000413d00000000032400490000001f0330003900000e0f033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000c160040009c00002c5e0000213d000000010030019000002c5e0000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b00002bdb0000613d0000000002020433000000000023004b00002bdd0000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000027690000213d0000000104400039000000000034004b0000275f0000413d000500000000001d0000276a0000013d000500000004001d0000000f01000039000000000501041a00000c160050009c00002c5e0000213d00000005015002100000003f0110003900000e21021001970000000801200029000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d00000006020000290000000002020433000b00000002001d000000400010043f000000080100002900000000005104350000000f01000039000000000010043f000000000005004b000027d20000613d00000c880600004100000000070000190000000808000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002bd30000c13d000000400900043d0000000003490436000000000002004b000027b80000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f000000010020019000002bd90000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000027be0000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000027b00000413d000027c10000013d00000e0e011001970000000000130435000000000004004b00000020010000390000000001006039000027c10000013d000000000100001900000012060000290000000d090000290000003f0110003900000e0f021001970000000001920019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000027870000413d0000001104000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000027e30000613d00000c980500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000027dd0000413d00000000032400490000001f0330003900000e0f033001970000000004230019000000000034004b00000000030000390000000103004039000700000004001d00000c160040009c00002c5e0000213d000000010030019000002c5e0000c13d0000000703000029000000400030043f00000008030000290000000003030433000000000003004b00002bdf0000613d0000000002020433000000000023004b00002bf00000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000028030000213d0000000104400039000000000034004b000027f90000413d000600000000001d000028040000013d000600000004001d0000001201000039000000000501041a00000c160050009c00002c5e0000213d00000005015002100000003f0110003900000e21021001970000000701200029000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d000000100200002900000040022000390000000002020433000b00000002001d000000400010043f000000070100002900000000005104350000001201000039000000000010043f000000000005004b0000286d0000613d00000cbf0600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002bd30000c13d000000400900043d0000000003490436000000000002004b000028530000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f000000010020019000002bd90000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000028590000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b0000284b0000413d0000285c0000013d00000e0e011001970000000000130435000000000004004b000000200100003900000000010060390000285c0000013d000000000100001900000012060000290000000d090000290000003f0110003900000e0f021001970000000001920019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000028220000413d0000001404000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b00000000040100190000287e0000613d00000e240500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000028780000413d00000000032400490000001f0330003900000e0f033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000c160040009c00002c5e0000213d000000010030019000002c5e0000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b00002bdb0000613d0000000002020433000000000023004b00002bdd0000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c0000289e0000213d0000000104400039000000000034004b000028940000413d000400000000001d0000289f0000013d000400000004001d0000001501000039000000000501041a00000c160050009c00002c5e0000213d00000005015002100000003f0110003900000e21021001970000000801200029000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d000000100200002900000060022000390000000002020433000b00000002001d000000400010043f000000080100002900000000005104350000001501000039000000000010043f000000000005004b000029080000613d00000ce10600004100000000070000190000000808000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002bd30000c13d000000400900043d0000000003490436000000000002004b000028ee0000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f000000010020019000002bd90000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000028f40000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000028e60000413d000028f70000013d00000e0e011001970000000000130435000000000004004b00000020010000390000000001006039000028f70000013d000000000100001900000012060000290000000d090000290000003f0110003900000e0f021001970000000001920019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000028bd0000413d0000001704000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000029190000613d00000cef0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000029130000413d00000000032400490000001f0330003900000e0f033001970000000004230019000000000034004b00000000030000390000000103004039000700000004001d00000c160040009c00002c5e0000213d000000010030019000002c5e0000c13d0000000703000029000000400030043f00000008030000290000000003030433000000000003004b00002bdf0000613d0000000002020433000000000023004b00002bf00000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000029390000213d0000000104400039000000000034004b0000292f0000413d000300000000001d0000293a0000013d000300000004001d0000001801000039000000000501041a00000c160050009c00002c5e0000213d00000005015002100000003f0110003900000e21021001970000000701200029000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d000000100200002900000080022000390000000002020433000b00000002001d000000400010043f00000007010000290000000000510435000000000005004b000029a10000613d00000d000600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002bd30000c13d000000400900043d0000000003490436000000000002004b000029870000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f000000010020019000002bd90000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e080000290000298d0000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b0000297f0000413d000029900000013d00000e0e011001970000000000130435000000000004004b00000020010000390000000001006039000029900000013d000000000100001900000012060000290000000d090000290000003f0110003900000e0f021001970000000001920019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000029560000413d0000001a04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000029b20000613d00000d0e0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000029ac0000413d00000000032400490000001f0330003900000e0f033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000c160040009c00002c5e0000213d000000010030019000002c5e0000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b00002bdb0000613d0000000002020433000000000023004b00002bdd0000c13d00000000080000190000000502800210000000000212001900000000020204330000000b0020006c000029d10000213d0000000108800039000000000038004b000029c80000413d00000000080000190000001b01000039000000000501041a00000c160050009c00002c5e0000213d00000005015002100000003f0110003900000e21021001970000000801200029000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000001002000029000000a0022000390000000002020433000c00000002001d000000400010043f00000008010000290000000000510435000000000005004b00002a3a0000613d00000d370600004100000000070000190000000809000029000a00000008001d000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f000000010030019000002bd30000c13d000000400a00043d00000000034a0436000000000002004b00002a200000613d000b00000003001d000d00000004001d000e0000000a001d001000000009001d001100000007001d001200000006001d000000000060043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c5d011001c70000801002000039303730320000040f000000010020019000002bd90000613d0000000d0b00002900000000000b004b0000000a0800002900000009050000290000001107000029000000100900002900002a260000613d000000000201043b000000000100001900000012060000290000000e0a0000290000000b0c0000290000000003c10019000000000402041a0000000000430435000000010220003900000020011000390000000000b1004b00002a180000413d00002a290000013d00000e0e011001970000000000130435000000000004004b0000002001000039000000000100603900002a290000013d000000000100001900000012060000290000000e0a0000290000003f0110003900000e0f021001970000000001a20019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d0000002009900039000000400010043f0000000000a9043500000001066000390000000107700039000000000057004b000029ee0000413d0000001d04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b000000000401001900002a4b0000613d00000e250500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b00002a450000413d00000000032400490000001f0330003900000e0f033001970000000006230019000000000036004b0000000003000039000000010300403900000c160060009c00002c5e0000213d000000010030019000002c5e0000c13d000000400060043f00000008030000290000000003030433000000000003004b00002c040000613d0000000002020433000000000023004b00002c140000c13d00000000020000190000000504200210000000000414001900000000040404330000000c0040006c00002a680000213d0000000102200039000000000032004b00002a5f0000413d000000000200001900000d9e0060009c00002c5e0000213d000000c001600039000000400010043f000000a001600039001200000001001d00000000002104350000008001600039001100000001001d000000000081043500000060026000390000000301000029001000000002001d000000000012043500000040026000390000000401000029000e00000002001d0000000000120435000000050100002900000000021604360000000601000029000d00000002001d00000000001204350000000f01000029000000000010043f0000000a01000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039000c00000006001d303730320000040f000000010020019000002bd90000613d0000000c020000290000000002020433000000000101043b000000000021041b0000000d0200002900000000020204330000000103100039000000000023041b0000000e0200002900000000020204330000000203100039000000000023041b000000100200002900000000020204330000000303100039000000000023041b000000110200002900000000020204330000000403100039000000000023041b000000050110003900000012020000290000000002020433000000000021041b0000000f010000290000000101100039000f00000001001d000000020010006c000026700000413d00000d4e010000410000000000100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d4f011001c70000800b02000039303730320000040f000000010020019000002c640000613d000000000201043b000000000002004b00002c650000613d00000d50010000410000000000100443001200000002001d000000010120008a0000000400100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000e02011001c70000800b02000039303730320000040f000000010020019000002c640000613d000000000101043b0000002002000039000000000012041b00000021010000390000001202000029000000000021041b000000400100043d000e00000001001d00000cb70010009c00002c5e0000213d0000000e010000290000002002100039000b00000002001d000000400020043f0000000000010435000000010000006b00002c7c0000613d000000000100041a000f00000001001d00000e15010000410000000000100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d4f011001c70000800b02000039303730320000040f000000010020019000002c640000613d000000000101043b001200000001001d0000000f01000029000000000010043f0000000401000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f000000010020019000002bd90000613d000000000200041100000c12042001970000001202000029000000a0022002100000000103000029000000010030008c000000000300001900000e1603006041000000000223019f000000000242019f000000000101043b000000000021041b001100000004001d000000000040043f0000000501000039000000200010043f000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000d8d011001c70000801002000039303730320000040f000000010020019000002bd90000613d000000010400002900000e26024000d1000000000101043b000000000301041a0000000002230019000000000021041b000000110000006b00002c800000613d0010000f0040002d0012000f0000002d000000000100001900002b280000013d00000011060000290000001207000029000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000c1e011001c70000800d02000039000000040300003900000e17040000410000000005000019001200000007001d3037302d0000040f0000000100200190000000010100003900002bd90000613d000000010010019000002b180000613d00000012070000290000000107700039000000100070006c000000110600002900002b1a0000c13d0000001001000029000000000010041b00000e1d01000041000000000010044300000000010004110000000400100443000000000100041400000c0f0010009c00000c0f01008041000000c00110021000000e02011001c70000800202000039303730320000040f000000010020019000002c640000613d000000000101043b000000000001004b0000000b0600002900002bd20000613d0000000101000039000000800800003900000e1e090000410000000f03000029000a00000008001d000000100030006c000000000a000039000000010a0040390000000100100190000000110200002900002bcf0000613d000000000b000415000000400c00043d0000006401c00039000000000081043500000000009c04350000000401c0003900000000002104350000004401c00039000f00000003001d00000000003104350000002401c0003900000000000104350000000e0100002900000000010104330000008403c000390000000000130435000000a407c00039000000000001004b00002b680000613d000000000300001900000000047300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00002b610000413d000000000371001900000000000304350000000004000414000000040020008c00002b750000c13d0000000005000415000000140550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900002bb00000013d000d0000000b001d00120000000a001d0000001f0110003900000e0f01100197000000a40110003900000c0f0010009c00000c0f01008041000000600110021000000c0f00c0009c00000c0f0300004100000000030c40190000004003300210000000000131019f00000c0f0040009c00000c0f04008041000000c003400210000000000113019f000c0000000c001d3037302d0000040f0000000c0c000029000000600310027000000c0f03300197000000200030008c00000020040000390000000004034019000000200640019000000000056c001900002b970000613d000000000701034f00000000080c0019000000007907043c0000000008980436000000000058004b00002b930000c13d0000001f0740019000002ba40000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000130550008a0000000505500210000000010020019000000e1e09000041000000120a0000290000000d0b00002900002c270000613d0000000b0600002900000080080000390000001f01400039000000600210018f0000000001c20019000000000021004b0000000002000039000000010200403900000c160010009c00002c5e0000213d000000010020019000002c5e0000c13d000000400010043f000000200030008c00002bd90000413d00000000010c043300000e090010019800002bd90000c13d0000000f0300002900000001033000390000000502500270000000000201001f000000000200041500000000022b0049000000000200000200000e0a0110019700000e1e0010009c00000000010a001900002b470000613d00000e2001000041000000000010043f00000da9010000410000303900010430000000000100041a000000100010006c00002bd90000c13d000000000001042d00000db301000041000000000010043f0000002201000039000000040010043f00000db401000041000030390001043000000000010000190000303900010430000000080300002900002be00000013d000000080300002900002bf10000013d0000000703000029000000440130003900000e2902000041000000000021043500000024013000390000001702000039000000000021043500000d8a01000041000000000013043500000004013000390000002002000039000000000021043500000c0f0030009c00000c0f03008041000000400130021000000def011001c700003039000104300000000703000029000000640130003900000e22020000410000000000210435000000440130003900000e2302000041000000000021043500000024013000390000002402000039000000000021043500000d8a01000041000000000013043500000004013000390000002002000039000000000021043500000c0f0030009c00000c0f03008041000000400130021000000df9011001c70000303900010430000000440160003900000e2902000041000000000021043500000024016000390000001702000039000000000021043500000d8a01000041000000000016043500000004016000390000002002000039000000000021043500000c0f0060009c00000c0f06008041000000400160021000000def011001c70000303900010430000000640160003900000e22020000410000000000210435000000440160003900000e2302000041000000000021043500000024016000390000002402000039000000000021043500000d8a01000041000000000016043500000004016000390000002002000039000000000021043500000c0f0060009c00000c0f06008041000000400160021000000df9011001c70000303900010430000000000003004b00002c2b0000c13d000000600200003900002c520000013d0000001f0230003900000c10022001970000003f0220003900000e1f04200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000c160040009c00002c5e0000213d000000010050019000002c5e0000c13d000000400040043f0000001f0430018f000000000632043600000c1105300198000a00000006001d000000000356001900002c450000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000037004b00002c410000c13d000000000004004b00002c520000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000000a0200002900002bcb0000613d00000c0f0020009c00000c0f02008041000000400220021000000c0f0010009c00000c0f010080410000006001100210000000000121019f000030390001043000000db301000041000000000010043f0000004101000039000000040010043f00000db4010000410000303900010430000000000001042f00000db301000041000000000010043f0000001101000039000000040010043f00000db4010000410000303900010430000000400100043d000000440210003900000e2a03000041000000000032043500000024021000390000000903000039000000000032043500000d8a02000041000000000021043500000004021000390000002003000039000000000032043500000c0f0010009c00000c0f01008041000000400110021000000def011001c7000030390001043000000e2801000041000000000010043f00000da901000041000030390001043000000e2701000041000000000010043f00000da9010000410000303900010430000f000000000002000f00000001001d0000000012010434000e00000001001d0006000510200122000000000001004b00002f690000c13d000000000002004b00002d170000613d00000e2c0020009c00002f630000213d000000060100002900000005041002100000003f0140003900000e2106100197000000400300043d0000000001630019000c00000003001d000000000031004b0000000003000039000000010300403900000c160010009c00002f630000213d000000010030019000002f630000c13d000000400010043f00000006010000290000000c030000290000000001130436000500000001001d0000001f0540018f0000000001000031000d00020010036b000000000004004b00002cae0000613d000000050100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002caa0000c13d000000000005004b000000400300043d0000000001630019000b00000003001d000000000031004b0000000003000039000000010300403900000c160010009c00002f630000213d000000010030019000002f630000c13d000000400010043f00000006010000290000000b030000290000000001130436000400000001001d000000000004004b00002cc70000613d000000040100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002cc30000c13d000000000005004b000000400300043d0000000001630019000a00000003001d000000000031004b0000000003000039000000010300403900000c160010009c00002f630000213d000000010030019000002f630000c13d000000400010043f00000006010000290000000a030000290000000001130436000300000001001d000000000004004b00002ce00000613d000000030100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002cdc0000c13d000000000005004b000000400300043d0000000001630019000900000003001d000000000031004b0000000003000039000000010300403900000c160010009c00002f630000213d000000010030019000002f630000c13d000000400010043f000000060100002900000009030000290000000001130436000200000001001d000000000004004b00002cf90000613d000000020100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b00002cf50000c13d000000000005004b000000400300043d0000000001630019000800000003001d000000000031004b0000000003000039000000010300403900000c160010009c00002f630000213d000000010030019000002f630000c13d000000400010043f000000060100002900000008030000290000000001130436000100000001001d000000000004004b00002d120000613d000000010100002900000000044100190000000d0300035f000000003603043c0000000001610436000000000041004b00002d0e0000c13d000000000005004b000000050020008c00002d260000813d0000006001000039000000000001042d000000400200043d00000e110020009c00002f630000813d0000006001200039000000400010043f000000400120003900000e33030000410000000000310435000000200120003900000e340300004100000000003104350000003a0100003900000000001204350000000001020019000000000001042d0000006001000039000000800a0000390000000006000019000700000001001d00000005026000c9000000000006004b00002d300000613d00000000016200d9000000050010008c00002f570000c13d0000000f010000290000000001010433000000000021004b00002f5d0000a13d0000000c010000290000000001010433000000000061004b00002f5d0000a13d0000000e01200029000000050b6002100000000508b000290000000001010433000000f8011002700000000000180435000000000006004b00002d430000613d00000000016200d9000000050010008c00002f570000c13d00000001032000390000000f010000290000000001010433000000000031004b00002f5d0000a13d0000000b010000290000000001010433000000000061004b00002f5d0000a13d0000000404b000290000000e013000290000000001010433000000f8011002700000000000140435000000000006004b00002d560000613d00000000016200d9000000050010008c00002f570000c13d00000002032000390000000f010000290000000001010433000000000031004b00002f5d0000a13d0000000a010000290000000001010433000000000061004b00002f5d0000a13d0000000307b000290000000e013000290000000001010433000000f8011002700000000000170435000000000006004b00002d690000613d00000000016200d9000000050010008c00002f570000c13d00000003032000390000000f010000290000000001010433000000000031004b00002f5d0000a13d00000009010000290000000001010433000000000061004b00002f5d0000a13d0000000205b000290000000e013000290000000001010433000000f8011002700000000000150435000000000006004b00002d7c0000613d00000000016200d9000000050010008c00002f570000c13d00000004032000390000000f010000290000000001010433000000000031004b00002f5d0000a13d00000008010000290000000001010433000000000061004b00002f5d0000a13d0000000102b000290000000e013000290000000001010433000000f80110027000000000001204350000000c010000290000000001010433000000000061004b00002f5d0000a13d0000000008080433000000000008004b00002dc50000613d000000000e080019000000000b000019000000000c0b0019000000010bb0003a00002f570000613d0000000900e0008c0000000a0ee0011a00002d930000213d00000d9c00c0009c00002f630000213d00000e0f0ec001970000005f01e0003900000e0f01100197000000400f00043d00000000031f00190000000000f3004b0000000001000039000000010100403900000c160030009c00002f630000213d000000010010019000002f630000c13d000000400030043f0000000001bf0436000000200ee0003900000e0f03e0019800002db30000613d00000000033100190000000d0d00035f000000000c01001900000000d90d043c000000000c9c043600000000003c004b00002daf0000c13d0000001f00e0019000000000000b004b00002f570000613d000000010bb0008a00000000030f04330000000000b3004b00002f5d0000a13d00000000031b0019000000090080008c0000000a9880011a000000f809900210000000000c03043300000d990cc001970000000009c9019f00000d9d099001c7000000000093043500002db40000213d00002dcf0000013d000000400f00043d00000c1300f0009c00002f630000213d0000004001f00039000000400010043f0000002001f0003900000d9d030000410000000000310435000000010100003900000000001f04350000000b010000290000000001010433000000000061004b00002f5d0000a13d0000000008040433000000000008004b00002e0a0000613d000000000c080019000000000b00001900000000040b0019000000010bb0003a00002f570000613d0000000900c0008c0000000a0cc0011a00002dd80000213d00000d9c0040009c00002f630000213d00000e0f0e4001970000005f01e0003900000e0f01100197000000400400043d0000000003140019000000000043004b0000000001000039000000010100403900000c160030009c00002f630000213d000000010010019000002f630000c13d000000400030043f000000000cb40436000000200ee0003900000e0f01e0019800002df80000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002df40000c13d0000001f00e0019000000000000b004b00002f570000613d000000010bb0008a00000000010404330000000000b1004b00002f5d0000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000d9909900197000000000393019f00000d9d033001c7000000000031043500002df90000213d00002e140000013d000000400400043d00000c130040009c00002f630000213d0000004001400039000000400010043f000000200140003900000d9d030000410000000000310435000000010100003900000000001404350000000a010000290000000001010433000000000061004b00002f5d0000a13d0000000008070433000000000008004b00002e4f0000613d000000000c080019000000000b00001900000000070b0019000000010bb0003a00002f570000613d0000000900c0008c0000000a0cc0011a00002e1d0000213d00000d9c0070009c00002f630000213d00000e0f0e7001970000005f01e0003900000e0f01100197000000400700043d0000000003170019000000000073004b0000000001000039000000010100403900000c160030009c00002f630000213d000000010010019000002f630000c13d000000400030043f000000000cb70436000000200ee0003900000e0f01e0019800002e3d0000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002e390000c13d0000001f00e0019000000000000b004b00002f570000613d000000010bb0008a00000000010704330000000000b1004b00002f5d0000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000d9909900197000000000393019f00000d9d033001c7000000000031043500002e3e0000213d00002e590000013d000000400700043d00000c130070009c00002f630000213d0000004001700039000000400010043f000000200170003900000d9d0300004100000000003104350000000101000039000000000017043500000009010000290000000001010433000000000061004b00002f5d0000a13d0000000008050433000000000008004b00002e940000613d000000000c080019000000000b00001900000000050b0019000000010bb0003a00002f570000613d0000000900c0008c0000000a0cc0011a00002e620000213d00000d9c0050009c00002f630000213d00000e0f0e5001970000005f01e0003900000e0f01100197000000400500043d0000000003150019000000000053004b0000000001000039000000010100403900000c160030009c00002f630000213d000000010010019000002f630000c13d000000400030043f000000000cb50436000000200ee0003900000e0f01e0019800002e820000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002e7e0000c13d0000001f00e0019000000000000b004b00002f570000613d000000010bb0008a00000000010504330000000000b1004b00002f5d0000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000d9909900197000000000393019f00000d9d033001c7000000000031043500002e830000213d00002e9e0000013d000000400500043d00000c130050009c00002f630000213d0000004001500039000000400010043f000000200150003900000d9d0300004100000000003104350000000101000039000000000015043500000008010000290000000001010433000000000061004b00002f5d0000a13d0000000002020433000000000002004b00002ed90000613d000000000c020019000000000b00001900000000080b0019000000010bb0003a00002f570000613d0000000900c0008c0000000a0cc0011a00002ea70000213d00000d9c0080009c00002f630000213d00000e0f0e8001970000005f01e0003900000e0f01100197000000400800043d0000000003180019000000000083004b0000000001000039000000010100403900000c160030009c00002f630000213d000000010010019000002f630000c13d000000400030043f000000000cb80436000000200ee0003900000e0f01e0019800002ec70000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b00002ec30000c13d0000001f00e0019000000000000b004b00002f570000613d000000010bb0008a00000000010804330000000000b1004b00002f5d0000a13d0000000001cb0019000000090020008c0000000a3220011a000000f803300210000000000901043300000d9909900197000000000393019f00000d9d033001c7000000000031043500002ec80000213d00002ee30000013d000000400800043d00000c130080009c00002f630000213d0000004001800039000000400010043f000000200180003900000d9d02000041000000000021043500000001010000390000000000180435000000400200043d000000200b2000390000000701000029000000000c01043300000000000c004b00002ef10000613d00000000010000190000000003b1001900000000091a00190000000009090433000000000093043500000020011000390000000000c1004b00002eea0000413d0000000001bc001900000e2d030000410000000000310435000000090a10003900000000dc0f043400000000000c004b00002f000000613d00000000010000190000000003a1001900000000091d00190000000009090433000000000093043500000020011000390000000000c1004b00002ef90000413d0000000001ac001900000e2e030000410000000000310435000000050a10003900000000c4040434000000000004004b00002f0f0000613d00000000010000190000000003a1001900000000091c0019000000000909043300000000009304350000002001100039000000000041004b00002f080000413d0000000001a40019000000200310003900000e2f04000041000000000043043500000e30030000410000000000310435000000210410003900000000a7070434000000000007004b00002f210000613d0000000001000019000000000341001900000000091a0019000000000909043300000000009304350000002001100039000000000071004b00002f1a0000413d000000000147001900000e3103000041000000000031043500000001041000390000000075050434000000000005004b00002f300000613d000000000100001900000000034100190000000009170019000000000909043300000000009304350000002001100039000000000051004b00002f290000413d000000000145001900000e3103000041000000000031043500000001041000390000000075080434000000000005004b00002f3f0000613d000000000100001900000000034100190000000008170019000000000808043300000000008304350000002001100039000000000051004b00002f380000413d000000000145001900000e3203000041000000000031043500000000012100490000001b0310008a0000000000320435000000240110003900000e0f031001970000000001230019000000000031004b0000000003000039000000010300403900000c160010009c00002f630000213d000000010030019000002f630000c13d000000400010043f0000000106600039000000060060006c000000000a0b0019000000000102001900002d290000413d0000000001020019000000000001042d00000db301000041000000000010043f0000001101000039000000040010043f00000db401000041000030390001043000000db301000041000000000010043f0000003201000039000000040010043f00000db401000041000030390001043000000db301000041000000000010043f0000004101000039000000040010043f00000db4010000410000303900010430000000400100043d000000440210003900000e2b03000041000000000032043500000024021000390000001803000039000000000032043500000d8a02000041000000000021043500000004021000390000002003000039000000000032043500000c0f0010009c00000c0f01008041000000400110021000000def011001c700003039000104300000000002010019000000400300043d0000000001010433000000000001004b00002fe90000613d00000c790030009c00002ff40000213d0000006001300039000000400010043f000000400130003900000d94040000410000000000410435000000200130003900000d9504000041000000000041043500000040010000390000000000130435000000000102043300000e350010009c00002ffa0000813d00000d970010009c00002ffa0000213d00000d980010009c00002ff40000213d0000000201100039000000030110011a00000002051002100000003f0150003900000e0f061001970000003f0160003900000e0f04100197000000400100043d0000000004410019000000000014004b0000000007000039000000010700403900000c160040009c00002ff40000213d000000010070019000002ff40000c13d000000400040043f0000002004100039000000000006004b00002fae0000613d0000000006640019000000000700003100000002077003670000000008040019000000007907043c0000000008980436000000000068004b00002faa0000c13d000000000051043500000000060204330000000005260019000000000025004b00002fe10000a13d000000010330003900000000060200190000000306600039000000000706043300000012087002700000003f0880018f00000000088300190000000008080433000000f808800210000000000904043300000d9909900197000000000889019f00000000008404350000000c087002700000003f0880018f00000000088300190000000008080433000000f8088002100000000109400039000000000a09043300000d990aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000088300190000000008080433000000f8088002100000000209400039000000000a09043300000d990aa0019700000000088a019f00000000008904350000003f0770018f00000000077300190000000007070433000000f8077002100000000308400039000000000908043300000d9909900197000000000779019f00000000007804350000000404400039000000000056004b00002fb50000413d0000000006020433000000032060011a000000020020008c00002ff00000613d000000010020008c00002ff30000c13d00000d9b02000041000000020340008a00002ff20000013d00000e120030009c00002ff40000813d0000002001300039000000400010043f0000000002000019000000000103001900002ff20000013d00000d9a02000041000000010340008a0000000000230435000000000001042d00000db301000041000000000010043f0000004101000039000000040010043f00000db401000041000030390001043000000db301000041000000000010043f0000001101000039000000040010043f00000db4010000410000303900010430000000000001042f00000c0f0010009c00000c0f01008041000000400110021000000c0f0020009c00000c0f020080410000006002200210000000000112019f000000000200041400000c0f0020009c00000c0f02008041000000c002200210000000000112019f00000c1e011001c70000801002000039303730320000040f0000000100200190000030140000613d000000000101043b000000000001042d0000000001000019000030390001043000000000050100190000000000200443000000040030008c0000301d0000a13d00000005014002700000000001010031000000040010044300000c0f0030009c00000c0f030080410000006001300210000000000200041400000c0f0020009c00000c0f02008041000000c002200210000000000112019f00000e36011001c70000000002050019303730320000040f00000001002001900000302c0000613d000000000101043b000000000001042d000000000001042f00003030002104210000000102000039000000000001042d0000000002000019000000000001042d00003035002104230000000102000039000000000001042d0000000002000019000000000001042d0000303700000432000030380001042e00003039000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf5065652057656520446f6773000000000000000000000000000000000000000050574f4753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffbfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5313da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a4ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000fffffffffffffeff000000000000000000000000000000000000000000000000fffffffffffffdffdf71260b0bdf7126040cdf7126060cdf7126090cdf71260b0cdf712600000000040bdf7126050bdf7126060bdf7126070bdf7126080bdf7126090bdf71260a0b7126060adf7126070adf7126080adf7126090adf71260a0adf71260b0adf712609df71260809df71260909df71260a09df71260b09df7126040adf7126050adf260a08df71260b088843140c088843140409df71260509df71260609df712607df71260907ffffff0a07df71260b07ffffff0308df71260808df71260908df710805df71260706df71260906df71260a06df71260b06df71260207df71260807a0bdfa0b0ba0bdfa040ca0bdfa060ca0bdfa090ca0bdfa0b0ca0bdfa00000000040ba0bdfa050ba0bdfa060ba0bdfa070ba0bdfa080ba0bdfa090ba0bdfa0a0bbdfa060aa0bdfa070aa0bdfa080aa0bdfa090aa0bdfa0a0aa0bdfa0b0aa0bdfa09a0bdfa0809a0bdfa0909a0bdfa0a09a0bdfa0b09a0bdfa040aa0bdfa050aa0fa0a08a0bdfa0b08759ff70c08759ff70409a0bdfa0509a0bdfa0609a0bdfa07a0bdfa0907ffffff0a07a0bdfa0b07ffffff0308a0bdfa0808a0bdfa0908a0bd0805a0bdfa0706a0bdfa0906a0bdfa0a06a0bdfa0b06a0bdfa0207a0bdfa0807d77bba0b0bd77bba040cd77bba060cd77bba090cd77bba0b0cd77bba00000000040bd77bba050bd77bba060bd77bba070bd77bba080bd77bba090bd77bba0a0b7bba060ad77bba070ad77bba080ad77bba090ad77bba0a0ad77bba0b0ad77bba09d77bba0809d77bba0909d77bba0a09d77bba0b09d77bba040ad77bba050ad7ba0a08d77bba0b08c7479f0c08c7479f0409d77bba0509d77bba0609d77bba07d77bba0907ffffff0a07d77bba0b07ffffff0308d77bba0808d77bba0908d77b0805d77bba0706d77bba0906d77bba0a06d77bba0b06d77bba0207d77bba08075fcde40b0b5fcde4040c5fcde4060c5fcde4090c5fcde40b0c5fcde400000000040b5fcde4050b5fcde4060b5fcde4070b5fcde4080b5fcde4090b5fcde40a0bcde4060a5fcde4070a5fcde4080a5fcde4090a5fcde40a0a5fcde40b0a5fcde4095fcde408095fcde409095fcde40a095fcde40b095fcde4040a5fcde4050a5fe40a085fcde40b081c8ea60c081c8ea604095fcde405095fcde406095fcde4075fcde40907ffffff0a075fcde40b07ffffff03085fcde408085fcde409085fcd08055fcde407065fcde409065fcde40a065fcde40b065fcde402075fcde40807eec39a0b0beec39a040ceec39a060ceec39a090ceec39a0b0ceec39a00000000040beec39a050beec39a060beec39a070beec39a080beec39a090beec39a0a0bc39a060aeec39a070aeec39a080aeec39a090aeec39a0a0aeec39a0b0aeec39a09eec39a0809eec39a0909eec39a0a09eec39a0b09eec39a040aeec39a050aee9a0a08eec39a0b08d9a0660c08d9a0660409eec39a0509eec39a0609eec39a07eec39a0907ffffff0a07eec39a0b07ffffff0308eec39a0808eec39a0908eec30805eec39a0706eec39a0906eec39a0a06eec39a0b06eec39a0207eec39a0807222034060c222034090c2220340b0c2220340000000000000000000000000000060b222034070b222034080b222034090b2220340a0b2220340b0b222034040c2034080a222034090a2220340a0a2220340b0a222034040b222034050b222034092220340a092220340b09222034040a222034050a222034060a222034070a22210c0818162104092220340509222034060922203407092220340809222034092220340a072220340308222034080822203409082220340a082220340b0818160805222034070622203409062220340a062220340b06222034020722203408073f3f740b0b3f3f74040c3f3f74060c3f3f74090c3f3f740b0c3f3f7400000000040b3f3f74050b3f3f74060b3f3f74070b3f3f74080b3f3f74090b3f3f740a0b3f74060a3f3f74070a3f3f74080a3f3f74090a3f3f740a0a3f3f740b0a3f3f74093f3f7408093f3f7409093f3f740a093f3f740b093f3f74040a3f3f74050a3f740a083f3f740b08282f670c08282f6704093f3f7405093f3f7406093f3f74073f3f740907ffffff0a073f3f740b07ffffff03083f3f7408083f3f7409083f3f08053f3f7407063f3f7409063f3f740a063f3f740b063f3f7402073f3f740807fbf2360b0bfbf236040cfbf236060cfbf236090cfbf2360b0cfbf23600000000040bfbf236050bfbf236060bfbf236070bfbf236080bfbf236090bfbf2360a0bf236060afbf236070afbf236080afbf236090afbf2360a0afbf2360b0afbf23609fbf2360809fbf2360909fbf2360a09fbf2360b09fbf236040afbf236050afb360a08fbf2360b08b3ab040c08b3ab040409fbf2360509fbf2360609fbf23607fbf2360907ffffff0a07fbf2360b07ffffff0308fbf2360808fbf2360908fbf20805fbf2360706fbf2360906fbf2360a06fbf2360b06fbf2360207fbf2360807209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8d0df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8cf0200000000000000000000000000000000000020000000000000000000000000df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7000000000000000000000000000000000000000000000000fffffffffffffebf417574756d6e0000000000000000000000000000000000000000000000000000426c756500000000000000000000000000000000000000000000000000000000427562626c6567756d0000000000000000000000000000000000000000000000436f74746f6e63616e6479000000000000000000000000000000000000000000437265616d0000000000000000000000000000000000000000000000000000004461726b000000000000000000000000000000000000000000000000000000004e6967687400000000000000000000000000000000000000000000000000000059656c6c6f770000000000000000000000000000000000000000000000000000284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1ebed7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1ebdd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb54484b5bab23cb6c6dcb7d0f87ddcd612e617dbb100a7d33dfb07aab3c9df3c03bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c406bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c405bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fdbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3febb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3ffbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c400bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c401bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c402bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c403bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c40409070000000b07000000000000000000000000000000000000000000000000000907ff00000a07ff00000b07ff00000c07ff00000d07ff00000e07ff00000000000000000000000000000000000000000000000000000000ffffffffffffff9f0000000908ffffff0a08ffffff000000000000000000000000000000000000000906ffffff0a06ffffff0b06ffffff0807ffffff09070000000a07ffffff0b07ffffff09080000000a080000000000000000000000000000000000000000000009060000000a060000000b0600000008070000000907ffffff0a070000000b0768ff0009080000000a080000000000000000000000000000000000000000000009060000000a060000000b060000000807000000090768ff000a0768ff000b07fbf2360908fbf2360000000000000000000000000000000000000000000000000906fbf2360b06fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0c0700000009089badb70a089badb70000000000000000000000000000000000000009069badb70a069badb70b069badb708079badb709070000000a070000000b070907ffffff0b07ffffff0000000000000000000000000000000000000000000072eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537fe8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80b8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80a8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802426c61636b0000000000000000000000000000000000000000000000000000004c415a45454552525252000000000000000000000000000000000000000000004d61736b205768697465000000000000000000000000000000000000000000004d61736b20426c61636b000000000000000000000000000000000000000000004e5620476f6f676c657300000000000000000000000000000000000000000000537061726b6c696e67000000000000000000000000000000000000000000000056520000000000000000000000000000000000000000000000000000000000005768697465000000000000000000000000000000000000000000000000000000e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198e1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67b1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67a1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672ce133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff39831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c7131ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c7031ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6931ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6a31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6b31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6c31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6d31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6e31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6f000000000000000000000000000000000000000000000000fffffffffffffe3f000000000000000000000000000000000000000000000000fffffffffffffddf0037ff00000000000000000000000000000000000000000000000000000000000a03fff3000904fff3000a04ff00000b04fff30009050037ff0a050037ff0b05196cff0b06196cff0c06196cff000000000000000000000000000000000000000805196cff0905196cff0a05196cff0b05196cff0806196cff0906196cff0a06ffffff0a05ffffff0b05ffffff000000000000000000000000000000000000000903c9c9c90a03c9c9c90b03c9c9c90904ffffff0a04ffffff0b04ffffff0905ffccef0c05ff5a5a0000000000000000000000000000000000000000000000000904ffe1f60a04ffe1f60b04ffe1f60805ff5a5a0905ffccef0a05ffccef0b05f5ec230c05f5ec230000000000000000000000000000000000000000000000000804f5ec230a04f5ec230c04f5ec230805f5ec230905f5ec230a05f5ec230b050804ac32320c04ac32320905ac32320b05ac3232000000000000000000000000d9a0660a05d9a0660b05d9a0660c05d9a06600000000000000000000000000000704d9a0660904df71260a04df71260b04df71260d04d9a0660805d9a06609058f563b0c058f563b0000000000000000000000000000000000000000000000000904aa70540a04aa70540b04aa705408058f563b09058f563b0a058f563b0b05fbf2360b04fbf2360000000000000000000000000000000000000000000000000902fbf2360a02fbf2360b02fbf2360803fbf2360c03fbf2360904fbf2360a04fff74e0a05fff74e0b05fff74e000000000000000000000000000000000000000a03fff74e0b03fff74e0904fff74e0a04fff74e0b04fff74e0805fff74e0905ff00000a05ff00000b05ff0000000000000000000000000000000000000000000a03ff00000b03ff00000904ff00000a04ff00000b04ff00000805ff00000905000000000000000000000000000000000000000000000000ffffffffffffffdfffffff0905ffffff0a05ffffff0b05ffffff0c05ffffff0000000000000000000903ffffff0a03ffffff0b03ffffff0904c9c9c90a04c9c9c90b04c9c9c9080500000009060000000a060000000b060000000c0600000000000000000000000009040000000a040000000b040000000905f219190a05f219190b05f219190806447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbcbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3453bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3452bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34444265616e69652043617000000000000000000000000000000000000000000000426c7565204361700000000000000000000000000000000000000000000000004368656620686174000000000000000000000000000000000000000000000000436f74746f6e206861740000000000000000000000000000000000000000000043726f776e000000000000000000000000000000000000000000000000000000446576696c20686f726e730000000000000000000000000000000000000000004661726d657220686174000000000000000000000000000000000000000000004665646f7261000000000000000000000000000000000000000000000000000048616c6f000000000000000000000000000000000000000000000000000000004d6f6861776b20476f6c64656e000000000000000000000000000000000000004d6f6861776b20526564000000000000000000000000000000000000000000004e6f6e6500000000000000000000000000000000000000000000000000000000546f702068617420776869746500000000000000000000000000000000000000546f702068617420626c61636b000000000000000000000000000000000000009921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f7066de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09e66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090319284ad7d4265c99e51f9e0112e2425b1ad54f8c4e06d7a4191eaa263c72b14ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4fbce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4fa000000000000000000000000000000000000000000000000ffffffffffffff1f000000000000000000000000000000000000000000000000fffffffffffffedf0a09f4f4f40b09f4f4f40c09f4f4f40d09f4f4f40000000000000000000000000e06ffffff0e07ffffff0b09f4f4f40c09f4f4f40d09f4f4f40e09ff000000000e08fffcb30a09fbf2360b09fbf2360c09fbf2360e0afffcb30d0cfffcb300004b692f0c0a524b240000000000000000000000000000000000000000000000000a094b692f0b09524b240c094b692f0d094b692f0e09ffffff0a0a524b240b0a0a09ffffff0b09ffffff0c09ffffff0d09ffffff0a0affffff0d0affffff00000e05ffffff0e07ffffff0b09c3dfff0c09c3dfff0d09c3dfff0e09003dff0000aa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8b55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47d55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47c55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475426f6e65000000000000000000000000000000000000000000000000000000004369670000000000000000000000000000000000000000000000000000000000476f6c64206261720000000000000000000000000000000000000000000000004772656e616465000000000000000000000000000000000000000000000000005361626572746f6f746800000000000000000000000000000000000000000000566170650000000000000000000000000000000000000000000000000000000027cceb82823caa45ba60387709961a73050623da2232f8fd178296384aedbd77d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124291d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124290d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428939db49933fec7470543df6db808d28a71e30ccbc8a92abc45240dbded41273ebc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1dc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1cc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c16c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c17c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c18c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c19c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1ac624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1b090affffff000000000000000000000000000000000000000000000000000000090affffff070bf4f4f400000000000000000000000000000000000000000000050973eff7060973eff7070b73eff7080b73eff7000000000000000000000000c7b6b60b0ac7b6b6000000000000000000000000000000000000000000000000040ac7b6b6050ac7b6b6060ac7b6b6070ac7b6b6080ac7b6b6090ac7b6b60a0a05094447460809444746060a444746090a444746070b4447460a0b4447460000080afb3838090afb3838070bfb383800000000000000000000000000000000004ec2d2892e0b48417cb77d1bef4c1c5750509607c9ff51db24cabc6e2dc872d2b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d36b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d35b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e444f542031000000000000000000000000000000000000000000000000000000444f542032000000000000000000000000000000000000000000000000000000486967686c6967687400000000000000000000000000000000000000000000004c696e6500000000000000000000000000000000000000000000000000000000537472697065730000000000000000000000000000000000000000000000000053636172000000000000000000000000000000000000000000000000000000006bb667d8c1b884b6aebb04786b36ebe680c334b941d6ff0b96702f108bc3696b944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969d944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969c944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695fa83c7b582e3ab0c5e4d1a1984d9e847ddb0202e158dcb115a8c590099a009c2057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff646057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff645057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff640057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff641057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff642057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff643057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff644000000000000000000000000000000000000000000000000fffffffffffffe5fc3070efff8c3080efff8c3090efff8c300000000000000000000000000000000272820080d272820090d2728200a0d2728200b0d2728200c0d272820060efff8020b272820020c272820030d272820040d272820050d272820060d272820070d000000000000000000000000000000000000000000000000ffffffffffffff7fae81ff080dae81ff090dae81ff0a0dae81ff0b0dae81ff0c0dae81ff060efff8020bae81ff020cae81ff030dae81ff040dae81ff050dae81ff060dae81ff070d66d9ef080d66d9ef090d66d9ef0a0d66d9ef0b0d66d9ef0c0d66d9ef060efff8020b66d9ef020c66d9ef030d66d9ef040d66d9ef050d66d9ef060d66d9ef070de6db74080de6db74090de6db740a0de6db740b0de6db740c0de6db74060efff8020be6db74020ce6db74030de6db74040de6db74050de6db74060de6db74070d1a060e16171a090e16171a0a0e16171a00000000000000000000000000000000823e2c080d823e2c090d823e2c0a0d823e2c0b0d823e2c0c0d823e2c050e1617020c823e2c0d0c823e2c030d823e2c040d823e2c050d823e2c060d823e2c070d100820080d100820090d1008200a0d1008200b0d1008200c0d100820050e1617020c1008200d0c100820030d100820040d100820050d100820060d100820070d10d275080d10d275090d10d2750a0d10d2750b0d10d2750c0d10d275050e1617020c10d2750d0c10d275030d10d275040d10d275050d10d275060d10d275070d7f0622080d7f0622090d7f06220a0d7f06220b0d7f06220c0d7f0622050e1617020c7f06220d0c7f0622030d7f0622040d7f0622050d7f0622060d7f0622070dfafdff080dfafdff090dfafdff0a0dfafdff0b0dfafdff0c0dfafdff050e1617020cfafdff0d0cfafdff030dfafdff040dfafdff050dfafdff060dfafdff070d1d040e14121d000000000000000000000000000000000000000000000000000014121d080d14121d090d14121d0a0d14121d0b0d14121d0c0d14121d030e1412020c14121d020d14121d030d14121d040d14121d050d14121d060d14121d070dc9040efdc9c90000000000000000000000000000000000000000000000000000fdc9c9080dfdc9c9090dfdc9c90a0dfdc9c90b0dfdc9c90c0dfdc9c9030efdc9020cfdc9c9020dfdc9c9030dfdc9c9040dfdc9c9050dfdc9c9060dfdc9c9070dea040eeee6ea0000000000000000000000000000000000000000000000000000eee6ea080deee6ea090deee6ea0a0deee6ea0b0deee6ea0c0deee6ea030eeee6020ceee6ea020deee6ea030deee6ea040deee6ea050deee6ea060deee6ea070dc52755b078abbcdc562e1a226fd0bf3ca9ad8586aa978eec24a0657a52a8623f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dcf3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dce3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1000000000000000000000000000000000000000000000000fffffffffffffe1f486f766572626f61726420314269740000000000000000000000000000000000486f766572626f61726420496e6b656400000000000000000000000000000000486f766572626f61726420536b79000000000000000000000000000000000000486f766572626f6172642074616e000000000000000000000000000000000000536b617465626f6172642042726f776e00000000000000000000000000000000536b617465626f617264204461726b20426c7565000000000000000000000000536b617465626f61726420477265656e00000000000000000000000000000000536b617465626f617264204d61726f6f6e000000000000000000000000000000536b617465626f6172642057686974650000000000000000000000000000000053757266626f617264204461726b00000000000000000000000000000000000053757266626f617264204661646564000000000000000000000000000000000053757266626f61726420536d6f6b650000000000000000000000000000000000f1ba9d5efc7e213de4dfa128d9c8194e4adc422f1b2b2af50a32dc22baff5def0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21e0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21192bbf81841de07f719af6556056ebcc96a86228289f01df5d3f697f03eb9ecb16d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146135d6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146135c000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000005543df729c00042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd1020000020000000000000000000000000000000400000000000000000000000080b41246c05cbb406f874e82aa2faf7db11bba9792fe09929e56ef1eee2c2da30000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007d55094c00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000d5f3948700000000000000000000000000000000000000000000000000000000ed288f9800000000000000000000000000000000000000000000000000000000ed288f9900000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f8d5054200000000000000000000000000000000000000000000000000000000d5f3948800000000000000000000000000000000000000000000000000000000e05c57bf00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d123973000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c06c7d4900000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000b1ca838f00000000000000000000000000000000000000000000000000000000b1ca839000000000000000000000000000000000000000000000000000000000b228d92500000000000000000000000000000000000000000000000000000000b2a2e07d00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a2b21fbe000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d68000000000000000000000000000000000000000000000000000000007d55094d00000000000000000000000000000000000000000000000000000000868ff4a2000000000000000000000000000000000000000000000000000000003ccfd60a000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006817c76b000000000000000000000000000000000000000000000000000000006817c76c0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000659e50840000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000481231a500000000000000000000000000000000000000000000000000000000548db174000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000003e53eb280000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000035c6aaf70000000000000000000000000000000000000000000000000000000035c6aaf800000000000000000000000000000000000000000000000000000000367b2a2000000000000000000000000000000000000000000000000000000000375a069a0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000055d822c08c379a000000000000000000000000000000000000000000000000000000000417272617973206d757374206265206f662073616d65206c656e677468000000000000000000000000000000000000000000006400000080000000000000000002000000000000000000000000000000000000400000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c00000008000000000000000006768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe5000000000000000000000000000000000000000000000000bfffffffffffffe500ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3d000000000000000000000000000000000000000000000000000000000000003d3d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3f7b2274726169745f74797065223a22467572222c202276616c7565223a220000227d2c00000000000000000000000000000000000000000000000000000000007b2274726169745f74797065223a2245796573222c202276616c7565223a22007b2274726169745f74797065223a2248656164222c202276616c7565223a22007b2274726169745f74797065223a224d6f757468222c202276616c7565223a227b2274726169745f74797065223a224d61726b222c202276616c7565223a22007b2274726169745f74797065223a22426f617264222c202276616c7565223a22227d0000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000d5c4531f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000006f746174652830646567293b207d000000000000000000000000000000000000617465282d33646567293b207d00000000000000000000000000000000000000406b65796672616d6573206261726b207b00000000000000000000000000000030252c2031303025207b207472616e73666f726d3a207363616c652831292072353025207b207472616e73666f726d3a207363616c6528312e30352920726f747d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5f4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000003c68746d6c3e3c686561643e3c7374796c653e00000000000000000000000000726f746174652831646567293b7d00000000000000000000000000000000000065723b7d000000000000000000000000000000000000000000000000000000006f723a706f696e7465723b7d00000000000000000000000000000000000000006f3b7d000000000000000000000000000000000000000000000000000000000020302e337320656173652d696e2d6f75743b207d0000000000000000000000006173652d696e2d6f75743b7472616e73666f726d2d6f726967696e3a63656e7477696474683a313030253b6865696768743a313030253b6d61782d77696474683a35313270783b6d61782d6865696768743a35313270783b6f766572666c6f773a68696464656e3b646973706c61793a626c6f636b3b6d617267696e3a617574737667207b77696474683a313030253b6865696768743a313030253b637572732e6261726b416e696d6174696f6e207b20616e696d6174696f6e3a206261726b23646f673a686f7665727b7472616e73666f726d3a7363616c6528312e31292023646f67436f6e7461696e65727b706f736974696f6e3a72656c61746976653b23646f677b7472616e736974696f6e3a7472616e73666f726d20302e337320656573223e000000000000000000000000000000000000000000000000000000002066696c6c3d2223303143413641222f3e0000000000000000000000000000003d22353132222073686170652d72656e646572696e673d226372697370456467783d22302030203136203136222077696474683d22353132222068656967687430302f737667222069643d22646f67436f6e7461696e6572222076696577426f3c2f7374796c653e3c2f686561643e3c626f64793e00000000000000000000003c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3230223e0000000000000000000000000000000000000000000000000000000000003c726563742077696474683d223130302522206865696768743d2231303025223c672069643d22646f672220636c6173733d226261726b416e696d6174696f6e3c2f673e000000000000000000000000000000000000000000000000000000003c2f7376673e0000000000000000000000000000000000000000000000000000633d2200000000000000000000000000000000000000000000000000000000003c617564696f2069643d226261726b536f756e64223e3c736f757263652073726e742e3c2f617564696f3e0000000000000000000000000000000000000000006d6f766528226261726b416e696d6174696f6e22293b7d2c20333030293b00002c66756e6374696f6e28297b0000000000000000000000000000000000000000642822646f6722293b000000000000000000000000000000000000000000000022293b00000000000000000000000000000000000000000000000000000000006e6422292e706c617928293b00000000000000000000000000000000000000003c7363726970743e0000000000000000000000000000000000000000000000007d293b0000000000000000000000000000000000000000000000000000000000646f6573206e6f7420737570706f72742074686520617564696f20656c656d6561696e657222292e6164644576656e744c697374656e65722822636c69636b2276617220646f67203d20646f63756d656e742e676574456c656d656e74427949646f672e636c6173734c6973742e61646428226261726b416e696d6174696f6e646f63756d656e742e676574456c656d656e744279496428226261726b536f7573657454696d656f75742828293d3e7b646f672e636c6173734c6973742e7265646f63756d656e742e717565727953656c6563746f72282223646f67436f6e743c2f7363726970743e3c2f626f64793e3c2f68746d6c3e0000000000000000002220747970653d22617564696f2f6f6767223e596f75722062726f77736572207b226e616d65223a20225065652057656520446f6773202300000000000000004f4753206f6e20416273747261637420436861696e222c000000000000000000222c000000000000000000000000000000000000000000000000000000000000226465736372697074696f6e223a202246756c6c79204f6e636861696e2050572261747472696275746573223a205b00000000000000000000000000000000005d2c00000000000000000000000000000000000000000000000000000000000022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000000000000000000000000000000000000000000000000022616e696d6174696f6e5f75726c223a2022646174613a746578742f68746d6c3b6261736536342c000000000000000000000000000000000000000000000000646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000546f6b656e20646f6573206e6f7420657869737400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000060000000800000000000000000000000000000000000000000000000000000006000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31506c656173652073656e64207468652065786163742045544820616d6f756e7445786365656473206d6178206d696e74207065722077616c6c6574000000000045786365656473206d6178206d696e7420706572207472616e73616374696f6e4d696e74206e6f742072656164792079657400000000000000000000000000002045544820616d6f756e74000000000000000000000000000000000000000000506c656173652073656e642074686520657861637420646973636f756e74656400000000000000000000000000000000000000840000000000000000000000007564696e672077686974656c69737420616c6c6f636174696f6e00000000000045786365656473206d6178206d696e74207065722077616c6c657420696e636c457863656564732077686974656c697374206d696e7420616d6f756e740000004e6f742077686974656c697374656400000000000000000000000000000000008f4eb60400000000000000000000000000000000000000000000000000000000436f6e74726f6c6c6572204f6e6c7900000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c65642e000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffa0000000000000000000000000000000000000000000000000ffffffffffffffe0a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efea553b3400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff4035313222206865696768743d22353132223e000000000000000000000000000030302f737667222076696577426f783d22302030203136203136222073686170652d72656e646572696e673d2263726973704564676573222077696474683d221806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0d1a57ed6000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06174636800000000000000000000000000000000000000000000000000000000456c656d656e747320616e642077656967687473206c656e677468206d69736dce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f00000000000000000000000000000000000000000000000100000000000000012e07630000000000000000000000000000000000000000000000000000000000b562e8dd00000000000000000000000000000000000000000000000000000000456c656d656e747320617272617920697320656d707479000000000000000000536f6c64204f7574210000000000000000000000000000000000000000000000496e76616c6964206e756d626572206f66207265616374730000000000000000000000000000000000000000000000000000000000000004ffffffffffffffff3c7265637420783d2200000000000000000000000000000000000000000000002220793d220000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000222077696474683d223122206865696768743d2231222066696c6c3d227267622c000000000000000000000000000000000000000000000000000000000000002922202f3e00000000000000000000000000000000000000000000000000000068743d2230222066696c6c3d2272676228302c302c3029222f3e0000000000003c7265637420783d22302220793d2230222077696474683d2230222068656967bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe02000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6bf02ff13f53a60511219a906ad79ab6698d11111c716c175609bc4de6ed6a6
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000eff2133e90fd72be73741dce07bd0efcdb126419
-----Decoded View---------------
Arg [0] : _dogBarkAddress (address): 0xeff2133E90FD72Be73741DcE07Bd0EFcdB126419
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000eff2133e90fd72be73741dce07bd0efcdb126419
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.